:root {
  --ink: #101318;
  --ink-2: #1b2028;
  --panel: #202633;
  --paper: #f8f3ea;
  --paper-2: #ebe3d7;
  --muted: #68707b;
  --line: #d7cdbc;
  --red: #d63f35;
  --red-dark: #9f271f;
  --teal: #1f7a7a;
  --amber: #f2c14e;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 19, 24, 0.18);
  --radius: 8px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--amber);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only,
.hidden {
  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: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(16, 19, 24, 0.92);
  color: var(--paper);
  border-bottom: 1px solid rgba(248, 243, 234, 0.14);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1.1;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 1px solid rgba(248, 243, 234, 0.22);
  border-radius: 8px;
  background: var(--ink);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 3px;
  color: rgba(248, 243, 234, 0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(248, 243, 234, 0.22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(214, 63, 53, 0.82), rgba(31, 122, 122, 0.72));
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 4px;
  color: rgba(248, 243, 234, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(248, 243, 234, 0.08);
}

.site-nav .nav-cta {
  margin-left: 4px;
  color: var(--white);
  background: var(--red);
}

.site-nav .nav-cta:hover {
  background: #bd342b;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 4px;
  padding: 11px;
  border: 1px solid rgba(248, 243, 234, 0.2);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: calc(82svh - var(--header-h));
  max-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 19, 24, 0.92), rgba(16, 19, 24, 0.68) 42%, rgba(16, 19, 24, 0.22)),
    linear-gradient(0deg, rgba(16, 19, 24, 0.58), rgba(16, 19, 24, 0.08) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 92px 0;
}

.hero-logo {
  width: 112px;
  height: 112px;
  object-fit: cover;
  margin-bottom: 22px;
  border: 1px solid rgba(248, 243, 234, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-red .eyebrow,
.hero .eyebrow {
  color: var(--amber);
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: 68px;
}

h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 22px;
}

.hero-actions,
.social-row,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.inline-actions {
  align-items: center;
}

.page-hero {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(13, 17, 24, 0.98), rgba(28, 37, 49, 0.94)),
    radial-gradient(circle at 12% 20%, rgba(214, 63, 53, 0.22), transparent 34%),
    radial-gradient(circle at 82% 28%, rgba(31, 122, 122, 0.22), transparent 34%);
  color: var(--paper);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 48px;
  align-items: center;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: 56px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(248, 243, 234, 0.74);
  font-size: 20px;
}

.page-hero-card {
  padding: 30px;
  border: 1px solid rgba(248, 243, 234, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.page-hero-card h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 26px;
}

.page-hero-card p {
  font-size: 17px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  background: var(--ink);
  color: var(--white);
}

.button-secondary:hover {
  background: var(--panel);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.quick-info {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(248, 243, 234, 0.12);
}

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

.quick-info article {
  min-height: 118px;
  padding: 28px 26px;
  border-left: 1px solid rgba(248, 243, 234, 0.12);
}

.quick-info article:last-child {
  border-right: 1px solid rgba(248, 243, 234, 0.12);
}

.quick-info span,
.card-kicker,
.pathway span,
.result-panel span,
.badge {
  display: block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quick-info strong {
  display: block;
  margin-top: 8px;
  font-size: 19px;
  line-height: 1.25;
}

.section {
  padding: 96px 0;
  background: var(--paper);
}

.section-light {
  background: var(--paper-2);
}

.section-red {
  background: var(--ink);
  color: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 64px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
}

.section-copy > p,
.split > div > p,
.trial-grid > div > p {
  color: var(--muted);
}

.section-red .section-copy > p,
.section-red .trial-grid > div > p,
.section-red .pathway p {
  color: rgba(248, 243, 234, 0.72);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.feature-list div {
  padding: 18px 0 18px 18px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.44);
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  color: var(--muted);
}

.image-stack {
  position: relative;
  min-height: 460px;
}

.image-stack img,
.image-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-panel {
  position: absolute;
  right: 24px;
  bottom: -24px;
  width: 230px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
}

.stat-panel strong {
  display: block;
  margin-bottom: 6px;
  font-size: 36px;
  line-height: 1;
}

.stat-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.35;
}

.card-grid,
.price-grid {
  display: grid;
  gap: 18px;
}

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

.card-grid.five {
  grid-template-columns: repeat(5, 1fr);
}

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

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.format-card,
.price-card,
.calendar-panel,
.result-panel,
.trial-form,
.success-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 19, 24, 0.08);
}

.format-card {
  min-height: 260px;
  padding: 26px;
}

.format-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red-dark);
  font-weight: 900;
}

