:root {
  --midnight: #0d1b2a;
  --midnight-2: #13283c;
  --teal: #007c73;
  --teal-dark: #00655e;
  --teal-soft: #e5f3f1;
  --gold: #c9a44a;
  --gold-light: #e4c978;
  --gold-soft: #f7f0dd;
  --ivory: #f4f1ea;
  --paper: #f7f7f7;
  --white: #ffffff;
  --ink: #152333;
  --muted: #62707e;
  --line: #dce2e5;
  --danger: #a33a3a;
  --shadow-sm: 0 10px 30px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 25px 70px rgba(13, 27, 42, 0.16);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: 1180px;
  --font: "Poppins", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: var(--teal);
}

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

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

h1,
h2,
h3,
.button,
.eyebrow,
.section-kicker,
.route-nav,
legend,
label > span:first-child {
  letter-spacing: -0.018em;
}

h1,
h2,
h3 {
  color: var(--midnight);
  line-height: 1.13;
}

h1:focus {
  outline: none;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5vw, 5.2rem);
  font-weight: 650;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 650;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  font-weight: 650;
}

p {
  margin-bottom: 20px;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.narrow-shell {
  width: min(calc(100% - 48px), 1060px);
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--midnight);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(13, 27, 42, 0.1);
  background: rgba(247, 247, 247, 0.94);
  box-shadow: 0 4px 24px rgba(13, 27, 42, 0.04);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand-button {
  width: 216px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand-button img {
  width: 100%;
}

.route-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 180ms ease;
}

body[data-view="gateway"] .route-nav {
  pointer-events: none;
  opacity: 0;
}

.route-nav-label {
  margin-right: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.route-nav button,
.mobile-nav button {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--midnight);
  font-size: 0.83rem;
  font-weight: 650;
  cursor: pointer;
  transition: 170ms ease;
}

.route-nav button:hover,
.route-nav button:focus-visible,
.mobile-nav button:hover,
.mobile-nav button:focus-visible {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--midnight);
}

.mobile-nav {
  padding: 0 24px 18px;
}

.mobile-nav button {
  width: 100%;
  margin-top: 8px;
}

.view[hidden] {
  display: none !important;
}

.gateway-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 88px 0 80px;
  background:
    radial-gradient(circle at 77% 35%, rgba(201, 164, 74, 0.14), transparent 28%),
    linear-gradient(145deg, var(--ivory) 0 60%, #e9eee9 60% 100%);
}

.gateway-hero::before,
.gateway-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 124, 115, 0.15);
  border-radius: 50%;
}

.gateway-hero::before {
  top: -180px;
  right: -110px;
  width: 520px;
  height: 520px;
}

.gateway-hero::after {
  right: 80px;
  bottom: -280px;
  width: 620px;
  height: 620px;
}

.gateway-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.62fr);
  gap: 88px;
  align-items: center;
}

.gateway-copy h1 {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.card-label {
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  color: #425161;
  font-size: clamp(1.14rem, 1.7vw, 1.36rem);
  line-height: 1.65;
}

.prelaunch-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.prelaunch-line span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 124, 115, 0.12);
}

.video-feature {
  width: min(100%, 330px);
  justify-self: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  border: 8px solid var(--white);
  border-radius: 30px;
  background: var(--midnight);
  box-shadow: var(--shadow-lg);
}

.video-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 74px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
  pointer-events: none;
}

.video-frame video {
  width: 100%;
  height: 100%;
  background: var(--midnight);
  object-fit: cover;
}

.video-frame-compact {
  width: 255px;
  border-width: 7px;
  border-radius: 26px;
}

.video-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 270px;
  margin: 18px auto 0;
}

.video-caption strong,
.video-caption span {
  display: block;
}

.video-caption strong {
  color: var(--midnight);
  font-size: 0.86rem;
}

.video-caption div > span {
  color: var(--muted);
  font-size: 0.73rem;
}

.founder-dot {
  display: grid !important;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 750;
}

.route-choice-section {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding-bottom: 98px;
}

.route-choice-section > .section-kicker {
  margin: 0 0 16px 24px;
}

.route-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.route-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  padding: 46px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.route-card-business {
  background: var(--white);
}

