/* ─── RESET & TOKENS ─────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #0f766e;
  --teal-deep: #115e59;
  --teal-bright: #14b8a6;
  --teal-soft: rgba(13, 148, 136, 0.34);
  --teal-glow: rgba(13, 148, 136, 0.55);
  --teal-border: rgba(13, 148, 136, 0.58);
  --teal-fill: rgba(13, 148, 136, 0.18);

  --orange: #ea580c;
  --orange-deep: #c2410c;
  --orange-bright: #ff7300;
  --orange-soft: rgba(234, 88, 12, 0.34);
  --orange-glow: rgba(234, 88, 12, 0.48);
  --orange-border: rgba(234, 88, 12, 0.55);
  --orange-fill: rgba(234, 88, 12, 0.13);

  --cream: #F7F4EF;
  --cream-deep: #EDE8DF;
  --cream-alt: #EFEBE3;

  --surface: rgba(255, 255, 255, 0.55);
  --surface-solid: #FFFCF7;
  --glass: rgba(255, 255, 255, 0.65);
  --glass-hover: rgba(255, 255, 255, 0.85);

  --border: rgba(44, 40, 36, 0.09);
  --border-strong: rgba(44, 40, 36, 0.14);

  --text: #2C2824;
  --muted: #6B6560;
  --subtle: #9C9590;

  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 24px rgba(44, 40, 36, 0.06);
  --shadow-md: 0 16px 48px rgba(44, 40, 36, 0.08);
  --shadow-hover: 0 24px 56px rgba(13, 148, 136, 0.2);
}

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

  html {
    scroll-behavior: auto;
  }

  .band-lead__teal,
  .band-lead__orange {
    text-shadow: none;
  }

  .band--axis {
    box-shadow: none;
  }

  .hero-h1__founder {
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: #0d9488;
    color: #0d9488;
  }

  .hero-h1__dep {
    animation: none !important;
    background: none !important;
    -webkit-text-fill-color: #ea580c;
    color: #ea580c;
  }

  .hero-h1 {
    transform: none !important;
    will-change: auto;
  }

  .band--axis .proof-marquee {
    transform: none !important;
    will-change: auto;
    filter: none !important;
  }

  .hero-side-x__mark:not(.hero-side-x__mark--mid):not(.hero-side-x__mark--inner) {
    animation: none !important;
    transform: translateY(-50%);
    opacity: 0.15;
  }

  .hero-side-x__mark--mid {
    animation: none !important;
    transform: translateY(-50%);
    opacity: 0.1 !important;
  }

  .hero-side-x__mark--inner {
    animation: none !important;
    transform: translateY(-50%);
    opacity: 0.05 !important;
  }

  .problem-split.reveal-sync .problem-panel,
  .problem-split.reveal-sync.in .problem-panel {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }

  .proof-marquee__track {
    animation: none !important;
    transform: none !important;
  }

  .thesis-bridge:not(.in) .thesis-x,
  .thesis-bridge.in .thesis-x {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .thesis-hub:hover .thesis-x {
    transform: none !important;
  }

  .realign-section .realign-leg.reveal.in .realign-leg__scale {
    animation: none !important;
    will-change: auto;
  }

  .method-flow::after {
    animation: none !important;
    transform: scaleX(1) !important;
    opacity: 0.85 !important;
  }

  .method-node.reveal.in .method-node__scale {
    animation: none !important;
    will-change: auto;
  }

  .booking-body .grad-text {
    animation: none !important;
    background-position: 0% 50%;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  background-image: radial-gradient(ellipse 125% 85% at 100% -5%, var(--teal-soft), transparent 40%),
    radial-gradient(ellipse 100% 75% at 0% 105%, var(--orange-soft), transparent 36%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(13, 148, 136, 0.14), transparent 55%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.container--rel {
  position: relative;
  z-index: 1;
}

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

.thesis-brand {
  color: var(--teal-deep);
}

.thesis-sys {
  color: var(--orange-deep);
}

.section-sub--center {
  margin: 14px auto 0;
}

section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.realign-section {
  padding: clamp(52px, 6vw, 76px) 0;
}

/* Post-hero bands */
.band {
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}

#intro-value {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  pointer-events: auto;
}

