/* ============================================================
   INALCANZABLES — style.css
   Design System: Dark Luxury · Gold · Cinematic
   ============================================================ */

/* ── 1. Design Tokens ── */
:root {
  --black-deep: #08080E;
  --black-card: #0f0f1c;
  --black-border: #18182a;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #8A6E30;
  --gold-glow: rgba(201, 168, 76, 0.18);
  --gold-glow-sm: rgba(201, 168, 76, 0.08);
  --white: #F5F0E8;
  --white-dim: #c8bfad;
  --white-muted: #7a7060;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Inter', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.55s var(--ease-out);
}

/* ── 2. Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  background: var(--black-deep);
  color: var(--white);
  font-family: var(--font-ui);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--black-deep);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

blockquote {
  margin: 0;
}

/* ── 3. Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  position: relative;
  /* overflow:hidden removed — it clips parallax transforms on .spk__image / .venue__img */
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── 3B. Intro Preloader ── */
.intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s var(--ease-out), visibility 1.2s;
}

.intro.hidden {
  opacity: 0;
  visibility: hidden;
}

.intro__logo {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  opacity: 0;
  animation: introLogoFade 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes introLogoFade {
  0% {
    opacity: 0;
    transform: scale(0.95);
    filter: blur(4px);
  }

  20% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

  80% {
    opacity: 1;
    transform: scale(1.02);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(4px);
  }
}

/* ── 3C. Custom Cursor ── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s, border-color 0.3s;
  opacity: 0;
  /* JS reveals it on first move */
}

.cursor__dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform 0.3s;
}

.cursor.active {
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.6);
}

.cursor.active .cursor__dot {
  transform: scale(2);
}

@media (hover: none) {
  .cursor {
    display: none;
  }
}

/* ── 4. Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal:nth-child(3) {
  transition-delay: 0.2s;
}

/* ── 5. Navigation ── */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  /* Reduced padding for mobile safety */
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 14, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--gold-glow);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold-light);
}

.nav__cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black-deep);
}

/* ── 6. Hero ── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: luminosity;
  z-index: 0;
  will-change: transform;
  /* GPU layer for smooth parallax */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201, 168, 76, 0.04) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(8, 8, 14, 0.3) 0%, rgba(8, 8, 14, 0.6) 70%, var(--black-deep) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 5rem;
  padding-inline: 1.25rem;
  width: 100%;
  max-width: 100%;
}

.hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1.2rem;
  white-space: nowrap;
  /* Never break INALCANZABLES across lines */
  word-break: normal;
}

.hero__accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero__title-break {
  display: none;
}

.hero__date {
  font-family: var(--font-ui);
  font-size: clamp(0.68rem, 2vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin-top: 2rem;
}

.hero__scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.hero__scroll-arrow {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--white-dim), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1) translateY(0);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.15) translateY(4px);
  }
}

/* ── Hero Countdown (integrado) ── */
.hero__countdown {
  margin-top: 2.8rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.hero__cd-label-top {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  opacity: 0.7;
}

.hero__cd-grid {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 2vw, 1.2rem);
}

.hero__cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero__cd-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  min-width: 2.8ch;
  text-align: center;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.25);
  transition: color 0.2s ease;
}

.hero__cd-num.flip {
  color: var(--gold-light);
}

.hero__cd-unit-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.55;
}

.hero__cd-sep {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--gold-dim);
  opacity: 0.5;
  margin-top: -0.6rem;
  animation: colonBlink 1s step-end infinite;
}

.hero__cd-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  opacity: 0.5;
  margin-top: 0.2rem;
}

@keyframes colonBlink {

  0%,
  49% {
    opacity: 0.5;
  }

  50%,
  100% {
    opacity: 0.12;
  }
}

/* Hero animate-in */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 1s var(--ease-out) forwards;
  animation-play-state: paused;
}

body.intro-done .animate-in {
  animation-play-state: running;
}

.animate-in:nth-child(1) {
  animation-delay: 0.2s;
}

.animate-in:nth-child(2) {
  animation-delay: 0.4s;
}

.animate-in:nth-child(3) {
  animation-delay: 0.6s;
}

.animate-in:nth-child(4) {
  animation-delay: 0.75s;
}

.animate-in:nth-child(5) {
  animation-delay: 0.9s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── 8. About ── */
.about {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.about__body {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* Benefits */
.benefit {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--black-border);
}

.benefit:first-child {
  border-top: 1px solid var(--black-border);
}

.benefit__icon {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.benefit__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.benefit__desc {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.75;
}

/* ── 8B. Por Qué Importa ── */
/* ── 8. Por Qué Importa — Premium 2x2 Grid ── */

.why {
  padding-block: clamp(6rem, 12vw, 10rem);
  position: relative;
  overflow: hidden;
  background: var(--black-deep);
  /* de #080808 a #08080E */
}

.why__top-line {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--gold-glow) 40%, var(--gold-light) 50%, var(--gold-glow) 60%, transparent 100%);
  opacity: 0.7;
}

.why__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.5;
}

.why__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  opacity: 0.4;
}

/* --- Entrance animation system --- */
[data-why-in] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-why-in].why--visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Intro block: centered, full-width --- */
.why__intro-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(3rem, 6vw, 4.5rem);
}