.format-card p,
.price-card p,
.calendar-panel p,
.result-panel p,
.faq-list p {
  color: var(--muted);
}

.deep-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 19, 24, 0.08);
}

.deep-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.deep-card p,
.deep-card li {
  color: var(--muted);
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.detail-list article {
  padding: 18px 0 18px 18px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.44);
}

.detail-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.pathway {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.pathway article {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.pathway article:last-child {
  border-right: 0;
}

.pathway h3 {
  color: var(--ink);
}

.pathway p {
  color: var(--muted);
}

.section-red .pathway {
  border-color: rgba(248, 243, 234, 0.16);
}

.section-red .pathway article {
  border-color: rgba(248, 243, 234, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.section-red .pathway h3 {
  color: var(--white);
}

.pathway-preview {
  display: block;
  border: 1px solid rgba(248, 243, 234, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pathway-preview img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: left top;
}

.pathway-image-link {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: auto;
  background: var(--white);
  box-shadow: var(--shadow);
}

.pathway-image-link img {
  width: 100%;
  min-width: 980px;
  height: auto;
}

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

.timeline article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(248, 243, 234, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.timeline span {
  display: block;
  margin-bottom: 26px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 950;
}

.timeline h3 {
  color: var(--white);
}

.timeline p {
  color: rgba(248, 243, 234, 0.72);
}

.route-finder,
.result-panel {
  min-height: 100%;
}

.finder-form,
.trial-form {
  display: grid;
  gap: 16px;
}

.finder-form {
  margin-top: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c7bdad;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.result-panel {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-color: rgba(31, 122, 122, 0.28);
  background: var(--ink);
  color: var(--paper);
}

.result-panel p {
  color: rgba(248, 243, 234, 0.72);
}

.result-panel a {
  width: fit-content;
  color: var(--amber);
  font-weight: 900;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  padding: 28px;
}

.price-card.featured {
  border-color: var(--red);
  box-shadow: 0 18px 50px rgba(214, 63, 53, 0.16);
}

.badge {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 8px;
  border-radius: 4px;
  background: rgba(214, 63, 53, 0.12);
  color: var(--red);
}

.price {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
}

.price-card .button {
  margin-top: auto;
}

.small-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}

.calendar-panel {
  padding: 30px;
}

.session-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.session-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.session-list li:last-child {
  border-bottom: 0;
}

.session-list strong,
.session-list span {
  display: block;
}

.session-list span {
  color: var(--muted);
  font-size: 14px;
}

.text-link,
.social-row a {
  color: var(--red-dark);
  font-weight: 900;
}

.social-row a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border-bottom: 2px solid currentColor;
  text-decoration: none;
}

.social-proof-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.social-proof-card.compact {
  grid-template-columns: 96px 1fr;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(248, 243, 234, 0.16);
  box-shadow: none;
}

.social-proof-card.compact img {
  width: 96px;
  height: 96px;
}

.social-proof-card.compact strong {
  color: var(--white);
}

.social-proof-card.compact a {
  color: var(--amber);
}

.social-proof-card img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--ink);
}

.social-proof-card span {
  display: block;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.social-proof-card strong {
  display: block;
  margin: 6px 0 12px;
  font-size: 24px;
  line-height: 1.1;
}

.social-proof-card a {
  color: var(--red-dark);
  font-weight: 900;
}

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

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

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

.video-card,
.facebook-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 19, 24, 0.08);
  overflow: hidden;
}

.video-card:first-child {
  grid-column: 1 / -1;
}

.video-grid.expanded .video-card:first-child {
  grid-column: auto;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: var(--ink);
}

.video-card h3 {
  margin: 0;
  padding: 18px 20px 20px;
  font-size: 20px;
}

.facebook-panel {
  padding: 22px;
}

.facebook-frame {
  width: 100%;
  height: 520px;
  margin: 14px 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #f0f2f5;
}

.facebook-frame iframe {
  width: 100%;
  max-width: 100%;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

.trial {
  padding: 96px 0;
}

.trial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 60px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.trial-form {
  padding: 30px;
}

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

.site-footer {
  padding: 52px 0;
  background: #0b0d11;
  color: rgba(248, 243, 234, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
  gap: 34px;
}

.footer-brand {
  color: var(--paper);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--paper);
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--paper);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin-bottom: 8px;
}

.cta-band p {
  margin-bottom: 0;
  color: var(--muted);
}

.success-page {
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
}

.success-shell {
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 28px;
  margin: 0 auto;
  padding: 48px 0;
}

.success-panel {
  padding: 42px;
}

.success-panel h1 {
  color: var(--ink);
  font-size: 44px;
}

.success-panel p {
  color: var(--muted);
}

@media (max-width: 1020px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    background: rgba(16, 19, 24, 0.98);
    border-bottom: 1px solid rgba(248, 243, 234, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    min-height: 52px;
  }

  .site-nav .nav-cta {
    margin: 12px 0 0;
  }

  .nav-toggle {
    display: grid;
  }

  .quick-info-grid,
  .card-grid.four,
  .card-grid.five,
  .card-grid.three,
  .card-grid.two,
  .price-grid,
  .pathway,
  .timeline,
  .video-grid.expanded {
    grid-template-columns: repeat(2, 1fr);
  }

  .pathway article:nth-child(2) {
    border-right: 0;
  }

  .pathway article {
    border-bottom: 1px solid var(--line);
  }

  .section-red .pathway article {
    border-bottom-color: rgba(248, 243, 234, 0.16);
  }

  .split,
  .split.reverse,
  .media-layout,
  .page-hero-grid,
  .trial-grid,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .split.reverse .image-card,
  .split.reverse .route-finder {
    order: -1;
  }

  .trial-grid {
    gap: 34px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: 68px;
  }

  body {
    font-size: 16px;
  }

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

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

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

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding: 64px 0;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(16, 19, 24, 0.94), rgba(16, 19, 24, 0.7)),
      linear-gradient(0deg, rgba(16, 19, 24, 0.58), rgba(16, 19, 24, 0.1));
  }

  h1 {
    font-size: 40px;
  }

  h2,
  .success-panel h1 {
    font-size: 31px;
  }

  .page-hero {
    padding: 58px 0;
  }

  .page-hero h1 {
    font-size: 38px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .hero-logo {
    width: 86px;
    height: 86px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions,
  .social-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .quick-info-grid,
  .card-grid.four,
  .card-grid.five,
  .card-grid.three,
  .card-grid.two,
  .price-grid,
  .pathway,
  .timeline,
  .video-grid.expanded,
  .form-row {
    grid-template-columns: 1fr;
  }

  .quick-info article,
  .quick-info article:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(248, 243, 234, 0.12);
  }

  .section,
  .trial {
    padding: 68px 0;
  }

  .image-stack {
    min-height: auto;
    padding-bottom: 72px;
  }

  .image-stack img,
  .image-card img {
    height: 340px;
  }

  .stat-panel {
    right: 14px;
    left: 14px;
    bottom: 0;
    width: auto;
  }

  .pathway article {
    min-height: 0;
    border-right: 0;
  }

  .format-card,
  .price-card {
    min-height: 0;
  }

  .trial-form,
  .success-panel,
  .result-panel,
  .calendar-panel {
    padding: 22px;
  }

  .social-proof-card {
    grid-template-columns: 1fr;
  }

  .social-proof-card.compact {
    grid-template-columns: 1fr;
  }

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

  .session-list li {
    display: block;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
