:root {
  --bg: #04060d;
  --bg-elev: #0c1220;
  --card: rgba(18, 26, 42, 0.78);
  --card-solid: #121a2c;
  --border: rgba(96, 165, 250, 0.22);
  --border-strong: rgba(167, 139, 250, 0.45);
  --text: #f4f7ff;
  --muted: #a8b8d6;
  --blue: #3b82f6;
  --blue-bright: #7dd3fc;
  --purple: #a78bfa;
  --green: #34d399;
  --gold: #fbbf24;
  --danger: #f87171;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 20px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --max: 1180px;
  --fs-body: 1.0625rem;
  --fs-lead: clamp(1.15rem, 1.8vw, 1.35rem);
  --fs-h1: clamp(2.85rem, 7vw, 4.35rem);
  --fs-h2: clamp(1.85rem, 3.5vw, 2.45rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.4rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(1100px 560px at 10% -10%, rgba(59, 130, 246, 0.28), transparent 55%),
    radial-gradient(900px 500px at 95% 5%, rgba(139, 92, 246, 0.2), transparent 50%),
    radial-gradient(800px 420px at 50% 105%, rgba(34, 211, 238, 0.08), transparent 55%),
    var(--bg);
  min-height: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(5, 7, 15, 0.72);
  border-bottom: 1px solid rgba(36, 48, 73, 0.8);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none !important;
}

.brand img,
.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(96, 165, 250, 0.45);
}

