/* =========================================================
   Play — marketing landing page
   Premium editorial layout, dark slate / warm gold.
   ========================================================= */

/* ───── Layout primitives ───────────────────────────────── */
section {
  padding: clamp(80px, 11vw, 160px) 0;
  position: relative;
}
section + section { border-top: 1px solid var(--line-soft); }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}
.section-eyebrow::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--gold);
}

.h-display-xl {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8.4vw, 116px);
  line-height: 1.01;
  letter-spacing: -0.015em;
  margin: 0;
}
.h-display-xl em,
.h-display-xl .accent {
  color: var(--gold);
  font-style: italic;
}

.lede {
  font-family: var(--sans);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--text-mid);
  max-width: 60ch;
  margin: 32px 0 0;
}

/* ───── Sticky nav with Contact Sales CTA ──────────────── */
.m-nav {
  position: sticky; top: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.m-nav.is-scrolled {
  background: rgba(10, 10, 12, 0.92);
  border-bottom-color: var(--line-soft);
}
.m-nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.m-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* Theme toggle button — sun + moon, like vasantjc.com */
.nav-theme-btn {
  display: inline-flex;
  position: relative;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-theme-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.nav-theme-btn svg { display: block; }
.nav-theme-btn .icon-sun,
.nav-theme-btn .icon-moon { transition: opacity 0.3s ease, transform 0.4s var(--ease); }
.nav-theme-btn[data-theme="dark"] .icon-sun  { opacity: 1; transform: rotate(0deg); }
.nav-theme-btn[data-theme="dark"] .icon-moon { opacity: 0; transform: rotate(-90deg); position: absolute; }
.nav-theme-btn[data-theme="light"] .icon-sun  { opacity: 0; transform: rotate(90deg); position: absolute; }
.nav-theme-btn[data-theme="light"] .icon-moon { opacity: 1; transform: rotate(0deg); }

/* The CTA button — copies the vasantjc.com .btn format */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  background: transparent;
  color: var(--gold);
  text-decoration: none;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover { background: var(--gold); color: var(--ink); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: var(--text); color: var(--ink); border-color: var(--text); }
.btn-lg { padding: 18px 32px; font-size: 14px; }

/* ───── HERO ─────────────────────────────────────────── */
.m-hero {
  padding: clamp(80px, 11vw, 160px) 0 clamp(60px, 8vw, 110px);
  position: relative;
  overflow: hidden;
}
.m-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(201, 169, 110, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(201, 169, 110, 0.06), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Hero headline — sized to stay within 3 lines on every viewport */
.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--text);
  max-width: 18ch;
}
.hero-headline em,
.hero-headline .accent {
  color: var(--gold);
  font-style: italic;
}

.hero-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 48px;
}
.hero-footnote {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 24px;
}
.hero-footnote::before {
  content: ""; width: 18px; height: 1px; background: var(--gold-deep);
}

/* ───── STATEMENT OF SCALE ─────────────────────────────── */
.statement {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 11vw, 140px) 0;
}
.statement::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 110, 0.08), transparent 70%);
  pointer-events: none;
}
.statement-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 22ch;
  margin: 0 auto 64px;
  text-align: center;
  position: relative;
}
.statement-headline em {
  color: var(--gold);
  font-style: italic;
}
.claim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .claim-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .claim-grid { grid-template-columns: 1fr; } }
.claim {
  position: relative;
  padding: 40px 28px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.claim:last-child { border-right: none; }
@media (max-width: 900px) {
  .claim:nth-child(2) { border-right: none; }
  .claim { border-right: 1px solid var(--line); }
  .claim:last-child { border-right: 1px solid var(--line); }
  .claim:nth-child(2n) { border-right: none; }
}
@media (max-width: 560px) {
  .claim { border-right: none; }
}
.claim-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 14px;
}
.claim-result { color: var(--gold); font-weight: 500; }
.claim-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  font-weight: 500;
}
.claim-meta {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ───── AUDIENCE GRID (image-led, mirrors vasantjc.com industries) ──── */
.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
}
@media (max-width: 1000px) { .aud-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .aud-grid { grid-template-columns: 1fr; } }

.aud-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: background .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.aud-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-soft), transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.aud-card:hover { border-color: rgba(201, 169, 110, 0.45); }
.aud-card:hover::before { opacity: 1; }

.aud-card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.aud-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.85) contrast(1.02);
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.aud-card:hover .aud-card-img {
  transform: scale(1.06);
  filter: brightness(0.84) saturate(1) contrast(1);
}
.aud-card-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,10,12,0.28) 0%,
      rgba(10,10,12,0.00) 35%,
      rgba(10,10,12,0.00) 55%,
      rgba(10,10,12,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}
.aud-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(201,169,110,0.20);
  z-index: 2;
  pointer-events: none;
}

.aud-card-body {
  padding: 26px 26px 30px;
  position: relative;
  z-index: 1;
}
.aud-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.aud-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.22;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.005em;
}

/* ───── RESEARCH SECTION (expanded lineage) ───────────── */
.research-lead {
  margin-top: 56px;
  max-width: 64ch;
}
.research-lead p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 18px;
}
.research-lead p strong { color: var(--text); font-weight: 500; }
.research-lead p em { color: var(--gold); font-style: italic; }

