
/* ── TOKENS ─────────────────────────────────── */
:root {
  --ink:        #111111;
  --ink-mid:    #3A3A3A;
  --ink-muted:  #6B6B6B;
  --ink-faint:  #9A9A9A;
  --border:     #E4E4E0;
  --border-mid: #CDCDC8;
  --white:      #FFFFFF;
  --bg:         #F8F8F6;
  --bg-warm:    #F2F1EE;
  --dark:       #131313;
  --dark-2:     #1C1C1C;
  --coral:      #D94F2A;
  --coral-hover:#E86242;
  --nav-h:      60px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; background: var(--bg); color: var(--ink); }

/* ── NAV ───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(248,248,246,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 56px; justify-content: space-between;
}
.nav-wordmark {
  font-size: 11px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
}
.nav-links { display: flex; gap: 36px; }
.nav-link {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-muted);
  text-decoration: none; transition: color .15s;
}
.nav-link:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--white);
  padding: 10px 22px; font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  transition: background .14s; display: inline-block;
}
.nav-cta:hover { background: var(--coral); }
@media (max-width: 768px) { nav { padding: 0 24px; } .nav-links { display: none; } }

/* ── HERO ──────────────────────────────────── */
.hero {
  background: var(--bg);
  padding: calc(var(--nav-h) + 100px) 56px 100px;
  border-bottom: 1px solid var(--border);
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-inner { max-width: 900px; }
.hero-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px;
}
.hero-kicker::before { content: ''; width: 36px; height: 1.5px; background: var(--coral); }
.hero-h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 400; line-height: .97;
  color: var(--ink); letter-spacing: -.02em;
  margin-bottom: 40px;
}
.hero-h1 em { font-style: italic; color: var(--coral); }
.hero-brand-line {
  font-size: 18px; line-height: 1.65; color: var(--ink-mid);
  max-width: 580px; margin-bottom: 24px;
  font-weight: 400;
  border-left: 2px solid var(--coral);
  padding-left: 20px;
}
.hero-sub {
  font-size: 16px; line-height: 1.8; color: var(--ink-mid);
  max-width: 560px; margin-bottom: 52px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 80px; }
.btn-primary {
  background: var(--ink); color: var(--white);
  padding: 15px 36px; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: background .14s;
}
.btn-primary:hover { background: var(--coral); }
.btn-outline {
  background: transparent; color: var(--ink-mid);
  border: 1px solid var(--border-mid); padding: 14px 32px;
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; display: inline-block; transition: all .14s;
}
.btn-outline:hover { color: var(--ink); border-color: var(--ink); }
.hero-diagnostics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  padding-top: 40px; gap: 48px; max-width: 860px;
}
.hd-num {
  font-size: 10px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--coral); opacity: .7;
  margin-bottom: 10px;
}
.hd-text {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: 18px; line-height: 1.6; color: var(--ink-mid);
}
@media (max-width: 768px) {
  .hero { padding: calc(var(--nav-h) + 56px) 24px 64px; }
  .hero-diagnostics { grid-template-columns: 1fr; gap: 24px; }
}

/* ── SECTION SHELLS ────────────────────────── */
.sl { background: var(--white); border-bottom: 1px solid var(--border); padding: 104px 56px; }
.sd { background: var(--dark); border-bottom: 1px solid #222; padding: 104px 56px; }
.sw { background: var(--bg-warm); border-bottom: 1px solid var(--border); padding: 104px 56px; }
.sg { background: var(--bg); border-bottom: 1px solid var(--border); padding: 104px 56px; }
.si { max-width: 1160px; margin: 0 auto; }
@media (max-width: 768px) { .sl, .sd, .sw, .sg { padding: 72px 24px; } }

.coral-rule { width: 36px; height: 2px; background: var(--coral); margin-bottom: 24px; }
.eyebrow {
  font-size: 10px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow-light { color: var(--ink-muted); }
.eyebrow-dark  { color: rgba(255,255,255,.55); }

.s-h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -.01em; margin-bottom: 20px;
}
.s-h2-light { color: var(--ink); }
.s-h2-dark  { color: var(--white); }
.s-h2 em { font-style: italic; color: var(--coral); }

.s-lead {
  font-size: 18px; line-height: 1.75;
  max-width: 600px; margin-bottom: 0;
}
.s-lead-light { color: var(--ink-mid); }
.s-lead-dark  { color: rgba(255,255,255,.78); }

/* ── PROBLEM ────────────────────────────────── */
.prob-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; margin-top: 64px; align-items: start;
}
.prob-body { font-size: 17px; line-height: 1.85; color: var(--ink-mid); }
.prob-body p + p { margin-top: 24px; }
.prob-statements { display: flex; flex-direction: column; gap: 1px; }
.ps {
  padding: 28px 32px;
  background: var(--bg-warm);
  border-left: 3px solid var(--coral);
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: 20px; line-height: 1.6; color: var(--ink-mid);
}
@media (max-width: 768px) { .prob-grid { grid-template-columns: 1fr; gap: 40px; } }
.prob-posline {
  margin-top: 52px; padding-top: 36px;
  border-top: 1px solid var(--border);
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--coral); line-height: 1.4;
}