.band--axis {
  color: var(--text);
  background: rgba(255, 252, 247, 0.38);
  background-image: none;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  padding: clamp(12px, 1.8vw, 18px) 0 12px;
  margin-top: auto;
  margin-bottom: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.hero-strip.band--axis {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.band-axis__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: clamp(14px, 2.2vw, 22px);
  padding-inline: 28px;
  box-sizing: border-box;
  width: 100%;
}

@media (min-width: 769px) {
  .band-axis__inner {
    grid-template-columns: minmax(0, 24.5rem) minmax(240px, 18.5rem);
    justify-content: center;
    justify-items: stretch;
    column-gap: clamp(16px, 2.5vw, 28px);
    row-gap: clamp(14px, 2vw, 20px);
    width: 100%;
    max-width: 56rem;
    margin-inline: auto;
  }
}

.band-lead {
  font-size: clamp(1.08rem, 2.3vw, 1.35rem);
  font-weight: 700;
  line-height: 1.42;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.015em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.band-lead__base {
  display: block;
  color: #f1f7f5;
  max-width: 26rem;
  line-height: 1.38;
}

.band--axis .band-lead {
  text-align: center;
  align-items: center;
  justify-self: center;
  margin-inline: auto;
  max-width: min(26.5rem, 100%);
  width: 100%;
  gap: 0.32em;
}

.band--axis .band-lead__base {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  font-size: clamp(1.02rem, 2.5vw, 1.42rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: none;
}

.band--axis .band-lead__line {
  display: block;
}

.band--axis .band-lead__accent {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
  font-size: clamp(1.3rem, 3.65vw, 2.12rem);
  font-weight: 900;
  letter-spacing: -0.028em;
  line-height: 1.12;
  margin-top: 0.06em;
}

@media (min-width: 769px) {
  .band--axis .band-lead {
    text-align: left;
    align-items: flex-start;
    justify-self: start;
    margin: 0;
    margin-inline: unset;
  }

  .band--axis .band-lead__base {
    align-items: flex-start;
  }

  .band--axis .band-lead__accent {
    justify-content: flex-start;
  }
}

.band-lead__accent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.25;
}

.band-lead__teal {
  font-weight: 700;
  color: #5eead4;
  text-shadow: 0 0 20px rgba(45, 212, 191, 0.55), 0 0 40px rgba(13, 148, 136, 0.35);
}

.band--axis .band-lead__teal {
  font-weight: 900;
  color: var(--teal);
  text-shadow: none;
}

.band-lead__orange {
  font-weight: 700;
  color: #fb923c;
  text-shadow: 0 0 18px rgba(251, 146, 60, 0.5), 0 0 36px rgba(234, 88, 12, 0.28);
}

.band--axis .band-lead__orange {
  font-weight: 900;
  color: var(--orange);
  text-shadow: none;
}

.band-accent {
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(100deg, #5eead4, #fdba74);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.band--axis .proof-marquee {
  --proof-marquee-scale: 1;
  width: min(18.5rem, 100%);
  max-width: 18.5rem;
  margin-inline: auto;
  justify-self: center;
  transform: scale(var(--proof-marquee-scale));
  transform-origin: center center;
  will-change: transform;
  filter: brightness(calc(1 + (var(--proof-marquee-scale) - 1) * 0.42));
}

@media (min-width: 769px) {
  .band--axis .proof-marquee {
    width: 100%;
    max-width: 18.5rem;
    margin-inline: 0;
    justify-self: start;
  }
}

.proof-marquee__viewport {
  overflow: hidden;
  height: 8rem;
  width: 100%;
  margin-inline: auto;
  mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.proof-marquee__track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: axis-proof-marquee 18s linear infinite;
  will-change: transform;
}

@keyframes axis-proof-marquee {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.band--axis .proof-marquee__set {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.band--axis .proof-pill {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(44, 40, 36, 0.1);
  color: var(--muted);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s, background 0.35s;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  justify-content: center;
  text-align: center;
}

@media (min-width: 769px) {
  .band--axis .proof-pill {
    justify-content: flex-start;
    text-align: left;
  }
}

.band--axis .proof-pill:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--teal-border);
  box-shadow: var(--shadow-sm);
}

.band--axis .proof-dot {
  background: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.proof-strip--banner {
  justify-content: center;
  margin: 0;
}

/* Dark section rhythm */
section.theme-dark {
  --text: #e9f3ef;
  --muted: rgba(233, 243, 239, 0.68);
  --subtle: rgba(233, 243, 239, 0.42);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);
  --surface-solid: #1c2926;
  --glass: rgba(255, 255, 255, 0.055);
  --glass-hover: rgba(255, 255, 255, 0.095);
  --shadow-sm: 0 4px 28px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 20px 56px rgba(0, 0, 0, 0.34);
  --shadow-hover: 0 24px 56px rgba(13, 148, 136, 0.28);

  background-color: #0a1110;
  background-image: radial-gradient(
      ellipse 115% 90% at 4% -18%,
      rgba(45, 212, 191, 0.34) 0%,
      rgba(13, 148, 136, 0.14) 36%,
      transparent 64%
    ),
    radial-gradient(
      ellipse 105% 88% at 100% 108%,
      rgba(251, 146, 60, 0.34) 0%,
      rgba(234, 88, 12, 0.15) 40%,
      transparent 66%
    ),
    radial-gradient(ellipse 70% 55% at 48% 42%, rgba(20, 184, 166, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 85% 8%, rgba(249, 115, 22, 0.08) 0%, transparent 55%),
    linear-gradient(168deg, #121b19 0%, #0b1211 42%, #0e1715 100%);
  background-repeat: no-repeat;
  color: var(--text);
}

section.theme-dark .eyebrow {
  color: var(--teal-bright);
}

section.theme-dark .eyebrow::before {
  background: var(--teal-bright);
  opacity: 0.75;
}

section.theme-dark .eyebrow.center::after {
  background: var(--teal-bright);
  opacity: 0.75;
}

section.theme-dark .pc-label.t {
  color: var(--teal-bright);
}

section.theme-dark .pc-label.o {
  color: var(--orange-bright);
}

section.theme-dark .wm-x {
  opacity: 0.14;
}

section.theme-dark .wm-x line {
  stroke: var(--teal-bright);
}

section.theme-dark .wm-x--orange line {
  stroke: var(--orange-bright);
}

section.theme-dark .btn-ghost {
  color: var(--teal-bright);
  border: 1px solid transparent;
  background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.09) 0%, rgba(20, 184, 166, 0.06) 100%),
    linear-gradient(135deg, rgba(45, 212, 191, 0.65) 0%, rgba(20, 184, 166, 0.35) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

section.theme-dark .btn-ghost:hover {
  background-image: linear-gradient(160deg, rgba(20, 184, 166, 0.16) 0%, rgba(13, 148, 136, 0.12) 100%),
    linear-gradient(135deg, var(--teal-bright) 0%, rgba(45, 212, 191, 0.5) 100%);
}

section.theme-dark .cta-x {
  opacity: 0.34;
}

section.theme-dark .grad-text {
  background-image: linear-gradient(
    115deg,
    #a7f3d0 0%,
    #5eead4 14%,
    #2dd4bf 32%,
    #fcd34d 48%,
    #fb923c 68%,
    #f97316 86%,
    #fb923c 100%
  );
  background-size: 240% 240%;
}

section.theme-dark .problem-panel--teal {
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.2) 0%, transparent 50%);
}

section.theme-dark .problem-panel--orange {
  background: linear-gradient(225deg, rgba(251, 146, 60, 0.18) 0%, transparent 50%);
}

section.theme-dark .realign-leg__n {
  color: #5eead4;
  opacity: 0.55;
}

section.theme-dark .realign-leg__n--accent {
  color: #fdba74;
  opacity: 0.62;
}

section.theme-dark .method-flow::before {
  height: 3px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: none;
  animation: none;
}

section.theme-dark .method-flow::after {
  height: 3px;
  background: linear-gradient(90deg, #5eead4, #2dd4bf, #fde047, #fb923c, #fdba74);
  box-shadow:
    0 0 6px rgba(94, 234, 212, 0.95),
    0 0 16px rgba(45, 212, 191, 0.75),
    0 0 28px rgba(251, 146, 60, 0.55),
    0 0 40px rgba(249, 115, 22, 0.35);
}

section.theme-dark .method-node__dot {
  border-color: #5eead4;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.22), 0 0 20px rgba(45, 212, 191, 0.18);
}

section.theme-dark .method-node__dot--orange {
  border-color: #fdba74;
  box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.2), 0 0 20px rgba(251, 146, 60, 0.16);
}

section.theme-dark .who-column--yes {
  border-top-color: #2dd4bf;
  box-shadow: inset 0 1px 0 0 rgba(45, 212, 191, 0.35);
}

section.theme-dark .who-split__spine {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(45, 212, 191, 0.65),
    rgba(251, 146, 60, 0.65),
    transparent
  );
}

.cta-section.theme-dark .cta-blob-t {
  background: radial-gradient(circle, rgba(45, 212, 191, 0.48) 0%, rgba(20, 184, 166, 0.18) 46%, transparent 72%);
}

.cta-section.theme-dark .cta-blob-o {
  background: radial-gradient(circle, rgba(251, 146, 60, 0.44) 0%, rgba(249, 115, 22, 0.18) 46%, transparent 72%);
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.grad-text {
  background: linear-gradient(
    118deg,
    #115e59 0%,
    #0d9488 18%,
    #2dd4bf 36%,
    var(--orange-bright) 62%,
    #ea580c 82%,
    #c2410c 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: grad-flow 8s ease-in-out infinite;
}

@keyframes grad-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

.eyebrow.center {
  justify-content: center;
}

.eyebrow.center::before {
  display: none;
}

.eyebrow.center::after {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.72;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    90deg,
    #7c2d12 0%,
    #9a3412 12%,
    #c2410c 32%,
    #ea580c 54%,
    #f59e0b 78%,
    #e8d5b7 100%
  );
  background-size: 150% 100%;
  color: #fff;
  padding: 15px 30px;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background-position 0.55s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 14px 40px rgba(234, 88, 12, 0.42), 0 8px 24px rgba(180, 83, 9, 0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-deep);
  padding: 15px 30px;
  border-radius: 0;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  background-image: linear-gradient(155deg, #fffefb 0%, #ecfdf5 42%, #ccfbf1 100%),
    linear-gradient(135deg, #0f766e 0%, #14b8a6 45%, #2dd4bf 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: background-image 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out),
    filter 0.35s;
}

.btn-ghost:hover {
  background-image: linear-gradient(155deg, #f0fdfa 0%, #d1fae5 40%, #99f6e4 100%),
    linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #5eead4 100%);
  box-shadow: 0 10px 32px var(--teal-glow);
  transform: translateY(-2px);
}

.btn-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-deep);
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: color 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.btn-tertiary::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 10px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--teal) 50%, transparent 100%);
  opacity: 0.4;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.btn-tertiary:hover {
  color: var(--teal);
}

.btn-tertiary:hover::after {
  opacity: 0.8;
  transform: scaleX(1.1);
}

.arr-right {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s var(--ease-out);
}

.btn-primary:hover .arr-right,
.btn-ghost:hover .arr-right {
  transform: translateX(3px);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  filter: blur(6px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out), filter 0.75s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.16s;
}
.d3 {
  transition-delay: 0.24s;
}
.d4 {
  transition-delay: 0.32s;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s, padding 0.4s;
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(247, 244, 239, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(44, 40, 36, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  transition: opacity 0.3s, transform 0.35s var(--ease-out);
}

.logo:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.logo-x {
  color: var(--orange);
  position: relative;
  display: inline-block;
}

.logo-x::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-deep));
  border-radius: 0;
  transform: scaleX(1);
  transition: transform 0.35s var(--ease-out);
}

.logo:hover .logo-x::after {
  transform: scaleX(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-nav {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 10px 20px;
  border-radius: 0;
  border: none;
  background: linear-gradient(105deg, #0f766e 0%, #0d9488 28%, #14b8a6 46%, #2dd4bf 52%, #fb923c 72%, #ea580c 90%, #c2410c 100%);
  background-size: 160% 100%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  transition: background-position 0.45s var(--ease-out), box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn-nav:hover {
  color: #fff;
  background-position: 100% 50%;
  box-shadow: 0 10px 32px rgba(13, 148, 136, 0.35), 0 8px 28px rgba(234, 88, 12, 0.32);
  transform: translateY(-2px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 0;
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.nav-burger:hover span:nth-child(1) {
  transform: translateY(1px);
}
.nav-burger:hover span:nth-child(3) {
  transform: translateY(-1px);
}

.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mob-nav.open {
  display: flex;
  animation: mob-fade 0.35s var(--ease-out);
}

@keyframes mob-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mob-nav a {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--muted);
  transition: color 0.3s, transform 0.35s var(--ease-out);
}

.mob-nav a:hover {
  color: var(--text);
  transform: translateX(4px);
}

.mob-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.mob-close:hover {
  background: var(--cream-deep);
  color: var(--text);
  transform: rotate(90deg);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: relative;
  overflow: hidden;
  /* Off-white base + richer teal & orange washes */
  background-color: var(--cream);
  background-image: radial-gradient(ellipse 100% 72% at 50% -8%, rgba(13, 148, 136, 0.48) 0%, rgba(20, 184, 166, 0.14) 38%, transparent 56%),
    radial-gradient(ellipse 68% 54% at 100% 32%, rgba(234, 88, 12, 0.42) 0%, rgba(251, 146, 60, 0.12) 44%, transparent 56%),
    radial-gradient(ellipse 72% 58% at 0% 62%, rgba(20, 184, 166, 0.34) 0%, rgba(13, 148, 136, 0.1) 42%, transparent 56%),
    radial-gradient(ellipse 92% 78% at 50% 108%, rgba(234, 88, 12, 0.36) 0%, rgba(249, 115, 22, 0.1) 46%, transparent 56%),
    linear-gradient(175deg, #fffaf5 0%, var(--cream) 26%, #efe6dc 62%, var(--cream) 100%);
  background-repeat: no-repeat;
}

/* Soft diagonal mesh — teal → cream → orange */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.92;
  background: linear-gradient(
      115deg,
      rgba(13, 148, 136, 0.26) 0%,
      rgba(247, 244, 239, 0.22) 26%,
      rgba(255, 252, 247, 0.32) 48%,
      rgba(247, 244, 239, 0.2) 70%,
      rgba(234, 88, 12, 0.26) 100%
    ),
    linear-gradient(295deg, transparent 38%, rgba(20, 184, 166, 0.16) 50%, transparent 62%),
    linear-gradient(25deg, rgba(249, 115, 22, 0.1) 0%, transparent 35%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: 0;
  background: conic-gradient(
    from 140deg at 50% 50%,
    rgba(247, 244, 239, 0.32) 0deg,
    rgba(13, 148, 136, 0.28) 52deg,
    rgba(255, 252, 247, 0.25) 108deg,
    rgba(234, 88, 12, 0.24) 172deg,
    rgba(247, 244, 239, 0.3) 228deg,
    rgba(20, 184, 166, 0.18) 282deg,
    rgba(249, 115, 22, 0.16) 326deg,
    rgba(247, 244, 239, 0.32) 360deg
  );
  animation: hero-rotate 32s linear infinite;
  opacity: 0.88;
  pointer-events: none;
}

@keyframes hero-rotate {
  to {
    transform: rotate(360deg);
  }
}

.hero .container.hero-layout {
  position: relative;
  z-index: 3;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 0;
  padding: clamp(72px, 9vh, 100px) 28px clamp(100px, 13vh, 140px);
}

.hero-blob {
  position: absolute;
  border-radius: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-t {
  width: min(720px, 85vw);
  height: min(720px, 85vw);
  top: 42%;
  left: 50%;
  transform: translate(-92%, -58%);
  background: radial-gradient(circle, rgba(20, 184, 166, 0.38) 0%, rgba(13, 148, 136, 0.14) 38%, rgba(13, 148, 136, 0.05) 55%, transparent 72%);
  animation: blob-float 12s ease-in-out infinite;
}

.hero-blob-o {
  width: min(520px, 72vw);
  height: min(520px, 72vw);
  top: 52%;
  left: 50%;
  transform: translate(0%, -35%);
  background: radial-gradient(circle, rgba(249, 115, 22, 0.32) 0%, rgba(234, 88, 12, 0.14) 38%, rgba(234, 88, 12, 0.05) 52%, transparent 70%);
  animation: blob-float-o 14s ease-in-out infinite;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(-92%, -58%) scale(1);
  }
  50% {
    transform: translate(-90%, -56%) scale(1.05);
  }
}

@keyframes blob-float-o {
  0%,
  100% {
    transform: translate(0%, -35%) scale(1);
  }
  50% {
    transform: translate(-2%, -38%) scale(1.06);
  }
}

/* Side X — refined chevrons (orange ← | → teal), visible but soft */
.hero-side-x {
  --chev-edge: clamp(-120px, -7vw, -28px);
  --chev-gap: clamp(5px, 0.5vw, 10px);
  --chev-step: calc(78px + var(--chev-gap));
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

@keyframes hero-chevron-throb {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.03);
  }
}

.hero-side-x__mark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: min(132vh, 1600px);
  width: min(32vw, 420px);
  min-width: 112px;
  opacity: 0.15;
  animation: hero-chevron-throb 2.6s ease-in-out infinite;
  will-change: transform;
  overflow: visible;
}

.hero-side-x__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-side-x__svg polyline {
  stroke-width: 78;
  stroke-miterlimit: 2;
}

@media (max-width: 768px) {
  .hero-side-x__svg polyline {
    stroke-width: 56;
  }
}

@media (max-width: 480px) {
  .hero-side-x__svg polyline {
    stroke-width: 46;
  }
}

.hero-side-x__mark--mid {
  opacity: 0.1;
}

.hero-side-x__mark--inner {
  opacity: 0.05;
}

.hero-side-x__mark--left {
  left: var(--chev-edge);
}

.hero-side-x__mark--left-mid {
  left: calc(var(--chev-edge) + var(--chev-step));
}

.hero-side-x__mark--left-inner {
  left: calc(var(--chev-edge) + 2 * var(--chev-step));
}

.hero-side-x__mark--right {
  right: var(--chev-edge);
}

.hero-side-x__mark--right-mid {
  right: calc(var(--chev-edge) + var(--chev-step));
}

.hero-side-x__mark--right-inner {
  right: calc(var(--chev-edge) + 2 * var(--chev-step));
}

@media (max-width: 1024px) {
  .hero-side-x__mark {
    width: min(26vw, 300px);
    min-width: 88px;
  }
}

@media (max-width: 768px) {
  .hero-side-x {
    --chev-edge: clamp(-52px, -9vw, -12px);
    --chev-gap: clamp(3px, 1vw, 8px);
    --chev-step: calc(44px + var(--chev-gap));
  }

  .hero-side-x__mark {
    width: min(30vw, 190px);
    min-width: 68px;
    height: min(78vh, 780px);
    top: 46%;
    opacity: 0.1;
  }

  .hero-side-x__mark--mid {
    opacity: 0.07;
  }

  .hero-side-x__mark--inner {
    opacity: 0.04;
  }
}

@media (max-width: 480px) {
  .hero-side-x {
    --chev-edge: clamp(-36px, -10vw, -10px);
    --chev-step: calc(36px + var(--chev-gap));
  }

  .hero-side-x__mark {
    width: min(34vw, 118px);
    min-width: 60px;
    height: min(68vh, 640px);
    top: 44%;
    opacity: 0.09;
  }

  .hero-side-x__mark--mid {
    opacity: 0.05;
  }

  .hero-side-x__mark--inner {
    opacity: 0.03;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: clamp(18px, 2.75vh, 32px);
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, transparent, var(--teal));
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--orange), transparent);
}

.hero-h1 {
  --hero-h1-scale: 1;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.02;
  margin-bottom: clamp(18px, 2.5vh, 28px);
  padding-inline: 0.08em;
  transform: scale(var(--hero-h1-scale));
  transform-origin: center top;
  will-change: transform;
}

.hero-h1__line2 {
  display: inline-block;
  margin-top: -0.02em;
  line-height: 1;
}

@keyframes hero-founder-grad {
  0%,
  100% {
    background-position: 0% 45%;
  }
  50% {
    background-position: 100% 55%;
  }
}

@keyframes hero-dep-grad {
  0%,
  100% {
    background-position: 100% 45%;
  }
  50% {
    background-position: 0% 55%;
  }
}

.hero-h1__founder {
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(
    118deg,
    #042f2e 0%,
    #0f766e 18%,
    #0d9488 38%,
    #14b8a6 58%,
    #2dd4bf 78%,
    #5eead4 100%
  );
  background-size: 260% 260%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hero-founder-grad 6s ease-in-out infinite;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-bottom: 0;
}

.hero-h1__dep {
  display: inline-block;
  font-weight: 800;
  background: linear-gradient(
    118deg,
    #431407 0%,
    #9a3412 16%,
    #c2410c 36%,
    #ea580c 54%,
    #fb923c 72%,
    #fdba74 100%
  );
  background-size: 260% 260%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: hero-dep-grad 6s ease-in-out infinite;
  animation-delay: 0.4s;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-bottom: 0;
  padding-inline-end: 0.06em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.15rem;
  margin-bottom: clamp(14px, 2vh, 22px);
  line-height: 1.72;
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(4px, 1vh, 10px);
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 44rem;
}

.hero-ctas .btn-primary,
.hero-ctas .btn-ghost,
.hero-ctas .btn-tertiary {
  width: auto;
  justify-content: center;
}

.hero-ctas .btn-tertiary {
  flex-basis: 100%;
  text-align: center;
}

@media (min-width: 640px) {
  .hero-ctas .btn-tertiary {
    flex-basis: auto;
  }
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 0;
  -webkit-border-radius: 0;
  font-size: 0.77rem;
  color: var(--muted);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s, background 0.4s;
}

.proof-pill:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-sm);
  border-color: var(--teal-border);
  background: var(--glass-hover);
}

.proof-dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--teal-soft);
}

