:root {
  color-scheme: dark;
  --color-bg-1: #0b1220;
  --color-bg-2: #0e1a2b;
  --color-text-1: #f5faff;
  --color-text-2: #a9c4dd;
  --base-1: #0b1220;
  --base-2: #0e1a2b;
  --text-1: #f5faff;
  --text-2: #a9c4dd;
  --accent-1: #00b3ff;
  --accent-2: #00e0ff;
  --gold-1: #d6b36a;
  --gold-2: #c29a3a;
  --gold-3: #f0d9a3;
  --divider-gold: rgba(214, 179, 106, 0.18);
  --ok: #40d6a0;
  --warn: #ffd07a;
  --err: #ff8f8f;

  --card-fill: rgba(255, 255, 255, 0.04);
  --stroke-1: rgba(230, 242, 255, 0.1);
  --stroke-2: rgba(230, 242, 255, 0.18);
  --shadow-1: 0 24px 60px rgba(3, 7, 15, 0.45);
  --cta-glow: 0 0 18px rgba(0, 179, 255, 0.12);
  --focus: rgba(0, 224, 255, 0.35);

  --radius-card: 12px;
  --radius-btn: 10px;
  --radius-chip: 16px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 72px;

  --container-desktop: 1200px;
  --container-tablet: 738px;
  --container-mobile: 350px;
  --font-display: "Cinzel", serif;
  --font-ui: "Manrope", sans-serif;
  --font-body: "Inter", "Manrope", system-ui, sans-serif;

  --h1-size: 56px;
  --h1-lh: 1.12;
  --h2-size: 36px;
  --h2-lh: 1.18;
  --h3-size: 24px;
  --h3-lh: 1.25;
  --body-size: 18px;
  --body-lh: 1.55;
  --small-size: 14px;
  --small-lh: 1.4;
}
@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/cinzel/cinzel-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/cinzel/cinzel-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/manrope/manrope-latin-300-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/manrope/manrope-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/manrope/manrope-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/manrope/manrope-latin-700-normal.woff2") format("woff2");
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  background-color: #0a1428;
  background:
    radial-gradient(980px 520px at 84% -10%, rgba(0, 179, 255, 0.11), transparent 64%),
    radial-gradient(720px 400px at 12% 10%, rgba(214, 179, 106, 0.07), transparent 60%),
    linear-gradient(145deg, #091427 0%, #0d1d35 44%, #162d4f 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.2;
}

a { color: inherit; text-decoration: none; }
a:hover { color: #dff6ff; }
:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.app {
  position: relative;
  z-index: 1;
}

.container {
  width: min(var(--container-desktop), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: var(--space-7) 0 0;
}

.section + .section {
  margin-top: var(--space-5);
}

.section-title {
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
  letter-spacing: -0.02em;
}

.section-title::after {
  content: "";
  display: block;
  width: 68px;
  height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--divider-gold), transparent);
}

.section-lead {
  margin: 0 0 18px;
  color: var(--text-2);
  max-width: 760px;
}

.output-list {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--text-2);
}

.output-list li + li {
  margin-top: 8px;
}

.output-list li::marker {
  color: var(--gold-2);
}

.output-list-icons {
  list-style: none;
  padding-left: 0;
}

.output-list-icons li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.list-inline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  color: var(--gold-1);
}

.section .strip,
.section .grid-2,
.section .grid-3,
.section .grid-4,
.section .kicker-grid {
  margin-top: 0;
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(230, 242, 255, 0.08);
  background: rgba(8, 16, 30, 0.94);
  backdrop-filter: blur(8px);
}

.topnav-inner {
  width: min(var(--container-desktop), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 14px;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1px solid var(--stroke-1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--text-2);
  border: 1px solid transparent;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-1);
  border-color: var(--stroke-1);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--stroke-2);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--text-1);
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0 16px;
  white-space: nowrap;
}

.btn {
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent-1), #3ed4ff);
  color: #072034;
  box-shadow: var(--cta-glow);
}

