:root {
  --bg: #06141d;
  --bg-soft: #0d202b;
  --panel: rgba(8, 25, 35, 0.88);
  --panel-strong: #102533;
  --line: rgba(255, 255, 255, 0.1);
  --text: #eff7f8;
  --muted: #a7bac2;
  --brand: #0ca36f;
  --brand-2: #5de0a8;
  --accent: #123949;
  --success: #8ae2bf;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(12, 163, 111, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(13, 62, 82, 0.22), transparent 28%),
    linear-gradient(180deg, #06141d 0%, #081922 38%, #06141d 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 85%);
  pointer-events: none;
}

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

p,
li,
label,
input,
select,
textarea,
button,
summary {
  font-size: 1rem;
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 5rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(20px);
  background: rgba(6, 20, 29, 0.78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.topbar-right {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 72px;
}

.brand-mark {
  width: 44px;
  height: 52px;
  clip-path: polygon(50% 0%, 88% 14%, 88% 68%, 50% 100%, 12% 68%, 12% 14%);
  background:
    linear-gradient(180deg, rgba(93, 224, 168, 0.95), rgba(12, 163, 111, 0.75)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 12px 24px rgba(12, 163, 111, 0.25);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px 9px 12px;
  border: 2px solid rgba(2, 14, 21, 0.72);
  clip-path: polygon(50% 0%, 88% 14%, 88% 68%, 50% 100%, 12% 68%, 12% 14%);
}

.brand-mark::after {
  inset: 15px 16px 20px;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 0.82;
  text-transform: uppercase;
}

.brand-copy span {
  color: #77d8ad;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.brand-copy em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.section {
  padding: 4.25rem 0;
}

.section-tight {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.application-section {
  margin-top: 3.5rem;
  padding: 5rem 2.5rem;
  border-radius: 32px;
  background: #f3f8f7;
  border: 1px solid rgba(16, 32, 43, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  position: relative;
  overflow: hidden;
}

.application-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(12, 163, 111, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(16, 32, 43, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(16, 32, 43, 0.04) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
  pointer-events: none;
}

.hero {
  display: block;
  min-height: calc(100vh - 96px);
}

.hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.thank-you-card h1 {
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  margin-bottom: 1.25rem;
}

.hero-text,
.section-heading p,
.vsl-meta p,
.panel p,
.fit-card p,
.faq-item p,
.thank-you-card > p {
  color: var(--muted);
}

.application-section,
.application-section h2,
.application-section h3,
.application-section label,
.application-section .eyebrow {
  color: #10202b;
}

.application-section .eyebrow {
  color: #0c7b55;
}

.application-section .application-layout,
.application-section .form-intro,
.application-section .application-sidebar {
  position: relative;
  z-index: 1;
}

.hero-points,
.check-list,
.x-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.qualifier-strip,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.qualifier-strip {
  margin: 1.4rem auto 0;
  max-width: 900px;
}

.qualifier-strip span,
.proof-pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.qualifier-strip span {
  padding: 0.7rem 0.95rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
}

.hero-points li,
.check-list li,
.x-list li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-points li::before,
.check-list li::before,
.x-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
}

.hero-points li::before,
.check-list li::before {
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  box-shadow: 0 0 0 6px rgba(12, 163, 111, 0.1);
}

.x-list li::before {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(18, 57, 73, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.hero-proof {
  margin-top: 1.5rem;
}

.proof-pill {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  text-align: left;
  min-width: 260px;
}

.proof-pill strong {
  font-size: 0.95rem;
}

.proof-pill span {
  color: var(--muted);
  font-size: 0.92rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 224, 168, 0.22);
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  color: #041118;
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 18px 30px rgba(12, 163, 111, 0.24);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(12, 163, 111, 0.3);
}

.button-secondary,
.button-tertiary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button-full {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 224, 168, 0.24);
  background: rgba(12, 163, 111, 0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.vsl-card,
.panel,
.stat-card,
.fit-card,
.application-form,
.faq-item,
.thank-you-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.vsl-card {
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  margin-top: 1.8rem;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.vsl-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(93, 224, 168, 0.18), transparent 28%),
    radial-gradient(circle at 70% 0%, rgba(18, 57, 73, 0.28), transparent 30%),
    linear-gradient(135deg, #0d1b25 0%, #143140 50%, #09141b 100%);
}

.vsl-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
}

.play-button {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--brand-2), var(--brand));
  box-shadow: 0 20px 45px rgba(12, 163, 111, 0.28);
  z-index: 1;
}

.play-button::before {
  content: "";
  position: absolute;
  inset: 29px 0 0 35px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #091117;
}

.vsl-meta h2,
.section-heading h2,
.fit-card h2,
.thank-you-grid h2,
.form-intro h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0.75rem 0 0.9rem;
}

.stats-band,
.roadmap,
.thank-you-grid {
  display: grid;
  gap: 1rem;
}

.stats-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.panel,
.fit-card,
.application-form,
.faq-item,
.thank-you-card {
  border-radius: var(--radius-lg);
}

.stat-card,
.panel,
.fit-card,
.thank-you-card {
  padding: 1.6rem;
}

.stat-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: var(--brand-2);
}

.stat-label {
  color: var(--muted);
}

.two-column,
.application-layout,
.fit-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}

.comparison-grid,
.pain-grid,
.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.section-heading.centered {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 2.2rem;
}

.accent-panel {
  background:
    linear-gradient(160deg, rgba(12, 163, 111, 0.14), rgba(18, 57, 73, 0.12)),
    var(--panel);
}

.roadmap {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.roadmap-step {
  position: relative;
  padding: 1.5rem;
  border-top: 1px solid rgba(12, 163, 111, 0.24);
}

.roadmap-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(12, 163, 111, 0.65), transparent);
}

.step-number {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.roadmap-step h3 {
  font-size: 1.5rem;
  margin: 0.85rem 0 0.6rem;
}

.roadmap-step p {
  color: var(--muted);
  margin: 0;
}

.application-form {
  padding: 1.75rem;
  background: linear-gradient(180deg, #10202b, #0d1b25);
  color: var(--text);
  box-shadow: 0 24px 50px rgba(16, 32, 43, 0.22);
  max-width: 920px;
  margin: 0 auto;
}

.form-intro {
  margin-bottom: 1rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.application-form .eyebrow,
.application-form h2,
.application-form p,
.application-form label {
  color: var(--text);
}

.application-sidebar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto 2rem;
}

.application-sidebar .panel {
  background: #fffdfa;
  color: #10202b;
  border: 1px solid rgba(16, 32, 43, 0.1);
  box-shadow: 0 18px 36px rgba(16, 32, 43, 0.1);
  backdrop-filter: none;
}

.application-sidebar .panel p,
.application-sidebar .panel li,
.application-sidebar .panel h3 {
  color: #10202b;
}

.application-sidebar .panel .badge {
  background: rgba(12, 163, 111, 0.1);
  color: #0c7b55;
  border-color: rgba(12, 123, 85, 0.24);
}

.application-sidebar .check-list li::before {
  box-shadow: 0 0 0 6px rgba(12, 163, 111, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #83919b;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(12, 163, 111, 0.45);
  box-shadow: 0 0 0 4px rgba(12, 163, 111, 0.1);
}

.form-note {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.centered-callout {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  padding: 1.3rem 1.5rem;
}

summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  padding-right: 2rem;
  position: relative;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brand);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.9rem 0 0;
}

.thank-you-body {
  display: grid;
  min-height: 100vh;
}

.thank-you-main {
  display: grid;
  place-items: center;
  padding-top: 4rem;
}

.thank-you-card {
  max-width: 960px;
  margin: 0 auto;
}

.thank-you-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Screenshot-aligned Steele theme */
body {
  color: #19382f;
  background: #f2f2ef;
}

body::before {
  background-image: none;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.site-shell {
  width: 100%;
  padding-bottom: 0;
}

.topbar {
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(246, 246, 243, 0.94);
  border-bottom: 1px solid rgba(17, 55, 44, 0.08);
  backdrop-filter: blur(18px);
}

.brand-copy strong {
  color: #173c32;
}

.brand-copy span {
  color: #1f6a54;
}

.brand-copy em {
  color: #5f6d67;
}

.button {
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-color: rgba(199, 156, 69, 0.35);
  background: #c89d45;
  color: #fff;
  box-shadow: none;
}

.button:hover {
  box-shadow: none;
}

.button-secondary,
.button-tertiary {
  background: #1b5c48;
  color: #fff;
  border-color: #1b5c48;
}

.hero-actions .button:first-child,
.cta-band .button,
.button-full {
  min-height: 62px;
  padding: 1.05rem 1.8rem;
  font-size: 1.08rem;
  font-weight: 800;
}

main > section:not(.hero) {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  min-height: auto;
  margin-top: 0;
  padding: 4.75rem clamp(1rem, 4vw, 3rem) 5rem;
  background:
    radial-gradient(circle at 18% 24%, rgba(46, 129, 98, 0.42), transparent 34%),
    linear-gradient(90deg, rgba(24, 87, 66, 0.96) 0%, rgba(20, 77, 66, 0.88) 38%, rgba(16, 47, 64, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(98, 220, 146, 0.45);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 460px;
  height: 660px;
  right: 10%;
  top: 6%;
  transform: rotate(24deg);
}

.hero::after {
  width: 300px;
  height: 520px;
  right: 18%;
  top: 12%;
  transform: rotate(24deg);
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1,
.thank-you-card h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: #fbfcf9;
}

.hero-text,
.hero-points,
.hero-proof,
.qualifier-strip,
.hero-actions {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero-text,
.hero .proof-pill span,
.hero .stat-label {
  color: rgba(239, 247, 248, 0.82);
}

.hero .eyebrow {
  color: #b7d9cb;
}

.qualifier-strip,
.hero-proof,
.hero-actions {
  justify-content: center;
}

.qualifier-strip span,
.proof-pill {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.qualifier-strip span {
  color: #f7faf8;
}

.hero-points li,
.hero-proof strong {
  color: #f8fbf9;
}

.vsl-card {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.hero-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: #09141b;
}

.stats-band {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.stat-card,
.panel,
.fit-card,
.application-form,
.faq-item,
.thank-you-card {
  border: 1px solid rgba(20, 55, 44, 0.08);
  background: #fff;
  box-shadow: 0 14px 40px rgba(24, 42, 36, 0.08);
  backdrop-filter: none;
}

.stat-number,
.section-heading h2,
.fit-card h2,
.thank-you-grid h2,
.form-intro h2,
.panel h3,
.roadmap-step h3 {
  color: #1f5d49;
}

.stat-label,
.section-heading p,
.panel p,
.fit-card p,
.faq-item p,
.roadmap-step p,
.form-note {
  color: #6c7c75;
}

.section-heading.centered {
  max-width: 780px;
}

.decision-section,
.two-column,
.roadmap-section,
.fit-section,
.faq-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.comparison-grid .panel,
.pain-grid .panel,
.qualification-grid .panel {
  background: #fbfbf8;
}

.accent-panel {
  background: linear-gradient(180deg, #f8fbfa, #eef5f2);
}

.roadmap {
  gap: 1.25rem;
}

.roadmap-step {
  background: #fff;
  border: 1px solid rgba(20, 55, 44, 0.08);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(24, 42, 36, 0.06);
}

.roadmap-step::before {
  display: none;
}

.step-number {
  color: #c89d45;
}

.application-section {
  margin-top: 4.5rem;
  background: #ffffff;
  border-color: rgba(20, 55, 44, 0.08);
  box-shadow: 0 18px 48px rgba(24, 42, 36, 0.08);
}

.application-layout {
  grid-template-columns: 1fr;
  gap: 2rem;
}

.application-section::before {
  background: none;
}

.application-form,
.application-sidebar .panel {
  background: #fff;
  color: #19382f;
}

.booking-embed {
  width: 100%;
  max-width: 1180px;
  padding: 0.5rem;
  margin: 0 auto;
}

.booking-embed iframe {
  min-height: 980px;
  display: block;
  width: 100%;
  border-radius: 16px;
}

.application-form .eyebrow,
.application-form h2,
.application-form p,
.application-form label,
.application-sidebar .panel p,
.application-sidebar .panel li,
.application-sidebar .panel h3 {
  color: #19382f;
}

label {
  color: #19382f;
}

input,
select,
textarea {
  border: 1px solid rgba(20, 55, 44, 0.12);
  background: #f6f7f4;
  color: #19382f;
}

input::placeholder,
textarea::placeholder {
  color: #85938d;
}

.badge,
.application-sidebar .panel .badge {
  background: rgba(200, 157, 69, 0.12);
  color: #9b7630;
  border-color: rgba(200, 157, 69, 0.24);
}

.faq-item {
  background: #fff;
}

.cta-band {
  width: 100%;
  max-width: none;
  padding: 5rem 1rem;
  background: linear-gradient(180deg, #1b5c48, #184b3d);
}

.cta-band .fit-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: #fff;
}

.thank-you-body {
  background: #f2f2ef;
}

.thank-you-card {
  background: #fff;
}

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

  .reveal,
  .reveal-delay,
  .reveal-delay-2,
  .button {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .two-column,
  .application-layout,
  .fit-section,
  .comparison-grid,
  .pain-grid,
  .qualification-grid,
  .roadmap,
  .stats-band,
  .thank-you-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .topbar {
    padding: 0.9rem 1rem;
  }

  .topbar .button-secondary {
    display: none;
  }

  .section {
    padding: 3.75rem 0;
  }

  .hero {
    padding: 3.5rem 1rem 4rem;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .application-section {
    margin-top: 2.5rem;
    padding: 2.75rem 1rem;
    border-radius: 24px;
  }

  .stats-band {
    margin-top: 1.5rem;
  }

  .hero h1,
  .thank-you-card h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
    line-height: 1.02;
  }

  .form-row,
  .thank-you-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .fit-card h2,
  .thank-you-grid h2,
  .form-intro h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.04;
  }

  .hero-copy,
  .hero-text,
  .hero-points,
  .hero-proof,
  .qualifier-strip,
  .hero-actions {
    max-width: 100%;
  }

  .application-layout {
    gap: 1.5rem;
  }

  .application-sidebar {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto 1.25rem;
  }

  .application-sidebar .panel {
    padding: 1.25rem;
  }

  .form-intro {
    max-width: 100%;
    margin-bottom: 0.5rem;
  }

  .booking-embed {
    max-width: 100%;
    padding: 0;
  }

  .booking-embed iframe {
    min-height: 860px;
  }

  .stats-band {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }
}
