:root {
  --brand-black: #000000;
  --brand-ink: #ffffff;
  --brand-navy: #001020;
  --brand-blue: #2070d0;
  --brand-mid-blue: #60a0e0;
  --brand-sky: #a0d0f0;
  --brand-ice: #b0e0f0;
  --brand-mint: #a0e0c0;
  --font-heavy: "Outfit", sans-serif;
  --font-mid: "Outfit", sans-serif;
  --font-small: "Inter", sans-serif;
  --black: var(--brand-black);
  --ink: var(--brand-ink);
  --soft: var(--brand-ice);
  --muted: #90c0e0;
  --panel: rgba(0, 16, 32, 0.76);
  --panel-strong: rgba(0, 16, 32, 0.96);
  --line: rgba(176, 224, 240, 0.34);
  --accent: var(--brand-blue);
  --cyan: var(--brand-sky);
  --green: var(--brand-mint);
  --alert: var(--brand-ink);
  --radius: 8px;
  --grid-margin: 20px;
  --gutter: 12px;
  --scroll-progress: 0;
  --pointer-x: 50%;
  --pointer-y: 30%;
  --header-height: 80px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, var(--brand-navy), var(--brand-black) 24rem),
    var(--black);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: var(--font-small);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
  padding-top: var(--header-height);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(160, 208, 240, 0.18), transparent 26rem),
    linear-gradient(120deg, transparent 0 42%, rgba(32, 112, 208, 0.2), transparent 64% 100%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.future-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
  mix-blend-mode: screen;
}

.motion-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

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

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--accent);
  color: var(--ink);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 var(--grid-margin);
}

.brand-logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-ice);
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--brand-ice);
}

.small-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  border-radius: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.primary-btn {
  background: linear-gradient(180deg, var(--brand-sky), var(--brand-blue));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(32, 112, 208, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  border-color: var(--ink);
  box-shadow: 0 8px 25px rgba(32, 112, 208, 0.5);
}

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 22rem;
  font-size: 1rem;
  font-family: var(--font-small);
  font-weight: 700;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--gutter);
  min-height: 36px;
  border-bottom: 1px solid var(--line);
}

.top-nav a {
  color: var(--soft);
  font-size: 0.9rem;
  font-family: var(--font-small);
  padding-bottom: 12px;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: var(--cyan);
}

.hero {
  position: relative;
  z-index: 10;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--gutter);
  padding: 22px var(--grid-margin) 100px;
}

.hero-media,
.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-media {
  justify-content: flex-start;
  gap: 14px;
}

.hero-image {
  aspect-ratio: 5 / 3;
  min-height: 360px;
}

.image-frame,
.line-image,
.splash {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(248, 251, 255, 0.16);
  box-shadow: 0 0 34px rgba(32, 112, 208, 0.24);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px var(--gutter);
  color: var(--soft);
  max-width: 48rem;
}

.signal-row p {
  padding-top: 10px;
  border-top: 1px solid rgba(160, 208, 240, 0.38);
}

.hero-content {
  justify-content: space-between;
  gap: 34px;
}

.eyebrow,
.section-kicker,
.small-note,
.top-nav a,
.text-link {
  font-size: 0.9rem;
  line-height: 1.15;
}

.eyebrow,
.section-kicker {
  color: var(--cyan);
  text-transform: uppercase;
}

.display {
  font-family: var(--font-heavy);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(3rem, 9vw, 5.75rem);
  max-width: 12ch;
  text-shadow: 0 0 40px rgba(32, 112, 208, 0.4);
}

.hero-title span {
  display: block;
}

.hero-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: 42rem;
  color: var(--soft);
}

.lede {
  color: var(--ink);
  font-size: 1.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, 32rem);
  min-height: 58px;
  padding: 0 18px;
  color: var(--ink);
  background: linear-gradient(180deg, var(--brand-sky), var(--brand-blue));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px -10px rgba(32, 112, 208, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  font-family: var(--font-small);
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), filter 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.15);
  border-color: var(--ink);
  box-shadow: 0 15px 50px -10px rgba(32, 112, 208, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button-secondary {
  background: rgba(248, 251, 255, 0.04);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(160, 208, 240, 0.14);
}

.button-on-accent {
  background: var(--black);
  border-color: var(--black);
  box-shadow: 0 0 32px rgba(0, 16, 32, 0.46);
}

.small-note {
  color: var(--muted);
  max-width: 36rem;
}

.section {
  padding: 96px var(--grid-margin);
}

.split-section,
.plan-section,
.proof-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 42px var(--gutter);
  border-top: 1px solid var(--line);
}