.btn:hover { background: linear-gradient(135deg, var(--accent-2), #71ebff); }

.btn-secondary {
  border: 1px solid var(--stroke-2);
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.06); }

.subnav {
  position: sticky;
  top: 64px;
  z-index: 35;
  height: 44px;
  border-bottom: 1px solid rgba(230, 242, 255, 0.08);
  background: rgba(8, 16, 30, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
}

.context-nav {
  display: none;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

body.has-context-nav .context-nav {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.subnav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  align-items: center;
}

.subnav-label {
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  margin-right: 8px;
  white-space: nowrap;
}

.subnav a {
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 6px 9px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--text-2);
}

.subnav a.active,
.subnav a:hover {
  color: var(--text-1);
  border-color: var(--stroke-1);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  padding: 78px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.hero-main { grid-column: 1 / span 7; }
.hero-side { grid-column: 8 / span 5; }

.hero-main {
  border: 1px solid rgba(240, 217, 163, 0.22);
  border-radius: 24px;
  padding: 28px;
  background:
    radial-gradient(460px 220px at 8% -4%, rgba(214, 179, 106, 0.1), transparent 62%),
    radial-gradient(560px 300px at 100% 0%, rgba(0, 179, 255, 0.09), transparent 68%),
    linear-gradient(170deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px 0 rgba(240, 217, 163, 0.14), 0 20px 60px rgba(4, 8, 18, 0.42);
}

.eyebrow {
  font-size: var(--small-size);
  line-height: var(--small-lh);
  letter-spacing: 0.08em;
  color: var(--gold-3);
  font-weight: 700;
  margin-bottom: 8px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(214, 179, 106, 0.35);
  background: rgba(214, 179, 106, 0.08);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, var(--h1-size));
  line-height: var(--h1-lh);
  letter-spacing: 0.01em;
  color: var(--gold-1);
  text-wrap: balance;
}

.hero-lead {
  margin: 16px 0 0;
  color: var(--text-2);
  max-width: 640px;
}

.pillars {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pillar {
  background: var(--card-fill);
  border: 1px solid var(--stroke-1);
  border-radius: var(--radius-chip);
  padding: 16px;
}

.pillar strong {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.pillar p {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.45;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero .btn {
  border: 1px solid rgba(240, 217, 163, 0.55);
  background: linear-gradient(140deg, rgba(214, 179, 106, 0.2), rgba(194, 154, 58, 0.08));
  color: var(--gold-1);
  box-shadow: 0 0 0 transparent;
}

.hero .btn:hover {
  background: linear-gradient(140deg, rgba(214, 179, 106, 0.32), rgba(194, 154, 58, 0.16));
}

.card {
  border-radius: var(--radius-card);
  border: 1px solid var(--stroke-1);
  background: var(--card-fill);
  padding: 24px;
  box-shadow: var(--shadow-1);
}

.hero-side.card {
  border-radius: 18px;
}

.snapshot-title {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--text-1);
}

.snapshot-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.snapshot-subtitle {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
}

.snapshot-rows {
  display: grid;
  gap: 10px;
}

.snapshot-row {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--stroke-1);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.snapshot-row-label {
  margin: 0;
  min-width: 120px;
  max-width: 120px;
  color: var(--text-1);
  font-weight: 600;
  font-size: 14px;
}

.label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  color: var(--gold-1);
}

.snapshot-row-text {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.45;
  flex: 1;
}

.status-pill {
  border-radius: 999px;
  min-height: 30px;
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--stroke-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.status-allow { color: var(--ok); border-color: rgba(64, 214, 160, 0.45); }
.status-approval { color: var(--gold-1); border-color: rgba(214, 179, 106, 0.6); }
.status-block { color: var(--err); border-color: rgba(255, 143, 143, 0.45); }

.snapshot-legend {
  margin: 12px 0 0;
  color: var(--text-2);
  font-size: 12px;
}

.kicker-grid,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.kicker-grid,
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card h3,
.card h4 { margin: 0 0 8px; font-family: "Manrope", sans-serif; }
.card p, .card li { color: var(--text-2); }
.card ul, .card ol { margin: 0; padding-left: 20px; }
.card li + li { margin-top: 8px; }
.card li::marker { color: var(--gold-2); }

.pricing-carryover {
  margin-bottom: 16px;
  gap: 10px;
}

.pricing-carryover span {
  color: var(--text-2);
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card h3 {
  margin-bottom: 8px;
}

.price-meta {
  margin: 0 0 10px;
}

.list-label {
  margin: 8px 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
}

.pricing-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.45;
}

.pricing-list li + li {
  margin-top: 4px;
}

.pricing-list li::marker {
  color: var(--gold-2);
}

.pricing-note {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--text-2);
}

.details-link {
  margin-top: 10px;
  font-size: 13px;
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-managed .pricing-card.compact .pricing-list {
  font-size: 14px;
}

.strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  background: rgba(0, 179, 255, 0.035);
}

.accordion-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 14px;
}

.ghost-btn {
  border: 1px solid var(--stroke-2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-1);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.accordion {
  margin: 0;
  border: 1px solid var(--stroke-1);
  border-radius: var(--radius-card);
  background: var(--card-fill);
}

.accordion + .accordion { margin-top: 12px; }

.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; float: right; color: var(--accent-2); }
.accordion[open] summary::after { content: "-"; }

.accordion-body { padding: 0 20px 18px; color: var(--text-2); }

.footer {
  border-top: 1px solid var(--stroke-1);
  padding: 36px 0 48px;
  color: var(--text-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }

.content {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.content.content-wide {
  width: min(var(--container-desktop), calc(100% - 48px));
}

.prose {
  width: 100%;
}

.prose h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.prose h2 {
  margin: 0 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.prose h3 {
  margin: 0 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(22px, 3.4vw, 24px);
  line-height: 1.25;
}

.prose p,
.prose li {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
}

.prose .lead {
  margin: 16px 0 24px;
  font-size: 19px;
}

.prose ul,
.prose ol {
  margin: 0;
  padding-left: 22px;
}

.prose li + li {
  margin-top: 8px;
}

.prose li::marker {
  color: var(--gold-2);
}

.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
}

.page-nav a {
  border: 1px solid var(--stroke-1);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.02);
}

.page-nav a.active,
.page-nav a:hover {
  color: var(--text-1);
  border-color: var(--stroke-2);
  background: rgba(255, 255, 255, 0.05);
}

.panel {
  margin-top: 20px;
  border: 1px solid var(--stroke-1);
  border-radius: 12px;
  padding: 24px;
  background: var(--card-fill);
}

.meta {
  margin: 10px 0 16px;
  font-size: 13px;
  color: var(--text-2);
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 10px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(214, 179, 106, 0.45);
  background: linear-gradient(140deg, rgba(214, 179, 106, 0.22), rgba(194, 154, 58, 0.1));
  color: var(--gold-1);
}

.cta.secondary {
  border-color: var(--stroke-2);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-1);
}

.site-footer {
  border-top: 1px solid var(--stroke-1);
  padding: 30px 24px 44px;
  color: var(--text-2);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(6, 10, 18, 0.72);
  z-index: 70;
}

.modal[aria-hidden="false"] { display: grid; }

.modal-panel {
  width: min(720px, calc(100vw - 30px));
  border: 1px solid var(--stroke-2);
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(11, 18, 32, 0.96), rgba(7, 12, 22, 0.96));
  box-shadow: 0 32px 70px rgba(2, 5, 12, 0.6);
}

.modal-head,
.modal-body,
.modal-actions { padding: 14px 18px; }
.modal-head {
  border-bottom: 1px solid var(--stroke-1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-title {
  margin: 0;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: var(--text-1);
}
.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--stroke-2);
  background: transparent;
  color: var(--text-1);
}

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.field label { display: block; font-size: 12px; color: var(--text-2); margin-bottom: 6px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  color: var(--text-1);
  border: 1px solid var(--stroke-2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px 11px;
  font: inherit;
}
.field textarea { min-height: 120px; grid-column: 1 / -1; }

.modal-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.btn.ghost {
  border: 1px dashed var(--stroke-2);
  background: transparent;
  color: var(--text-2);
}
.hint { color: var(--text-2); font-size: 13px; }

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 14px;
}
.table th,
.table td {
  border-bottom: 1px solid var(--stroke-1);
  padding: 9px;
  text-align: left;
}
.table th { color: var(--text-2); font-weight: 600; }

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
  background: rgba(0, 179, 255, 0.2);
  border: 1px solid rgba(0, 224, 255, 0.36);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  z-index: 80;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --h1-size: 48px;
    --h2-size: 32px;
    --h3-size: 22px;
    --space-7: 56px;
  }
  .container { width: min(var(--container-tablet), calc(100% - 48px)); }
  .hero-grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .hero-main,
  .hero-side { grid-column: 1 / -1; }
  .hero-main { padding: 24px; }
  .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-3,
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topnav { height: 68px; }
  .subnav { top: 68px; }
  .section + .section { margin-top: 32px; }
  .content { width: min(720px, calc(100% - 48px)); padding: 56px 0; }
}

@media (max-width: 880px) {
  .topnav { height: 72px; }
  .topnav-inner { width: min(var(--container-tablet), calc(100% - 32px)); }
  .subnav { top: 72px; }
  .mobile-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--stroke-1);
    background: rgba(11, 18, 32, 0.95);
  }
  .topnav.open .nav-links { display: grid; }

  .pillars,
  .grid-2,
  .grid-3,
  .grid-4,
  .kicker-grid,
  .form-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .snapshot-row {
    grid-template-columns: 1fr;
  }
  .snapshot-row-label {
    min-width: 0;
    max-width: none;
    margin-bottom: 6px;
  }
}

@media (max-width: 520px) {
  :root {
    --space-7: 44px;
  }
  .container { width: min(var(--container-mobile), calc(100% - 24px)); }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(34px, 10vw, 42px); }
  .brand span { display: none; }
  .section + .section { margin-top: 32px; }
  .content {
    width: min(var(--container-mobile), calc(100% - 24px));
    padding: 44px 0;
  }
  .prose p,
  .prose li {
    font-size: 17px;
    line-height: 1.68;
  }
  .pricing-list {
    font-size: 14px;
  }
  .site-footer {
    padding: 24px 16px 34px;
  }
}


