:root {
  --navy: #001640;
  --navy-2: #071f4b;
  --navy-3: #0a2a63;
  --blue: #075ff0;
  --blue-2: #0a72ff;
  --cyan: #00bfc9;
  --teal: #10bfa7;
  --violet: #8d2bdd;
  --orange: #ff7a1a;
  --green: #22b96b;
  --ink: #071a3b;
  --muted: #5d6b84;
  --line: #dce4f0;
  --soft: #f5f8fc;
  --white: #fff;
  --max: 1180px;
  --header: 80px;
  --radius: 22px;
  --shadow: 0 14px 30px rgba(0, 22, 64, 0.11);
  --font: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;

  --grad-btn-start: #0761d8;
  --grad-btn-end: #0655c0;
  --grad-navy-card-start: #06214d;
  --grad-navy-card-end: #001640;
  --grad-compare-start: #08234e;
  --grad-compare-end: #061b3d;
  --grad-violet2-start: #7e2ce2;
  --grad-violet2-end: #5a1ebb;
  --grad-green-start: #0c7a49;
  --grad-green-end: #0a6b3f;
  --grad-orange-start: #b0500a;
  --grad-orange-end: #a8530a;
}

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

html {
  scroll-behavior: smooth;
  background: var(--navy);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  overflow: visible;
  text-wrap: balance;
}

h1,
h2 {
  padding-inline: 0.04em;
  line-height: 1.1;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 2000;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

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

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
}

.section {
  padding: 88px 0;
  scroll-margin-top: calc(var(--header) + 12px);
}

.section.soft {
  background: linear-gradient(180deg, #f8fbff 0%, #f2f6fb 100%);
}

.section.dark {
  background: linear-gradient(180deg, #031b43 0%, #001640 100%);
  color: var(--white);
}

.section.dark .eyebrow {
  color: var(--cyan);
}

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

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section h2,
.hero h1 {
  margin: 0;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.section h2 {
  font-size: clamp(32px, 4.4vw, 52px);
}

.section.dark h2,
.hero h1 {
  color: var(--white);
}

.section-head p,
.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin: 16px 0 0;
}

.section.dark .section-head p,
.section.dark .lede {
  color: rgba(255, 255, 255, 0.74);
}

.accent {
  color: var(--blue-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 22, 64, 0.1);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand img {
  width: 102px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: rgba(0, 22, 64, 0.78);
  padding: 10px 8px;
  border-radius: 999px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: rgba(7, 95, 240, 0.08);
  color: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  padding: 15px 22px;
  min-height: 44px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  background: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--grad-btn-start), var(--grad-btn-end));
  color: var(--white);
  box-shadow: 0 10px 20px rgba(6, 85, 192, 0.25);
}

.btn-secondary {
  background: var(--white);
  border-color: #cdd8e8;
  color: var(--navy);
}

.btn-ghost,
.btn-signin {
  background: transparent;
  border-color: #c9d5e6;
  color: var(--navy);
  padding: 14px 18px;
}

.btn-signin {
  min-width: 92px;
}

.hero .btn-secondary,
.btn-secondary.dark-cta {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: absolute;
  transition: 0.2s;
}

.menu-toggle::before {
  transform: translateY(-7px);
}

.menu-toggle::after {
  transform: translateY(7px);
}

.hero {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header);
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 191, 201, 0.08), transparent 32%),
    linear-gradient(180deg, #001640 0%, #06214d 58%, #001640 100%);
  color: var(--white);
}

.hero .eyebrow,
.contact-card .eyebrow {
  color: var(--cyan);
}

#demo {
  scroll-margin-top: calc(var(--header) + 12px);
}

.form-submit {
  margin-top: 18px;
}

.auth-card .lede {
  margin-bottom: 24px;
}

.auth-card .field {
  margin-bottom: 14px;
}

.auth-card .field:last-of-type {
  margin-bottom: 18px;
}

.auth-card .btn-primary {
  width: 100%;
}