/* ─── PROBLEM ────────────────────────────────────────────── */
.problem-head {
  text-align: center;
  margin-bottom: 60px;
}

.problem-sub {
  color: var(--muted);
  font-size: 1rem;
  margin: 12px auto 0;
  max-width: 480px;
}

.problem-split {
  --problem-slide: clamp(44px, 7vw, 88px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(6px, 1.2vw, 10px);
  max-width: 880px;
  margin: 0 auto 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-split.reveal-sync .problem-panel {
  opacity: 0;
  transform: translate(calc(-1 * var(--problem-slide)), 14px);
  filter: blur(4px);
  transition: opacity 0.85s var(--ease-out), transform 1.05s var(--ease-out), filter 0.75s var(--ease-out);
}

.problem-split.reveal-sync .problem-panel--orange {
  transform: translate(var(--problem-slide), 14px);
}

.problem-split.reveal-sync.in .problem-panel {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}

.problem-panel {
  position: relative;
  padding: 40px 36px 44px;
  overflow: hidden;
}

.problem-panel:first-child {
  border-right: none;
}

.problem-panel--teal {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.06) 0%, transparent 42%);
}

.problem-panel--orange {
  background: linear-gradient(225deg, rgba(234, 88, 12, 0.06) 0%, transparent 42%);
}