.why__intro-block .eyebrow {
  margin-bottom: 1.5rem;
}

.why__statement {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
}

.why__statement em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, #e8c84a 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Word-by-word spans */
.why__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.why__word.why__word--visible {
  opacity: 1;
  transform: translateY(0);
}

.why__word em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, #e8c84a 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why__intro-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--white-dim);
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.why__tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.why__tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  color: var(--gold-dim);
  background: rgba(201, 168, 76, 0.03);
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
  cursor: default;
}

.why__tag:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-light);
}

/* --- Divider --- */
.why__divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.why__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.35));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.why__divider-line:last-child {
  background: linear-gradient(to left, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.35));
  transform-origin: right;
}

.why--visible .why__divider-line,
[data-why-in].why--visible~.why__divider .why__divider-line {
  transform: scaleX(1);
}

.why__divider.why--visible .why__divider-line {
  transform: scaleX(1);
}

.why__divider-diamond {
  font-size: 0.8rem;
  color: var(--gold-light);
  opacity: 0.6;
  flex-shrink: 0;
}

/* --- 2x2 Pillars grid --- */
.why__pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .why__pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Individual pillar card --- */
.why__pillar {
  background: var(--black-card);
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.why__pillar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.why__pillar:hover {
  background: #101008;
}

.why__pillar:hover::after {
  opacity: 1;
}

.why__pillar-inner {
  padding: clamp(2rem, 4vw, 2.8rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Top row: number + icon */
.why__pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.why__pillar-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gold-dim);
  opacity: 0.45;
  letter-spacing: 0.12em;
  transition: opacity 0.3s ease;
}

.why__pillar:hover .why__pillar-num {
  opacity: 1;
}

.why__pillar-icon {
  font-size: 0.75rem;
  color: var(--gold-light);
  opacity: 0.2;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.why__pillar:hover .why__pillar-icon {
  opacity: 0.7;
  transform: rotate(45deg) scale(1.2);
}

/* Title */
.why__pillar-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.why__pillar:hover .why__pillar-title {
  color: var(--gold-light);
}

/* Desc */
.why__pillar-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.75;
  flex: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.why__pillar:hover .why__pillar-desc {
  opacity: 1;
}

/* Bottom gold bar */
.why__pillar-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.why__pillar:hover .why__pillar-bar {
  transform: scaleX(1);
}

/* Column separator line between 2 columns */
@media (min-width: 640px) {
  .why__pillar:nth-child(odd) {
    border-right: 1px solid rgba(201, 168, 76, 0.08);
  }

  .why__pillar:nth-child(1),
  .why__pillar:nth-child(2) {
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  }
}

@media (max-width: 639px) {
  .why__pillar+.why__pillar {
    border-top: 1px solid rgba(201, 168, 76, 0.08);
  }
}


/* ── 9. Speakers Premium ── */
.speakers {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  background: linear-gradient(to bottom, var(--black-deep), #0b0b17, var(--black-deep));
}

.speakers::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
}

.speakers__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.speakers__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .speakers__grid {
    gap: 4rem;
  }
}

.spk {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: visible;
  isolation: isolate;
  /* Tilt 3D — JS owns transform, CSS owns box-shadow + border transitions */
  transition: box-shadow 0.4s var(--ease-out), border-color 0.4s;
  will-change: transform;
  transform-style: preserve-3d;
  /* Clip-path entrance — starts hidden, JS adds .spk--visible */
  clip-path: inset(8% 0 0 0);
  opacity: 0;
  transition: clip-path 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s;
}

.spk.spk--visible {
  clip-path: inset(0% 0 0 0);
  opacity: 1;
}

@media (min-width: 900px) {
  .spk {
    grid-template-columns: 4fr 5fr;
  }
}

.spk:hover {
  border-color: rgba(201, 168, 76, 0.28);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(201, 168, 76, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.spk__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: #111;
  overflow: hidden;
  /* parallax translate is applied here by scroll JS — keep transform-style flat
     so the parent card's preserve-3d tilt still works correctly */
  transform-style: flat;
}

@media (max-width: 899px) {
  .spk__image-wrap {
    height: 450px;
  }
}

.spk__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  will-change: transform, filter;
  /* Desaturation: starts slightly desaturated, goes full color on hover */
  filter: grayscale(28%) brightness(0.92);
  transition: filter 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.spk:hover .spk__image {
  filter: grayscale(0%) brightness(1.04);
  /* transform owned by tilt JS — scale(1.06) applied there */
}

.spk__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--black-card) 100%),
    linear-gradient(to top, rgba(15, 15, 28, 0.4) 0%, transparent 40%);
  transition: opacity 0.5s ease;
}

@media (max-width: 899px) {
  .spk__image-overlay {
    background: linear-gradient(to top, var(--black-card) 0%, transparent 60%);
  }
}

/* Gold shimmer that sweeps image on hover */
.spk__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      transparent 30%,
      rgba(201, 168, 76, 0.08) 50%,
      transparent 70%);
  background-size: 200% 100%;
  background-position: 150% 0;
  transition: background-position 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 3;
  border-radius: var(--radius-lg);
}

.spk:hover .spk__image-wrap::after {
  background-position: -50% 0;
}

