
:root {
  --bg: #02050c;
  --surface-0: #02050c;
  --surface-1: #080f1c;
  --surface-2: #0e1a2e;
  --ink: #f8fbff;
  --muted: #9aa9bd;
  --soft: #dce8f6;
  --line: rgba(151, 195, 235, .18);
  --line-strong: rgba(151, 195, 235, .32);
  --panel: rgba(8, 17, 31, .82);
  --panel-strong: #0a1425;
  --cyan: #00bbf2;
  --blue: #19459d;
  --mint: #4de4a6;
  --gold: #ffcc66;
  --danger: #ff6b8a;

  --cat-strategy: #00bbf2;
  --cat-content: #c9a6ff;
  --cat-retention: #ffcc66;
  --cat-revenue: #4de4a6;
  --cat-health: #5eead4;
  --cat-operations: #9fb4d9;

  --font-display: "Syne", Manrope, ui-sans-serif, system-ui, sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --space-section: clamp(96px, 11vw, 152px);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 12px 32px rgba(0,0,0,.28);
  --shadow-md: 0 18px 64px rgba(0,0,0,.28);
  --shadow-lg: 0 30px 110px rgba(0,0,0,.45);
  --shadow: var(--shadow-lg);

  --ease: cubic-bezier(.2,.7,.2,1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-reveal: 380ms;

  --focus-ring: 0 0 0 3px rgba(0,187,242,.32), 0 0 0 1px var(--cyan);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  background:
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(255,255,255,.022) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(circle at 16% 6%, rgba(0,187,242,.20), transparent 28rem),
    radial-gradient(circle at 76% 2%, rgba(77,228,166,.10), transparent 26rem),
    linear-gradient(180deg, #02050c 0%, #06101f 44%, #02050c 100%);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.05), transparent);
  opacity: .45;
  mix-blend-mode: screen;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; }
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--cyan);
  color: #03101a;
  font-weight: 900;
  text-decoration: none;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-sm); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity var(--dur-reveal) var(--ease), transform var(--dur-reveal) var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(2, 5, 12, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; min-width: max-content; }
.brand img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 18px rgba(0,187,242,.28)); }
.brand span { font-family: var(--font-display); font-weight: 800; letter-spacing: .02em; }
.brand em { color: var(--cyan); font-style: normal; }
.main-nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; }
.main-nav a, .nav-cta, .button { text-decoration: none; }
.main-nav a { position: relative; padding: 6px 2px; transition: color var(--dur-fast) var(--ease); }
.main-nav a.active, .main-nav a:hover { color: var(--ink); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -6px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(0,187,242,.6);
}
.nav-cta {
  color: #03101a;
  background: var(--cyan);
  padding: 10px 15px;
  border-radius: 7px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(0,187,242,.22);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 34px rgba(0,187,242,.36); }
