/* ============================================================
   rAIdar Founder Cockpit — Veritus aesthetic
   Deep teal · editorial serif · restrained · document-like
   ============================================================ */

:root {
  /* Type — calmer scale than before */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.79rem + 0.2vw, 0.9375rem);
  --text-base: 1rem;
  --text-md: 1.0625rem;
  --text-lg: clamp(1.125rem, 1.05rem + 0.3vw, 1.3125rem);
  --text-xl: clamp(1.375rem, 1.2rem + 0.6vw, 1.75rem);
  --text-2xl: clamp(1.875rem, 1.5rem + 1.2vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 1.6rem + 2.5vw, 3.5rem);

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Veritus palette — deep teal + cream */
  --teal-900: #0c2e2c;
  --teal-800: #0d3a3a;
  --teal-700: #134e48;
  --teal-600: #1d6b62;
  --teal-500: #2d8a7e;
  --teal-300: #7fb8ae;
  --teal-100: #d3e4e0;

  --cream: #f7f4ec;
  --cream-2: #f3efe4;
  --paper: #ffffff;
  --rule: #e3ddcf;
  --rule-soft: #efeadd;

  --ink: #1c2a28;
  --ink-2: #3a4946;
  --ink-muted: #5b6b67;
  --ink-faint: #8a9692;

  --r: #b1442f;     /* muted brick red — needs attention */
  --y: #c08a2e;     /* muted ochre — worth watching */
  --g: #4a7f4f;     /* muted forest — all clear */

  --accent: var(--teal-700);
  --accent-soft: rgba(19, 78, 72, 0.08);

  --radius: 6px;
  --radius-sm: 3px;
  --shadow-soft: 0 1px 3px rgba(12, 46, 44, 0.06);

  --font-display: 'Source Serif 4', 'Source Serif Pro', 'Georgia', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
}

/* base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
  min-height: 100dvh;
}
a { color: var(--teal-700); text-decoration: none; border-bottom: 1px solid rgba(19, 78, 72, 0.25); transition: border-color .15s, color .15s; }
a:hover { color: var(--teal-900); border-bottom-color: var(--teal-700); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
}
h1 { line-height: 1.05; }
h2, h3 { line-height: 1.15; }

/* ============================================================
   HEADER
   ============================================================ */
.hud {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.hud__inner {
  max-width: 1180px; margin: 0 auto;
  padding: var(--s-3) var(--s-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
}
@media (min-width: 920px) {
  .hud__inner { padding: var(--s-4) var(--s-6); }
}
.logo {
  display: inline-flex; align-items: center; gap: var(--s-3);
  color: var(--teal-800);
  border-bottom: 0;
}
.logo svg { color: var(--teal-700); width: 26px; height: 26px; }
.logo__word {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.25rem; letter-spacing: -0.01em;
  color: var(--teal-900);
}
.logo__word em {
  font-style: normal;
  color: var(--teal-700);
  font-weight: 700;
}
.logo__sub {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-faint);
  font-weight: 500;
  border-left: 1px solid var(--rule); padding-left: var(--s-3);
  margin-left: var(--s-2);
  text-transform: uppercase;
  display: none;
}
@media (min-width: 600px) { .logo__sub { display: inline; } }

.hud nav {
  display: none;
  flex: 1;
  justify-content: center; gap: var(--s-4);
  font-size: 13px;
}
.hud nav a {
  color: var(--ink-2);
  border-bottom: 0;
  padding: 4px 2px;
}
.hud nav a:hover { color: var(--teal-900); }
@media (min-width: 1024px) { .hud nav { display: flex; } }

/* Mobile menu button */
.menu-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 6px;
  color: var(--teal-800);
  border: 1px solid var(--rule);
  background: var(--paper);
}
.menu-btn:hover { border-color: var(--teal-700); color: var(--teal-900); }
@media (min-width: 1024px) { .menu-btn { display: none; } }