.spk__credential {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(8, 8, 14, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 2;
}

.spk__credential-dot {
  color: var(--gold);
}

.spk__body {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  will-change: transform;
  transform: translateZ(0);
}

@media (max-width: 899px) {
  .spk__body {
    margin-top: -4rem;
  }
}

.spk__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.spk__authority {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--white-dim);
  margin-bottom: 2.5rem;
}

.spk__authority strong {
  color: var(--white);
  font-weight: 500;
}

.spk__quote {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-dim);
  margin-bottom: 2.5rem;
}

.spk__quote-mark {
  position: absolute;
  top: -0.5rem;
  left: -0.8rem;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-glow);
  line-height: 1;
  opacity: 0.5;
}

.spk__cite {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-top: 1rem;
}

.spk__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.spk__tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  border: 1px solid var(--black-border);
}

.spk-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.spk-more__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px dashed rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.02);
  transition: background 0.3s, border-color 0.3s;
  width: 100%;
  max-width: 400px;
}

.spk-more__card:hover {
  background: rgba(201, 168, 76, 0.04);
  border-color: rgba(201, 168, 76, 0.5);
}

.spk-more__icon {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.spk-more__label {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.spk-more__hint {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ── 9B. Qué Te Llevarás ── */
.takeaway {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  background: var(--black-deep);
}

.takeaway::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
}

.takeaway__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.takeaway__heading em {
  font-style: italic;
  color: var(--gold-light);
}

.takeaway__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.5rem;
}

.takeaway__card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: transform 0.4s var(--ease-out), border-color 0.4s;
}

.takeaway__card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  background: linear-gradient(to bottom right, var(--black-card), #141424);
}

.takeaway__card-icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.takeaway__card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.takeaway__card-desc {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ── 10. Ticket Section ── */
.ticket-section {
  padding-block: clamp(2rem, 6vw, 5rem);
  position: relative;
}

.ticket-section::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
}

.ticket-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.ticket-section__heading em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── 11. Ticket ── */
.ticket-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.ticket-wrap.hidden {
  opacity: 0;
  transform: translateY(-20px) scale(0.97);
  pointer-events: none;
}

.ticket-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 100vw;
  /* Crucial: never exceed screen */
  height: 350px;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.6;
}

@keyframes ticketGlowPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

.ticket {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 700px;
  height: 350px;
  cursor: pointer;
  border-radius: var(--radius-md);
  transform-style: preserve-3d;
  transform-origin: center center;
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.1s linear, box-shadow 0.4s;
  user-select: none;
  -webkit-user-select: none;
  margin-inline: auto;
}

.ticket:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
}

.ticket:active .ticket__body {
  transform: scale(0.98);
}

.ticket__body {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.ticket__front,
.ticket__back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 350px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  flex-direction: row;
  /* Match old ticket__body layout */
  display: flex;
  background: linear-gradient(135deg,
      #0e0d18 0%,
      #16142a 30%,
      #1a1628 60%,
      #0e0d18 100%);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.06),
    0 20px 80px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ticket__front {
  z-index: 2;
  transform: rotateY(0deg);
}

.ticket__back {
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #1a1628 0%, #0e0d18 100%);
}

.ticket__back-seal {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticket__back-seal svg {
  animation: rotateSeal 20s linear infinite;
}

@keyframes rotateSeal {
  to {
    transform: rotate(360deg);
  }
}

.ticket__back-logo {
  position: absolute;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.ticket__back-note {
  margin-top: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── Foil / Holographic Shine Effect ── */
.ticket__shine {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
  border-radius: inherit;

  /* Two-layer foil gradient driven by --foil-angle, --shine-x, --shine-y (set by JS):
     1. Radial hotspot — the specular "light source" that tracks tilt
     2. Diagonal rainbow sweep — the holographic lámina effect */
  background:
    radial-gradient(ellipse 80% 60% at var(--shine-x, 50%) var(--shine-y, 50%),
      rgba(255, 255, 255, 0.18) 0%,
      rgba(201, 168, 76, 0.22) 25%,
      transparent 65%),
    linear-gradient(calc(105deg + var(--foil-angle, 0deg)),
      transparent 0%,
      rgba(201, 168, 76, 0.08) 15%,
      rgba(255, 210, 100, 0.25) 28%,
      rgba(255, 255, 255, 0.35) 38%,
      rgba(201, 168, 76, 0.30) 48%,
      rgba(180, 120, 255, 0.15) 58%,
      rgba(100, 200, 255, 0.12) 68%,
      rgba(201, 168, 76, 0.08) 80%,
      transparent 100%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Ambient foil during auto-spin */
.ticket:not(.is-hovered) .ticket__shine {
  opacity: 0.45;
}

/* Full foil on hover */
.ticket.is-hovered .ticket__shine {
  opacity: 1;
}

/* Gold logo highlight — sweeps across the ticket front in sync with rotation */
.ticket__front::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(calc(115deg + var(--foil-angle, 0deg)),
      transparent 30%,
      rgba(255, 230, 120, 0.12) 44%,
      rgba(255, 255, 200, 0.28) 50%,
      rgba(255, 230, 120, 0.12) 56%,
      transparent 70%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9;
  border-radius: inherit;
  opacity: var(--foil-logo-opacity, 0.3);
  transition: opacity 0.2s;
}

/* Left panel */
.ticket__left {
  flex: 1;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.ticket__left::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg,
      rgba(201, 168, 76, 0.015) 0,
      rgba(201, 168, 76, 0.015) 1px,
      transparent 0,
      transparent 50%);
  background-size: 20px 20px;
  pointer-events: none;
}

.ticket__event-badge {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.ticket__event-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.6rem;
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.25);
}

.ticket__event-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white-dim);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.ticket__dot {
  color: var(--gold-dim);
}

.ticket__divider-horiz {
  height: 1px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.3), transparent);
  margin-bottom: 1.5rem;
}

.ticket__access {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.ticket__cta-text {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* Perforated edge */
.ticket__perf {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 2px;
  position: relative;
  flex-shrink: 0;
}

.ticket__notch {
  display: block;
  width: 20px;
  height: 10px;
  background: var(--black-deep);
  position: absolute;
  flex-shrink: 0;
}

.ticket__notch--top {
  top: -1px;
  border-radius: 0 0 20px 20px;
  border-right: 1px solid rgba(201, 168, 76, 0.25);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 1px solid rgba(201, 168, 76, 0.25);
}

.ticket__notch--bottom {
  bottom: -1px;
  border-radius: 20px 20px 0 0;
  border-right: 1px solid rgba(201, 168, 76, 0.25);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  border-left: 1px solid rgba(201, 168, 76, 0.25);
}

.ticket__dots {
  position: absolute;
  inset-block: 12px;
  width: 100%;
  background-image: repeating-linear-gradient(to bottom,
      rgba(201, 168, 76, 0.25) 0,
      rgba(201, 168, 76, 0.25) 5px,
      transparent 5px,
      transparent 12px);
}

/* Right stub */
.ticket__right {
  width: clamp(100px, 22%, 150px);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.ticket__qr {
  width: 78px;
  height: 78px;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 1.5px;
}

.ticket__qr-cell {
  border-radius: 1px;
  background: var(--gold-dim);
}

.ticket__num {
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white-muted);
  margin-top: 0.5rem;
}

.ticket__hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-align: center;
  line-height: 1.4;
}

.ticket__hint-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: hintPulse 2s ease-in-out infinite;
}

@keyframes hintPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0);
  }
}

