/* ══════════════════════════════════════════════════════════════
   DULCINEA PUNTA CANA · Investor Landing
   World: champagne gold on near-black · Bebas Neue + Poppins
   Reserved-color law: magenta only in #show · WA green only on CTA
   Foil law: gradient gold only on money figures and brand marks
   ══════════════════════════════════════════════════════════════ */

/* self-hosted type — no CDN flash on the billboard wordmark */
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/bebas-neue-400.woff2") format("woff2");
}
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 300; font-display: swap; src: url("../assets/fonts/poppins-300.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("../assets/fonts/poppins-400.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("../assets/fonts/poppins-500.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("../assets/fonts/poppins-600.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("../assets/fonts/poppins-700.woff2") format("woff2"); }

:root {
  --gold: #e4cc5d;
  --gold-2: #c9a43a;
  --gold-deep: #8a6a1e;
  --gold-foil: linear-gradient(165deg, #f8ecc2 0%, #eed77a 22%, #e4cc5d 40%, #c9a43a 62%, #8a6a1e 100%);
  --ground: #080706;
  --ground-2: #12100b;
  --ground-3: #1c1810;
  --ivory: #f3ecda;
  --body-ink: #cfc5ab;
  --hairline: rgba(228, 204, 93, 0.30);
  --hairline-dim: rgba(228, 204, 93, 0.13);
  --laser: #d92bd9;
  --laser-violet: #7a2bd9;
  --wa: #25d366;
  --font-display: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Poppins", "Segoe UI", Helvetica, sans-serif;
  --pad-x: clamp(20px, 6vw, 96px);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  background: var(--ground);
  color: var(--body-ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(14.5px, 1vw, 16px);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* film grain — the premium "shot on film" layer */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: var(--ground); }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ground); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }

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

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

a { color: var(--gold); text-decoration: none; transition: color 180ms var(--ease-out); }
a:hover { color: var(--ivory); }

/* ─── Type voices ─────────────────────────────────────────── */

.eyebrow {
  font-family: var(--font-body);
  font-size: clamp(11px, 0.8vw, 12px);
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ivory);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 0.96;
  font-size: clamp(46px, 6.4vw, 104px);
  text-wrap: balance;
  margin-bottom: clamp(18px, 2.6vh, 30px);
}

.lead + .body-copy, .body-copy + .body-copy, .lead + .lead { margin-top: 16px; }

.h-display .gold { color: var(--gold); }

.lead {
  font-size: clamp(15.5px, 1.25vw, 19px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--body-ink);
  max-width: 62ch;
}

.lead strong, .body-copy strong { color: var(--ivory); font-weight: 600; }

.body-copy { max-width: 68ch; font-weight: 300; }

.num-display {
  font-family: var(--font-display);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: var(--gold);
}

/* foil is reserved for money figures and brand marks (FORM raise) */
.num-display--foil {
  color: transparent;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
}

/* billboard foil behaves like material: a slow masked sheen */
.num-display--sheen {
  background-size: 230% 230%;
  animation: foil-sheen 7s var(--ease-in-out) infinite alternate;
}
@keyframes foil-sheen {
  from { background-position: 0% 0%; }
  to { background-position: 100% 100%; }
}

.icon-star {
  width: 0.62em;
  height: 0.62em;
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.1em;
}
.icon-check {
  width: 16px;
  height: 16px;
  display: inline-block;
  color: var(--gold-2);
}

.src-note {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(207, 197, 171, 0.62);
  font-weight: 400;
}

/* ─── Chrome: top bar ─────────────────────────────────────── */

.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--pad-x);
  transition: background 400ms var(--ease-out), backdrop-filter 400ms var(--ease-out),
              box-shadow 400ms var(--ease-out);
}
.topbar.scrolled {
  background: rgba(8, 7, 6, 0.78);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--hairline-dim);
}
.topbar__logo img {
  height: 40px;
  width: auto;
  transform-origin: left center;
  transition: transform 300ms var(--ease-out);
}
.topbar.scrolled .topbar__logo img { transform: scale(0.8); }
.topbar__right { display: flex; align-items: center; gap: 14px; }

.lang-toggle {
  display: flex;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(8, 7, 6, 0.4);
}
.lang-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--body-ink);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 220ms var(--ease-out), color 220ms var(--ease-out), transform 120ms var(--ease-out);
}
.lang-toggle button.active { background: var(--gold); color: var(--ground); }
.lang-toggle button:active { transform: scale(0.94); }

/* WhatsApp pill — the one green object on the page */
.wa-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wa);
  color: #06240f;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 10px 20px;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.wa-pill > * { position: relative; z-index: 2; }
