:root {
  --paper: #f4f3ef;
  --white: #ffffff;
  --ink: #171819;
  --muted: #5d6267;
  --blue: #2d56d9;
  --blue-soft: #dce5ff;
  --orange: #f15a38;
  --yellow: #f4ce45;
  --violet: #c9bbff;
  --mint: #bde6d2;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-height: 76px;
  --countdown-height: 48px;
  --shell: 1360px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--countdown-height) + 16px);
}

body,
body.site-body--dark {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

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

::selection {
  background: var(--yellow);
  color: var(--ink);
}

/* Dedicated error page */
.error-page-body {
  background: var(--blue-soft);
}

.not-found {
  border-bottom: 2px solid var(--ink);
  padding: clamp(48px, 7vw, 100px) 0;
}

.not-found__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  min-height: min(680px, calc(100vh - var(--header-height) - var(--countdown-height) - 80px));
}

.not-found__code,
.not-found__message {
  border: 2px solid var(--ink);
}

.not-found__code {
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 54px);
}

.not-found__status,
.not-found__eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.not-found__code > div {
  align-items: center;
  display: flex;
  font-size: clamp(7rem, 17vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.72;
}

.not-found__code img {
  filter: brightness(0) saturate(100%);
  height: 0.47em;
  margin-left: 0.08em;
  margin-right: -0.02em;
  width: 0.49em;
}

.not-found__message {
  align-items: start;
  background: var(--white);
  border-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 70px);
}

.not-found__eyebrow {
  margin: 0 0 18px;
}

.not-found h1 {
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 0;
  max-width: 720px;
}

.not-found h1 + p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  margin: 28px 0 0;
  max-width: 620px;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.not-found__actions .button {
  min-height: 54px;
  padding-inline: 22px;
}

.button--quiet {
  background: var(--paper);
}

.button--quiet:hover,
.button--quiet:focus-visible {
  background: var(--violet);
}

@media (max-width: 800px) {
  .not-found__shell {
    grid-template-columns: 1fr;
  }

  .not-found__code {
    min-height: 300px;
  }

  .not-found__message {
    border-left: 2px solid var(--ink);
    border-top: 0;
    min-height: 420px;
  }
}

@media (max-width: 520px) {
  .not-found {
    padding-block: 24px;
  }

  .not-found__code,
  .not-found__message {
    padding: 24px;
  }

  .not-found__code {
    min-height: 235px;
  }

  .not-found__actions,
  .not-found__actions .button {
    width: 100%;
  }
}

.shell {
  margin-inline: auto;
  max-width: var(--shell);
  padding-inline: 32px;
  width: 100%;
}

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

.skip-link {
  background: var(--yellow);
  border: 2px solid var(--ink);
  font-weight: 800;
  left: 14px;
  padding: 10px 16px;
  position: fixed;
  top: -100px;
  z-index: 1000;
}

.skip-link:focus {
  top: 14px;
}

/* Site frame */
.site-header {
  background: rgba(244, 243, 239, 0.97);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.site-header__inner {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.08rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand__mark {
  filter: brightness(0) saturate(100%);
  height: 23px;
  width: 24px;
}

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

.nav-prompt {
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 12px;
}

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 9px;
  width: 44px;
}

.nav-toggle > span:not(.sr-only) {
  background: var(--ink);
  display: block;
  height: 3px;
  margin: 6px 0;
  transition: transform 150ms ease;
  width: 25px;
}

.button,
.path-action,
.beta-paths a {
  align-items: center;
  border: 2px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  text-decoration: none;
}

.button--small {
  min-height: 40px;
  padding-inline: 17px;
}

.button--signal {
  background: var(--blue);
  color: var(--white);
}

.button--business {
  background: var(--yellow);
}

.button--professional {
  background: var(--violet);
}

.button--ghost,
.button--outline {
  background: transparent;
}

.button:hover,
.path-action:hover,
.beta-paths a:hover {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-4px, -4px);
}

/* Shared typography */
.short-heading {
  display: grid;
  gap: 45px;
  grid-template-columns: 180px minmax(0, 1fr);
}

.short-heading > p,
.path-choice article > p:first-child,
.purpose-split article > p:first-child,
.niche-question p,
.relationship-split article > p:first-child,
.control-split article > p:first-child {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin: 6px 0 0;
  text-transform: uppercase;
}

.short-heading h2 {
  font-size: clamp(3rem, 5.7vw, 5.8rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
  max-width: 1030px;
}

.short-heading--compact {
  display: block;
}

.short-heading--compact h2 {
  margin-top: 34px;
}

.section-path-actions {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(60px, 7vw, 90px);
}

.section-path-actions a {
  align-items: center;
  border: 3px solid var(--ink);
  color: var(--ink);
  display: flex;
  font-size: 0.86rem;
  font-weight: 800;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px 24px;
  text-decoration: none;
}

.section-path-actions__business {
  background: var(--yellow);
}

.section-path-actions__professional {
  background: var(--violet);
}

.section-path-actions a > span:last-child {
  font-size: 1.4rem;
  line-height: 1;
  margin-left: 20px;
}

.section-path-actions a:hover {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(-2px, -2px);
}

/* Opening */
.dual-opening {
  border-bottom: 3px solid var(--ink);
  padding: 0;
}

.dual-opening > .shell {
  padding-top: 48px;
}

.launch-countdown {
  background: var(--blue);
  border-bottom: 2px solid var(--ink);
  color: var(--white);
  position: sticky;
  top: var(--header-height);
  z-index: 90;
}

.launch-countdown__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 48px;
}