/* ── 12. Form Wrap ── */
.form-wrap {
  max-width: 620px;
  margin-inline: auto;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  display: none;
  position: relative;
}

.form-wrap.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* ── Botón cerrar formulario ── */
.form-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  color: var(--white-dim);
  cursor: pointer;

  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}

.form-close-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: rotate(90deg);
}

.form-close-btn:active {
  transform: rotate(90deg) scale(0.9);
}

.form-close-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── 13. Registration Form ── */
.reg-form {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}

.reg-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.reg-form__header {
  text-align: center;
  margin-bottom: 2rem;
}

.reg-form__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.reg-form__subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Fields */
.field {
  margin-bottom: 1.25rem;
  position: relative;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.field__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 0.55rem;
}

.req {
  color: var(--gold);
}

.field__input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--white);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.field__input::placeholder {
  color: var(--white-muted);
}

.field__input:focus {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(201, 168, 76, 0.03);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.07);
}

.field__input.error {
  border-color: rgba(220, 80, 80, 0.5);
  box-shadow: 0 0 0 3px rgba(220, 80, 80, 0.06);
}

.field__error {
  display: block;
  font-size: 0.72rem;
  color: #dc6050;
  margin-top: 0.35rem;
  min-height: 1em;
}

/* Submit button */
.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  background-position: left center;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black-deep);
  cursor: pointer;
  transition: background-position 0.5s ease, transform 0.2s, box-shadow 0.3s;
}

.btn-submit:hover {
  background-position: right center;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit__arrow {
  font-size: 1rem;
  transition: transform 0.3s;
}

.btn-submit:hover .btn-submit__arrow {
  transform: translateX(4px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ── 14. Success State ── */
.success-state {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--black-card);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  animation: successAppear 0.7s var(--ease-out) both;
}

.success-state::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.5), transparent);
}

@keyframes successAppear {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.success-state__icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.success-state__icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.s-circle {
  stroke: var(--gold);
  fill: none;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: drawCircle 0.7s var(--ease-out) 0.2s forwards;
}

.s-check {
  stroke: var(--gold-light);
  fill: none;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.5s var(--ease-out) 0.8s forwards;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.success-state__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.success-state__body {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 0.75rem;
  max-width: 48ch;
  margin-inline: auto;
}

.success-state__body strong {
  color: var(--gold-light);
  font-weight: 500;
}

.success-state__seal {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 0.6rem 1.5rem;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.success-state__seal-icon {
  font-size: 0.8rem;
}

/* ── 15. Footer ── */
.footer {
  padding-block: 3rem;
  border-top: 1px solid var(--black-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.footer__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--white-dim);
}

.footer__sep {
  color: var(--gold-dim);
}

.footer__copy {
  font-size: 0.68rem;
  color: var(--white-muted);
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

.venue {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--black-deep);
  position: relative;
}

.venue::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.venue__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .venue__container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.venue__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.venue__desc {
  font-size: 1.05rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 500px;
}

.venue__rules {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.rule {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.rule__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.rule strong {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.rule p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.venue__glass-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.venue__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: filter 1.5s;
  /* only filter transitions — transform owned by parallax JS */
  will-change: transform;
}

.venue__glass-box:hover .venue__img {
  filter: grayscale(40%) contrast(1.1);
  /* transform: scale removed — parallax loop owns .venue__img transform */
}

.venue__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black-deep) 0%, transparent 60%);
  pointer-events: none;
}

/* ── 14. Cronograma ── */
.schedule {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  background: var(--black-deep);
}

.schedule::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
}

.schedule__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.schedule__heading em {
  font-style: italic;
  color: var(--gold-light);
}

.schedule__timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.schedule__timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 140px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3) 10%, rgba(201, 168, 76, 0.3) 90%, transparent);
}