/* Mobile menu panel */
.menu-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--paper);
  border-left: 1px solid var(--rule);
  z-index: 60;
  transform: translateX(100%);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 32px rgba(12, 46, 44, 0.12);
}
.menu-panel.is-open { transform: translateX(0); }
.menu-panel header {
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
}
.menu-panel__title {
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--ink-faint); text-transform: uppercase;
}
.menu-panel nav { display: flex; flex-direction: column; padding: var(--s-2) 0; }
.menu-panel nav a {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  color: var(--teal-900);
  border-bottom: 0;
  letter-spacing: -0.005em;
  border-left: 3px solid transparent;
}
.menu-panel nav a span {
  font-family: var(--font-mono); font-size: 11px; color: var(--teal-700); font-weight: 500;
  letter-spacing: 0.04em;
  width: 22px;
}
.menu-panel nav a:hover, .menu-panel nav a:focus-visible {
  background: var(--cream); border-left-color: var(--teal-700);
  outline: 0;
}
.menu-panel footer {
  margin-top: auto;
  padding: var(--s-4) var(--s-5);
  border-top: 1px solid var(--rule);
  font-size: 11px; color: var(--ink-faint);
}
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(12, 46, 44, 0.4);
  z-index: 55;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }
body.menu-locked { overflow: hidden; }

/* Back-to-top floating button */
.to-top {
  position: fixed;
  bottom: 18px; right: 18px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal-800);
  color: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--teal-700);
  box-shadow: 0 6px 24px rgba(12, 46, 44, 0.25);
  z-index: 40;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--teal-900); }

.hud__status {
  display: none; align-items: center; gap: var(--s-2);
  font-size: 12px;
  color: var(--ink-muted);
}
.status-label { letter-spacing: 0.02em; }
@media (min-width: 1024px) { .hud__status { display: inline-flex; } }

/* ============================================================
   STATUS DOTS — quiet, no glow
   ============================================================ */
.dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-faint); flex-shrink: 0;
  vertical-align: middle;
}
.dot--r { background: var(--r); }
.dot--y { background: var(--y); }
.dot--g { background: var(--g); }
.dot--a { background: var(--teal-700); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section {
  padding: clamp(var(--s-10), 6vw, var(--s-20)) var(--s-5);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 720px) { .section { padding-left: var(--s-6); padding-right: var(--s-6); } }
.section--alt { background: var(--cream-2); }
.section--hero {
  padding-top: clamp(var(--s-8), 5vw, var(--s-16));
  padding-bottom: clamp(var(--s-10), 6vw, var(--s-20));
}

.section__head {
  max-width: 1180px; margin: 0 auto var(--s-8);
}
@media (min-width: 720px) { .section__head { margin-bottom: var(--s-10); } }
.section__head h2 {
  font-size: var(--text-2xl);
  text-wrap: balance;
  max-width: 22ch;
  color: var(--teal-900);
}
.section__sub {
  margin-top: var(--s-3);
  color: var(--ink-muted);
  max-width: 64ch;
  font-size: var(--text-md);
  line-height: 1.55;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-body); font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--teal-700);
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.eyebrow .dot { width: 6px; height: 6px; }

/* ============================================================
   HERO
   ============================================================ */
.section--hero .grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  align-items: start;
}
@media (min-width: 1080px) {
  .section--hero .grid { grid-template-columns: 1fr 1.05fr; gap: var(--s-16); align-items: center; }
}
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.05;
  color: var(--teal-900);
  margin-top: var(--s-3);
}
.hero__sub {
  margin-top: var(--s-5);
  font-size: var(--text-md);
  color: var(--ink-2);
  max-width: 52ch;
  line-height: 1.55;
}
.vitals {
  margin-top: var(--s-8);
  border-top: 1px solid var(--rule);
  padding-top: var(--s-6);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5) var(--s-6);
}
.vital {
  border: 0;
  padding: 0;
  background: transparent;
}
.vital__k {
  display: block;
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--ink-faint); text-transform: uppercase;
}
.vital__v {
  display: block; margin-top: var(--s-1);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--teal-900);
  letter-spacing: -0.005em;
}

/* ============================================================
   RADAR CARD — soft white inside cream
   ============================================================ */