.launch-countdown p {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  margin: 0;
  text-transform: uppercase;
}

.launch-countdown__date {
  align-items: center;
  display: flex;
  gap: 10px;
}

.launch-countdown__date > span {
  background: var(--yellow);
  border: 2px solid var(--ink);
  height: 12px;
  transform: rotate(45deg);
  width: 12px;
}

.launch-countdown time {
  color: var(--yellow);
  margin-left: 4px;
}

.launch-countdown__clock {
  display: flex;
  gap: 20px;
}

.launch-countdown__clock span {
  white-space: nowrap;
}

.launch-countdown__clock strong {
  color: var(--yellow);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
}

.launch-countdown.is-complete .launch-countdown__clock {
  color: var(--yellow);
}

.opening-meta,
.beta-meta {
  display: flex;
  font-size: 0.74rem;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.opening-meta p,
.beta-meta p {
  margin: 0;
}

.opening-meta p:first-child,
.beta-meta p:first-child {
  border-left: 9px solid var(--orange);
  padding-left: 14px;
}

.dual-title {
  align-items: end;
  display: grid;
  gap: clamp(60px, 10vw, 160px);
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  padding: clamp(85px, 10vw, 140px) 0 95px;
}

.dual-title h1 {
  font-size: clamp(4.7rem, 9vw, 8.5rem);
  font-weight: 790;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 0;
}

.dual-title > p {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.018em;
  margin: 0 0 8px;
}

.path-choice {
  border: 3px solid var(--ink);
  border-bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.path-choice article {
  min-height: 530px;
  padding: clamp(30px, 4.5vw, 62px);
}

.path-choice__business {
  background: var(--yellow);
  border-right: 3px solid var(--ink);
}

.path-choice__professional {
  background: var(--violet);
}

.path-choice h2 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 70px 0 28px;
  max-width: 540px;
}

.path-choice h2 + p {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 570;
  max-width: 540px;
}

.path-action {
  background: var(--white);
  margin-top: 35px;
}

/* Balanced purpose */
.shared-purpose,
.niche-story,
.parallel-journey,
.work-relationship,
.shared-operation,
.belief-story,
.control-story,
.dual-beta {
  border-bottom: 3px solid var(--ink);
  padding-block: clamp(95px, 11vw, 155px);
}

.shared-purpose {
  background: var(--white);
}

.purpose-split {
  border-top: 3px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 95px;
}

.purpose-split article {
  padding: 32px 60px 0 0;
}

.purpose-split article + article {
  border-left: 3px solid var(--ink);
  padding: 32px 0 0 60px;
}

.purpose-split h3 {
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 52px 0 45px;
  max-width: 530px;
}

.purpose-split ul {
  border-top: 2px solid var(--ink);
  list-style: none;
  margin: 0;
  padding: 0;
}

.purpose-split li {
  border-bottom: 2px solid var(--ink);
  font-size: 1rem;
  font-weight: 620;
  padding: 16px 0;
}

/* Niches */
.niche-story {
  background: var(--paper);
}

.niche-question {
  border-top: 3px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 90px;
}

.niche-question > div {
  padding: 28px 50px 50px 0;
}

.niche-question > div + div {
  border-left: 3px solid var(--ink);
  padding-left: 50px;
}

.niche-question h3 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 45px 0 0;
}

.niche-list {
  border-top: 3px solid var(--ink);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 35px;
}

.niche-list span {
  color: var(--blue);
  font-size: clamp(1.5rem, 3.2vw, 3.2rem);
  font-weight: 740;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.niche-list span::after {
  color: var(--orange);
  content: "/";
  margin-left: 24px;
}

.niche-list span:last-child::after {
  display: none;
}

/* Parallel journey */
.parallel-journey {
  background: var(--blue-soft);
}

.journey-headings {
  display: grid;
  font-size: 0.78rem;
  font-weight: 800;
  grid-template-columns: 90px calc(50% - 90px) 50%;
  letter-spacing: 0.07em;
  margin: 90px 0 0;
  text-transform: uppercase;
}

.journey-headings p {
  margin: 0;
  padding: 0 30px 18px;
}

.journey-headings p:first-child {
  grid-column: 2;
}

.journey-headings p + p {
  border-left: 3px solid var(--ink);
  grid-column: 3;
}

.journey-steps {
  border-top: 3px solid var(--ink);
  list-style: none;
  margin: 0;
  padding: 0;
}

.journey-steps li {
  border-bottom: 2px solid var(--ink);
  display: grid;
  grid-template-columns: 90px calc(50% - 90px) 50%;
}

.journey-steps li > span {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 26px 0;
}

.journey-steps li > div {
  min-height: 150px;
  padding: 25px 30px;
}

.journey-steps li > div + div {
  border-left: 3px solid var(--ink);
}

.journey-steps strong {
  display: block;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.025em;
}

.journey-steps p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 12px 0 0;
  max-width: 430px;
}