.auth-followup {
  margin: 22px 0 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - var(--header));
  padding: 56px 0 64px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.08;
  max-width: 720px;
  padding-top: 0.08em;
}

.hero .lede {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.hero-points > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.hero-points strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-points span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.45;
  margin-top: 4px;
}

.dot-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 16px;
}

.hero-art {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-frame {
  position: absolute;
  inset: 18px 0 18px 24px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.hero-frame img {
  position: absolute;
  top: 0;
  right: 0;
  width: 230%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right 42%;
  margin: 0;
}

.radar {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  right: 8%;
  top: 10%;
  opacity: 0.6;
  pointer-events: none;
  background: repeating-radial-gradient(circle at center, transparent 0 64px, rgba(255, 255, 255, 0.1) 65px 66px);
}

.radar::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px var(--cyan);
}

.badge-chip {
  position: absolute;
  left: 0;
  bottom: 48px;
  z-index: 2;
  background: linear-gradient(135deg, var(--grad-navy-card-start), var(--grad-navy-card-end));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.metric {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0, 22, 64, 0.06);
}

.gauge {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #04142f 0 48%, transparent 49%),
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.16) 0deg 1.6deg, transparent 1.6deg 15deg),
    conic-gradient(from -90deg, var(--gauge-accent, var(--cyan)) 0deg 252deg, rgba(7, 29, 66, 0.9) 252deg 360deg);
  box-shadow: inset 0 0 0 6px #071d42;
  color: var(--white);
  font-size: 18px;
}

.metric:nth-child(2) .gauge {
  --gauge-accent: var(--blue);
}

.metric:nth-child(3) .gauge {
  --gauge-accent: var(--violet);
}

.metric:nth-child(4) .gauge {
  --gauge-accent: var(--orange);
}

.metric:nth-child(5) .gauge {
  --gauge-accent: var(--green);
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 6px;
}

.metric p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.stat-source {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}

.runway {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(120deg, #eef6ff, #f8fbff);
  border: 1px solid #d7e4f4;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center 42%;
}

.visual.renewals img {
  object-position: 68% 55%;
}

.visual.journey img {
  object-position: 88% 12%;
  transform: scale(1.45);
  transform-origin: 100% 10%;
}

.visual.future img {
  object-position: 50% 92%;
}

.info-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.info-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.info-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 191, 201, 0.14);
  flex: 0 0 auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.benefit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
}

.benefit h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.journey-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 16px;
  min-height: 170px;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  margin-bottom: 12px;
}

.journey-step:nth-child(3) .step-num,
.journey-step:nth-child(8) .step-num {
  background: linear-gradient(135deg, var(--grad-green-start), var(--grad-green-end));
}

.journey-step:nth-child(4) .step-num,
.journey-step:nth-child(9) .step-num {
  background: linear-gradient(135deg, var(--grad-orange-start), var(--grad-orange-end));
}

