:root {
  --navy-950: #091220;
  --navy-900: #101b2f;
  --navy-800: #1a2942;
  --ivory-100: #fffaf1;
  --ivory-200: #f4eee3;
  --ivory-300: #e8dece;
  --signal: #ff5c3b;
  --signal-dark: #b9321d;
  --ink: #172033;
  --muted: #68675f;
  --line-dark: rgba(16, 27, 47, 0.2);
  --line-light: rgba(255, 250, 241, 0.22);
  --shadow: 0 1.8rem 5rem rgba(9, 18, 32, 0.16);
  --font-sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --shell: 78rem;
  --header-height: 4.75rem;
  --anchor-offset: var(--header-height);
  --radius-small: 0.45rem;
  --radius-medium: 0.9rem;
  --radius-large: 1.6rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-motion: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
  color-scheme: light;
}

html.is-inertial-scrolling {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--ivory-100);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
h4,
dl,
dd,
ol,
ul,
figure,
fieldset {
  margin: 0;
}

ol,
ul {
  padding: 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  padding: 0;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--signal);
  color: var(--navy-950);
}

:focus-visible {
  outline: 0.2rem solid var(--signal);
  outline-offset: 0.25rem;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  translate: 0 -200%;
  padding: 0.75rem 1rem;
  background: var(--ivory-100);
  color: var(--navy-950);
  font-weight: 700;
  text-decoration: none;
  transition: translate 180ms ease;
}

.skip-link:focus {
  translate: 0;
}

.reading-progress {
  position: fixed;
  z-index: 999;
  inset: 0 0 auto;
  height: 0.2rem;
  background: transparent;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--signal);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--ivory-100);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(255, 250, 241, 0.96);
  color: var(--navy-950);
  box-shadow: 0 0.1rem 0 rgba(16, 27, 47, 0.1);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand-wordmark {
  position: relative;
  display: block;
  width: clamp(7.5rem, 9.6vw, 8.7rem);
  aspect-ratio: 680 / 190;
}

.brand-wordmark-shape {
  position: absolute;
  inset: 0;
  display: block;
  background: currentColor;
  -webkit-mask: url("../assets/ohmymotion-wordmark.svg") center / contain no-repeat;
  mask: url("../assets/ohmymotion-wordmark.svg") center / contain no-repeat;
  mask-mode: alpha;
}

.brand-wordmark-dot {
  position: absolute;
  right: 0.25%;
  bottom: 12%;
  width: 4.9%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--signal);
  pointer-events: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.75rem);
  font-size: 0.83rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 0.1rem;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: var(--signal);
  color: var(--navy-950);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-0.1rem);
  background: var(--ivory-100);
}

.site-header.is-scrolled .nav-cta:hover,
.site-header.is-menu-open .nav-cta:hover {
  background: var(--navy-950);
  color: var(--ivory-100);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-icon,
.menu-icon::before {
  display: block;
  width: 1.35rem;
  height: 0.12rem;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-icon::before {
  transform: translateY(-0.38rem);
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  transform: rotate(-90deg);
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.78rem 1.1rem;
  border: 0.1rem solid transparent;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-0.15rem);
}

.button-signal {
  background: var(--signal);
  color: var(--navy-950);
}

.button-signal:hover {
  background: var(--ivory-100);
}

.button-dark {
  background: var(--navy-950);
  color: var(--ivory-100);
}

.button-dark:hover {
  background: var(--signal);
  color: var(--navy-950);
}

.button-outline-light {
  border-color: rgba(255, 250, 241, 0.65);
  color: var(--ivory-100);
}

.button-outline-light:hover {
  border-color: var(--ivory-100);
  background: var(--ivory-100);
  color: var(--navy-950);
}

.button-quiet {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--navy-950);
}

.button-quiet:hover {
  border-color: var(--navy-950);
}

.section {
  padding-block: clamp(5rem, 8vw, 8rem);
}