.pc-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pc-label.t {
  color: var(--teal-deep);
}
.pc-label.o {
  color: var(--orange-deep);
}

.problem-panel h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.22;
}

.problem-panel p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.72;
}

.wm-x {
  position: absolute;
  bottom: -20px;
  right: -16px;
  width: 88px;
  height: 88px;
  opacity: 0.08;
  pointer-events: none;
}

.wm-x line {
  stroke: var(--teal);
  stroke-width: 6;
}

.wm-x--orange line {
  stroke: var(--orange);
}

.wm-x--panel {
  color: var(--teal-bright);
}

.problem-resolve {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
}

/* ─── THESIS ─────────────────────────────────────────────── */
.thesis-section {
  background: var(--cream-alt);
}

.thesis-head {
  text-align: center;
  margin-bottom: 48px;
}

.thesis-outcome {
  margin: 0 auto 24px;
  max-width: min(52rem, 100%);
  padding-inline: 12px;
}

.thesis-outcome__eq {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em 0.45em;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.thesis-outcome__term {
  font-size: clamp(1.35rem, 3.4vw, 2.05rem);
}

.thesis-outcome__op {
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: var(--subtle);
  line-height: 1;
}

.thesis-outcome__op--eq {
  margin-left: 0.1em;
}

.thesis-outcome__result {
  font-size: clamp(1.45rem, 3.6vw, 2.45rem);
  line-height: 1.08;
  flex-basis: auto;
}

@media (min-width: 640px) {
  .thesis-outcome__eq {
    gap: 0.42em 0.55em;
  }
}

.thesis-bridge {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: center;
  max-width: 960px;
  margin-inline: auto;
}

.thesis-pills {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.thesis-pills p {
  font-size: 0.93rem;
  color: var(--muted);
}

.thesis-wing {
  text-align: center;
  padding: 8px 12px 16px;
  position: relative;
}

.thesis-wing__glyph {
  font-size: 1.65rem;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
  opacity: 0.88;
}

.thesis-wing h3 {
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.thesis-wing p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 260px;
  margin: 0 auto;
}

.thesis-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}

.thesis-hub__rule {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--border-strong), transparent);
}

.thesis-x {
  width: 80px;
  height: 80px;
  position: relative;
  flex-shrink: 0;
  transform-origin: center center;
  transition: transform 0.5s var(--ease-out);
}

.thesis-bridge:not(.in) .thesis-x {
  transform: scale(2.45);
  opacity: 0.48;
}

.thesis-bridge.in .thesis-x {
  animation: thesis-x-settle 1.05s var(--ease-out) forwards;
}

@keyframes thesis-x-settle {
  from {
    transform: scale(2.45);
    opacity: 0.48;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thesis-hub:hover .thesis-x {
  transform: rotate(8deg) scale(1.05);
}

.thesis-x::before,
.thesis-x::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 0;
}

.thesis-x::before {
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 2px 12px var(--teal-glow);
}

.thesis-x::after {
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: translateY(-50%) rotate(-45deg);
  box-shadow: 0 2px 12px var(--orange-glow);
}

.thesis-mid-label {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.thesis-mid-sub {
  font-size: 0.74rem;
  color: var(--muted);
  text-align: center;
}

/* ─── REALIGN ────────────────────────────────────────────── */
.realign-head {
  margin-bottom: clamp(28px, 3.5vw, 40px);
  text-align: center;
}

.realign-head .eyebrow {
  margin-bottom: 14px;
}

.realign-head .section-title {
  max-width: min(34rem, 100%);
  margin-inline: auto;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.85vw, 2.45rem);
  line-height: 1.2;
  letter-spacing: -0.028em;
}

.realign-track {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.realign-leg {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.realign-leg:nth-child(2n) {
  border-right: none;
}

.realign-leg:nth-child(n + 3) {
  border-bottom: none;
}

.realign-leg__scale {
  display: grid;
  grid-template-columns: minmax(3.75rem, 4.75rem) 1fr;
  gap: 16px 18px;
  padding: clamp(18px, 2.5vw, 22px) clamp(14px, 2vw, 20px);
  align-items: start;
  transform-origin: center center;
  will-change: transform;
  height: 100%;
}

.realign-leg:nth-child(1).reveal.in .realign-leg__scale {
  animation: realign-step-1 6s ease-in-out infinite;
}

.realign-leg:nth-child(2).reveal.in .realign-leg__scale {
  animation: realign-step-2 6s ease-in-out infinite;
}

.realign-leg:nth-child(3).reveal.in .realign-leg__scale {
  animation: realign-step-3 6s ease-in-out infinite;
}

.realign-leg:nth-child(4).reveal.in .realign-leg__scale {
  animation: realign-step-4 6s ease-in-out infinite;
}

@keyframes realign-step-1 {
  0% {
    transform: scale(1);
  }
  3% {
    transform: scale(1.06);
  }
  22% {
    transform: scale(1.06);
  }
  25%,
  100% {
    transform: scale(1);
  }
}

@keyframes realign-step-2 {
  0%,
  25% {
    transform: scale(1);
  }
  28% {
    transform: scale(1.06);
  }
  47% {
    transform: scale(1.06);
  }
  50%,
  100% {
    transform: scale(1);
  }
}

@keyframes realign-step-3 {
  0%,
  50% {
    transform: scale(1);
  }
  53% {
    transform: scale(1.06);
  }
  72% {
    transform: scale(1.06);
  }
  75%,
  100% {
    transform: scale(1);
  }
}

@keyframes realign-step-4 {
  0%,
  75% {
    transform: scale(1);
  }
  78% {
    transform: scale(1.06);
  }
  97% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

.realign-leg__n {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--teal);
  opacity: 0.35;
}

.realign-leg__n--accent {
  color: var(--orange);
  opacity: 0.45;
}

.realign-leg__kicker {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--text);
}

.realign-leg__body p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.58;
}

/* ─── SOLUTIONS ─────────────────────────────────────────── */
.solutions-section {
  background: var(--cream-alt);
}

.solutions-head {
  text-align: center;
  margin-bottom: 60px;
}

.solutions-intro {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 520px;
  margin: 12px auto 0;
}

.sol-masthead {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.sol-tier {
  padding: 36px 26px 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.sol-tier:last-child {
  border-right: none;
}

.sol-tier--featured {
  padding-top: 28px;
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.07) 0%, transparent 38%);
  box-shadow: inset 0 3px 0 0 var(--orange);
}

.sol-tier__head {
  margin-bottom: 22px;
}

.sol-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 0;
  margin-bottom: 18px;
}