/* Projects and ongoing */
.work-relationship {
  background: var(--blue);
  color: var(--white);
}

.relationship-split {
  border-top: 3px solid var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 90px;
}

.relationship-split article {
  padding: 30px 55px 0 0;
}

.relationship-split article + article {
  border-left: 3px solid var(--white);
  padding: 30px 0 0 55px;
}

.relationship-split h3 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.03;
  margin: 48px 0 55px;
}

.relationship-audiences {
  border-top: 2px solid var(--white);
}

.relationship-audiences p {
  border-bottom: 2px solid var(--white);
  margin: 0;
  padding: 20px 0;
}

.relationship-audiences strong,
.relationship-audiences span {
  display: block;
}

.relationship-audiences strong {
  font-size: 0.82rem;
  text-transform: uppercase;
}

.relationship-audiences span {
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Shared operation */
.shared-operation {
  background: var(--white);
}

.operation-layout {
  display: grid;
  gap: clamp(70px, 12vw, 190px);
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.72fr);
}

.operation-copy > p {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 65px;
}

.operation-copy dl {
  border-top: 3px solid var(--ink);
  margin: 0;
}

.operation-copy dl > div {
  border-bottom: 2px solid var(--ink);
  display: grid;
  gap: 20px;
  grid-template-columns: 145px 1fr;
  padding: 20px 0;
}

.operation-copy dt {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.operation-copy dd {
  font-size: 0.98rem;
  font-weight: 650;
  margin: 0;
}

/* Purpose, direction, and principles */
.belief-story {
  background: var(--paper);
}

.belief-grid {
  border-top: 3px solid var(--ink);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
}

.belief-grid article {
  padding: 28px 42px 0 0;
}

.belief-grid article + article {
  border-left: 3px solid var(--ink);
  padding-left: 42px;
}

.belief-grid article::before {
  background: var(--orange);
  content: "";
  display: block;
  height: 10px;
  margin-bottom: 42px;
  width: 42px;
}

.belief-grid article:nth-child(2)::before {
  background: var(--blue);
}

.belief-grid article:nth-child(3)::before {
  background: var(--mint);
}

.belief-grid article > p:first-of-type {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin: 0;
  text-transform: uppercase;
}

.belief-grid h3 {
  font-size: clamp(2rem, 3.15vw, 3.25rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 55px 0 28px;
  max-width: 410px;
}

.belief-grid h3 + p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 560;
  margin: 0;
  max-width: 410px;
}

/* Shared control */
.control-story {
  background: var(--orange);
}

.control-split {
  border-top: 3px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 90px;
}

.control-split article {
  padding: 30px 60px 0 0;
}

.control-split article + article {
  border-left: 3px solid var(--ink);
  padding: 30px 0 0 60px;
}

.control-split h3 {
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  font-weight: 770;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 50px 0 25px;
  max-width: 560px;
}

.control-split h3 + p {
  font-size: 1rem;
  font-weight: 600;
  max-width: 500px;
}

.path-action--business {
  background: var(--yellow);
}

.path-action--professional {
  background: var(--violet);
}

/* Dual private-beta close */
.dual-beta {
  background: var(--paper);
}

.beta-meta {
  margin-bottom: 75px;
}

.beta-paths {
  border-top: 3px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 85px;
}

.beta-paths article {
  padding: 34px 60px 0 0;
}

.beta-paths article + article {
  border-left: 3px solid var(--ink);
  padding: 34px 0 0 60px;
}

.beta-paths h3 {
  font-size: clamp(2rem, 4vw, 3.9rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.03;
  margin: 0 0 25px;
}

.beta-paths p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
}

.beta-paths a {
  background: var(--yellow);
  color: var(--ink);
  margin-top: 28px;
}

.beta-paths article + article a {
  background: var(--violet);
  color: var(--ink);
}

.beta-note {
  border-top: 2px solid var(--ink);
  color: var(--muted);
  font-size: 0.82rem;
  margin: 80px 0 0;
  padding-top: 20px;
}

.beta-note span {
  display: block;
  font-weight: 700;
  margin-top: 8px;
}

/* Contact close */
.contact-strip {
  background: var(--blue);
  border-bottom: 3px solid var(--ink);
  border-top: 3px solid var(--ink);
  color: var(--white);
  padding: clamp(62px, 7vw, 96px) 0;
  scroll-margin-top: calc(var(--header-height) + var(--countdown-height));
}

.contact-strip__layout {
  align-items: center;
  display: grid;
  gap: clamp(36px, 6vw, 90px);
  grid-template-columns: 150px minmax(0, 1fr) auto;
}

.contact-strip__layout > p {
  align-self: start;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin: 8px 0 0;
  text-transform: uppercase;
}

.contact-strip h2 {
  font-size: clamp(2.5rem, 4.7vw, 5rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

.contact-strip h2 + p {
  font-size: 0.94rem;
  margin: 24px 0 0;
  max-width: 660px;
}

.contact-strip a {
  align-items: center;
  background: var(--yellow);
  border: 3px solid var(--ink);
  color: var(--ink);
  display: flex;
  font-size: 0.86rem;
  font-weight: 800;
  gap: 42px;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px 22px;
  text-decoration: none;
  white-space: nowrap;
}

.contact-strip a:hover {
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-3px, -3px);
}

.contact-strip a span {
  font-size: 1.4rem;
  line-height: 1;
}

/* Footer */
.site-footer {
  background: var(--paper);
  padding: 72px 0 30px;
}

.site-footer__top {
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr auto;
}

.brand--footer {
  font-size: 1.35rem;
}

.site-footer__top > div:first-child > p {
  font-size: 0.9rem;
  margin: 16px 0 24px;
}

.status-chip {
  border-left: 8px solid var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 5px 0 5px 12px;
  text-transform: uppercase;
}

.status-chip .status-dot {
  display: none;
}

.site-footer__links {
  display: grid;
  gap: clamp(48px, 6vw, 80px);
  grid-template-columns: repeat(2, minmax(190px, 210px));
}

.site-footer__links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.site-footer__links a,
.site-footer__bottom a {
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
}

.site-footer__links a {
  padding-block: 2px;
}

.site-footer__links a:hover,
.site-footer__bottom a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.footer-newsletter {
  align-items: end;
  display: grid;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  margin-top: 72px;
  padding-bottom: 58px;
}

.footer-newsletter__copy h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 18px 0 20px;
}

.footer-newsletter__copy > p:last-child,
.footer-newsletter .row-form > p,
.footer-newsletter__success > p:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 0;
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-newsletter form:focus-within {
  outline: 4px solid var(--orange);
  outline-offset: 3px;
}

.footer-newsletter form input:focus-visible,
.footer-newsletter form button:focus-visible {
  outline: 0;
}

.footer-newsletter form input[type="email"]:focus-visible {
  background: var(--blue-soft);
}

.footer-newsletter form button:focus-visible {
  background: var(--violet);
}

.footer-newsletter input[type="email"] {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 0;
  min-width: 0;
  padding: 17px 18px;
  width: 100%;
}

.footer-newsletter button {
  align-items: center;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-left: 0;
  cursor: pointer;
  display: flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 28px;
  justify-content: space-between;
  padding: 17px 20px;
}

.footer-newsletter button:hover {
  background: var(--violet);
}

.footer-newsletter button span {
  font-size: 1.25rem;
  line-height: 1;
}

.footer-newsletter .row-form > p {
  margin-top: 11px;
}

.footer-newsletter__success {
  background: var(--mint);
  border: 3px solid var(--ink);
  padding: 22px 24px;
}

.footer-newsletter__success h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 12px 0;
}