/* ── VALUE CHAIN ────────────────────────────── */
.chain {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 64px; border: 1px solid var(--border);
  border-right: none; border-bottom: none;
}
.chain-step {
  padding: 40px 32px; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cs-num {
  font-size: 10px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--coral); opacity: .7;
  margin-bottom: 18px;
}
.cs-title {
  font-family: 'EB Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--ink);
  margin-bottom: 14px; line-height: 1.1;
}
.cs-body { font-size: 15px; line-height: 1.8; color: var(--ink-mid); }
@media (max-width: 768px) { .chain { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .chain { grid-template-columns: 1fr; } }

/* ── OFFERINGS ──────────────────────────────── */
.offerings {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 64px; background: #222;
}
.oc {
  background: var(--dark-2);
  padding: 56px 48px;
}
.oc-num {
  font-size: 10px; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--coral); opacity: .8;
  margin-bottom: 22px;
}
.oc-h3 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 400; color: var(--white);
  line-height: 1.05; margin-bottom: 14px;
}
.oc-h3 em { font-style: italic; color: var(--coral); }
.oc-desc {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: 20px; line-height: 1.6; color: rgba(255,255,255,.82);
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid #333;
}
.oc-body {
  font-size: 15px; line-height: 1.85;
  color: rgba(255,255,255,.75); margin-bottom: 32px;
}
.oc-label {
  font-size: 10px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 12px; margin-top: 24px;
}
.oc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.oc-tag {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.25); padding: 6px 14px;
  letter-spacing: .04em;
}
.oc-item {
  display: flex; gap: 14px; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.72);
}
.oc-item::before { content: '—'; color: var(--coral); flex-shrink: 0; font-size: 14px; }
.oc-item:last-child { border-bottom: none; }
@media (max-width: 768px) { .offerings { grid-template-columns: 1fr; } .oc { padding: 40px 32px; } }

/* ── ENGAGEMENT MODELS ──────────────────────── */
.models {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 64px;
  border: 1px solid var(--border); border-right: none;
}
.model {
  padding: 40px 36px; border-right: 1px solid var(--border);
  position: relative;
}
.model-tag {
  font-size: 10px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--coral);
  margin-bottom: 18px; display: block;
}
.model-h3 {
  font-family: 'EB Garamond', serif;
  font-size: 30px; font-weight: 400; color: var(--ink);
  margin-bottom: 12px; line-height: 1.1;
}
.model-sub {
  font-size: 13px; font-weight: 600; letter-spacing: .05em;
  color: var(--ink-muted); margin-bottom: 16px; text-transform: uppercase;
}
.model-body { font-size: 15px; line-height: 1.8; color: var(--ink-mid); }
@media (max-width: 768px) { .models { grid-template-columns: 1fr; border-right: 1px solid var(--border); } }

/* ── OUTCOMES ───────────────────────────────── */
.outcomes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 64px;
  background: rgba(255,255,255,.06);
}
.outcome {
  background: var(--dark-2);
  padding: 30px 28px;
  display: flex; gap: 16px; align-items: flex-start;
}
.oi-arrow { color: var(--coral); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.oi-text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.78); }
@media (max-width: 768px) { .outcomes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .outcomes { grid-template-columns: 1fr; } }

/* ── SECTORS ────────────────────────────────── */
.sectors {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin-top: 64px;
  border: 1px solid var(--border); border-right: none;
}
.sector {
  padding: 40px 36px; border-right: 1px solid var(--border);
}
.sect-label {
  font-size: 10px; font-weight: 800; letter-spacing: .18em;
  text-transform: uppercase; color: var(--coral); opacity: .75;
  margin-bottom: 14px; display: block;
}
.sect-h3 {
  font-family: 'EB Garamond', serif;
  font-size: 28px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px; line-height: 1.1;
}
.sect-body { font-size: 15px; line-height: 1.8; color: var(--ink-mid); }
@media (max-width: 480px) { .sectors { grid-template-columns: 1fr; border-right: 1px solid var(--border); } }