.sol-tier__head h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.sol-tier__body {
  flex: 1;
}

.sol-tagline {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.65;
}

.sol-for-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 8px;
}

.sol-for-text {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.65;
}

.sol-body {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.65;
}

.sol-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.sol-li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.sol-mark {
  display: block;
  width: 10px;
  height: 2px;
  border-radius: 0;
  background: var(--teal);
  margin-top: 0.55em;
  flex-shrink: 0;
}

.sol-outcome {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--teal-deep);
  margin-bottom: 28px;
  line-height: 1.65;
}

.btn-ghost.block,
.btn-primary.block {
  width: 100%;
  justify-content: center;
}

/* ─── METHOD ─────────────────────────────────────────────── */
.method-head {
  text-align: center;
  margin-bottom: 72px;
}

.method-flow {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  max-width: 1080px;
}

.method-flow::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: rgba(44, 40, 36, 0.35);
  z-index: 0;
  border-radius: 0;
  opacity: 1;
  pointer-events: none;
}

.method-flow::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 14%;
  right: 14%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 1;
  border-radius: 0;
  pointer-events: none;
  animation: method-neon-fill 12s ease-in-out infinite;
}

@keyframes method-neon-fill {
  0% {
    transform: scaleX(0);
    opacity: 0.55;
  }
  7% {
    opacity: 1;
  }
  42% {
    transform: scaleX(1);
    opacity: 1;
  }
  54% {
    transform: scaleX(1);
    opacity: 1;
  }
  72% {
    transform: scaleX(1);
    opacity: 0;
  }
  73% {
    transform: scaleX(0);
    opacity: 0;
  }
  78% {
    transform: scaleX(0);
    opacity: 0;
  }
  88% {
    opacity: 0.55;
  }
  100% {
    transform: scaleX(0);
    opacity: 0.55;
  }
}

.method-node {
  text-align: center;
  padding: 32px 10px 0;
  position: relative;
  z-index: 2;
}

.method-node__scale {
  transform-origin: center center;
  will-change: transform;
}

.method-node:nth-child(1).reveal.in .method-node__scale {
  animation: method-pillar-1 12s ease-in-out infinite;
}

.method-node:nth-child(2).reveal.in .method-node__scale {
  animation: method-pillar-2 12s ease-in-out infinite;
}

.method-node:nth-child(3).reveal.in .method-node__scale {
  animation: method-pillar-3 12s ease-in-out infinite;
}

.method-node:nth-child(4).reveal.in .method-node__scale {
  animation: method-pillar-4 12s ease-in-out infinite;
}

@keyframes method-pillar-1 {
  0% {
    transform: scale(1);
  }
  2% {
    transform: scale(1);
  }
  6% {
    transform: scale(1.07);
  }
  11% {
    transform: scale(1.07);
  }
  14%,
  100% {
    transform: scale(1);
  }
}

@keyframes method-pillar-2 {
  0%,
  12% {
    transform: scale(1);
  }
  16% {
    transform: scale(1.07);
  }
  23% {
    transform: scale(1.07);
  }
  26%,
  100% {
    transform: scale(1);
  }
}

@keyframes method-pillar-3 {
  0%,
  24% {
    transform: scale(1);
  }
  28% {
    transform: scale(1.07);
  }
  35% {
    transform: scale(1.07);
  }
  38%,
  100% {
    transform: scale(1);
  }
}

@keyframes method-pillar-4 {
  0%,
  36% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.07);
  }
  47% {
    transform: scale(1.07);
  }
  50%,
  100% {
    transform: scale(1);
  }
}

.method-node__dot {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 20px;
  border-radius: 0;
  background: var(--surface-solid);
  border: 2px solid var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.method-node__dot--orange {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.12);
}

.method-node__idx {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--subtle);
  margin-bottom: 12px;
}

.method-node h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.method-node p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 220px;
  margin: 0 auto;
}

/* ─── DIFF ───────────────────────────────────────────────── */
.diff-section {
  background: var(--cream-alt);
}

.diff-head {
  text-align: center;
  margin-bottom: 60px;
}

.diff-triptych {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.diff-slab {
  text-align: center;
  padding: 12px 14px 24px;
}

.diff-slab--aside {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.diff-slab--center {
  position: relative;
  padding-top: 32px;
}

.diff-slab--center::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 0;
  background: linear-gradient(90deg, var(--teal), var(--orange));
}

.diff-slab__mark {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1;
}

.diff-slab__mark--muted {
  color: var(--subtle);
}

.diff-slab__mark--hero {
  font-size: 1.8rem;
}

.diff-slab h3 {
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.diff-slab p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 280px;
  margin: 0 auto;
}

/* ─── WHO ────────────────────────────────────────────────── */
.who-head {
  text-align: center;
  margin-bottom: 60px;
}

.who-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}

.who-column {
  padding: 8px 8px 0;
}

.who-column--yes {
  padding-right: clamp(16px, 3vw, 36px);
  border-top: 2px solid var(--teal);
  padding-top: 28px;
}

.who-column--no {
  padding-left: clamp(16px, 3vw, 36px);
  border-top: 2px solid var(--border);
  padding-top: 28px;
}

.who-split__spine {
  width: 1px;
  min-height: 100px;
  align-self: stretch;
  margin-top: 36px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(13, 148, 136, 0.35),
    rgba(234, 88, 12, 0.35),
    transparent
  );
}

.who-column h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.who-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.who-li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.who-li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── OUTCOMES ───────────────────────────────────────────── */
.out-section {
  background: var(--cream-alt);
}

.out-head {
  text-align: center;
  margin-bottom: 60px;
}

.out-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}

.out-pane {
  padding: 36px 28px 40px;
}

.out-pane--before {
  border-bottom: 2px solid var(--border);
  padding-right: clamp(16px, 3vw, 32px);
}

.out-pane--after {
  border-bottom: 2px solid var(--teal);
  padding-left: clamp(16px, 3vw, 32px);
  background: linear-gradient(127deg, var(--teal-fill) 0%, transparent 55%);
}

.out-compare__hinge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-bottom: 2px solid var(--border);
  min-width: 64px;
}

.out-heading {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.out-heading--muted {
  color: var(--muted);
}

.out-heading--teal {
  color: var(--teal-deep);
}

.out-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.out-li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.out-li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.out-li.off {
  color: var(--muted);
}

.out-li.on {
  color: var(--text);
}

.out-arrow {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--orange) 100%);
  background-size: 150% 150%;
  animation: arrow-pulse 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 32px var(--teal-glow);
}

@keyframes arrow-pulse {
  0%,
  100% {
    transform: scale(1);
    background-position: 0% 50%;
  }
  50% {
    transform: scale(1.06);
    background-position: 100% 50%;
  }
}

/* ─── CTA ────────────────────────────────────────────────── */
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-x {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  max-width: 95vw;
  opacity: 0.12;
  pointer-events: none;
}

.cta-blob-t,
.cta-blob-o {
  position: absolute;
  border-radius: 0;
  pointer-events: none;
}

.cta-blob-t {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.28) 0%, rgba(20, 184, 166, 0.08) 52%, transparent 70%);
  animation: cta-glow 8s ease-in-out infinite;
}

.cta-blob-o {
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.24) 0%, rgba(249, 115, 22, 0.08) 52%, transparent 70%);
  animation: cta-glow 10s ease-in-out infinite reverse;
}