.radar {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.radar__head {
  background: var(--teal-800);
  color: #f1ebde;
  padding: var(--s-4) var(--s-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
  flex-wrap: wrap;
}
.radar__title {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 600;
  color: #f7f4ec;
  letter-spacing: -0.005em;
}
.radar__sub {
  font-size: 12px;
  color: var(--teal-300);
  margin-top: 2px;
}
.radar__pill {
  background: rgba(255,255,255,0.08);
  color: #d3e4e0;
  font-size: 11px; letter-spacing: 0.04em;
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  font-weight: 500;
}
.radar__legend {
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  padding: var(--s-3) var(--s-5);
  font-size: 12px; color: var(--ink-muted);
  border-bottom: 1px solid var(--rule-soft);
}
.radar__legend span { display: inline-flex; align-items: center; gap: 6px; }

.radar__cards {
  padding: var(--s-4);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 540px) { .radar__cards { grid-template-columns: 1fr 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: var(--s-3) var(--s-4);
  border-left: 2px solid var(--ink-faint);
}
.card--r { border-left-color: var(--r); }
.card--y { border-left-color: var(--y); }
.card--g { border-left-color: var(--g); }
.card header {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--ink-muted); margin-bottom: 4px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.card ul { font-size: 12.5px; }
.card li {
  display: flex; align-items: center; gap: 8px;
  padding: 2px 0; color: var(--ink-2);
}

.radar__cta {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: var(--s-4);
}
.radar__ctahead {
  font-size: 10px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--ink-muted); text-transform: uppercase;
}
.radar__ctatitle {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px;
  color: var(--ink); margin: 6px 0 var(--s-3);
}
.modes { display: flex; flex-direction: column; gap: var(--s-2); }
.modes button {
  display: grid; grid-template-columns: 24px 1fr; gap: var(--s-3);
  align-items: start; padding: var(--s-3) var(--s-4);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  text-align: left;
  width: 100%;
  transition: border-color .15s, background .15s;
}
.modes button:hover { border-color: var(--teal-700); background: var(--teal-100); }
.modes button > span:first-child { font-size: 16px; line-height: 1.2; opacity: 0.85; }
.modes__txt { display: block; min-width: 0; }
.modes button b {
  display: block; font-family: var(--font-display); font-size: 13.5px;
  color: var(--ink); font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.modes button i {
  font-style: normal; display: block; font-size: 12px;
  color: var(--ink-muted); margin-top: 3px;
  line-height: 1.4;
}

/* ============================================================
   THESIS GRID — quiet cards on cream
   ============================================================ */
.thesis-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (min-width: 720px) { .thesis-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .thesis-grid { grid-template-columns: repeat(3, 1fr); } }

.tcell {
  background: transparent;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-6);
  transition: background .15s;
}
.tcell:hover { background: rgba(19, 78, 72, 0.03); }
.tk {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--teal-700); text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.tcell p { color: var(--ink-2); font-size: var(--text-sm); line-height: 1.55; }
.tcell a { color: var(--teal-700); border-bottom: 1px solid rgba(19, 78, 72, 0.3); }
.tcell b { color: var(--ink); font-weight: 600; }

/* ============================================================
   GTM TIERS
   ============================================================ */
.tier-grid {
  max-width: 1180px; margin: 0 auto var(--s-12);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 980px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }

.tier {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-6);
  display: flex; flex-direction: column;
  border-top: 2px solid var(--ink-faint);
}
.tier--feature {
  border-top-color: var(--teal-700);
  background: var(--paper);
}
.tier__tag {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--ink-muted); text-transform: uppercase;
}
.tier__price {
  margin-top: var(--s-2);
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-xl); color: var(--teal-900);
  letter-spacing: -0.01em; line-height: 1.1;
}
.tier__price span { font-size: 13px; color: var(--ink-muted); font-weight: 400; font-family: var(--font-body); }
.tier__who { color: var(--ink-muted); font-size: var(--text-sm); margin: var(--s-3) 0; line-height: 1.5; }
.tier ul { margin: var(--s-3) 0; padding-left: 0; flex: 1; }
.tier li {
  position: relative; padding: 5px 0 5px 18px;
  font-size: var(--text-sm); color: var(--ink);
  line-height: 1.5;
}
.tier li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 1px; background: var(--teal-700);
}
.tier__hook {
  margin-top: var(--s-4); padding: var(--s-3) var(--s-4);
  background: var(--cream);
  border-left: 2px solid var(--teal-700);
  font-size: 12.5px; color: var(--ink-2);
  border-radius: 0 3px 3px 0;
  line-height: 1.5;
}

