/* ============================================================
   PSM Sports Analytics — FootballOS marketing site
   Clean LIGHT theme · burgundy #7b1b38 · gold #dbc078 · white
   Product mockups stay dark (scoped vars on .frame).
   ============================================================ */

:root {
  --wine:        #7b1b38;
  --wine-bright: #9a2548;
  --wine-deep:   #5a1229;
  --wine-darker: #3a0c1b;
  --gold:        #dbc078;
  --gold-soft:   #ecdaa6;
  --gold-deep:   #b9994f;
  --gold-ink:    #8a6d2f;   /* dark enough for gold-flavoured text on white */
  --white:       #ffffff;

  /* Light surfaces */
  --bg:          #ffffff;
  --bg-2:        #f6efec;   /* warm paper alt-section */
  --bg-3:        #f1e9e7;
  --panel:       #ffffff;
  --panel-2:     #faf6f5;

  --ink:         #25161b;   /* warm near-black */
  --ink-2:       #4a373d;
  --muted:       #6f5b62;
  --muted-2:     #9a888f;

  --line:        #ebe0dd;
  --line-soft:   #f1e9e7;

  --pos:         #2e9d5b;
  --neg:         #cf4a63;
  --amber:       #c98a1f;

  --radius:      18px;
  --radius-sm:   12px;
  --maxw:        1180px;
  --shadow:        0 34px 70px -30px rgba(58,12,27,.30);
  --card-shadow:   0 16px 38px -26px rgba(58,12,27,.22);
  --btn-shadow:    0 16px 34px -14px rgba(123,27,56,.34);

  --ff-sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-disp: 'Fraunces', Georgia, 'Times New Roman', serif;
  --ff-logo: 'Oswald', 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography helpers ---------- */
h1, h2, h3 { font-family: var(--ff-disp); font-weight: 500; letter-spacing: -0.01em; line-height: 1.08; color: var(--ink); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--wine); font-weight: 500; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-sans);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 20px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(219,192,120,.28); }
.eyebrow.gold { color: var(--gold-soft); }
.eyebrow.gold .dot { background: var(--gold); box-shadow: 0 0 0 4px rgba(219,192,120,.18); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-sans);
  font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
/* Primary — burgundy fill (strong CTA on white) */
.btn-gold {
  background: var(--wine); color: #fff; box-shadow: var(--btn-shadow);
}
.btn-gold:hover { background: var(--wine-bright); box-shadow: 0 20px 46px -14px rgba(123,27,56,.42); }
/* Secondary — burgundy outline */
.btn-outline {
  background: #fff; color: var(--wine);
  border-color: rgba(123,27,56,.32);
}
.btn-outline:hover { border-color: var(--wine); background: rgba(123,27,56,.05); }
.btn.full { width: 100%; }
.btn.lg { padding: 16px 34px; font-size: 16px; }