@keyframes cta-glow {
  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-quote {
  font-size: clamp(1.75rem, 3.6vw, 2.85rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 24px;
}

.cta-quote__lead {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .cta-quote__lead {
    white-space: normal;
  }
}

.cta-support {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 500px;
  margin: 0 auto 44px;
}

.cta-inner .btn-primary {
  font-size: 0.95rem;
  padding: 18px 36px;
}

.cta-eyebrow {
  margin-bottom: 32px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  border-top: 1px solid var(--border);
  padding: 80px 0 36px;
  color: var(--text);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  margin-bottom: 18px;
  display: inline-flex;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.86rem;
  color: var(--muted);
  transition: color 0.3s, transform 0.3s var(--ease-out);
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: 0.77rem;
  color: var(--subtle);
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  font-size: 0.77rem;
  color: var(--subtle);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--muted);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .sol-masthead {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .sol-tier {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .sol-tier:last-child {
    border-bottom: none;
  }

  .method-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .method-flow::before,
  .method-flow::after {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: max(18px, env(safe-area-inset-left, 0px));
    padding-right: max(18px, env(safe-area-inset-right, 0px));
  }

  section {
    padding: 64px 0;
  }

  .realign-section {
    padding: 44px 0;
  }

  .realign-track {
    grid-template-columns: 1fr;
  }

  .realign-leg {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .realign-leg:last-child {
    border-bottom: none;
  }

  .band {
    padding: 22px 0;
  }

  .band--axis {
    padding: 10px 0 12px;
  }

  #intro-value {
    margin-top: 0;
  }

  .band-axis__inner {
    padding-inline: 20px;
  }

  .hero .container.hero-layout {
    padding-top: 68px;
    padding-bottom: clamp(88px, 14vh, 118px);
    padding-left: max(18px, env(safe-area-inset-left, 0px));
    padding-right: max(18px, env(safe-area-inset-right, 0px));
  }

  .proof-marquee__viewport {
    height: clamp(7.25rem, 20vh, 8.5rem);
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .hero-h1 {
    font-size: clamp(2.5rem, 10vw, 3.6rem);
    padding-inline: max(0.1em, 12px);
  }

  .hero::before {
    opacity: 0.55;
  }

  .problem-split {
    grid-template-columns: 1fr;
    gap: clamp(8px, 2.4vw, 14px) 0;
    --problem-slide: clamp(28px, 8vw, 48px);
  }

  .problem-split.reveal-sync .problem-panel {
    transform: translateY(calc(-1 * var(--problem-slide)));
  }

  .problem-split.reveal-sync .problem-panel--orange {
    transform: translateY(var(--problem-slide));
  }

  .problem-split.reveal-sync.in .problem-panel {
    transform: translateY(0);
  }

  .problem-panel:first-child {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .thesis-bridge {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
  }

  .thesis-wing p {
    margin-left: auto;
    margin-right: auto;
  }

  .diff-triptych {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .diff-slab--aside {
    padding-top: 20px;
  }

  .who-split {
    grid-template-columns: 1fr;
  }

  .who-split__spine {
    width: 100%;
    max-width: 200px;
    height: 2px;
    min-height: 0;
    margin: 28px auto;
    align-self: center;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(13, 148, 136, 0.4),
      rgba(234, 88, 12, 0.4),
      transparent
    );
  }

  .who-column--yes {
    padding-right: 8px;
  }

  .who-column--no {
    padding-left: 8px;
  }

  .out-compare {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .out-pane--before,
  .out-pane--after {
    padding-left: 22px;
    padding-right: 22px;
    border-bottom: none;
  }

  .out-pane--before {
    border-bottom: 1px solid var(--border);
  }

  .out-pane--after {
    border-bottom: 2px solid var(--teal);
    border-top: 1px solid var(--border);
  }

  .out-compare__hinge {
    border-bottom: none;
    padding: 20px 0;
    min-height: unset;
  }

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

  .nav {
    padding: 16px 0;
  }

  .nav.scrolled {
    padding: 11px 0;
  }

  .nav-burger {
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-nav a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-close {
    top: max(16px, env(safe-area-inset-top, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
  }

  .section-title {
    font-size: clamp(1.52rem, 5.2vw, 2.35rem);
    margin-bottom: 12px;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  .section-sub {
    font-size: 0.94rem;
    line-height: 1.64;
    max-width: min(36rem, 100%);
    margin-inline: auto;
  }

  .section-sub--center {
    padding: 0 4px;
  }

  .btn-primary,
  .btn-ghost {
    min-height: 48px;
    padding: 14px 22px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }

  .hero .container.hero-layout {
    padding-top: 56px;
    padding-left: max(18px, env(safe-area-inset-left, 0px));
    padding-right: max(18px, env(safe-area-inset-right, 0px));
  }

  .hero-sub {
    font-size: 0.96rem;
    line-height: 1.64;
    padding: 0 8px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    max-width: 100%;
    padding: 0 4px;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    width: 100%;
    max-width: min(22rem, 100%);
    margin-inline: auto;
  }

  .hero-eyebrow {
    padding: 0 10px;
    letter-spacing: 0.16em;
    gap: 10px;
  }

  .thesis-head {
    margin-bottom: 32px;
  }

  .thesis-outcome {
    padding-inline: 8px;
    margin-bottom: 18px;
  }

  .thesis-outcome__term {
    font-size: clamp(1.15rem, 4.2vw, 1.75rem);
  }

  .thesis-outcome__op {
    font-size: clamp(0.88rem, 3vw, 1.2rem);
  }

  .thesis-outcome__result {
    font-size: clamp(1.2rem, 4.6vw, 2.05rem);
  }

  .method-head {
    margin-bottom: 36px;
  }

  .method-node {
    padding: 18px 4px 0;
  }

  .method-node h3 {
    font-size: 1.02rem;
  }

  .method-node p {
    max-width: none;
    font-size: 0.81rem;
    line-height: 1.66;
  }

  .realign-head {
    margin-bottom: 28px;
  }

  .realign-head .section-title {
    font-size: clamp(1.32rem, 4.5vw, 1.95rem);
    line-height: 1.22;
  }

  .realign-leg__scale {
    padding: 16px 12px;
    gap: 14px 16px;
  }

  .solutions-head {
    margin-bottom: 44px;
  }

  .solutions-intro {
    font-size: 0.92rem;
    padding: 0 6px;
    line-height: 1.68;
  }

  .sol-tier {
    padding: 28px 18px 34px;
  }

  .diff-head {
    margin-bottom: 44px;
  }

  .cta-inner .btn-primary {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    justify-content: center;
  }

  .cta-quote {
    font-size: clamp(1.45rem, 5.5vw, 2.35rem);
    padding: 0 4px;
  }

  .footer {
    padding: 52px 0 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom, 12px));
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  section {
    padding: 52px 0;
  }

  .realign-section {
    padding: 36px 0;
  }

  .section-title {
    font-size: clamp(1.42rem, 6.2vw, 2.05rem);
  }

  .hero-h1 {
    font-size: clamp(2.15rem, 9.5vw, 3.05rem);
    padding-inline: max(0.12em, 10px);
  }

  .hero .container.hero-layout {
    padding-top: 50px;
    padding-bottom: clamp(80px, 18vh, 110px);
  }

  .band--axis .band-lead {
    font-size: clamp(1.02rem, 4.2vw, 1.38rem);
  }

  .problem-head .section-title {
    font-size: clamp(1.45rem, 5.5vw, 2.15rem);
  }

  .thesis-outcome__result {
    font-size: clamp(1.08rem, 5vw, 1.85rem);
  }

  .logo {
    font-size: 1.18rem;
  }

  .proof-marquee__viewport {
    height: 7rem;
  }
}

/* ─── BOOKING PAGE (/book-structural-assessment-call/) ─────── */
.booking-body {
  min-height: 100vh;
  background: var(--cream);
}

.booking-body .btn-nav[aria-current="page"],
.booking-body .mob-nav .btn-primary[aria-current="page"] {
  box-shadow: inset 0 0 0 2px var(--teal);
  border-radius: 0;
}

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

.booking-masthead {
  position: relative;
  padding: clamp(88px, 14vh, 120px) 0 clamp(20px, 3vh, 32px);
  margin-top: 0;
  background: linear-gradient(
      180deg,
      rgba(255, 252, 247, 0.98) 0%,
      var(--cream) 55%,
      rgba(237, 232, 223, 0.5) 100%
    ),
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(13, 148, 136, 0.12) 0%, transparent 55%);
  border-bottom: 1px solid var(--border);
}

.booking-masthead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(20, 184, 166, 0.35) 45%, var(--orange) 100%);
  opacity: 0.85;
}

.booking-masthead__inner {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.booking-masthead__eyebrow {
  margin-bottom: 12px;
}

.booking-masthead__title {
  font-family: var(--font);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.booking-masthead__sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.booking-main {
  scroll-margin-top: 96px;
  padding: clamp(28px, 4vh, 44px) 0 clamp(48px, 8vh, 88px);
}

.booking-container {
  max-width: 1040px;
  padding-left: max(20px, env(safe-area-inset-left, 0px));
  padding-right: max(20px, env(safe-area-inset-right, 0px));
}

.booking-banner {
  background: rgba(234, 88, 12, 0.12);
  border: 1px solid var(--orange-border);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.92rem;
  color: var(--text);
}

.booking-card {
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: 0 20px 56px rgba(44, 40, 36, 0.09);
  overflow: hidden;
}

/* AXIS booking shell — distinct from generic scheduler cards */
.booking-card--axis {
  position: relative;
  isolation: isolate;
  border-radius: 22px 18px 24px 16px;
  box-shadow:
    0 20px 56px rgba(44, 40, 36, 0.09),
    0 0 0 1px rgba(13, 148, 136, 0.06) inset;
}

.booking-card--axis > .booking-card__grid {
  position: relative;
  z-index: 1;
}

.booking-card--axis::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 55% at 100% 0%, rgba(234, 88, 12, 0.11) 0%, transparent 52%),
    linear-gradient(165deg, transparent 52%, rgba(13, 148, 136, 0.04) 100%);
  z-index: 0;
}

.booking-card--axis::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 0;
  width: 5px;
  height: 38%;
  border-radius: 5px 0 0 5px;
  pointer-events: none;
  background: linear-gradient(180deg, var(--teal-bright), rgba(234, 88, 12, 0.85));
  opacity: 0.55;
  z-index: 0;
}

.booking-card--axis .booking-card__left {
  background:
    linear-gradient(165deg, rgba(255, 252, 247, 0.98) 0%, var(--cream-alt) 92%),
    radial-gradient(ellipse 90% 70% at 0% 0%, rgba(20, 184, 166, 0.1) 0%, transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 42%);
}

.booking-card__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.2fr);
  min-height: 520px;
}

@media (max-width: 900px) {
  .booking-card__grid {
    grid-template-columns: 1fr;
  }
}

.booking-card__left {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(28px, 4vw, 40px);
  border-right: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 252, 247, 0.98) 0%, var(--cream-alt) 100%);
}

.booking-card__left--accent {
  border-left: 4px solid var(--teal);
}

@media (max-width: 900px) {
  .booking-card__left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    border-left: none;
    border-top: 4px solid var(--teal);
  }
}

