:root {
  --navy: #0b1524;
  --navy-2: #111f33;
  --charcoal: #18202c;
  --ink: #1b2431;
  --muted: #5a6678;
  --line: #dce3ec;
  --soft-line: #e9eef5;
  --paper: #f6f8fb;
  --white: #ffffff;
  --accent: #28b6a9;
  --accent-2: #e8b451;
  --warning: #b85c38;
  --shadow: 0 20px 55px rgba(14, 27, 44, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(40, 182, 169, 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  z-index: 20;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--white);
  border-radius: 6px;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 21, 36, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: inline-block;
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(40, 182, 169, 0.75);
  border-radius: 50%;
}

.brand-mark::after {
  inset: 12px;
  background: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 9px 14px;
  color: var(--navy) !important;
  background: var(--accent);
  border-radius: 6px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--white);
}

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 24%, rgba(40, 182, 169, 0.18), transparent 30%),
    linear-gradient(140deg, #08111f 0%, #0c1728 48%, #17263a 100%);
  padding: 92px 0 78px;
  overflow: hidden;
}

.hero-grid,
.section-inner,
.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1,
.section h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4.65rem);
}

.hero-subtitle {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.primary {
  color: #06141f;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(40, 182, 169, 0.22);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.trust-line {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
}

.trade-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 760px;
  margin-top: 20px;
}

.trade-strip span,
.trade-strip strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.trade-strip span {
  color: rgba(255, 255, 255, 0.66);
  padding-left: 0;
}