.section-kicker {
  margin-bottom: 1.1rem;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.section-heading {
  max-width: 55rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading h2,
.friction-statement h2,
.commitment-intro h2,
.diagnostic-intro h2,
.about-copy h2 {
  font-size: clamp(2.35rem, 5vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading-wide {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.section-heading-wide h2 {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.section-heading-wide > p {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  text-align: center;
}

.dashboard-title-line,
.offer-title-line,
.experience-title-line,
.commitment-title-line,
.about-title-line {
  display: block;
}

.hero {
  --hero-progress: 0;
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  background: var(--navy-900);
  color: var(--ivory-100);
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  z-index: 0;
  top: -18%;
  left: -12%;
  width: clamp(18rem, 34vw, 34rem);
  aspect-ratio: 1.35;
  border-radius: 58% 42% 63% 37%;
  background: rgba(21, 151, 184, 0.2);
  box-shadow:
    64vw 4vh 8rem 2rem rgba(41, 87, 226, 0.24),
    54vw 64vh 9rem 3rem rgba(104, 56, 180, 0.2),
    10vw 72vh 8rem 1rem rgba(255, 92, 109, 0.05);
  filter: blur(clamp(4rem, 8vw, 8rem));
  opacity: 0.78;
  transform: rotate(-8deg) scale(1.08);
}

.hero::after {
  z-index: 2;
  top: 52%;
  left: 50%;
  width: min(94vw, 88rem);
  height: min(66svh, 44rem);
  border-radius: 46% 54% 43% 57%;
  background: rgba(7, 15, 30, 0.44);
  filter: blur(clamp(4rem, 8vw, 8rem));
  opacity: 0.68;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 900ms var(--ease-motion);
}

.hero-field-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, calc(var(--hero-progress) * 1.5rem), 0)
    scaleY(calc(1 + (var(--hero-progress) * 0.12)));
  transform-origin: 50% 18%;
  transition: opacity 900ms var(--ease-motion);
  will-change: transform, opacity;
}

.hero.is-hero-field-ready .hero-field-canvas {
  opacity: 1;
}

.hero.is-hero-field-ready::after {
  opacity: 0.1;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 76rem);
  align-items: center;
  justify-content: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  text-align: center;
  opacity: calc(1 - (var(--hero-progress) * 0.86));
  filter: blur(calc(var(--hero-progress) * 0.5rem));
  transform: scale(calc(1 + (var(--hero-progress) * 0.07)));
  transform-origin: center;
  will-change: transform, filter, opacity;
}

.hero-mist-canvas {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1200ms var(--ease-motion);
}

.hero.is-hero-mist-ready > .hero-mist-canvas {
  opacity: 0.39;
}

.hero-label {
  display: block;
  margin-bottom: clamp(1.5rem, 3vw, 2.75rem);
  font-size: clamp(0.78rem, 1.2vw, 0.94rem);
  font-weight: 700;
}

.hero h1 {
  position: relative;
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.9rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.026em;
}

.hero h1::after {
  position: absolute;
  z-index: 2;
  top: 8%;
  left: -24%;
  width: clamp(16rem, 30vw, 32rem);
  height: 68%;
  border-radius: 48% 52% 44% 56%;
  background: rgba(71, 169, 218, 0.43);
  box-shadow:
    clamp(7rem, 13vw, 14rem) 1rem 6rem 1rem rgba(137, 77, 214, 0.4),
    3rem -2rem 5rem rgba(255, 92, 109, 0.12);
  content: "";
  filter: blur(clamp(2rem, 3.6vw, 3.6rem));
  opacity: 0.84;
  pointer-events: none;
  animation: hero-title-mist 15s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes hero-title-mist {
  0% {
    transform: translate3d(-8%, -5%, 0) rotate(-7deg) scale(0.9);
  }

  48% {
    transform: translate3d(116%, 8%, 0) rotate(2deg) scale(1.08);
  }

  100% {
    transform: translate3d(238%, -3%, 0) rotate(8deg) scale(0.96);
  }
}

.hero-title-line {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-title-line + .hero-title-line {
  margin-top: 0.08em;
}

.no-wrap {
  white-space: nowrap;
}

.hero-lead {
  max-width: 58rem;
  margin: clamp(1.75rem, 3vw, 2.5rem) auto 0;
  font-size: clamp(1.06rem, 1.65vw, 1.35rem);
  font-weight: 700;
  line-height: 1.45;
  text-wrap: pretty;
}

.hero-support {
  max-width: 39rem;
  margin: 1rem auto 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  text-wrap: pretty;
}

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

.hero-audience {
  max-width: 35rem;
  margin: clamp(2.2rem, 5vw, 4rem) auto 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.88rem;
  text-align: center;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 3;
  right: max(1.5rem, calc((100vw - var(--shell)) / 2));
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ivory-100);
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-scroll-cue i {
  display: block;
  width: 2.5rem;
  height: 0.1rem;
  background: currentColor;
}

.section-frictions {
  --hero-handoff: 0;
  position: relative;
  overflow: clip;
  background: var(--ivory-100);
  isolation: isolate;
}

.section-frictions::before {
  position: absolute;
  z-index: 0;
  top: -11rem;
  left: 50%;
  width: min(78vw, 64rem);
  height: 20rem;
  border-radius: 52% 48% 60% 40%;
  background: rgba(54, 105, 211, 0.18);
  box-shadow:
    -22rem 2rem 7rem rgba(25, 154, 187, 0.13),
    21rem 1rem 8rem rgba(107, 62, 177, 0.12);
  filter: blur(5rem);
  opacity: var(--hero-handoff);
  pointer-events: none;
  transform: translate3d(-50%, 0, 0);
  content: "";
  will-change: opacity;
}

.section-frictions > .shell {
  position: relative;
  z-index: 1;
}

.friction-layout {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}

.friction-statement {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.friction-statement .section-kicker,
.friction-statement h2,
.friction-statement > p:last-child {
  grid-column: 1 / -1;
}

.friction-statement h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 3vw, 2.85rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.friction-statement > p:last-child {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  font-size: 1.06rem;
  text-align: center;
}

.friction-list {
  display: grid;
  max-width: 72rem;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  list-style: none;
}

.friction-list li {
  display: grid;
  min-height: 13.5rem;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.friction-list li:nth-child(1),
.friction-list li:nth-child(2) {
  border-bottom: 0.12rem solid var(--navy-900);
}

.friction-list li:nth-child(odd) {
  border-right: 0.12rem solid var(--navy-900);
}

.friction-list li:nth-child(2) {
  padding-top: clamp(1.4rem, 3vw, 2.2rem);
}

.friction-list li:nth-child(3) {
  padding-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

.friction-list span {
  padding-top: 0.25rem;
  color: var(--signal-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.friction-list h3 {
  min-height: 3.2em;
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.07;
  letter-spacing: -0.038em;
}

.friction-list p {
  color: var(--muted);
  font-size: 0.94rem;
}

.section-dashboard {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--ivory-100);
  isolation: isolate;
}

.dashboard {
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--ivory-100);
  color: var(--navy-950);
  box-shadow: var(--shadow);
}

.dashboard-topbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  min-height: 4.2rem;
  padding: 0.75rem 1rem 0.75rem 1.25rem;
  border-bottom: 0.1rem solid var(--line-dark);
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.dashboard-brand span {
  width: 0.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--signal);
}

.dashboard-topbar > p {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.dashboard-avatar {
  display: grid;
  width: 2.2rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--ivory-100);
  font-size: 0.66rem;
  font-weight: 800;
}

.dashboard-body {
  display: grid;
  min-height: 35rem;
  grid-template-columns: 15.5rem minmax(0, 1fr);
}

.dashboard-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem 0.8rem;
  background: var(--ivory-200);
}

.dashboard-tabs button {
  width: 100%;
  padding: 0.9rem 0.85rem;
  border: 0;
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.dashboard-tabs button[aria-selected="true"] {
  background: var(--navy-900);
  color: var(--ivory-100);
}

.dashboard-tabs button:hover:not([aria-selected="true"]) {
  background: var(--ivory-300);
  color: var(--navy-950);
}

.dashboard-panels {
  min-width: 0;
  padding: clamp(1.6rem, 4vw, 3.5rem);
}

.dashboard-panel {
  animation: panel-in 300ms var(--ease-out);
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(0.5rem);
  }
}

.panel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.panel-heading span {
  color: var(--signal-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.panel-heading h3 {
  max-width: 28rem;
  margin-top: 0.35rem;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.panel-heading > p {
  max-width: 17rem;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: right;
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(17rem, 0.7fr);
  gap: 1rem;
}

.overview-priority {
  min-height: 18rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-medium);
  background: var(--signal);
}

.overview-priority > p:first-child,
.founder-program > p:first-child {
  font-size: 0.74rem;
  font-weight: 800;
}

.overview-priority h4 {
  max-width: 20ch;
  margin: 1.4rem 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.overview-priority > p:nth-of-type(2) {
  max-width: 32rem;
  font-size: 0.9rem;
}

.overview-priority > span {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.38rem 0.6rem;
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--ivory-100);
  font-size: 0.68rem;
  font-weight: 800;
}

.demo-metrics {
  display: grid;
  gap: 0.7rem;
}

.demo-metrics div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 1.15rem;
  border-radius: var(--radius-small);
  background: var(--ivory-200);
}

.demo-metrics dt {
  font-size: 0.8rem;
  font-weight: 800;
}

.demo-metrics dd {
  font-size: 1.8rem;
  font-weight: 800;
}

.demo-metrics small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.68rem;
}

.visibility-layout,
.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
  align-items: stretch;
  gap: 1.5rem;
}

.demo-chart {
  display: flex;
  min-height: 17rem;
  align-items: end;
  gap: clamp(0.45rem, 1.5vw, 1rem);
  padding: 2rem;
  border-radius: var(--radius-medium);
  background: var(--navy-900);
}

.demo-chart span {
  flex: 1;
  height: var(--bar);
  min-width: 0.65rem;
  background: var(--signal);
}

.dashboard-list {
  display: grid;
  align-content: start;
}

.dashboard-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 0.1rem solid var(--line-dark);
}

.dashboard-list dt {
  font-size: 0.8rem;
  font-weight: 800;
}

.dashboard-list dd {
  color: var(--muted);
  font-size: 0.76rem;
}

.journey-list {
  display: grid;
  gap: 0.35rem;
  list-style: none;
}

.journey-list li {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-small);
  background: var(--ivory-200);
}

.journey-list li:nth-child(3) {
  margin-left: 2rem;
  background: var(--signal);
}

.journey-list li > span,
.journey-list small {
  color: var(--muted);
  font-size: 0.68rem;
}

.journey-list li:nth-child(3) > span,
.journey-list li:nth-child(3) small {
  color: var(--navy-800);
}

.journey-list strong {
  display: block;
  font-size: 0.84rem;
}

.journey-list b {
  font-size: 1.6rem;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.recommendation-grid div {
  min-height: 7.5rem;
  padding: 1rem;
  border-radius: var(--radius-small);
  background: var(--ivory-200);
}

.recommendation-grid div:nth-child(3) {
  background: var(--signal);
}

.recommendation-grid dt {
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
}

.recommendation-grid dd {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.35;
}

.request-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  list-style: none;
}

.request-actions li {
  display: flex;
  min-height: 7rem;
  align-items: end;
  padding: 1rem;
  border-radius: var(--radius-small);
  background: var(--ivory-200);
  font-size: 0.82rem;
  font-weight: 800;
}

.request-sample {
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  background: var(--navy-900);
  color: var(--ivory-100);
}

.request-sample span {
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 800;
}

.request-sample h4 {
  margin: 1.2rem 0;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.request-sample p {
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.82rem;
}

.dashboard-note {
  max-width: none;
  margin: 2rem auto 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: clamp(0.92rem, 1.15vw, 1.1rem);
  font-style: italic;
  text-align: center;
  white-space: nowrap;
}

.section-offer {
  background: var(--ivory-100);
}

.offer-heading {
  max-width: none;
  text-align: center;
}

.offer-heading .section-kicker {
  text-align: center;
}

.offer-heading h2 {
  width: 100%;
  max-width: none;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.offer-heading-line {
  display: block;
}

.offer-sequence {
  display: grid;
  max-width: 72rem;
  margin-left: auto;
}

.offer-sequence article {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr) 9rem;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 2.4rem 0;
  border-top: 0.12rem solid var(--navy-900);
}

.offer-sequence article:nth-child(2) {
  width: calc(100% - 5rem);
  margin-left: 5rem;
}

.offer-sequence article:nth-child(3) {
  width: calc(100% - 10rem);
  margin-left: 10rem;
  border-bottom: 0.12rem solid var(--navy-900);
}

.offer-sequence article > span {
  color: var(--signal-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.offer-sequence h3 {
  max-width: 28rem;
  margin-bottom: 0.7rem;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.offer-sequence article:nth-child(3) h3 {
  max-width: 34rem;
}

.offer-sequence article > div p {
  max-width: 45rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.offer-phase {
  padding-top: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
}

.offer-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin: 3rem 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.offer-summary i {
  width: 0.3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--signal);
}

.founder-program {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.75fr);
  overflow: hidden;
  margin-top: clamp(3rem, 7vw, 6rem);
  border-radius: var(--radius-large);
  background: var(--navy-900);
  color: var(--ivory-100);
}

.founder-intro,
.founder-terms,
.founder-scope {
  padding: clamp(2rem, 5vw, 4rem);
}

.founder-intro {
  min-height: 28rem;
  background: var(--signal);
  color: var(--navy-950);
}

.founder-intro > p:first-child {
  margin-bottom: 0.8rem;
  padding-bottom: 0.3rem;
  border-bottom: 0.14rem solid currentColor;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.founder-cohort {
  max-width: 25rem;
  margin-bottom: 3.5rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.founder-intro h3 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.founder-intro > p:last-child {
  max-width: 39rem;
  font-size: 0.95rem;
}

.founder-terms {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 3.25rem);
  background: var(--navy-900);
  isolation: isolate;
}

.founder-terms dl {
  display: grid;
  z-index: 1;
  flex: 1;
  grid-template-rows: repeat(3, minmax(5.5rem, 1fr));
  gap: clamp(0.5rem, 1.2vw, 1rem);
}

.founder-terms dl div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 1rem;
  border-bottom: 0.1rem solid var(--line-light);
}

.founder-terms dt {
  margin-bottom: 0.25rem;
  color: rgba(255, 250, 241, 0.64);
  font-size: 0.72rem;
}

.founder-terms dd {
  font-size: 1rem;
  white-space: nowrap;
}

.founder-terms strong {
  font-size: 1.35rem;
}

.founder-terms .button-dark {
  position: relative;
  z-index: 1;
  background: var(--signal);
  color: var(--navy-950);
}

.founder-terms .button-dark:hover {
  background: var(--ivory-100);
}

.founder-scope {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.55fr 1.1fr 1fr;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-top: 2.5rem;
  border-top: 0.1rem solid var(--line-light);
  background: var(--navy-900);
  isolation: isolate;
}

.founder-terms > :not(.section-field-canvas),
.founder-scope > :not(.section-field-canvas) {
  position: relative;
  z-index: 1;
}

.founder-terms.is-section-field-ready > .section-field-canvas,
.founder-scope.is-section-field-ready > .section-field-canvas {
  opacity: 0.96;
}

.founder-scope > p:first-child {
  max-width: 12rem;
  margin-inline: auto;
  color: var(--signal);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.founder-scope ul {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.founder-scope li::before {
  margin-right: 0.55rem;
  color: var(--signal);
  content: "•";
}

.founder-notes {
  display: grid;
  grid-column: 3;
  align-content: start;
  gap: 20px;
}

.founder-notes p {
  color: rgba(255, 250, 241, 0.78);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.55;
}

.section-references {
  background: var(--ivory-300);
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.experience-mark {
  display: grid;
  place-items: center;
  margin-bottom: clamp(-1.25rem, -1.5vw, -0.75rem);
}

.experience-statement {
  max-width: none;
  margin: 0;
  color: var(--signal);
  font-size: clamp(1.25rem, 2.1vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
  white-space: nowrap;
}

.experience-layout h2 {
  max-width: 24ch;
  margin-inline: auto;
  font-size: clamp(2.3rem, 4.2vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-align: center;
}

.experience-title-emphasis {
  font-size: 1.08em;
  font-weight: 800;
}

.experience-title-regular {
  font-weight: 500;
  letter-spacing: -0.035em;
}

.experience-layout h2 > .experience-title-regular {
  font-size: 0.84em;
}

.experience-copy {
  display: grid;
  max-width: 72rem;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 5rem);
  font-size: 14pt;
}

.portfolio-carousel { position: relative; margin-top: clamp(2.5rem, 6vw, 5rem); }

.portfolio-viewport { overflow-x: auto; scrollbar-width: none; scroll-behavior: smooth; }
.portfolio-viewport::-webkit-scrollbar { display: none; }

.portfolio-grid {
  display: flex;
  gap: clamp(0.75rem, 1.8vw, 1.35rem);
}

.portfolio-carousel-control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 2.75rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--ivory-100);
  cursor: pointer;
  font-size: 1.45rem;
  place-items: center;
  transform: translateY(-50%);
}

.portfolio-carousel-control:disabled { cursor: default; opacity: 0.22; }
.portfolio-carousel-prev { left: -1.35rem; }
.portfolio-carousel-next { right: -1.35rem; }

.portfolio-card {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - 2 * clamp(0.75rem, 1.8vw, 1.35rem)) / 3);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-medium);
  appearance: none;
  background: var(--navy-900);
  color: var(--ivory-100);
  cursor: pointer;
  isolation: isolate;
  line-height: 0;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-motion), filter 500ms ease;
}

.portfolio-card-inceres img { object-position: center; }
.portfolio-card-directagglo img { object-position: center; }
.portfolio-card-assainissement img { object-position: center; }

.portfolio-card-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  background: transparent;
  text-align: left;
  transition: background-color 400ms ease;
}

.portfolio-card strong {
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  font-weight: 800;
  opacity: 0;
  line-height: 1;
  transform: translateY(0.65rem);
  transition: opacity 240ms ease, transform 360ms var(--ease-out);
}

.portfolio-card:hover img,
.portfolio-card:focus-visible img { filter: brightness(0.45); transform: scale(1.045); }
.portfolio-card:hover .portfolio-card-overlay,
.portfolio-card:focus-visible .portfolio-card-overlay { background-color: rgba(9, 18, 32, 0.78); }
.portfolio-card:hover strong,
.portfolio-card:focus-visible strong { opacity: 1; transform: none; }

body.project-dialog-open { overflow: hidden; }

.project-dialog {
  width: min(100% - 2rem, 76rem);
  max-width: none;
  max-height: min(92svh, 64rem);
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: var(--radius-large);
  background: var(--ivory-100);
  color: var(--ink);
  box-shadow: 0 2rem 8rem rgba(9, 18, 32, 0.45);
}

.project-dialog::backdrop { background: rgba(9, 18, 32, 0.78); backdrop-filter: blur(0.35rem); }

.project-dialog-shell {
  max-height: inherit;
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(1.5rem, 4vw, 4rem);
}

.project-dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--ivory-100);
  font-size: 2rem;
  line-height: 1;
  place-items: center;
  cursor: pointer;
}

.project-detail { max-width: 68rem; margin: -2.75rem auto 0; }

.project-detail-header { max-width: none; padding: 0 0 3rem; }
.project-detail-header h2 { margin-top: 0.6rem; font-size: clamp(2.6rem, 6vw, 5.75rem); line-height: 0.9; letter-spacing: -0.075em; }
.project-detail-header dl { display: flex; flex-wrap: wrap; gap: 1rem 2.5rem; margin-top: 2rem; }
.project-detail-header dt { color: var(--signal); font-size: 0.82rem; font-weight: 700; }
.project-detail-header dd { margin-top: 0.15rem; font-size: 0.92rem; font-weight: 700; }
.project-detail-header dd a { color: var(--signal); text-decoration-thickness: 0.1em; text-underline-offset: 0.16em; }
.project-detail-summary { max-width: none; margin-top: 2rem; color: var(--ink); font-size: clamp(1.05rem, 1.8vw, 1.35rem); line-height: 1.55; text-align: left; }
.project-detail-summary strong { color: var(--signal); font-weight: 800; }

.project-identity-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.35rem);
}

