:root {
  --navy: #071047;
  --navy-2: #101a5d;
  --text: #071047;
  --muted: #6f7488;
  --green: #5bd58b;
  --green-dark: #2cbf68;
  --soft: #f3f5fb;
  --line: #e2e6f0;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(7, 16, 71, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.benefits-section {
  padding-bottom: 46px;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 82%, rgba(255,255,255,0.08), transparent 240px),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.72;
  background:
    radial-gradient(circle at 7% 18%, rgba(122, 143, 227, 0.34) 0 5px, transparent 6px),
    radial-gradient(circle at 11% 18%, rgba(122, 143, 227, 0.34) 0 5px, transparent 6px),
    radial-gradient(circle at 15% 18%, rgba(122, 143, 227, 0.34) 0 5px, transparent 6px),
    radial-gradient(circle at 9% 24%, rgba(122, 143, 227, 0.34) 0 5px, transparent 6px),
    radial-gradient(circle at 18% 63%, rgba(122, 143, 227, 0.3) 0 5px, transparent 6px),
    radial-gradient(circle at 22% 63%, rgba(122, 143, 227, 0.3) 0 5px, transparent 6px),
    radial-gradient(circle at 26% 63%, rgba(122, 143, 227, 0.3) 0 5px, transparent 6px),
    radial-gradient(circle at 20% 69%, rgba(122, 143, 227, 0.3) 0 5px, transparent 6px),
    radial-gradient(circle at 24% 69%, rgba(122, 143, 227, 0.3) 0 5px, transparent 6px),
    radial-gradient(circle at 74% 70%, rgba(122, 143, 227, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 70%, rgba(122, 143, 227, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 82% 70%, rgba(122, 143, 227, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 76% 76%, rgba(122, 143, 227, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 80% 76%, rgba(122, 143, 227, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 91% 24%, rgba(122, 143, 227, 0.3) 0 5px, transparent 6px),
    radial-gradient(circle at 94% 24%, rgba(122, 143, 227, 0.3) 0 5px, transparent 6px),
    radial-gradient(circle at 92.5% 30%, rgba(122, 143, 227, 0.3) 0 5px, transparent 6px),
    radial-gradient(circle at 95.5% 30%, rgba(122, 143, 227, 0.3) 0 5px, transparent 6px);
}

.section-dark .container {
  position: relative;
  z-index: 2;
}

.section-muted {
  background: var(--soft);
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 96px 0 84px;
}

.hero-brand {
  position: absolute;
  top: 28px;
  left: max(24px, calc((100vw - 1120px) / 2));
  z-index: 3;
}

.hero-brand img {
  width: 240px;
  height: auto;
}

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

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 3.4vw, 3.2rem);
  line-height: 1.09;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 2.2vw, 2.3rem);
  line-height: 1.16;
}

.one-line-desktop {
  font-size: clamp(1.55rem, 1.9vw, 2rem);
  white-space: nowrap;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.16;
}

.lead {
  font-size: 1.25rem;
}

.hero p:not(.eyebrow):not(.microcopy),
.compact-dark p,
.final-cta p {
  color: rgba(255,255,255,0.86);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.trust-row span,
.stats div,
.mini-block {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 13px 15px;
  background: rgba(255,255,255,0.08);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 30px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(91, 213, 139, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  background: #6fe29d;
}

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

.button-secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(7, 16, 71, 0.18);
}

.microcopy {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 0.95rem;
}

.hero-media {
  position: relative;
  z-index: 2;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 50% 20%;
}

.hero-video-card {
  display: grid;
  justify-self: center;
  width: min(100%, 410px);
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
}

.hero-video-copy {
  padding: 0;
}

.hero .hero-video-copy p.video-kicker {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-video-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.16;
}

.hero .hero-video-copy p:not(.video-kicker) {
  margin-bottom: 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
}

.hero-video-frame {
  width: min(100%, 300px);
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: #000;
  box-shadow: 0 18px 42px rgba(0,0,0,0.26);
}

.hero-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.decor {
  position: absolute;
  border: 8px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.decor-one {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -80px;
}

.decor-two {
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -180px;
}

.narrow-head,
.centered,
.narrow {
  text-align: center;
}

.narrow-head,
.narrow {
  max-width: 820px;
}

.centered {
  max-width: 860px;
}

.cards {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}

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

.four {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.side-panel,
.help-box,
.bonus-box,
.process-note,
.portrait-card,
.video-testimonial,
.screenshot-slot,
.steps article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card {
  padding: 30px;
}

.icon,
.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(91, 213, 139, 0.16);
  color: var(--green-dark);
  font-weight: 900;
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

.section-statement {
  padding-top: 54px;
  background: linear-gradient(180deg, var(--white), #f9fbff);
}

.statement {
  max-width: 850px;
  text-align: center;
}

.statement p {
  font-size: 1.18rem;
  text-align: left;
}

.check-list,
.x-list,
.before-after ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.x-list li,
.before-after li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
}

.check-list li::before,
.before-after .success-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.x-list li::before,
.contrast-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #d14d5d;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.side-panel {
  padding: 32px;
}

.side-panel .mini-block {
  margin-top: 14px;
  border-color: var(--line);
  background: var(--soft);
}

.strong-note {
  margin-top: 28px;
  font-size: 1.12rem;
  font-weight: 900;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.contrast-card {
  border-top: 5px solid #d14d5d;
}

.success-card {
  border-top: 5px solid var(--green);
}

.help-box {
  margin-top: 26px;
  padding: 34px;
  background: var(--navy);
  color: var(--white);
}

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

.help-grid p {
  min-height: 120px;
  margin: 0;
  padding: 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.86);
}

.process-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 24px;
}

.process-note p {
  margin: 0;
  font-weight: 800;
}

.process-note .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.compact-dark {
  padding: 86px 0;
}

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

.stats div {
  display: grid;
  gap: 4px;
}

.stats strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.stats span {
  color: rgba(255,255,255,0.82);
}

.compact-dark .centered > p:not(.eyebrow) {
  text-align: left;
}

.portrait-card {
  overflow: hidden;
}

.portrait-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 50% 17%;
}

.testimonials {
  display: grid;
  gap: 20px;
  margin-top: 38px;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  margin: 0 -6px;
  padding: 4px 6px 24px;
  scroll-behavior: smooth;
  scroll-padding-inline: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.video-card {
  flex: 0 0 calc((100% - 72px) / 5);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 16;
}

.video-card-wide {
  grid-column: auto;
  max-width: none;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(7, 16, 71, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.carousel-arrow:hover {
  transform: translateY(-2px);
  background: var(--navy-2);
}

.carousel-arrow:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: #aeb6d0;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot:hover {
  transform: translateY(-2px);
}

.carousel-dot.is-active {
  background: var(--green);
  transform: scale(1.12);
}

.screenshot-testimonials {
  margin-top: 34px;
}

.screenshot-testimonial {
  flex: 0 0 calc((100% - 54px) / 4);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.screenshot-testimonial img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
  transition: transform 0.24s ease;
}

.screenshot-testimonial span {
  display: block;
  padding: 14px 16px 16px;
  font-weight: 900;
  text-align: center;
}

.screenshot-testimonial:hover img {
  transform: scale(1.03);
}

.testimonial-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(7, 16, 71, 0.82);
}

.testimonial-lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(1040px, 100%);
  max-height: calc(100vh - 80px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

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

blockquote {
  margin: 0;
  padding: 26px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}

.faq details {
  padding: 20px 24px;
}

.faq summary {
  cursor: pointer;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 900;
}

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.steps article {
  padding: 26px;
}

.steps h3 {
  font-size: 1.15rem;
}

.steps p {
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.bonus-box {
  max-width: 850px;
  margin-top: 28px;
  padding: 30px;
  text-align: center;
}

.bonus-box p {
  text-align: left;
}

.final-cta {
  padding: 108px 0;
}

.final-cta h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.65rem);
}

.final-cta .microcopy {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.financial-disclaimer {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.56);
}

.application-section {
  scroll-margin-top: 20px;
}

.form-page {
  background: var(--soft);
}

.form-page-main {
  min-height: 100vh;
  padding: 28px 0 70px;
}

.form-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.form-page-logo img {
  width: 220px;
  height: auto;
}

.form-page-back {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.form-page-back:hover {
  text-decoration: underline;
}

.form-page-intro {
  padding: 52px 0 28px;
}

.form-page-intro h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  color: var(--navy);
}

.form-page-intro p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
}

.thank-you-main {
  display: grid;
  align-content: start;
}

.thank-you-card {
  max-width: 820px;
  margin-top: 84px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  margin: 0 auto 18px;
  color: var(--navy);
}

.thank-you-card p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.application-section .narrow-head > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.application-form {
  margin-top: 38px;
}

.form-wizard {
  max-width: 920px;
}

.form-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  scroll-margin-top: 24px;
  color: var(--navy);
  font-weight: 900;
}