.route-card-professional {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--midnight);
  color: #dce4e9;
}

.route-card-professional h2,
.route-card-professional h3 {
  color: var(--white);
}

.route-card-professional .card-label {
  color: var(--gold-light);
}

.route-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(13, 27, 42, 0.13);
  font-size: 4.3rem;
  font-weight: 750;
  line-height: 1;
}

.route-card-professional .route-number {
  color: rgba(255, 255, 255, 0.08);
}

.route-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 18px;
  background: var(--teal-soft);
}

.route-card-professional .route-icon {
  background: rgba(201, 164, 74, 0.14);
}

.route-icon svg {
  width: 34px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.route-card-professional .route-icon svg {
  stroke: var(--gold-light);
}

.route-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.route-card p:not(.card-label) {
  max-width: 470px;
  color: #5e6d7b;
}

.route-card-professional p:not(.card-label) {
  color: #b9c5ce;
}

.route-card .button {
  margin-top: 12px;
}

.route-helper {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 11px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 9px 24px rgba(0, 124, 115, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(0, 124, 115, 0.28);
}

.button-dark {
  background: var(--midnight);
  color: var(--white);
}

.route-card-professional .button-dark {
  background: var(--white);
  color: var(--midnight);
}

.button-gold {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 9px 24px rgba(201, 164, 74, 0.2);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-light);
}

.button-outline {
  border-color: var(--midnight);
  background: transparent;
  color: var(--midnight);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--midnight);
  color: var(--white);
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
}

.principles-section {
  padding: 104px 0 110px;
  background: var(--white);
}

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

.section-heading.centred {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 span {
  color: var(--teal);
}

.section-heading.centred > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.dual-principles {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.principle-column {
  padding: 40px 38px 28px;
}

.principle-column-professional {
  background: var(--midnight);
}

.principle-audience {
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principle-column-professional .principle-audience {
  color: var(--gold-light);
}

.principle-promise {
  max-width: 390px;
  margin-bottom: 28px;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.14;
}

.principle-column-professional .principle-promise {
  color: var(--white);
}

.principle-column article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.principle-column-professional article {
  border-color: rgba(255, 255, 255, 0.12);
}

.principle-column article > span,
.value-index {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.value-index {
  margin-bottom: 32px;
}

.principle-column h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.principle-column-professional h3 {
  color: var(--white);
}

.principle-column p:not(.principle-audience),
.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.principle-column-professional p:not(.principle-audience) {
  color: #b8c5ce;
}

.principle-mark {
  display: grid;
  position: relative;
  place-items: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 164, 74, 0.24), transparent 58%),
    var(--ivory);
}

.principle-mark::before,
.principle-mark::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 1px;
  background: rgba(13, 27, 42, 0.16);
}

.principle-mark::before {
  top: 25%;
}

.principle-mark::after {
  bottom: 25%;
}

.principle-mark img {
  width: 86px;
  filter: drop-shadow(0 14px 22px rgba(13, 27, 42, 0.18));
}

.route-hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 100px;
}

.route-hero-business {
  background:
    radial-gradient(circle at 77% 32%, rgba(0, 124, 115, 0.09), transparent 24%),
    var(--ivory);
}

.route-hero-professional {
  background:
    radial-gradient(circle at 78% 30%, rgba(201, 164, 74, 0.13), transparent 25%),
    var(--midnight);
  color: #d5dfe5;
}

.breadcrumb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.breadcrumb-row button {
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
}

.breadcrumb-row > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dark-row button {
  color: var(--gold-light);
}

.dark-row > span {
  color: #9fb0bb;
}

.route-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.65fr);
  gap: 80px;
  align-items: center;
  padding-top: 62px;
}

.route-hero-copy h1 {
  max-width: 790px;
  font-size: clamp(2.7rem, 5vw, 4.85rem);
}

.route-hero-professional h1,
.route-hero-professional h2,
.route-hero-professional h3 {
  color: var(--white);
}

.route-hero-professional .eyebrow {
  color: var(--gold-light);
}

.route-hero-professional .lead {
  color: #c3cfd6;
}