.split-section > .section-kicker,
.plan-section > div:first-child,
.proof-section > div:first-child {
  grid-column: 1 / 5;
}

.split-section > div:nth-child(2) {
  grid-column: 6 / 13;
}

.heading-lg,
.heading-md {
  font-family: var(--font-mid);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.heading-lg {
  font-size: clamp(2.75rem, 7vw, 4.8rem);
}

.heading-md {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.heading-lg span {
  display: block;
  color: var(--soft);
}

.data-panel {
  grid-column: 1 / 5;
  align-self: start;
}

.question-panel {
  grid-column: 6 / 13;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plain-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.source-list {
  margin-top: 22px;
  color: var(--soft);
}

.source-list li,
.plain-list li {
  padding-left: 18px;
  position: relative;
}

.source-list li::before,
.plain-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--green);
  position: absolute;
  top: 0.35em;
  left: 0;
  box-shadow: 0 0 12px var(--green);
}

.question-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.question-list li {
  min-height: 72px;
  padding: 20px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.25rem;
}

.media-heading {
  padding: 36px var(--grid-margin) 112px;
  overflow: hidden;
}

.media-line {
  display: flex;
  align-items: center;
  gap: 0.12em;
  font-size: clamp(3.2rem, 10vw, 9.6rem);
  flex-wrap: wrap;
}

.with-strip {
  gap: 24px;
}

.line-image {
  display: inline-block;
  width: 28rem;
  height: 0.78em;
}

.step-list {
  grid-column: 6 / 13;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gutter);
}

.step-list article,
.border-list {
  min-height: 16rem;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease, box-shadow 300ms ease;
}

.step-list article:hover,
.border-list:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px -20px rgba(32, 112, 208, 0.3);
}

.step-list span {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--cyan);
}

.step-list h3 {
  margin-bottom: 14px;
  font-family: var(--font-mid);
  font-weight: 700;
  font-size: 2rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.step-list p,
.border-list,
blockquote,
.splash-content p,
.final-copy p {
  color: var(--soft);
}

.splash {
  min-height: 680px;
  margin: 0 var(--grid-margin) 100px;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
}

.splash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.08));
}

.splash-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.splash-content {
  width: min(100%, 58rem);
  padding: 28px;
  display: grid;
  gap: 22px;
}

blockquote {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.22;
}

.proof-section .border-list:nth-child(2) {
  grid-column: 6 / 9;
}

.proof-section .border-list:nth-child(3) {
  grid-column: 9 / 13;
}

.border-list {
  display: grid;
  gap: 18px;
}

.final-cta {
  padding: 76px var(--grid-margin);
  background:
    linear-gradient(135deg, rgba(176, 224, 240, 0.46), transparent 32%),
    linear-gradient(180deg, var(--brand-sky), var(--brand-mid-blue) 45%, var(--brand-blue));
  color: var(--ink);
}

.final-copy {
  width: min(100%, 72rem);
  display: grid;
  gap: 24px;
}

.final-title {
  max-width: 12ch;
  font-size: 5.6rem;
  line-height: 0.9;
}

.site-footer {
  background-color: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--soft);
  overflow: hidden;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-base);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3, .footer-col h4 {
  color: var(--brand-ice);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.trust-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(105, 210, 231, 0.1);
  color: var(--brand-mint);
  border: 1px solid rgba(105, 210, 231, 0.2);
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 1rem;
}

.links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-col li {
  margin-bottom: 0.75rem;
}

.links-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.links-col a:hover {
  color: var(--brand-ice);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}

.footer-contact-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-contact-link.whatsapp {
  color: #25D366;
}

.footer-contact-link.phone {
  color: var(--brand-mint);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.social-links a:hover {
  color: var(--brand-ice);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-rail {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 22px 0;
  font-family: var(--font-heavy);
  font-weight: 900;
  font-size: 4rem;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--brand-blue);
  transform: rotate(-1deg) translateX(calc(-40px - var(--scroll-progress) * 240px));
}

.footer-content {
  padding: 42px var(--grid-margin);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gutter);
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 1;
  transform: translate3d(0, 20px, 0) skewY(0.3deg);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  transform: translate3d(0, 0, 0) skewY(0);
}

.modal {
  width: min(92vw, 880px);
  max-height: 88vh;
  margin: auto;
  padding: 0;
  color: var(--ink);
  background: var(--panel-strong);
  border: 1px solid rgba(160, 208, 240, 0.48);
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(32, 112, 208, 0.44);
  backdrop-filter: blur(24px);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.survey-form {
  padding: 28px;
}

.survey-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--gutter);
  margin-bottom: 18px;
  padding-right: 54px;
}