/* shine sweep */
.wa-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 30%, rgba(243, 236, 218, 0.45) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 600ms var(--ease-out);
}
.wa-pill:active { transform: scale(0.97); }
.wa-pill svg { width: 17px; height: 17px; transition: transform 250ms var(--ease-out); }
.wa-pill--lg { font-size: 16px; padding: 17px 36px; gap: 11px; }
.wa-pill--lg svg { width: 21px; height: 21px; }
/* gentle attention ring on the big CTA */
.wa-pill--lg::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.7);
  opacity: 0;
  animation: cta-ring 5s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes cta-ring {
  0%, 78% { transform: scale(1); opacity: 0; }
  82% { opacity: 0.8; }
  100% { transform: scale(1.22); opacity: 0; }
}

@media (hover: hover) and (pointer: fine) {
  .wa-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5); color: #06240f; }
  .wa-pill:hover::before { transform: translateX(110%); }
  .wa-pill:hover svg { transform: rotate(-8deg) scale(1.08); }
  .lang-toggle button:not(.active):hover { color: var(--ivory); background: rgba(228, 204, 93, 0.08); }
}

/* ─── Sections shared ─────────────────────────────────────── */

section { position: relative; }

.scene {
  position: relative;
  padding: clamp(96px, 15vh, 170px) var(--pad-x);
  overflow: hidden;
}

.scene__inner { position: relative; z-index: 3; max-width: 1240px; margin: 0 auto; }

/* hairline-framed stat plaque */
.plaque {
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(228, 204, 93, 0.055), rgba(228, 204, 93, 0.012) 60%);
  padding: clamp(18px, 2.4vw, 30px) clamp(16px, 2vw, 28px);
  position: relative;
  transition: transform 220ms var(--ease-out), border-color 220ms var(--ease-out),
              background 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.plaque::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--hairline-dim);
  pointer-events: none;
  transition: border-color 220ms var(--ease-out);
}
.plaque .num-display { font-size: clamp(34px, 3.8vw, 60px); }
.plaque__label {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--body-ink);
}
.plaque .src-note { margin-top: 8px; }

@media (hover: hover) and (pointer: fine) {
  .plaque:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 204, 93, 0.55);
    background: linear-gradient(180deg, rgba(228, 204, 93, 0.09), rgba(228, 204, 93, 0.02) 60%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  }
  .plaque:hover::before { border-color: rgba(228, 204, 93, 0.3); }
}

.plaque-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 1.4vw, 20px);
}

/* ledger table — set like a bottle-service menu */
.ledger { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.ledger caption { text-align: left; padding-bottom: 14px; }
.ledger th, .ledger td { padding: 13px 10px; text-align: left; vertical-align: top; }
.ledger thead th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-2);
  border-bottom: 1px solid var(--hairline);
}
.ledger tbody tr { border-bottom: 1px solid var(--hairline-dim); transition: background 180ms var(--ease-out); }
.ledger tbody tr:last-child { border-bottom: 1px solid var(--hairline); }
.ledger td { color: var(--body-ink); font-size: clamp(13px, 1vw, 15px); font-weight: 300; }
.ledger td:first-child { color: var(--ivory); font-weight: 500; }
.ledger .r { text-align: right; }
.ledger .gold-cell { color: var(--gold); font-weight: 700; }
.ledger tfoot td {
  padding-top: 16px;
  color: var(--gold);
  font-weight: 700;
  border-top: 1px solid var(--hairline);
  font-size: clamp(14px, 1.1vw, 17px);
}
@media (hover: hover) and (pointer: fine) {
  .ledger tbody tr:hover { background: rgba(228, 204, 93, 0.045); }
}

/* media slot with authored fallback */
.media-slot {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 10%, var(--ground-3) 0%, var(--ground) 70%);
}
.media-slot video, .media-slot img.cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.media-slot.loaded video, .media-slot.loaded img.cover { opacity: 1; }
.media-slot__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.75) 0%, rgba(8, 7, 6, 0.35) 35%, rgba(8, 7, 6, 0.55) 70%, var(--ground) 100%);
}

/* ─── HERO ────────────────────────────────────────────────── */

#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
#hero .media-slot__veil {
  background:
    radial-gradient(85% 60% at 50% 42%, rgba(8, 7, 6, 0) 0%, rgba(8, 7, 6, 0.55) 78%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.8) 0%, rgba(8, 7, 6, 0.25) 30%, rgba(8, 7, 6, 0.35) 62%, var(--ground) 100%);
}
#gold-dust { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; }