.form-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(7, 16, 71, 0.12);
}

.form-progress-track span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 0.24s ease;
}

.form-step[hidden] {
  display: none;
}

.form-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card .eyebrow {
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-card h2 {
  margin-bottom: 26px;
  color: var(--navy);
}

.form-card h2:focus {
  outline: none;
}

.application-form fieldset {
  margin: 0 0 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.application-form legend {
  padding: 0 10px;
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 900;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: start;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
}

.form-grid + .form-field,
.form-field + .form-grid,
.form-field + .form-field {
  margin-top: 24px;
}

.form-grid > .form-field + .form-field {
  margin-top: 0;
}

.form-field {
  display: grid;
  gap: 10px;
  align-content: start;
}

.form-field > span:not(.field-head),
.field-head > span {
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}

.field-head {
  display: grid;
  gap: 10px;
  align-content: start;
}

.form-hint {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (min-width: 760px) {
  .form-grid-textareas .field-head {
    height: 88px;
  }

    .form-grid-pair-headings .field-head {
        height: 58px;
    }

    .form-grid-investment-headings .field-head {
        height: 92px;
    }

    .form-grid-readiness-headings .field-head {
        height: 130px;
    }
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  background: #fbfcff;
  font: inherit;
}

.contact-grid .form-field {
  min-width: 0;
}

.contact-grid .form-field input {
  height: 70px;
}

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

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(91, 213, 139, 0.28);
  border-color: var(--green-dark);
}

.choice-list {
  display: grid;
  gap: 8px;
}

.choice-list label,
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid #edf0f7;
  border-radius: 8px;
  background: #fbfcff;
  line-height: 1.45;
}

.choice-list input[type="radio"],
.choice-list input[type="checkbox"],
.form-consent input {
  flex: 0 0 auto;
  margin-top: 0.28em;
  accent-color: var(--green-dark);
}

.choice-with-input {
  flex-wrap: wrap;
  align-items: center;
}

.choice-with-input input[type="text"] {
  flex: 1 1 220px;
  min-height: 40px;
  padding: 8px 10px;
}

.form-consent {
  margin-top: 18px;
  font-weight: 800;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
}

.wizard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 22px;
}