.journey-step h3 {
  margin: 0 0 6px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.cards.two {
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.stack-gap {
  margin-top: 28px;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid #dbe3ef;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: 0 8px 20px rgba(0, 22, 64, 0.07);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--cyan));
}

.card h3 {
  font-size: 18px;
  margin: 8px 0 10px;
  color: var(--navy);
}

.card p {
  margin: 0;
  color: #596780;
  font-size: 14px;
  line-height: 1.55;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.compare article {
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
}

.compare .now {
  background: #f7f9fc;
}

.compare .next {
  background: linear-gradient(180deg, var(--grad-compare-start), var(--grad-compare-end));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.compare h3 {
  margin: 0 0 14px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare li {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.45;
}

.compare ul {
  margin: 0;
  padding-left: 18px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px 18px;
}

.stat b {
  display: block;
  font-size: 28px;
  color: var(--cyan);
  margin-bottom: 6px;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.flightpath {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}

.flight-step {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 16px;
}

.flight-step .dot {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--blue));
}

.flight-step:nth-child(3) .dot {
  background: linear-gradient(135deg, var(--grad-green-start), var(--grad-green-end));
}

.flight-step:nth-child(4) .dot {
  background: linear-gradient(135deg, var(--grad-orange-start), var(--grad-orange-end));
}

.flight-step:nth-child(5) .dot {
  background: linear-gradient(135deg, var(--grad-violet2-start), var(--grad-violet2-end));
}

.flight-step h3 {
  margin: 0 0 6px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.flight-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-item {
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 52px 20px 22px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 16px;
  font-size: 26px;
  color: var(--blue);
  font-weight: 400;
}

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

.faq-item .answer {
  padding: 0 22px 20px;
  color: #5d6b84;
  line-height: 1.6;
  font-size: 15px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}

.contact-card {
  background: linear-gradient(145deg, var(--grad-navy-card-start), var(--grad-navy-card-end));
  border-radius: 25px;
  padding: 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-card h2 {
  color: var(--white);
  font-size: 34px;
}

.contact-method {
  margin-top: 28px;
}

.contact-method span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}

.contact-method a {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.contact-method a:hover {
  text-decoration: underline;
}

.form-panel {
  background: var(--white);
  border: 1px solid #dbe3ef;
  border-radius: 25px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.form-panel h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 30px;
}

.form-panel > p {
  margin: 0 0 24px;
  color: #62708a;
}

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

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #324462;
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #ced8e6;
  border-radius: 12px;
  padding: 13px 14px;
  background: #fbfdff;
  color: #13284c;
  outline: none;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.btn:focus-visible,
.nav a:focus-visible,
.brand:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(7, 95, 240, 0.28);
  outline-offset: 2px;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 12px;
}

.status {
  margin-top: 14px;
  font-size: 13px;
  color: #0d735e;
  display: none;
}

.site-footer {
  background: #001640;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  gap: 30px;
  padding: 36px 0 28px;
}

.footer-brand {
  display: inline-flex;
  background: var(--white);
  border-radius: 16px;
  padding: 8px 10px;
}

.footer-brand img {
  width: 150px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.55;
  margin-top: 12px;
  max-width: 360px;
}

.footer-col h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin: 3px 0 12px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  padding: 5px 0;
}

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

.footer-bottom {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 22px;
}

.auth-page {
  min-height: calc(100vh - var(--header));
  display: grid;
  place-items: center;
  padding: 48px 0 72px;
  background:
    radial-gradient(circle at 80% 10%, rgba(0, 191, 201, 0.08), transparent 32%),
    linear-gradient(180deg, #f8fbff, #eef3fa);
}

.auth-card {
  width: min(100%, 460px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  margin: 0 0 8px;
  font-size: 32px;
  color: var(--navy);
}

.legal {
  max-width: 800px;
}

.legal h1 {
  font-size: 48px;
  color: var(--navy);
  margin: 0 0 12px;
}

.legal h2 {
  font-size: 24px;
  color: var(--navy);
  margin: 32px 0 10px;
}

.legal p,
.legal li {
  color: #58677f;
  line-height: 1.7;
}

@media (max-width: 1080px) {
  .metrics,
  .cards,
  .stat-row,
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner,
  .split,
  .contact-grid,
  .trust-grid,
  .flightpath {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 420px;
  }

  .hero-frame {
    inset: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 72px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(var(--header) - 2px);
    background: var(--white);
    border: 1px solid #dce4ef;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(0, 22, 64, 0.14);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    white-space: normal;
    flex: none;
  }

  .nav.open {
    display: flex;
  }

  .nav a,
  .header-actions .btn {
    width: 100%;
    text-align: center;
  }

  .nav a {
    padding: 15px 8px;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
  }

  .header-actions .btn-signin {
    display: none;
  }

  .nav.open + .header-actions,
  .nav.open ~ .header-actions {
    display: none;
  }

  .mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
  }

  .metrics,
  .cards,
  .compare,
  .form-grid,
  .benefit-grid,
  .stat-row,
  .journey-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 36px;
  }

  .hero h1 {
    font-size: 42px;
  }
}

@media (min-width: 861px) {
  .mobile-actions {
    display: none;
  }
}

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