@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Archivo:wght@400;500;600;700&display=swap");

/* ============================================================
   GOVERNINTEL Design System v2 — AI Governance & Risk Advisory
   Loaded after app.css — tokens defined here take precedence
   ============================================================ */

/* ============ TOKENS ============ */
:root {
  --ink: #0A1A2F;
  --ink-800: #0E2238;
  --ink-700: #16314C;
  --ink-600: #22455F;
  --paper: #F4F1EA;
  --paper-2: #FBFAF5;
  --teal: #15A398;
  --teal-bright: #22C9BA;
  --teal-deep: #0C7068;
  --brass: #C8A24B;
  --brass-soft: #E0C586;
  --slate: #5C6F80;
  --slate-light: #90A0AE;
  --risk-low: #1E9E8A;
  --risk-med: #D8A53A;
  --risk-high: #C24A3E;
  --line: rgba(10,26,47,.12);
  --line-light: rgba(255,255,255,.12);
  --shadow: 0 24px 60px -24px rgba(10,26,47,.35);
  --maxw: 1180px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Archivo', system-ui, sans-serif;

  /* Override old tokens */
  --background: var(--paper);
  --foreground: var(--ink);
  --card: #fff;
  --card-fg: var(--ink);
  --secondary: var(--paper-2);
  --secondary-fg: var(--ink);
  --muted-fg: var(--slate);
  --primary: var(--ink);
  --primary-fg: #fff;
  --accent: var(--teal);
  --accent-fg: #fff;
  --cta: var(--brass);
  --cta-fg: var(--ink);
  --destructive: var(--risk-high);
  --destructive-fg: #fff;
  --border: var(--line);
}

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans) !important;
  background: var(--paper) !important;
  color: var(--ink) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -.015em; }
a { color: inherit; text-decoration: none; }

/* ============ EYEBROW ============ */
.eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--teal-deep); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--brass); flex-shrink: 0; }
.eyebrow.on-dark { color: var(--brass-soft); }
.eyebrow.on-dark::before { background: var(--brass); }

