:root {
  --navy-950: #061923;
  --navy-900: #081f2c;
  --navy-850: #0d2836;
  --navy-800: #123340;
  --ink: #102a38;
  --ink-soft: #294652;
  --slate: #63747b;
  --slate-dark: #485d66;
  --paper: #f3f5f0;
  --paper-warm: #f8f9f5;
  --white: #ffffff;
  --cobalt: #315cf4;
  --cobalt-dark: #2447c7;
  --cobalt-soft: #e8edff;
  --mint: #74d9b0;
  --mint-light: #c7f4df;
  --mint-pale: #e3f9ee;
  --mint-dark: #176c50;
  --line: #d6dfe1;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 8px 24px rgba(8, 31, 44, 0.07);
  --shadow-md: 0 24px 70px rgba(8, 31, 44, 0.13);
  --shadow-lg: 0 45px 100px rgba(8, 31, 44, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --header-height: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 24px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper-warm);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.dialog-open,
body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: -1px !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.eyebrow {
  margin-bottom: 20px;
  color: var(--cobalt);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--mint);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 690;
  line-height: 1;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.985);
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 15px;
}

.button-large {
  min-height: 54px;
  padding: 15px 22px;
}

.button-primary {
  color: var(--white);
  background: var(--cobalt);
  box-shadow: 0 8px 22px rgba(49, 92, 244, 0.22);
}

.button-primary:hover {
  background: var(--cobalt-dark);
  box-shadow: 0 12px 30px rgba(49, 92, 244, 0.3);
}

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(16, 42, 56, 0.18);
}

.button-ghost:hover {
  background: var(--white);
  border-color: rgba(16, 42, 56, 0.3);
}

.button-mint {
  color: var(--navy-950);
  background: var(--mint);
  box-shadow: 0 12px 34px rgba(116, 217, 176, 0.2);
}

.button-mint:hover {
  background: #8ce6c1;
  box-shadow: 0 16px 40px rgba(116, 217, 176, 0.28);
}

.button-dark-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.26);
}

.button-dark-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.4);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  background: rgba(248, 249, 245, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: height 220ms var(--ease), background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  padding-top: env(safe-area-inset-top, 0px);
}

.site-header.is-scrolled {
  height: calc(70px + env(safe-area-inset-top, 0px));
  background: rgba(248, 249, 245, 0.94);
  border-bottom-color: rgba(16, 42, 56, 0.1);
  box-shadow: 0 8px 30px rgba(8, 31, 44, 0.04);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  height: auto;
  object-fit: contain;
}

.brand-logo-light {
  width: 150px;
}

.brand-logo-dark {
  width: 194px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 34px);
  margin-left: auto;
}

.desktop-nav a,
.text-link {
  position: relative;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 170ms ease;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--cobalt);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

.desktop-nav a:hover,
.text-link:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 88px) 0 48px;
  background:
    radial-gradient(circle at 78% 25%, rgba(49, 92, 244, 0.09), transparent 29%),
    linear-gradient(180deg, #fafbf7 0%, var(--paper) 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(16, 42, 56, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 56, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.orb-one {
  top: 120px;
  right: -220px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(49, 92, 244, 0.17);
}

.orb-two {
  right: 160px;
  bottom: 70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(23, 108, 80, 0.18);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.87fr) minmax(540px, 1.13fr);
  gap: clamp(44px, 6vw, 86px);
}

.hero-copy {
  padding-bottom: 22px;
}

.cohort-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 38px;
  padding: 7px 10px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 42, 56, 0.12);
  border-radius: 999px;
  box-shadow: 0 5px 18px rgba(8, 31, 44, 0.04);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
}

.cohort-dot {
  width: 7px;
  height: 7px;
  background: var(--mint-dark);
  border: 2px solid var(--mint-light);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(116, 217, 176, 0.18);
}

.pill-arrow {
  color: var(--cobalt);
  font-size: 13px;
}

.hero-title {
  max-width: 710px;
  margin-bottom: 28px;
  color: var(--navy-900);
  font-size: clamp(54px, 5.25vw, 80px);
  font-weight: 710;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero-title span {
  position: relative;
  display: inline-block;
  color: var(--cobalt);
}

.hero-title span::after {
  position: absolute;
  right: 8px;
  bottom: -12px;
  left: 8px;
  height: 5px;
  background: var(--mint);
  border-radius: 999px;
  content: "";
  opacity: 0.72;
  transform: scaleX(0.94) rotate(-0.35deg);
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 36px;
  color: var(--slate-dark);
  font-size: clamp(19px, 1.65vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 23px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--slate);
  font-size: 15px;
  font-weight: 600;
}

.hero-note svg {
  width: 18px;
  fill: none;
  stroke: var(--mint-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 0;
  padding: 34px 0 16px;
}

.ledger-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(100%, 615px);
  margin-left: auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 42, 56, 0.13);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1200px) rotateY(-1.8deg) rotateX(0.6deg);
  transform-origin: center;
}

.ledger-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 20px;
  background: linear-gradient(180deg, #fff 0%, #fbfcfa 100%);
  border-bottom: 1px solid var(--line);
}

.ledger-topbar > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ledger-kicker {
  color: var(--slate);
  font-size: 10.5px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ledger-topbar strong {
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--slate);
  font-size: 11px;
  font-weight: 650;
}

.window-status span {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(116, 217, 176, 0.18);
}