.route-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.route-badges span {
  padding: 7px 12px;
  border: 1px solid rgba(201, 164, 74, 0.32);
  border-radius: 999px;
  background: rgba(201, 164, 74, 0.08);
  color: #e7d69e;
  font-size: 0.73rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 0;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link-light {
  color: var(--gold-light);
}

.microcopy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.light-copy {
  color: #9fb0bb;
}

.route-video-wrap {
  display: flex;
  width: min(100%, 360px);
  flex-direction: column;
  align-items: center;
  justify-self: center;
}

.video-frame-dark {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.route-video-caption {
  width: min(100%, 330px);
  margin-top: 18px;
}

.route-video-caption-dark strong {
  color: var(--white);
}

.route-video-caption-dark div > span {
  color: #9fb0bb;
}

.founder-dot-gold {
  background: var(--gold);
  color: var(--midnight);
}

.content-section {
  padding: 112px 0;
  background: var(--white);
}

.split-intro {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 76px;
  align-items: start;
  margin-bottom: 64px;
}

.split-intro h2 {
  max-width: 790px;
}

.split-intro div > p {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.06rem;
}

.value-grid {
  display: grid;
  gap: 18px;
}

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

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

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfc;
}

.four-up .value-card {
  min-height: 300px;
  padding: 28px;
}

.investment-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 82% 25%, rgba(201, 164, 74, 0.15), transparent 26%),
    var(--teal-soft);
}

.investment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  gap: 76px;
  align-items: center;
}

.investment-grid > div > p:not(.eyebrow) {
  color: #4e626b;
  font-size: 1.01rem;
}

.membership-value-card {
  padding: 38px;
  border-radius: var(--radius-lg);
  background: var(--midnight);
  color: #cbd5dc;
  box-shadow: var(--shadow-lg);
}

.price-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.membership-value-card > strong {
  display: block;
  max-width: 360px;
  margin: 18px 0 20px;
  color: var(--white);
  font-size: clamp(2.45rem, 4vw, 3.65rem);
  line-height: 1.04;
}

.membership-value-card > p {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5dc;
  font-size: 0.88rem;
}

.membership-value-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.membership-value-card li {
  position: relative;
  padding-left: 24px;
  color: var(--white);
  font-size: 0.82rem;
}

.membership-value-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 800;
}

.teal-top::before,
.gold-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--teal);
}

.gold-top::before {
  background: var(--gold);
}

.how-section {
  padding: 112px 0;
  background: var(--ivory);
}

.professional-how {
  background: var(--white);
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cfd6d8;
}

.steps-list li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding: 30px 12px;
  border-bottom: 1px solid #cfd6d8;
}

.steps-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.steps-list h3 {
  margin: 2px 0 6px;
}

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