.standards-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .standards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .standards-grid { grid-template-columns: 1fr; } }
.std {
  background: var(--bg);
  padding: 26px 22px;
  transition: background .35s var(--ease);
}
.std:hover { background: var(--surface); }
.std-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}
.std-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.research-summary {
  margin-top: 56px;
  max-width: 64ch;
}
.research-summary p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 18px;
}
.research-summary-claim {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px) !important;
  line-height: 1.3 !important;
  color: var(--text) !important;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-top: 24px !important;
}
.research-summary-claim em { color: var(--gold); font-style: italic; }

.lineage-divider {
  height: 1px;
  background: var(--line-soft);
  margin: 88px 0 0;
}

/* ───── INVESTMENT / ROI SECTION ───────────────────────── */
.investment {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.investment::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 30%, rgba(201, 169, 110, 0.06), transparent 70%);
  pointer-events: none;
}
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 64px;
}
@media (max-width: 800px) { .invest-grid { grid-template-columns: 1fr; } }
.invest-stat {
  background: var(--bg);
  padding: 48px 36px 42px;
}
.invest-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 22px;
}
.invest-label {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.55;
}
.invest-src {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.invest-body {
  margin-top: 72px;
  max-width: 68ch;
}
.invest-body p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 22px;
}
.invest-body strong { color: var(--text); font-weight: 500; }
.invest-claim {
  font-family: var(--serif) !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  line-height: 1.32 !important;
  color: var(--text) !important;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-top: 28px !important;
}
.invest-claim em { color: var(--gold); font-style: italic; }

/* ───── MANIFESTO ─────────────────────────────────────── */
.m-manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
@media (max-width: 900px) { .m-manifesto-grid { grid-template-columns: 1fr; gap: 32px; } }
.m-manifesto-grid p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
  color: var(--text-mid);
  margin: 0 0 22px;
  max-width: 62ch;
}
.m-manifesto-grid p:last-child { margin-bottom: 0; }
.m-manifesto-grid p em { color: var(--text); font-style: italic; }
.m-manifesto-grid strong { color: var(--text); font-weight: 500; }

