:root {
  --home-ink: #10221c;
  --home-muted: #52645d;
  --home-green: #0a4d3c;
  --home-green-strong: #063b2f;
  --home-green-soft: #e9f3ee;
  --home-mint: #9be8c9;
  --home-amber: #f2b84b;
  --home-paper: #fbfcfa;
  --home-line: #dce5e0;
  --home-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f3f6f3;
  color: var(--home-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

.loading {
  display: block;
  min-height: 100vh;
  padding: 0;
  color: var(--home-ink);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 280ms ease, transform 280ms ease;
}

.loading p {
  max-width: none;
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
  opacity: 1;
}

.loading.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.site-header {
  position: relative;
  z-index: 20;
  height: 72px;
  border-bottom: 1px solid var(--home-line);
  background: rgba(251, 252, 250, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-ink);
  font-size: 20px;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  margin-right: 30px;
}

.site-nav a {
  color: #33473f;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--home-green);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--home-green);
  border-radius: 8px;
  background: var(--home-green);
  color: var(--home-white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  height: calc(100svh - 112px);
  min-height: 600px;
  max-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line);
  background: var(--home-paper);
}

.hero-inner {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  padding-top: 36px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--home-green);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #19a875;
  box-shadow: 0 0 0 4px #dff3e9;
}

.hero h1 {
  max-width: 940px;
  margin: 0;
  color: var(--home-ink);
  font-size: 58px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 span {
  color: #16745d;
}

.hero-lead {
  max-width: 720px;
  margin: 17px 0 0;
  color: var(--home-muted);
  font-size: 17px;
  line-height: 1.55;
}

.paid-route-context {
  display: grid;
  gap: 3px;
  width: min(620px, 100%);
  margin: 16px auto 0;
  padding: 11px 14px;
  border: 1px solid #bfe8d9;
  border-radius: 10px;
  background: #effaf5;
  color: #0a4d3c;
  text-align: left;
}

.paid-route-context[hidden] {
  display: none;
}

.paid-route-context strong {
  font-size: 13px;
}

.paid-route-context span {
  color: #416257;
  font-size: 13px;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.static-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 6px 7px 6px 20px;
  border: 1px solid var(--home-green);
  border-radius: 8px;
  background: var(--home-green);
  color: var(--home-white);
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(10, 77, 60, 0.16);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.static-cta:hover,
.static-cta:focus-visible {
  background: var(--home-green-strong);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(10, 77, 60, 0.2);
  outline: 3px solid rgba(10, 77, 60, 0.18);
  outline-offset: 3px;
}

.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #062e25;
  color: var(--home-white);
  font-size: 19px;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 10px;
  color: var(--home-green);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 17px 0 0;
  padding: 0;
  color: #43574f;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.trust-bar li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-bar li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #dff3e9;
  color: #087451;
  font-size: 12px;
  font-weight: 900;
}

.hero-price-note {
  max-width: 620px;
  margin: 12px auto 0;
  color: #52645d;
  font-size: 12px;
  line-height: 1.45;
}

.progress-rail {
  display: none;
  width: min(320px, 78vw);
  height: 6px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #d8e8e1;
}

.loading.is-booting .progress-rail {
  display: block;
}

.loading.is-booting [data-load-app] {
  pointer-events: none;
  opacity: 0.72;
}

.progress-rail::after {
  content: "";
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: var(--home-green);
  animation: home-progress 1.2s ease-in-out infinite;
}

@keyframes home-progress {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(245%); }
}

.phone-stage {
  position: relative;
  min-height: 260px;
  margin-top: 22px;
}

.phone-shadow {
  position: absolute;
  top: 282px;
  left: 50%;
  width: 510px;
  height: 45px;
  border-radius: 50%;
  background: rgba(10, 77, 60, 0.13);
  filter: blur(18px);
  transform: translateX(-50%);
}

.phone-shell {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(388px, calc(100vw - 42px));
  height: 620px;
  padding: 11px;
  border: 1px solid #26342f;
  border-radius: 48px;
  background: #0b1411;
  box-shadow: 0 28px 60px rgba(16, 34, 28, 0.22), 0 8px 20px rgba(16, 34, 28, 0.12);
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 37px;
  background: var(--home-white);
}

.phone-notch {
  position: absolute;
  z-index: 4;
  top: 19px;
  left: 50%;
  width: 112px;
  height: 27px;
  border-radius: 18px;
  background: #07100d;
  transform: translateX(-50%);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  padding: 0 22px;
  color: #15251f;
  font-size: 11px;
  font-weight: 800;
}

.phone-signal {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.phone-signal i {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: #15251f;
}

.phone-signal i:nth-child(1) { height: 5px; }
.phone-signal i:nth-child(2) { height: 8px; }
.phone-signal i:nth-child(3) { height: 11px; }

.phone-appbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 20px 13px;
  border-bottom: 1px solid #edf0ee;
}

.phone-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 850;
}

.phone-brand img {
  width: 25px;
  height: 25px;
  border-radius: 6px;
}