.channels {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (min-width: 720px) { .channels { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .channels { grid-template-columns: repeat(4, 1fr); } }
.ch {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-5);
  background: transparent;
}
.ch__k {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--teal-700); text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.ch p { color: var(--ink-2); font-size: var(--text-sm); line-height: 1.55; }
.ch b { color: var(--ink); font-weight: 600; }

/* ============================================================
   CAPITAL TABLE
   ============================================================ */
.cap-table-wrap { max-width: 1180px; margin: 0 auto; }
.cap-table {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cap-table table {
  width: 100%; min-width: 880px;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.cap-table th, .cap-table td {
  padding: var(--s-3) var(--s-4);
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rule-soft);
  line-height: 1.5;
}
.cap-table th {
  font-size: 11px; letter-spacing: 0.12em; font-weight: 600;
  color: var(--ink-muted);
  text-transform: uppercase;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.cap-table tr:last-child td { border-bottom: 0; }
.cap-table tr:hover td { background: var(--cream); }
.cap-table a { color: var(--teal-700); border-bottom: 1px solid rgba(19, 78, 72, 0.25); }
.cap-table b { color: var(--ink); font-weight: 600; }
.cap-hint {
  display: none;
  font-size: 11px; color: var(--ink-faint);
  text-align: center;
  margin-top: var(--s-2);
}
@media (max-width: 880px) { .cap-hint { display: block; } }

/* ============================================================
   SCENARIOS
   ============================================================ */
.scenarios { max-width: 1180px; margin: 0 auto; }
.sc-tabs {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-bottom: var(--s-6);
  border-bottom: 1px solid var(--rule);
}
.sc-tab {
  padding: var(--s-3) var(--s-5);
  font-size: 13px; font-weight: 500;
  color: var(--ink-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.sc-tab:hover { color: var(--teal-900); }
.sc-tab.is-active {
  color: var(--teal-900);
  border-bottom-color: var(--teal-700);
}
.sc-panel.is-hidden { display: none; }
.sc-panel {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-6);
}
.sc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5) var(--s-6);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 720px) { .sc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .sc-grid { grid-template-columns: repeat(6, 1fr); } }
.sc-stat { padding: 0; background: transparent; border: 0; }
.sc-stat span {
  display: block;
  font-size: 11px; letter-spacing: 0.12em; font-weight: 600;
  color: var(--ink-faint); text-transform: uppercase;
}
.sc-stat b {
  display: block; margin-top: var(--s-1);
  font-family: var(--font-display); font-weight: 600;
  font-size: var(--text-md); color: var(--teal-900);
  letter-spacing: -0.005em;
}
.sc-stat b.warn { color: var(--y); }
.sc-stat b.ok { color: var(--g); }
.sc-note {
  color: var(--ink-2); font-size: var(--text-sm);
  max-width: 80ch; line-height: 1.6;
}
.sc-note b { color: var(--ink); font-weight: 600; }

/* ============================================================
   90-DAY CALENDAR
   ============================================================ */
.cal-filters {
  max-width: 1180px; margin: 0 auto var(--s-5);
  display: flex; flex-wrap: wrap; gap: 0;
  border-bottom: 1px solid var(--rule);
}
.chip {
  padding: 8px 14px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s, border-color .15s;
}
.chip:hover { color: var(--teal-900); }
.chip.is-active { color: var(--teal-900); border-bottom-color: var(--teal-700); }

.cal {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (min-width: 800px) { .cal { grid-template-columns: 1fr 1fr; } }
.cal li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: transparent;
  transition: background .15s;
}
.cal li:hover { background: rgba(19, 78, 72, 0.03); }
.cal li.is-hidden { display: none; }
.cal__w {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  color: var(--teal-700);
  align-self: start; padding-top: 2px;
}
.cal h4 {
  font-family: var(--font-display); font-size: var(--text-md); font-weight: 600;
  color: var(--ink); margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.cal p { color: var(--ink-muted); font-size: var(--text-sm); line-height: 1.5; }

.cal li[data-track="product"]  .cal__w { color: var(--teal-700); }
.cal li[data-track="sales"]    .cal__w { color: #8a5a1a; }
.cal li[data-track="capital"]  .cal__w { color: #5b4794; }
.cal li[data-track="brand"]    .cal__w { color: #a04a78; }

/* ============================================================
   AD CREATIVE LAB
   ============================================================ */
.ad-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
@media (min-width: 720px) { .ad-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .ad-grid { grid-template-columns: repeat(3, 1fr); } }

.ad {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
  border-top: 2px solid var(--teal-700);
}
.ad--coach { border-top-color: var(--ink-2); }
.ad__tag {
  font-size: 10px; letter-spacing: 0.16em; font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.ad__tag--coach { color: var(--ink-2); }
.ad__hook {
  font-family: var(--font-display); font-size: var(--text-md); font-weight: 600;
  color: var(--teal-900); line-height: 1.3;
  letter-spacing: -0.005em;
}
.ad__visual {
  font-family: var(--font-mono); font-size: 11px; line-height: 1.5;
  color: var(--ink-muted);
  background: var(--cream);
  padding: var(--s-3);
  border-radius: 3px;
  border: 1px solid var(--rule-soft);
}
.ad__copy { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.55; }
.ad__cta {
  margin-top: auto;
  align-self: flex-start;
  padding: 7px 14px;
  background: var(--teal-800); color: var(--cream);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  border: 0;
}
.ad-foot {
  max-width: 980px; margin: var(--s-8) auto 0;
  font-size: var(--text-sm);
  color: var(--ink-muted);
  border-top: 1px solid var(--rule);
  padding-top: var(--s-5);
  line-height: 1.6;
}

/* ============================================================
   IMPACT
   ============================================================ */
.verdict {
  max-width: 1180px; margin: 0 auto var(--s-10);
  display: grid; grid-template-columns: 1fr; gap: var(--s-4);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--teal-700);
  border-radius: var(--radius);
  padding: var(--s-6);
}
@media (min-width: 720px) { .verdict { grid-template-columns: 180px 1fr; gap: var(--s-6); } }
.verdict__k {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--teal-700); text-transform: uppercase;
}
.verdict__v { color: var(--ink); font-size: var(--text-md); line-height: 1.55; }
.verdict__v b { color: var(--teal-900); font-weight: 600; }
.verdict__v a { color: var(--teal-700); }

.impact-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: var(--s-4);
}
@media (min-width: 980px) { .impact-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); } }

.ic {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-6);
}
.ic h4 {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600;
  color: var(--teal-900); margin-bottom: var(--s-4);
  letter-spacing: -0.005em;
}
.ic__src {
  margin-top: var(--s-4); font-size: 11px;
  color: var(--ink-faint);
}
.ic__src a { color: var(--teal-700); }

.check { display: grid; gap: 0; }
.check li {
  display: grid; grid-template-columns: 22px 1fr; gap: var(--s-3); align-items: start;
  font-size: var(--text-sm); color: var(--ink-2);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--rule-soft);
  line-height: 1.5;
}
.check li:last-child { border-bottom: 0; }
.check li i {
  width: 16px; height: 16px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal; font-size: 11px;
  background: var(--paper);
  margin-top: 2px;
  color: var(--g);
}
.check--interactive li { cursor: pointer; transition: color .15s; }
.check--interactive li:hover { color: var(--teal-900); }
.check--interactive li.is-checked {
  color: var(--ink-faint);
  text-decoration: line-through;
}
.check--interactive li.is-checked i {
  background: var(--teal-700); border-color: var(--teal-700); color: var(--cream);
}
.check--interactive li.is-checked i::before { content: '✓'; }
.check__progress {
  margin-top: var(--s-5);
  display: flex; align-items: center; gap: var(--s-3);
}
.check__bar {
  flex: 1; height: 4px; background: var(--rule-soft); border-radius: 999px; overflow: hidden;
}
.check__bar span {
  display: block; height: 100%;
  background: var(--teal-700);
  width: 0; transition: width .3s ease-out;
}
.check__pct {
  font-size: 11px; color: var(--ink-muted); letter-spacing: 0.04em; font-weight: 500;
}