.ledger-body {
  padding: 18px 20px 20px;
}

.ledger-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px 8px 50px;
  color: #86949a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ledger-row {
  position: relative;
  display: grid;
  min-height: 76px;
  align-items: center;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 11px;
  margin-bottom: 7px;
  padding: 12px 13px;
  background: #f8faf8;
  border: 1px solid #e4e9e8;
  border-radius: 12px;
}

.line-number {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--slate);
  background: var(--white);
  border: 1px solid #dfe5e4;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 750;
}

.line-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 1px;
}

.line-copy strong {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -0.015em;
}

.line-copy span {
  overflow: hidden;
  color: var(--slate);
  font-size: 11.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-chip {
  min-width: 58px;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
  text-align: center;
}

.line-chip.neutral {
  color: var(--slate-dark);
  background: #edf1f1;
}

.line-chip.blue {
  color: var(--cobalt-dark);
  background: var(--cobalt-soft);
}

.line-chip.mint {
  color: var(--mint-dark);
  background: var(--mint-pale);
}

.crosscomp-row {
  overflow: hidden;
  background: linear-gradient(100deg, #f5fff9 0%, #edf8ff 100%);
  border-color: rgba(49, 92, 244, 0.36);
  box-shadow: 0 9px 28px rgba(49, 92, 244, 0.08), inset 3px 0 0 var(--mint);
  animation: line-enter 900ms 500ms var(--ease) both;
}

.crosscomp-row .line-number {
  color: var(--white);
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.row-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.75) 48%, transparent 65%);
  transform: translateX(-120%);
  animation: row-sheen 1100ms 1.1s ease forwards;
  pointer-events: none;
}

.mix-card {
  margin-top: 15px;
  padding: 17px;
  background: var(--navy-900);
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(8, 31, 44, 0.14);
}

.mix-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mix-heading > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mix-heading > div span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mix-heading > div strong {
  color: var(--white);
  font-size: 14.5px;
  letter-spacing: -0.01em;
}

.approved-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  color: var(--mint-light);
  background: rgba(116, 217, 176, 0.1);
  border: 1px solid rgba(116, 217, 176, 0.2);
  border-radius: 99px;
  font-size: 10.5px;
  font-weight: 700;
}

.approved-tag svg {
  width: 11px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.package-line-grid {
  display: grid;
  margin-top: 15px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.package-line {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  gap: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
}

.package-line > span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  font-size: 9.5px;
  font-weight: 800;
}

.package-line > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.package-line strong {
  color: var(--white);
  font-size: 11.5px;
  font-weight: 700;
}

.package-line small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9.5px;
  font-weight: 560;
}

.package-line-company {
  background: rgba(49, 92, 244, 0.14);
  border-color: rgba(89, 124, 255, 0.28);
}

.package-line-company > span {
  color: var(--white);
  background: var(--cobalt);
  border-color: var(--cobalt);
}

.package-line-crosscomp {
  background: rgba(116, 217, 176, 0.1);
  border-color: rgba(116, 217, 176, 0.24);
}

.package-line-crosscomp > span {
  color: var(--navy-950);
  background: var(--mint);
  border-color: var(--mint);
}

.ledger-foot {
  padding: 12px 20px;
  color: #839096;
  background: #f4f6f4;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  font-weight: 560;
  text-align: center;
}

.trust-ribbon {
  position: relative;
  z-index: 3;
  display: grid;
  margin-top: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 42, 56, 0.12);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(4, 1fr);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.trust-item {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 11px;
  padding: 18px 20px;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.35;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cobalt);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.trust-item:nth-child(2) svg {
  stroke: var(--mint-dark);
}

.trust-item strong {
  color: var(--ink);
}

.section-dark,
.section-light,
.section-paper,
.section-navy,
.outcomes,
.faq {
  padding: clamp(110px, 9vw, 130px) 0;
}

.section-heading h2,
.faq-intro h2,
.approval-copy h2,
.cta-inner h2 {
  margin-bottom: 0;
  font-size: clamp(42px, calc(32px + 3vw), 68px);
  font-weight: 680;
  letter-spacing: -0.058em;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  margin-bottom: 70px;
}

.split-heading p:last-child {
  max-width: 500px;
  margin: 0 0 8px auto;
  font-size: 18px;
  line-height: 1.6;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 17% 7%, rgba(49, 92, 244, 0.2), transparent 27%),
    radial-gradient(circle at 90% 78%, rgba(116, 217, 176, 0.09), transparent 29%),
    var(--navy-950);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  pointer-events: none;
}

.section-dark .container {
  position: relative;
  z-index: 2;
}

.section-dark .split-heading p:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 14px;
}

.problem-card {
  min-height: 300px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  transition: transform 220ms var(--ease), background-color 220ms ease, border-color 220ms ease;
}

.problem-card:hover {
  background: rgba(255, 255, 255, 0.065);
  border-color: rgba(116, 217, 176, 0.25);
  transform: translateY(-4px);
}

.problem-card-featured {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: space-between;
  grid-row: span 2;
}

.problem-card:nth-child(4) {
  grid-column: span 2;
}

.problem-card:nth-child(2),
.problem-card:nth-child(3),
.problem-card:nth-child(4) {
  min-height: 220px;
}