.example-tag {
  color: #65766f;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-content {
  padding: 17px 19px 28px;
}

.report-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: #087451;
  font-size: 11px;
  font-weight: 850;
}

.report-status::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #def3e8;
  font-size: 11px;
}

.value-summary {
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 17px;
  padding: 16px;
  border: 1px solid #dce8e2;
  border-radius: 8px;
  background: #f7faf8;
}

.radar {
  position: relative;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  background: conic-gradient(var(--home-green) 0deg 288deg, #dbe8e1 288deg 360deg);
}

.radar::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--home-white);
  box-shadow: inset 0 0 0 1px #e2ebe6;
}

.radar-copy {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--home-green);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
}

.radar-copy strong {
  font-size: 26px;
  line-height: 1;
}

.value-copy span,
.value-copy small {
  display: block;
}

.value-copy span {
  color: #60726a;
  font-size: 11px;
  font-weight: 750;
}

.value-copy strong {
  display: block;
  margin: 3px 0 4px;
  color: var(--home-green);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.value-copy small {
  color: #74837d;
  font-size: 9px;
  line-height: 1.35;
}

.report-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 18px 0 8px;
}

.report-heading h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: 14px;
  line-height: 1.2;
}

.report-heading span {
  color: #718078;
  font-size: 10px;
  font-weight: 700;
}

.report-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #e5ebe8;
  list-style: none;
}

.report-list li {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 49px;
  border-bottom: 1px solid #e5ebe8;
}

.report-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-amber);
}

.report-dot.green { background: #21a978; }
.report-dot.grey { background: #95a49e; }

.report-item-copy strong,
.report-item-copy span {
  display: block;
}

.report-item-copy strong {
  color: #263a32;
  font-size: 11px;
  line-height: 1.25;
}

.report-item-copy span {
  margin-top: 2px;
  color: #718078;
  font-size: 9px;
}

.report-level {
  color: #586961;
  font-size: 9px;
  font-weight: 800;
}

.process-section,
.intent-section,
.confidence-section,
.resource-section {
  width: 100%;
}

.process-section {
  padding: 84px 20px;
  background: var(--home-white);
}

.section-inner {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: var(--home-green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.section-heading h2,
.intent-heading h2,
.confidence-copy h2 {
  margin: 0;
  color: var(--home-ink);
  font-size: 38px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading > p:last-child,
.intent-heading > p:last-child,
.confidence-copy > p {
  margin: 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.6;
}

.steps-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.step-card {
  min-height: 224px;
  padding: 28px 34px 28px 0;
  border: 0;
  border-right: 1px solid var(--home-line);
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.step-card + .step-card {
  padding-left: 34px;
}

.step-card:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border: 1px solid #bcd1c7;
  border-radius: 50%;
  color: var(--home-green);
  font-size: 13px;
  font-weight: 900;
}

.step-card h3 {
  margin: 0 0 8px;
  color: var(--home-ink);
  font-size: 18px;
  line-height: 1.25;
}

.step-card p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.step-card .price-tag {
  display: block;
  margin-top: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--home-green);
  font-size: 12px;
  font-weight: 850;
}

.intent-section {
  padding: 82px 20px;
  border-top: 1px solid #d8e5df;
  border-bottom: 1px solid #d8e5df;
  background: var(--home-green-soft);
}

.intent-heading {
  max-width: 690px;
  margin-bottom: 34px;
}

.intent-heading > p:last-child {
  margin-top: 14px;
}

.intent-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  margin: 0;
}

.intent-card {
  display: flex;
  min-height: 244px;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border: 1px solid #cadbd3;
  border-radius: 8px;
  background: var(--home-white);
  color: var(--home-ink);
  text-align: left;
  text-decoration: none;
  box-shadow: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.intent-card::before {
  content: attr(data-number);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  margin-bottom: 8px;
  border-radius: 50%;
  background: #edf5f1;
  color: var(--home-green);
  font-size: 11px;
  font-weight: 900;
}

.intent-card.primary {
  border-top: 4px solid var(--home-amber);
  background: var(--home-white);
}

.intent-card:hover,
.intent-card:focus-visible {
  border-color: #83aa99;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(16, 34, 28, 0.09);
  outline: 3px solid rgba(10, 77, 60, 0.15);
  outline-offset: 3px;
}

.intent-card strong {
  color: var(--home-ink);
  font-size: 18px;
  line-height: 1.25;
}

.intent-card span {
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.5;
}

.intent-card .card-cta {
  margin-top: auto;
  color: var(--home-green);
  font-size: 14px;
  font-weight: 850;
}

.micro-note {
  max-width: 780px;
  margin: 22px 0 0;
  color: #607169;
  font-size: 13px;
  line-height: 1.5;
}

.partner-section {
  padding: 70px 20px;
  border-bottom: 1px solid #d8e5df;
  background: #f7faf8;
}

.partner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 72px;
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.partner-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--home-ink);
  font-size: 36px;
  font-weight: 850;
  line-height: 1.08;
}

.partner-copy > p:not(.section-eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--home-muted);
  font-size: 16px;
  line-height: 1.6;
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--home-green);
  border-radius: 8px;
  background: var(--home-green);
  color: var(--home-white);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.partner-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 18px;
  line-height: 1;
}