.trade-strip strong {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.radar-panel {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 34px 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.coverage-panel {
  position: absolute;
  inset: 24px 24px auto 24px;
  min-height: 296px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(7, 16, 28, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.coverage-label {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coverage-label strong {
  color: var(--accent);
  white-space: nowrap;
}

.coverage-map-board {
  position: relative;
  height: 326px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 6px);
  background:
    radial-gradient(circle at 48% 56%, rgba(40, 182, 169, 0.23), transparent 52%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.coverage-map-image {
  position: absolute;
  width: 88%;
  max-width: none;
  height: auto;
  left: 6%;
  top: 18px;
  opacity: 0.5;
  filter: grayscale(1) invert(1) brightness(1.28) contrast(1.5) sepia(0.34) hue-rotate(132deg) saturate(1.16);
  mix-blend-mode: screen;
}

.coverage-map-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 16, 28, 0.02), rgba(7, 16, 28, 0.46)),
    radial-gradient(circle at 47% 56%, rgba(40, 182, 169, 0.16), transparent 42%);
  pointer-events: none;
}

.coverage-radar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.coverage-radar circle {
  fill: none;
  stroke: rgba(40, 182, 169, 0.18);
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
}

.radar-sweep {
  fill: rgba(40, 182, 169, 0.11);
  opacity: 0.66;
  transform-origin: 350px 76px;
  animation: radarSweep 10s linear infinite;
}

@keyframes radarSweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes markerPulse {
  0%,
  100% {
    opacity: 0.78;
  }

  50% {
    opacity: 1;
  }
}

.panel-card {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(8, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.panel-card-header,
.signal-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.panel-card-header {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.panel-card-header strong {
  color: var(--accent-2);
}

.signal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signal-list li {
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-list strong {
  color: var(--accent);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.section {
  padding: 88px 0;
}

.section[id],
.hero {
  scroll-margin-top: 180px;
}

.section.light {
  background: var(--white);
}

.section.dark {
  color: var(--white);
  background: var(--navy);
}

.section.preview-section {
  background: #edf3f8;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.section-inner.narrow p,
.two-column p,
.form-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

.dark .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.narrow {
  max-width: 880px;
}

.problem-section {
  background: linear-gradient(180deg, #ffffff, #f6f8fb);
}

.questions-section {
  padding-top: 62px;
  padding-bottom: 62px;
  background: #eef4f8;
}

.section-heading.compact {
  margin-bottom: 22px;
}

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

.question-card {
  padding: 22px;
  border: 1px solid var(--soft-line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(12, 26, 45, 0.07);
}

.question-card h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
}

.question-card p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.six-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.step-card,
.mini-card,
.fit-card,
.interest-form,
.form-note {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--soft-line);
  box-shadow: 0 12px 34px rgba(12, 26, 45, 0.08);
}

.feature-card,
.step-card,
.mini-card,
.fit-card {
  padding: 24px;
}

.feature-card h3,
.step-card h3,
.mini-card h3,
.fit-card h3 {
  margin: 0 0 10px;
  line-height: 1.2;
}

.feature-card p,
.step-card p,
.mini-card p,
.fit-card p {
  margin: 0;
  color: var(--muted);
}

.fit-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.fit-card li + li {
  margin-top: 8px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: #0b4a44;
  background: rgba(40, 182, 169, 0.13);
  border: 1px solid rgba(40, 182, 169, 0.28);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.step-card {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.11);
}

.step-card p {
  color: rgba(255, 255, 255, 0.72);
}

.step-number {
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 28px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 52px;
  align-items: start;
}

.difference-section {
  background:
    linear-gradient(rgba(11, 21, 36, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 21, 36, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #f7fafc);
  background-size: 34px 34px, 34px 34px, auto;
}

.framework-heading {
  max-width: 900px;
}

.framework-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin: 0 0 14px;
  padding: 6px 10px;
  color: #0a554e;
  background: rgba(40, 182, 169, 0.13);
  border: 1px solid rgba(40, 182, 169, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.framework-card {
  grid-column: span 3;
  min-height: 238px;
  padding: 22px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.74), transparent 148px),
    #fffdfa;
  border: 1px solid #e5dfd4;
  border-left: 5px solid var(--accent-2);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(18, 30, 48, 0.1);
}

.framework-card.wide {
  grid-column: span 6;
  min-height: auto;
}

.framework-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  color: #6b3e08;
  background: rgba(232, 180, 81, 0.2);
  border: 1px solid rgba(232, 180, 81, 0.42);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.framework-badge.teal {
  color: #0a554e;
  background: rgba(40, 182, 169, 0.14);
  border-color: rgba(40, 182, 169, 0.34);
}

.framework-badge.caution {
  color: #77371f;
  background: rgba(184, 92, 56, 0.12);
  border-color: rgba(184, 92, 56, 0.28);
}

.framework-card h3 {
  margin: 16px 0 9px;
  color: #152130;
  font-size: 1.35rem;
  line-height: 1.16;
}

.framework-card p {
  margin: 0;
  color: #4b586a;
}

.micro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 17px;
}

.micro-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  color: #3d4a5b;
  background: var(--white);
  border: 1px solid #dde5ee;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  gap: 24px;
  align-items: start;
}

.preview-layout.upgraded-preview {
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
}

.preview-list {
  display: grid;
  gap: 14px;
}

.briefing-stack {
  display: grid;
  gap: 18px;
}

.report-card {
  padding: 24px 24px 22px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.75), transparent 190px),
    #fffdfa;
  border: 1px solid #e5dfd4;
  border-left: 6px solid var(--accent-2);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(18, 30, 48, 0.13);
}

.featured-report {
  padding: 28px;
}

.compact-report {
  border-left-color: var(--warning);
}

.report-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.report-badges,
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge,
.trade-label,
.score-pill,
.service-chips span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-weight: 900;
}

.badge {
  min-height: 28px;
  padding: 6px 9px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge.teal {
  color: #0a554e;
  background: rgba(40, 182, 169, 0.15);
  border: 1px solid rgba(40, 182, 169, 0.34);
}

.badge.amber {
  color: #6b3e08;
  background: rgba(232, 180, 81, 0.2);
  border: 1px solid rgba(232, 180, 81, 0.42);
}

.score-pill {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(11, 21, 36, 0.18);
}

.demo-label {
  margin: 0 0 10px;
  color: var(--warning);
  font-size: 0.84rem;
  font-weight: 850;
}

.report-card h3 {
  margin: 0;
  color: #152130;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.14;
}

.compact-report h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.report-meta {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.report-meta span {
  display: block;
  margin-top: 3px;
}

.trade-label {
  width: fit-content;
  margin: 14px 0 18px;
  padding: 7px 10px;
  color: #123c38;
  background: rgba(40, 182, 169, 0.12);
  border: 1px solid rgba(40, 182, 169, 0.28);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.report-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.report-section-grid section {
  padding: 13px 14px;
  background: rgba(246, 248, 251, 0.74);
  border: 1px solid #e7edf4;
  border-radius: 7px;
}

.report-section-grid section:nth-last-child(-n + 2),
.report-section-grid.compact section:nth-last-child(-n + 2) {
  grid-column: 1 / -1;
}

.report-section-grid h4 {
  margin: 0 0 5px;
  color: #334054;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.report-section-grid p {
  margin: 0;
  color: #3f4b5c;
}

.service-chips {
  margin-top: 16px;
}

.service-chips span {
  min-height: 28px;
  padding: 5px 9px;
  color: #324052;
  background: var(--white);
  border: 1px solid #dde5ee;
  font-size: 0.76rem;
}

.source-line {
  margin: 16px 0 0;
  padding-top: 12px;
  color: var(--muted);
  border-top: 1px solid #e7edf4;
  font-size: 0.9rem;
  font-weight: 750;
}

.founding-section {
  background: var(--white);
}

.fit-card {
  border-top: 4px solid var(--accent);
}

.form-section {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(40, 182, 169, 0.16), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: start;
}

.form-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.form-note {
  padding: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.form-note strong,
.form-note span {
  display: block;
}

.form-note strong {
  color: var(--white);
  margin-bottom: 4px;
}

.interest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px 26px 26px;
  color: var(--ink);
}

.field-full,
.form-button,
.form-success,
.form-error,
.form-fallback {
  grid-column: 1 / -1;
}

label,
legend {
  display: block;
  margin-bottom: 6px;
  color: #2e3949;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cfd8e5;
  border-radius: 7px;
  font: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  margin: 0;
  padding: 14px;
  border: 1px solid #cfd8e5;
  border-radius: 7px;
}

.radio-row,
.check-row {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 16px 0 0;
  font-weight: 600;
}

.radio-row input,
.check-row input {
  width: auto;
  min-height: auto;
}

.checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  padding: 14px;
  border: 1px solid #cfd8e5;
  border-radius: 7px;
}

.radio-group legend {
  margin-bottom: 8px;
}

.checkbox-heading {
  margin: 0 0 10px;
  color: #2e3949;
  font-weight: 750;
}

.form-success,
.form-error {
  margin: 0;
  padding: 13px 14px;
  border-radius: 7px;
}

.form-success {
  color: #0f3f35;
  background: #ddf6ef;
  border: 1px solid #9fe5d0;
}

.form-error {
  color: #6f2518;
  background: #fff1ed;
  border: 1px solid #f2b49f;
}

.form-fallback {
  margin: -2px 0 0;
  color: #2e3949;
  font-size: 0.92rem;
}

.form-fallback a,
.form-error a {
  color: #0b6057;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #07101c;
  padding: 42px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.3rem;
}

.site-footer p {
  margin: 0;
}

.domain-text {
  margin-top: 10px !important;
  color: var(--accent);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.78);
}

.disclaimer {
  width: min(var(--max), calc(100% - 40px));
  margin: 30px auto 0 !important;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .hero-grid,
  .preview-layout,
  .two-column,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .radar-panel {
    min-height: 560px;
  }

  .six-grid,
  .steps,
  .question-grid,
  .preview-layout.upgraded-preview,
  .framework-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .framework-card,
  .framework-card.wide {
    grid-column: span 1;
  }

}

@media (max-width: 680px) {
  .nav-shell,
  .hero-grid,
  .section-inner,
  .footer-inner,
  .disclaimer {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 58px;
  }

  .section {
    padding: 62px 0;
  }

  .six-grid,
  .steps,
  .question-grid,
  .preview-layout.upgraded-preview,
  .report-section-grid,
  .framework-grid,
  .checkbox-group,
  .interest-form {
    grid-template-columns: 1fr;
  }

  .framework-card,
  .framework-card.wide {
    grid-column: span 1;
  }

  .report-section-grid section:nth-last-child(-n + 2),
  .report-section-grid.compact section:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .radar-panel {
    min-height: 590px;
  }

  .coverage-panel {
    inset: 16px 16px auto 16px;
    min-height: 256px;
    padding: 14px;
  }

  .coverage-label {
    display: block;
  }

  .coverage-label strong {
    display: block;
    margin-top: 3px;
  }

  .coverage-map-board {
    height: 282px;
  }

  .coverage-map-image {
    width: 98%;
    left: 1%;
    top: 24px;
  }

  .panel-card {
    left: 24px;
    right: 24px;
    bottom: 16px;
    padding: 14px 16px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .radar-sweep {
    animation: none;
  }

  .button:hover {
    transform: none;
  }
}