@media (max-width: 600px) {
  .schedule__timeline::before {
    left: 15px;
  }
}

.sch-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3.5rem;
  position: relative;
}

.sch-item:last-child {
  margin-bottom: 0;
}

.sch-item__time {
  width: 140px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.1rem;
  text-align: right;
  padding-right: 2.5rem;
}

.sch-item__dot {
  position: absolute;
  left: 140px;
  top: 0.4rem;
  width: 13px;
  height: 13px;
  background: var(--black-deep);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.sch-item:hover .sch-item__dot {
  background: var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
  transform: translateX(-50%) scale(1.3);
}

.sch-item__content {
  flex: 1;
  padding-left: 2.5rem;
}

.sch-item__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

.sch-item__desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

.sch-item__desc strong {
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 600px) {
  .sch-item {
    flex-direction: column;
    padding-left: 45px;
  }

  .sch-item__time {
    text-align: left;
    width: auto;
    padding-right: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }

  .sch-item__dot {
    left: 15px;
    top: 0.2rem;
  }

  .sch-item__content {
    padding-left: 0;
  }
}

/* ── 15. Cierre Premium ── */
.closing {
  padding-block: clamp(6rem, 12vw, 10rem);
  text-align: center;
  background: radial-gradient(ellipse at center, #111122 0%, var(--black-deep) 70%);
  position: relative;
  overflow: hidden;
  /* Prevent parallax from pushing height at bottom */
}

.closing__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/Senado/Imagen 2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: luminosity;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  /* GPU layer for smooth parallax */
}

.closing::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
  z-index: 2;
}

.closing__inner {
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.closing__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.closing__heading em {
  font-style: italic;
  color: var(--gold-light);
}

.closing__sub {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 3rem;
}

.closing__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--white);
  color: var(--black-deep);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.closing__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
  background: var(--gold-light);
}

/* ── 16. Countdown flip animation ── */
@keyframes cdFlip {
  0% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }

  40% {
    opacity: 0;
    transform: translateY(-8px) scaleY(0.8);
  }

  60% {
    opacity: 0;
    transform: translateY(8px) scaleY(0.8);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

.cd-num.flip {
  animation: cdFlip 0.38s var(--ease-out) both;
}

/* ── 17. Responsive ── */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .nav__logo {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    flex-shrink: 1;
    overflow: hidden;
    white-space: nowrap;
  }

  .nav__cta {
    padding: 0.4rem 0.7rem;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }

  .hero__title {
    font-size: clamp(1.4rem, 13.5vw, 2.8rem);
    white-space: nowrap;
    /* Keep INALCANZABLES on one line always */
    word-break: normal;
    line-height: 1.0;
    margin-inline: auto;
  }

  .hero__title-break {
    display: none !important;
    /* Never force a line break inside the word */
  }

  .ticket-section {
    padding-bottom: 0;
    overflow: hidden;
    /* CONTAIN THE GLOW! */
  }

  .ticket-wrap {
    width: 100%;
    overflow: visible;
    /* Let the rotation happen, but contain it in section */
  }

  .ticket-glow {
    max-width: 100vw;
    inset: -15px;
    /* Tighter on mobile */
  }

  .ticket {
    height: 480px;
    padding-bottom: 0;
    max-width: 290px;
    margin: 0 auto !important;
    display: block;
    transform-style: preserve-3d;
    /* Ensure it stays 3D */
  }

  .ticket__front,
  .ticket__back {
    flex-direction: column;
    border-radius: var(--radius-md);
    height: 480px;
  }

  .ticket__left {
    padding: 1.5rem;
    width: 100%;
  }

  .ticket__perf {
    flex-direction: row;
    width: 100%;
    height: 2px;
  }

  .ticket__notch--top {
    left: -1px;
    top: -9px;
    border-radius: 0 20px 20px 0;
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    border-right: 1px solid rgba(201, 168, 76, 0.25);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    border-left: none;
  }

  .ticket__notch--bottom {
    top: -9px;
    right: -1px;
    bottom: auto;
    border-radius: 20px 0 0 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    border-left: 1px solid rgba(201, 168, 76, 0.25);
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    border-right: none;
  }

  .ticket__dots {
    inset-block: 0;
    inset-inline: 12px;
    width: auto;
    height: 100%;
    background-image: repeating-linear-gradient(to right,
        rgba(201, 168, 76, 0.25) 0,
        rgba(201, 168, 76, 0.25) 5px,
        transparent 5px,
        transparent 12px);
  }

  .ticket__right {
    width: 100%;
    flex-direction: row;
    padding: 1.25rem 1.5rem;
    align-items: center;
    justify-content: space-between;
  }

  .ticket__num {
    margin: 0;
  }

  .ticket__hint {
    flex-direction: row;
    text-align: right;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .reg-form {
    padding: 1.5rem;
    /* Respiración para campos en móvil */
  }

  .spk__body {
    padding: 1.5rem 1rem;
    /* Ajuste de padding para no ahogar el texto */
    margin-top: -3rem;
  }

  .spk__quote {
    font-size: 1rem;
  }

  .schedule__timeline::before {
    left: 5px;
  }

  /* Ajuste del cronograma en móvil */
  .sch-item__dot {
    left: 5px;
  }

  .sch-item {
    padding-left: 30px;
  }

  .footer__info {
    gap: 0.25rem 0.5rem;
    font-size: 0.68rem;
  }
}

@media (hover: none) {

  /* Disable tilt on touch devices */
  .ticket {
    /* No longer disabling transforms on mobile to allow 360 rotation */
  }
}

/* ── 17. Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}

/* ============================================================
   INALCANZABLES — NEW COMPONENTS (v2)
   Quotes Carousel · Speaker Categories · Placeholder · Special
   ============================================================ */

/* ── Quotes Carousel Section ── */
.quotes-section {
  position: relative;
  padding-block: 0;
  overflow: hidden;
  background: var(--black-deep);
}

.quotes-section::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
  z-index: 2;
}