.partner-cta:hover,
.partner-cta:focus-visible {
  background: var(--home-green-strong);
  box-shadow: 0 12px 24px rgba(16, 34, 28, 0.14);
  outline: 3px solid rgba(10, 77, 60, 0.15);
  outline-offset: 3px;
  transform: translateY(-2px);
}

.partner-link {
  color: var(--home-green);
  font-size: 14px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.partner-points {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--home-line);
  list-style: none;
}

.partner-points li {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-bottom: 1px solid var(--home-line);
}

.partner-points strong {
  color: var(--home-ink);
  font-size: 16px;
}

.partner-points span {
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.5;
}

.confidence-section {
  padding: 78px 20px;
  background: var(--home-green);
  color: var(--home-white);
}

.confidence-inner {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 90px;
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.confidence-copy .section-eyebrow,
.confidence-copy h2,
.confidence-copy > p {
  color: var(--home-white);
}

.confidence-copy > p {
  margin-top: 16px;
  opacity: 0.82;
}

.confidence-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  list-style: none;
}

.confidence-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.confidence-list li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--home-mint);
  color: var(--home-green-strong);
  font-size: 12px;
  font-weight: 900;
}

.static-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.confidence-section .static-cta {
  border-color: var(--home-white);
  background: var(--home-white);
  color: var(--home-green);
  box-shadow: none;
}

.confidence-section .static-cta .cta-arrow {
  background: var(--home-green-strong);
  color: var(--home-white);
}

.confidence-section .static-cta.secondary {
  min-height: 52px;
  padding: 0 18px;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--home-white);
}

.legal-note {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.5;
}

.resource-section {
  padding: 30px 20px 56px;
  background: #f3f6f3;
}

.all-guides {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.all-guides summary {
  cursor: pointer;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid #cfdad5;
  border-radius: 0;
  color: var(--home-green);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  list-style: none;
}

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

.all-guides summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  font-weight: 500;
}

.all-guides[open] summary::after {
  content: "−";
}

.seo-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  max-width: none;
  margin: 20px 0 0;
  padding: 0;
}

.seo-links a {
  padding: 8px 10px;
  border: 1px solid #d0dcd6;
  border-radius: 6px;
  background: var(--home-white);
  color: var(--home-green);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  z-index: 10000;
  top: -52px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--home-white);
  color: var(--home-green);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.skip-link:focus {
  top: 12px;
  outline: 3px solid rgba(10, 77, 60, 0.22);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

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

  .section-heading,
  .confidence-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .confidence-inner {
    gap: 40px;
  }

  .steps-pricing,
  .intent-cards {
    grid-template-columns: 1fr;
  }

  .step-card,
  .step-card + .step-card {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .step-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .site-header {
    height: 64px;
  }

  .header-inner,
  .hero-inner {
    width: min(100% - 28px, 1180px);
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    height: calc(100svh - 100px);
    min-height: 570px;
    max-height: 744px;
  }

  .hero-inner {
    padding-top: 25px;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .hero-lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
  }

  .paid-route-context {
    margin-top: 12px;
    padding: 10px 12px;
  }

  .hero-actions {
    width: 100%;
    margin-top: 18px;
  }

  .hero-actions .static-cta {
    flex: 1;
    max-width: 310px;
  }

  .hero-actions .text-link {
    display: none;
  }

  .trust-bar {
    gap: 7px 14px;
    margin-top: 14px;
    font-size: 11px;
  }

  .trust-bar li:last-child {
    display: none;
  }

  .phone-stage {
    margin-top: 16px;
  }

  .phone-shell {
    height: 590px;
    border-radius: 42px;
  }

  .phone-screen {
    border-radius: 32px;
  }

  .phone-content {
    padding: 14px 15px 24px;
  }

  .value-summary {
    grid-template-columns: 88px 1fr;
    gap: 13px;
    padding: 13px;
  }

  .radar {
    width: 84px;
    height: 84px;
  }

  .value-copy strong {
    font-size: 27px;
  }

  .process-section,
  .intent-section,
  .partner-section,
  .confidence-section {
    padding: 60px 18px;
  }

  .section-heading h2,
  .intent-heading h2,
  .confidence-copy h2 {
    font-size: 30px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .intent-card {
    min-height: 218px;
  }

  .static-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .confidence-section .static-cta.secondary {
    justify-content: center;
  }

  .partner-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .partner-copy h2 {
    font-size: 30px;
  }

  .partner-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-cta {
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 390px) {
  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .header-cta {
    padding: 0 10px;
    font-size: 12px;
  }

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

  .hero-lead {
    font-size: 14px;
  }

}

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

  .loading,
  .static-cta,
  .intent-card {
    transition: none;
  }

  .progress-rail::after {
    animation: none;
  }
}