.impact-list { padding-left: 0; counter-reset: imp; }
.impact-list li {
  position: relative;
  padding: var(--s-3) 0 var(--s-3) var(--s-8);
  font-size: var(--text-sm);
  color: var(--ink-2);
  counter-increment: imp;
  border-bottom: 1px solid var(--rule-soft);
  line-height: 1.5;
}
.impact-list li:last-child { border-bottom: 0; }
.impact-list li::before {
  content: counter(imp, decimal-leading-zero);
  position: absolute; left: 0; top: var(--s-3);
  font-family: var(--font-mono); font-size: 11px;
  color: var(--teal-700); letter-spacing: 0.04em;
}
.impact-list li b { color: var(--ink); font-weight: 600; }

.stage {
  border-left: 2px solid var(--teal-300);
  padding: var(--s-2) 0 var(--s-2) var(--s-4);
  margin-bottom: var(--s-4);
}
.stage > div {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--ink-muted); text-transform: uppercase;
  margin-bottom: 4px;
}
.stage > div b { color: var(--teal-900); }
.stage p { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.55; }
.stage p i { color: var(--ink-muted); }

/* ============================================================
   RESEARCH
   ============================================================ */
.research {
  max-width: 1180px; margin: 0 auto var(--s-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (min-width: 720px) { .research { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .research { grid-template-columns: repeat(4, 1fr); } }

.r-day {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-5);
  background: transparent;
}
.r-day__h {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--teal-700); text-transform: uppercase;
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--rule);
}
.r-day ol {
  font-size: var(--text-sm); color: var(--ink-2);
  display: grid; gap: var(--s-3);
  counter-reset: r;
  padding-left: 0;
  line-height: 1.55;
}
.r-day ol li {
  counter-increment: r;
  position: relative; padding-left: var(--s-6);
}
.r-day ol li::before {
  content: counter(r);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: var(--teal-700);
  width: 16px; height: 16px;
  border-radius: 999px; border: 1px solid var(--teal-300);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
  background: var(--paper);
}
.r-day ol b { color: var(--ink); font-weight: 600; }