.boundary-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  margin-top: 48px;
  padding: 28px 32px;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.boundary-card strong {
  color: var(--midnight);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.boundary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.founder-section {
  padding: 108px 0;
  background: var(--midnight);
  color: #cad5dc;
}

.founder-grid {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 82px;
  align-items: center;
}

.founder-grid h2 {
  color: var(--white);
}

.founder-grid .eyebrow {
  color: var(--gold-light);
}

.founder-mark {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.founder-mark img {
  width: 90px;
}

.founder-mark span {
  color: var(--gold-light);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.founder-note {
  padding: 16px 20px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.9rem;
}

.founder-link {
  color: var(--gold-light);
  font-weight: 700;
  text-underline-offset: 3px;
}

.founder-section-professional {
  background:
    radial-gradient(circle at 18% 35%, rgba(0, 124, 115, 0.2), transparent 30%),
    #102437;
}

.collective-card {
  border-left-color: var(--teal);
}

.toolkit-section {
  padding: 104px 0;
  background: var(--white);
}

.toolkit-section-dark {
  background: var(--midnight);
  color: #c9d4da;
}

.toolkit-section-dark h2 {
  color: var(--white);
}

.toolkit-section-dark .eyebrow {
  color: var(--gold-light);
}

.toolkit-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.2fr);
  gap: 86px;
  align-items: center;
}

.toolkit-mockup {
  position: relative;
  min-height: 440px;
}

.toolkit-page {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 284px;
  height: 400px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.toolkit-page-back {
  background: var(--teal);
  transform: translateX(-44%) rotate(7deg);
}

.toolkit-page-front {
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--ivory);
  transform: translateX(-56%) rotate(-4deg);
}

.toolkit-page-front img {
  width: 62px;
  margin-bottom: 82px;
}

.toolkit-page-front span {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.toolkit-page-front strong {
  color: var(--midnight);
  font-size: 1.55rem;
  line-height: 1.15;
}

.toolkit-page-front small {
  margin-top: auto;
  color: var(--muted);
}

.professional-cover {
  background: #f8f5ee;
}

.tick-list {
  display: grid;
  gap: 10px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 32px;
}

.tick-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

.toolkit-section-dark .tick-list li::before {
  color: var(--gold-light);
}

.charter-section {
  padding: 112px 0;
  background: var(--ivory);
}

.charter-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

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

.charter-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.charter-list li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-weight: 800;
}

.charter-list strong {
  color: var(--midnight);
}

.charter-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-view {
  min-height: 70vh;
  padding-bottom: 100px;
  background: #eef1f1;
}

.form-header {
  background: var(--ivory);
}

.form-header-dark {
  background: var(--midnight);
  color: var(--white);
}

.form-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.form-header button {
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.form-header-dark button {
  color: var(--gold-light);
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-progress i {
  display: block;
  width: 34px;
  height: 1px;
  background: #b9c3c8;
}

.form-progress .active {
  color: var(--teal);
}

.form-header-dark .form-progress {
  color: #8fa1ad;
}

.form-header-dark .form-progress .active {
  color: var(--gold-light);
}

.form-shell {
  width: min(calc(100% - 48px), 900px);
}

.form-intro {
  padding: 82px 0 52px;
  text-align: center;
}

.form-intro h1 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(2.3rem, 5vw, 4.05rem);
}

.form-intro > p:not(.eyebrow) {
  max-width: 730px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.form-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.form-meta span {
  padding: 8px 13px;
  border: 1px solid #d4dcdf;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: #536371;
  font-size: 0.74rem;
  font-weight: 650;
}

.research-form {
  display: grid;
  gap: 22px;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-card {
  padding: 42px;
  border: 1px solid #dde3e5;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 5px 24px rgba(13, 27, 42, 0.04);
}

.form-section-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.form-section-heading > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
}

.form-section-heading h2 {
  margin: 1px 0 5px;
  font-size: 1.55rem;
}

.form-section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.field-grid {
  display: grid;
  gap: 24px;
}

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

.field {
  display: grid;
  gap: 8px;
  color: var(--midnight);
  font-size: 0.88rem;
  font-weight: 650;
}

.field b,
legend b {
  color: var(--teal);
}

.field small,
.question-help,
.question-text > small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 450;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  border: 1px solid #cbd5d9;
  border-radius: 10px;
  outline: 0;
  background: #fbfcfc;
  color: var(--ink);
  transition: 160ms ease;
}

input[type="text"],
input[type="email"],
select {
  min-height: 52px;
  padding: 11px 14px;
}

textarea {
  min-height: 130px;
  padding: 14px;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 124, 115, 0.1);
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated .question-block.has-error {
  border-color: rgba(163, 58, 58, 0.65);
}

.question-block {
  margin: 0;
  padding: 34px 0;
  border: 0;
  border-top: 1px solid #e3e7e9;
}

.question-block:first-of-type {
  padding-top: 10px;
  border-top: 0;
}

.question-block legend {
  width: 100%;
  color: var(--midnight);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.48;
}

.question-block legend > span,
.question-text i {
  display: inline-grid;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  place-items: center;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--white);
  font-size: 0.68rem;
  font-style: normal;
  vertical-align: 2px;
}

.question-help {
  margin: 8px 0 14px 36px;
}

.option-list {
  display: grid;
  gap: 9px;
}

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

.option-list label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #d8e0e3;
  border-radius: 10px;
  background: #fbfcfc;
  color: #3a4b59;
  font-size: 0.84rem;
  line-height: 1.45;
  cursor: pointer;
  transition: 150ms ease;
}

.option-list label:hover {
  border-color: rgba(0, 124, 115, 0.5);
  background: #f5fbfa;
}

.option-list label:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--midnight);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.option-list input,
.consent-list input,
.mini-options input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.definition-note,
.conditional-fields {
  margin-top: 16px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  background: var(--gold-soft);
}