.mock-brand img,
.app-brand img {
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a:not(.btn) {
  color: var(--muted);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav-links a:not(.btn):hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #6aa4ff 0%, #3b82f6 45%, #1d4ed8 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid rgba(191, 219, 254, 0.35);
  box-shadow:
    0 12px 36px rgba(37, 99, 235, 0.45),
    0 0 0 1px rgba(96, 165, 250, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  letter-spacing: -0.01em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 44px rgba(37, 99, 235, 0.55),
    0 0 0 1px rgba(147, 197, 253, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-decoration: none !important;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(167, 184, 210, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--text) !important;
}

.btn-ghost:hover {
  border-color: rgba(125, 211, 252, 0.55);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
  background: rgba(96, 165, 250, 0.08);
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.12rem;
  border-radius: 16px;
}

.btn-block {
  width: 100%;
}

/* ——— Simplified landing page ——— */
.page-simple .nav-simple {
  gap: 12px 22px;
}

.page-simple .nav-inner {
  padding: 16px 0;
}

.hero-simple {
  padding: 72px 0 48px !important;
  text-align: center;
}

.hero-simple-inner {
  max-width: 820px;
  margin: 0 auto;
}

.hero-simple h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 16ch;
  text-wrap: balance;
}

.lead-simple {
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: #c2cfe8;
  font-weight: 400;
}

.hero-simple .cta-row {
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.trust-simple {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Product photos */
.hero-shot {
  margin: 44px auto 0;
  max-width: 1040px;
  text-align: center;
  position: relative;
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: 12% 8% -6%;
  background: radial-gradient(ellipse at 50% 40%, rgba(96, 165, 250, 0.28), transparent 65%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

.hero-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(147, 197, 253, 0.4);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.12),
    0 36px 90px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(96, 165, 250, 0.18);
  background: #0a0f1a;
}

.hero-shot figcaption {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.product-gallery-section {
  padding-top: 20px !important;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  gap: 18px;
  align-items: stretch;
}

.gallery-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.28);
  background: var(--card-solid);
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-card:hover {
  border-color: rgba(125, 211, 252, 0.55);
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(59, 130, 246, 0.12);
}

.gallery-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #06080f;
}

.gallery-card:not(.gallery-card-wide) img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.gallery-card figcaption {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(96, 165, 250, 0.15);
  background: linear-gradient(180deg, rgba(18, 26, 42, 0.4), transparent);
}

.gallery-card figcaption strong {
  font-size: 1.12rem;
  letter-spacing: -0.025em;
  color: var(--text);
  font-weight: 700;
}

.gallery-card figcaption span {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-card img,
  .gallery-card:not(.gallery-card-wide) img {
    aspect-ratio: 16 / 10;
  }
}

.section-tight {
  padding: 56px 0 !important;
}

.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 40rem;
}

.page-simple .section-head h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 10px;
}

.page-simple .section-head p {
  font-size: 1.12rem;
  color: #b4c3df;
  line-height: 1.55;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.simple-card {
  background:
    linear-gradient(165deg, rgba(96, 165, 250, 0.08), transparent 50%),
    var(--card);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.simple-card:hover {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32), 0 0 28px rgba(59, 130, 246, 0.1);
}

.simple-card h3 {
  margin: 0 0 10px;
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.simple-card p {
  margin: 0;
  color: #b6c5e0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.simple-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid rgba(125, 211, 252, 0.4);
  background:
    radial-gradient(500px 200px at 0% 0%, rgba(59, 130, 246, 0.16), transparent 60%),
    var(--card-solid);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(59, 130, 246, 0.1);
}

.simple-panel h2 {
  margin: 0 0 8px;
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.simple-panel .muted,
.simple-panel > div > .muted {
  font-size: 1.08rem !important;
  color: #b4c3df !important;
}

.simple-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #b4c3df;
  line-height: 1.75;
  font-size: 1.05rem;
}

.pricing-includes-short li {
  padding: 8px 0 8px 28px;
  font-size: 1.05rem;
}

.clean-strip {
  max-width: 720px;
  margin: 36px auto 0;
  padding: 28px 28px;
  border-radius: 20px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(139, 92, 246, 0.08)),
    var(--card-solid);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.clean-strip h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.clean-lead {
  margin: 0 0 14px;
  font-size: 1.08rem;
  color: #c2cfe8;
  line-height: 1.5;
}

.clean-points {
  margin: 0;
  padding-left: 20px;
  color: #b4c3df;
  font-size: 1.05rem;
  line-height: 1.75;
}

.clean-points li {
  margin: 6px 0;
}

.faq-simple {
  max-width: 720px;
  margin: 0 auto;
}

.footer-simple {
  padding: 36px 0 48px;
  margin-top: 12px;
}

.footer-simple-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-links-inline a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.footer-links-inline a:hover {
  color: var(--text);
}

@media (max-width: 800px) {
  .simple-grid {
    grid-template-columns: 1fr;
  }

  .simple-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .simple-panel .btn {
    width: 100%;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 56px 0 48px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.28;
  filter: saturate(1.15) contrast(1.05);
}

.hero-bg-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 7, 15, 0.94) 0%, rgba(5, 7, 15, 0.78) 42%, rgba(5, 7, 15, 0.55) 70%, rgba(5, 7, 15, 0.88) 100%),
    linear-gradient(180deg, transparent 60%, var(--bg) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  position: relative;
}

/* Product — real LOLCallout app window mock */
.product-section {
  padding-top: 48px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.app-window {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.35);
  background: #0a0f1a;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(59, 130, 246, 0.1);
  font-size: 0.82rem;
}

.app-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(36, 48, 73, 0.95);
  background: rgba(8, 11, 18, 0.95);
  flex-wrap: wrap;
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.app-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.app-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #86efac;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: 999px;
  padding: 4px 10px;
}

.app-live .dot.live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.app-chips {
  margin-left: auto;
  display: flex;
  gap: 6px;
}

.app-window .chip {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.app-window .chip.on {
  color: #d1fae5;
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.12);
}

.app-window .chip.primary {
  color: #fff;
  border-color: rgba(96, 165, 250, 0.4);
  background: linear-gradient(180deg, #4f8cff, #2563eb);
}

.app-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(36, 48, 73, 0.9);
  background: rgba(15, 21, 34, 0.95);
}

.app-strip .lbl {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5c6b86;
}

.app-strip strong {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 600;
}

.app-strip .brain-chip {
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: rgba(14, 165, 233, 0.1);
}

.app-strip .brain-chip strong {
  font-size: 0.72rem;
  color: #7dd3fc;
}

.app-main {
  display: grid;
  grid-template-columns: 1fr 200px;
  min-height: 260px;
}

.app-chat {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(36, 48, 73, 0.9);
}

.app-side {
  padding: 12px;
  background: rgba(0, 0, 0, 0.2);
}

.side-title {
  margin: 0 0 8px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.side-card {
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(14, 165, 233, 0.1), rgba(15, 21, 34, 0.9));
  margin-bottom: 12px;
}

.side-card.thin {
  border-color: var(--border);
  background: rgba(18, 24, 38, 0.8);
}

.side-card .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.side-card .pill {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, 0.35);
  color: #c4b5fd;
  background: rgba(124, 58, 237, 0.12);
}