.r-extras {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 900px) { .r-extras { grid-template-columns: 1fr 1fr; } }
.r-template {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--s-5);
}
.r-template__h {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--teal-700); text-transform: uppercase;
  border-bottom: 1px solid var(--rule); padding-bottom: var(--s-2);
  margin-bottom: var(--s-3);
}
.r-template pre {
  white-space: pre-wrap;
  font-family: var(--font-mono); font-size: 12px; line-height: 1.6;
  color: var(--ink); background: var(--cream);
  border-radius: 3px; padding: var(--s-4);
  border: 1px solid var(--rule-soft);
}
.r-outline { display: grid; gap: var(--s-2); padding-left: 0; counter-reset: o; }
.r-outline li {
  counter-increment: o;
  font-size: var(--text-sm); color: var(--ink-2);
  padding-left: var(--s-6); position: relative;
  line-height: 1.55;
}
.r-outline li::before {
  content: counter(o);
  position: absolute; left: 0; top: 1px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-muted);
  width: 16px; height: 16px;
  border-radius: 999px; border: 1px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--teal-800);
  color: #d3e4e0;
  padding: var(--s-12) var(--s-6) var(--s-6);
}
.foot__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-8);
}
@media (min-width: 800px) { .foot__inner { grid-template-columns: 1fr 1.6fr; gap: var(--s-12); } }
.foot__logo {
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.foot__logo em { font-style: normal; color: var(--teal-300); font-weight: 700; }
.foot__tag {
  color: var(--teal-300); font-size: var(--text-sm); margin-top: var(--s-2);
  max-width: 38ch; line-height: 1.55;
}
.foot__cols { display: grid; grid-template-columns: 1fr; gap: var(--s-6); }
@media (min-width: 600px) { .foot__cols { grid-template-columns: 1fr 1fr; gap: var(--s-8); } }
.foot__h {
  font-size: 11px; letter-spacing: 0.14em; font-weight: 600;
  color: var(--teal-300); text-transform: uppercase; margin-bottom: var(--s-3);
}
.foot__cols ul { display: grid; gap: 4px; }
.foot__cols li { font-size: var(--text-sm); color: #c4d6d2; line-height: 1.55; }
.foot__cols a {
  color: #c4d6d2;
  border-bottom: 1px solid rgba(212, 224, 220, 0.15);
}
.foot__cols a:hover { color: var(--cream); border-bottom-color: var(--teal-300); }
.foot__bar {
  max-width: 1180px; margin: var(--s-8) auto 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s-4);
  font-size: 11px; color: var(--teal-300); letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.55;
}

/* ============================================================
   MOTION & A11Y
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
:focus-visible { outline: 2px solid var(--teal-700); outline-offset: 2px; border-radius: 3px; }