.wizard-actions .button-ghost {
  margin-right: auto;
}

.button-ghost {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(7, 16, 71, 0.08);
}

.button-ghost:hover {
  background: #f9fbff;
}

.form-status {
  flex-basis: 100%;
  max-width: 720px;
  min-height: 26px;
  margin: 0 auto;
  text-align: center;
  font-weight: 800;
}

.form-status.is-pending {
  color: var(--muted);
}

.form-status.is-success {
  color: var(--green-dark);
}

.form-status.is-error {
  color: #b23b3b;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.application-section .financial-disclaimer {
  color: rgba(7, 16, 71, 0.58);
}

.form-page-disclaimer {
  color: rgba(7, 16, 71, 0.58);
}

@media (max-width: 980px) {
  .one-line-desktop {
    white-space: normal;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 24px;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
  }

  .hero-brand {
    top: 24px;
  }

  .hero-brand img {
    width: 220px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow {
    order: 1;
  }

  .hero-copy > h1 {
    order: 2;
  }

  .hero-copy > .lead {
    order: 3;
  }

  .hero-media {
    order: 4;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-copy > .button {
    order: 5;
    justify-self: start;
  }

  .hero-copy > .microcopy {
    order: 6;
  }

  .hero-copy > p:not(.eyebrow):not(.lead):not(.microcopy) {
    order: 7;
  }

  .hero-copy > .trust-row {
    order: 7;
    margin: 6px 0 0;
  }

  .three,
  .four,
  .help-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-card {
    flex-basis: calc((100% - 36px) / 3);
  }

  .screenshot-testimonial {
    flex-basis: calc((100% - 18px) / 2);
  }

  .process-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-note .button {
    white-space: normal;
  }

  .application-form fieldset {
    padding: 24px;
  }

  .form-page-intro {
    padding-top: 42px;
  }

  .form-card {
    padding: 28px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 86px 0 64px;
  }

  .hero-brand {
    top: 20px;
    left: 14px;
  }

  .hero-brand img {
    width: 190px;
  }

  .hero-grid {
    gap: 20px;
  }

  h1 {
    font-size: 1.72rem;
  }

  h2 {
    font-size: 1.42rem;
  }

  .lead {
    font-size: 1.08rem;
  }

  .trust-row,
  .three,
  .four,
  .before-after,
  .help-grid,
  .stats,
  .quote-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .video-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .screenshot-testimonial {
    flex-basis: min(88%, 380px);
  }

  .hero-video-card {
    width: 100%;
    padding: 16px;
    gap: 16px;
  }

  .hero-video-copy {
    padding: 0;
  }

  .hero-video-copy h2 {
    font-size: 1.18rem;
  }

  .hero .hero-video-copy p:not(.video-kicker) {
    font-size: 0.94rem;
  }

  .hero-video-frame {
    width: min(76vw, 300px);
  }

  .hero-media img,
  .portrait-card img {
    height: 390px;
  }

  .button {
    width: min(100%, 340px);
    min-height: 52px;
    margin-left: auto;
    margin-right: auto;
    padding-inline: 14px;
    font-size: 0.86rem;
  }

  .hero-copy > .button,
  .hero-copy > .microcopy {
    justify-self: center;
    text-align: center;
  }

  .card,
  .side-panel,
  .help-box,
  .bonus-box,
  .application-form fieldset {
    padding: 24px;
  }

  .application-form {
    margin-top: 28px;
  }

  .form-page-main {
    padding-top: 22px;
  }

  .form-page-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-page-logo img {
    width: 190px;
  }

  .form-page-intro {
    padding: 34px 0 22px;
  }

  .form-page-intro p:not(.eyebrow) {
    font-size: 1rem;
  }

  .thank-you-card {
    margin-top: 38px;
    padding: 28px 22px;
  }

  .thank-you-card p:not(.eyebrow) {
    font-size: 1rem;
  }

  .thank-you-actions .button {
    width: 100%;
  }

  .form-card {
    padding: 22px;
  }

  .form-grid {
    gap: 18px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid .form-field input {
    height: 56px;
  }

  .choice-list label,
  .form-consent {
    padding: 10px;
  }

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

  .wizard-actions .button,
  .wizard-actions .button-ghost {
    width: 100%;
    margin: 0;
  }

  .help-grid p {
    min-height: 0;
  }

  .video-card-wide {
    max-width: none;
  }
}

@media (max-width: 430px) {
  .video-card {
    flex-basis: min(82%, 320px);
  }

  .screenshot-testimonial {
    flex-basis: min(86%, 360px);
  }
}