.side-card .pill.ok {
  color: #86efac;
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.12);
}

.side-card .pill.gold {
  color: #fcd34d;
  border-color: rgba(245, 197, 66, 0.4);
  background: rgba(245, 197, 66, 0.08);
}

.side-card p {
  margin: 0 0 6px;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text);
}

.side-card .muted-line {
  color: var(--muted);
  margin-bottom: 0;
}

.side-card .warn {
  color: var(--danger);
}

.side-card .row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.72rem;
  margin-bottom: 6px;
  color: var(--muted);
}

.side-card .row strong {
  color: var(--text);
  font-family: var(--mono);
  font-weight: 600;
}

.product-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-point {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(8px);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.product-point:hover {
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-1px);
}

.product-point h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.product-point p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-points .btn {
  align-self: flex-start;
  margin-top: 4px;
}

@media (max-width: 960px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .app-main {
    grid-template-columns: 1fr;
  }

  .app-chat {
    border-right: none;
    border-bottom: 1px solid rgba(36, 48, 73, 0.9);
  }

  .hero-bg img {
    opacity: 0.18;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.12);
  color: #a7f3d0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.12);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  50% {
    opacity: 0.45;
  }
}

.hero h1 {
  font-size: var(--fs-h1);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 22px 0 20px;
  font-weight: 800;
  text-shadow: 0 0 60px rgba(96, 165, 250, 0.15);
}

.grad {
  background: linear-gradient(105deg, #7dd3fc 0%, #818cf8 40%, #e879f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(129, 140, 248, 0.25));
}

.lead {
  color: var(--muted);
  font-size: var(--fs-lead);
  max-width: 36rem;
  margin: 0 0 30px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row strong {
  color: var(--text);
  font-weight: 600;
}

/* Journey — draft → live → post */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.journey-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  backdrop-filter: blur(8px);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.journey-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.journey-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-bright);
  letter-spacing: 0.08em;
  margin: 0 0 10px;
}

.journey-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.journey-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.journey-ex {
  margin-top: 14px !important;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--text) !important;
  font-size: 0.82rem !important;
  font-family: var(--mono);
  line-height: 1.45;
}

/* Compare table */
.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(36, 48, 73, 0.9);
}

.compare-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td:first-child {
  color: var(--text);
  font-weight: 500;
}

.compare-table .yes {
  color: var(--green);
  font-weight: 600;
}

.compare-table .no {
  color: var(--muted);
}

.compare-table .maybe {
  color: var(--gold);
}

.bubble.callout.soft {
  opacity: 0.92;
  border-color: rgba(139, 92, 246, 0.25);
}

.mock-hud .stat strong.warn {
  color: var(--danger);
}

@media (max-width: 960px) {
  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

.brain-grid .journey-num {
  color: #7dd3fc;
}

/* Product mock */
.mock {
  position: relative;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(96, 165, 250, 0.55), rgba(139, 92, 246, 0.25), rgba(15, 23, 42, 0.2));
  box-shadow: var(--shadow);
}

.mock-inner {
  border-radius: 21px;
  background: linear-gradient(180deg, #0f1628 0%, #0a0f1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.mock-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(36, 48, 73, 0.9);
  background: rgba(0, 0, 0, 0.2);
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.mock-brand img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #86efac;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 999px;
  padding: 4px 10px;
}

.mock-body {
  display: grid;
  grid-template-columns: 1fr 120px;
  min-height: 280px;
}

.mock-chat {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.82rem;
  line-height: 1.4;
  border: 1px solid var(--border);
  background: rgba(18, 24, 38, 0.9);
  max-width: 95%;
}

.bubble .meta {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.bubble.callout {
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(124, 58, 237, 0.14);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.12);
}

.bubble.user {
  align-self: flex-end;
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.12);
}

.bubble.coach {
  border-color: rgba(59, 130, 246, 0.2);
}

.mock-hud {
  border-left: 1px solid rgba(36, 48, 73, 0.9);
  padding: 12px;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.75rem;
}

.mock-hud h4 {
  margin: 0 0 10px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
}

.stat {
  margin-bottom: 10px;
}

.stat strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 600;
}

.stat span {
  color: var(--muted);
  font-size: 0.7rem;
}