.booking-block {
  margin-bottom: 0;
}

.booking-block + .booking-block {
  margin-top: clamp(18px, 3vw, 26px);
  padding-top: clamp(18px, 3vw, 26px);
  border-top: 1px solid var(--border);
}

.booking-block--summary {
  flex: 1;
}

.booking-card__left > .booking-block--legal {
  margin-top: auto;
}

.booking-block__heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 8px;
}

.booking-card__right--stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.booking-card__right--stack .booking-step {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* [hidden] must win: the rule above beats the UA [hidden]{display:none} specificity,
   so steps were visible before booking (success + details stacked with pick). */
.booking-card__right--stack .booking-step[hidden] {
  display: none !important;
}

.booking-block--timezone,
.booking-block--calendar,
.booking-block--slots,
.booking-block--details,
.booking-block--success {
  padding: clamp(14px, 2.5vw, 18px);
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 252, 247, 0.65);
}

.booking-block--calendar {
  background: #fff;
}

.booking-cal-pane {
  position: relative;
  overflow: hidden;
}

.booking-cal-pane::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--teal-bright), rgba(234, 88, 12, 0.75));
  opacity: 0.45;
  pointer-events: none;
}

.booking-block--slots {
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.04) 0%, rgba(255, 252, 247, 0.9) 100%);
}

.booking-block--details,
.booking-block--success {
  background: #fff;
  border-color: var(--border-strong);
}

.booking-step__head {
  margin-bottom: clamp(16px, 3vw, 22px);
}

.booking-step__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin: 0 0 8px;
}

.booking-step__title--first {
  margin-bottom: 0;
}

.booking-step .booking-block--timezone {
  margin-top: 0;
}

.booking-host {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
}

.booking-title {
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: #1e3a4c;
  line-height: 1.2;
  margin-bottom: 18px;
}

.booking-meta {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.45;
}

.booking-meta__icon {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

.booking-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 20px;
}

.booking-legal {
  display: flex;
  gap: 16px;
  font-size: 0.75rem;
}

.booking-legal a {
  color: var(--teal);
  text-decoration: none;
}

.booking-legal a:hover {
  text-decoration: underline;
}

.booking-card__right {
  padding: clamp(28px, 4vw, 36px);
}

.booking-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3a4c;
  margin-bottom: 18px;
}

.booking-tz-row {
  margin-bottom: 18px;
}

.booking-tz-hint {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 10px;
  max-width: 36rem;
}

.booking-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 6px;
}

.booking-label__opt {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.booking-select {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  font-family: var(--font);
  font-size: 0.88rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

.booking-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.booking-cal-nav {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #fff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text);
}

.booking-cal-nav:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.booking-cal-month {
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
  color: #1e3a4c;
}

.booking-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--subtle);
  text-align: center;
}

.booking-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 22px;
}

.booking-cal-cell {
  aspect-ratio: 1;
  max-height: 40px;
  border: none;
  border-radius: 6px 16px 8px 8px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--muted);
  transition: background-color 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out), color 0.15s var(--ease-out);
}

.booking-cal-cell--pad {
  visibility: hidden;
  pointer-events: none;
}

.booking-cal-cell--available {
  background: rgba(20, 184, 166, 0.06);
  color: var(--teal-deep);
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.42);
}

.booking-cal-cell--available:hover:not(:disabled) {
  background: rgba(20, 184, 166, 0.16);
  box-shadow: inset 0 0 0 1px rgba(13, 148, 136, 0.65);
}

.booking-cal-cell--muted {
  opacity: 0.35;
  cursor: default;
}

.booking-cal-cell--disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.booking-cal-cell--selected {
  background: linear-gradient(160deg, var(--teal-bright) 0%, var(--teal) 55%, var(--teal-deep) 100%);
  color: #fff;
  box-shadow: inset 0 -4px 0 rgba(234, 88, 12, 0.92);
  border-radius: 8px 8px 14px 8px;
}

.booking-cal-cell:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.booking-slots-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.booking-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-slots--axis {
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0;
}

.booking-slot {
  padding: 10px 14px;
  border: 1px solid var(--teal-border);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--teal-deep);
  cursor: pointer;
}

.booking-slot:hover {
  background: rgba(20, 184, 166, 0.1);
}

.booking-slots--axis .booking-slot {
  width: 100%;
  max-width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 16px 12px 14px;
  border-radius: 0 12px 12px 0;
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.11) 0%, #fff 38%);
  box-shadow: none;
}

.booking-slots--axis .booking-slot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: linear-gradient(135deg, var(--teal-bright), var(--orange-bright));
  opacity: 0.75;
  flex-shrink: 0;
}

.booking-slots--axis .booking-slot:hover {
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.18) 0%, #fff 45%);
  border-color: var(--teal-border);
}

.booking-slots--axis .booking-slot:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  z-index: 1;
}

.booking-picked {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.booking-form .booking-input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-family: var(--font);
  font-size: 0.92rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
}

