:root {
  --bg: #07070d;
  --bg-alt: #09090f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-chip: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --orange: #c84420;
  --amber: #ff8450;
  --text: #ededef;
  --muted: rgba(237, 237, 239, 0.52);
  --dim: rgba(237, 237, 239, 0.3);
  --alert: #ff7d73;
  --success: #74e0b2;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.65);
  --nav-h: 68px;
  --radius: 12px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(224, 76, 40, 0.11) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.045)'/%3E%3C/svg%3E");
  background-size:
    100% 100%,
    28px 28px;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.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: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(24px) saturate(180%);
  background: rgba(7, 7, 13, 0.82);
  border-bottom: 1px solid var(--border);
}

.site-header-inner {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: auto;
  height: 36px;
  max-width: none;
  aspect-ratio: 161 / 120;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.top-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.top-nav .nav-cta {
  margin-left: auto;
  padding: 9px 20px;
  border-radius: 7px;
  border: 1px solid rgba(224, 76, 40, 0.3);
  background: rgba(224, 76, 40, 0.12);
  color: var(--amber);
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.top-nav .nav-cta:hover {
  background: rgba(224, 76, 40, 0.22);
  border-color: rgba(224, 76, 40, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(224, 76, 40, 0.2);
}

.top-nav .nav-parent {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) 24px 56px;
}

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

.hero-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 14s ease-in-out infinite alternate;
}

.hero-orb--1 {
  width: 680px;
  height: 560px;
  top: -20%;
  right: -12%;
  background: radial-gradient(circle, rgba(224, 76, 40, 0.18) 0%, transparent 70%);
}

.hero-orb--2 {
  width: 440px;
  height: 440px;
  bottom: 5%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 121, 64, 0.12) 0%, transparent 70%);
  animation-delay: -7s;
  animation-duration: 18s;
}

.hero-orb--3 {
  width: 360px;
  height: 320px;
  top: 30%;
  left: 30%;
  background: radial-gradient(circle, rgba(80, 60, 220, 0.12) 0%, transparent 70%);
  animation-delay: -4s;
  animation-duration: 22s;
}

@keyframes orbFloat {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(24px, 18px) scale(1.05);
  }

  100% {
    transform: translate(-16px, 36px) scale(0.97);
  }
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 22px;
  background: rgba(224, 76, 40, 0.1);
  border: 1px solid rgba(224, 76, 40, 0.25);
  color: var(--amber);
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.7rem, 5.1vw, 4rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.hero-subhead {
  max-width: 480px;
  margin: 18px 0 0;
  color: rgba(237, 237, 239, 0.58);
  font-size: 1.02rem;
  line-height: 1.68;
}

.hero-body,
.section-intro p,
.trust-strip p,
#result-narrative,
#cta-copy,
.editorial-grid p,
.faq-list p,
.assumptions p,
.final-cta-inner p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.hero-body {
  max-width: 560px;
  margin-top: 10px;
}

.hero-actions,
.stepper-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 12px rgba(224, 76, 40, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--amber);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 6px 24px rgba(224, 76, 40, 0.45);
}

.button-secondary {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--text);
  border-color: var(--border-strong);
}

.button-block {
  width: 100%;
}

.hero-note {
  margin-top: 14px;
  color: var(--dim);
  font-size: 0.92rem;
}

.inline-link,
.text-link {
  color: var(--amber);
  text-decoration: underline;
  text-decoration-color: rgba(255, 132, 80, 0.35);
  text-underline-offset: 0.18em;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
}

.inline-link:hover,
.text-link:hover,
.inline-link:focus-visible,
.text-link:focus-visible {
  color: #ffd1bf;
  text-decoration-color: currentColor;
}

.hero-stats {
  display: flex;
  align-items: stretch;
  width: fit-content;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
}

.stat {
  padding: 13px 20px;
  text-align: center;
}

.stat-n {
  display: block;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
}