/* ---------- Focus visibility (WCAG 2.4.7) ---------- */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--wine); outline-offset: 3px;
}
/* gold ring on dark / burgundy surfaces so it stays visible */
.footer a:focus-visible,
.ai-band a:focus-visible, .ai-band button:focus-visible,
.bento-card.big a:focus-visible,
.plan--featured .btn:focus-visible {
  outline-color: var(--gold-soft);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.8);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled { background: rgba(255,255,255,.93); border-bottom-color: var(--line);
  box-shadow: 0 8px 28px -20px rgba(58,12,27,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

/* Brand wordmark (logo) */
.brand { display: inline-flex; flex-direction: column; justify-content: center; line-height: 1; }
.brand-word { font-family: var(--ff-logo); font-weight: 700; font-size: 26px; letter-spacing: .12em;
  color: var(--wine); }
.brand-sub { font-family: var(--ff-logo); font-weight: 500; font-size: 9.5px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--wine); opacity: .72; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links > a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: color .2s; }
.nav-links > a:hover { color: var(--wine); }
.nav-links .nav-cta { color: #fff; }
.nav-links .nav-cta:hover { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 76px 0 92px; }
.hero-bg {
  position: absolute; inset: -10% -10% auto -10%; height: 130%;
  background:
    radial-gradient(55% 50% at 86% 4%, rgba(123,27,56,.07), transparent 60%),
    radial-gradient(40% 42% at 2% 8%, rgba(219,192,120,.16), transparent 60%);
  pointer-events: none;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(123,27,56,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(123,27,56,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
}
/* Prevent wide mockups from forcing their grid track past the viewport */
.hero-copy, .hero-visual,
.feature-copy, .feature-visual,
.ai-copy, .ai-chat { min-width: 0; }
.frame { width: 100%; max-width: 100%; }

.hero-copy h1 { font-size: clamp(38px, 5vw, 62px); margin: 8px 0 22px; }
.hero-copy h1 em { display: block; }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 38ch; }
.lead strong { color: var(--wine); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; margin: 34px 0 0; flex-wrap: wrap; }

/* Hero visual + badge */
.hero-visual { position: relative; }
.hero-badge {
  position: absolute; bottom: -16px; left: 26px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #2a1410; font-size: 12.5px; font-weight: 700;
  padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 16px 34px -14px rgba(123,27,56,.34);
}

/* ============================================================
   BROWSER FRAME + MOCKUPS  (scoped DARK theme)
   ============================================================ */
.frame {
  /* dark palette scoped to the mockup so it looks like a real app screenshot */
  --panel:    #1a1218;
  --panel-2:  #211720;
  --bg:       #0c090b;
  --bg-2:     #120c0f;
  --ink:      #f6eef0;
  --muted:    #b7a6ad;
  --muted-2:  #8a7a82;
  --line:     rgba(219,192,120,.16);
  --line-soft:rgba(255,255,255,.07);
  --pos:      #6fd08c;
  --neg:      #e8728a;
  --amber:    #e6b14e;

  color: #f6eef0;
  border-radius: 16px; overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 44px 90px -36px rgba(58,12,27,.42), 0 10px 30px -18px rgba(0,0,0,.25);
}
.frame-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 14px; background: rgba(0,0,0,.35);
  border-bottom: 1px solid var(--line-soft);
}
.dotr { width: 11px; height: 11px; border-radius: 50%; }
.dotr.r { background: #e8728a; } .dotr.y { background: #e6b14e; } .dotr.g { background: #6fd08c; }
.frame-url {
  margin-left: 12px; font-size: 11.5px; color: var(--muted-2);
  background: rgba(255,255,255,.05); padding: 4px 12px; border-radius: 999px;
  font-family: var(--ff-sans);
}
.mock { padding: 16px; background:
  radial-gradient(120% 100% at 100% 0, rgba(123,27,56,.2), transparent 55%), var(--bg-2); }

/* --- shared mock atoms --- */
.mk-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mk-title { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; }
.mk-crest { width: 18px; height: 18px; border-radius: 5px;
  background: linear-gradient(135deg, var(--wine-bright), var(--wine-deep)); border: 1px solid var(--gold); }
.mk-toggle { display: flex; gap: 4px; background: rgba(0,0,0,.3); padding: 3px; border-radius: 999px; font-size: 11px; }
.mk-toggle span { padding: 3px 11px; border-radius: 999px; color: var(--muted-2); }
.mk-toggle .on { background: var(--gold); color: #2a1410; font-weight: 700; }

.mk-tiles { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; margin-bottom: 10px; }
.mk-tile { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px; padding: 11px 12px; }
.mk-tile-label { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted-2); }
.mk-tile-val { display: block; font-family: var(--ff-disp); font-size: 26px; margin-top: 3px; color: var(--ink); }
.mk-tile-val small { font-size: 12px; color: var(--muted); margin-left: 2px; }
.mk-tile-val.pos { color: var(--pos); }
.mk-tile-foot { font-size: 10px; color: var(--gold-soft); }

.mk-row2 { display: grid; grid-template-columns: 1.3fr 1fr; gap: 8px; }
.mk-panel { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px; padding: 11px 12px; }
.mk-panel-h { display: flex; justify-content: space-between; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 9px; }
.mk-panel-h span { color: var(--gold-soft); }

.mk-tr { display: grid; grid-template-columns: 18px 1fr auto auto; gap: 8px; align-items: center;
  font-size: 12px; padding: 5px 0; border-bottom: 1px solid var(--line-soft); }
.mk-tr:last-child { border-bottom: 0; }
.mk-tr.hot { background: rgba(219,192,120,.1); border-radius: 7px; padding: 5px 7px; border-bottom: 0; }
.mk-rank { color: var(--muted-2); font-weight: 700; text-align: center; }
.mk-team { display: flex; align-items: center; gap: 7px; min-width: 0; }
.mk-team-name { min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-d { width: 13px; height: 13px; border-radius: 4px; flex-shrink: 0;
  background: linear-gradient(135deg,var(--gold),var(--gold-deep)); }
.mk-pts { font-weight: 700; }
.mk-xp { color: var(--muted); }

.mk-dots { display: flex; gap: 5px; margin-bottom: 8px; }
.mk-dots i { width: 21px; height: 21px; border-radius: 6px; display: grid; place-items: center;
  font-size: 10px; font-weight: 700; font-style: normal; color: #160d10; }
.mk-dots .w { background: var(--pos); } .mk-dots .d { background: var(--amber); } .mk-dots .l { background: var(--neg); }
.mk-pct { font-family: var(--ff-disp); font-size: 24px; color: var(--pos); }
.mk-pct small { font-size: 13px; }
.mk-pct span { font-family: var(--ff-sans); font-size: 11px; color: var(--muted-2); margin-left: 6px; }
.mk-bars { margin-top: 9px; display: flex; flex-direction: column; gap: 6px; }
.mk-kpi { display: flex; justify-content: space-between; align-items: center; font-size: 11.5px; color: var(--muted); }
.mk-kpi b { font-weight: 700; }
.mk-kpi b.g { color: var(--pos); } .mk-kpi b.a { color: var(--amber); }
.mk-kpi b i { font-style: normal; font-size: 9px; color: var(--muted-2); margin-left: 1px; }

/* --- pillars mock --- */
.mock-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mk-pillar { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px; padding: 13px; }
.mk-pillar-h { display: flex; justify-content: space-between; align-items: center; font-size: 12px;
  font-weight: 700; letter-spacing: .05em; margin-bottom: 12px; color: var(--ink); }
.ring { font-size: 9.5px; font-weight: 800; padding: 3px 9px; border-radius: 999px; letter-spacing: .06em; }
.ring.elite { background: rgba(111,208,140,.16); color: var(--pos); border: 1px solid rgba(111,208,140,.4); }
.ring.target { background: rgba(230,177,78,.16); color: var(--amber); border: 1px solid rgba(230,177,78,.4); }
.mk-metric { display: grid; grid-template-columns: 1fr 70px auto auto; gap: 9px; align-items: center;
  font-size: 11.5px; color: var(--muted); margin-bottom: 9px; }
.mk-track { height: 6px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; }
.mk-track i { display: block; height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--wine-bright), var(--gold)); }
.mk-metric b { color: var(--ink); font-weight: 700; }
.mk-metric b.g { color: var(--pos); } .mk-metric b.a { color: var(--amber); }
.mk-metric em { font-style: normal; font-size: 10px; color: var(--muted-2); }

/* --- targets mock --- */
.mk-tg-head { display: flex; align-items: center; justify-content: space-between; font-weight: 700;
  font-size: 13px; margin-bottom: 12px; }
.mk-pill { font-size: 10px; font-weight: 600; color: var(--gold); background: rgba(219,192,120,.1);
  border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; }
.mk-tg-row { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center;
  padding: 9px; border-radius: 10px; background: var(--panel); border: 1px solid var(--line-soft); margin-bottom: 7px; }
.mk-face { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--gold);
  background-size: cover; background-position: center top; flex-shrink: 0; }
.mk-face.big { width: 44px; height: 44px; }
.mk-face.f1 { background: radial-gradient(circle at 50% 35%, #c98b6a, #6b3f2c); }
.mk-face.f2 { background: radial-gradient(circle at 50% 35%, #b98a63, #5e3c28); }
.mk-face.f3 { background: radial-gradient(circle at 50% 35%, #8a5a3c, #45291a); }
.mk-face.f4 { background: radial-gradient(circle at 50% 35%, #d0a07a, #7a513a); }
.mk-tg-id b { display: block; font-size: 13px; }
.mk-tg-id small { font-size: 10.5px; color: var(--muted-2); }
.mk-fit { display: flex; align-items: center; gap: 8px; }
.mk-fit-bar { width: 64px; height: 7px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; }
.mk-fit-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); border-radius: 999px; }
.mk-fit b { font-size: 12px; color: var(--gold); font-weight: 700; min-width: 30px; text-align: right; }

/* --- profile mock --- */
.mock-profile { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mk-pf-bio { display: flex; align-items: center; gap: 11px; margin-bottom: 8px; }
.mk-pf-bio b { display: block; font-size: 14px; }
.mk-pf-bio small { font-size: 10.5px; color: var(--muted-2); display: block; }
.mk-padj { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; color: var(--muted); margin-top: 4px; }
.mk-padj b { font-family: var(--ff-disp); font-size: 16px; color: var(--gold); }
.mk-padj i { font-style: normal; font-size: 9px; color: var(--muted-2); }
.mk-radar { width: 100%; height: auto; }
.mk-pf-right { background: var(--panel); border: 1px solid var(--line-soft); border-radius: 12px; padding: 11px; }
.mk-pf-h { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); margin-bottom: 9px; }
.mk-heat { display: grid; grid-template-columns: repeat(5,1fr); grid-auto-rows: 1fr; gap: 3px;
  aspect-ratio: 5/6; margin-bottom: 11px; }
.mk-heat span { border-radius: 3px; }
.mk-pf-bars { display: flex; flex-direction: column; gap: 7px; }

/* --- pitch mock --- */
.mock-pitch .pitch-svg { width: 100%; height: auto; border-radius: 8px; }
.mock-pitch .chips circle { fill: rgba(123,27,56,.92); stroke: var(--gold); stroke-width: 1.2; }
.mock-pitch .chips text { fill: #fff; font-weight: 600; }
.mk-pitch-foot { text-align: center; font-size: 11px; color: var(--muted-2); margin-top: 10px; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; padding: 40px 24px; }
.stat { text-align: center; }
.stat-num { font-family: var(--ff-disp); font-size: clamp(34px,4vw,48px); color: var(--wine); display: block; line-height: 1; }
.stat-cap { font-size: 13px; color: var(--muted); margin-top: 8px; display: block; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; position: relative; background: #fff; }
.section-dark { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head.narrow { max-width: 640px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 44px); }
.section-lead { color: var(--muted); font-size: 17px; margin-top: 18px; }
.section-lead strong { color: var(--wine); font-weight: 600; }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bento-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--card-shadow); transition: border-color .25s, transform .25s, box-shadow .25s; }
.bento-card:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -28px rgba(58,12,27,.3); }
.bento-card.big { grid-row: span 2; grid-column: span 1; display: flex; flex-direction: column;
  background: linear-gradient(165deg, var(--wine), var(--wine-deep)); border-color: transparent; color: #fff;
  box-shadow: var(--shadow); }
.bento-card.big h3 { color: #fff; }
.bento-card.big p { color: rgba(255,255,255,.82); }
.bento-icon { font-size: 26px; width: 52px; height: 52px; display: grid; place-items: center;
  background: rgba(123,27,56,.07); border: 1px solid var(--line); border-radius: 14px; margin-bottom: 18px; }
.bento-card.big .bento-icon { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); }
.bento-card h3 { font-size: 21px; margin-bottom: 10px; }
.bento-card p { color: var(--muted); font-size: 15px; }
.bento-list { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 9px; }
.bento-list li { position: relative; padding-left: 24px; font-size: 14px; color: var(--ink); }
.bento-list li::before { content: "✓"; position: absolute; left: 0; color: var(--wine); font-weight: 800; }
.bento-card.big .bento-list li { color: #fff; }
.bento-card.big .bento-list li::before { color: var(--gold); }

/* ---------- Modules grid ---------- */
.modules { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.module-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; position: relative; overflow: hidden; box-shadow: var(--card-shadow);
  transition: transform .25s, border-color .25s, box-shadow .25s; }
.module-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--wine-bright), var(--gold)); transform: scaleX(0);
  transform-origin: left; transition: transform .3s ease; }
.module-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(58,12,27,.32); }
.module-card:hover::before { transform: scaleX(1); }
.mc-ico { font-size: 26px; width: 54px; height: 54px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(123,27,56,.1), rgba(123,27,56,.03));
  border: 1px solid var(--line); border-radius: 15px; margin-bottom: 18px; }
.module-card h3 { font-size: 20px; margin-bottom: 9px; }
.module-card > p { color: var(--muted); font-size: 14.5px; }
.module-card ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
.module-card ul li { font-size: 13px; color: var(--ink-2); padding-left: 18px; position: relative; }
.module-card ul li::before { content: "›"; position: absolute; left: 4px; color: var(--wine); font-weight: 800; }

/* ---------- Feature rows ---------- */
.feature { display: grid; grid-template-columns: 1fr 1.08fr; gap: 56px; align-items: center; padding: 50px 0; }
.feature--reverse .feature-copy { order: 2; }
.feature-kicker { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--wine); }
.feature-copy h3 { font-size: clamp(24px,2.8vw,34px); margin: 12px 0 16px; }
.feature-copy > p { color: var(--muted); font-size: 16px; }
.feature-copy em { color: var(--wine); font-style: italic; }
.feature-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.feature-list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--ink); }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 14px;
  border-radius: 50%; background: radial-gradient(circle, var(--wine) 0 40%, transparent 45%);
  border: 1.5px solid var(--wine-bright); }