.booking-form .booking-textarea {
  display: block;
  min-height: 96px;
  resize: vertical;
  line-height: 1.5;
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.booking-form {
  position: relative;
}

.booking-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.booking-link {
  display: block;
  margin-top: 16px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 0.86rem;
  color: var(--teal);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.booking-done {
  text-align: center;
}

.booking-done__mark {
  display: flex;
  justify-content: center;
  margin: 0 auto 16px;
}

.booking-done__mark-svg {
  color: var(--teal-deep);
  filter: drop-shadow(0 6px 14px rgba(13, 148, 136, 0.2));
}

.booking-done__mark-accent {
  stroke: var(--orange);
}

.booking-done__text {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.booking-success-summary {
  text-align: left;
  margin: 0 auto 22px;
  max-width: 420px;
  padding: clamp(14px, 2.5vw, 18px);
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 252, 247, 0.65);
}

.booking-success-summary__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

.booking-success-summary__dl {
  display: grid;
  grid-template-columns: minmax(88px, 34%) minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.booking-success-summary__term {
  margin: 0;
  font-weight: 700;
  color: var(--teal-deep);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-success-summary__def {
  margin: 0;
  color: var(--text);
  word-break: break-word;
}

@media (max-width: 480px) {
  .booking-success-summary__dl {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .booking-success-summary__term {
    margin-top: 10px;
  }

  .booking-success-summary__term:first-of-type {
    margin-top: 0;
  }

  .booking-success-summary__def {
    margin-bottom: 4px;
  }
}

.footer--booking {
  margin-top: 0;
}

@media (max-width: 900px) {
  .booking-masthead {
    padding-top: clamp(80px, 18vw, 100px);
  }

  .booking-card__right {
    padding: clamp(20px, 4vw, 28px);
  }

  .booking-step__title {
    font-size: 1.02rem;
  }
}

@media (max-width: 480px) {
  .booking-masthead__title {
    font-size: 1.28rem;
  }

  .booking-cal-cell {
    min-height: 44px;
    max-height: none;
    aspect-ratio: auto;
  }

  .booking-slot {
    min-height: 44px;
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .booking-slots {
    flex-direction: column;
  }

  .booking-select {
    word-break: break-word;
  }
}

/* ─── ASSESSMENT PAGE ─────────────────────────────────────── */
.assessment-body {
  background: var(--cream);
  background-image: radial-gradient(ellipse 125% 85% at 100% -5%, var(--teal-soft), transparent 40%),
    radial-gradient(ellipse 100% 75% at 0% 105%, var(--orange-soft), transparent 36%);
  background-attachment: fixed;
}

.assessment-hero {
  padding: clamp(140px, 22vh, 200px) 0 clamp(60px, 10vh, 100px);
  text-align: center;
}

.assessment-hero__inner {
  max-width: 680px;
  margin: 0 auto;
}

.assessment-hero__title {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin: 16px 0 20px;
}

.assessment-hero__sub {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto 12px;
}

.assessment-hero__support {
  font-size: 0.88rem;
  color: var(--subtle);
  font-style: italic;
  margin-bottom: 28px;
}

.assessment-hero__cta {
  margin-bottom: 16px;
}

.assessment-hero__micro {
  font-size: 0.78rem;
  color: var(--subtle);
  letter-spacing: 0.02em;
}

/* Assessment Intro */
.assessment-intro {
  padding: clamp(40px, 8vh, 80px) 0;
  border-top: 1px solid var(--border);
}

.assessment-intro__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.assessment-intro__title {
  font-family: var(--font);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 18px;
}

.assessment-intro__body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.72;
}

/* Assessment Form Section */
.assessment-form-section {
  padding: clamp(40px, 8vh, 80px) 0 clamp(60px, 10vh, 100px);
}

.assessment-form__inner {
  max-width: 720px;
  margin: 0 auto;
}

/* Progress Bar */
.assessment-progress {
  margin-bottom: 32px;
  text-align: center;
}

.assessment-progress__bar {
  height: 4px;
  background: var(--border-strong);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 10px;
}

.assessment-progress__fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  border-radius: 2px;
  transition: width 0.4s var(--ease-out);
}

.assessment-progress__text {
  font-size: 0.75rem;
  color: var(--subtle);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Questions */
.assessment-questions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.assessment-question {
  padding: clamp(24px, 4vw, 36px) 0;
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s var(--ease-out);
}

.assessment-question:first-child {
  border-top: 1px solid var(--border);
}

.assessment-question--answered {
  background: rgba(20, 184, 166, 0.03);
}

.assessment-question--highlight {
  background: rgba(234, 88, 12, 0.08);
}

.assessment-question__number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 10px;
}

.assessment-question__text {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Scale / Radio Group */
.assessment-scale {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.assessment-scale__option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  background: var(--surface-solid);
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  flex: 1 1 auto;
  min-width: 140px;
  justify-content: center;
}

.assessment-scale__option:hover {
  border-color: var(--teal-border);
  background: rgba(20, 184, 166, 0.04);
}

.assessment-scale__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.assessment-scale__indicator {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-strong);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.assessment-scale__indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  transition: transform 0.25s var(--ease-out);
}

.assessment-scale__input:checked + .assessment-scale__indicator {
  border-color: var(--teal);
}

.assessment-scale__input:checked + .assessment-scale__indicator::after {
  transform: translate(-50%, -50%) scale(1);
}

.assessment-scale__input:checked ~ .assessment-scale__label {
  color: var(--teal-deep);
  font-weight: 600;
}

.assessment-scale__input:focus-visible + .assessment-scale__indicator {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.assessment-scale__label {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.25s var(--ease-out);
  white-space: nowrap;
}

/* Form Actions */
.assessment-form__actions {
  margin-top: 40px;
  text-align: center;
}

.assessment-form__note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--subtle);
}

/* Result Section */
.assessment-result {
  padding: clamp(60px, 10vh, 100px) 0 clamp(40px, 6vh, 60px);
}

.assessment-result__inner {
  max-width: 640px;
  margin: 0 auto;
}

.assessment-result__card {
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  border-left: 5px solid var(--teal);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 44px);
  box-shadow: var(--shadow-sm);
}

.assessment-result__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 8px;
}

.assessment-result__title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--teal-deep);
  margin-bottom: 28px;
}

.assessment-result__section {
  margin-bottom: 24px;
}

.assessment-result__section:last-child {
  margin-bottom: 0;
}

.assessment-result__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 8px;
}

.assessment-result__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
}

/* Email Gate Section */
.assessment-gate {
  padding: clamp(40px, 6vh, 60px) 0 clamp(60px, 10vh, 100px);
}

.assessment-gate__inner {
  max-width: 520px;
  margin: 0 auto;
}

.assessment-gate__card {
  background: linear-gradient(165deg, rgba(20, 184, 166, 0.06) 0%, var(--surface-solid) 40%);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 40px);
  text-align: center;
}

.assessment-gate__title {
  font-family: var(--font);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.assessment-gate__body {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.assessment-gate__form {
  text-align: left;
}

.assessment-gate__field {
  margin-bottom: 18px;
}

.assessment-gate__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 6px;
}

.assessment-gate__input {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.92rem;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.assessment-gate__input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-fill);
}

.assessment-gate__checkbox-wrap {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.assessment-gate__checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.assessment-gate__checkbox-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  cursor: pointer;
}

.assessment-gate__privacy {
  font-size: 0.75rem;
  color: var(--subtle);
  line-height: 1.55;
  margin-bottom: 24px;
}

.assessment-gate__submit {
  width: 100%;
  justify-content: center;
}

/* Full Results Section */
.assessment-full {
  padding: clamp(60px, 10vh, 100px) 0;
}

.assessment-full__inner {
  max-width: 680px;
  margin: 0 auto;
}

.assessment-full__card {
  background: var(--surface-solid);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.assessment-full__header {
  background: linear-gradient(165deg, #115e59 0%, #0f766e 50%, #134e4a 100%);
  padding: clamp(28px, 5vw, 40px);
  color: #fff;
}

.assessment-full__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.assessment-full__title {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.assessment-full__sections {
  padding: clamp(28px, 5vw, 40px);
}

.assessment-full__section {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.assessment-full__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.assessment-full__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 10px;
}

.assessment-full__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.72;
}

.assessment-full__cta-wrap {
  padding: 0 clamp(28px, 5vw, 40px) clamp(28px, 5vw, 40px);
  text-align: center;
}

.assessment-full__cta {
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

/* Footer variant */
.footer--assessment {
  margin-top: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .assessment-scale {
    flex-direction: column;
  }

  .assessment-scale__option {
    min-width: 100%;
    justify-content: flex-start;
  }

  .assessment-result__card,
  .assessment-gate__card {
    padding: 24px;
  }

  .assessment-full__header,
  .assessment-full__sections,
  .assessment-full__cta-wrap {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .assessment-hero__title {
    font-size: 1.65rem;
  }

  .assessment-question {
    padding: 20px 0;
  }

  .assessment-question__text {
    font-size: 0.92rem;
  }

  .assessment-scale__option {
    padding: 12px 14px;
  }
}