/* ── WORK ───────────────────────────────────── */
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 64px; background: var(--border);
}
.work-card { background: var(--white); padding: 40px 36px; transition: background .14s; display: flex; flex-direction: column; }
.work-card:hover { background: var(--bg); }
.wc-domain {
  font-size: 10px; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase; color: var(--coral); opacity: .7;
  margin-bottom: 14px;
}
.wc-h3 {
  font-family: 'EB Garamond', serif;
  font-size: 28px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px; line-height: 1.1;
}
.wc-body {
  font-size: 15px; line-height: 1.8;
  color: var(--ink-mid); margin-bottom: 20px; flex: 1;
}
.wc-footer {
  display: flex; justify-content: space-between;
  align-items: flex-end; padding-top: 14px;
  border-top: 1px solid var(--border); gap: 8px;
}
.wc-type {
  font-size: 10px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-muted);
  text-decoration: none; transition: color .14s;
}
.wc-type:hover { color: var(--coral); }
.wc-org {
  font-size: 9px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-faint);
  text-align: right; flex-shrink: 0;
}
.wc-org-sp { color: var(--coral); opacity: .8; }
@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .work-grid { grid-template-columns: 1fr; } }

/* ── PROOF ──────────────────────────────────── */
.proof-strip {
  padding: 80px 56px; background: var(--white);
  border-bottom: 1px solid var(--border);
}
.proof-origin {
  text-align: center; margin-bottom: 52px;
}
.proof-origin-label {
  font-size: 10px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--coral); opacity: .8;
  margin-bottom: 10px;
}
.proof-origin-note {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: 19px; color: var(--ink-mid); line-height: 1.65;
  max-width: 560px; margin: 0 auto;
}
.proof-row {
  display: flex; justify-content: space-between;
  max-width: 960px; margin: 0 auto 56px;
  flex-wrap: wrap; gap: 40px;
}
.pn { text-align: center; }
.pn-n {
  font-family: 'EB Garamond', serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 400; color: var(--ink); line-height: 1;
  margin-bottom: 8px;
}
.pn-l {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--ink-muted);
}
.proof-clients {
  text-align: center;
  font-size: 13px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-muted);
  max-width: 640px; margin: 0 auto; line-height: 2.6;
}
.proof-clients strong { color: var(--ink); }
@media (max-width: 768px) { .proof-strip { padding: 56px 24px; } }

/* ── FINAL CTA ──────────────────────────────── */
.cta-section {
  background: var(--dark); padding: 128px 56px;
  text-align: center; border-bottom: 1px solid #1E1E1E;
}
.cta-h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400; line-height: 1.2;
  color: var(--white); max-width: 640px; margin: 0 auto 20px;
}
.cta-h2 em { color: var(--coral); font-style: italic; }
.cta-body {
  font-family: 'EB Garamond', serif;
  font-size: 20px; line-height: 1.65;
  color: rgba(255,255,255,.75);
  max-width: 480px; margin: 0 auto 44px;
}
.btn-coral {
  background: var(--coral); color: var(--white);
  padding: 16px 40px; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; text-decoration: none;
  display: inline-block; transition: background .14s;
}
.btn-coral:hover { background: var(--coral-hover); }
@media (max-width: 768px) { .cta-section { padding: 80px 24px; } }

/* ── FOOTER ─────────────────────────────────── */
footer {
  background: #0A0A0A; padding: 44px 56px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 20px;
}
.ft-wordmark {
  font-size: 12px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.ft-tagline {
  font-family: 'EB Garamond', serif; font-style: italic;
  font-size: 16px; color: rgba(255,255,255,.32);
}
.ft-links { display: flex; gap: 28px; }
.ft-link {
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  text-decoration: none; transition: color .15s;
}
.ft-link:hover { color: var(--coral); }
@media (max-width: 768px) { footer { padding: 36px 24px; flex-direction: column; align-items: flex-start; } }

/* ── GAME HUB + REPORTS ───────────────────── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 36px;
}
.game-card {
  background: var(--white);
  padding: 26px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  transition: background .14s, color .14s;
}
.game-card span {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
}
.game-card strong {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.game-card:hover {
  background: var(--bg);
}

.report-link {
  display: inline-block;
  margin-top: 28px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  padding: 13px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .14s;
}
.report-link:hover {
  background: var(--coral);
}

@media (max-width: 768px) {
  .game-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .game-grid { grid-template-columns: 1fr; }
}