.quotes-section::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
  z-index: 2;
}

.quotes-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.quotes-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
  filter: grayscale(100%) contrast(1.1);
}

.quotes-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black-deep) 0%, rgba(11, 11, 23, 0.4) 50%, var(--black-deep) 100%);
}

.quotes-track-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ambient glow behind carousel */
.quotes-track-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.quotes-track {
  position: relative;
  width: 100%;
  max-width: 900px;
  /* Min height to hold the absolutely positioned slides */
  min-height: 400px;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding-inline: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.97) translateY(10px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
}

.quote-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  z-index: 2;
}

.quote-slide__mark {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}

.quote-slide__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.quote-slide__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.quote-slide__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.quote-slide__role {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* Progress Bar */
.quotes-progress {
  width: 100%;
  max-width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.quotes-progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--gold);
}

/* ── Speaker Category Separator ── */
.spk-category {
  margin-bottom: 2.5rem;
}

.spk-category__label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  width: 100%;
}

.spk-category__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold-dim);
  opacity: 0.7;
  letter-spacing: 0;
  flex-shrink: 0;
}

/* ── Speaker Grid — Single Column Variant ── */
.speakers__grid--single {
  grid-template-columns: 1fr;
}

/* ── Speaker Wide (single-col full layout) ── */
.spk--wide {
  max-width: 900px;
  margin-inline: auto;
}

/* ── Speaker Stacked (imagen arriba, texto abajo — para grids 2 columnas) ── */
.spk--stacked {
  grid-template-columns: 1fr !important;
}

.spk--stacked .spk__image-wrap {
  height: 320px;
  min-height: unset;
}

.spk--stacked .spk__image-wrap img {
  object-position: center 20%;
}

.spk--stacked .spk__image-overlay {
  background: linear-gradient(to top, var(--black-card) 0%, transparent 60%);
}

.spk--stacked .spk__body {
  margin-top: -4rem;
}

/* ── Speaker Image Placeholder ── */
.spk__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f0f1c, #1a1628);
}

.spk__placeholder-initial {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--gold-dim);
  opacity: 0.18;
  line-height: 1;
  user-select: none;
}

/* ── Special Networking Speaker Card ── */
.spk-special {
  margin-top: clamp(4rem, 8vw, 6rem);
}

.spk-special__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  background: rgba(201, 168, 76, 0.04);
}

.spk-special__dot {
  color: var(--gold);
}

.spk-special__card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: linear-gradient(135deg, #0e0d20 0%, #1a163a 50%, #0e0d20 100%);
  box-shadow:
    0 0 60px rgba(201, 168, 76, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

@media (min-width: 700px) {
  .spk-special__card {
    grid-template-columns: 300px 1fr;
  }
}

@media (min-width: 900px) {
  .spk-special__card {
    grid-template-columns: 360px 1fr;
  }
}

.spk-special__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow:
    0 0 80px rgba(201, 168, 76, 0.10),
    0 40px 100px rgba(0, 0, 0, 0.7);
}

.spk-special__image-wrap {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: #0f0f1c;
}

@media (min-width: 700px) {
  .spk-special__image-wrap {
    min-height: auto;
  }
}

.spk-special__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  will-change: transform;
}

.spk-special__glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 40%, #0e0d20 100%),
    linear-gradient(to top, rgba(14, 13, 32, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.spk-special__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
}

@media (min-width: 700px) {
  .spk-special__body {
    align-items: flex-start;
  }
}

/* Star-field texture on special body */
.spk-special__body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(201, 168, 76, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.5;
}

.spk-special__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.spk-special__role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

/* ============================================================
   INALCANZABLES — v3 NEW SECTIONS
   Sobre el Evento · A Quién Va Dirigido · Experiencia
   ============================================================ */

/* ── Sobre el Evento ── */
.about-event {
  padding-block: clamp(5rem, 10vw, 8rem);
  position: relative;
  background: linear-gradient(to bottom, #0b0b17, var(--black-deep));
}

.about-event::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
}

/* Stats row */
.about-event__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  margin-bottom: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}