.definition-note strong,
.conditional-fields > strong {
  color: var(--midnight);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.definition-note p {
  margin: 4px 0 0;
  color: #5b6670;
  font-size: 0.82rem;
}

.selection-message {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 650;
}

.question-text {
  padding-top: 30px;
  border-top: 1px solid #e3e7e9;
}

.question-text > span {
  font-size: 1.02rem;
}

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

.mini-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 14px 0;
}

.mini-options label {
  color: #495966;
  font-size: 0.8rem;
}

.conditional-fields > small {
  color: var(--muted);
  font-size: 0.72rem;
}

.privacy-copy {
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #f2f5f5;
  color: #52626f;
  font-size: 0.82rem;
}

.privacy-copy p {
  margin: 0;
}

.privacy-copy button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.consent-list {
  display: grid;
  gap: 10px;
}

.consent-list > label {
  display: flex;
  gap: 13px;
  padding: 16px;
  border: 1px solid #d9e0e3;
  border-radius: 10px;
  cursor: pointer;
}

.consent-list strong,
.consent-list small {
  display: block;
}

.eligibility-check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid #bfdcd7;
  border-radius: 12px;
  background: var(--teal-soft);
  cursor: pointer;
}

.eligibility-check input {
  margin-top: 5px;
}

.eligibility-check strong,
.eligibility-check small {
  display: block;
}

.eligibility-check strong {
  color: var(--midnight);
  font-size: 0.9rem;
}

.eligibility-check small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.was-validated .eligibility-check:has(input:invalid) {
  border-color: var(--danger);
  background: #fff3f3;
}

.consent-list strong {
  color: var(--midnight);
  font-size: 0.85rem;
}

.consent-list small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.74rem;
}

.form-submit-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 38px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-submit-card strong {
  color: var(--midnight);
  font-size: 1.1rem;
}

.form-submit-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.dark-submit {
  background: var(--midnight);
}

.dark-submit strong {
  color: var(--white);
}

.dark-submit p {
  color: #adbac3;
}

.form-error {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff0f0;
  color: var(--danger) !important;
  font-weight: 650;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted) !important;
  font-weight: 650;
}

.research-form[aria-busy="true"] .button[type="submit"] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.thanks-view {
  padding-bottom: 100px;
  background: var(--paper);
}

.thanks-hero {
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 50% 25%, rgba(0, 124, 115, 0.09), transparent 35%),
    var(--ivory);
  text-align: center;
}

.thanks-hero-dark {
  background:
    radial-gradient(circle at 50% 25%, rgba(201, 164, 74, 0.12), transparent 36%),
    var(--midnight);
  color: #cad5dc;
}

.thanks-hero-dark h1 {
  color: var(--white);
}

.thanks-hero-dark .eyebrow {
  color: var(--gold-light);
}

.thanks-shell {
  max-width: 850px;
}

.thanks-shell h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.thanks-shell > p:last-child {
  max-width: 710px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.thanks-hero-dark .thanks-shell > p:last-child {
  color: #b8c5cd;
}

.success-mark {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 0 0 12px rgba(0, 124, 115, 0.1);
  font-size: 1.75rem;
  font-weight: 800;
}

.success-mark-gold {
  background: var(--gold);
  color: var(--midnight);
  box-shadow: 0 0 0 12px rgba(201, 164, 74, 0.12);
}

.thanks-content {
  width: min(calc(100% - 48px), 1000px);
  margin-top: -36px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.7fr);
  gap: 60px;
  align-items: center;
  padding: 54px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.download-card-dark {
  background: var(--midnight-2);
  color: #c9d4da;
}

.download-card-dark h2 {
  color: var(--white);
}

.download-card-dark .eyebrow {
  color: var(--gold-light);
}

.download-copy > small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.73rem;
}

.download-card-dark .download-copy > small {
  color: #9fb0bb;
}

.download-visual {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 28px;
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: 14px 16px 0 var(--teal), 0 20px 60px rgba(13, 27, 42, 0.2);
  transform: rotate(3deg);
}

.download-visual img {
  width: 58px;
  margin-bottom: 56px;
}

