:root {
  --black: #050505;
  --white: #f7f4ed;
  --muted: #b7b0a4;
  --gold: #d8a62b;
  --gold-bright: #ffd875;
  --line: rgba(227, 173, 52, .28);
  --promo-h: 34px;
  --nav-h: 74px;
  --header-h: calc(var(--promo-h) + var(--nav-h));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: "Montserrat", system-ui, sans-serif;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  pointer-events: none;
}
.promo-strip,
.nav-shell,
.mobile-panel { pointer-events: auto; }
.promo-strip {
  min-height: var(--promo-h);
  max-height: var(--promo-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .58rem;
  padding: 5px 18px;
  overflow: hidden;
  color: #f5d576;
  background:
    linear-gradient(90deg, transparent, rgba(218,157,35,.11) 22%, rgba(218,157,35,.18) 50%, rgba(218,157,35,.11) 78%, transparent),
    rgba(2,2,2,.94);
  border-bottom: 1px solid rgba(223,171,52,.22);
  box-shadow: 0 5px 20px rgba(0,0,0,.18);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .61rem;
  white-space: nowrap;
  transition: background .3s ease, border-color .3s ease;
}
.promo-strip strong { color: #fff0ad; font-weight: 850; }
.promo-strip__spark {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--gold-bright);
  box-shadow: 0 0 12px 3px rgba(246,198,82,.75);
  animation: promoPulse 2.2s ease-in-out infinite;
}
.promo-strip__copy {
  display: inline-flex;
  align-items: center;
  gap: .52rem;
}
.promo-strip__copy--mobile { display: none; }
.promo-countdown {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  padding: 3px 8px;
  color: #fff5c7;
  border: 1px solid rgba(240,192,72,.26);
  background: rgba(255,197,65,.055);
  box-shadow: inset 0 0 14px rgba(255,188,49,.04), 0 0 14px rgba(0,0,0,.16);
  font-variant-numeric: tabular-nums;
  letter-spacing: .045em;
}
.promo-countdown__unit {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.promo-countdown__unit b {
  min-width: 1.55em;
  color: #fff4bd;
  text-align: right;
  font-family: "Montserrat", sans-serif;
  font-size: .68rem;
  font-weight: 900;
}
.promo-countdown__unit small {
  color: #d5a83e;
  font-size: .48rem;
  font-weight: 900;
}
.promo-countdown i {
  color: rgba(255,218,125,.48);
  font-style: normal;
  font-size: .55rem;
}
.promo-strip__link {
  position: relative;
  color: #fff0a4;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: .11em;
}
.promo-strip__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f7cc62, transparent);
  transform: scaleX(.35);
  transition: transform .22s ease;
}
.promo-strip__link:hover::after,
.promo-strip__link:focus-visible::after { transform: scaleX(1); }
.promo-strip__expired {
  color: #fff0a4;
  font-weight: 850;
  letter-spacing: .09em;
}
.promo-strip.is-expired .promo-strip__copy,
.promo-strip.is-expired .promo-countdown { display: none; }
.promo-strip.is-expired .promo-strip__expired[hidden] { display: inline; }
.nav-shell {
  width: 100%;
  min-height: var(--nav-h);
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 52px);
  padding: 8px clamp(20px, 4vw, 72px);
  background: linear-gradient(180deg, rgba(0,0,0,.84), rgba(0,0,0,.22) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: min-height .35s ease, background .35s ease, backdrop-filter .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled .nav-shell {
  min-height: 66px;
  background: rgba(3,3,3,.78);
  backdrop-filter: blur(20px) saturate(125%);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  border-bottom-color: rgba(238,184,62,.16);
  box-shadow: 0 12px 38px rgba(0,0,0,.28);
}
.brand {
  min-width: 184px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  position: relative;
  width: 55px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(229,164,32,.12);
  filter: blur(13px);
  z-index: -1;
}
.brand-mark img {
  width: 100%;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 13px rgba(255,185,45,.25));
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: .91;
  text-transform: uppercase;
}
.brand-copy strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.32rem;
  letter-spacing: .13em;
  color: #f4f0e8;
}
.brand-copy small {
  margin-top: 4px;
  color: #d9a62d;
  font-size: .58rem;
  font-weight: 750;
  letter-spacing: .3em;
}
.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 1.7vw, 31px);
}
.desktop-nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(247,244,237,.73);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .105em;
  font-size: clamp(.58rem, .62vw, .71rem);
  font-weight: 700;
  white-space: nowrap;
  transition: color .22s ease, text-shadow .22s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 10px rgba(242,188,59,.72);
  transition: left .25s ease, right .25s ease;
}
.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff3bd;
  text-shadow: 0 0 14px rgba(255,203,79,.23);
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { left: 0; right: 0; }
.header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 0 18px;
  color: #0a0804;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .115em;
  font-weight: 900;
  font-size: .66rem;
  border: 1px solid #f0c85c;
  background: linear-gradient(110deg,#8f5912,#ecc04a 28%,#ffe799 49%,#d99b24 73%,#77470d);
  box-shadow: 0 9px 28px rgba(220,151,29,.16), inset 0 1px rgba(255,255,255,.65);
  transition: transform .22s ease, box-shadow .22s ease;
}
.header-cta::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 26%;
  transform: skewX(-18deg);
  background: rgba(255,255,255,.68);
  filter: blur(3px);
  animation: headerShine 5.2s ease-in-out infinite 1.1s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(226,161,38,.3), inset 0 1px rgba(255,255,255,.72); }
.header-cta--mobile,
.menu-toggle,
.mobile-panel { display: none; }
.menu-toggle {
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(237,186,65,.34);
  background: rgba(12,10,7,.55);
  color: #f5d372;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  width: 19px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 8px rgba(239,179,50,.25);
  transition: transform .28s ease, opacity .2s ease, width .28s ease;
}
.menu-toggle span:nth-child(1) { transform: translateY(-6px); }
.menu-toggle span:nth-child(3) { transform: translateY(6px); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }
.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: -1;
  padding: 116px 24px 28px;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(181,111,12,.19), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(109,67,9,.17), transparent 34%),
    rgba(3,3,3,.97);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}
.mobile-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mobile-nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(226,174,54,.22);
}
.mobile-nav a {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: 11px;
  padding: 14px 4px;
  color: #f4efe7;
  border-bottom: 1px solid rgba(255,255,255,.075);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.55rem, 7vw, 2.35rem);
  line-height: 1;
}
.mobile-nav a span {
  color: #d9a12b;
  font-family: "Montserrat", sans-serif;
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.mobile-panel__cta {
  position: relative;
  z-index: 2;
  min-height: 59px;
  margin-top: 24px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #090703;
  background: linear-gradient(110deg,#8c5813,#f4c953 25%,#ffe391 46%,#d89c27 70%,#7e4e10);
  border: 1px solid #f4cf68;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .78rem;
  font-weight: 900;
}
.mobile-panel__cta svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.mobile-panel__meta {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: #968f85;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .58rem;
}
body.menu-open { overflow: hidden; }
@keyframes promoPulse { 50% { opacity: .45; transform: scale(.72); } }
@keyframes headerShine { 0%,70% { left:-45%; } 84%,100% { left:125%; } }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, rgba(139,80,7,.18), transparent 35%),
    radial-gradient(circle at 12% 65%, rgba(92,55,8,.15), transparent 30%),
    #040404;
}
.particles { position:absolute; inset:0; width:100%; height:100%; z-index:-1; opacity:.7; }
.hero-noise {
  position:absolute; inset:0; z-index:-1; pointer-events:none; opacity:.08;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}