.feature-list b { color: var(--wine); font-weight: 600; }

/* ---------- AI band (burgundy brand moment) ---------- */
.ai-band { background: linear-gradient(120deg, var(--wine), var(--wine-deep) 78%); }
.ai-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ai-copy h2 { color: #fff; font-size: clamp(28px,3.4vw,40px); }
.ai-band .section-lead { color: rgba(255,255,255,.84); }
.ai-band .section-lead em, .ai-copy em { color: var(--gold-soft); font-style: italic; }
.ai-chat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 12px; box-shadow: 0 30px 60px -26px rgba(0,0,0,.45); }
.ai-msg { font-size: 14px; border-radius: 14px; padding: 13px 16px; max-width: 92%; }
.ai-msg.user { align-self: flex-end; background: var(--gold); color: #2a1410; font-weight: 500; border-bottom-right-radius: 4px; }
.ai-msg.bot { align-self: flex-start; background: #fff; color: var(--ink); border: 1px solid rgba(0,0,0,.05);
  border-bottom-left-radius: 4px; display: flex; flex-direction: column; gap: 7px; }
.ai-bot-tag { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--wine); font-weight: 700; }
.ai-link { color: var(--wine); font-size: 13px; font-weight: 600; }
.ai-cta { margin-top: 4px; font-size: 12.5px; font-weight: 700; color: var(--wine);
  border: 1px dashed rgba(123,27,56,.4); border-radius: 999px; padding: 7px 14px; align-self: flex-start; }