.about-event__stat {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
  text-align: center;
  transition: background 0.3s;
}

.about-event__stat:hover {
  background: rgba(201, 168, 76, 0.04);
}

.about-event__stat-sep {
  width: 1px;
  height: 60px;
  background: var(--black-border);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .about-event__stat-sep {
    display: none;
  }

  .about-event__stat {
    flex-basis: 50%;
    border-bottom: 1px solid var(--black-border);
  }
}

.about-event__stat-icon {
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.about-event__stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.1;
}

.about-event__stat-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* Manifesto (two-col) */
.about-event__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

@media (min-width: 860px) {
  .about-event__body {
    grid-template-columns: 1fr 1fr;
  }
}

.about-event__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--white);
  margin-top: 1rem;
}

.about-event__heading em {
  font-style: italic;
  color: var(--gold-light);
}

.about-event__text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--white-dim);
  margin-bottom: 1.25rem;
}

.about-event__text strong {
  color: var(--white);
  font-weight: 500;
}

.about-event__text--accent {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  padding-left: 1rem;
  border-left: 2px solid var(--gold-dim);
  margin-top: 2rem;
}

.about-event__text--accent em {
  color: var(--gold-light);
}

.about-event__statement {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-event__statement-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}

.about-event__statement-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold-dim));
}

.about-event__statement-text {
  font-family: var(--font-ui);
  font-size: clamp(0.58rem, 1.2vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  flex-shrink: 0;
  max-width: 260px;
  line-height: 1.8;
}

.about-event__cta {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.about-event__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black-deep);
}

/* ── A Quién Va Dirigido ── */
.audience {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  background: var(--black-deep);
}

.audience::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
}

.audience__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.audience__header {
  text-align: center;
  max-width: 700px;
}

.audience__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.audience__heading em {
  font-style: italic;
  color: var(--gold-light);
}

.audience__sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--white-dim);
}

/* Cards */
.audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .audience__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }
}

.audience__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2.5rem 2rem;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  border-radius: var(--radius-md);
  transition: transform 0.4s, border-color 0.4s, background 0.4s;
}

.audience__card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
  /* light gold glow */
}

.audience__card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold-dim);
  opacity: 0.4;
  line-height: 1;
}

.audience__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.audience__card-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ── Experiencia del Evento ── */
.experience {
  padding-block: clamp(5rem, 10vw, 9rem);
  position: relative;
  background: linear-gradient(to bottom, var(--black-deep), #0b0b17, var(--black-deep));
}

.experience::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
}

.experience__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.experience__heading em {
  font-style: italic;
  color: var(--gold-light);
}

.experience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .experience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.experience__card {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}

.experience__card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.25);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 0 20px var(--gold-glow-sm);
  background: linear-gradient(135deg, var(--black-card), #141424);
}

.experience__card-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
  opacity: 0.85;
  transition: opacity 0.3s;
}

.experience__card:hover .experience__card-icon {
  opacity: 1;
}

.experience__card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.experience__card-desc {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.75;
}

/* ── Developer Credit (DVIAM) ── */
.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.footer__creator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.footer__creator-brand {
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.4);
  position: relative;
}

.footer__creator-brand::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

/* ── 18. Fix for Small Mobile Devices ── */
@media (max-width: 480px) and (max-height: 750px) {
  .hero {
    min-height: 82dvh;
    height: auto;
    padding-bottom: 3rem;
  }

  .hero__content {
    padding-top: 4rem;
  }

  .hero__subtitle {
    margin-bottom: 1.5rem;
  }

  .about,
  .why,
  .audience,
  .speakers,
  .takeaway,
  .experience,
  .venue,
  .schedule {
    padding-block: 3rem;
  }

  .hero__scroll-arrow {
    height: 25px;
  }
}

/* ============================================================
   19. INALCANZABLES — NUEVOS BLOQUES (Impacto, Inst, FAQ)
   ============================================================ */

/* ── BARRA DE IMPACTO ── */
.impact {
  padding-block: clamp(2rem, 4vw, 3rem);
  /* antes: clamp(3rem, 6vw, 5rem) */
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  position: relative;
}

.impact__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.impact__stat {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

.impact__sep {
  width: 1px;
  height: 60px;
  background: var(--black-border);
}

@media (max-width: 768px) {
  .impact__sep {
    display: none;
  }

  .impact__stat {
    flex-basis: 50%;
    border-bottom: 1px solid var(--black-border);
    padding: 2rem 1rem;
  }

  .impact__stat:nth-child(even) {
    border-left: 1px solid var(--black-border);
  }
}

.impact__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact__text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  line-height: 1.5;
}


/* ── impact eyebrown ── */
.impact__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.impact__line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.35));
}

.impact__eyebrow .impact__line:last-child {
  background: linear-gradient(to left, transparent, rgba(201, 168, 76, 0.35));
}

/* ── ACTUALIZACIÓN SCHEDULE ── */
.sch-item__time {
  width: 235px;
  font-size: 1.15rem;
  padding-right: 2rem;
}

.schedule__timeline::before {
  left: 235px;
}

.sch-item__dot {
  left: 235px;
}