.survey-head h2 {
  margin-top: 8px;
  font-family: var(--font-mid);
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.progress-track {
  height: 6px;
  margin-bottom: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 14.285%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transition: width 260ms ease;
}

.survey-question {
  display: none;
  min-height: 330px;
  padding: 0;
  border: 0;
}

.survey-question.is-active {
  display: grid;
  gap: 12px;
  align-content: start;
}

.survey-question legend {
  margin-bottom: 18px;
  font-size: 1.6rem;
  line-height: 1;
}

.survey-question label {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.survey-question input[type="text"] {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.survey-question label:has(input[type="text"]) {
  display: block;
}

.survey-error {
  min-height: 1.2em;
  color: var(--alert);
}

.survey-actions {
  display: flex;
  gap: var(--gutter);
  justify-content: flex-end;
  flex-wrap: wrap;
}

.survey-actions .button {
  width: auto;
  min-width: 10rem;
}

.sheet-status {
  min-height: 1.2em;
}

.testimonials-section,
.faq-section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 42px var(--gutter);
  border-top: 1px solid var(--line);
}

.testimonials-header,
.faq-header {
  grid-column: 1 / 5;
}

.testimonial-grid,
.faq-list {
  grid-column: 6 / 13;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gutter);
}

.testimonial-card {
  min-height: 16rem;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), border-color 300ms ease, box-shadow 300ms ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px -20px rgba(32, 112, 208, 0.3);
}

.testimonial-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.t-stars {
  color: var(--brand-sky);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.4;
  flex-grow: 1;
}

.testimonial-card cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
  margin-top: 12px;
}

.t-name {
  font-family: var(--font-mid);
  font-weight: 700;
  color: var(--cyan);
}

.t-location {
  font-size: 0.85rem;
  color: var(--soft);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  overflow: hidden;
}

.faq-item summary {
  padding: 20px;
  font-family: var(--font-mid);
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--brand-sky);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--soft);
  font-size: 1.1rem;
  line-height: 1.5;
}

@media (max-width: 1199px) {
  .site-header,
  .hero {
    grid-template-columns: 1fr;
  }

  .top-nav {
    order: -1;
  }

  .hero {
    padding-top: 12px;
  }

  .hero-title {
    font-size: 5.3rem;
    max-width: 12ch;
  }

  .heading-lg,
  .heading-md {
    font-size: 3.4rem;
  }

  .media-line {
    font-size: 6.6rem;
  }

  .line-image {
    width: 18rem;
  }

  .split-section > .section-kicker,
  .split-section > div:nth-child(2),
  .data-panel,
  .question-panel,
  .plan-section > div:first-child,
  .step-list,
  .proof-section > div:first-child,
  .proof-section .border-list:nth-child(2),
  .proof-section .border-list:nth-child(3),
  .testimonials-header,
  .faq-header,
  .testimonial-grid,
  .faq-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 800px) {
  .header-nav {
    display: none;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .site-footer {
    padding-top: 3rem;
  }
}

@media (max-width: 699px) {
  :root {
    --grid-margin: 12px;
    --header-height: 64px;
  }

  body {
    font-size: 15px;
  }

  .future-scene {
    display: none;
  }

  .site-header {
    position: static;
    padding-top: 14px;
  }

  .top-nav {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .top-nav a {
    flex: 0 0 auto;
  }

  .brand-stack {
    font-size: 0.85rem;
    white-space: nowrap;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .hero {
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 72px;
  }

  .hero-image {
    min-height: 250px;
  }

  .signal-row {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3.05rem;
    line-height: 0.92;
  }

  .button {
    font-size: 0.82rem;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .split-section,
  .plan-section,
  .proof-section {
    display: flex;
    flex-direction: column;
  }

  .heading-lg,
  .heading-md {
    font-size: 2.75rem;
  }

  .media-heading {
    padding-bottom: 72px;
  }

  .media-line {
    font-size: 3.45rem;
    flex-wrap: wrap;
  }

  .with-strip {
    gap: 10px;
  }

  .line-image {
    width: 9rem;
    min-width: 9rem;
  }

  .question-list li {
    min-height: 58px;
    font-size: 1rem;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

  .splash {
    min-height: 610px;
    margin-bottom: 72px;
  }

  .splash-content {
    padding: 18px;
  }

  .final-title {
    font-size: 3rem;
    line-height: 0.94;
  }

  .survey-form {
    padding: 20px;
  }

  .survey-head h2 {
    font-size: 2.25rem;
  }

  .survey-question {
    min-height: 390px;
  }

  .survey-actions {
    justify-content: stretch;
  }

  .survey-actions .button {
    width: 100%;
  }

  .footer-rail {
    font-size: 2.7rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