.site-footer__bottom {
  align-items: center;
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 22px;
}

.site-footer__bottom p {
  font-size: 0.74rem;
  margin: 0;
}

.site-footer__bottom > div {
  display: flex;
  gap: 25px;
}

/* Access request */
.access-page {
  min-height: 90vh;
  padding: 70px 0 120px;
}

.access-page__glow {
  display: none;
}

.access-page__shell {
  align-items: start;
  display: grid;
  gap: clamp(55px, 8vw, 120px);
  grid-template-columns: 0.72fr 1.28fr;
}

.access-intro {
  position: sticky;
  top: 120px;
}

.eyebrow {
  border-left: 8px solid var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 0 5px 12px;
  text-transform: uppercase;
}

.eyebrow .status-dot {
  display: none;
}

.access-intro h1 {
  font-size: clamp(3rem, 5.3vw, 5.4rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 34px 0;
}

.access-intro > p:not(.access-intro__contact) {
  font-size: 1rem;
  font-weight: 570;
}

.access-expectations {
  border-top: 3px solid var(--ink);
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}

.access-expectations li {
  border-bottom: 2px solid var(--ink);
  display: grid;
  gap: 15px;
  grid-template-columns: 38px 1fr;
  padding: 18px 0;
}

.access-expectations li > span {
  font-size: 0.7rem;
  font-weight: 800;
}

.access-expectations strong,
.access-expectations small {
  display: block;
}

.access-expectations strong {
  font-size: 0.9rem;
}

.access-expectations small {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 3px;
}

.access-intro__contact {
  font-size: 0.8rem;
  margin-top: 26px;
}

.access-intro__contact a,
.privacy-note a,
.email-handoff a {
  color: var(--blue);
  font-weight: 800;
}

.application-card--business .application-progress {
  background: var(--yellow);
}

.application-card--professional .application-progress {
  background: var(--violet);
}

.application-card--professional .progress-track span {
  width: 16.6667%;
}

.application-card {
  background: var(--white);
  border: 3px solid var(--ink);
}

.application-progress {
  border-bottom: 3px solid var(--ink);
  padding: 22px 28px 0;
}

.application-progress > div:first-child {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.application-progress p {
  font-size: 0.85rem;
  font-weight: 800;
  margin: 0;
}

.application-progress [data-progress-label],
.application-progress [data-professional-progress-label] {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.progress-track {
  background: var(--paper);
  height: 8px;
  margin-top: 20px;
}

.progress-track span {
  background: var(--blue);
  display: block;
  height: 100%;
  transition: width 160ms ease;
  width: 20%;
}

.access-form {
  padding: clamp(28px, 5vw, 50px);
}

.form-step fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.form-step legend {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1;
  padding: 0;
}

.step-intro {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 570;
  margin: 15px 0 35px;
}

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

.field-grid--two {
  grid-template-columns: 1fr 1fr;
}

.field {
  display: block;
  margin-bottom: 20px;
}

.field > span {
  display: flex;
  font-size: 0.82rem;
  font-weight: 750;
  justify-content: space-between;
  margin-bottom: 7px;
}

.field > span small {
  color: var(--muted);
  font-weight: 550;
}

.field input,
.field textarea,
.field select {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 0;
  outline: 0;
  padding: 13px 14px;
  width: 100%;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 2px var(--blue);
}

.follow-up-times {
  border-top: 3px solid var(--ink);
  margin-top: 42px;
  padding-top: 26px;
}

.follow-up-times__intro {
  display: grid;
  gap: 12px 24px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
}

.follow-up-times__intro p {
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
}

.follow-up-times__intro span,
.follow-up-times__timezone-note {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.follow-up-times__timezone {
  margin-top: 28px;
  max-width: 360px;
}

.follow-up-times__timezone-note {
  border-left: 7px solid var(--violet);
  margin: 26px 0 0;
  padding: 4px 0 4px 12px;
}

.follow-up-times__slots {
  border-top: 2px solid var(--ink);
  margin-top: 30px;
}

.follow-up-time {
  align-items: end;
  border-bottom: 2px solid var(--ink);
  display: grid;
  gap: 16px;
  grid-template-columns: 44px minmax(0, 1fr) minmax(0, 0.75fr);
  padding: 16px 0;
}

.follow-up-time__number {
  align-self: center;
  font-size: 0.68rem;
  font-weight: 850;
}

.follow-up-time .field {
  margin: 0;
}

.follow-up-time input[type="date"],
.follow-up-time input[type="time"] {
  color-scheme: light;
  min-height: 52px;
}

.follow-up-time input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
}

.follow-up-times .field-error {
  margin-bottom: 0;
}

.field-hint,
.privacy-note {
  color: var(--muted);
  display: block;
  font-size: 0.76rem;
  margin-top: 8px;
}

.choice-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.choice-grid--single {
  grid-template-columns: 1fr;
}

.choice {
  cursor: pointer;
  display: block;
  position: relative;
}

.choice input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.choice span {
  align-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: flex;
  font-size: 0.85rem;
  font-weight: 600;
  justify-content: space-between;
  min-height: 54px;
  padding: 11px 13px;
}

.choice span::after {
  border: 2px solid var(--ink);
  content: "";
  flex: 0 0 auto;
  height: 16px;
  margin-left: 12px;
  width: 16px;
}

.choice input[type="radio"] + span::after {
  border-radius: 50%;
}

.choice input:checked + span {
  background: var(--yellow);
}

.choice input:checked + span::after {
  background: var(--blue);
  box-shadow: inset 0 0 0 3px var(--yellow);
}

.professional-application .choice input:checked + span {
  background: var(--violet);
}

.professional-application .choice input:checked + span::after {
  box-shadow: inset 0 0 0 3px var(--violet);
}

.choice input:focus-visible + span {
  outline: 4px solid var(--orange);
  outline-offset: 2px;
}

.field-error {
  color: #b92c12;
  font-size: 0.82rem;
}

.form-question {
  border-top: 3px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  margin: 42px 0 18px;
  padding-top: 20px;
}

.form-question--first {
  margin-top: 0;
}

.field--spaced {
  margin-top: 34px;
}

.file-field {
  background: var(--paper);
  border: 2px solid var(--ink);
  display: block;
  padding: 22px;
}

.file-field > span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.file-field input {
  font-size: 0.82rem;
  width: 100%;
}

.file-field input::file-selector-button {
  background: var(--violet);
  border: 2px solid var(--ink);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  margin-right: 14px;
  padding: 10px 13px;
}

.file-field input:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.file-field small {
  color: var(--muted);
  display: block;
  font-size: 0.74rem;
  margin-top: 14px;
}

.consent {
  align-items: flex-start;
  background: var(--blue-soft);
  border: 2px solid var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 0.82rem;
  margin-top: 25px;
  padding: 14px;
  position: relative;
}

.consent input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}

.consent > span {
  align-items: start;
  display: grid;
  flex: 1;
  gap: 12px;
  grid-template-columns: 18px 1fr;
}

.consent > span::before {
  border: 2px solid var(--ink);
  content: "";
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.consent input:checked + span::before {
  background: var(--blue);
  box-shadow: inset 0 0 0 3px var(--blue-soft);
}

.consent input:focus-visible + span::before {
  outline: 4px solid var(--orange);
  outline-offset: 2px;
}

.request-summary {
  border: 2px solid var(--ink);
  margin: 0;
}

.request-summary > div {
  border-bottom: 2px solid var(--ink);
  display: grid;
  gap: 15px;
  grid-template-columns: 105px 1fr;
  padding: 11px 13px;
}

.request-summary > div:last-child {
  border-bottom: 0;
}

.request-summary dt {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.request-summary dd {
  font-size: 0.82rem;
  margin: 0;
  overflow-wrap: anywhere;
}

.form-actions {
  border-top: 3px solid var(--ink);
  display: flex;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 24px;
}

.email-handoff {
  background: var(--mint);
  border: 2px solid var(--ink);
  font-size: 0.82rem;
  margin: 22px 0 0;
  padding: 14px;
}

.form-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

.form-security {
  background: var(--paper);
  border: 2px solid var(--ink);
  margin-top: 28px;
  padding: 16px;
}

.form-security > span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.form-security [data-turnstile-container] {
  min-height: 65px;
}

.form-delivery-status {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  margin: 12px 0 0;
  min-height: 1.5em;
}

.form-actions button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-modal-open {
  overflow: hidden;
}

.form-success-modal {
  inset: 0;
  position: fixed;
  z-index: 700;
}

.form-success-modal__backdrop {
  background: rgba(23, 24, 25, 0.72);
  inset: 0;
  position: absolute;
}

.form-success-modal__dialog {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--yellow);
  left: 50%;
  max-height: calc(100vh - 40px);
  max-width: 590px;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 52px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
}

.form-success-modal__dialog:focus {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.form-success-modal__mark {
  align-items: center;
  background: var(--mint);
  border: 3px solid var(--ink);
  display: flex;
  font-size: 1.7rem;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  margin-bottom: 32px;
  transform: rotate(-4deg);
  width: 58px;
}

.form-success-modal__dialog > p:first-of-type {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-success-modal__dialog h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 20px 0;
}

.form-success-modal__dialog h2 + p {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-success-modal__reference {
  background: var(--violet);
  border: 2px solid var(--ink);
  margin: 30px 0;
  padding: 14px 16px;
}

.form-success-modal__reference span,
.form-success-modal__reference strong {
  display: block;
}

.form-success-modal__reference span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-success-modal__reference strong {
  font-size: 0.82rem;
  margin-top: 5px;
  overflow-wrap: anywhere;
}

/* Legal and contact pages */
.legal-page {
  min-height: 100vh;
}

.legal-hero {
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  position: relative;
}

.legal-hero--privacy {
  background: var(--violet);
}

.legal-hero--terms {
  background: var(--yellow);
}

.legal-hero--cookies {
  background: var(--mint);
}

.legal-hero--acceptable {
  background: var(--orange);
}

.legal-hero::after {
  border: 3px solid var(--ink);
  border-radius: 50%;
  content: "";
  height: clamp(160px, 20vw, 330px);
  opacity: 0.18;
  position: absolute;
  right: clamp(-120px, -6vw, -40px);
  top: clamp(-130px, -7vw, -55px);
  width: clamp(160px, 20vw, 330px);
}

.legal-hero__layout {
  align-items: end;
  display: grid;
  gap: clamp(38px, 6vw, 90px);
  grid-template-columns: 155px minmax(0, 1fr) 210px;
  min-height: clamp(360px, 42vw, 560px);
  padding-block: clamp(70px, 8vw, 115px);
  position: relative;
  z-index: 1;
}

.legal-hero__eyebrow,
.legal-hero__updated,
.legal-rail > p:first-child {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-hero__eyebrow {
  align-self: start;
  border-left: 8px solid var(--orange);
  margin: 6px 0 0;
  padding: 4px 0 4px 12px;
}

.legal-hero h1 {
  font-size: clamp(3.3rem, 7vw, 7.4rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.91;
  margin: 0;
  max-width: 940px;
}

.legal-hero h1 + p {
  font-size: clamp(1rem, 1.45vw, 1.3rem);
  font-weight: 600;
  margin: 34px 0 0;
  max-width: 680px;
}

.legal-hero__updated {
  border-top: 3px solid var(--ink);
  line-height: 1.6;
  margin: 0;
  padding-top: 14px;
}

.legal-hero__updated strong {
  font-size: 0.78rem;
}

.legal-reading {
  padding: clamp(75px, 9vw, 130px) 0;
}

.legal-reading__layout {
  align-items: start;
  display: grid;
  gap: clamp(70px, 10vw, 150px);
  grid-template-columns: minmax(210px, 280px) minmax(0, 760px);
  justify-content: space-between;
}

.legal-rail {
  border-top: 3px solid var(--ink);
  padding-top: 22px;
  position: sticky;
  top: calc(var(--header-height) + var(--countdown-height) + 24px);
}

.legal-rail > p:first-child {
  margin: 0 0 38px;
}

.legal-rail h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0;
}

.legal-rail h2 + p {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 22px 0 32px;
}

.legal-rail a {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.legal-document {
  margin: 0;
  max-width: none;
  min-width: 0;
}

.legal-document [data-custom-class="title"],
.legal-document [data-custom-class="subtitle"],
.legal-document h1 {
  display: none !important;
}

.legal-document [data-custom-class="body"] > :first-child h2:first-of-type {
  margin-top: 0 !important;
}

.legal-document h2 {
  border-top: 2px solid var(--ink);
  padding-top: 22px;
}

.legal-document hr {
  background: var(--blue);
  border: 0;
  height: 12px;
  margin: 80px 0;
}

.min-h-screen {
  min-height: 100vh;
}

body > main.min-h-screen {
  margin-inline: auto;
  max-width: 1180px;
  padding: 70px 28px 110px;
}

.text-page {
  margin-inline: auto;
  max-width: 900px;
}

.mx-auto.max-w-3xl {
  background: var(--white);
  border: 3px solid var(--ink);
  margin-inline: auto;
  max-width: 760px;
  padding: 40px;
}

.mx-auto.max-w-3xl h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.035em;
}

.mx-auto.max-w-3xl p {
  color: var(--muted);
}

.mx-auto.max-w-3xl a {
  color: var(--blue);
  font-weight: 800;
}

/* Cookie notice */
.cookie-consent {
  bottom: 0;
  left: 0;
  max-height: 100vh;
  overflow-y: auto;
  padding: 20px;
  position: fixed;
  right: 0;
  z-index: 500;
}

.cookie-consent.is-hidden {
  display: none;
}

.cookie-consent__panel {
  align-items: stretch;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 220px;
  margin-inline: auto;
  max-width: 1080px;
  overflow: hidden;
}

.cookie-consent__signal {
  align-items: center;
  background: var(--white);
  border-right: 3px solid var(--ink);
  display: flex;
  justify-content: center;
  min-height: 164px;
}

.cookie-consent__signal img {
  display: block;
  height: auto;
  max-width: 92px;
  width: 76%;
}

.cookie-consent__content {
  align-self: center;
  padding: 24px 28px;
}

.cookie-consent__eyebrow {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.cookie-consent h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 8px 0 11px;
  outline: 0;
}

.cookie-consent__content > p:not(.cookie-consent__eyebrow) {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 560;
  line-height: 1.5;
  margin: 0;
  max-width: 590px;
}

.cookie-consent__policies {
  display: flex;
  gap: 20px;
  margin-top: 14px;
}

.cookie-consent__policies a {
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  border-left: 3px solid var(--ink);
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.cookie-consent__actions button {
  background: var(--mint);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 16px 22px;
  text-align: center;
}

.cookie-consent__actions button + button {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
}

.cookie-consent__actions button::after {
  content: "  +";
  font-weight: 900;
}

.cookie-consent__actions button[aria-pressed="true"] {
  background: var(--violet);
}

.cookie-consent__actions button:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: -6px;
}

@media (max-width: 1040px) {
  .dual-title {
    grid-template-columns: 1fr;
  }

  .dual-title > p {
    max-width: 650px;
  }

  .operation-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    align-items: stretch;
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 16px 28px 24px;
    position: absolute;
    right: 0;
    top: var(--header-height);
  }

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

  .site-nav > a:not(.button) {
    border-bottom: 2px solid var(--ink);
    padding: 14px 0;
  }

  .nav-prompt {
    border-bottom: 2px solid var(--ink);
    margin: 0;
    padding: 10px 0 14px;
  }

  .site-nav .button {
    margin-top: 16px;
  }

  .path-choice,
  .purpose-split,
  .niche-question,
  .relationship-split,
  .belief-grid,
  .control-split,
  .beta-paths,
  .access-page__shell {
    grid-template-columns: 1fr;
  }

  .path-choice__business {
    border-bottom: 3px solid var(--ink);
    border-right: 0;
  }

  .purpose-split article,
  .purpose-split article + article,
  .niche-question > div,
  .niche-question > div + div,
  .relationship-split article,
  .relationship-split article + article,
  .belief-grid article,
  .belief-grid article + article,
  .control-split article,
  .control-split article + article,
  .beta-paths article,
  .beta-paths article + article {
    border-left: 0;
    padding: 32px 0 65px;
  }

  .belief-grid article + article {
    border-left: 0;
    border-top: 3px solid var(--ink);
  }

  .purpose-split article + article,
  .niche-question > div + div,
  .relationship-split article + article,
  .control-split article + article,
  .beta-paths article + article {
    border-top: 3px solid currentColor;
  }

  .journey-headings {
    display: none;
  }

  .journey-steps {
    margin-top: 70px;
  }

  .journey-steps li {
    grid-template-columns: 55px 1fr;
  }

  .journey-steps li > div + div {
    border-left: 0;
    border-top: 2px solid var(--ink);
    grid-column: 2;
  }

  .access-intro {
    position: static;
  }

  .footer-newsletter {
    align-items: start;
    grid-template-columns: 1fr;
  }

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

  .footer-newsletter button {
    border-left: 3px solid var(--ink);
    border-top: 0;
  }

  .contact-strip__layout,
  .legal-hero__layout,
  .legal-reading__layout {
    grid-template-columns: 1fr;
  }

  .contact-strip__layout {
    align-items: start;
  }

  .contact-strip a {
    width: fit-content;
  }

  .legal-hero__layout {
    align-items: start;
    min-height: 0;
  }

  .legal-hero__updated {
    max-width: 260px;
  }

  .legal-rail {
    display: grid;
    gap: 18px 36px;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr);
    position: static;
  }

  .legal-rail > p:first-child {
    grid-column: 1 / -1;
    margin-bottom: 6px;
  }

  .legal-rail h2 + p {
    margin: 0;
  }

  .legal-rail a {
    grid-column: 2;
  }
}

@media (max-width: 580px) {
  :root {
    --countdown-height: 72px;
    --header-height: 68px;
  }

  body,
  body.site-body--dark {
    font-size: 16px;
  }

  .shell {
    padding-inline: 17px;
  }

  .site-nav {
    padding-inline: 17px;
    top: var(--header-height);
  }

  .dual-opening {
    padding-top: 0;
  }

  .dual-opening > .shell {
    padding-top: 30px;
  }

  .launch-countdown__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    justify-content: center;
    min-height: 72px;
    padding-block: 10px;
  }

  .launch-countdown__clock {
    gap: 11px;
    padding-left: 22px;
  }

  .launch-countdown__clock span {
    font-size: 0.59rem;
  }

  .opening-meta,
  .beta-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .dual-title {
    padding: 72px 0;
  }

  .dual-title h1 {
    font-size: clamp(3.8rem, 18vw, 5.7rem);
    line-height: 0.95;
  }

  .path-choice article {
    min-height: auto;
    padding: 34px 24px 48px;
  }

  .path-choice h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    margin-top: 48px;
  }

  .shared-purpose,
  .niche-story,
  .parallel-journey,
  .work-relationship,
  .shared-operation,
  .belief-story,
  .control-story,
  .dual-beta {
    padding-block: 82px;
  }

  .short-heading {
    grid-template-columns: 1fr;
  }

  .short-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.1rem);
    line-height: 1;
  }

  .purpose-split,
  .niche-question,
  .relationship-split,
  .belief-grid,
  .control-split,
  .beta-paths {
    margin-top: 65px;
  }

  .contact-strip__layout {
    gap: 34px;
  }

  .contact-strip h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
    line-height: 1;
  }

  .contact-strip a {
    gap: 24px;
    white-space: normal;
    width: 100%;
  }

  .legal-hero__layout {
    gap: 42px;
    padding-block: 62px;
  }

  .legal-hero h1 {
    font-size: clamp(3.35rem, 16vw, 5rem);
    line-height: 0.94;
  }

  .legal-reading {
    padding-block: 72px;
  }

  .legal-reading__layout {
    gap: 64px;
  }

  .legal-rail {
    display: block;
  }

  .legal-rail > p:first-child {
    margin-bottom: 28px;
  }

  .legal-rail h2 + p {
    margin: 20px 0 28px;
  }

  .niche-list {
    display: block;
  }

  .niche-list span {
    display: block;
    margin-bottom: 15px;
  }

  .niche-list span::after {
    display: none;
  }

  .journey-steps li {
    grid-template-columns: 40px 1fr;
  }

  .journey-steps li > div {
    padding-inline: 18px 0;
  }

  .operation-copy dl > div {
    grid-template-columns: 110px 1fr;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .section-path-actions {
    grid-template-columns: 1fr;
  }

  .field-grid--two,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .follow-up-times__intro {
    grid-template-columns: 1fr;
  }

  .follow-up-time {
    align-items: start;
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .follow-up-time .field {
    grid-column: 2;
  }

  .follow-up-time__number {
    grid-row: 1 / span 2;
    padding-top: 19px;
  }

  .access-form {
    padding: 26px 18px;
  }

  .application-progress {
    padding-inline: 18px;
  }

  .form-actions {
    gap: 10px;
  }

  .form-actions .button {
    padding-inline: 14px;
  }

  .request-summary > div {
    grid-template-columns: 80px 1fr;
  }

  .cookie-consent {
    padding: 12px;
  }

  .cookie-consent__panel {
    box-shadow: 6px 6px 0 var(--ink);
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .cookie-consent__signal {
    min-height: 142px;
  }

  .cookie-consent__content {
    padding: 20px 18px;
  }

  .cookie-consent__actions {
    border-left: 0;
    border-top: 3px solid var(--ink);
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .cookie-consent__actions button + button {
    border-left: 3px solid var(--ink);
    border-top: 0;
  }

  .cookie-consent__signal img {
    max-width: 54px;
    width: 82%;
  }
}

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

@media print {
  .site-header,
  .launch-countdown,
  .site-footer,
  .cookie-consent {
    display: none !important;
  }
}