/* ============ NAV ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: .45s cubic-bezier(.2,.7,.2,1);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(10,26,47,.92) !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-light);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.brand {
  display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none;
}
.mark {
  width: 38px; height: 38px; border: 1.5px solid var(--brass); border-radius: 8px;
  display: grid; place-items: center; position: relative; overflow: hidden; flex: none;
}
.mark::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, transparent 60%); opacity: .4;
}
.mark span { font-family: var(--serif); font-weight: 600; font-size: 18px; color: var(--brass-soft); position: relative; z-index: 1; }
.brand b { font-family: var(--sans); font-weight: 700; letter-spacing: .16em; font-size: 15px; }
.brand small { display: block; font-size: 9px; letter-spacing: .28em; color: var(--slate-light); font-weight: 500; margin-top: 1px; }
.navlinks { display: flex; align-items: center; gap: 30px; }
.navlinks a {
  color: rgba(255,255,255,.82); font-size: 13.5px; font-weight: 500; letter-spacing: .01em;
  position: relative; transition: .25s;
}
.navlinks a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--teal-bright); transition: .3s;
}
.navlinks a:hover { color: #fff; }
.navlinks a:hover::after { width: 100%; }
.navlinks a.active { color: var(--teal-bright); }
.navlinks a.active::after { width: 100%; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 13.5px; letter-spacing: .01em;
  padding: 12px 22px; border-radius: 50px; cursor: pointer; border: none;
  transition: .3s cubic-bezier(.2,.7,.2,1); white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-bright); transform: translateY(-2px); box-shadow: 0 12px 28px -10px var(--teal); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-soft); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-700); transform: translateY(-2px); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal-deep); }
.btn-cta { background: var(--brass); color: var(--ink); font-weight: 700; border: none; }
.btn-cta:hover { background: var(--brass-soft); transform: translateY(-2px); color: var(--ink); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn-sm { padding: 8px 16px; font-size: 12.5px; }
.btn-md { padding: 11px 20px; font-size: 13.5px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn .arr { transition: .3s; }
.btn:hover .arr { transform: translateX(4px); }

/* ============ MOBILE NAV ============ */
.hamburger { display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
.mobile-nav {
  display: none; position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
  background: var(--ink); z-index: 99; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav__inner { padding: 24px 28px; display: flex; flex-direction: column; gap: 16px; }
.mobile-nav__inner a { color: rgba(255,255,255,.85); font-size: 1rem; font-weight: 500; padding: 8px 0; border-bottom: 1px solid var(--line-light); display: block; }
.mobile-nav__inner a:hover { color: var(--teal-bright); }
.mobile-nav__inner .btn { margin-top: 8px; justify-content: center; }
.mobile-nav__group-label { color: rgba(255,255,255,.5) !important; font-size: 0.75rem !important; letter-spacing: .1em; text-transform: uppercase; }

/* ============ HERO ============ */
.hero {
  position: relative; background: var(--ink); color: #fff;
  padding: 150px 0 90px; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; opacity: .5; pointer-events: none; }
.hero-bg .grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 20%, #000, transparent);
}
.hero-bg .glow { position: absolute; width: 620px; height: 620px; border-radius: 50%; filter: blur(90px); }
.hero-bg .g1 { background: radial-gradient(circle, rgba(21,163,152,.28), transparent 70%); top: -160px; right: -120px; }
.hero-bg .g2 { background: radial-gradient(circle, rgba(200,162,75,.14), transparent 70%); bottom: -220px; left: -140px; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(40px, 5.6vw, 68px); margin: 22px 0 24px; }
.hero h1 em { font-style: italic; color: var(--brass-soft); }
.hero p.lede { font-size: 18px; color: rgba(255,255,255,.78); max-width: 560px; font-weight: 400; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-kpis {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; margin-top: 54px;
  background: var(--line-light); border: 1px solid var(--line-light); border-radius: 14px; overflow: hidden;
}
.kpi { background: rgba(255,255,255,.02); padding: 22px 24px; }
.kpi .num { font-family: var(--serif); font-size: 34px; font-weight: 600; color: #fff; line-height: 1; }
.kpi .num .suf { color: var(--teal-bright); }
.kpi .lab { font-size: 12px; color: var(--slate-light); margin-top: 7px; letter-spacing: .02em; }

/* gauge panel */
.gauge-panel {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line-light); border-radius: 18px; padding: 28px; backdrop-filter: blur(6px);
}
.gauge-panel .ph { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }
.gauge-wrap { display: grid; place-items: center; margin: 8px 0 4px; }
.gauge-wrap svg { width: 230px; height: 140px; }
.gauge-center { text-align: center; margin-top: -58px; margin-bottom: 14px; }
.gauge-center .val { font-family: var(--serif); font-size: 42px; font-weight: 600; color: #fff; }
.gauge-center .cap { font-size: 12px; color: var(--teal-bright); letter-spacing: .04em; }
.gauge-legend { display: flex; justify-content: space-between; font-size: 11px; color: var(--slate-light); border-top: 1px solid var(--line-light); padding-top: 14px; }
.gauge-legend b { display: block; color: #fff; font-size: 13px; font-weight: 600; margin-top: 2px; }

/* ============ STANDARDS STRIP ============ */
.standards { background: var(--ink-800); color: #fff; padding: 26px 0; border-top: 1px solid var(--line-light); }
.standards .wrap { display: flex; align-items: center; gap: 38px; flex-wrap: wrap; justify-content: center; }
.standards .lab { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }
.std-item { display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 14px; letter-spacing: .02em; color: rgba(255,255,255,.9); }
.std-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright); }

/* ============ SECTIONS ============ */
section { position: relative; }
.sec { padding: 96px 0; }
.sec-head { max-width: 680px; margin-bottom: 54px; }
.sec-head h2 { font-size: clamp(30px,4vw,46px); margin: 18px 0 16px; }
.sec-head p { font-size: 17px; color: var(--slate); }
.sec.dark { background: var(--ink); color: #fff; }
.sec.dark .sec-head p { color: rgba(255,255,255,.72); }
.sec.dark h2 { color: #fff; }
.section-padding { padding: 5rem 0; }
.bg-background { background: var(--paper); }
.bg-secondary { background: var(--paper-2); }
.container-tight { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay-1 { transition-delay: .12s; }
.fade-up-delay-2 { transition-delay: .24s; }
.fade-up-delay-3 { transition-delay: .36s; }

/* ============ CAPABILITIES ============ */
.cap-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.cap-tabs { display: flex; flex-direction: column; gap: 4px; }
.cap-tab {
  display: flex; gap: 16px; align-items: flex-start; text-align: left;
  background: none; border: none; border-left: 2px solid var(--line);
  padding: 18px 20px; cursor: pointer; transition: .3s; border-radius: 0 10px 10px 0;
}
.cap-tab:hover { background: var(--paper-2); }
.cap-tab.active { border-left-color: var(--teal); background: #fff; box-shadow: var(--shadow); }
.cap-tab .ic { width: 42px; height: 42px; flex: none; border-radius: 11px; background: var(--paper-2); display: grid; place-items: center; transition: .3s; }
.cap-tab.active .ic { background: var(--ink); }
.cap-tab .ic svg { width: 22px; height: 22px; stroke: var(--ink); transition: .3s; }
.cap-tab.active .ic svg { stroke: var(--teal-bright); }
.cap-tab h4 { font-family: var(--sans); font-weight: 700; font-size: 15.5px; letter-spacing: -.01em; margin-bottom: 3px; }
.cap-tab p { font-size: 13px; color: var(--slate); line-height: 1.45; margin: 0; }
.cap-detail {
  background: var(--ink); color: #fff; border-radius: 20px; padding: 42px;
  min-height: 430px; position: relative; overflow: hidden;
}
.cap-detail .deco { position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle,rgba(21,163,152,.22),transparent 70%); }
.cap-pane { display: none; position: relative; z-index: 1; }
.cap-pane.active { display: block; animation: gi-fade .5s; }
@keyframes gi-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.cap-pane .tag { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-soft); font-weight: 600; }
.cap-pane h3 { font-size: 30px; margin: 14px 0 16px; color: #fff; }
.cap-pane > p { color: rgba(255,255,255,.78); font-size: 15.5px; margin-bottom: 26px; max-width: 520px; }
.deliv { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.deliv div { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,.86); }
.deliv svg { width: 18px; height: 18px; stroke: var(--teal-bright); flex: none; margin-top: 3px; }
.cap-metrics { display: flex; gap: 32px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line-light); }
.cap-metrics div .n { font-family: var(--serif); font-size: 26px; color: var(--brass-soft); font-weight: 600; }
.cap-metrics div .l { font-size: 11.5px; color: var(--slate-light); }

/* ============ MATURITY MODEL ============ */
.mat-track { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-bottom: 36px; position: relative; }
.mat-track::before { content: ""; position: absolute; top: 26px; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg,var(--risk-high),var(--risk-med),var(--teal),var(--teal-deep)); opacity: .3; z-index: 0; }
.mat-step { position: relative; z-index: 1; text-align: center; background: none; border: none; cursor: pointer; padding-top: 0; }
.mat-dot { width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 50%; background: #fff; border: 2px solid var(--line); display: grid; place-items: center; font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--slate); transition: .35s cubic-bezier(.2,.7,.2,1); }
.mat-step:hover .mat-dot { border-color: var(--teal); color: var(--teal-deep); }
.mat-step.active .mat-dot { background: var(--ink); border-color: var(--brass); color: var(--brass-soft); transform: scale(1.12); box-shadow: 0 12px 28px -10px rgba(10,26,47,.5); }
.mat-step .name { font-size: 12.5px; font-weight: 600; color: var(--slate); transition: .3s; letter-spacing: .01em; }
.mat-step.active .name { color: var(--ink); }
.mat-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.mat-panel .lvl { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep); font-weight: 600; }
.mat-panel h3 { font-size: 28px; margin: 10px 0 14px; }
.mat-panel .desc { color: var(--slate); font-size: 15px; }
.mat-side { border-left: 1px solid var(--line); padding-left: 40px; }
.mat-side h5 { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.mat-side ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.mat-side li { display: flex; gap: 11px; font-size: 14px; color: var(--ink-700); }
.mat-side li svg { width: 18px; height: 18px; stroke: var(--teal); flex: none; margin-top: 3px; }
.mat-bar { height: 6px; border-radius: 4px; background: var(--paper); margin-top: 20px; overflow: hidden; }
.mat-bar i { display: block; height: 100%; background: linear-gradient(90deg,var(--teal),var(--teal-bright)); border-radius: 4px; transition: .6s cubic-bezier(.2,.7,.2,1); }

/* ============ OPERATING MODEL ============ */
.tlod { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 10px; }
.line-card { background: rgba(255,255,255,.04); border: 1px solid var(--line-light); border-radius: 16px; padding: 28px; transition: .4s; cursor: default; position: relative; overflow: hidden; }
.line-card:hover { background: rgba(255,255,255,.07); transform: translateY(-5px); }
.line-card .ln { font-family: var(--serif); font-size: 40px; font-weight: 600; color: var(--teal-bright); opacity: .5; }
.line-card:hover .ln { opacity: 1; }
.line-card h4 { font-family: var(--sans); font-weight: 700; font-size: 17px; color: #fff; margin: 6px 0 12px; }
.line-card p { font-size: 13.5px; color: rgba(255,255,255,.72); }
.line-card ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.line-card li { font-size: 13px; color: rgba(255,255,255,.85); padding-left: 18px; position: relative; }
.line-card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--brass); }

/* ============ DASHBOARD ============ */
.dash { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px; box-shadow: 0 12px 40px -28px rgba(10,26,47,.4); }
.card .ch-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.card h4 { font-family: var(--sans); font-weight: 700; font-size: 16px; letter-spacing: -.01em; }
.card .sub { font-size: 12.5px; color: var(--slate); margin-bottom: 22px; }
.pill { font-size: 11px; font-weight: 600; padding: 5px 11px; border-radius: 50px; background: rgba(194,74,62,.1); color: var(--risk-high); }
.bars { display: flex; align-items: flex-end; gap: 14px; height: 200px; padding-top: 10px; }
.bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.bar { width: 100%; max-width: 46px; border-radius: 7px 7px 0 0; background: linear-gradient(180deg,var(--teal-bright),var(--teal-deep)); height: 0; transition: height 1s cubic-bezier(.2,.7,.2,1); position: relative; }
.bar.hot { background: linear-gradient(180deg,#E06A5C,var(--risk-high)); }
.bar .bv { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); font-size: 12px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.bar-col .yr { font-size: 12px; color: var(--slate); font-weight: 500; }
.donut-wrap { display: flex; align-items: center; gap: 24px; }
.donut { position: relative; width: 150px; height: 150px; flex: none; }
.donut svg { transform: rotate(-90deg); }
.donut .dc { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.donut .dc .p { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--ink); }
.donut .dc .s { font-size: 10px; color: var(--slate); letter-spacing: .04em; }
.donut-legend { font-size: 13px; color: var(--ink-700); display: flex; flex-direction: column; gap: 12px; }
.donut-legend div { display: flex; align-items: center; gap: 9px; }
.donut-legend .sw { width: 11px; height: 11px; border-radius: 3px; flex: none; }
.heat-card { margin-top: 24px; }
.heat-layout { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.heat-ylab { writing-mode: vertical-rl; transform: rotate(180deg); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); text-align: center; }
.heat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; }
.heat-cell { aspect-ratio: 1.6/1; border-radius: 8px; display: grid; place-items: center; font-weight: 700; font-size: 15px; color: #fff; cursor: pointer; transition: .25s; position: relative; }
.heat-cell:hover { transform: scale(1.07); z-index: 2; box-shadow: 0 10px 24px -8px rgba(10,26,47,.4); }
.heat-cell.sel { outline: 3px solid var(--ink); outline-offset: 2px; }
.heat-xlab { grid-column: 2; display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; margin-top: 4px; }
.heat-xlab span { text-align: center; font-size: 11px; color: var(--slate); font-weight: 500; }
.heat-xtitle { grid-column: 2; text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate); margin-top: 8px; }
.heat-readout { background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; margin-top: 18px; display: flex; gap: 16px; align-items: center; min-height: 74px; }
.heat-readout .badge-r { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 50px; color: #fff; flex: none; }
.heat-readout p { font-size: 13.5px; color: var(--ink-700); margin: 0; }
.heat-readout b { color: var(--ink); }

/* coverage table */
.tbl-wrap { margin-top: 24px; overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead th { background: var(--ink); color: #fff; font-family: var(--sans); font-weight: 600; font-size: 12.5px; letter-spacing: .04em; padding: 16px 18px; text-align: left; }
thead th:not(:first-child) { text-align: center; }
tbody td { padding: 15px 18px; border-bottom: 1px solid var(--line); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--paper-2); }
tbody td:first-child { font-weight: 600; color: var(--ink); }
tbody td:not(:first-child) { text-align: center; }
.chk { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 7px; background: rgba(21,163,152,.12); }
.chk svg { width: 14px; height: 14px; stroke: var(--teal-deep); }
.dash-cell { color: var(--slate-light); }
.lead-cell { font-weight: 700; color: var(--teal-deep) !important; }

/* ============ ACADEMY ============ */
.aca-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 48px; }
.aca-feature { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px; transition: .4s; }
.aca-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.aca-feature .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--ink); display: grid; place-items: center; margin-bottom: 18px; }
.aca-feature .ic svg { width: 24px; height: 24px; stroke: var(--teal-bright); }
.aca-feature h4 { font-family: var(--sans); font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.aca-feature p { font-size: 14px; color: var(--slate); }
.aca-stats { display: flex; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.aca-stats span { font-size: 12px; font-weight: 600; color: var(--teal-deep); background: rgba(21,163,152,.1); padding: 6px 12px; border-radius: 50px; }
.sched { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-bottom: 14px; }
.sched .col { background: #fff; padding: 26px 28px; }
.sched .col h5 { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: 4px; }
.sched .col .when { font-family: var(--serif); font-size: 20px; margin-bottom: 14px; }
.sched .tz { display: flex; justify-content: space-between; font-size: 13px; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.sched .tz:last-child { border: none; }
.sched .tz b { font-weight: 600; }
.cohorts { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.cohort { flex: 1; min-width: 180px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.cohort .st { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; display: inline-block; margin-bottom: 10px; }
.st.live { background: rgba(21,163,152,.14); color: var(--teal-deep); }
.st.next { background: rgba(200,162,75,.16); color: #9a7a26; }
.cohort .dt { font-family: var(--serif); font-size: 18px; }
.compare-tag { text-align: center; margin-bottom: 14px; }
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.tier { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px 30px; position: relative; transition: .4s; }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tier.feat { background: var(--ink); color: #fff; border-color: var(--ink); }
.tier .ttag { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; color: var(--slate); }
.tier.feat .ttag { color: var(--brass-soft); }
.tier h4 { font-family: var(--serif); font-size: 26px; margin: 6px 0 16px; }
.tier.feat h4 { color: #fff; }
.tier .price { font-family: var(--serif); font-size: 40px; font-weight: 600; }
.tier .price .pp { font-size: 14px; color: var(--slate); font-family: var(--sans); font-weight: 500; }
.tier.feat .price .pp { color: var(--slate-light); }
.tier .pnote { font-size: 13px; color: var(--slate); margin-bottom: 22px; }
.tier.feat .pnote { color: var(--slate-light); }
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.tier li { font-size: 13.5px; display: flex; gap: 10px; align-items: flex-start; }
.tier li svg { width: 17px; height: 17px; stroke: var(--teal); flex: none; margin-top: 3px; }
.tier.feat li svg { stroke: var(--teal-bright); }
.tier .btn { width: 100%; justify-content: center; }
.badge-top { position: absolute; top: -12px; right: 24px; background: var(--brass); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .06em; padding: 5px 14px; border-radius: 50px; text-transform: uppercase; }

/* ============ FOUNDER ============ */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.founder-card { position: relative; }
.portrait { aspect-ratio: 4/5; border-radius: 20px; background: linear-gradient(160deg,var(--ink-700),var(--ink)); display: grid; place-items: center; position: relative; overflow: hidden; border: 1px solid var(--line-light); }
.portrait::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%,rgba(21,163,152,.25),transparent 60%); }
.portrait .init { font-family: var(--serif); font-size: 90px; color: var(--brass-soft); font-weight: 500; position: relative; z-index: 1; }
.portrait .ph-note { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-size: 11px; color: var(--slate-light); z-index: 1; }
.founder-card .sub-chip { position: absolute; bottom: -16px; right: -12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow); }
.sub-chip .n { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.sub-chip .l { font-size: 11px; color: var(--slate); }
.founder-body .role { font-size: 14px; color: var(--teal-deep); font-weight: 600; margin: 10px 0 18px; }
.founder-body h2 { font-size: 38px; margin-bottom: 8px; }
.creds { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.creds div { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-700); }
.creds svg { width: 18px; height: 18px; stroke: var(--brass); flex: none; margin-top: 3px; }
.fquote { border-left: 3px solid var(--teal); padding-left: 22px; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink); line-height: 1.4; }

/* ============ PROOF ============ */
.proof-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); border-radius: 16px; overflow: hidden; margin-bottom: 54px; }
.pm { background: var(--ink-800); padding: 30px; text-align: center; }
.pm .n { font-family: var(--serif); font-size: 46px; font-weight: 600; color: var(--brass-soft); }
.pm .l { font-size: 13px; color: var(--slate-light); margin-top: 4px; }
.logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 54px; opacity: .85; }
.logos span { font-family: var(--serif); font-size: 22px; font-weight: 600; color: rgba(255,255,255,.55); letter-spacing: .02em; transition: .3s; cursor: default; }
.logos span:hover { color: #fff; }
.tslider { position: relative; max-width: 780px; margin: 0 auto; }
.tslide { display: none; }
.tslide.active { display: block; animation: gi-fade .6s; }
.tquote { font-family: var(--serif); font-size: 23px; line-height: 1.5; color: #fff; text-align: center; }
.tmeta { text-align: center; margin-top: 24px; }
.tmeta .nm { font-weight: 700; font-size: 15px; color: var(--brass-soft); }
.tmeta .rl { font-size: 13px; color: var(--slate-light); }
.tmeta .res { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--teal-bright); background: rgba(21,163,152,.12); padding: 5px 14px; border-radius: 50px; }
.tdots { display: flex; justify-content: center; gap: 9px; margin-top: 30px; }
.tdot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.25); border: none; cursor: pointer; transition: .3s; padding: 0; }
.tdot.active { background: var(--brass); width: 26px; border-radius: 50px; }

/* ============ INSIGHTS ============ */
.insights { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.insight { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: .4s; cursor: pointer; }
.insight:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.insight .top { height: 140px; position: relative; overflow: hidden; }
.insight .top.a { background: linear-gradient(135deg,var(--ink-700),var(--teal-deep)); }
.insight .top.b { background: linear-gradient(135deg,var(--ink),var(--ink-600)); }
.insight .top.c { background: linear-gradient(135deg,var(--teal-deep),var(--brass)); }
.insight .top .grid2 { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 28px 28px; }
.insight .body { padding: 24px; }
.insight .cat { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-deep); font-weight: 600; }
.insight h4 { font-family: var(--serif); font-size: 19px; margin: 10px 0; line-height: 1.25; }
.insight .meta { font-size: 12.5px; color: var(--slate); }

/* ============ CTA BAND ============ */
.cta-band { background: linear-gradient(135deg,var(--ink),var(--ink-700)); color: #fff; border-radius: 24px; padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -120px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle,rgba(21,163,152,.25),transparent 70%); }
.cta-band h2 { font-size: clamp(30px,4vw,46px); position: relative; z-index: 1; color: #fff; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.78); max-width: 560px; margin: 18px auto 32px; position: relative; z-index: 1; }
.cta-band .hero-cta { justify-content: center; position: relative; z-index: 1; }
.cta-fine { font-size: 13px; color: var(--slate-light); margin-top: 24px; position: relative; z-index: 1; }

/* ============ FOOTER ============ */
footer, .site-footer { background: var(--ink-800) !important; color: #fff; padding: 70px 0 30px; }
.foot-grid, .site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-light); }
.foot-grid > div > p, .site-footer__grid > div > p { font-size: 14px; color: var(--slate-light); margin-top: 16px; max-width: 280px; }
.foot-col h5, .footer-heading { font-family: var(--sans); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.foot-col a, .footer-link { display: block; font-size: 14px; color: var(--slate-light); margin-bottom: 11px; transition: .25s; }
.foot-col a:hover, .footer-link:hover { color: var(--teal-bright); }
.foot-newsletter input { width: 100%; background: rgba(255,255,255,.06); border: 1px solid var(--line-light); border-radius: 10px; padding: 12px 14px; color: #fff; font-family: var(--sans); font-size: 14px; margin-bottom: 12px; }
.foot-newsletter input::placeholder { color: var(--slate-light); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 13px; color: var(--slate-light); flex-wrap: wrap; gap: 14px; }
.socials { display: flex; gap: 14px; }
.socials a { width: 34px; height: 34px; border: 1px solid var(--line-light); border-radius: 9px; display: grid; place-items: center; transition: .3s; }
.socials a:hover { border-color: var(--brass); background: rgba(200,162,75,.1); }
.socials svg { width: 16px; height: 16px; stroke: var(--slate-light); }
.socials a:hover svg { stroke: var(--brass-soft); }
.footer-tagline { font-size: 14px; color: var(--slate-light); margin-top: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid var(--line-light); border-radius: 9px; display: grid; place-items: center; transition: .3s; }
.footer-social a:hover { border-color: var(--brass); background: rgba(200,162,75,.1); }
.footer-social a svg { width: 16px; height: 16px; stroke: var(--slate-light); }
.footer-social a:hover svg { stroke: var(--brass-soft); }
.footer-newsletter-form { display: flex; gap: 8px; }
.footer-newsletter-input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid var(--line-light); border-radius: 10px; padding: 12px 14px; color: #fff; font-family: var(--sans); font-size: 14px; }
.footer-newsletter-input::placeholder { color: var(--slate-light); }
.footer-newsletter-btn { background: var(--teal); border: none; border-radius: 10px; padding: 0 16px; cursor: pointer; color: #fff; display: grid; place-items: center; transition: .3s; }
.footer-newsletter-btn:hover { background: var(--teal-bright); }
.footer-divider { padding-top: 26px; font-size: 13px; color: var(--slate-light); }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============ PLATFORM TEASER ============ */
.plat-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.plat-feats { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 30px; }
.plat-feats div { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,.86); }
.plat-feats svg { width: 20px; height: 20px; stroke: var(--teal-bright); flex: none; margin-top: 3px; }
.plat-feats b { color: #fff; }
.mock { background: #0c1d33; border: 1px solid var(--line-light); border-radius: 14px; overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,.6); }
.mock .chrome { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: rgba(255,255,255,.04); border-bottom: 1px solid var(--line-light); }
.mock .chrome i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.2); font-style: normal; }
.mock .chrome .url { margin-left: 12px; font-size: 10.5px; color: var(--slate-light); background: rgba(255,255,255,.05); padding: 3px 12px; border-radius: 50px; }
.mock .body { display: grid; grid-template-columns: 54px 1fr; min-height: 240px; }
.mock .msb { background: rgba(0,0,0,.2); padding: 14px 0; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.mock .msb span { width: 20px; height: 20px; border-radius: 6px; background: rgba(255,255,255,.08); }
.mock .msb span.on { background: var(--teal); }
.mock .mc { padding: 16px; }
.mock .mk { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-bottom: 12px; }
.mock .mk div { background: rgba(255,255,255,.04); border: 1px solid var(--line-light); border-radius: 9px; padding: 10px; }
.mock .mk .n { font-family: var(--serif); font-size: 19px; color: #fff; font-weight: 600; }
.mock .mk .l { font-size: 8.5px; color: var(--slate-light); margin-top: 2px; }
.mock .mbars { display: flex; align-items: flex-end; gap: 8px; height: 74px; padding: 8px 4px 0; }
.mock .mbars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg,var(--teal-bright),var(--teal-deep)); font-style: normal; }
.plat-badge { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brass-soft); background: rgba(200,162,75,.14); border: 1px solid rgba(200,162,75,.3); padding: 4px 11px; border-radius: 50px; margin-left: 10px; }

/* ============ FREE TOOLS ============ */
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 30px; }
.tool-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px; transition: .35s; display: flex; flex-direction: column; text-decoration: none; color: var(--ink); }
.tool-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--teal); }
.tool-card .ic { width: 50px; height: 50px; border-radius: 13px; background: var(--ink); display: grid; place-items: center; margin-bottom: 18px; }
.tool-card .ic svg { width: 25px; height: 25px; stroke: var(--teal-bright); }
.tool-card .tnum { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-deep); font-weight: 700; margin-bottom: 8px; }
.tool-card h3 { font-size: 22px; margin-bottom: 10px; }
.tool-card p { font-size: 14px; color: var(--slate); margin-bottom: 20px; flex: 1; }
.tool-card .meta { display: flex; gap: 16px; font-size: 12px; color: var(--slate-light); margin-bottom: 18px; }
.tool-card .meta span { display: flex; align-items: center; gap: 5px; }
.tool-card .launch { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--teal-deep); align-self: flex-start; transition: .3s; }
.tool-card:hover .launch { gap: 12px; }

/* ============ SECTION-LABEL COMPAT ============ */
.section-label { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-deep); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.section-label::before { content: ""; width: 26px; height: 1px; background: var(--brass); }
.text-gradient { background: linear-gradient(135deg, var(--teal), var(--brass-soft)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ============ ACCORDION COMPAT ============ */
.accordion { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--line); background: #fff; }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; background: #fff; font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink); text-align: left; cursor: pointer; transition: background .2s; border: none; }
.accordion-trigger:hover { background: var(--paper-2); }
.accordion-trigger svg { flex-shrink: 0; transition: transform .3s; }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content { display: none; }
.accordion-item.open .accordion-content { display: block; }
.accordion-content-inner { padding: 0 1.5rem 1.25rem; font-size: 14.5px; color: var(--slate); line-height: 1.7; }

/* ============ NL POPUP COMPAT ============ */
.nl-popup-overlay { display: none; position: fixed; inset: 0; background: rgba(10,26,47,.7); backdrop-filter: blur(4px); z-index: 9999; align-items: center; justify-content: center; }
.nl-popup-overlay.active { display: flex; }
.nl-popup { background: var(--ink); border: 1px solid var(--line-light); border-radius: 20px; padding: 40px; max-width: 480px; width: 90%; position: relative; }
.nl-popup__close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: var(--slate-light); cursor: pointer; font-size: 24px; line-height: 1; }
.nl-popup__header { text-align: center; margin-bottom: 24px; }
.nl-popup__icon { font-size: 32px; margin-bottom: 10px; }
.nl-popup__title { font-family: var(--sans); font-size: 18px; font-weight: 700; color: #fff; }
.nl-popup__subtitle { font-size: 13px; color: var(--brass-soft); margin-top: 4px; }
.nl-popup__body { background: transparent !important; padding: 0 !important; }
.nl-popup__desc { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.6; margin-bottom: 20px; }
.nl-popup__form { display: flex; flex-direction: column; gap: 10px; }
.nl-popup__input { background: rgba(255,255,255,.08); border: 1px solid var(--line-light); border-radius: 10px; padding: 12px 16px; color: #fff; font-family: var(--sans); font-size: 14px; }
.nl-popup__input::placeholder { color: var(--slate-light); }
.nl-popup__btn { background: var(--teal); color: #fff; border: none; border-radius: 10px; padding: 13px; font-family: var(--sans); font-weight: 700; font-size: 14px; cursor: pointer; transition: .3s; }
.nl-popup__btn:hover { background: var(--teal-bright); }
.nl-popup__msg { font-size: 13px; min-height: 18px; margin-top: 4px; }
.nl-popup__privacy { font-size: 12px; color: var(--slate-light); text-align: center; margin-top: 12px; }

/* ============ ICON BOX COMPAT ============ */
.icon-box { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box-sm { width: 2rem; height: 2rem; }
.icon-box-md { width: 2.5rem; height: 2.5rem; }
.icon-box-lg { width: 3rem; height: 3rem; }
.icon-box-accent { background: rgba(21,163,152,.1); }
.icon-box-destructive { background: rgba(194,74,62,.1); }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.badge-accent { background: rgba(21,163,152,.12); color: var(--teal-deep); border: 1px solid rgba(21,163,152,.25); }

/* ============ RESPONSIVE ============ */
@media (max-width: 920px) {
  .hero-grid, .cap-layout, .mat-panel, .dash, .founder, .aca-grid, .sched, .plat-grid, .tools-grid { grid-template-columns: 1fr; }
  .mat-side { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 28px; }
  .foot-grid, .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .tlod, .tiers, .insights, .proof-metrics { grid-template-columns: 1fr; }
  .navlinks, .site-header__nav { display: none; }
  .hamburger, .menu-toggle { display: block; }
  .gauge-panel { margin-top: 36px; }
}
@media (max-width: 560px) {
  .hero-kpis, .creds, .deliv { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 26px; }
  .foot-grid, .site-footer__grid { grid-template-columns: 1fr; }
  .mat-track { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 120px 0 60px; }
  .sec { padding: 60px 0; }
  .wrap { padding: 0 20px; }
}