.hero__core {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 120px var(--pad-x) 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vh, 22px);
  will-change: transform;
}
.hero__mark { width: clamp(60px, 6.5vw, 92px); height: auto; filter: drop-shadow(0 6px 30px rgba(228, 204, 93, 0.35)); }
.hero__word {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 15.5vw, 230px);
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  line-height: 0.9;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  color: transparent;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero__word span {
  display: inline-block;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__kicker { color: var(--gold-2); }
.hero__claim {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.25vw, 17px);
  font-weight: 300;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  color: var(--ivory);
  text-transform: uppercase;
}

.hero__foot {
  position: relative;
  z-index: 4;
  padding: clamp(24px, 4vh, 44px) var(--pad-x) clamp(18px, 3vh, 34px);
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

/* ─── PROVEN (Medellín) ───────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.proof-cards { display: grid; gap: clamp(10px, 1.4vw, 18px); grid-template-columns: 1fr 1fr; }
.proof-cards .plaque:first-child { grid-column: 1 / -1; }

.giant-figure { position: relative; }
.giant-figure .num-display { font-size: clamp(84px, 11vw, 190px); }
.giant-figure__cap {
  margin-top: 12px;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--body-ink);
  font-weight: 600;
}

/* ─── MARKET ──────────────────────────────────────────────── */

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.4vw, 20px);
  margin-top: clamp(30px, 5vh, 54px);
}
.market-grid .plaque .num-display { font-size: clamp(44px, 5vw, 80px); }
.market-note { margin-top: 26px; }

/* ─── VENUE ───────────────────────────────────────────────── */

.venue-levels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 26px);
  margin-top: clamp(30px, 4vh, 48px);
}
.level-card {
  border: 1px solid var(--hairline);
  padding: clamp(22px, 2.6vw, 36px);
  background: rgba(8, 7, 6, 0.55);
  backdrop-filter: blur(6px);
  transition: border-color 220ms var(--ease-out), background 220ms var(--ease-out);
}
.level-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.level-card ul { list-style: none; }
.level-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--hairline-dim);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
}
.level-card li:last-child { border-bottom: 0; }
.level-card li b { color: var(--ivory); font-weight: 500; }
.level-card li span { color: var(--gold-2); font-variant-numeric: tabular-nums; white-space: nowrap; }
@media (hover: hover) and (pointer: fine) {
  .level-card:hover { border-color: rgba(228, 204, 93, 0.5); background: rgba(12, 10, 7, 0.7); }
}

/* ─── AIRPORT ─────────────────────────────────────────────── */

.channel-list { display: grid; gap: 1px; background: var(--hairline-dim); border: 1px solid var(--hairline); margin-top: clamp(28px, 4vh, 44px); }
.channel {
  display: grid;
  grid-template-columns: minmax(150px, 240px) 1fr;
  gap: clamp(14px, 3vw, 40px);
  padding: clamp(18px, 2.2vw, 28px);
  background: var(--ground);
  transition: background 200ms var(--ease-out);
}
.channel h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 22px);
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}
.channel p { font-size: clamp(13px, 1vw, 15px); font-weight: 300; }
@media (hover: hover) and (pointer: fine) {
  .channel:hover { background: #0d0b08; }
}

/* ─── MODEL ───────────────────────────────────────────────── */

.model-wrap { overflow-x: auto; margin-top: clamp(26px, 4vh, 44px); }
.model-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.4vw, 20px); margin-top: clamp(26px, 4vh, 40px); }

/* ─── SHOW — the only magenta room ────────────────────────── */

#show { background: #0b060d; }
#show .laser-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 82%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 82%, transparent 100%);
}
.laser {
  position: absolute;
  top: -30%;
  width: 2px;
  height: 160%;
  background: linear-gradient(180deg, transparent, var(--laser) 30%, var(--laser-violet) 70%, transparent);
  opacity: 0.45;
  filter: blur(1px) drop-shadow(0 0 12px var(--laser));
  transform-origin: top center;
}
.laser:nth-child(2) { filter: blur(2px) drop-shadow(0 0 18px var(--laser-violet)); opacity: 0.3; }
#show .media-slot__veil {
  background:
    radial-gradient(90% 70% at 50% 100%, rgba(217, 43, 217, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, var(--ground) 0%, rgba(11, 6, 13, 0.4) 22%, rgba(11, 6, 13, 0.55) 78%, var(--ground) 100%);
}
#show .h-display .gold { color: var(--laser); }
.show-partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(10px, 1.4vw, 20px); margin-top: clamp(30px, 4vh, 48px); }
#show .plaque { border-color: rgba(217, 43, 217, 0.35); background: linear-gradient(180deg, rgba(217, 43, 217, 0.06), transparent 65%); }
#show .plaque::before { border-color: rgba(217, 43, 217, 0.16); }
#show .plaque .num-display { color: var(--laser); }
@media (hover: hover) and (pointer: fine) {
  #show .plaque:hover {
    border-color: rgba(217, 43, 217, 0.6);
    background: linear-gradient(180deg, rgba(217, 43, 217, 0.1), transparent 65%);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  }
  #show .plaque:hover::before { border-color: rgba(217, 43, 217, 0.3); }
}