.nav-cta-mobile { display: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease); }
.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); }
main { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.second-brain-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(420px, .52fr) minmax(0, 1.48fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  width: min(1540px, calc(100vw - 40px));
  margin-left: 50%;
  transform: translateX(-50%);
  padding: clamp(28px, 5vw, 54px);
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.second-brain-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(126,202,255,.055) 1px, transparent 1px) 0 0 / 62px 62px,
    linear-gradient(180deg, rgba(126,202,255,.045) 1px, transparent 1px) 0 0 / 62px 62px,
    radial-gradient(circle at 12% 18%, rgba(0,187,242,.16), transparent 34%),
    linear-gradient(180deg, #030611, #050b17 58%, #02040a);
}
.second-brain-copy { position: relative; z-index: 2; }
.second-brain-copy h1 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(40px, 4.6vw, 68px);
  line-height: 1.04;
  padding-bottom: .12em;
  text-align: left;
}
.second-brain-copy h1 span {
  color: #94f1ff;
  text-shadow: 0 0 34px rgba(0,187,242,.34);
}
.second-brain-copy .lead {
  max-width: 520px;
  font-size: clamp(17px, 1.3vw, 20px);
  margin: 20px 0 0;
}
.second-brain-copy .button-row { justify-content: flex-start; }
.risk-reversal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--mint);
  font-size: 14px;
  font-weight: 800;
}
.risk-reversal::before { content: "\2713"; display: inline-flex; }
.second-brain-visual { position: relative; z-index: 2; min-width: 0; }
.browser-frame {
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #06101f;
  box-shadow: var(--shadow-lg);
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border-bottom: 1px solid var(--line);
}
.browser-chrome .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #ff6b6b; }
.dot-amber { background: var(--gold); }
.dot-green { background: var(--mint); }
.browser-url {
  margin-left: 8px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.browser-body .command-graphic { border: none; box-shadow: none; border-radius: 0; min-height: 560px; }
.second-brain-proof {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 16px;
}
.memory-core-card, .agent-context-card {
  border: 1px solid rgba(151,195,235,.18);
  background: rgba(8,17,31,.74);
  backdrop-filter: blur(18px);
  border-radius: 8px;
  box-shadow: 0 18px 70px rgba(0,0,0,.32);
  padding: 18px;
}
.memory-core-card h2, .agent-context-card h2 {
  font-size: 18px;
  margin-bottom: 14px;
  padding-bottom: 0;
}
.memory-meter { display: grid; gap: 11px; }
.memory-meter div {
  position: relative;
  overflow: hidden;
  min-height: 58px;
  border: 1px solid rgba(151,195,235,.14);
  background: rgba(255,255,255,.045);
  border-radius: 8px;
  padding: 11px 13px;
}
.memory-meter div::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: var(--w);
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  box-shadow: 0 0 16px rgba(0,187,242,.55);
}
.memory-meter strong, .context-agent-grid strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
}
.memory-meter span, .context-agent-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  margin-top: 3px;
}
.context-agent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.context-agent-grid div {
  min-height: 112px;
  border: 1px solid rgba(151,195,235,.14);
  background: linear-gradient(180deg, rgba(0,187,242,.08), rgba(255,255,255,.035));
  border-radius: 8px;
  padding: 12px;
}
.context-agent-grid b {
  display: inline-flex;
  margin-top: 10px;
  color: #03101a;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 9px;
}
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 72px 0 48px;
}
.hero-copy, .page-hero { max-width: 960px; }
.hero-centered .lead { margin-left: auto; margin-right: auto; }
.hero .button-row { justify-content: center; }
.hero-visual-wrap { width: min(980px, 100%); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: -.01em; overflow: visible; }
h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 800;
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: .14em;
}
h2 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 48px); font-weight: 800; padding-bottom: .12em; }
h3 { font-family: var(--font-display); font-size: 22px; line-height: 1.3; font-weight: 700; padding-bottom: .15em; }
.lead {
  color: var(--soft);
  font-size: 21px;
  max-width: 860px;
  margin: 24px 0 0;
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 148px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.button.primary { background: var(--cyan); color: #03101a; box-shadow: 0 16px 46px rgba(0,187,242,.22); }
.button.primary:hover { transform: translateY(-2px); box-shadow: 0 20px 54px rgba(0,187,242,.34); }
.button.secondary { border-color: var(--line); background: rgba(255,255,255,.045); color: var(--ink); }
.button.secondary:hover { border-color: var(--line-strong); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.button.ghost { border-color: transparent; background: transparent; color: var(--soft); min-width: auto; padding: 14px 6px; }
.button.ghost:hover { color: var(--cyan); }
.button:active { transform: translateY(0); }
.intro-band {
  width: min(980px, 100%);
  margin: 0 auto 28px;
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.intro-band p { margin: 0; color: var(--soft); font-size: 18px; }
.command-graphic {
  text-align: left;
  border: 1px solid var(--line);
  background: #061624;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 162px minmax(0, 1fr);
  min-height: 620px;
  min-width: 0;
}
.command-sidebar {
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0,187,242,.10), rgba(2,5,12,.88));
  padding: 14px 12px;
  min-width: 0;
}
.sidebar-brand { display:flex; align-items:center; gap:8px; margin-bottom: 14px; }
.sidebar-brand img { width: 34px; height: 34px; object-fit: contain; }
.sidebar-brand strong { display:block; font-size: 12px; line-height: 1.05; }
.sidebar-brand em { color: var(--cyan); font-style: normal; }
.trainer-pill {
  display:flex;
  align-items:center;
  gap: 8px;
  border: 1px solid rgba(123,202,255,.22);
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 10px 8px;
  margin-bottom: 14px;
}
.trainer-pill > span {
  display:grid;
  place-items:center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #03101a;
  background: var(--cyan);
  font-weight: 900;
  font-size: 11px;
}
.trainer-pill strong, .trainer-pill small { display:block; line-height: 1.12; }
.trainer-pill strong { font-size: 10px; }
.trainer-pill small { color: var(--mint); font-size: 9px; margin-top: 3px; }
.command-sidebar nav {
  display: grid;
  align-content: start;
  gap: 6px;
}
.command-sidebar nav span {
  color: var(--soft);
  border: 1px solid transparent;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.command-sidebar nav span.active { color: var(--ink); border-color: rgba(0,187,242,.36); background: rgba(0,187,242,.10); }
.command-sidebar nav small {
  color: rgba(154,169,189,.68);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 8px 0 1px;
}
.command-workspace { min-width: 0; padding: 12px 14px 14px; background: #07111f; }
.morning-bar {
  display:flex;
  align-items:center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid rgba(123,202,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  padding: 8px 16px;
  margin-bottom: 14px;
  font-size: 10px;
}
.morning-bar span { color: var(--muted); }
.morning-brief {
  display:grid;
  grid-template-columns: minmax(0, 1fr) 325px;
  gap: 18px;
  border: 1px solid rgba(0,187,242,.26);
  background: radial-gradient(circle at 70% 0%, rgba(0,187,242,.18), rgba(19,31,50,.72) 48%, rgba(7,17,31,.86));
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 14px;
}
.morning-brief strong { display:block; font-size: 26px; line-height: 1.12; margin-bottom: 8px; }
.morning-brief span, .morning-brief p { color: var(--soft); }
.morning-brief p { margin: 6px 0 12px; font-size: 11px; line-height: 1.45; }
.morning-brief article {
  border: 1px solid rgba(123,202,255,.16);
  background: rgba(6, 14, 27, .74);
  border-radius: 8px;
  padding: 14px;
}
.morning-brief article small { color: var(--ink); font-weight: 900; }
.brief-tags, .read-stats, .prompt-chips { display:flex; flex-wrap: wrap; gap: 6px; }
.brief-tags b {
  color: #03101a;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 9px;
}
.read-stats span {
  flex: 1 1 0;
  border: 1px solid rgba(123,202,255,.18);
  border-radius: 8px;
  padding: 8px;
  font-size: 9px;
}
.read-stats b { display:block; color: var(--ink); font-size: 16px; line-height: 1; margin-bottom: 3px; }
.command-grid { display:grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .95fr); gap: 14px; }
.dashboard-card {
  border: 1px solid rgba(123,202,255,.18);
  background: linear-gradient(180deg, rgba(20,34,54,.88), rgba(8,17,31,.92));
  border-radius: 8px;
  padding: 16px;
  min-width: 0;
}
.dashboard-card-title { margin: 0 0 12px; font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.mini-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.mini-grid article, .recommendations-card article, .priority-card article, .coach-ready, .chat-box, .readiness-card div {
  border: 1px solid rgba(123,202,255,.16);
  background: rgba(255,255,255,.045);
  border-radius: 8px;
  padding: 12px;
}
.mini-grid small {
  display:block;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mini-grid strong, .recommendations-card strong, .priority-card strong, .coach-ready strong { display:block; font-size: 13px; line-height: 1.25; }
.mini-grid span, .recommendations-card span, .priority-card span, .coach-ready span, .philosophy-card p, .chat-box span { color: var(--muted); font-size: 10px; line-height: 1.4; }
.coach-card, .readiness-card, .philosophy-card { grid-column: 2; }
.recommendations-card, .priority-card { grid-column: 1; }
.weekly-card { grid-column: 1; }
.card-heading { display:flex; align-items:center; justify-content:space-between; gap: 10px; margin-bottom: 12px; }
.card-heading .dashboard-card-title { margin-bottom: 0; }
.card-heading b, .recommendations-card b {
  color: #03101a;
  background: var(--cyan);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 8px;
  white-space: nowrap;
}
.coach-ready { margin-bottom: 10px; }
.prompt-chips { margin-bottom: 10px; }
.prompt-chips span {
  color: var(--soft);
  border: 1px solid rgba(0,187,242,.38);
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 9px;
}
.chat-box { display:flex; align-items:center; justify-content:space-between; gap: 10px; min-height: 54px; }
.chat-box b { color: #03101a; background: var(--cyan); border-radius: 999px; padding: 6px 12px; font-size: 9px; }
.recommendations-card { display:grid; gap: 10px; }
.recommendations-card .dashboard-card-title { margin-bottom: 0; }
.recommendations-card article { position: relative; padding-right: 92px; }
.recommendations-card b { position:absolute; top: 10px; right: 10px; background: rgba(0,187,242,.16); color: var(--cyan); border: 1px solid rgba(0,187,242,.35); }
.readiness-card { display:grid; gap: 8px; }
.readiness-card .dashboard-card-title { margin-bottom: 4px; }
.readiness-card div { display:flex; align-items:center; justify-content:space-between; padding: 10px 12px; }
.readiness-card span { color: var(--soft); font-size: 10px; font-weight: 800; }
.readiness-card strong { color: var(--ink); font-size: 12px; }
.priority-card { display:grid; gap: 8px; }
.priority-card .dashboard-card-title { margin-bottom: 4px; }
.priority-card article { display:flex; align-items:center; justify-content:space-between; gap: 12px; }
.priority-card span { color: var(--cyan); font-weight: 900; white-space: nowrap; }
.philosophy-card p { margin: 0; }
.screen-label { color: var(--cyan); margin: 0 0 8px; font-size:10px; text-transform:uppercase; letter-spacing:.18em; font-weight:900; }
.screen-panel {
  border: 1px solid rgba(123,202,255,.16);
  background: rgba(3, 7, 17, .54);
  border-radius: 8px;
  padding: 18px;
  min-height: 142px;
}
.screen-panel strong { display:block; font-size: 28px; line-height:1.18; margin-bottom:10px; overflow: visible; }
.screen-panel span { color: var(--soft); }
.biomarkers { display:grid; grid-template-columns: 100px 1fr; gap:10px; align-items:center; }
.biomarkers b { display:block; height:9px; border-radius:999px; background: linear-gradient(90deg, var(--cyan), var(--mint)); }
.deep-dive {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
  padding: var(--space-section) 0 0;
}
.deep-dive.reverse .deep-dive-copy { order: 2; }
.deep-dive.reverse .deep-dive-visual { order: 1; }
.deep-dive-copy p:not(.eyebrow) { color: var(--muted); font-size: 17px; margin-top: 16px; max-width: 46ch; }
.deep-dive-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(12,25,46,.7), rgba(6,13,27,.7));
  box-shadow: var(--shadow-md);
  padding: 28px;
}
.deep-dive-visual.bare { border: none; background: none; box-shadow: none; padding: 0; }
.dd-blood h3 { margin: 10px 0 8px; }
.dd-blood-note { color: var(--soft); margin: 0 0 18px; font-size: 14px; }
.content-post { display:flex; gap:12px; border:1px solid var(--line); background: rgba(255,255,255,.03); border-radius: var(--radius-sm); padding:16px; margin: 14px 0; }
.content-avatar { flex:0 0 36px; width:36px; height:36px; border-radius:50%; display:grid; place-items:center; background: linear-gradient(135deg, var(--cyan), var(--mint)); color:#03101a; font-weight:900; }
.content-post strong { display:block; margin-bottom:6px; }
.content-post p { margin:0; color:var(--soft); font-size:14px; line-height:1.5; font-style: italic; }
.content-calendar { display:flex; gap:8px; }
.content-calendar span { flex:1; text-align:center; padding:8px 0; border:1px solid var(--line); border-radius: var(--radius-sm); color:var(--muted); font-size:12px; font-weight:800; }
.content-calendar span.active { color:#03101a; background:var(--cyan); border-color:var(--cyan); }
.retention-row { display:flex; align-items:center; gap:12px; padding:12px 0; border-bottom:1px solid var(--line); }
.retention-row:last-child { border-bottom:none; }
.retention-row .dot { width:10px; height:10px; border-radius:50%; flex:0 0 auto; }
.retention-row strong { flex:1; font-weight:800; font-size:14px; }
.retention-tag { font-size:11px; font-weight:800; color:var(--muted); border:1px solid var(--line); border-radius:var(--radius-pill); padding:4px 10px; }
.mission-section {
  display: grid;
  grid-template-columns: .3fr .7fr;
  gap: 40px;
  align-items: center;
  padding: var(--space-section) 0 0;
}
.mission-visual {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: radial-gradient(circle at 50% 40%, rgba(0,187,242,.14), rgba(9,18,34,.7));
  padding: 40px;
  aspect-ratio: 1;
}
.mission-visual img { width: 100px; height: 100px; object-fit: contain; filter: drop-shadow(0 0 26px rgba(0,187,242,.35)); }
.mission-text { color: var(--soft); font-size: 19px; line-height: 1.6; max-width: 62ch; margin: 0; }
.stat-strip {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border:1px solid var(--line);
  background: var(--line);
  margin: 0 0 var(--space-section);
  border-radius: var(--radius-sm);
  overflow:hidden;
}
.stat-strip div { background: rgba(7,16,32,.92); padding: 24px; }
.stat-strip strong { display:block; color:var(--cyan); font-size:34px; line-height:1; }
.stat-strip span { display:block; color:var(--muted); margin-top:8px; font-weight:800; }
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  padding: 20px 28px;
  margin: 0 0 var(--space-section);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.03);
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.trust-divider { color: var(--line-strong); }
.os-flow { padding: 0 0 var(--space-section); }
.flow-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.flow-grid article {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.flow-grid > article > span { color: var(--cyan); font-weight: 900; }
.flow-grid h3 { margin: 14px 0 10px; }
.flow-grid p { margin: 0; color: var(--muted); }
.flow-visual {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.flow-visual-head { color: var(--cyan); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.flow-visual-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.flow-visual-chips span {
  display: block;
  border: 1px solid var(--line);
  background: rgba(0,187,242,.06);
  border-radius: var(--radius-pill);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--soft);
  text-align: center;
}
.flow-visual-route { display: flex; align-items: center; gap: 10px; }
.flow-visual-input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 800;
  color: var(--soft);
  background: rgba(255,255,255,.03);
}
.flow-visual-arrow { color: var(--cyan); font-weight: 900; }
.flow-visual-agents { display: flex; gap: 6px; }
.flow-visual-agents span {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.03);
}
.flow-visual-agents span svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.flow-visual-agents span.active { color: var(--cyan); border-color: rgba(0,187,242,.4); background: rgba(0,187,242,.12); }
.flow-visual-output p { margin: 0; color: var(--soft); font-size: 13px; line-height: 1.4; font-style: italic; }
.problem-band, .conversion-band {
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:42px;
  padding: var(--space-section) 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.pain-grid { display:grid; gap:14px; }
.pain-grid article {
  border:1px solid var(--line);
  background: rgba(255,255,255,.045);
  border-radius:8px;
  padding:20px;
}
.pain-grid strong { display:block; font-size:20px; margin-bottom:8px; }
.pain-grid span { color:var(--muted); }
.section-heading { max-width: 820px; margin: 0 0 32px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 19px; }
.feature-showcase, .agent-preview, .feature-index { padding: var(--space-section) 0 0; }
.showcase-grid {
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
}
.showcase-card, .agent-card, .price-card, .compare-grid article, details, .final-cta, .feature-list article {
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(12,25,46,.82), rgba(6,13,27,.82));
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.showcase-card, .agent-card, .price-card {
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.showcase-card:hover, .agent-card:hover, .price-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 80px rgba(0,0,0,.36);
}
.showcase-card { padding: 28px; min-height: 260px; }
.showcase-card.feature-hero { grid-row: span 2; min-height: 542px; }
.showcase-card h3 { font-size: 38px; margin: 18px 0 14px; line-height:1.2; }
.showcase-card p, .agent-card p, .price-card p, .compare-grid li, details p, .footer p { color:var(--muted); }
.showcase-card ul { margin-top:24px; color:var(--soft); }
.showcase-card li { margin: 10px 0; }
.card-icon, .agent-icon {
  --accent: var(--cyan);
  width:52px;
  height:52px;
  border-radius:var(--radius-sm);
  display:grid;
  place-items:center;
  color:var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border:1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  transition: transform var(--dur-base) var(--ease);
}
.agent-card:hover .agent-icon, .showcase-card:hover .card-icon { transform: scale(1.06); }
.card-icon svg, .agent-icon svg { width:30px; height:30px; fill:none; stroke:currentColor; stroke-width:2.4; stroke-linecap:round; stroke-linejoin:round; }
.cat-strategy .agent-icon { --accent: var(--cat-strategy); }
.cat-content .agent-icon { --accent: var(--cat-content); }
.cat-retention .agent-icon { --accent: var(--cat-retention); }
.cat-revenue .agent-icon { --accent: var(--cat-revenue); }
.cat-health .agent-icon { --accent: var(--cat-health); }
.cat-operations .agent-icon { --accent: var(--cat-operations); }
.cat-strategy .eyebrow { color: var(--cat-strategy); }
.cat-content .eyebrow { color: var(--cat-content); }
.cat-retention .eyebrow { color: var(--cat-retention); }
.cat-revenue .eyebrow { color: var(--cat-revenue); }
.cat-health .eyebrow { color: var(--cat-health); }
.cat-operations .eyebrow { color: var(--cat-operations); }
.mini-labs { display:grid; grid-template-columns: 110px 1fr; gap:12px; align-items:center; margin-top:22px; color:var(--soft); }
.mini-labs b { height:10px; border-radius:999px; background:linear-gradient(90deg,var(--danger),var(--gold),var(--mint)); }
.agent-preview-grid, .agent-detail-grid, .pricing-grid, .single-pricing-grid, .compare-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.single-pricing-grid {
  grid-template-columns: .92fr 1.08fr;
  align-items: stretch;
}
.agent-detail-grid { grid-template-columns: repeat(4, 1fr); margin-top: 32px; }
.agent-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.agent-filter-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.agent-filter-btn:hover { color: var(--ink); border-color: var(--line-strong); }
.agent-filter-btn.active { color: #03101a; background: var(--cyan); border-color: var(--cyan); }
.agent-memory { margin-top: 14px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.agent-memory strong { color: var(--soft); }
.agent-card { padding:24px; }
.agent-card.compact { min-height: 400px; position: relative; overflow: hidden; }
.agent-example {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(6,13,27,.98), rgba(9,18,34,.98));
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.agent-card.compact:hover .agent-example,
.agent-card.compact:focus-within .agent-example {
  opacity: 1;
  transform: none;
}
.agent-example-label {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.agent-example p {
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.5;
  font-style: italic;
}
.agent-top { display:flex; justify-content:space-between; gap:14px; align-items:flex-start; }
.agent-card h3 { margin:18px 0 8px; }
.agent-card strong { color:var(--cyan); }
.agent-handles { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.agent-handles span { color:var(--soft); border:1px solid var(--line); background:rgba(255,255,255,.045); padding:6px 8px; border-radius:999px; font-size:12px; font-weight:800; }
.center-action { display:flex; justify-content:center; margin-top:26px; }
.conversion-band { align-items:center; }
.final-cta {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding: clamp(28px,5vw,52px);
  margin: var(--space-section) 0 0;
  background: radial-gradient(circle at 100% 0%, rgba(0,187,242,.20), rgba(9,18,34,.90));
}
.final-cta p { color: var(--muted); max-width: 660px; }
.page { padding: 70px 0 0; }
.split-hero {
  display:grid;
  grid-template-columns: minmax(330px, .62fr) minmax(760px, 1.38fr);
  gap:42px;
  align-items:center;
  width: min(1540px, calc(100vw - 40px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}
.page-hero { padding: 38px 0 42px; }
.feature-list { display:grid; grid-template-columns: repeat(2, 1fr); gap:14px; }
.feature-list article { padding:22px; display:grid; grid-template-columns:50px 1fr; gap:12px; align-items:start; }
.feature-list span { color:var(--cyan); font-weight:900; }
.feature-list h3 { font-size:19px; line-height:1.25; }
.promo-strip { border:1px solid rgba(77,228,166,.34); background:rgba(77,228,166,.10); padding:16px 18px; border-radius:var(--radius-md); color:#d5ffeb; margin-bottom:16px; }
.price-card { position:relative; padding:30px; }
.price-card.solo { border-color: rgba(0,187,242,.48); background: linear-gradient(180deg, rgba(0,187,242,.15), rgba(12,25,46,.84)); }
.price-card.featured { border-color:rgba(0,187,242,.55); background:linear-gradient(180deg, rgba(0,187,242,.13), rgba(12,25,46,.82)); transform:translateY(-8px); }
.popular { display:inline-flex; color:#03101a; background:var(--cyan); border-radius:999px; padding:6px 10px; font-size:12px; font-weight:900; margin-bottom:14px; }
.price { font-size:56px; line-height:1; font-weight:900; margin:18px 0 6px; }
.price span { color:var(--muted); font-size:17px; }
.price-row { display:flex; align-items:flex-end; flex-wrap:wrap; gap:16px; margin: 14px 0 10px; }
.price-row .price { margin:0; }
.was-price { color: var(--muted); font-size: 28px; font-weight: 900; text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: rgba(255,255,255,.42); margin-bottom: 8px; }
.annual { margin-top:0; }
.usage { display:grid; gap:8px; margin:22px 0; }
.usage div { display:flex; justify-content:space-between; gap:18px; border-bottom:1px solid var(--line); padding-bottom:8px; }
.usage dt { color:var(--muted); }
.usage dd { margin:0; font-weight:900; }
.price-card ul, .compare-grid ul { padding-left:20px; }
.price-card li, .compare-grid li { margin:8px 0; color:var(--soft); }
.compare-tables { display: grid; gap: 28px; margin-top: 8px; }
.compare-table-wrap {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12,25,46,.7), rgba(6,13,27,.7));
  border-radius: var(--radius-sm);
  padding: clamp(20px, 3vw, 30px);
}
.compare-table-wrap h2 { font-size: clamp(22px, 2.4vw, 28px); margin-bottom: 18px; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  text-align: left;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  padding: 0 16px 12px;
  border-bottom: 1px solid var(--line-strong);
}
.compare-table th:first-child { color: var(--cyan); padding-left: 0; }
.compare-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--soft); font-size: 14px; vertical-align: top; }
.compare-table td:first-child { color: var(--ink); font-weight: 700; padding-left: 0; }
.compare-table tr:last-child td { border-bottom: none; }
.price-card .button { margin-top: 16px; }
.best-for { color: var(--muted); font-size: 14px; margin: 0; }
.price-card .risk-reversal { margin-top: 12px; }
.trust-line { color: var(--muted); font-size: 13px; margin: 10px 0 0; }
.trust-line a { color: var(--cyan); font-weight: 700; }
.value-card {
  border:1px solid var(--line);
  background: radial-gradient(circle at 100% 0%, rgba(77,228,166,.16), rgba(6,13,27,.84) 44%);
  border-radius: 8px;
  box-shadow: 0 18px 64px rgba(0,0,0,.24);
  padding: 30px;
}
.value-card p { color: var(--muted); }
.value-math {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0;
}
.value-math div { background: rgba(2,5,12,.58); padding: 18px; }
.value-math strong { display:block; color: var(--cyan); font-size: 30px; line-height: 1; }
.value-math span { display:block; color: var(--muted); font-size: 13px; font-weight: 800; margin-top: 8px; }
.fine-print { font-size: 14px; }
.roi-page .final-cta { margin-top: clamp(64px, 8vw, 104px); }
.roi-hero { text-align: center; margin-left: auto; margin-right: auto; }
.roi-hero .lead, .roi-hero .button-row { margin-left: auto; margin-right: auto; justify-content: center; }
.roi-calculator-panel {
  border: 1px solid rgba(0,187,242,.28);
  background:
    linear-gradient(135deg, rgba(0,187,242,.12), rgba(25,69,157,.13) 46%, rgba(3,7,17,.88)),
    rgba(8,17,31,.82);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.roi-controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.roi-controls article, .roi-breakdown, .roi-result-card {
  border: 1px solid rgba(151,195,235,.18);
  background: rgba(3, 7, 17, .58);
  border-radius: 8px;
}
.roi-controls article { padding: 22px; }
.range-label { display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:16px; }
.range-label span { color: var(--soft); font-weight: 800; }
.range-label strong { color: var(--cyan); font-size: 22px; white-space: nowrap; }
.roi-controls input[type="range"] { width: 100%; accent-color: var(--cyan); }
.range-bounds { display:flex; justify-content:space-between; color:var(--muted); font-size:13px; margin-top:10px; }
.roi-breakdown { margin-top: 18px; padding: 22px; }
.roi-savings-grid {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.roi-savings-grid div {
  border: 1px solid rgba(0,187,242,.15);
  background: rgba(0,187,242,.06);
  border-radius: 8px;
  padding: 16px;
}
.roi-savings-grid strong { display:block; }
.roi-savings-grid span { display:block; margin-top:6px; color:var(--muted); font-size:13px; font-weight:800; }
.roi-result-card {
  margin-top: 18px;
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  text-align: center;
}
.roi-result-card span { color: var(--muted); font-weight: 800; }
.roi-result-card strong { display:block; margin-top:8px; font-size: clamp(32px, 5vw, 54px); line-height:1; color: var(--ink); }
.roi-result-card p { margin: 10px 0 0; color: var(--soft); }
.roi-arrow { color: var(--cyan); font-weight: 900; font-size: 28px; }
.roi-net {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.roi-net strong { color: var(--mint); font-size: clamp(42px, 7vw, 74px); }
.roi-net p {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #03101a;
  background: linear-gradient(90deg, var(--mint), var(--cyan));
  font-weight: 900;
}
.roi-context-card {
  margin-top: 18px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(151,195,235,.18);
  background: rgba(3, 7, 17, .58);
  border-radius: var(--radius-sm);
  text-align: center;
}
.roi-context-card span { color: var(--muted); font-weight: 800; }
.roi-context-card strong { display: block; margin-top: 8px; font-size: clamp(24px, 3.4vw, 32px); color: var(--cyan); }
.roi-context-card p { margin: 8px 0 0; color: var(--soft); font-size: 13px; }
.roi-disclaimer { margin: 16px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.faq-block, .faq-list { margin: 42px 0; }
.faq-group { margin-top: 44px; }
.faq-group:first-of-type { margin-top: 8px; }
.faq-group-title { font-size: 14px; text-transform: uppercase; letter-spacing: .1em; color: var(--cyan); font-family: var(--font-body); font-weight: 900; margin: 0; }
.faq-group .faq-list { margin: 18px 0 0; }
.faq-preview { padding: var(--space-section) 0 0; }
.faq-preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.faq-preview-card {
  display: block;
  text-decoration: none;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12,25,46,.7), rgba(6,13,27,.7));
  border-radius: var(--radius-sm);
  padding: 20px;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.faq-preview-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.faq-preview-card strong { display: block; margin-bottom: 8px; font-size: 15px; }
.faq-preview-card span { display: block; color: var(--muted); font-size: 13px; line-height: 1.5; }
.faq-list { display:grid; gap:14px; }
details { padding:22px 24px; }
summary { cursor:pointer; font-size:20px; font-weight:900; }
.legal-page .page-hero { max-width: 900px; }
.not-found-hero { text-align: center; margin: 0 auto; padding: 96px 0; }
.not-found-hero .lead, .not-found-hero .button-row { margin-left: auto; margin-right: auto; justify-content: center; }
.legal-page h1 { margin-left: 0; margin-right: 0; }
.legal-document {
  display: grid;
  gap: 16px;
  max-width: 920px;
}
.legal-document article {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12,25,46,.72), rgba(6,13,27,.72));
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
}
.legal-document h2 {
  font-size: 26px;
  margin-bottom: 12px;
}
.legal-document p {
  margin: 12px 0 0;
  color: var(--soft);
}
.legal-document a {
  color: var(--cyan);
  font-weight: 800;
}
.footer {
  width:min(1200px, calc(100% - 40px));
  margin: 86px auto 0;
  padding: 34px 0 46px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:28px;
}
.footer-brand img { width:34px; height:34px; }
.footer-links { display:flex; flex-wrap:wrap; align-content:flex-start; justify-content:flex-end; gap:18px; color:var(--muted); }
.footer-links a { text-decoration:none; }
@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .site-header > .nav-cta { display: none; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px clamp(18px, 5vw, 72px) 18px;
    background: rgba(2, 5, 12, .97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
  }
  .main-nav.open { max-height: 420px; opacity: 1; }
  .main-nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .main-nav a.active::after { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 10px; }
  .hero, .problem-band, .conversion-band, .split-hero, .showcase-grid, .product-shell, .deep-dive, .mission-section { grid-template-columns:1fr; }
  .deep-dive.reverse .deep-dive-copy, .deep-dive.reverse .deep-dive-visual { order: 0; }
  .mission-visual { width: 100px; margin: 0 auto; }
  .split-hero { width: 100%; margin-left: 0; transform: none; }
  .second-brain-hero { width: 100%; margin-left: 0; transform: none; min-height: auto; grid-template-columns: 1fr; }
  .second-brain-copy .lead { max-width: 100%; }
  .second-brain-visual { order: 2; }
  .second-brain-proof { grid-template-columns: 1fr; }
  .context-agent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-nav { grid-template-columns: repeat(3, 1fr); border-right: 0; border-bottom: 1px solid var(--line); }
  .command-graphic { min-height: auto; }
  .stat-strip, .agent-preview-grid, .agent-detail-grid, .pricing-grid, .single-pricing-grid, .compare-grid, .feature-list, .flow-grid, .roi-savings-grid, .faq-preview-grid { grid-template-columns:1fr 1fr; }
  .showcase-card.feature-hero { min-height:auto; }
  .final-cta, .footer { flex-direction:column; align-items:flex-start; }
  .footer-links { justify-content:flex-start; }
}
@media (max-width: 680px) {
  main, .footer { width: calc(100vw - 28px); }
  .site-header { padding:14px; }
  .brand span { font-size:14px; }
  .nav-cta { width:100%; text-align:center; }
  .hero { padding-top:42px; }
  .second-brain-hero { min-height: auto; padding: 20px 0 0; width: calc(100vw - 28px); gap: 28px; }
  .second-brain-copy h1 { font-size: 38px; max-width: 15ch; margin-left: 0; margin-right: 0; }
  .second-brain-copy .lead { max-width: 32ch; }
  .second-brain-visual, .browser-frame { min-width: 0; max-width: 100%; }
  .browser-body .command-graphic { min-height: auto; }
  .memory-core-card, .agent-context-card { padding: 14px; }
  .context-agent-grid { grid-template-columns: 1fr; }
  .page-hero, .page-hero > div, .split-hero, .split-hero > *, .command-graphic, .command-workspace, .morning-bar { min-width: 0; max-width: 100%; }
  .split-hero { overflow: hidden; }
  .screen-grid, .stat-strip, .agent-preview-grid, .agent-detail-grid, .pricing-grid, .single-pricing-grid, .compare-grid, .feature-list, .flow-grid, .product-nav, .value-math, .roi-controls, .roi-savings-grid, .roi-result-card, .command-graphic, .morning-brief, .command-grid, .mini-grid, .faq-preview-grid { grid-template-columns:1fr; }
  .command-sidebar { display: none; }
  .command-workspace { padding: 10px; }
  .morning-bar span { display: none; }
  .morning-brief { gap: 12px; padding: 14px; }
  .morning-brief strong { font-size: 21px; }
  .coach-card, .readiness-card, .philosophy-card, .recommendations-card, .priority-card, .weekly-card { grid-column: auto; }
  .recommendations-card article { padding-right: 12px; }
  .recommendations-card b { position: static; display: inline-flex; width: max-content; margin-top: 8px; }
  .roi-arrow { display:none; }
  .screen-panel.wide { grid-column:auto; }
  .feature-list article { grid-template-columns:1fr; }
  h1 { font-size: 40px; }
  .page-hero h1 { max-width: 13ch; margin-left: 0; margin-right: 0; }
  .lead { max-width: 30ch; }
  .morning-brief > div > span { display: block; max-width: 28ch; }
  h2 { font-size: 34px; }
  .lead { font-size: 18px; }
  .product-head strong { font-size: 27px; }
  .showcase-card h3 { font-size: 30px; }
}