.card-index {
  display: block;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.problem-card h3 {
  max-width: 360px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(23px, 2.2vw, 31px);
  font-weight: 610;
  letter-spacing: -0.04em;
}

.problem-card p {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16.5px;
  line-height: 1.55;
}

.founder-empathy {
  display: grid;
  align-items: center;
  margin: 22px 0 0;
  padding: 25px 28px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  grid-template-columns: 160px minmax(0, 1fr) 230px;
  gap: 28px;
}

.founder-empathy > span {
  color: var(--mint);
  font-size: 10.5px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-empathy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16.5px;
  font-weight: 530;
  line-height: 1.55;
}

.founder-empathy footer {
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.45);
  border-left: 1px solid var(--line-dark);
  font-size: 13.5px;
  font-style: normal;
  line-height: 1.5;
}

.problem-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--mint);
  background: rgba(116, 217, 176, 0.07);
  border: 1px solid rgba(116, 217, 176, 0.16);
  border-radius: 12px;
}

.problem-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.concentration-visual {
  position: relative;
  width: 270px;
  height: 240px;
  margin: -5px auto 20px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-a { width: 90px; height: 90px; }
.orbit-b { width: 165px; height: 165px; }
.orbit-c { width: 240px; height: 240px; }

.concentration-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--navy-950);
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(116, 217, 176, 0.16);
  transform: translate(-50%, -50%);
}

.concentration-core span {
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1;
}

.concentration-core small {
  font-size: 10px;
  font-weight: 650;
  opacity: 0.7;
}

.risk-label {
  position: absolute;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--navy-850);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 650;
}

.risk-one { top: 10px; left: 92px; }
.risk-two { top: 128px; right: 0; }
.risk-three { bottom: 10px; left: 14px; }

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

.centered-heading {
  max-width: 850px;
  margin: 0 auto 74px;
  text-align: center;
}

.centered-heading h2 {
  margin-bottom: 24px;
}

.centered-heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: var(--slate-dark);
  font-size: 19px;
}

.comparison-shell {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.comparison-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 34px;
  background: #fbfcfa;
  border-bottom: 1px solid var(--line);
}

.comparison-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--slate);
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comparison-header h3 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 630;
}

.illustrative-badge {
  padding: 7px 10px;
  color: var(--slate-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 650;
  white-space: nowrap;
}

.comparison-row {
  display: grid;
  align-items: center;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 55px;
  padding: 45px 34px;
}

.comparison-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.comparison-label span {
  color: var(--slate);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-label strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 640;
}

.bar-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--slate-dark);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  font-weight: 610;
}

.bar-labels strong {
  color: var(--ink);
}

.package-bar {
  display: flex;
  overflow: hidden;
  height: 44px;
  background: #edf1f2;
  border-radius: 9px;
}

.package-bar > span {
  display: block;
  height: 100%;
}

.bar-company-full {
  width: 100%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,.18)),
    var(--navy-800);
}

.bar-company-part {
  width: 100%;
  background: var(--cobalt);
  border-radius: 9px;
}

.bar-crosscomp-part {
  width: 100%;
  min-width: 0;
  background: var(--mint);
  border-radius: 99px;
}

.segmented-bar {
  display: grid;
  overflow: visible;
  height: 46px;
  grid-template-rows: 28px 12px;
  gap: 6px;
  background: transparent;
}

.split-labels span:last-child {
  color: var(--mint-dark);
}

.comparison-arrow {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  padding: 0 34px;
}

.comparison-arrow span {
  height: 1px;
  background: var(--line);
}