.download-visual > span {
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.download-visual > strong {
  margin-top: 10px;
  color: var(--midnight);
  font-size: 1.68rem;
  line-height: 1.15;
}

.professional-download {
  box-shadow: 14px 16px 0 var(--gold), 0 20px 60px rgba(0, 0, 0, 0.25);
}

.professional-download > strong {
  font-size: 1.35rem;
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 66px 0;
}

.next-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.next-grid article > span {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}

.next-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.deeper-card,
.share-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  margin-top: 18px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.deeper-card h2,
.share-card h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.deeper-card p:not(.eyebrow),
.share-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.share-card {
  border: 0;
  background: var(--teal-soft);
}

.share-card-gold {
  background: var(--gold-soft);
}

.return-link {
  display: block;
  margin: 42px auto 0;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.site-footer {
  padding: 66px 0 26px;
  background: #091522;
  color: #9caab4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 70px;
  padding-bottom: 46px;
}

.footer-grid img {
  width: 230px;
  margin-bottom: 20px;
}

.footer-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid button {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b8c4cc;
  font-size: 0.84rem;
  cursor: pointer;
}

.footer-grid button:hover {
  color: var(--gold-light);
}

.footer-grid p {
  max-width: 340px;
  margin-bottom: 0;
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
}

.privacy-dialog {
  width: min(calc(100% - 32px), 720px);
  max-height: min(86vh, 760px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}

.legal-page {
  background: var(--ivory);
}

.legal-header-inner .brand-button {
  display: block;
}

.legal-main {
  padding: 86px 0 110px;
}

.legal-shell {
  width: min(calc(100% - 48px), 860px);
}

.legal-shell > h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.legal-shell > .lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.2rem;
}

.legal-updated {
  margin-bottom: 54px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.legal-shell section {
  margin-top: 22px;
  padding: 34px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.legal-shell section h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.legal-shell section p:last-child,
.legal-shell section ul:last-child {
  margin-bottom: 0;
}

.legal-shell li + li {
  margin-top: 8px;
}

.legal-footer a {
  color: var(--gold-light);
}

.privacy-dialog::backdrop {
  background: rgba(5, 15, 25, 0.72);
  backdrop-filter: blur(4px);
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--line);
}

.dialog-head h2 {
  margin: 0;
  font-size: 1.75rem;
}

.dialog-head .eyebrow {
  margin-bottom: 6px;
}

.dialog-head > button {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--midnight);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-body {
  overflow-y: auto;
  max-height: 480px;
  padding: 28px 36px;
  color: var(--muted);
  font-size: 0.9rem;
}

.dialog-body h3 {
  margin-top: 26px;
}

.dialog-note {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: var(--gold-soft);
}

.dialog-actions {
  padding: 18px 36px 28px;
  text-align: right;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: min(380px, calc(100% - 48px));
  padding: 15px 18px;
  border-radius: 10px;
  background: var(--midnight);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: 0.84rem;
}

.noscript {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px;
  border-radius: 10px;
  background: #fff0d5;
  color: var(--midnight);
  text-align: center;
}

.reveal {
  animation: reveal-up 520ms ease both;
}

.delay-1 {
  animation-delay: 110ms;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .gateway-layout,
  .route-hero-grid {
    gap: 48px;
  }

  .route-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
  }

  .four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .four-up .value-card {
    min-height: 240px;
  }
}

@media (max-width: 900px) {
  .route-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  body[data-view="gateway"] .menu-button {
    visibility: hidden;
  }

  .gateway-layout,
  .route-hero-grid,
  .toolkit-grid,
  .founder-grid,
  .investment-grid,
  .charter-grid,
  .download-card {
    grid-template-columns: 1fr;
  }

  .gateway-layout {
    gap: 56px;
  }

  .gateway-copy {
    text-align: center;
  }

  .gateway-copy .lead {
    margin-inline: auto;
  }

  .prelaunch-line {
    justify-content: center;
  }

  .route-choice-grid,
  .three-up {
    grid-template-columns: 1fr;
  }

  .dual-principles {
    grid-template-columns: 1fr;
  }

  .principle-mark {
    min-height: 150px;
    border-top: 1px solid var(--line);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .principle-mark::before,
  .principle-mark::after {
    top: 50%;
    bottom: auto;
    width: 22%;
  }

  .principle-mark::before {
    left: 10%;
  }

  .principle-mark::after {
    right: 10%;
  }

  .investment-grid {
    gap: 44px;
  }

  .route-hero-copy {
    text-align: center;
  }

  .route-hero-copy .lead {
    margin-inline: auto;
  }

  .button-row {
    justify-content: center;
  }

  .route-video-wrap {
    margin-top: 18px;
  }

  .split-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .founder-grid,
  .charter-grid {
    gap: 48px;
  }

  .founder-mark {
    min-height: 220px;
  }

  .toolkit-grid {
    gap: 34px;
  }

  .toolkit-mockup {
    order: 2;
  }

  .download-visual {
    width: min(100%, 310px);
    justify-self: center;
  }

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

  .deeper-card,
  .share-card {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .shell,
  .narrow-shell,
  .form-shell,
  .thanks-content {
    width: min(calc(100% - 32px), var(--shell));
  }

  .legal-shell {
    width: min(calc(100% - 32px), 860px);
  }

  .legal-main {
    padding: 58px 0 80px;
  }

  .legal-shell section {
    padding: 26px 22px;
  }

  .legal-home-link {
    padding: 10px 14px;
    font-size: 0.76rem;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-button {
    width: 176px;
  }

  .gateway-hero {
    padding: 68px 0 70px;
  }

  .gateway-copy h1,
  .route-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .route-choice-section {
    padding-bottom: 72px;
  }

  .route-card {
    min-height: 0;
    padding: 32px 26px;
    border-radius: 24px;
  }

  .route-number {
    font-size: 3.4rem;
  }

  .route-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
  }

  .route-card .button {
    width: 100%;
  }

  .principles-section,
  .content-section,
  .how-section,
  .investment-section,
  .founder-section,
  .toolkit-section,
  .charter-section {
    padding: 78px 0;
  }

  .principle-column {
    padding: 32px 26px 22px;
  }

  .route-hero {
    padding-bottom: 78px;
  }

  .breadcrumb-row {
    align-items: flex-start;
    gap: 16px;
  }

  .breadcrumb-row > span {
    max-width: 150px;
    text-align: right;
  }

  .route-hero-grid {
    padding-top: 44px;
  }

  .button-row {
    display: grid;
    gap: 12px;
  }

  .button-row .button,
  .button-row .text-link {
    width: 100%;
  }

  .text-link {
    justify-content: center;
  }

  .route-video-wrap {
    width: min(100%, 300px);
  }

  .three-up,
  .four-up {
    grid-template-columns: 1fr;
  }

  .value-card,
  .four-up .value-card {
    min-height: 0;
  }

  .membership-value-card {
    padding: 30px 24px;
  }

  .membership-value-card > strong {
    font-size: 2.75rem;
  }

  .steps-list li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 15px;
    padding-inline: 0;
  }

  .steps-list li > span {
    width: 42px;
    height: 42px;
  }

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

  .toolkit-mockup {
    min-height: 390px;
    transform: scale(0.88);
  }

  .form-header-inner {
    display: grid;
    gap: 12px;
    padding: 14px 0;
  }

  .form-progress {
    width: 100%;
    justify-content: space-between;
  }

  .form-progress i {
    flex: 1;
    width: auto;
  }

  .form-intro {
    padding: 60px 0 42px;
  }

  .form-card {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .form-section-heading {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .form-section-heading > span {
    width: 38px;
    height: 38px;
  }

  .two-columns,
  .option-grid,
  .price-options,
  .mini-options {
    grid-template-columns: 1fr;
  }

  .form-submit-card {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }

  .form-submit-card .button {
    width: 100%;
  }

  .thanks-hero {
    padding: 72px 0 88px;
  }

  .download-card {
    gap: 44px;
    padding: 34px 24px;
    border-radius: 24px;
  }

  .download-copy .button {
    width: 100%;
  }

  .next-grid {
    margin: 48px 0;
  }

  .deeper-card,
  .share-card {
    padding: 28px 22px;
  }

  .deeper-card .button,
  .share-card .button {
    width: 100%;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .dialog-head,
  .dialog-body,
  .dialog-actions {
    padding-right: 22px;
    padding-left: 22px;
  }
}