.project-identity-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-small);
}

.project-identity-site { grid-column: span 7; grid-row: span 2; aspect-ratio: 1.15; }
.project-identity-logo { grid-column: span 5; aspect-ratio: 1.15; }
.project-identity-charter { grid-column: span 5; aspect-ratio: 1; }
.project-identity-vcard,
.project-identity-card { grid-column: span 6; aspect-ratio: 1.15; }
.project-identity-stand { grid-column: span 12; aspect-ratio: 1.5; object-position: center; }
.project-gallery-secondary { width: min(100%, 28rem); margin-top: clamp(0.75rem, 1.8vw, 1.35rem); margin-left: auto; }
.project-gallery-secondary img:first-child { grid-column: auto; aspect-ratio: 1; }

.project-gallery { display: grid; gap: clamp(0.75rem, 1.8vw, 1.35rem); }
.project-gallery-square { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-gallery-landscape { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-gallery img { width: 100%; height: 100%; min-height: 0; object-fit: cover; border-radius: var(--radius-small); }
.project-gallery-square img { aspect-ratio: 1; }
.project-gallery-landscape img { aspect-ratio: 1.5; }
.project-gallery img:first-child { grid-column: span 2; }
.project-gallery-square img:first-child { aspect-ratio: 1.65; object-position: center; }

.project-video { position: relative; overflow: hidden; aspect-ratio: 16 / 9; border-radius: var(--radius-medium); background: var(--navy-900); }
.project-video > img,
.project-video iframe { width: 100%; height: 100%; border: 0; object-fit: cover; }
.project-video > button { position: absolute; inset: 50% auto auto 50%; display: flex; align-items: center; width: max-content; max-width: calc(100% - 2rem); gap: 0.6rem; padding: 0.8rem 1rem; border: 0; border-radius: 999px; background: var(--ivory-100); color: var(--navy-950); box-shadow: 0 0.75rem 2rem rgba(9, 18, 32, 0.35); cursor: pointer; justify-content: center; transform: translate(-50%, -50%); transition: transform 220ms var(--ease-out), background-color 220ms ease; }
.project-video > button:hover,
.project-video > button:focus-visible { background: var(--signal); transform: translate(-50%, -50%) scale(1.08); }
.project-video > button svg { width: 1.1rem; height: 1.1rem; flex: 0 0 auto; fill: currentColor; }
.project-video-consent { font-size: clamp(0.68rem, 1.4vw, 0.82rem); font-weight: 800; line-height: 1.2; text-align: left; }
.project-video-list { display: grid; gap: clamp(0.75rem, 1.8vw, 1.35rem); }
.project-video-note { margin-top: 1rem; color: var(--muted); font-size: 0.85rem; }

@media (max-width: 48rem) {
  .experience-statement { white-space: normal; }
  .experience-copy { grid-template-columns: 1fr; }
  .portfolio-card { flex-basis: min(82vw, 32rem); }
  .portfolio-carousel-prev { left: 0.5rem; }
  .portfolio-carousel-next { right: 0.5rem; }
  .project-dialog { width: min(100% - 1rem, 76rem); max-height: 96svh; border-radius: var(--radius-medium); }
  .project-dialog-shell { padding: 1.25rem; }
  .project-detail { margin-top: -2.75rem; }
  .project-detail-header { padding-right: 3rem; padding-bottom: 2rem; }
  .project-detail-header h2 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .project-identity-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-identity-site { grid-column: span 2; grid-row: auto; }
  .project-identity-charter { grid-column: span 2; }
  .project-identity-logo,
  .project-identity-vcard,
  .project-identity-card,
  .project-identity-stand { grid-column: span 1; }
  .project-identity-stand { grid-column: span 2; aspect-ratio: 1.5; }
  .project-gallery-square,
  .project-gallery-landscape { grid-template-columns: 1fr; }
  .project-gallery img:first-child { grid-column: auto; }
  .project-gallery-square img:first-child { aspect-ratio: 1; }
}

.section-method {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--ivory-100);
  isolation: isolate;
}

.method-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1.25rem;
  text-align: center;
}