/* ─── NUMBERS ─────────────────────────────────────────────── */

.ebitda-chart { margin-top: clamp(34px, 5vh, 56px); }
.chart-frame { border-left: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); position: relative; height: clamp(220px, 32vh, 320px); display: flex; align-items: flex-end; gap: clamp(10px, 2vw, 30px); padding-inline: clamp(10px, 2vw, 30px); }
.bar-group { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 10px; height: 100%; }
.bar { width: 100%; max-width: 92px; position: relative; display: flex; align-items: flex-end; justify-content: center; height: 100%; }
.bar i {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 -2px 24px rgba(228, 204, 93, 0.28);
  transform-origin: bottom;
  height: calc(var(--v) * 1%);
  transition: filter 200ms var(--ease-out);
}
.bar b {
  position: absolute;
  bottom: calc(var(--v) * 1% + 8px);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 20px);
  letter-spacing: 0.04em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .bar:hover i { filter: brightness(1.18); }
}
.bar-group u { text-decoration: none; font-size: 11px; letter-spacing: 0.2em; color: var(--body-ink); font-weight: 600; }
.chart-cap { margin-top: 16px; display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap; }

.numbers-cases { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2vw, 26px); margin-top: clamp(34px, 5vh, 56px); }
.case-card {
  border: 1px solid var(--hairline);
  padding: clamp(22px, 2.6vw, 36px);
  position: relative;
  background: linear-gradient(180deg, rgba(228, 204, 93, 0.04), transparent 55%);
  transition: border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}
.case-card--upside { border-style: dashed; }
.case-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ivory);
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 4px;
}
.case-card .case-tag { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }
.case-card dl { margin-top: 18px; }
.case-card .kv { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--hairline-dim); font-size: clamp(13px, 1vw, 15px); }
.case-card .kv:last-child { border-bottom: 0; }
.case-card dt { color: var(--body-ink); font-weight: 300; }
.case-card dd { color: var(--ivory); font-weight: 600; font-variant-numeric: tabular-nums; }
.case-card .kv--hero dd { color: var(--gold); font-size: clamp(16px, 1.3vw, 20px); font-weight: 700; }
@media (hover: hover) and (pointer: fine) {
  .case-card:hover { border-color: rgba(228, 204, 93, 0.5); transform: translateY(-3px); }
}

.breakeven { margin-top: clamp(34px, 5vh, 52px); border: 1px solid var(--hairline); padding: clamp(22px, 3vw, 40px); display: grid; grid-template-columns: auto 1fr; gap: clamp(20px, 3.5vw, 56px); align-items: center; }
.breakeven .num-display { font-size: clamp(56px, 7vw, 110px); }
.meter { height: 10px; background: var(--ground-3); border: 1px solid var(--hairline-dim); position: relative; margin-top: 14px; }
.meter i { position: absolute; inset: 0; width: 45%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); transform-origin: left; }
.meter b { position: absolute; top: -7px; left: 45%; width: 1px; height: 24px; background: var(--ivory); }

/* ─── TEAM ────────────────────────────────────────────────── */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline-dim); border: 1px solid var(--hairline); margin-top: clamp(30px, 4vh, 48px); }
.member { background: var(--ground); padding: clamp(20px, 2.4vw, 32px); transition: background 220ms var(--ease-out); }
.member h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(21px, 1.8vw, 27px);
  letter-spacing: 0.05em;
  color: var(--ivory);
  text-transform: uppercase;
  transition: color 220ms var(--ease-out);
}
.member .role { display: block; margin: 6px 0 12px; font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }
.member p { font-size: clamp(12.5px, 0.95vw, 14px); line-height: 1.65; font-weight: 300; }
@media (hover: hover) and (pointer: fine) {
  .member:hover { background: #0d0b08; }
  .member:hover h3 { color: var(--gold); }
}

/* ─── OFFER ───────────────────────────────────────────────── */

#offer { text-align: center; }
.offer-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 56px);
  margin: clamp(34px, 6vh, 64px) 0;
  flex-wrap: wrap;
}
.offer-equation .num-display { font-size: clamp(72px, 11vw, 190px); }
.offer-equation .eq-op { font-family: var(--font-display); font-size: clamp(38px, 5vw, 80px); color: var(--gold-2); }
.offer-equation .eq-part { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.offer-equation .eq-part small { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--body-ink); font-weight: 600; }
.returns-wrap { overflow-x: auto; margin-top: clamp(30px, 5vh, 50px); }
.returns-wrap .ledger { min-width: 640px; }
.offer-cash { margin: clamp(26px, 4vh, 40px) auto 0; max-width: 62ch; }