.sch-item__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.sch-item__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.6;
}

.sch-item__list li::before {
  content: '◈';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dim);
  font-size: 0.75rem;
}

.sch-item__note {
  font-size: 0.85rem;
  color: var(--gold-dim);
  font-style: italic;
  margin-top: 1rem;
  border-left: 2px solid rgba(201, 168, 76, 0.3);
  padding-left: 1rem;
}

@media (max-width: 600px) {
  .schedule__timeline::before {
    left: 15px;
  }

  .sch-item__time {
    width: auto;
    font-size: 1.1rem;
  }

  .sch-item__dot {
    left: 15px;
  }
}

/* ── BLOQUE INSTITUCIONAL ── */
.institutional {
  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--black-deep);
  position: relative;
  overflow: hidden;
}

.institutional::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
  z-index: 2;
}

.institutional__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.institutional__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
  filter: grayscale(100%) contrast(1.1);
}

.institutional__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black-deep) 0%, rgba(15, 15, 24, 0.6) 50%, var(--black-deep) 100%);
}

.container--institutional {
  display: grid;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.institutional__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}

.eyebrow--inst {
  color: var(--white-muted);
}

.institutional__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.institutional__heading em {
  font-style: italic;
  color: var(--gold-dim);
}

.institutional__sub {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.7;
}

.institutional__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.inst-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: transform 0.4s, border-color 0.4s, background 0.4s;
}

.inst-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.02);
}

.inst-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.inst-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.inst-card__role {
  font-size: 0.75rem;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.inst-card__desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* Variante inst-card con foto compacta arriba */
.inst-card--photo {
  padding: 0;
  overflow: hidden;
}

.inst-card--photo .inst-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.inst-card--photo .inst-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.inst-card--photo:hover .inst-card__photo img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}

.inst-card--photo .inst-card__photo-credential {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(8, 8, 14, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
}

.inst-card--photo .inst-card__content {
  padding: 1.5rem 1.75rem 1.75rem;
}

/* ── FAQ ── */
.faq {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--black-deep);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-glow), transparent);
}

.text-center {
  text-align: center;
}

.faq__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 3rem;
}

.faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq__item:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.faq__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  list-style: none;
  /* Hide default arrow */
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__q-text {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
}

.faq__icon {
  font-size: 1.5rem;
  color: var(--gold-dim);
  font-weight: 300;
  transition: transform 0.3s;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 2rem 1.5rem 2rem;
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ── Responsive: spk--stacked (Marcelo Ebrard / Emmanuel Reyes) ── */
@media (max-width: 768px) {
  .spk--stacked .spk__image-wrap {
    height: 260px;
  }
  .spk--stacked .spk__body {
    margin-top: -2.5rem;
    padding: 1.75rem 1.5rem;
  }
}

@media (max-width: 430px) {
  .spk--stacked .spk__image-wrap {
    height: 220px;
  }
  .spk--stacked .spk__body {
    margin-top: -1.5rem;
    padding: 1.5rem 1.25rem;
  }
}

/* ── 20. RESPONSIVE FIXES: MOBILE SMALL & TWEAKS (AUDIT) ── */
@media (max-width: 430px) {
  .nav {
    padding: 0.6rem 1rem;
  }
  .nav__logo {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
  .nav__cta {
    padding: 0.4rem 0.6rem;
    font-size: 0.55rem;
  }
  .hero__title {
    font-size: clamp(1.8rem, 11vw, 2.8rem);
  }
  .spk__image-wrap {
    height: 350px;
    min-height: 350px;
  }
  .spk__body {
    padding: 1.5rem 1.25rem;
    margin-top: -2rem;
  }
}

@media (max-width: 375px) {
  .faq__summary {
    padding: 1.25rem 1.25rem;
  }
  .faq__answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
  .audience__card,
  .inst-card {
    padding: 1.5rem 1.25rem;
  }
  .reg-form {
    padding: 1.5rem 1.25rem;
  }
  .hero__cd-grid {
    gap: 0.5rem;
  }
  .takeaway__card {
    padding: 1.5rem 1.25rem;
  }
  .experience__card {
    padding: 1.5rem 1.25rem;
  }
  .quotes-track {
    min-height: 460px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .speakers__grid {
    flex-direction: row;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .spk {
    grid-template-columns: 1fr;
  }
  .spk__image-wrap {
    min-height: 350px;
    height: 350px;
  }
  .spk__body {
    padding: 2rem;
    margin-top: -3rem;
  }
  .spk-special__card {
    grid-template-columns: 40% 1fr;
  }
  .speakers__grid--single {
    grid-template-columns: 1fr;
  }
  /* spk--stacked en tablet: imagen cuadrada, texto correcto */
  .spk--stacked .spk__image-wrap {
    height: 300px;
    min-height: unset;
  }
  .spk--stacked .spk__body {
    margin-top: -3rem;
    padding: 2rem;
  }
}

/* Fix desktop wide breathing */
@media (min-width: 1440px) {
  .hero__title {
    font-size: 7.5rem;
  }
  .venue__heading, .closing__heading {
    font-size: 4.5rem;
  }
}

/* Ensure mobile ticket wrapper respects margin */
@media (max-width: 600px) {
  .ticket-wrap {
    margin-bottom: 3rem;
  }
}