.comparison-arrow svg {
  width: 22px;
  fill: none;
  stroke: var(--cobalt);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.crosscomp-package {
  background: linear-gradient(100deg, rgba(49, 92, 244, 0.025), rgba(116, 217, 176, 0.065));
}

.comparison-footnotes {
  display: grid;
  padding: 20px 34px;
  background: #f4f7f5;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.comparison-footnotes span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-dark);
  font-size: 13px;
  font-weight: 620;
}

.comparison-footnotes svg {
  width: 16px;
  fill: none;
  stroke: var(--mint-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hard-hire-example {
  display: grid;
  align-items: center;
  margin-top: 22px;
  padding: 38px;
  background:
    radial-gradient(circle at 5% 0%, rgba(49, 92, 244, 0.1), transparent 38%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(45px, 7vw, 90px);
}

.example-kicker {
  display: block;
  margin-bottom: 22px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.example-copy h3 {
  max-width: 560px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(30px, 3.5vw, 45px);
  font-weight: 630;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.example-copy p {
  max-width: 590px;
  margin: 0;
  color: var(--slate-dark);
  font-size: 16px;
  line-height: 1.65;
}

.example-choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.example-choice {
  display: grid;
  min-height: 72px;
  align-items: center;
  padding: 13px 16px;
  border-radius: 10px;
  grid-template-columns: 115px 1fr 145px;
  gap: 12px;
}

.example-choice > span {
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.example-choice strong {
  font-size: 15.5px;
  letter-spacing: -0.015em;
}

.example-choice small {
  font-size: 11.5px;
  font-weight: 600;
  text-align: right;
}

.muted-choice {
  color: var(--slate);
  background: #f3f5f3;
  border: 1px solid #e0e6e6;
}

.muted-choice strong {
  color: var(--ink-soft);
}

.crosscomp-choice {
  color: var(--mint-light);
  background: var(--navy-900);
  border: 1px solid var(--navy-900);
  box-shadow: 0 14px 30px rgba(8, 31, 44, 0.14);
}

.crosscomp-choice strong {
  color: var(--white);
}

.crosscomp-choice small {
  color: rgba(255, 255, 255, 0.58);
}

.definition-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.definition-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 38px;
  border-radius: var(--radius-md);
}

.definition-card::after {
  position: absolute;
  right: -65px;
  bottom: -95px;
  width: 240px;
  height: 240px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.1;
}

.definition-is {
  color: var(--ink);
  background: var(--mint-pale);
  border: 1px solid rgba(23, 108, 80, 0.13);
}

.definition-not {
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid var(--navy-900);
}

.definition-label {
  display: inline-flex;
  margin-bottom: 55px;
  padding: 6px 9px;
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(23, 108, 80, 0.15);
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.definition-not .definition-label {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.definition-card h3 {
  position: relative;
  z-index: 1;
  max-width: 450px;
  margin-bottom: 35px;
  color: inherit;
  font-size: clamp(29px, 3.2vw, 42px);
  font-weight: 620;
}

.check-list,
.x-list {
  position: relative;
  z-index: 1;
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.check-list li,
.x-list li {
  padding: 7px 11px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 620;
}

.check-list li {
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(23, 108, 80, 0.12);
}

.x-list li {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.use-cases {
  display: grid;
  align-items: center;
  margin-top: 22px;
  padding: 25px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  grid-template-columns: 220px 1fr;
}

.use-case-intro {
  display: flex;
  flex-direction: column;
}

.use-case-intro span {
  color: var(--slate);
  font-size: 10.5px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.use-case-intro strong {
  color: var(--ink);
  font-size: 16.5px;
}

.use-case-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.use-case-list span {
  padding: 7px 11px;
  color: var(--slate-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 630;
}

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

.process-heading {
  align-items: start;
}

.process-board {
  position: relative;
  display: grid;
  padding: 36px 24px 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(5, 1fr);
}

.process-line {
  position: absolute;
  top: 61px;
  right: calc(10% + 24px);
  left: calc(10% + 24px);
  height: 2px;
  overflow: hidden;
  background: #dce3e4;
}

.process-line span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--cobalt), var(--mint));
  transform-origin: left;
}

.process-step {
  position: relative;
  z-index: 2;
  padding: 0 17px;
}

.process-step + .process-step {
  border-left: 1px solid rgba(16, 42, 56, 0.08);
}

.step-node {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin: 0 auto 28px;
  color: var(--slate-dark);
  background: var(--white);
  border: 2px solid #d8e0e1;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 760;
}

.process-step-key .step-node {
  color: var(--white);
  background: var(--cobalt);
  border-color: var(--cobalt);
  box-shadow: 0 0 0 7px rgba(49, 92, 244, 0.1);
}

.step-copy h3 {
  min-height: 46px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20.5px;
  font-weight: 640;
  letter-spacing: -0.035em;
}

.step-copy p {
  min-height: 110px;
  margin-bottom: 18px;
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.55;
}

.step-owner {
  display: inline-flex;
  padding: 5px 8px;
  color: var(--slate-dark);
  background: #edf1ef;
  border-radius: 6px;
  font-size: 10.5px;
  font-weight: 680;
}

.process-step-key .step-owner {
  color: var(--cobalt-dark);
  background: var(--cobalt-soft);
}

.process-note {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 800px;
  margin: 22px auto 0;
  padding: 14px 18px;
  color: var(--slate-dark);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.process-note svg {
  width: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--cobalt);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.process-note p {
  margin: 0;
  font-size: 13.5px;
}

.process-note strong {
  color: var(--ink);
}

.section-navy {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.section-navy::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 74px 74px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 75%);
  -webkit-mask-image: linear-gradient(to right, black, transparent 75%);
}

.approval-glow {
  position: absolute;
  bottom: -250px;
  left: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(49, 92, 244, 0.22), transparent 67%);
  pointer-events: none;
}

.approval-layout {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 9vw, 125px);
}

.document-visual {
  position: relative;
  min-height: 590px;
}

.document {
  position: absolute;
  width: 390px;
  height: 505px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.document-back {
  top: 45px;
  left: 48px;
  opacity: 0.2;
  transform: rotate(8deg);
}

.document-mid {
  top: 32px;
  left: 28px;
  color: var(--ink);
  background: #e6eaff;
  transform: rotate(3.6deg);
}

.document-mid strong {
  display: block;
  margin: 70px 0 30px;
  font-size: 26px;
}

.doc-chip {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--cobalt);
  border-radius: 7px;
  font-size: 11px;
  font-weight: 750;
}

.document-rule {
  width: 100%;
  height: 7px;
  margin-bottom: 12px;
  background: currentColor;
  border-radius: 4px;
  opacity: 0.1;
}

.document-rule.short { width: 65%; }

.document-front {
  top: 70px;
  left: 0;
  color: var(--ink);
  transform: rotate(-2.2deg);
}

.document-brand {
  display: block;
}

.document-brand img {
  display: block;
  width: 120px;
  height: auto;
}

.doc-type {
  display: block;
  margin-top: 55px;
  color: var(--cobalt);
  font-size: 10.5px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.document-front h3 {
  margin: 12px 0 31px;
  color: var(--ink);
  font-size: 31px;
  font-weight: 660;
  letter-spacing: -0.05em;
}

.doc-meta-grid {
  display: grid;
  align-items: center;
  margin-bottom: 30px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 60px 1fr;
  gap: 7px;
  font-size: 10.5px;
}

.doc-meta-grid span { color: var(--slate); }
.doc-meta-grid strong { color: var(--ink); font-weight: 680; }
.doc-meta-grid .status-ready { color: var(--mint-dark); }

.signature-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  color: var(--slate);
  font-size: 10.5px;
}

.signature-row i {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.document-stamp {
  position: absolute;
  right: 25px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: var(--mint-dark);
  background: var(--mint-pale);
  border: 1px solid rgba(23, 108, 80, 0.18);
  border-radius: 7px;
  font-size: 10.5px;
  font-weight: 720;
}

.document-stamp svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.approval-copy h2 {
  max-width: 500px;
  margin-bottom: 26px;
  color: var(--white);
}

.approval-intro {
  max-width: 590px;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1.6;
}

.approval-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 34px;
  border-top: 1px solid var(--line-dark);
}

.approval-list article {
  display: grid;
  min-height: 126px;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.approval-list article > span {
  padding-top: 3px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.approval-list h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
  font-weight: 610;
  letter-spacing: -0.025em;
}

.approval-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13.5px;
  line-height: 1.5;
}

.outcomes-heading {
  max-width: 800px;
}

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

.outcome-card {
  min-height: 460px;
  padding: 38px;
  border-radius: var(--radius-lg);
}

.founder-card {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 12%, rgba(49, 92, 244, 0.36), transparent 28%),
    var(--navy-900);
}

.talent-card {
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.55), transparent 30%),
    var(--mint-pale);
  border: 1px solid rgba(23, 108, 80, 0.13);
}

.outcome-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 105px;
}

.outcome-topline span {
  font-size: 11.5px;
  font-weight: 730;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.outcome-topline svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
  opacity: 0.65;
}

.outcome-card h3 {
  max-width: 500px;
  margin-bottom: 35px;
  color: inherit;
  font-size: clamp(30px, 3vw, 41px);
  font-weight: 620;
}

.outcome-card ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.outcome-card li {
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 620;
}

.founder-card li {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.talent-card li {
  color: var(--mint-dark);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(23, 108, 80, 0.12);
}

.plain-truth {
  display: grid;
  align-items: center;
  margin-top: 22px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  grid-template-columns: 180px 1fr;
}

.truth-label {
  color: var(--cobalt);
  font-size: 11.5px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plain-truth p {
  margin: 0;
  color: var(--slate-dark);
  font-size: 16px;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(70px, 9vw, 130px);
}

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

.faq-intro h2 {
  margin-bottom: 25px;
  color: var(--ink);
  font-size: clamp(42px, calc(32px + 3vw), 59px);
}

.faq-intro > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--slate-dark);
  font-size: 17.5px;
}

.text-arrow-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--cobalt);
  font-size: 15.5px;
  font-weight: 680;
}

.text-arrow-link span {
  transition: transform 180ms var(--ease);
}

.text-arrow-link:hover span {
  transform: translate(2px, -2px);
}

.faq-list {
  border-top: 1px solid #c8d2d5;
}

.faq-list details {
  border-bottom: 1px solid #c8d2d5;
}

.faq-list summary {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 630;
  letter-spacing: -0.025em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color 180ms ease, transform 240ms var(--ease);
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--cobalt);
  border-radius: 2px;
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i {
  background: var(--cobalt);
  border-color: var(--cobalt);
  transform: rotate(45deg);
}

.faq-list details[open] summary i::before,
.faq-list details[open] summary i::after {
  background: var(--white);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 640px;
  margin: -6px 55px 31px 4px;
  color: var(--slate-dark);
  font-size: 16.5px;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 9vw, 130px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(49, 92, 244, 0.37), transparent 30%),
    radial-gradient(circle at 90% 100%, rgba(116, 217, 176, 0.16), transparent 30%),
    var(--navy-950);
}