/* ─── ROADMAP + CLOSE ─────────────────────────────────────── */

.timeline { position: relative; margin-top: clamp(36px, 6vh, 60px); padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 4px; top: 6px; bottom: 6px; width: 1px; background: var(--hairline); }
.tl-line { position: absolute; left: 4px; top: 6px; width: 1px; background: var(--gold); transform-origin: top; height: calc(100% - 12px); }
.tl-item { position: relative; padding: 0 0 clamp(26px, 4vh, 40px) 22px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ground);
  transition: background 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.tl-item:hover::before { background: var(--gold); box-shadow: 0 0 12px rgba(228, 204, 93, 0.5); }
.tl-item .tl-when { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; }
.tl-item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ivory);
  font-size: clamp(21px, 1.8vw, 27px);
  letter-spacing: 0.05em;
  margin: 6px 0 6px;
  text-transform: uppercase;
}
.tl-item p { font-size: clamp(12.5px, 0.95vw, 14px); max-width: 58ch; font-weight: 300; }

#close { text-align: center; min-height: 88svh; display: flex; align-items: center; }
#close .scene__inner { width: 100%; }
#close .hero__word { font-size: clamp(52px, 11vw, 170px); }
.close-claim {
  font-family: var(--font-body);
  font-size: clamp(12px, 1.4vw, 19px);
  font-weight: 300;
  letter-spacing: 0.45em;
  text-indent: 0.45em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 20px;
}
.close-cta { margin-top: clamp(30px, 5vh, 48px); display: flex; flex-direction: column; align-items: center; gap: 18px; }
.close-note { font-size: 12px; color: rgba(207, 197, 171, 0.6); font-weight: 300; }

footer {
  padding: 40px var(--pad-x) 50px;
  border-top: 1px solid var(--hairline-dim);
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(207, 197, 171, 0.55);
}
footer .foot-grid { max-width: 1240px; margin: 0 auto; display: grid; gap: 18px; }
footer .foot-brand { display: flex; align-items: center; gap: 14px; }
footer .foot-brand img { height: 30px; }
footer .disclaimer { max-width: 100ch; }

/* ─── Reveal defaults (JS enhances; visible without JS) ──── */

.rv { opacity: 1; }

/* ─── Capture instrumentation ─────────────────────────────── */

html.capture #hero { min-height: 900px; }
html.capture .num-display--sheen { animation: none; }
html.capture #close { min-height: 760px; }
html.capture .hero__core { padding-top: 90px; }
html.capture body::after, html.capture .wa-pill--lg::after { animation: none; }

/* ─── Responsive ──────────────────────────────────────────── */

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .show-partners { grid-template-columns: 1fr; }
  .numbers-cases { grid-template-columns: 1fr; }
  .breakeven { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .plaque-row { grid-template-columns: 1fr 1fr; }
  .market-grid { grid-template-columns: 1fr 1fr; }
  .venue-levels { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .channel { grid-template-columns: 1fr; gap: 8px; }
  .model-facts { grid-template-columns: 1fr; }
  .topbar { padding: 10px 16px; }
  .topbar__logo img { height: 32px; }
  .wa-pill span { display: none; }
  .wa-pill { padding: 10px 12px; }
  .wa-pill--lg span { display: inline; }
  .wa-pill--lg { padding: 15px 26px; }
  .chart-frame { gap: 8px; padding-inline: 8px; }
  .bar b { font-size: 12px; }
  .hero__word { letter-spacing: 0.06em; text-indent: 0.06em; }
  .hero__claim { letter-spacing: 0.3em; text-indent: 0.3em; }
  .offer-equation .eq-op { display: none; }
  .offer-equation { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .num-display--sheen { animation: none; }
  .wa-pill--lg::after { animation: none; }
  .plaque, .case-card, .wa-pill, .member, .level-card { transition: none; }
  * { scroll-behavior: auto !important; }
}