.method-heading h2 {
  max-width: 27ch;
}

.method-heading > p {
  max-width: 44rem;
  color: rgba(255, 250, 241, 0.7);
  font-size: 0.94rem;
}

.method-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16rem;
  align-items: stretch;
  gap: 1.25rem;
}

.method-initial {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.method-initial li {
  min-height: 16rem;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  border-top: 0.12rem solid var(--ivory-100);
}

.method-initial li + li {
  border-left: 0.1rem solid var(--line-light);
}

.method-initial span {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 800;
}

.method-initial h3 {
  min-height: 2.25em;
  margin: 2.3rem 0 0.7rem;
  font-size: clamp(1.15rem, 1.65vw, 1.55rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.method-initial p {
  color: rgba(255, 250, 241, 0.67);
  font-size: 0.8rem;
  hyphens: none;
  text-align: left;
  text-align-last: auto;
}

.method-cycle {
  display: grid;
  min-height: 16rem;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  background: var(--signal);
  color: var(--navy-950);
}

.method-cycle > p:first-of-type {
  font-size: 0.72rem;
  font-weight: 800;
}

.method-cycle h3 {
  align-self: center;
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.method-cycle > p:last-child {
  font-size: 0.78rem;
}

.section-commitments {
  background: var(--ivory-100);
}

.commitment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  align-items: start;
  gap: clamp(1.25rem, 4vw, 4rem);
}

.commitment-intro {
  position: sticky;
  top: calc(var(--header-height) + 2.5rem);
}

.commitment-intro h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.commitment-intro > p:last-child {
  max-width: 34rem;
  color: var(--muted);
}

.commitment-list {
  list-style: none;
  counter-reset: commitments;
}

.commitment-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 1.6rem 0;
  border-top: 0.12rem solid var(--navy-900);
}

.commitment-list li:last-child {
  border-bottom: 0.12rem solid var(--navy-900);
}

.commitment-list span {
  color: var(--signal-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.commitment-list h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.commitment-list p {
  max-width: 39rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.section-diagnostic {
  background: var(--ivory-300);
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.diagnostic-intro {
  position: sticky;
  top: calc(var(--header-height) + 2.5rem);
}

.diagnostic-intro h2 {
  margin-bottom: 1.8rem;
}

.diagnostic-intro > p:nth-of-type(2) {
  max-width: 35rem;
}

.diagnostic-duration {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.diagnostic-duration span {
  display: grid;
  width: 2rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
}

.direct-contact {
  display: grid;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 0.12rem solid var(--navy-900);
}

.direct-contact p {
  margin-bottom: 0.8rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.direct-contact a {
  justify-self: start;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration-thickness: 0.08rem;
  text-underline-offset: 0.22rem;
}

.form-shell {
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--ivory-100);
  box-shadow: var(--shadow);
}

.form-progress {
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  background: var(--navy-900);
  color: var(--ivory-100);
}

.form-progress > p {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.form-progress > div {
  height: 0.22rem;
  overflow: hidden;
  background: rgba(255, 250, 241, 0.2);
}

.form-progress > div span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--signal);
  transition: width 300ms var(--ease-out);
}

.form-progress ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.9rem;
  list-style: none;
}

.form-progress li {
  color: rgba(255, 250, 241, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
}

.form-progress li.is-current,
.form-progress li.is-complete {
  color: var(--ivory-100);
}

.form-progress li.is-complete::before {
  margin-right: 0.35rem;
  color: var(--signal);
  content: "✓";
}

.qualification-form,
.form-success {
  padding: clamp(1.5rem, 4vw, 3.2rem);
}

.form-step > legend {
  width: 100%;
  margin-bottom: 2rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.form-step > legend span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--signal-dark);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.field-grid {
  display: grid;
  gap: 1.25rem;
}

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

.field-full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  align-content: start;
}

.field label,
.choice-group > legend {
  margin-bottom: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.field label > span,
.choice-group > legend > span {
  color: var(--signal-dark);
}

.field label small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.78rem 0.9rem;
  border: 0.1rem solid rgba(16, 27, 47, 0.28);
  border-radius: var(--radius-small);
  background: #fff;
  color: var(--navy-950);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-900);
  box-shadow: 0 0 0 0.18rem rgba(255, 92, 59, 0.24);
  outline: 0;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--signal-dark);
}

.field > small {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.choice-group {
  margin-top: 2rem;
}

.choice-group > legend {
  padding-bottom: 0.1rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

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

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

.choice-grid label {
  position: relative;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid label span {
  display: flex;
  min-height: 3.3rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border: 0.1rem solid rgba(16, 27, 47, 0.22);
  border-radius: var(--radius-small);
  background: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.choice-grid label:hover span {
  border-color: var(--navy-900);
}

.choice-grid input:focus-visible + span {
  outline: 0.2rem solid var(--signal);
  outline-offset: 0.15rem;
}

.choice-grid input:checked + span {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--ivory-100);
}

.field-error {
  min-height: 1.1rem;
  margin-top: 0.3rem;
  color: #a72917;
  font-size: 0.68rem;
  font-weight: 700;
}

.budget-frame {
  margin-top: 2rem;
  padding: 1.4rem;
  border-radius: var(--radius-medium);
  background: var(--signal);
  color: var(--navy-950);
}

.budget-frame p {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
}

.budget-frame strong {
  display: block;
  max-width: 38rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.25;
}

.budget-frame span {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.7rem;
}

.consent-field {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  align-items: start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  cursor: pointer;
  font-size: 0.74rem;
  line-height: 1.45;
}

.consent-field input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--navy-900);
}

.consent-field b {
  color: var(--signal-dark);
}

.consent-field a {
  text-decoration-thickness: 0.08rem;
  text-underline-offset: 0.15rem;
}

.form-privacy-note {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.form-actions-end {
  justify-content: flex-end;
}

.form-actions .button {
  max-width: 22rem;
}

.form-actions button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.no-js [data-form-next],
.no-js [data-form-back] {
  display: none;
}

.no-js .form-progress {
  display: none;
}

.no-js [data-form-step="3"] .form-actions {
  justify-content: flex-end;
}

.submit-spinner {
  display: none;
  width: 1rem;
  aspect-ratio: 1;
  border: 0.12rem solid rgba(9, 18, 32, 0.3);
  border-top-color: var(--navy-950);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

.is-submitting .submit-spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

.form-status {
  min-height: 1.4rem;
  margin-top: 1rem;
  color: #a72917;
  font-size: 0.78rem;
  font-weight: 700;
}

.form-success {
  min-height: 33rem;
  align-content: center;
}

.form-success > span {
  display: grid;
  width: 3rem;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: var(--signal);
  color: var(--navy-950);
  font-size: 1.3rem;
  font-weight: 800;
}

.form-success > p:first-of-type {
  color: var(--signal-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.form-success h3 {
  max-width: 16ch;
  margin: 0.5rem 0 1.2rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.form-success > p:not(:first-of-type) {
  max-width: 36rem;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-success .button {
  margin-top: 2rem;
}

.noscript-note {
  margin: 0 2rem 2rem;
  padding: 0.8rem;
  background: var(--ivory-300);
  font-size: 0.76rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.section-about {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: var(--ivory-100);
  isolation: isolate;
}

.section-about::before,
.section-about::after {
  position: absolute;
  z-index: 0;
  border-radius: 46% 54% 42% 58% / 52% 43% 57% 48%;
  content: "";
  filter: blur(clamp(2.8rem, 5vw, 4.5rem));
  pointer-events: none;
}

.section-about::before {
  top: 50%;
  left: clamp(-14rem, -10vw, -5rem);
  width: clamp(24rem, 34vw, 38rem);
  height: clamp(30rem, 48vw, 48rem);
  background: rgba(255, 92, 59, 0.22);
  transform: translateY(-42%) rotate(-10deg);
}

.section-about::after {
  top: 48%;
  right: clamp(-6rem, 2vw, 1.5rem);
  width: clamp(12rem, 18vw, 18rem);
  height: clamp(12rem, 18vw, 18rem);
  background: rgba(88, 137, 190, 0.15);
  transform: translateY(-50%) rotate(12deg);
}

.section-about > .shell {
  position: relative;
  z-index: 1;
}

.section-dashboard > .shell,
.section-method > .shell {
  position: relative;
  z-index: 1;
}

.section-field-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms var(--ease-motion);
}

.is-section-field-ready > .section-field-canvas {
  opacity: 0.82;
}

@media (hover: hover) and (pointer: fine) {
  :is(.section-dashboard, .section-method, .section-about, .site-footer) {
    transition: box-shadow 620ms var(--ease-motion);
  }

  :is(.section-dashboard, .section-method, .section-about, .site-footer):hover {
    box-shadow:
      inset 0 0 0 0.1rem rgba(162, 204, 244, 0.18),
      inset 0 0 7rem 1rem rgba(104, 164, 222, 0.14);
  }
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(22rem, 0.8fr) minmax(0, 1.2fr);
  grid-template-rows: auto auto;
  align-items: stretch;
  column-gap: clamp(0.75rem, 2vw, 2rem);
  row-gap: 0;
}

.about-portrait {
  position: relative;
  align-self: stretch;
  min-height: clamp(32rem, 44vw, 43rem);
  overflow: hidden;
  margin: 0;
  background: transparent;
  isolation: isolate;
}

.about-portrait img {
  position: relative;
  z-index: 1;
  display: block;
  width: 116%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  filter: drop-shadow(-0.12rem 0 0.22rem rgba(255, 92, 59, 0.24));
  transform: translateX(-8%) scale(1.05);
  transform-origin: center bottom;
}

.portrait-mist-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 900ms var(--ease-motion);
}

.is-portrait-mist-ready > .portrait-mist-canvas {
  opacity: 0.42;
}

.about-copy {
  position: relative;
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  width: min(100%, 44rem);
  max-width: none;
  margin-left: 0;
  justify-self: start;
}

.about-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.05vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.about-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  max-width: 39rem;
  gap: 1.25rem;
  padding-block: 1.25rem;
}

.about-body p {
  margin: 0;
  max-width: 39rem;
  color: rgba(255, 250, 241, 0.72);
}

.about-closing {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: clamp(0.75rem, 1.5vw, 1.1rem);
  border-top: 0.12rem solid var(--signal);
  color: var(--ivory-100);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.final-cta {
  padding-block: clamp(5rem, 9vw, 9rem);
  background: var(--signal);
  color: var(--navy-950);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.5fr);
  align-items: end;
  gap: 2rem 5rem;
}

.final-cta h2 {
  grid-column: 1 / -1;
  max-width: 18ch;
  font-size: clamp(2.7rem, 6vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.final-cta p {
  max-width: 42rem;
  font-size: 1.05rem;
}

.final-cta .button-signal {
  justify-self: end;
  background: var(--navy-950);
  color: var(--ivory-100);
}

.final-cta .button-signal:hover {
  background: var(--ivory-100);
  color: var(--navy-950);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: var(--navy-950);
  color: var(--ivory-100);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

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

.brand-footer .brand-wordmark {
  width: clamp(9rem, 12vw, 11rem);
}

.footer-brand p {
  max-width: 24rem;
  margin-top: 1rem;
  color: rgba(255, 250, 241, 0.63);
  font-size: 0.84rem;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 0.45rem;
  font-size: 0.8rem;
}

.site-footer nav a,
.footer-contact a {
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
}

.site-footer nav a:hover,
.footer-contact a:hover {
  text-decoration-color: currentColor;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 0.1rem solid var(--line-light);
  color: rgba(255, 250, 241, 0.52);
  font-size: 0.68rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.75rem 1.25rem;
}

.footer-bottom div a {
  text-decoration-color: transparent;
  text-underline-offset: 0.2rem;
}

.footer-bottom div a:hover,
.footer-bottom div a:focus-visible {
  text-decoration-color: currentColor;
}

.site-ready .motion-section {
  --reveal-enter-x: 0;
  --reveal-exit-x: 0;
  --reveal-enter-rotate: 0deg;
  --reveal-exit-rotate: 0deg;
  --reveal-enter-blur: 0.4rem;
  --reveal-exit-blur: 0.68rem;
}

.site-ready .motion-section:nth-of-type(even) {
  --reveal-enter-x: 0;
  --reveal-exit-x: 0;
  --reveal-enter-rotate: 0deg;
  --reveal-exit-rotate: 0deg;
}

.site-ready .motion-section:not(.hero) > .shell {
  opacity: calc(0.96 + var(--section-enter, 0) * 0.04 - var(--section-exit, 0) * 0.16);
  filter: blur(calc((1 - var(--section-enter, 0)) * 0.16rem + var(--section-exit, 0) * 0.38rem));
  transform:
    translate3d(
      0,
      calc((1 - var(--section-enter, 0)) * 0.9rem - var(--section-exit, 0) * 0.45rem),
      0
    )
    scale(calc(0.986 + var(--section-enter, 0) * 0.014 + var(--section-exit, 0) * 0.03));
  transform-origin: center;
  will-change: opacity, filter, transform;
}

.site-ready [data-reveal] {
  opacity: 0;
  filter: blur(var(--reveal-enter-blur, 0.4rem));
  transform: translate3d(0, 1.25rem, 0) scale(0.965);
  transition:
    opacity 680ms cubic-bezier(0.4, 0, 0.7, 0.2),
    filter 880ms cubic-bezier(0.4, 0, 0.7, 0.2),
    transform 980ms cubic-bezier(0.4, 0, 0.7, 0.2);
  transition-delay: 0ms;
}

.site-ready [data-reveal].is-past {
  opacity: 0;
  filter: blur(var(--reveal-exit-blur, 0.68rem));
  transform: translate3d(0, -0.65rem, 0) scale(1.035);
}

.site-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition-duration: 1080ms, 1280ms, 1450ms;
  transition-timing-function: var(--ease-motion), var(--ease-motion), var(--ease-motion);
  transition-delay: var(--reveal-delay, 0ms);
}

.site-ready .motion-section.is-section-leaving [data-reveal] {
  opacity: 0;
  filter: blur(var(--reveal-exit-blur, 0.68rem));
  transform: translate3d(0, -0.65rem, 0) scale(1.035);
  transition-delay: 0ms;
}

.site-ready .hero.motion-section .hero-layout {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition:
    opacity 620ms cubic-bezier(0.4, 0, 0.7, 0.2),
    filter 780ms cubic-bezier(0.4, 0, 0.7, 0.2),
    transform 860ms cubic-bezier(0.4, 0, 0.7, 0.2);
}

.site-ready .hero.motion-section.is-section-leaving .hero-layout {
  opacity: 0;
  filter: blur(0.78rem);
  transform: scale(1.06);
}

@media (max-width: 56rem) {
  .site-ready .motion-section {
    --reveal-enter-rotate: -0.25deg;
    --reveal-exit-rotate: 0.2deg;
    --reveal-enter-blur: 0.25rem;
    --reveal-exit-blur: 0.4rem;
  }

  .site-ready .motion-section:nth-of-type(even) {
    --reveal-enter-rotate: 0.25deg;
    --reveal-exit-rotate: -0.2deg;
  }
}

.legal-page {
  background: var(--ivory-100);
  color: var(--navy-950);
}

.legal-header,
.legal-footer {
  display: flex;
  width: min(100% - 2rem, 72rem);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.legal-header {
  padding-block: 1.25rem;
  border-bottom: 0.08rem solid var(--line-dark);
}

.legal-header > a:last-child {
  color: var(--signal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.legal-brand {
  color: var(--navy-950);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.legal-main {
  width: min(100% - 2rem, 52rem);
  margin-inline: auto;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}

.legal-title {
  margin-bottom: clamp(3rem, 8vw, 5rem);
}

.legal-title h1 {
  max-width: 12ch;
  margin-block: 0.55rem 1rem;
  font-size: clamp(3rem, 9vw, 6.5rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.legal-title > p:last-child,
.legal-main section > p,
.legal-main li,
.legal-main address,
.legal-data dd {
  color: var(--muted);
}

.legal-main section {
  padding-block: clamp(2rem, 5vw, 3.25rem);
  border-top: 0.08rem solid var(--line-dark);
}

.legal-main h2 {
  margin-bottom: 1rem;
  color: var(--signal-dark);
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.035em;
}

.legal-main p,
.legal-main li,
.legal-main address,
.legal-data {
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  line-height: 1.75;
}

.legal-main p + p,
.legal-main p + address,
.legal-main address + .legal-data,
.legal-main ul + p {
  margin-top: 1rem;
}

.legal-main ul {
  display: grid;
  gap: 0.55rem;
  margin-block: 1rem;
  padding-left: 1.25rem;
}

.legal-main address {
  font-style: normal;
}

.legal-main a {
  font-weight: 750;
  text-decoration-color: var(--signal-dark);
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.2rem;
}

.legal-data {
  display: grid;
  gap: 0.7rem;
}

.legal-data div {
  display: grid;
  grid-template-columns: minmax(7.5rem, 0.45fr) 1fr;
  gap: 1rem;
}

.legal-data dt {
  font-weight: 850;
}

.legal-footer {
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-block: 1.5rem 2.25rem;
  border-top: 0.08rem solid var(--line-dark);
  color: var(--muted);
  font-size: 0.75rem;
}

.legal-footer a {
  text-underline-offset: 0.2rem;
}

.legal-footer a[aria-current="page"] {
  color: var(--signal-dark);
  font-weight: 850;
}

.error-page {
  background: var(--navy-900);
  color: var(--ivory-100);
}

.error-main {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  padding: 2rem;
}

.error-main::before {
  position: absolute;
  right: -15vw;
  bottom: -25vw;
  width: 62vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--signal);
  content: "";
}

.error-content {
  position: relative;
  z-index: 1;
  width: min(100%, 62rem);
}

.error-code {
  color: var(--signal);
  font-size: clamp(7rem, 24vw, 18rem);
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.12em;
}

.error-content h1 {
  max-width: 12ch;
  margin: 2rem 0 1rem;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.error-content > p:not(.error-code) {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: rgba(255, 250, 241, 0.7);
}

@media (min-width: 56.01rem) {
  .friction-list p,
  .offer-sequence article > div p,
  .experience-copy p,
  .method-heading > p,
  .method-cycle > p:last-child,
  .commitment-intro > p:last-child,
  .commitment-list p,
  .about-body p {
    hyphens: auto;
    text-align: justify;
    text-align-last: left;
  }
}

@media (min-width: 70.01rem) {
  .hero-title-line {
    white-space: nowrap;
  }

  .offer-heading-line {
    white-space: nowrap;
  }
}

@media (min-width: 56.01rem) and (max-height: 60rem) {
  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: 3rem;
  }

  .hero-label {
    margin-bottom: 2rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(3rem, 4.4vw, 4rem);
    line-height: 0.96;
  }

  .hero-lead {
    margin-top: 1.5rem;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  }

  .hero-support {
    margin-top: 0.65rem;
  }

  .hero-actions {
    margin-top: 1.3rem;
  }

  .hero-audience {
    margin-top: 1.75rem;
  }

  .section-commitments {
    display: grid;
    min-height: calc(100svh - var(--header-height));
    align-items: center;
    padding-block: clamp(2.25rem, 5vh, 4rem);
  }

  .commitment-list li {
    padding-block: clamp(0.8rem, 1.65vh, 1.25rem);
  }

  .commitment-intro {
    top: calc(var(--header-height) + 1rem);
  }
}

@media (max-width: 70rem) {
  .site-nav {
    gap: 0.85rem;
  }

  .dashboard-body {
    grid-template-columns: 12.5rem minmax(0, 1fr);
  }

  .offer-sequence article,
  .offer-sequence article:nth-child(2),
  .offer-sequence article:nth-child(3) {
    width: 100%;
    margin-left: 0;
  }

  .method-flow {
    grid-template-columns: 1fr;
  }

  .method-cycle {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    align-items: start;
    gap: 1rem;
    border-radius: var(--radius-medium);
  }

  .method-cycle > p:last-child {
    grid-column: 1;
    grid-row: 3;
    max-width: 20rem;
  }

  .about-layout {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  }

  .about-copy {
    width: 100%;
  }

  .about-copy h2 {
    font-size: clamp(2.25rem, 4.4vw, 3.4rem);
  }
}

@media (max-width: 56rem) {
  :root {
    --header-height: 4.3rem;
  }

  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    max-height: calc(100svh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    padding: 1rem;
    background: var(--ivory-100);
    color: var(--navy-950);
    box-shadow: 0 1rem 2rem rgba(9, 18, 32, 0.14);
  }

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

  .site-nav a:not(.nav-cta) {
    display: block;
    padding: 0.95rem 0;
    border-bottom: 0.1rem solid var(--line-dark);
    font-size: 1rem;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 1rem;
    text-align: center;
  }

  .no-js .site-header {
    position: relative;
  }

  .no-js .header-inner {
    min-height: var(--header-height);
    height: auto;
    flex-wrap: wrap;
    padding-top: 0.75rem;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .site-nav {
    position: static;
    display: flex;
    width: 100%;
    max-height: none;
    flex-flow: row wrap;
    gap: 0.5rem 1rem;
    padding: 0.5rem 0 1rem;
    box-shadow: none;
  }

  .no-js .site-nav a:not(.nav-cta) {
    padding: 0.45rem 0;
    border: 0;
    font-size: 0.82rem;
  }

  .no-js .site-nav .nav-cta {
    margin-top: 0;
  }

  .no-js .hero {
    padding-top: 3.5rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 3.5rem);
  }

  .hero-copy {
    max-width: 42rem;
  }

  .section-heading-wide,
  .friction-layout,
  .commitment-layout,
  .diagnostic-layout,
  .about-layout,
  .method-heading {
    grid-template-columns: 1fr;
  }

  .friction-statement,
  .commitment-intro,
  .diagnostic-intro {
    position: static;
  }

  .friction-statement > p:last-child {
    margin-inline: auto;
  }

  .friction-list li:nth-child(2) {
    padding-top: 2.2rem;
  }

  .friction-list li:nth-child(3) {
    padding-bottom: 2.2rem;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding: 0.75rem;
  }

  .dashboard-tabs button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .dashboard-body {
    min-height: 41rem;
  }

  .overview-grid,
  .visibility-layout,
  .request-layout {
    grid-template-columns: 1fr;
  }

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

  .offer-sequence article {
    grid-template-columns: 7rem minmax(0, 1fr);
  }

  .offer-phase {
    grid-column: 2;
    text-align: left;
  }

  .founder-program,
  .founder-scope {
    grid-template-columns: 1fr;
  }

  .founder-notes {
    grid-column: 1;
  }

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

  .method-initial li:nth-child(3) {
    border-left: 0;
  }

  .method-initial li:nth-child(n + 3) {
    border-top-color: var(--line-light);
  }

  .about-portrait {
    width: min(100%, 34rem);
    min-height: 0;
    aspect-ratio: 1;
    justify-self: center;
  }

  .about-portrait img {
    width: 108%;
    height: 108%;
    transform: translateX(-4%) scale(1.02);
  }

  .about-copy {
    margin-top: clamp(2rem, 7vw, 3rem);
    margin-left: 0;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    grid-column: 1;
  }

  .final-cta .button-signal {
    justify-self: start;
  }
}

@media (max-width: 42rem) {
  .experience-statement {
    font-size: 17pt;
    white-space: normal;
  }

  .dashboard-note {
    white-space: normal;
  }

  .section {
    padding-block: 4.5rem;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.75rem);
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-scroll-cue {
    display: none;
  }

  .friction-list {
    grid-template-columns: 1fr;
  }

  .friction-list li {
    min-height: auto;
    padding: 1.5rem 0;
  }

  .friction-list li:nth-child(odd) {
    border-right: 0;
  }

  .friction-list li:nth-child(1),
  .friction-list li:nth-child(2),
  .friction-list li:nth-child(3) {
    border-bottom: 0.1rem solid var(--line-dark);
  }

  .dashboard-topbar {
    grid-template-columns: 1fr auto;
  }

  .dashboard-topbar > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .dashboard-panels {
    padding: 1.2rem;
  }

  .panel-heading {
    align-items: start;
    flex-direction: column;
  }

  .panel-heading > p {
    text-align: left;
  }

  .recommendation-grid,
  .request-actions {
    grid-template-columns: 1fr;
  }

  .journey-list li:nth-child(3) {
    margin-left: 0;
  }

  .offer-sequence article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .offer-phase {
    grid-column: 1;
  }

  .offer-summary {
    justify-content: start;
  }

  .founder-intro {
    min-height: auto;
  }

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

  .experience-copy {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .method-initial {
    grid-template-columns: 1fr;
  }

  .method-initial li,
  .method-initial li:nth-child(3) {
    min-height: auto;
    padding: 1.5rem 0;
    border-top: 0.1rem solid var(--line-light);
    border-left: 0;
  }

  .method-initial h3 {
    min-height: 0;
    margin: 1.5rem 0 0.7rem;
  }

  .method-cycle {
    grid-template-columns: 1fr;
  }

  .method-cycle > p:last-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .form-progress ol {
    gap: 0.35rem;
  }

  .form-progress li {
    font-size: 0.58rem;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .button {
    width: 100%;
    max-width: none;
  }

  .form-actions-end {
    flex-direction: column;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom div {
    justify-content: start;
  }
}

.consent-manager {
  position: fixed;
  z-index: 1000;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  color: var(--ivory-100);
}

.consent-manager-inner {
  width: min(100%, 72rem);
  margin-inline: auto;
  padding: clamp(1.1rem, 2.5vw, 1.75rem);
  border: 1px solid rgba(255, 250, 241, 0.24);
  border-radius: 1.2rem;
  background: rgba(9, 18, 32, 0.98);
  box-shadow: 0 1.2rem 4rem rgba(9, 18, 32, 0.45);
}

.consent-manager-copy {
  max-width: 56rem;
}

.consent-manager-copy h2 {
  margin-block: 0.25rem 0.6rem;
  color: var(--ivory-100);
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.consent-manager-copy > p:last-child,
.consent-manager-more,
.consent-options small {
  color: rgba(255, 250, 241, 0.78);
}

.consent-manager-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-block: 1rem;
}

.consent-choice-button {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 250, 241, 0.7);
  border-radius: 999px;
  background: transparent;
  color: var(--ivory-100);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.consent-choice-button:hover,
.consent-choice-button:focus-visible {
  border-color: var(--signal);
  background: rgba(255, 92, 59, 0.14);
}

.consent-details {
  border-top: 1px solid rgba(255, 250, 241, 0.18);
  padding-top: 0.85rem;
}

.consent-details summary {
  width: fit-content;
  font-weight: 800;
  cursor: pointer;
}

.consent-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-block: 1rem;
}

.consent-options label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.65rem;
  padding: 0.85rem;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 0.8rem;
  cursor: pointer;
}

.consent-options input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  accent-color: var(--signal);
}

.consent-options span,
.consent-options small {
  display: block;
}

.consent-options small {
  margin-top: 0.2rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.consent-save {
  min-height: 2.8rem;
}

.consent-manager-more {
  margin-top: 0.85rem;
  font-size: 0.82rem;
}

.consent-manager-more a {
  color: inherit;
}

.consent-reopen {
  position: fixed;
  z-index: 900;
  bottom: 0.7rem;
  left: 0.7rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 250, 241, 0.4);
  border-radius: 999px;
  background: rgba(9, 18, 32, 0.92);
  color: var(--ivory-100);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

.consent-status {
  margin-block: 1rem;
  padding: 0.9rem 1rem;
  border-left: 0.25rem solid var(--signal);
  background: rgba(16, 27, 47, 0.08);
}

@media (max-width: 42rem) {
  .consent-manager {
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    max-height: calc(100vh - 1rem);
  }

  .consent-manager-actions,
  .consent-options {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-copy {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero h1::after {
    display: none;
  }

  .hero-field-canvas,
  .hero-mist-canvas,
  .section-field-canvas,
  .portrait-mist-canvas,
  .section-frictions::before {
    display: none;
  }

  .hero::before {
    opacity: 0.55;
    transform: rotate(-8deg) scale(1.08);
  }

  .hero::after,
  .hero.is-hero-field-ready::after {
    opacity: 0.72;
  }

  .site-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .site-ready .hero.motion-section .hero-layout {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .site-ready .motion-section:not(.hero) > .shell {
    opacity: 1;
    filter: none;
    transform: none;
  }

  :is(.section-dashboard, .section-method, .section-about, .site-footer):hover {
    box-shadow: none;
  }
}