.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 890px;
  text-align: center;
}

.cta-mark {
  display: flex;
  width: 115px;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto 42px;
}

.cta-mark span {
  display: block;
  height: 3px;
  border-radius: 3px;
}

.cta-mark span:nth-child(1) { width: 78%; background: rgba(255,255,255,.7); }
.cta-mark span:nth-child(2) { width: 100%; background: var(--cobalt); }
.cta-mark span:nth-child(3) { width: 88%; margin-left: auto; background: var(--mint); }

.cta-inner h2 {
  margin-bottom: 27px;
  color: var(--white);
  font-size: clamp(46px, calc(34px + 4vw), 78px);
}

.cta-inner > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 37px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 19px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  color: var(--white);
  background: #041533;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-top: 76px;
  padding-bottom: 70px;
}

.footer-brand-block > p {
  max-width: 280px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15.5px;
}

.footer-links {
  display: grid;
  grid-template-columns: 120px minmax(210px, 1fr) 90px;
  gap: 48px;
}

.footer-links > div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-links > div > span {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10.5px;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14.5px;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.access-dialog {
  width: min(calc(100% - 32px), 790px);
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.access-dialog::backdrop {
  background: rgba(3, 18, 26, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
  overflow-y: auto;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  padding: 40px;
  background: var(--paper-warm);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
}

.dialog-close {
  position: sticky;
  z-index: 2;
  top: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  margin-bottom: -44px;
  margin-left: auto;
  transition: transform 180ms var(--ease), background-color 180ms ease;
}

.dialog-close:hover {
  background: var(--paper);
  transform: rotate(4deg);
}

.dialog-close svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.dialog-header {
  max-width: 620px;
  margin-bottom: 30px;
  padding-right: 55px;
}

.dialog-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--cobalt);
  font-size: 11.5px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dialog-header h2 {
  margin-bottom: 15px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 47px);
  font-weight: 670;
  letter-spacing: -0.055em;
}

.dialog-header p {
  margin: 0;
  color: var(--slate-dark);
  font-size: 15.5px;
}

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

.access-form label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.access-form label > span {
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 680;
}

.access-form input,
.access-form select,
.access-form textarea {
  min-width: 0;
  width: 100%;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd6d8;
  border-radius: 9px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.access-form input,
.access-form select {
  height: 48px;
  padding: 0 13px;
}

.access-form textarea {
  min-height: 110px;
  padding: 12px 13px;
  resize: vertical;
}

.access-form input::placeholder,
.access-form textarea::placeholder {
  color: #6f7f85;
}

.access-form input:focus,
.access-form select:focus,
.access-form textarea:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(49, 92, 244, 0.1);
}

.form-wide {
  grid-column: 1 / -1;
}

.button-submit {
  width: 100%;
  margin-top: 20px;
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

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

.form-note {
  margin: 10px 0 0;
  color: var(--slate);
  font-size: 11px;
  text-align: center;
}

.form-note a {
  color: var(--cobalt-dark);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.legal-site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(248, 249, 245, 0.96);
}

.legal-site-header .header-inner {
  position: static;
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  padding: 150px 0 62px;
  background:
    radial-gradient(circle at 80% 10%, rgba(49, 92, 244, 0.1), transparent 34%),
    linear-gradient(180deg, #f8f9f5 0%, #f3f6f5 100%);
  border-bottom: 1px solid var(--line);
}

.legal-hero .container,
.legal-content {
  max-width: 880px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 16px 0 18px;
  font-size: clamp(46px, 8vw, 76px);
}

.legal-hero > .container > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--slate-dark);
  font-size: 18px;
}

.legal-content {
  padding-top: 74px;
  padding-bottom: 110px;
}

.legal-content section + section {
  margin-top: 46px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 38px);
}