/* ---------- Partners ---------- */
.partners { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.partner { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 16px; text-align: center; box-shadow: var(--card-shadow); transition: border-color .25s, transform .25s; }
.partner:hover { border-color: var(--gold-deep); transform: translateY(-3px); }
.partner b { font-family: var(--ff-disp); font-size: 19px; color: var(--wine); display: block; }
.partner small { font-size: 11px; color: var(--muted); display: block; margin-top: 6px; line-height: 1.4; }

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.why-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--card-shadow); transition: border-color .25s, transform .25s; }
.why-card:hover { border-color: var(--gold-deep); transform: translateY(-3px); }
.why-num { font-family: var(--ff-disp); font-size: 30px; color: var(--wine); display: block; margin-bottom: 12px; }
.why-card h3 { font-size: 19px; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: start; }
.step { text-align: center; padding: 0 24px; }
.step-n { width: 56px; height: 56px; margin: 0 auto 20px; display: grid; place-items: center;
  font-family: var(--ff-disp); font-size: 24px; color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--wine-deep)); border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(123,27,56,.07); }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 14.5px; }
.step-line { height: 1px; background: linear-gradient(90deg, var(--gold-deep), transparent); margin-top: 28px; min-width: 40px; }

/* ---------- Plans (two tiers) ---------- */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; align-items: stretch;
  max-width: 840px; margin: 0 auto; }