.hero-flare { position:absolute; width:42vw; aspect-ratio:1; border-radius:50%; filter:blur(90px); pointer-events:none; opacity:.15; }
.hero-flare--one { right:-15vw; top:-15vw; background:#c4780b; }
.hero-flare--two { left:-22vw; bottom:-24vw; background:#7e4d09; }

.hero-layout {
  width: min(1540px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-h) + 28px) clamp(20px, 4vw, 72px) 54px;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(580px, 1.22fr);
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
}
.hero-copy { position:relative; z-index:20; max-width:660px; }
.eyebrow {
  margin:0 0 14px;
  color:var(--gold-bright);
  text-transform:uppercase;
  letter-spacing:.42em;
  font-size:clamp(.68rem, .8vw, .83rem);
  font-weight:700;
}
.eyebrow::before {
  content:""; display:inline-block; width:42px; height:1px; margin-right:13px; vertical-align:middle;
  background:linear-gradient(90deg, transparent, var(--gold-bright)); box-shadow:0 0 10px var(--gold);
}
.hero-title { margin:0; font-family:"Bebas Neue", sans-serif; line-height:.82; letter-spacing:.015em; text-transform:uppercase; }
.hero-title__line { display:block; font-size:clamp(5.1rem, 8.6vw, 10.2rem); }
.hero-title__line--white { color:#f5f2eb; text-shadow:0 8px 32px rgba(0,0,0,.55); }
.hero-title__line--gold {
  color:transparent;
  background:linear-gradient(180deg,#fff0a4 0%,#e8b536 28%,#9c6112 68%,#f3ca54 100%);
  -webkit-background-clip:text; background-clip:text;
  filter:drop-shadow(0 5px 18px rgba(213,146,28,.2));
}
.hero-subtitle {
  max-width:620px; margin:24px 0 23px; color:#d8d3ca; font-size:clamp(1rem, 1.32vw, 1.28rem); line-height:1.55;
}
.hero-subtitle strong { color:var(--gold-bright); font-weight:700; }
.event-facts {
  display:flex; flex-wrap:wrap; align-items:center; gap:0; margin:0 0 28px; color:#d8d2c7; text-transform:uppercase;
  font-size:.76rem; letter-spacing:.15em;
}
.event-facts span { display:flex; align-items:center; white-space:nowrap; }
.event-facts span:not(:last-child)::after { content:""; width:1px; height:24px; margin:0 18px; background:linear-gradient(transparent,var(--gold),transparent); }
.event-facts b { font-weight:800; }
.primary-cta {
  width:max-content; max-width:100%; min-height:58px; display:inline-flex; align-items:center; gap:18px; padding:0 26px;
  color:#080705; text-decoration:none; text-transform:uppercase; letter-spacing:.07em; font-size:.86rem; font-weight:900;
  background:linear-gradient(110deg,#8c5813 0%,#f4c953 25%,#ffe391 46%,#d89c27 70%,#7e4e10 100%);
  border:1px solid #f4cf68; box-shadow:0 13px 45px rgba(226,162,40,.2), inset 0 1px 0 rgba(255,255,255,.68);
  position:relative; overflow:hidden; transition:transform .25s ease, box-shadow .25s ease;
}
.primary-cta::after { content:""; position:absolute; inset:-60% auto -60% -45%; width:28%; transform:skewX(-18deg); background:rgba(255,255,255,.62); filter:blur(3px); animation:shine 4.7s ease-in-out infinite 1.3s; }
.primary-cta:hover { transform:translateY(-3px) scale(1.015); box-shadow:0 18px 55px rgba(226,162,40,.34), inset 0 1px 0 rgba(255,255,255,.76); }
.primary-cta svg { width:22px; fill:none; stroke:#080705; stroke-width:1.8; }
.launch { margin-top:28px; }
.launch__label { margin:0 0 11px; color:var(--gold-bright); text-transform:uppercase; letter-spacing:.12em; font-size:.69rem; font-weight:800; }
.countdown { display:flex; gap:8px; }
.countdown__item {
  min-width:74px; padding:10px 9px 9px; text-align:center; border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,192,53,.075),rgba(0,0,0,.3)); box-shadow:inset 0 0 22px rgba(0,0,0,.4);
}
.countdown__item strong { display:block; font-family:"Bebas Neue",sans-serif; font-size:1.7rem; line-height:1; color:#f7d56f; letter-spacing:.04em; }
.countdown__item span { display:block; margin-top:5px; color:#9c958a; font-size:.54rem; text-transform:uppercase; letter-spacing:.12em; }
.hero-manifesto { margin:24px 0 0; padding-left:16px; border-left:2px solid var(--gold); color:#aca69c; line-height:1.55; font-size:.92rem; }
.hero-manifesto strong { color:#f6f1e8; font-weight:800; }

.hero-stage {
  position:relative;
  z-index:10;
  width:100%;
  max-width:880px;
  justify-self:end;
  aspect-ratio: 1 / 1.05;
  min-height:560px;
  overflow:hidden;
  border-radius:52% 48% 8% 8% / 40% 42% 7% 7%;
  background:#000;
  transform-style:preserve-3d;
  perspective:1200px;
  filter:drop-shadow(0 35px 60px rgba(0,0,0,.48));
}
.stage-bg { position:absolute; inset:-4%; width:108%; height:108%; object-fit:cover; object-position:center 27%; opacity:.88; transform:scale(1.04); animation:bgBreath 12s ease-in-out infinite alternate; }
.stage-angel { position:absolute; z-index:2; left:50%; bottom:-8%; width:38%; transform:translateX(-50%); opacity:.18; mix-blend-mode:screen; filter:sepia(1) saturate(1.8) drop-shadow(0 0 24px rgba(232,170,48,.32)); }
.stage-halo { position:absolute; z-index:3; left:50%; top:12%; width:72%; aspect-ratio:1; transform:translateX(-50%); border-radius:50%; border:1px solid rgba(249,194,60,.34); box-shadow:0 0 40px rgba(226,157,33,.12), inset 0 0 50px rgba(226,157,33,.07); }
.stage-halo::before,.stage-halo::after { content:""; position:absolute; inset:7%; border-radius:50%; border:1px dashed rgba(249,194,60,.16); animation:spin 28s linear infinite; }
.stage-halo::after { inset:16%; animation-direction:reverse; animation-duration:20s; }
.speaker { position:absolute; z-index:5; margin:0; pointer-events:none; transform:translate3d(var(--tx,0),var(--ty,0),0); will-change:transform; }
.speaker img { position:relative; z-index:4; width:100%; height:100%; object-fit:contain; object-position:center bottom; filter:drop-shadow(0 22px 20px rgba(0,0,0,.86)) drop-shadow(0 0 10px rgba(214,151,32,.16)); }
.speaker::before { content:""; position:absolute; z-index:1; inset:7% 6% 10%; border-radius:50%; background:radial-gradient(circle at center, rgba(0,0,0,.18) 0%, rgba(0,0,0,.58) 48%, rgba(0,0,0,.92) 67%, rgba(0,0,0,0) 74%); border:1.5px solid rgba(230,183,82,.34); box-shadow: 0 0 0 1px rgba(255,223,145,.08) inset, 0 0 18px rgba(236,176,55,.18), 0 0 48px rgba(236,176,55,.12); transform:scale(1.03); }
.speaker-matte { position:absolute; z-index:2; inset:12% 0 0; border-radius:50%; background:radial-gradient(ellipse at center,rgba(0,0,0,.96) 0%,rgba(0,0,0,.82) 43%,rgba(0,0,0,0) 74%); filter:blur(9px); transform:scale(1.1); }
.speaker::after { content:""; position:absolute; z-index:3; inset:4% 3% 9%; border-radius:50%; border:1px solid rgba(255,225,154,.16); box-shadow: 0 0 30px rgba(235,176,59,.14), inset 0 12px 20px rgba(255,225,160,.05), inset 0 -16px 18px rgba(0,0,0,.18); mask: radial-gradient(circle at center, transparent 58%, #000 59%, #000 66%, transparent 68%); -webkit-mask: radial-gradient(circle at center, transparent 58%, #000 59%, #000 66%, transparent 68%); pointer-events:none; }
.speaker--carla { left:1.5%; top:3%; width:34%; height:49%; z-index:5; animation:enterLeft 1s cubic-bezier(.2,.75,.2,1) both .52s; }
.speaker--patricio { right:1.5%; top:2%; width:34%; height:50%; z-index:5; animation:enterRight 1s cubic-bezier(.2,.75,.2,1) both .62s; }
.speaker--alexa { left:50%; top:5%; width:30%; height:43%; z-index:4; transform:translateX(-50%) translate3d(var(--tx,0),var(--ty,0),0); animation:enterTop 1s cubic-bezier(.2,.75,.2,1) both .73s; }
.speaker--carlos { left:0; bottom:-1%; width:31%; height:50%; z-index:6; animation:enterLeft 1s cubic-bezier(.2,.75,.2,1) both .85s; }
.speaker--alejandro { right:-.5%; bottom:-1%; width:31%; height:50%; z-index:6; animation:enterRight 1s cubic-bezier(.2,.75,.2,1) both .95s; }
.speaker--daniel { left:50%; bottom:-3%; width:44%; height:65%; z-index:9; transform:translateX(-50%) translate3d(var(--tx,0),var(--ty,0),0); animation:enterDaniel 1.2s cubic-bezier(.16,.84,.2,1) both 1.05s; }
.stage-vignette { position:absolute; z-index:20; inset:0; pointer-events:none; background:linear-gradient(90deg,#000 0%,transparent 11%,transparent 89%,#000 100%),linear-gradient(0deg,#000 0%,transparent 21%,transparent 87%,rgba(0,0,0,.45) 100%); }
.hero-animate { opacity:0; transform:translateY(24px); animation:copyIn .75s cubic-bezier(.2,.75,.2,1) forwards var(--delay); }
.scroll-cue { position:absolute; z-index:30; left:50%; bottom:18px; transform:translateX(-50%); width:28px; height:44px; border:1px solid rgba(255,210,105,.45); border-radius:20px; }
.scroll-cue span { position:absolute; top:8px; left:50%; width:4px; height:8px; margin-left:-2px; border-radius:4px; background:#f2c85f; box-shadow:0 0 9px rgba(242,200,95,.8); animation:scrollDot 1.8s ease-in-out infinite; }
.future-section { min-height:28vh; display:grid; place-items:center; color:#6d665d; background:#050505; border-top:1px solid rgba(255,255,255,.04); }
.future-section p { text-transform:uppercase; letter-spacing:.2em; font-size:.65rem; }

@keyframes copyIn { to { opacity:1; transform:none; } }
@keyframes enterLeft { from { opacity:0; transform:translate3d(-40px,18px,0) scale(.96); filter:blur(8px); } to { opacity:1; transform:translate3d(var(--tx,0),var(--ty,0),0) scale(1); filter:none; } }
@keyframes enterRight { from { opacity:0; transform:translate3d(40px,18px,0) scale(.96); filter:blur(8px); } to { opacity:1; transform:translate3d(var(--tx,0),var(--ty,0),0) scale(1); filter:none; } }
@keyframes enterTop { from { opacity:0; transform:translateX(-50%) translateY(-35px) scale(.95); filter:blur(8px); } to { opacity:1; transform:translateX(-50%) translate3d(var(--tx,0),var(--ty,0),0) scale(1); filter:none; } }
@keyframes enterDaniel { from { opacity:0; transform:translateX(-50%) translateY(45px) scale(.93); filter:blur(10px); } to { opacity:1; transform:translateX(-50%) translate3d(var(--tx,0),var(--ty,0),0) scale(1); filter:none; } }
@keyframes shine { 0%,68% { left:-45%; } 82%,100% { left:125%; } }
@keyframes bgBreath { to { transform:scale(1.095); filter:brightness(1.08); } }
@keyframes spin { to { transform:rotate(360deg); } }
@keyframes scrollDot { 0% { transform:translateY(0); opacity:0; } 25% { opacity:1; } 75% { opacity:1; } 100% { transform:translateY(18px); opacity:0; } }

@media (max-width: 1180px) {
  .hero-layout { grid-template-columns:minmax(310px,.85fr) minmax(500px,1.15fr); gap:20px; }
  .hero-stage { min-height:520px; }
  .hero-title__line { font-size:clamp(4.7rem,9vw,8rem); }
}
@media (max-width: 900px) {
  :root { --promo-h:32px; --nav-h:64px; --header-h:96px; }
  .nav-shell {
    grid-template-columns: minmax(0,1fr) auto auto;
    gap: 9px;
    padding: 6px 14px;
  }
  .desktop-nav,
  .header-cta--desktop { display:none; }
  .header-cta--mobile { display:inline-flex; min-height:40px; padding-inline:13px; font-size:.61rem; }
  .menu-toggle { display:grid; position:relative; }
  .mobile-panel { display:flex; }
  .brand { min-width:0; }
  .brand-mark { width:49px; height:43px; }
  .brand-mark img { max-height:43px; }
  .brand-copy strong { font-size:1.15rem; }
  .brand-copy small { font-size:.51rem; letter-spacing:.25em; }
  .site-header.is-scrolled .nav-shell { min-height:60px; }
  .hero { min-height:auto; }
  .hero-layout { min-height:auto; padding:calc(var(--header-h) + 12px) 16px 58px; display:flex; flex-direction:column; gap:10px; }
  .hero-stage { order:1; width:min(100%,650px); min-height:0; aspect-ratio:1/1.08; border-radius:46% 46% 4% 4% / 36% 36% 4% 4%; }
  .hero-copy { order:2; width:min(100%,680px); margin-top:-20px; padding:0 4px; text-align:center; }
  .eyebrow::before { display:none; }
  .hero-title__line { font-size:clamp(4.5rem,18vw,7.2rem); }
  .hero-subtitle { margin:18px auto 19px; max-width:560px; }
  .event-facts { justify-content:center; }
  .primary-cta { margin-inline:auto; }
  .launch { display:flex; flex-direction:column; align-items:center; }
  .hero-manifesto { display:inline-block; text-align:left; }
  .scroll-cue { display:none; }
}
@media (max-width: 560px) {
  .promo-strip {
    gap: .35rem;
    padding-inline: 7px;
    font-size: .52rem;
    letter-spacing: .085em;
  }
  .promo-strip__copy--desktop { display:none; }
  .promo-strip__copy--mobile { display:inline-flex; }
  .promo-strip__link { display:none; }
  .promo-countdown { gap:.14rem; padding:3px 5px; }
  .promo-countdown__unit b { min-width:1.35em; font-size:.62rem; }
  .promo-countdown__unit small { font-size:.43rem; }
  .promo-countdown__unit--seconds,
  .promo-countdown__seconds-separator { display:none; }
  .promo-strip__expired { font-size:.5rem; letter-spacing:.06em; }
  .brand-copy { display:none; }
  .brand { width:50px; }
  .header-cta--mobile { padding-inline:11px; letter-spacing:.08em; }
  .mobile-panel { padding:102px 17px 22px; }
  .hero-layout { padding-inline:10px; }
  .hero-stage { width:calc(100% + 4px); aspect-ratio:1/1.17; margin-top:4px; }
  .speaker--carla { left:-2%; top:4%; width:38%; height:48%; }
  .speaker--patricio { right:-2%; top:4%; width:38%; height:48%; }
  .speaker--alexa { top:11%; width:34%; height:40%; }
  .speaker--carlos { left:-4%; bottom:0; width:35%; height:46%; }
  .speaker--alejandro { right:-4%; bottom:0; width:35%; height:46%; }
  .speaker--daniel { bottom:-2%; width:49%; height:61%; }
  .hero-copy { margin-top:-8px; }
  .eyebrow { margin-bottom:10px; font-size:.6rem; }
  .hero-title { line-height:.86; }
  .hero-title__line { font-size:clamp(4rem,21vw,5.7rem); }
  .hero-subtitle { font-size:.96rem; line-height:1.48; padding-inline:8px; }
  .event-facts { font-size:.61rem; letter-spacing:.09em; }
  .event-facts span:not(:last-child)::after { height:18px; margin:0 9px; }
  .primary-cta { width:100%; justify-content:center; min-height:58px; padding-inline:16px; font-size:.78rem; }
  .countdown { width:100%; gap:5px; }
  .countdown__item { flex:1; min-width:0; padding-inline:4px; }
  .countdown__item strong { font-size:1.48rem; }
  .launch__label { font-size:.61rem; }
  .hero-manifesto { margin-top:20px; font-size:.82rem; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; }
}

/* =========================================================
   SECCIÓN 03 · EL ESPEJO
   ========================================================= */
.mirror-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 11vw, 170px) 0 clamp(94px, 10vw, 160px);
  background:
    radial-gradient(circle at 82% 25%, rgba(208, 137, 22, .13), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(125, 76, 9, .12), transparent 32%),
    linear-gradient(180deg, #030303 0%, #070604 48%, #020202 100%);
  border-top: 1px solid rgba(245, 190, 63, .16);
}
.mirror-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}
.mirror-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  box-shadow: inset 0 80px 100px rgba(0,0,0,.35), inset 0 -100px 130px rgba(0,0,0,.55);
}
.mirror-atmosphere { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.mirror-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(239, 181, 48, .18);
  box-shadow: 0 0 38px rgba(216, 146, 24, .08), inset 0 0 42px rgba(216, 146, 24, .04);
}
.mirror-ring--one { width: 620px; height: 620px; top: -170px; right: -205px; }
.mirror-ring--two { width: 420px; height: 420px; bottom: -165px; left: -160px; border-style: dashed; animation: mirrorSpin 36s linear infinite; }
.mirror-glow { position: absolute; border-radius: 50%; filter: blur(75px); opacity: .34; }
.mirror-glow--one { width: 300px; height: 300px; top: 12%; right: 3%; background: rgba(216, 145, 25, .19); }
.mirror-glow--two { width: 250px; height: 250px; bottom: 8%; left: 4%; background: rgba(131, 78, 8, .17); }
.mirror-shard {
  position: absolute;
  width: 42px;
  height: 58px;
  clip-path: polygon(48% 0, 100% 28%, 72% 100%, 0 78%, 15% 18%);
  border: 1px solid rgba(255, 204, 86, .3);
  background: linear-gradient(135deg, rgba(255, 219, 120, .12), rgba(103, 58, 4, .02));
  filter: drop-shadow(0 0 14px rgba(236, 166, 35, .18));
  animation: shardFloat 8s ease-in-out infinite;
}
.mirror-shard--one { top: 17%; right: 8%; transform: rotate(17deg); }
.mirror-shard--two { top: 54%; left: 4%; width: 28px; height: 36px; transform: rotate(-24deg); animation-delay: -2.8s; }
.mirror-shard--three { bottom: 10%; right: 12%; width: 24px; height: 31px; transform: rotate(38deg); animation-delay: -5.2s; }

.mirror-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.mirror-heading {
  display: grid;
  grid-template-columns: minmax(120px, .28fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 62px);
  align-items: start;
  margin-bottom: clamp(42px, 6vw, 78px);
}
.mirror-heading__number {
  margin-top: -18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(7.6rem, 15vw, 14rem);
  line-height: .82;
  color: transparent;
  -webkit-text-stroke: 1px rgba(228, 164, 34, .28);
  text-shadow: 0 0 45px rgba(218, 146, 25, .08);
  user-select: none;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: .36em;
  font-size: .73rem;
  font-weight: 800;
}
.section-kicker span {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
  box-shadow: 0 0 10px rgba(242, 190, 63, .72);
}
.mirror-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.6rem, 7.4vw, 7.6rem);
  line-height: .95;
  letter-spacing: .018em;
  text-transform: uppercase;
  color: #f5f2ec;
}
.mirror-heading h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(180deg, #ffeeb0, #d99a22 46%, #8c5510 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 8px 24px rgba(214, 142, 24, .13));
}
.mirror-lead {
  margin: 22px 0 0;
  color: #bcb5a8;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

.mirror-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.mirror-list { display: grid; gap: 12px; }
.mirror-point {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 16px 22px 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(230, 174, 48, .15);
  background:
    linear-gradient(90deg, rgba(222, 159, 34, .075), rgba(255,255,255,.018) 42%, rgba(0,0,0,.12)),
    rgba(8,7,5,.72);
  box-shadow: inset 0 1px rgba(255,255,255,.018), 0 18px 42px rgba(0,0,0,.13);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.mirror-point::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(transparent, #f0ba46, transparent);
  box-shadow: 0 0 16px rgba(240, 186, 70, .42);
  opacity: .72;
}
.mirror-point::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -25%;
  width: 19%;
  height: 220%;
  transform: skewX(-16deg);
  background: rgba(255,255,255,.045);
  filter: blur(2px);
  transition: left .65s ease;
}
.mirror-point:hover {
  transform: translateX(7px);
  border-color: rgba(238, 184, 61, .34);
  background: linear-gradient(90deg, rgba(222, 159, 34, .12), rgba(255,255,255,.026) 48%, rgba(0,0,0,.1)), rgba(8,7,5,.8);
  box-shadow: 0 22px 52px rgba(0,0,0,.24), inset 0 0 30px rgba(220, 150, 25, .025);
}
.mirror-point:hover::after { left: 118%; }
.mirror-point__index {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(242, 191, 69, .38);
  color: #efc65c;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: .06em;
  box-shadow: inset 0 0 18px rgba(222, 154, 27, .065), 0 0 19px rgba(222, 154, 27, .05);
}
.mirror-point p {
  margin: 0;
  color: #d4cec4;
  font-size: clamp(.92rem, 1.18vw, 1.05rem);
  line-height: 1.58;
}
.mirror-point strong { color: #f0bd50; font-weight: 700; }

.mirror-truth {
  position: sticky;
  top: calc(var(--header-h) + 30px);
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid rgba(239, 184, 55, .3);
  background:
    radial-gradient(circle at 50% 0, rgba(235, 171, 43, .12), transparent 42%),
    linear-gradient(180deg, rgba(15,12,7,.96), rgba(4,4,4,.98));
  box-shadow: 0 30px 80px rgba(0,0,0,.36), inset 0 0 38px rgba(213, 144, 22, .035);
}
.mirror-truth::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(241, 192, 73, .08);
}
.mirror-truth__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  border-radius: 50%;
  border: 1px solid rgba(240, 185, 61, .4);
  background: rgba(229, 160, 31, .055);
  box-shadow: 0 0 28px rgba(225, 154, 26, .08);
}
.mirror-truth__icon svg { width: 33px; fill: none; stroke: #f2c65f; stroke-width: 2.2; stroke-linecap: round; }
.mirror-truth > p {
  margin: 0 0 9px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1;
  color: #f5f2eb;
}
.mirror-truth > p:nth-of-type(2) { color: #dba12a; }
.mirror-truth__line { width: 64px; height: 1px; margin: 24px 0; background: linear-gradient(90deg, #f1c45d, transparent); box-shadow: 0 0 10px rgba(239, 183, 57, .42); }
.mirror-truth h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  line-height: .98;
  color: #e8ae34;
  text-transform: uppercase;
}
.mirror-truth small {
  display: block;
  margin-top: 24px;
  color: #aaa397;
  font-size: .92rem;
  line-height: 1.62;
}

.mirror-closing {
  margin-top: clamp(58px, 8vw, 105px);
  text-align: center;
}
.mirror-closing > p {
  margin: 0;
  color: #a9a297;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 700;
}
.mirror-closing > h3 {
  max-width: 920px;
  margin: 15px auto 36px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.7rem, 5.8vw, 6rem);
  line-height: .98;
  text-transform: uppercase;
  color: #f1eee8;
}
.mirror-transition {
  display: grid;
  grid-template-columns: minmax(30px,1fr) minmax(280px,760px) minmax(30px,1fr);
  align-items: center;
  gap: 20px;
  color: #dfaa37;
}
.mirror-transition span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 183, 57, .56));
  box-shadow: 0 0 10px rgba(239, 183, 57, .18);
}
.mirror-transition span:last-child { background: linear-gradient(90deg, rgba(239, 183, 57, .56), transparent); }
.mirror-transition strong {
  font-size: clamp(.96rem, 1.55vw, 1.24rem);
  line-height: 1.55;
  font-weight: 700;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(7px);
  transition:
    opacity .75s cubic-bezier(.2,.75,.2,1) var(--reveal-delay, 0s),
    transform .75s cubic-bezier(.2,.75,.2,1) var(--reveal-delay, 0s),
    filter .75s cubic-bezier(.2,.75,.2,1) var(--reveal-delay, 0s);
}
.reveal-on-scroll.is-visible { opacity: 1; transform: none; filter: none; }

@keyframes mirrorSpin { to { transform: rotate(360deg); } }
@keyframes shardFloat {
  0%,100% { translate: 0 0; rotate: 0deg; opacity: .58; }
  50% { translate: 0 -18px; rotate: 7deg; opacity: .9; }
}

@media (max-width: 900px) {
  .mirror-heading { grid-template-columns: 88px minmax(0,1fr); gap: 20px; }
  .mirror-heading__number { font-size: 8.4rem; }
  .mirror-grid { grid-template-columns: 1fr; }
  .mirror-truth { position: relative; top: auto; }
}
@media (max-width: 620px) {
  .mirror-section { padding: 82px 0 86px; }
  .mirror-shell { width: min(100% - 24px, 1180px); }
  .mirror-heading { display: block; margin-bottom: 36px; }
  .mirror-heading__number { position: absolute; right: 0; top: -30px; font-size: 8.8rem; opacity: .55; }
  .mirror-heading__copy { position: relative; z-index: 2; }
  .section-kicker { font-size: .62rem; letter-spacing: .27em; }
  .section-kicker span { width: 36px; }
  .mirror-heading h2 { font-size: clamp(3.3rem, 16vw, 5.15rem); }
  .mirror-lead { font-size: .98rem; }
  .mirror-list { gap: 9px; }
  .mirror-point {
    grid-template-columns: 46px minmax(0,1fr);
    gap: 12px;
    min-height: 0;
    padding: 14px 13px 14px 11px;
  }
  .mirror-point__index { width: 38px; height: 38px; font-size: .92rem; }
  .mirror-point p { font-size: .88rem; line-height: 1.52; }
  .mirror-point:hover { transform: none; }
  .mirror-truth { padding: 26px 21px; }
  .mirror-truth__icon { width: 55px; height: 55px; }
  .mirror-truth > p { font-size: 2.15rem; }
  .mirror-truth h3 { font-size: 2.7rem; }
  .mirror-closing { margin-top: 62px; }
  .mirror-closing > h3 { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .mirror-transition { grid-template-columns: 1fr; gap: 15px; }
  .mirror-transition span { width: 75%; justify-self: center; }
  .mirror-transition span:last-child { display: none; }
  .mirror-transition strong { font-size: .94rem; }
}

/* =========================================================
   SECCIÓN 04 · EL PROBLEMA REAL
   ========================================================= */
.problem-real-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(104px, 11vw, 176px) 0 clamp(104px, 11vw, 170px);
  background:
    radial-gradient(circle at 14% 18%, rgba(151, 91, 11, .13), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(211, 139, 20, .12), transparent 28%),
    linear-gradient(180deg, #020202 0%, #080603 45%, #020202 100%);
  border-top: 1px solid rgba(245, 190, 63, .12);
}
.problem-real-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.problem-real-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  box-shadow: inset 0 90px 120px rgba(0,0,0,.36), inset 0 -100px 140px rgba(0,0,0,.55);
}
.problem-shell {
  position: relative;
  z-index: 20;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.problem-atmosphere,
.problem-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.problem-atmosphere { z-index: -2; }
.problem-particles { z-index: 2; overflow: hidden; }
.problem-particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #f3bd4d;
  box-shadow: 0 0 12px 3px rgba(239, 174, 49, .36);
  opacity: .42;
  animation: problemParticleFloat var(--dur) ease-in-out infinite var(--delay);
}
.problem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(239, 181, 48, .16);
  box-shadow: 0 0 44px rgba(216, 146, 24, .07), inset 0 0 50px rgba(216, 146, 24, .035);
}
.problem-ring--one {
  width: 680px;
  height: 680px;
  left: -330px;
  top: 8%;
  border-style: dashed;
  animation: mirrorSpin 42s linear infinite;
}
.problem-ring--two {
  width: 520px;
  height: 520px;
  right: -250px;
  bottom: 5%;
}
.problem-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .28;
}
.problem-glow--one { width: 330px; height: 330px; left: 4%; top: 10%; background: rgba(210, 137, 22, .18); }
.problem-glow--two { width: 280px; height: 280px; right: 5%; bottom: 7%; background: rgba(139, 80, 8, .18); }

.problem-heading { max-width: 1000px; margin-bottom: clamp(52px, 7vw, 92px); }
.problem-heading h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.5rem, 7.3vw, 7.35rem);
  line-height: .93;
  letter-spacing: .014em;
  text-transform: uppercase;
  color: #f4f1eb;
}
.problem-heading h2 span {
  display: block;
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(180deg, #ffe9a0 0%, #d99a22 46%, #84500c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 8px 24px rgba(214, 142, 24, .13));
}
.problem-lead {
  max-width: 880px;
  margin: 26px 0 0;
  color: #b8b1a5;
  font-size: clamp(1rem, 1.42vw, 1.24rem);
  line-height: 1.7;
}
.problem-highlight {
  position: relative;
  margin: 0 0 clamp(38px, 5vw, 64px);
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(241, 188, 67, .28);
  background:
    linear-gradient(100deg, rgba(224, 158, 31, .11), rgba(255,255,255,.018) 45%, rgba(0,0,0,.15)),
    rgba(7,6,4,.8);
  box-shadow: 0 24px 70px rgba(0,0,0,.3), inset 0 0 40px rgba(216, 146, 24, .025);
}
.problem-highlight::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(transparent, #f0ba46, transparent);
  box-shadow: 0 0 18px rgba(240, 186, 70, .48);
}
.problem-highlight p {
  margin: 0 0 12px;
  color: #bcb5aa;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 800;
}
.problem-highlight h3 {
  max-width: 940px;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.35rem, 4.6vw, 4.9rem);
  line-height: .98;
  text-transform: uppercase;
  color: #f1eee8;
}
.problem-highlight h3 span { color: #e1a62f; }

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.problem-card {
  position: relative;
  min-height: 240px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(230, 174, 48, .15);
  background:
    radial-gradient(circle at 90% 0, rgba(224, 158, 31, .08), transparent 33%),
    linear-gradient(180deg, rgba(15,12,7,.89), rgba(5,5,5,.96));
  box-shadow: 0 22px 55px rgba(0,0,0,.2), inset 0 1px rgba(255,255,255,.018);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(238, 184, 61, .34);
  box-shadow: 0 30px 70px rgba(0,0,0,.34), inset 0 0 34px rgba(220, 150, 25, .03);
}
.problem-card--wide { grid-column: 1 / -1; min-height: 210px; }
.problem-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 1px solid rgba(242, 191, 69, .38);
  color: #efc65c;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.18rem;
  letter-spacing: .06em;
  box-shadow: inset 0 0 18px rgba(222, 154, 27, .065), 0 0 19px rgba(222, 154, 27, .05);
}
.problem-card h3 {
  margin: 0 0 13px;
  color: #f1ede6;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.1vw, 3.35rem);
  line-height: 1;
  text-transform: uppercase;
}
.problem-card p {
  max-width: 720px;
  margin: 0;
  color: #aaa398;
  font-size: .98rem;
  line-height: 1.65;
}

.problem-two-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: clamp(44px, 6vw, 76px);
}
.problem-list-card {
  padding: clamp(26px, 3.8vw, 42px);
  border: 1px solid rgba(235, 179, 53, .18);
  background: rgba(5,5,5,.76);
  box-shadow: inset 0 0 42px rgba(222, 151, 25, .022);
}
.problem-list-card__eyebrow {
  margin: 0 0 22px;
  color: #dca32b !important;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem) !important;
  line-height: 1.05 !important;
  text-transform: uppercase;
}
.problem-list-card ul { list-style: none; margin: 0 0 24px; padding: 0; }
.problem-list-card li {
  position: relative;
  padding: 10px 0 10px 23px;
  color: #ded8cf;
  border-bottom: 1px solid rgba(255,255,255,.055);
  line-height: 1.45;
}
.problem-list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e5aa31;
  box-shadow: 0 0 10px rgba(229,170,49,.58);
}
.problem-list-card > p:last-child { margin: 0; color: #9f988e; line-height: 1.62; }

.problem-question {
  margin-top: clamp(70px, 9vw, 118px);
  padding: clamp(42px, 6vw, 80px) clamp(24px, 5vw, 66px);
  text-align: center;
  border-top: 1px solid rgba(239, 183, 57, .2);
  border-bottom: 1px solid rgba(239, 183, 57, .2);
  background: radial-gradient(circle at 50% 50%, rgba(224, 158, 31, .085), transparent 58%);
}
.problem-question p,
.problem-question span {
  display: block;
  margin: 0;
  color: #9f988e;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .7rem;
  font-weight: 800;
}
.problem-question h3,
.problem-question h4 {
  margin: 16px 0;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  line-height: .95;
}
.problem-question h3 {
  color: #f2eee7;
  font-size: clamp(3rem, 6.1vw, 6.5rem);
}
.problem-question h4 {
  color: #e0a52d;
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  filter: drop-shadow(0 8px 24px rgba(214, 142, 24, .12));
}

.problem-transition {
  margin-top: clamp(68px, 8vw, 105px);
  text-align: center;
}
.problem-transition > p {
  margin: 0;
  color: #9f988e;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .7rem;
  font-weight: 800;
}
.problem-transition > h3 {
  max-width: 860px;
  margin: 16px auto 34px;
  color: #f0ece5;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.9rem, 5.6vw, 5.9rem);
  line-height: .98;
  text-transform: uppercase;
}
.problem-transition > div {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px clamp(20px, 4vw, 42px);
  border: 1px solid rgba(240, 185, 61, .24);
  background: linear-gradient(90deg, rgba(216, 146, 24, .065), rgba(255,255,255,.012), rgba(216, 146, 24, .065));
}
.problem-transition strong {
  display: block;
  color: #e1aa38;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.5;
}
.problem-transition small {
  display: block;
  margin-top: 10px;
  color: #9e978c;
  font-size: .9rem;
  line-height: 1.6;
}

@keyframes problemParticleFloat {
  0%,100% { transform: translate3d(0, 0, 0) scale(.75); opacity: .16; }
  35% { opacity: .58; }
  50% { transform: translate3d(10px, -34px, 0) scale(1.15); opacity: .46; }
  75% { opacity: .26; }
}

@media (max-width: 900px) {
  .problem-cards,
  .problem-two-columns { grid-template-columns: 1fr; }
  .problem-card--wide { grid-column: auto; }
}
@media (max-width: 620px) {
  .problem-real-section { padding: 86px 0 92px; }
  .problem-shell { width: min(100% - 24px, 1180px); }
  .problem-heading h2 { font-size: clamp(3.25rem, 15.2vw, 5.1rem); }
  .problem-lead { font-size: .95rem; }
  .problem-highlight { padding: 25px 20px; }
  .problem-highlight h3 { font-size: 2.7rem; }
  .problem-cards { gap: 10px; }
  .problem-card { min-height: 0; padding: 23px 19px; }
  .problem-card:hover { transform: none; }
  .problem-card__number { width: 42px; height: 42px; margin-bottom: 18px; font-size: 1rem; }
  .problem-card h3 { font-size: 2.35rem; }
  .problem-card p { font-size: .9rem; line-height: 1.58; }
  .problem-two-columns { margin-top: 42px; gap: 10px; }
  .problem-list-card { padding: 24px 20px; }
  .problem-list-card__eyebrow { font-size: 2rem !important; }
  .problem-list-card li { font-size: .9rem; }
  .problem-question { margin-top: 62px; padding: 44px 16px; }
  .problem-question h3 { font-size: clamp(3rem, 13vw, 4.2rem); }
  .problem-question h4 { font-size: clamp(3.25rem, 14vw, 4.6rem); }
  .problem-transition { margin-top: 60px; }
  .problem-transition > h3 { font-size: clamp(2.8rem, 12.5vw, 4.2rem); }
  .problem-particles span:nth-child(n+9) { display: none; }
}

@keyframes haloPulse {
  0%,100% { opacity:.72; transform:scale(1.02); }
  50% { opacity:1; transform:scale(1.05); }
}
.speaker::before { animation: haloPulse 5.8s ease-in-out infinite; }


/* =========================================================
   05. LO QUE VAS A ENTENDER
   ========================================================= */
.understand-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(96px, 12vw, 180px) 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(219,155,34,.11), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(255,214,110,.08), transparent 30%),
    linear-gradient(180deg, #060606 0%, #090806 48%, #050505 100%);
}
.understand-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}
.understand-atmosphere { position:absolute; inset:0; pointer-events:none; z-index:-1; }
.understand-ring { position:absolute; border:1px solid rgba(231,177,57,.16); border-radius:50%; box-shadow:0 0 52px rgba(220,158,33,.08); }
.understand-ring--one { width:420px; height:420px; left:-140px; top:16%; }
.understand-ring--two { width:560px; height:560px; right:-230px; bottom:4%; }
.understand-glow { position:absolute; border-radius:50%; filter:blur(56px); opacity:.42; }
.understand-glow--one { width:220px; height:220px; background:rgba(228,162,37,.22); left:8%; top:12%; }
.understand-glow--two { width:280px; height:280px; background:rgba(255,207,99,.15); right:8%; bottom:8%; }
.understand-shell { width:min(1180px, calc(100% - 40px)); margin:0 auto; }
.understand-heading { max-width:860px; margin:0 auto clamp(48px, 7vw, 88px); text-align:center; }
.understand-heading h2 { margin:18px 0 20px; font-family:"Bebas Neue",sans-serif; font-size:clamp(3rem, 7vw, 6.8rem); line-height:.92; letter-spacing:.02em; text-transform:uppercase; }
.understand-heading h2 span { display:block; color:var(--gold-bright); text-shadow:0 0 24px rgba(245,191,71,.15); }
.understand-heading > p:last-child { max-width:760px; margin:0 auto; color:var(--muted); font-size:clamp(1rem, 1.6vw, 1.18rem); line-height:1.8; }
.understand-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.understand-card { position:relative; overflow:hidden; min-height:100%; padding:clamp(26px, 3.2vw, 42px); border:1px solid rgba(227,173,52,.2); background:linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); box-shadow:0 20px 50px rgba(0,0,0,.3), inset 0 1px rgba(255,255,255,.03); backdrop-filter:blur(7px); -webkit-backdrop-filter:blur(7px); transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease; }
.understand-card::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at top right, rgba(239,179,56,.13), transparent 36%); pointer-events:none; }
.understand-card:hover { transform:translateY(-7px); border-color:rgba(255,205,91,.42); box-shadow:0 28px 70px rgba(0,0,0,.4),0 0 34px rgba(223,158,35,.09); }
.understand-card--featured { grid-column:1 / -1; display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); column-gap:40px; align-items:start; background:linear-gradient(135deg, rgba(181,118,18,.12), rgba(255,255,255,.018)); }
.understand-card__number { display:block; margin-bottom:18px; color:rgba(255,220,135,.36); font-family:"Bebas Neue",sans-serif; font-size:clamp(3.4rem, 7vw, 6rem); line-height:.8; letter-spacing:.05em; }
.understand-card__eyebrow { margin:0 0 10px; color:#e4b347; text-transform:uppercase; letter-spacing:.16em; font-size:.72rem; font-weight:800; }
.understand-card h3 { margin:0 0 16px; font-family:"Bebas Neue",sans-serif; font-size:clamp(2rem, 3.4vw, 3.2rem); line-height:.98; letter-spacing:.02em; text-transform:uppercase; }
.understand-card > p:not(.understand-card__eyebrow) { margin:0 0 20px; color:#c7c0b5; line-height:1.72; }
.understand-card ul { margin:0; padding:0; list-style:none; display:grid; gap:10px; }
.understand-card li { position:relative; padding-left:22px; color:#e8e2d7; line-height:1.55; }
.understand-card li::before { content:""; position:absolute; left:0; top:.66em; width:8px; height:8px; border-radius:50%; background:var(--gold); box-shadow:0 0 12px rgba(237,176,49,.6); }
.understand-close { max-width:960px; margin:clamp(58px, 8vw, 110px) auto 0; padding:clamp(30px, 5vw, 64px); text-align:center; border-top:1px solid rgba(229,174,52,.22); border-bottom:1px solid rgba(229,174,52,.22); background:linear-gradient(90deg, transparent, rgba(233,169,44,.055), transparent); }
.understand-close p { margin:0 0 8px; color:#d2cabd; font-size:clamp(1rem, 1.6vw, 1.2rem); }
.understand-close h3 { margin:0 0 20px; color:var(--gold-bright); font-family:"Bebas Neue",sans-serif; font-size:clamp(2.4rem, 5.7vw, 5.4rem); line-height:.96; text-transform:uppercase; }
.understand-close span { color:#f4efe6; font-weight:700; letter-spacing:.03em; }

@media (max-width: 820px) {
  .understand-grid { grid-template-columns:1fr; }
  .understand-card--featured { grid-column:auto; display:block; }
  .understand-ring--one { width:300px; height:300px; left:-180px; }
  .understand-ring--two { width:360px; height:360px; right:-220px; }
}
@media (max-width: 560px) {
  .understand-section { padding:84px 0 96px; }
  .understand-shell { width:min(100% - 24px, 1180px); }
  .understand-heading { text-align:left; }
  .understand-heading h2 { font-size:clamp(2.75rem, 15vw, 4.7rem); }
  .understand-card { padding:26px 22px; }
  .understand-card__number { font-size:4rem; }
  .understand-card h3 { font-size:2.35rem; }
  .understand-close { padding:32px 18px; }
}


/* =========================================================
   06. LA PROMESA
   ========================================================= */
.promise-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(100px, 12vw, 190px) 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(222, 159, 31, .1), transparent 26%),
    radial-gradient(circle at 82% 76%, rgba(255, 213, 104, .08), transparent 28%),
    linear-gradient(180deg, #050505 0%, #080705 48%, #040404 100%);
}
.promise-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.018), transparent 20%, transparent 80%, rgba(255,255,255,.01));
}
.promise-atmosphere { position:absolute; inset:0; z-index:-1; pointer-events:none; }
.promise-ring { position:absolute; border-radius:50%; border:1px solid rgba(233,176,56,.15); box-shadow:0 0 60px rgba(217,153,26,.08); }
.promise-ring--one { width:520px; height:520px; left:-180px; top:8%; }
.promise-ring--two { width:660px; height:660px; right:-260px; bottom:-6%; }
.promise-glow { position:absolute; border-radius:50%; filter:blur(64px); opacity:.4; }
.promise-glow--one { width:280px; height:280px; left:10%; top:18%; background:rgba(226,157,28,.22); }
.promise-glow--two { width:320px; height:320px; right:9%; bottom:12%; background:rgba(255,208,103,.15); }
.promise-line { position:absolute; width:1px; background:linear-gradient(180deg, transparent, rgba(237,180,57,.35), transparent); opacity:.55; }
.promise-line--one { top:8%; bottom:18%; left:12%; }
.promise-line--two { top:14%; bottom:10%; right:14%; }
.promise-shell { width:min(1180px, calc(100% - 40px)); margin:0 auto; }
.promise-heading { max-width:980px; margin:0 auto clamp(42px, 7vw, 84px); text-align:center; }
.promise-heading h2 { margin:18px 0 0; font-family:"Bebas Neue",sans-serif; font-size:clamp(3rem, 6.8vw, 6.9rem); line-height:.92; text-transform:uppercase; letter-spacing:.02em; }
.promise-heading h2 span { display:block; margin-top:14px; color:var(--gold-bright); font-size:clamp(1.8rem, 3vw, 3rem); line-height:1.02; text-shadow:0 0 22px rgba(240,184,65,.12); }
.promise-intro { max-width:920px; margin:0 auto; padding:clamp(28px, 4vw, 42px); border:1px solid rgba(232,176,55,.18); background:linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.01)); box-shadow:0 18px 60px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.025); }
.promise-intro p { margin:0; color:#ddd6ca; line-height:1.78; }
.promise-intro p + p { margin-top:22px; }
.promise-intro strong { color:#f4e1ab; }
.promise-intro__list { margin:24px 0; padding:0; list-style:none; display:grid; gap:12px; }
.promise-intro__list li { position:relative; padding-left:24px; color:#ece5da; line-height:1.55; }
.promise-intro__list li::before { content:""; position:absolute; left:0; top:.62em; width:8px; height:8px; border-radius:50%; background:var(--gold); box-shadow:0 0 12px rgba(237,176,49,.58); }
.promise-moments { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; margin-top:clamp(44px, 7vw, 84px); }
.promise-moment { position:relative; padding:clamp(26px, 3vw, 38px); border:1px solid rgba(229,173,52,.18); background:rgba(7,7,7,.78); box-shadow:0 18px 44px rgba(0,0,0,.25), inset 0 0 30px rgba(217,154,28,.03); }
.promise-moment__number { display:block; margin-bottom:16px; color:rgba(255,220,140,.34); font-family:"Bebas Neue",sans-serif; font-size:clamp(3.2rem, 5vw, 5.4rem); line-height:.82; }
.promise-moment__eyebrow { margin:0 0 10px; color:#dfaa39; text-transform:uppercase; letter-spacing:.16em; font-size:.72rem; font-weight:800; }
.promise-moment h3 { margin:0 0 14px; font-family:"Bebas Neue",sans-serif; font-size:clamp(2rem, 3vw, 3rem); line-height:.98; text-transform:uppercase; }
.promise-moment p:last-child { margin:0; color:#c7c0b5; line-height:1.68; }
.promise-core { max-width:980px; margin:clamp(52px, 8vw, 100px) auto 0; padding:clamp(34px, 5vw, 64px); text-align:center; border-top:1px solid rgba(230,174,52,.24); border-bottom:1px solid rgba(230,174,52,.24); background:radial-gradient(circle at 50% 50%, rgba(229,167,39,.09), transparent 62%); }
.promise-core__eyebrow { margin:0 0 12px; color:#c99e40; text-transform:uppercase; letter-spacing:.18em; font-size:.72rem; font-weight:800; }
.promise-core h3, .promise-core h4 { margin:0; font-family:"Bebas Neue",sans-serif; text-transform:uppercase; line-height:.95; }
.promise-core h3 { color:#f3efe8; font-size:clamp(2.8rem, 5.6vw, 5.8rem); }
.promise-core h4 { margin-top:10px; color:var(--gold-bright); font-size:clamp(3rem, 6.1vw, 6.2rem); text-shadow:0 0 26px rgba(241,187,66,.12); }
.promise-core > p:last-child { max-width:760px; margin:20px auto 0; color:#d4cebf; line-height:1.75; font-size:clamp(1rem, 1.5vw, 1.16rem); }
.promise-results { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; margin-top:clamp(42px, 6vw, 74px); }
.promise-result { padding:26px 22px; border:1px solid rgba(229,174,52,.16); background:linear-gradient(180deg, rgba(255,255,255,.024), rgba(255,255,255,.01)); text-align:left; }
.promise-result span { display:block; margin-bottom:12px; color:#f4c96a; font-family:"Bebas Neue",sans-serif; font-size:clamp(1.9rem, 2.5vw, 2.6rem); line-height:1; text-transform:uppercase; }
.promise-result p { margin:0; color:#cbc4b8; line-height:1.62; }
.promise-close { max-width:960px; margin:clamp(58px, 8vw, 108px) auto 0; text-align:center; }
.promise-close > p { margin:0 0 10px; color:#e0d8cb; font-size:clamp(1rem, 1.45vw, 1.15rem); }
.promise-close h3 { margin:0 auto 18px; max-width:900px; color:#f3efe7; font-family:"Bebas Neue",sans-serif; font-size:clamp(2.6rem, 5vw, 5.3rem); line-height:.96; text-transform:uppercase; }
.promise-close > strong { display:block; color:var(--gold-bright); font-size:clamp(1rem, 1.6vw, 1.2rem); line-height:1.7; }
.promise-transition-note { display:flex; align-items:center; gap:14px; justify-content:center; margin-top:26px; }
.promise-transition-note span { display:block; width:72px; height:1px; background:linear-gradient(90deg, transparent, rgba(237,179,58,.48), transparent); }
.promise-transition-note small { max-width:720px; color:#9f988e; line-height:1.7; }
.promise-transition-note em { color:#f3e3b2; font-style:normal; }
@media (max-width: 980px) {
  .promise-moments { grid-template-columns:1fr; }
  .promise-results { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .promise-section { padding:84px 0 96px; }
  .promise-shell { width:min(100% - 24px, 1180px); }
  .promise-heading { text-align:left; }
  .promise-heading h2 { font-size:clamp(2.8rem, 14.5vw, 4.8rem); }
  .promise-heading h2 span { font-size:clamp(1.7rem, 8.5vw, 2.5rem); }
  .promise-intro { padding:24px 18px; }
  .promise-moment { padding:24px 18px; }
  .promise-moment h3 { font-size:2.25rem; }
  .promise-core { padding:34px 18px; }
  .promise-core h3 { font-size:clamp(2.9rem, 13vw, 4.4rem); }
  .promise-core h4 { font-size:clamp(3rem, 13.5vw, 4.6rem); }
  .promise-results { grid-template-columns:1fr; }
  .promise-transition-note { gap:8px; }
  .promise-transition-note span { width:32px; }
}


/* =========================
   SECCIÓN 07 · LA EXPERIENCIA
   ========================= */
.experience-section{
  position:relative;
  overflow:hidden;
  padding:clamp(88px,11vw,150px) 0 clamp(96px,11vw,160px);
  background:
    radial-gradient(circle at 18% 18%, rgba(231,176,61,.10), transparent 28%),
    radial-gradient(circle at 84% 10%, rgba(242,169,38,.10), transparent 26%),
    linear-gradient(180deg, rgba(8,8,8,.98), rgba(3,3,3,1));
  border-top:1px solid rgba(255,214,128,.08);
}
.experience-atmosphere{position:absolute; inset:0; pointer-events:none; z-index:0;}
.experience-ring,
.experience-glow,
.experience-line{position:absolute; display:block;}
.experience-ring{
  border:1px solid rgba(238,183,67,.17);
  border-radius:50%;
  filter:drop-shadow(0 0 26px rgba(238,179,61,.08));
}
.experience-ring--one{width:38rem; height:38rem; top:-10rem; right:-8rem;}
.experience-ring--two{width:26rem; height:26rem; bottom:6rem; left:-8rem;}
.experience-glow{border-radius:999px; filter:blur(42px); opacity:.55;}
.experience-glow--one{width:16rem; height:16rem; background:rgba(236,174,41,.12); top:7%; right:12%;}
.experience-glow--two{width:14rem; height:14rem; background:rgba(228,152,34,.11); bottom:12%; left:10%;}
.experience-line{height:1px; background:linear-gradient(90deg, transparent, rgba(255,214,117,.5), transparent);}
.experience-line--one{width:20rem; top:8rem; left:0; transform:rotate(-18deg); transform-origin:left center;}
.experience-line--two{width:24rem; right:-4rem; bottom:11rem; transform:rotate(18deg); transform-origin:right center;}
.experience-shell{position:relative; z-index:1; width:min(1180px, calc(100% - 32px)); margin:0 auto; display:grid; gap:36px;}
.experience-heading{max-width:980px; display:grid; gap:18px;}
.experience-heading h2{margin:0; font-family:'Bebas Neue', sans-serif; font-size:clamp(2.6rem, 6vw, 5rem); line-height:.94; letter-spacing:.03em; text-transform:uppercase; color:#fffaf0;}
.experience-heading h2 span{display:block; margin-top:16px; font-size:clamp(1.22rem, 2.3vw, 1.9rem); line-height:1.28; letter-spacing:.012em; text-transform:none; color:rgba(255,244,221,.78); font-family:'Montserrat', sans-serif; font-weight:600;}
.experience-lead{max-width:860px; margin:0; color:rgba(255,236,204,.76); font-size:1.02rem; line-height:1.8;}
.experience-intro{display:grid; grid-template-columns:minmax(0,1.45fr) minmax(280px,.8fr); gap:22px; align-items:stretch;}
.experience-intro__panel,
.experience-intro__highlight{
  position:relative; padding:28px 28px 30px; border-radius:26px;
  border:1px solid rgba(255,219,142,.12);
  background:linear-gradient(180deg, rgba(18,18,18,.92), rgba(8,8,8,.94));
  box-shadow:0 24px 54px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.02);
}
.experience-intro__panel::before,
.experience-intro__highlight::before,
.experience-card::before,
.experience-media__feature::before,
.experience-media__mosaic figure::before,
.experience-close::before{
  content:""; position:absolute; inset:0; border-radius:inherit; padding:1px;
  background:linear-gradient(140deg, rgba(255,220,145,.18), rgba(255,220,145,.02), rgba(244,173,44,.16));
  -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; opacity:.9; pointer-events:none;
}
.experience-intro__eyebrow,
.experience-media__eyebrow,
.experience-close__eyebrow{margin:0 0 12px; text-transform:uppercase; letter-spacing:.26em; font-size:.72rem; color:#f0b343; font-weight:800;}
.experience-intro__panel h3{margin:0 0 14px; font-size:1.55rem; line-height:1.25; color:#fff3d9;}
.experience-intro__panel p{margin:0; color:rgba(255,235,204,.72); line-height:1.8;}
.experience-intro__number{display:block; font-family:'Bebas Neue', sans-serif; font-size:clamp(4.1rem, 8vw, 6.7rem); line-height:.9; color:#f5be56; text-shadow:0 0 20px rgba(245,190,86,.18);}
.experience-intro__highlight p{margin:6px 0 0; color:rgba(255,235,204,.78); line-height:1.8;}
.experience-tags{display:flex; flex-wrap:wrap; gap:10px; margin-top:22px;}
.experience-tags span{padding:10px 14px; border-radius:999px; border:1px solid rgba(255,220,140,.16); background:rgba(247,178,41,.08); color:#fff0cb; font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; font-weight:700;}
.experience-grid{display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:18px;}
.experience-card{position:relative; overflow:hidden; min-height:220px; padding:26px 24px 24px; border-radius:24px; border:1px solid rgba(255,220,140,.10); background:linear-gradient(180deg, rgba(15,15,15,.94), rgba(6,6,6,.96)); box-shadow:0 20px 44px rgba(0,0,0,.26);}
.experience-card::after{content:""; position:absolute; inset:auto auto 0 0; width:100%; height:40%; background:linear-gradient(180deg, transparent, rgba(243,171,37,.05)); pointer-events:none;}
.experience-card__number{display:inline-flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:50%; border:1px solid rgba(245,196,87,.26); background:rgba(241,177,44,.08); color:#f2ba50; font-family:'Bebas Neue', sans-serif; font-size:1.35rem; letter-spacing:.05em;}
.experience-card h3{margin:18px 0 10px; font-size:1.2rem; line-height:1.28; color:#fff4dc;}
.experience-card p{margin:0; color:rgba(255,233,198,.68); line-height:1.7; font-size:.95rem;}
.experience-media{display:grid; gap:22px; margin-top:8px;}
.experience-media__intro{max-width:900px; display:grid; gap:10px;}
.experience-media__intro h3{margin:0; font-size:clamp(1.8rem,3vw,2.7rem); line-height:1.1; color:#fff3d7;}
.experience-media__intro p{margin:0; color:rgba(255,235,206,.7); line-height:1.8;}
.experience-media__layout{display:grid; grid-template-columns:minmax(0,1.02fr) minmax(0,1fr); gap:22px; align-items:stretch;}
.experience-media__feature{position:relative; overflow:hidden; border-radius:28px; border:1px solid rgba(255,218,134,.12); background:linear-gradient(180deg, rgba(11,11,11,.96), rgba(6,6,6,.98)); box-shadow:0 26px 54px rgba(0,0,0,.30);}
.experience-media__feature figure{margin:0; aspect-ratio:16/11; overflow:hidden;}
.experience-media__feature img,
.experience-media__mosaic img{width:100%; height:100%; object-fit:cover; display:block;}
.experience-media__feature-copy{padding:22px 22px 24px; display:grid; gap:10px;}
.experience-media__feature-copy span{display:inline-block; font-size:.76rem; text-transform:uppercase; letter-spacing:.22em; color:#f0b343; font-weight:800;}
.experience-media__feature-copy h4{margin:0; font-size:1.34rem; color:#fff2d3; line-height:1.25;}
.experience-media__feature-copy p{margin:0; color:rgba(255,236,205,.68); line-height:1.75;}
.experience-media__mosaic{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:18px; align-content:start;}
.experience-media__mosaic figure{position:relative; overflow:hidden; margin:0; min-height:206px; border-radius:22px; border:1px solid rgba(255,218,134,.10); background:#0a0a0a; box-shadow:0 18px 40px rgba(0,0,0,.24);}
.experience-media__mosaic .experience-media__wide{grid-column:1/-1; min-height:220px;}
.experience-media__mosaic img{transition:transform .9s ease, filter .6s ease; filter:saturate(.96) contrast(1.02);}
.experience-media__mosaic figure:hover img,
.experience-media__feature:hover img{transform:scale(1.04);}
.experience-close{position:relative; display:flex; gap:24px; align-items:center; justify-content:space-between; padding:28px 30px; border-radius:28px; border:1px solid rgba(255,217,134,.12); background:linear-gradient(90deg, rgba(15,15,15,.96), rgba(9,9,9,.98)); box-shadow:0 18px 42px rgba(0,0,0,.24);}
.experience-close h3{margin:0; max-width:760px; font-size:clamp(1.32rem, 2.8vw, 2.1rem); line-height:1.25; color:#fff2d2;}
.experience-close__cta{display:inline-flex; align-items:center; justify-content:center; min-height:56px; padding:0 26px; border-radius:999px; text-decoration:none; background:linear-gradient(135deg, #f9d06f, #f2ac27); color:#100b02; font-weight:900; letter-spacing:.08em; text-transform:uppercase; box-shadow:0 14px 30px rgba(237,170,34,.24); white-space:nowrap;}
.experience-close__cta:hover{transform:translateY(-2px); box-shadow:0 18px 36px rgba(237,170,34,.30);}

@media (max-width: 1100px){
  .experience-grid{grid-template-columns:repeat(2, minmax(0,1fr));}
  .experience-media__layout{grid-template-columns:1fr;}
}
@media (max-width: 900px){
  .experience-intro{grid-template-columns:1fr;}
  .experience-close{flex-direction:column; align-items:flex-start;}
}
@media (max-width: 640px){
  .experience-shell{width:min(100% - 20px, 1180px); gap:28px;}
  .experience-intro__panel,
  .experience-intro__highlight,
  .experience-card,
  .experience-media__feature,
  .experience-close{border-radius:22px;}
  .experience-grid{grid-template-columns:1fr; gap:16px;}
  .experience-card{min-height:auto; padding:22px 20px;}
  .experience-media__mosaic{grid-template-columns:1fr; gap:16px;}
  .experience-media__mosaic figure,
  .experience-media__mosaic .experience-media__wide{min-height:200px;}
  .experience-close{padding:24px 20px;}
  .experience-close__cta{width:100%;}
}