.legal-content h3 {
  margin: 25px 0 10px;
  font-size: 21px;
}

.legal-content p,
.legal-content li {
  color: var(--slate-dark);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content p + p {
  margin-top: 16px;
}

.legal-content ul {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding-left: 24px;
}

.legal-content a {
  color: var(--cobalt-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  color: var(--slate);
  font-size: 14px;
}

@media (max-width: 720px) {
  .legal-hero {
    padding: 120px 0 45px;
  }

  .legal-content {
    padding-top: 54px;
    padding-bottom: 80px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 16px;
  }
}

.form-error {
  margin: 12px 0 0;
  padding: 11px 13px;
  color: #8a2f2f;
  background: #fff2f0;
  border: 1px solid rgba(138, 47, 47, 0.2);
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.45;
  text-align: left;
}

.form-success {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 0 auto 22px;
  color: var(--mint-dark);
  background: var(--mint-pale);
  border: 1px solid rgba(23, 108, 80, 0.13);
  border-radius: 50%;
}

.success-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.form-success h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 660;
}

.form-success p {
  max-width: 480px;
  margin: 0 auto 25px;
  color: var(--slate-dark);
  font-size: 15.5px;
}


@keyframes line-enter {
  from { opacity: 0; transform: translateY(-18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes row-sheen {
  to { transform: translateX(120%); }
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1248px) {
  .container {
    width: auto;
    max-width: var(--container);
    margin-left: max(24px, env(safe-area-inset-left, 0px));
    margin-right: max(24px, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 1150px) {
  .desktop-nav {
    gap: 18px;
  }

  .header-brief {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(55px, 6vw, 72px);
  }

  .approval-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
  }

  .document {
    width: 350px;
    height: 470px;
  }

  .document-front h3 {
    font-size: 28px;
  }

}

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

  .site-header.is-scrolled {
    height: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  }

  .section-dark,
  .section-light,
  .section-paper,
  .section-navy,
  .outcomes,
  .faq,
  .final-cta {
    padding: clamp(84px, 11vw, 108px) 0;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(16, 42, 56, 0.14);
    border-radius: 9px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 220ms var(--ease);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 999;
    top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
    right: 0;
    left: 0;
    display: flex;
    height: calc(100vh - var(--header-height) - env(safe-area-inset-top, 0px));
    height: calc(100dvh - var(--header-height) - env(safe-area-inset-top, 0px));
    align-items: stretch;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 24px max(24px, env(safe-area-inset-right, 0px)) calc(32px + env(safe-area-inset-bottom, 0px)) max(24px, env(safe-area-inset-left, 0px));
    flex-direction: column;
    gap: 0;
    background:
      radial-gradient(circle at 100% 0%, rgba(49, 92, 244, 0.08), transparent 38%),
      #f8f9f5;
    border-top: 1px solid var(--line);
    box-shadow: 0 22px 45px rgba(8, 31, 44, 0.14);
    scrollbar-color: rgba(49, 92, 244, 0.4) transparent;
    scrollbar-width: thin;
    animation: mobile-menu-enter 220ms var(--ease) both;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu::-webkit-scrollbar {
    width: 5px;
  }

  .mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(49, 92, 244, 0.4);
    border-radius: 999px;
  }

  .mobile-menu-intro {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    padding: 0 2px 14px;
    border-bottom: 1px solid rgba(16, 42, 56, 0.1);
  }

  .mobile-menu-intro span {
    color: var(--cobalt);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-menu-intro small {
    color: var(--slate);
    font-size: 12px;
    font-weight: 560;
  }

  .mobile-menu a {
    display: grid;
    min-height: 76px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 34px;
    grid-template-rows: auto auto;
    column-gap: 16px;
    padding: 14px 2px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu a > span {
    align-self: end;
    font-size: 22px;
    font-weight: 680;
    letter-spacing: -0.03em;
    line-height: 1.15;
  }

  .mobile-menu a > small {
    align-self: start;
    margin-top: 4px;
    color: var(--slate);
    font-size: 13px;
    font-weight: 520;
    line-height: 1.35;
  }

  .mobile-menu a > i {
    display: grid;
    width: 32px;
    height: 32px;
    align-self: center;
    align-items: center;
    justify-content: center;
    grid-column: 2;
    grid-row: 1 / span 2;
    color: var(--cobalt);
    background: rgba(49, 92, 244, 0.08);
    border-radius: 50%;
    font-size: 14px;
    font-style: normal;
  }

  .mobile-menu .button {
    min-height: 56px;
    flex: 0 0 auto;
    margin-top: 22px;
    color: var(--white);
    font-size: 16px;
  }

  body.menu-open .site-header {
    background: #f8f9f5;
    border-bottom-color: rgba(16, 42, 56, 0.1);
    box-shadow: none;
  }

  .access-dialog {
    width: min(790px, calc(100% - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) - 16px));
  }

  .hero {
    padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 65px);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-title {
    max-width: 760px;
    font-size: clamp(56px, 9vw, 80px);
  }

  .hero-intro {
    max-width: 680px;
  }

  .hero-visual {
    width: min(100%, 700px);
    min-height: 0;
    margin: 0 auto;
  }

  .ledger-window {
    width: min(90%, 610px);
    margin-inline: auto;
  }

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

  .trust-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-heading p:last-child {
    margin: 0;
  }

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

  .founder-empathy {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .founder-empathy footer {
    padding: 18px 0 0 168px;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
    grid-column: 1 / -1;
  }

  .hard-hire-example {
    grid-template-columns: 1fr;
  }

  .problem-card-featured {
    grid-row: span 2;
  }

  .problem-card:nth-child(4) {
    grid-column: 2;
  }

  .process-board {
    padding: 10px 28px;
    grid-template-columns: 1fr;
  }

  .process-line {
    top: 55px;
    bottom: 55px;
    left: 51px;
    width: 2px;
    height: auto;
  }

  .process-line span {
    width: 100%;
    height: 72%;
    background: linear-gradient(180deg, var(--cobalt), var(--mint));
  }

  .process-step {
    display: grid;
    min-height: 170px;
    align-items: start;
    grid-template-columns: 48px 1fr;
    gap: 28px;
    padding: 26px 0;
  }

  .process-step + .process-step {
    border-top: 1px solid rgba(16, 42, 56, 0.08);
    border-left: 0;
  }

  .step-node {
    margin: 0;
  }

  .step-copy h3,
  .step-copy p {
    min-height: auto;
  }

  .step-copy p {
    max-width: 580px;
    margin-bottom: 13px;
  }

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

  .document-visual {
    width: min(100%, 600px);
    min-height: 590px;
    margin: 0 auto;
  }

  .document {
    width: clamp(340px, 45vw, 390px);
    height: 505px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
    max-width: 650px;
  }
}

@media (max-width: 720px) {
  .container {
    width: auto;
    max-width: var(--container);
    margin-left: max(16px, env(safe-area-inset-left, 0px));
    margin-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-dark,
  .section-light,
  .section-paper,
  .section-navy,
  .outcomes,
  .faq,
  .final-cta {
    padding: clamp(84px, 11vw, 108px) 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px) + 44px);
  }

  .cohort-pill {
    margin-bottom: 30px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 16px;
  }

  .hero-title {
    margin-bottom: 23px;
    font-size: clamp(46px, 12.5vw, 64px);
  }

  .hero-title span::after {
    height: 4px;
    bottom: -9px;
  }

  .hero-intro {
    font-size: 19px;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-note svg {
    margin-top: 3px;
  }

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

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

  .hero-visual {
    min-height: 0;
    padding: 18px 0 10px;
  }

  .ledger-window {
    width: 100%;
    border-radius: 15px;
    transform: none;
  }

  .ledger-topbar {
    padding: 18px;
  }

  .ledger-body {
    padding: 14px;
  }

  .ledger-row {
    min-height: 74px;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
  }

  .line-copy span {
    max-width: none;
  }

  .line-chip {
    min-width: 54px;
  }

  .mix-heading {
    align-items: flex-start;
  }

  .trust-ribbon {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item,
  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading h2,
  .faq-intro h2,
  .approval-copy h2 {
    font-size: clamp(42px, calc(32px + 3vw), 68px);
  }

  .split-heading,
  .centered-heading {
    margin-bottom: 48px;
  }

  .split-heading p:last-child,
  .centered-heading > p:last-child {
    font-size: 18px;
  }

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

  .problem-card-featured,
  .problem-card:nth-child(4) {
    grid-row: auto;
    grid-column: auto;
  }

  .problem-card-featured {
    min-height: 490px;
  }

  .problem-card:nth-child(2),
  .problem-card:nth-child(3),
  .problem-card:nth-child(4) {
    min-height: 250px;
  }

  .founder-empathy {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .founder-empathy footer {
    padding: 16px 0 0;
    grid-column: auto;
  }

  .comparison-header {
    align-items: flex-start;
    padding: 23px;
    flex-direction: column;
  }

  .comparison-header h3 {
    font-size: 23px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 34px 23px;
  }

  .comparison-arrow {
    padding: 0 23px;
  }

  .bar-labels.split-labels {
    align-items: flex-start;
  }

  .bar-labels.split-labels span {
    display: flex;
    flex-direction: column;
  }

  .bar-crosscomp-part {
    min-width: 0;
  }

  .comparison-footnotes {
    padding: 18px 23px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hard-hire-example {
    padding: 28px 23px;
  }

  .example-choice {
    min-height: 80px;
    grid-template-columns: 1fr auto;
  }

  .example-choice > span {
    grid-column: 1 / -1;
  }

  .example-choice small {
    max-width: 145px;
  }

  .definition-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .definition-card,
  .outcome-card {
    min-height: 400px;
    padding: 30px;
  }

  .use-cases,
  .plain-truth {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .use-case-list {
    justify-content: flex-start;
  }

  .process-board {
    padding: 6px 20px;
  }

  .process-line {
    left: 43px;
  }

  .process-step {
    min-height: 180px;
    grid-template-columns: 44px 1fr;
    gap: 20px;
  }

  .step-node {
    width: 44px;
    height: 44px;
  }

  .step-copy p {
    font-size: 15.5px;
  }

  .process-note {
    align-items: flex-start;
  }

  .document-visual {
    min-height: 530px;
  }

  .document {
    width: min(84vw, 340px);
    height: 455px;
    padding: 26px;
  }

  .document-back { left: clamp(10px, 4vw, 28px); }
  .document-mid { left: clamp(6px, 2vw, 15px); }
  .document-front { top: 55px; left: 0; }

  .doc-type { margin-top: 40px; }
  .document-front h3 { font-size: 26px; }

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

  .approval-list p {
    font-size: 15px;
  }

  .outcome-topline {
    margin-bottom: 80px;
  }

  .plain-truth {
    padding: 23px;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 19px;
  }

  .cta-inner h2 {
    font-size: clamp(46px, calc(34px + 4vw), 78px);
  }

  .cta-inner > p:not(.eyebrow) {
    font-size: 18px;
  }

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

  .footer-top {
    flex-direction: column;
  }

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

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

  .dialog-shell {
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    padding: 30px max(20px, env(safe-area-inset-right, 0px)) calc(24px + env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 0px));
  }

  .access-dialog {
    width: calc(100% - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) - 16px);
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
    margin-top: max(8px, env(safe-area-inset-top, 0px));
    margin-bottom: max(8px, env(safe-area-inset-bottom, 0px));
  }

  .dialog-close {
    top: 0;
  }

  .dialog-header {
    padding-right: 40px;
  }

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

  .form-wide {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .package-line-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .package-line {
    min-height: 50px;
    padding: 9px 10px;
  }

  .package-line strong {
    overflow-wrap: anywhere;
    font-size: 12.5px;
  }

  .package-line small {
    font-size: 10.5px;
  }
}

@media (max-width: 430px) {
  .brand-logo-light { width: 140px; }
  .line-copy span {
    max-width: none;
    overflow: visible;
    line-height: 1.3;
    text-overflow: clip;
    white-space: normal;
  }
  .line-chip { min-width: 50px; padding-inline: 7px; }
  .approved-tag { display: none; }
  .mix-card { padding: 14px; }
  .comparison-header h3 { font-size: 22px; }
  .definition-card, .outcome-card { padding: 26px; }
}

@media (max-width: 360px) {
  .container {
    margin-left: max(14px, env(safe-area-inset-left, 0px));
    margin-right: max(14px, env(safe-area-inset-right, 0px));
  }

  .ledger-label-row { display: none; }
  .ledger-body { padding: 11px; }
  .ledger-row { grid-template-columns: 26px minmax(0, 1fr) auto; gap: 7px; }
  .line-copy span { font-size: 10.5px; }
  .line-chip { min-width: 46px; padding-inline: 6px; }
  .hero-visual { padding-bottom: 8px; }
}

@media (max-width: 980px) and (max-height: 560px) and (orientation: landscape) {
  .mobile-menu {
    padding-top: 10px;
    padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-menu-intro {
    margin-bottom: 2px;
    padding-bottom: 8px;
  }

  .mobile-menu-intro small,
  .mobile-menu a > small {
    display: none;
  }

  .mobile-menu a {
    min-height: 46px;
    grid-template-rows: 1fr;
    padding-block: 10px;
  }

  .mobile-menu a > span {
    align-self: center;
    font-size: 18px;
  }

  .mobile-menu a > i {
    grid-row: 1;
  }

  .mobile-menu .button {
    min-height: 44px;
    margin-top: 12px;
  }
}

@keyframes mobile-menu-enter {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none) {
  .button:hover,
  .problem-card:hover,
  .dialog-close:hover {
    transform: none;
  }

  .text-arrow-link:hover span {
    transform: none;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