.plan { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; display: flex; flex-direction: column; box-shadow: var(--card-shadow); }
.plan h3 { font-size: 26px; margin-bottom: 6px; }
.plan-sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan ul li { font-size: 14.5px; color: var(--ink); padding-left: 24px; position: relative; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--wine); font-weight: 800; }
.plan ul li b { color: var(--wine); font-weight: 700; }
.plan--featured { background: linear-gradient(170deg, var(--wine), var(--wine-deep)); border-color: transparent;
  color: #fff; position: relative; box-shadow: var(--shadow); }
.plan--featured h3 { color: #fff; }
.plan--featured .plan-sub { color: rgba(255,255,255,.8); }
.plan--featured ul li { color: #fff; }
.plan--featured ul li::before { color: var(--gold); }
.plan--featured ul li b { color: var(--gold); }
.plan--featured .btn-gold { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #2a1410;
  box-shadow: 0 16px 34px -16px rgba(0,0,0,.4); }
.plan--featured .btn-gold:hover { background: var(--gold-soft); }
.plan-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: #2a1410;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; padding: 5px 16px; border-radius: 999px; }

/* ---------- Final CTA ---------- */
.cta-final { padding: 110px 0; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(60% 80% at 50% 0, rgba(123,27,56,.06), transparent 60%), #fff;
  border-top: 1px solid var(--line); }
.cta-inner { max-width: 720px; }
.cta-final h2 { font-size: clamp(30px,4vw,50px); margin-bottom: 18px; }
.cta-lead { color: var(--muted); font-size: 18px; margin-bottom: 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-mail { margin-top: 26px; color: var(--wine); font-size: 14px; font-weight: 600; letter-spacing: .02em; }

/* ---------- Footer (deep burgundy) ---------- */
.footer { background: var(--wine-deep); color: rgba(255,255,255,.78); padding: 64px 0 0; }
.footer .brand-word { color: #fff; }
.footer .brand-sub { color: var(--gold-soft); opacity: 1; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 40px; padding-bottom: 48px; }
.footer-tag { color: rgba(255,255,255,.66); font-size: 14px; margin-top: 16px; }
.footer-tag em { color: var(--gold-soft); font-style: italic; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.footer-cols h4 { font-family: var(--ff-sans); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 14px; }
.footer-cols a { display: block; color: rgba(255,255,255,.72); font-size: 14px; margin-bottom: 10px;
  transition: color .2s; overflow-wrap: anywhere; }
.footer-cols a:hover { color: #fff; }
.footer-base { display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,.12); padding: 22px 24px; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-note { color: var(--gold-soft); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .lead { max-width: none; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.big { grid-row: auto; grid-column: 1 / -1; }
  .modules, .why-grid { grid-template-columns: 1fr 1fr; }
  .feature, .feature--reverse { grid-template-columns: 1fr; gap: 32px; }
  .feature--reverse .feature-copy { order: 0; }
  .ai-inner { grid-template-columns: 1fr; gap: 30px; }
  .partners { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .plans { grid-template-columns: 1fr; max-width: 460px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step-line { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 14px 24px 24px; transform: translateY(-130%);
    transition: transform .3s ease; pointer-events: none;
    box-shadow: 0 18px 40px -24px rgba(58,12,27,.3);
  }
  .nav-links.open { transform: none; pointer-events: auto; }
  .nav-links > a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-links .nav-cta { margin-top: 14px; text-align: center; border-bottom: 0; }
  .nav-toggle { display: flex; }
  .stats { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px 8px; }
  .bento, .modules, .why-grid { grid-template-columns: 1fr; }
  .partners { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mk-tiles { grid-template-columns: 1fr 1fr; }
  .mk-row2 { grid-template-columns: 1fr; }
  .mock-pillars, .mock-profile { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero { padding: 48px 0 70px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 20px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