/* ───── AGE LIBRARY GRID ───────────────────────────────── */
.age-library {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 64px;
}
@media (max-width: 1000px) { .age-library { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .age-library { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .age-library { grid-template-columns: 1fr; } }

.age-vol {
  position: relative;
  background: var(--bg);
  padding: 28px 24px 24px;
  min-height: 200px;
  display: flex; flex-direction: column;
  transition: background .35s var(--ease);
}
.age-vol.is-available { background: var(--surface); }
.age-vol .ribbon {
  position: absolute; top: 0; right: 0;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
}
.age-vol .v-num {
  font-family: var(--serif);
  font-size: clamp(34px, 3.4vw, 44px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.age-vol .v-num .dash { color: var(--gold-deep); margin: 0 6px; }
.age-vol.is-locked .v-num { color: var(--text-muted); }
.age-vol .v-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.age-vol.is-locked .v-label { color: var(--text-muted); }
.age-vol .v-meta {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-top: auto;
}
.age-vol.is-locked .v-meta { color: var(--text-muted); }

/* ───── GAMES PREVIEW ─────────────────────────────────── */
.games-preview-meta {
  display: flex; flex-wrap: wrap; gap: 28px;
  margin-top: 40px;
  font-size: 13px; color: var(--text-mid);
  letter-spacing: 0.04em;
}
.games-preview-meta b { font-family: var(--serif); font-size: 18px; color: var(--text); margin-right: 6px; font-weight: 400; }

.games-grid-mkt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
@media (max-width: 900px) { .games-grid-mkt { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .games-grid-mkt { grid-template-columns: 1fr; } }
.game-card-mkt {
  background: var(--bg);
  padding: 36px 32px 28px;
  display: flex; flex-direction: column;
  min-height: 220px;
}
.game-card-mkt .ico {
  width: 48px; height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}
.game-card-mkt .ico svg { width: 100%; height: 100%; }
.game-card-mkt h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--text);
}
.game-card-mkt .tags {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.game-card-mkt .tags span:not(:last-child)::after {
  content: " · ";
  color: var(--gold);
  margin: 0 4px;
}

.games-strip {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1000px) { .games-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .games-strip { grid-template-columns: repeat(2, 1fr); } }
.games-strip-cell {
  background: var(--bg);
  padding: 22px 18px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.2;
  color: var(--text);
}
.games-strip-cell .n {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ───── FIVE PILLARS ───────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line-soft);
}
.pillar {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr 1.2fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}
@media (max-width: 900px) {
  .pillar { grid-template-columns: 1fr; gap: 16px; padding: 36px 0; }
}
.pillar-num {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  font-weight: 400;
}
.pillar-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}
.pillar-body {
  font-size: 15px; line-height: 1.7; color: var(--text-mid);
  margin: 0 0 14px;
}
.pillar-skills {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.pillar-skills span:not(:last-child)::after { content: " · "; color: var(--gold); margin: 0 4px; }

/* ───── LINEAGE ────────────────────────────────────────── */
.lineage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
@media (max-width: 900px) { .lineage-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .lineage-grid { grid-template-columns: repeat(2, 1fr); } }
.lineage-card {
  background: var(--bg);
  padding: 28px 24px;
}
.lineage-card .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 4px;
  color: var(--text);
}
.lineage-card .where {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.lineage-card .what {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ───── SKILLS CLOUD ──────────────────────────────────── */
.skills-domains {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 900px) { .skills-domains { grid-template-columns: 1fr; gap: 36px; } }
.skill-domain h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 500;
}
.skill-domain ul {
  list-style: none; padding: 0; margin: 0;
}
.skill-domain li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
}
.skill-domain li:last-child { border-bottom: none; }

/* ───── METHODOLOGY ───────────────────────────────────── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}
@media (max-width: 900px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .method-grid { grid-template-columns: 1fr; } }
.method-step {
  position: relative;
  padding-top: 24px;
  border-top: 1px solid var(--gold-deep);
}
.method-step .n {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.method-step h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  margin: 0 0 14px;
  color: var(--text);
}
.method-step p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ───── PULL QUOTE ────────────────────────────────────── */
.pullquote {
  padding: clamp(80px, 11vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.18;
  color: var(--text);
  max-width: 28ch;
  margin: 0 auto;
}
.pullquote cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ───── FINAL CTA ─────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: clamp(100px, 13vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(201, 169, 110, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(201, 169, 110, 0.06), transparent 70%);
  pointer-events: none;
}
.cta-section .eyebrow { margin-bottom: 28px; }
.cta-section h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 0 auto 28px;
  color: var(--text);
}
.cta-section h2 em { color: var(--gold); font-style: italic; }
.cta-section p {
  max-width: 56ch;
  margin: 0 auto 48px;
  color: var(--text-mid);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
}
.cta-row {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ───── FOOTER ────────────────────────────────────────── */
.m-foot {
  padding: 48px 0 36px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.m-foot-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* ───── REVEAL on scroll ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   LIGHT THEME OVERRIDES — components that need explicit light-mode
   styling beyond the variable swap.
═══════════════════════════════════════════════════════════════════ */

/* Nav — cream background with subtle gold border */
body.theme-light .m-nav {
  background: rgba(250, 246, 236, 0.78);
  border-bottom: 1px solid transparent;
}
body.theme-light .m-nav.is-scrolled {
  background: rgba(250, 246, 236, 0.95);
  border-bottom-color: rgba(184, 146, 63, 0.18);
}

/* Theme toggle button border in light mode */
body.theme-light .nav-theme-btn { border-color: var(--line); }

/* Brand mark and Play. wordmark — slight darkening for cream background */
body.theme-light .brand-mark-img {
  filter: drop-shadow(0 0 14px rgba(184, 146, 63, 0.25));
}
body.theme-light .play-mark {
  filter: drop-shadow(0 0 8px rgba(184, 146, 63, 0.15));
}

/* Hero background glow — softer in light mode */
body.theme-light .m-hero::before {
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(184, 146, 63, 0.10), transparent 70%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(184, 146, 63, 0.06), transparent 70%);
}

/* CTA button — gold becomes more saturated against cream */
body.theme-light .btn { color: var(--gold-deep); border-color: var(--gold-deep); }
body.theme-light .btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
body.theme-light .btn-primary { background: var(--gold-deep); color: var(--bg); border-color: var(--gold-deep); }
body.theme-light .btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
body.theme-light .btn-ghost { color: var(--text); border-color: var(--line); background: transparent; }
body.theme-light .btn-ghost:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

/* Statement section glow — softer */
body.theme-light .statement::before {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 146, 63, 0.08), transparent 70%);
}

/* Investment section glow */
body.theme-light .investment::before {
  background: radial-gradient(ellipse 60% 50% at 30% 30%, rgba(184, 146, 63, 0.08), transparent 70%);
}

/* CTA final section glow */
body.theme-light .cta-section::before {
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(184, 146, 63, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(184, 146, 63, 0.06), transparent 70%);
}

/* Audience card images — slightly more brightness for visibility on cream */
body.theme-light .aud-card-img {
  filter: brightness(0.92) saturate(0.92) contrast(1.02);
}
body.theme-light .aud-card:hover .aud-card-img {
  filter: brightness(1.0) saturate(1) contrast(1);
}
body.theme-light .aud-card-img-wrap::before {
  background:
    linear-gradient(to bottom,
      rgba(13, 21, 37, 0.10) 0%,
      rgba(13, 21, 37, 0.00) 35%,
      rgba(13, 21, 37, 0.00) 55%,
      rgba(13, 21, 37, 0.18) 100%);
}
body.theme-light .aud-card-img-wrap::after {
  border-bottom: 1px solid rgba(184, 146, 63, 0.30);
}

/* Pullquote background tint */
body.theme-light .pullquote {
  background: var(--bg-2);
}

/* Selection highlight in light mode */
body.theme-light ::selection { background: var(--gold-deep); color: var(--bg); }