.stat-l {
  display: block;
  margin-top: 4px;
  color: var(--dim);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  background: var(--border);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-frame {
  width: 100%;
  max-width: 470px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at bottom, rgba(224, 76, 40, 0.15) 0%, transparent 65%),
    linear-gradient(180deg, rgba(11, 13, 20, 0.96), rgba(8, 10, 15, 0.98));
  box-shadow: var(--shadow-lg);
}

.visual-label {
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.visual-metric {
  margin-top: 14px;
}

.visual-metric span,
.hero-bar span,
.chart-meta span,
.score-band span,
.cost-grid span,
.result-kicker {
  display: block;
  color: var(--dim);
  font-size: 0.82rem;
}

.visual-metric strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 0.95;
}

.visual-metric strong span {
  display: inline;
  font-size: 1rem;
  opacity: 0.65;
}

.hero-bars {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.hero-bar div,
.bar-track {
  position: relative;
  overflow: hidden;
  height: 0.8rem;
  margin: 8px 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-bar i,
.bar-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9965, #e04c28);
}

.hero-bar strong {
  font-size: 1.05rem;
}

.visual-quote {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.visual-quote p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.marquee-wrap {
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.012);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  color: var(--dim);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.marquee-track .sep {
  color: var(--orange);
  font-size: 0.55rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.section,
.calculator-shell,
.editorial-section,
.faq-section,
.final-cta {
  padding: 112px 0;
}

.section--alt {
  background: var(--bg-alt);
  background-image: radial-gradient(ellipse at 80% 0%, rgba(80, 60, 220, 0.04) 0%, transparent 60%);
}

.calculator-shell,
.editorial-section,
.faq-section,
.final-cta {
  width: 100%;
}

.section-intro,
.trust-strip,
.calculator-layout,
.assumptions,
.editorial-section > .section-intro,
.editorial-section > .editorial-grid,
.faq-section > .section-intro,
.faq-list,
.final-cta-inner {
  width: min(1120px, calc(100vw - 48px));
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  margin-bottom: 36px;
}

.section-intro h2 {
  margin-top: 12px;
}

.section-intro p:last-child {
  max-width: 580px;
  margin-top: 16px;
}

.trust-strip {
  margin-bottom: 40px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.form-panel,
.results-sticky,
.assumptions,
.faq-list details,
.final-cta-inner,
.editorial-grid article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.form-panel:hover,
.results-sticky:hover,
.faq-list details:hover,
.editorial-grid article:hover {
  background: var(--bg-chip);
  border-color: rgba(224, 76, 40, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.form-panel {
  padding: 30px 24px 28px;
}

.results-panel {
  position: relative;
}

.results-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  padding: 24px;
}

.input-group {
  margin: 0;
  padding: 26px 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.input-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.input-group legend {
  padding: 0 0 18px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 22px;
}

.field-grid-single {
  grid-template-columns: 1fr;
}

label {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  align-content: start;
}

label span {
  line-height: 1.5;
}

input,
select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus,
summary:focus-visible,
.button:focus-visible,
.project-options input:focus-visible + span {
  outline: 2px solid rgba(224, 76, 40, 0.4);
  outline-offset: 3px;
}

.currency-field {
  position: relative;
}

.currency-field i {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: var(--muted);
  font-style: normal;
}

.currency-field input {
  padding-left: 30px;
}

.segmented-label {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.project-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: start;
}

.project-options label {
  position: relative;
  display: inline-flex;
}

.project-options input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.project-options span {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  padding: 0.78rem 1.08rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  line-height: 1.2;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.segmented-label + .field-grid {
  margin-top: 4px;
}

.project-options input:checked + span {
  background: rgba(224, 76, 40, 0.14);
  border-color: rgba(224, 76, 40, 0.28);
  color: var(--amber);
}

.mobile-stepper {
  display: none;
}

.stepper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.stepper-track {
  height: 0.45rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.stepper-track i {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #ff9965, #e04c28);
  transition: width 0.22s ease;
}

.stepper-actions {
  justify-content: space-between;
}

.result-state h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.08;
}

.result-state[data-tone="stay"] .result-kicker,
.result-state[data-tone="stay"] .score-band strong,
.result-state[data-tone="stay"] .cta-panel p {
  color: var(--alert);
}

.result-state[data-tone="hybrid"] .result-kicker,
.result-state[data-tone="hybrid"] .score-band strong,
.result-state[data-tone="hybrid"] .cta-panel p {
  color: var(--amber);
}

.result-state[data-tone="custom"] .result-kicker,
.result-state[data-tone="custom"] .score-band strong,
.result-state[data-tone="custom"] .cta-panel p {
  color: var(--success);
}

.score-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.score-band strong,
.cost-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.result-reasons,
.chart-block,
.cta-panel {
  margin-top: 22px;
}

.result-reasons h3,
.chart-head h3 {
  font-size: 0.95rem;
  font-weight: 700;
}

.result-reasons ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.cost-grid article {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.chart-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.chart-bars {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.chart-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.bar-track i {
  transition: width 0.42s ease;
}

.cta-panel {
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.assumptions {
  margin-top: 28px;
  padding: 20px 24px;
}

.assumptions summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

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

.assumptions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.assumptions article {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.assumptions h3 {
  font-size: 0.95rem;
  font-weight: 700;
}

.assumptions code {
  display: block;
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  white-space: normal;
  line-height: 1.6;
}

.bridge-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(224, 76, 40, 0.08), transparent 35%);
}

.bridge-grid,
.site-footer-inner {
  width: min(1120px, calc(100vw - 48px));
  margin-left: auto;
  margin-right: auto;
}

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

.bridge-grid article {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.bridge-grid article:hover {
  background: var(--bg-chip);
  border-color: rgba(224, 76, 40, 0.3);
  transform: translateY(-3px);
}

.bridge-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.bridge-grid .text-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 600;
}

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

.editorial-grid article {
  padding: 28px;
}

.editorial-grid h3,
.faq-list summary {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.editorial-section-contrast {
  background: var(--bg-alt);
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
}

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

.faq-list p {
  margin: 12px 0 0;
}

.final-cta-inner {
  padding: 32px;
  background:
    radial-gradient(circle at top left, rgba(224, 76, 40, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.03);
}

.final-cta-inner h2 {
  max-width: 16ch;
  margin-top: 10px;
}

.final-cta-inner p {
  max-width: 640px;
  margin: 16px 0 22px;
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--border);
}

.site-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.site-footer-inner p {
  margin: 0;
  color: var(--dim);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.mobile-result-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  display: none;
  min-width: 9rem;
  padding: 0.95rem 1.2rem;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

@media (max-width: 1120px) {
  .hero-grid,
  .calculator-layout,
  .editorial-grid,
  .assumptions-grid,
  .bridge-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: 2;
  }

  .results-sticky {
    position: static;
  }
}

@media (max-width: 900px) {
  .site-header-inner,
  .section-intro,
  .trust-strip,
  .calculator-layout,
  .assumptions,
  .editorial-section > .section-intro,
  .editorial-section > .editorial-grid,
  .faq-section > .section-intro,
  .faq-list,
  .final-cta-inner {
    width: calc(100vw - 32px);
  }

  .top-nav a:not(.nav-cta):not(.nav-parent) {
    display: none;
  }

  .hero {
    padding: calc(var(--nav-h) + 40px) 16px 48px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-stats {
    width: 100%;
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .field-grid,
  .cost-grid,
  .score-band {
    grid-template-columns: 1fr;
  }

  .mobile-stepper,
  .mobile-result-cta {
    display: block;
  }

  .input-group {
    display: none;
  }

  .input-group.is-active {
    display: block;
  }
}

@media (min-width: 901px) {
  .input-group {
    display: block !important;
  }

  .stepper-actions {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