.mock-glow {
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-size: var(--fs-h2);
  letter-spacing: -0.035em;
  margin: 0 0 12px;
  font-weight: 800;
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  color: #b4c3df;
  font-size: 1.12rem;
  line-height: 1.55;
}

.modes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mode-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.mode-chip.soon {
  color: var(--muted);
  border-style: dashed;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(8px);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.feature:hover {
  border-color: rgba(96, 165, 250, 0.35);
  transform: translateY(-2px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(96, 165, 250, 0.25);
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Download */
.download-box {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  background:
    radial-gradient(600px 200px at 0% 0%, rgba(59, 130, 246, 0.16), transparent 55%),
    var(--card-solid);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.download-steps {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.download-steps h4 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.download-steps ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.download-steps strong {
  color: var(--green);
}

@media (max-width: 960px) {
  .download-box {
    grid-template-columns: 1fr;
  }
}

/* Value stack — what $100 includes */
.value-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.value-card {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.value-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.value-card.highlight {
  grid-column: 1 / -1;
  background:
    radial-gradient(700px 180px at 10% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(500px 160px at 90% 100%, rgba(139, 92, 246, 0.12), transparent 50%),
    var(--card-solid);
  border-color: rgba(96, 165, 250, 0.45);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.12), 0 20px 50px rgba(37, 99, 235, 0.12);
}

.value-kicker {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.value-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.value-card p em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

.value-footer {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(245, 197, 66, 0.25);
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.08), rgba(59, 130, 246, 0.06));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.value-price-line {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.value-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}

.value-per {
  font-weight: 600;
  color: var(--muted);
  margin-left: 2px;
}

.value-or {
  margin: 0 10px;
  opacity: 0.5;
}

.value-footer-rich {
  align-items: flex-start;
}

.value-founders-line {
  margin: 8px 0 12px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.45;
}

.value-founders-line .gold {
  color: var(--gold);
  font-weight: 800;
}

.muted-inline {
  color: var(--muted);
  font-weight: 500;
}

.value-footer-includes {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.value-footer-includes li {
  margin: 4px 0;
}

.pricing-includes-title {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.pricing-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 20px;
}

.pricing-compare > div {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
}

.pricing-compare .lbl {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 4px;
}

.pricing-compare strong {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.pricing-compare .muted-inline {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .pricing-compare {
    grid-template-columns: 1fr;
  }
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--blue-bright);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Pricing — high on page */
.section-pricing-top {
  padding-top: 40px;
  padding-bottom: 56px;
}

.pricing-single {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-hero-card {
  background:
    radial-gradient(560px 260px at 50% 0%, rgba(59, 130, 246, 0.22), transparent 60%),
    radial-gradient(420px 180px at 100% 100%, rgba(245, 197, 66, 0.12), transparent 50%),
    var(--card-solid);
  border: 1px solid rgba(125, 211, 252, 0.5);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.15),
    0 32px 80px rgba(37, 99, 235, 0.22),
    0 0 60px rgba(96, 165, 250, 0.1);
}

.pricing-hero-card h3 {
  margin: 0 0 6px;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.badge {
  display: inline-flex;
  width: fit-content;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: 999px;
  padding: 6px 12px;
  margin: 0 0 16px;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.12);
}

.price {
  font-size: clamp(3rem, 6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 10px 0 6px;
  line-height: 1;
  background: linear-gradient(180deg, #fff 30%, #93c5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price small {
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 600;
  -webkit-text-fill-color: var(--muted);
}

.sub {
  color: #b4c3df;
  margin: 0 0 22px;
  font-size: 1.08rem;
  line-height: 1.5;
}

.founders-deal {
  border-radius: 16px;
  border: 1px solid rgba(245, 197, 66, 0.35);
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.1), rgba(59, 130, 246, 0.06));
  padding: 18px 18px 14px;
  margin-bottom: 20px;
}

.founders-deal-title {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.founders-deal-price {
  margin: 0 0 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.deal-amt {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.deal-for {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.founders-deal-body {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.founders-deal-body strong {
  color: var(--text);
}

.founders-steps {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.founders-steps li::marker {
  color: var(--gold);
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-includes li {
  position: relative;
  padding: 11px 0 11px 28px;
  color: #c2cfe8;
  border-bottom: 1px solid rgba(36, 48, 73, 0.6);
  font-size: 1.08rem;
  line-height: 1.45;
}

.pricing-includes li:last-child {
  border-bottom: none;
}

.pricing-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.fine {
  color: #8b9bb8;
  font-size: 0.95rem;
  margin: 12px 0 0;
  line-height: 1.45;
}

/* Clean strip */
.clean {
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.06)),
    var(--card-solid);
  padding: 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.clean ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.clean li {
  margin: 8px 0;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: var(--card-solid);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: border-color 0.15s ease;
}

.faq details[open] {
  border-color: rgba(125, 211, 252, 0.4);
}

.faq summary {
  cursor: pointer;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 500;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  margin: 14px 0 4px;
  color: #b4c3df;
  font-size: 1.05rem;
  line-height: 1.55;
}

/* Waitlist form (legacy) */
.waitlist {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.waitlist input {
  flex: 1 1 220px;
  min-width: 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  outline: none;
}

.waitlist input:focus {
  border-color: rgba(96, 165, 250, 0.55);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Founders seats countdown */
.seats-countdown {
  margin: 0 0 20px;
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.14), rgba(59, 130, 246, 0.08));
  box-shadow: 0 0 28px rgba(245, 197, 66, 0.08);
}

.seats-num {
  font-size: 2.15rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.seats-num #seatsRemaining {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(251, 191, 36, 0.35);
}

.seats-of {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 6px;
}

.seats-bar {
  margin-top: 10px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.seats-bar > i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #f5c542, #f59e0b);
  border-radius: 99px;
  transition: width 0.4s ease;
}

.seats-meta {
  margin: 10px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Stripe checkout box */
.checkout-box {
  margin-top: 10px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(125, 211, 252, 0.45);
  background:
    radial-gradient(420px 140px at 0% 0%, rgba(59, 130, 246, 0.18), transparent 55%),
    rgba(0, 0, 0, 0.32);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.checkout-box-head {
  margin-bottom: 14px;
}

.checkout-box-title {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.checkout-box-sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.checkout-box-sub strong {
  color: #a5b4fc;
}

.checkout-summary {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(245, 197, 66, 0.25);
  background: rgba(245, 197, 66, 0.06);
}

.checkout-summary .lbl {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 2px;
}

.checkout-summary strong {
  font-size: 0.98rem;
}

.checkout-summary .gold {
  color: var(--gold);
  font-size: 1.15rem;
}

.checkout-summary .muted-inline {
  display: block;
  font-size: 0.78rem;
  margin-top: 2px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #b4c3df;
}

.checkout-form input {
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 14px;
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
  font-size: 1.08rem;
  outline: none;
}

.checkout-form input:focus {
  border-color: rgba(125, 211, 252, 0.65);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.btn-checkout {
  width: 100%;
  margin-top: 6px;
  font-size: 1.14rem !important;
  padding: 17px 22px !important;
  border-radius: 14px !important;
}

.checkout-trust {
  margin-top: 12px !important;
  text-align: center;
}

.checkout-error {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(248, 113, 113, 0.4);
  background: rgba(248, 113, 113, 0.1);
  color: #fecaca;
  font-size: 0.9rem;
}

.checkout-banner {
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.checkout-banner-ok {
  border: 1px solid rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.12);
  color: #d1fae5;
}

.checkout-banner-warn {
  border: 1px solid rgba(245, 197, 66, 0.4);
  background: rgba(245, 197, 66, 0.1);
  color: #fef3c7;
}

@media (max-width: 640px) {
  .checkout-summary {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  border-top: 1px solid rgba(36, 48, 73, 0.9);
  padding: 36px 0 48px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.footer a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
  text-decoration: none;
}

.footer a:hover {
  color: var(--text);
}

.disclaimer {
  color: #64748b;
  font-size: 0.78rem;
  line-height: 1.5;
  max-width: 900px;
}

/* Legal pages */
.legal-page {
  width: min(800px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 80px;
}

.legal-page h1 {
  margin-top: 0;
}

.legal-page pre {
  white-space: pre-wrap;
  font-family: var(--font);
  color: var(--muted);
  line-height: 1.6;
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .grid3,
  .steps,
  .value-stack,
  .clean,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-card.highlight {
    grid-column: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-inner {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 36px;
  }

  .mock-body {
    grid-template-columns: 1fr;
  }

  .mock-hud {
    border-left: none;
    border-top: 1px solid rgba(36, 48, 73, 0.9);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}
