:root {
  --ink: #0f1113;
  --ink-soft: #24282c;
  --paper: #f1f0ea;
  --white: #ffffff;
  --muted: #686d71;
  --line: rgba(15, 17, 19, 0.18);
  --light-line: rgba(255, 255, 255, 0.22);
  --signal: #d8ff52;
  --signal-dark: #accd2f;
  --max: 1440px;
  --gutter: clamp(22px, 4.5vw, 76px);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  overflow-x: clip;
}

body,
a,
button,
summary {
  -webkit-font-smoothing: antialiased;
}

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

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 9999px;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 12px var(--gutter);
  color: var(--ink);
  background: rgba(241, 240, 234, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-height: 44px;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.wordmark span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 50%;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.wordmark b {
  font-weight: 600;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
  font-size: 13px;
  font-weight: 600;
}

.site-header nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 14px 28px;
  border: 2px solid var(--ink);
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.pill:hover {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.pill-small {
  justify-self: end;
  min-height: 44px;
  padding: 9px 22px;
}

.pill-light {
  color: var(--ink);
  background: var(--signal);
  border-color: var(--signal);
}

.pill-light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  color: var(--white);
  background:
    linear-gradient(90deg, transparent 0 74%, rgba(216, 255, 82, 0.07) 74% 74.15%, transparent 74.15%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 12.5%),
    var(--ink);
  border-bottom: 1px solid var(--light-line);
}

.hero::before {
  position: absolute;
  top: 6%;
  right: -10vw;
  width: min(46vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 255, 82, 0.45);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  top: 16%;
  right: -4vw;
  width: min(30vw, 460px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 152px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 10vh, 130px) var(--gutter);
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(24px, 4vw, 52px);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.eyebrow i,
.form-bar i {
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
}

.hero h1,
.manifesto h2,
.section-intro h2,
.difference h2,
.process h2,
.guardrails h2,
.faq h2,
.access h2 {
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 1120px;
  font-size: clamp(62px, 9.2vw, 150px);
}

.hero h1 em,
.manifesto h2 em,
.section-intro h2 em,
.difference h2 em {
  color: var(--signal);
  font-style: normal;
}

.hero-lead {
  max-width: 690px;
  margin-top: clamp(34px, 5vw, 68px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.4vw, 21px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.signal {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 76px;
  border-top: 1px solid var(--light-line);
}

.signal span {
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  color: rgba(255, 255, 255, 0.58);
  border-right: 1px solid var(--light-line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.manifesto,
.difference,
.process,
.faq {
  width: 100%;
  padding: clamp(90px, 11vw, 170px) var(--gutter);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  grid-template-areas:
    "label label"
    "heading copy";
  gap: 50px clamp(50px, 8vw, 140px);
  max-width: var(--max);
  margin: 0 auto;
}

.manifesto .section-label {
  grid-area: label;
}

.manifesto h2 {
  grid-area: heading;
  font-size: clamp(46px, 6.3vw, 94px);
}

.manifesto h2 em,
.difference h2 em {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--signal-dark);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.08em;
}

.manifesto-copy {
  grid-area: copy;
  align-self: end;
  display: grid;
  gap: 26px;
  color: #3f4448;
  font-size: 17px;
}

.lanes {
  color: var(--white);
  background: var(--ink);
  padding: clamp(90px, 11vw, 170px) var(--gutter);
}

.section-intro,
.lane-list {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.48);
}

.section-intro h2 {
  max-width: 1050px;
  margin-bottom: clamp(70px, 10vw, 140px);
  font-size: clamp(50px, 7vw, 110px);
}

.lane-list {
  border-top: 1px solid var(--light-line);
}

.lane-list article {
  display: grid;
  grid-template-columns: 70px minmax(240px, 0.75fr) minmax(280px, 1fr) 190px;
  gap: 30px;
  align-items: center;
  min-height: 190px;
  padding: 34px 0;
  border-bottom: 1px solid var(--light-line);
}

.lane-list article > span {
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
}

.lane-list article div p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.lane-list h3 {
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.lane-list article > p {
  color: rgba(255, 255, 255, 0.64);
}

.lane-list article > b {
  justify-self: end;
  padding: 8px 0;
  color: var(--signal);
  border-bottom: 1px solid var(--signal);
  font-size: 11px;
  font-weight: 600;
}

.difference {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(50px, 9vw, 150px);
  color: var(--ink);
  background: var(--signal);
}

.difference > div {
  width: 100%;
  max-width: 700px;
}

.difference > div:first-child {
  justify-self: end;
}

.difference h2 {
  font-size: clamp(48px, 6vw, 90px);
}

.difference-copy {
  align-self: end;
  font-size: 17px;
}

.difference-copy > p {
  margin-bottom: 48px;
  max-width: 620px;
}

.difference dl {
  border-top: 1px solid rgba(15, 17, 19, 0.35);
}

.difference dl div {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(15, 17, 19, 0.35);
}

.difference dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.difference dd {
  font-size: 14px;
}

.process {
  max-width: var(--max);
  margin: 0 auto;
}

.process h2,
.faq h2 {
  max-width: 980px;
  margin-bottom: clamp(70px, 8vw, 110px);
  font-size: clamp(50px, 7vw, 106px);
}

.process ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.process li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 26px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.process li > b {
  color: var(--muted);
  font-size: 12px;
}

.process li span {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(320px, 1fr);
  gap: 40px;
  color: var(--muted);
}

.process li strong {
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 40px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.guardrails {
  padding: clamp(90px, 10vw, 150px) var(--gutter);
  color: var(--white);
  background: var(--ink-soft);
}

.guardrails > * {
  width: min(100%, var(--max));
  margin-right: auto;
  margin-left: auto;
}

.guardrails h2 {
  max-width: 1000px;
  margin-bottom: 70px;
  font-size: clamp(50px, 7vw, 106px);
}

.guardrails ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 70px;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  border-top: 1px solid var(--light-line);
}

.guardrails li {
  position: relative;
  padding: 25px 0 25px 30px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--light-line);
}

.guardrails li::before {
  position: absolute;
  top: 33px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--signal);
  border-radius: 50%;
  content: "";
}

.faq {
  max-width: var(--max);
  margin: 0 auto;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 96px;
  padding: 26px 70px 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 500;
}

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

.faq summary::after {
  position: absolute;
  right: 4px;
  content: "+";
  font-size: 32px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 800px;
  padding: 0 70px 34px 0;
  color: var(--muted);
  font-size: 17px;
}

.access {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  padding: clamp(80px, 10vw, 150px) var(--gutter);
  color: var(--white);
  background: var(--ink);
}

.access-copy {
  justify-self: end;
  max-width: 560px;
}

.access h2 {
  margin-bottom: 34px;
  font-size: clamp(50px, 6vw, 92px);
}

.access-copy > p:not(.section-label) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.form-shell {
  overflow: hidden;
  min-height: 720px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.form-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  color: var(--muted);
  background: #e9e9e5;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.form-shell iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
}

footer {
  padding: 70px var(--gutter) 40px;
  color: var(--white);
  background: #08090a;
}

.footer-top,
.legal {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-mark span {
  color: var(--ink);
}

.footer-top > p {
  color: rgba(255, 255, 255, 0.55);
}

.footer-top > a {
  min-height: 44px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.legal {
  grid-template-columns: 1fr auto;
  margin-top: 60px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid var(--light-line);
  font-size: 10px;
  line-height: 1.6;
}

.legal p {
  max-width: 970px;
}

.legal span {
  white-space: nowrap;
  letter-spacing: 0.12em;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav,
  .site-header > .pill {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 48px;
    min-height: 44px;
    cursor: pointer;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 9999px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-menu > div {
    position: absolute;
    top: 56px;
    right: 0;
    display: grid;
    min-width: min(320px, calc(100vw - 44px));
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-menu a:last-child {
    color: var(--ink);
    background: var(--signal);
    border: 0;
    border-radius: 9999px;
    justify-content: center;
    margin-top: 10px;
  }

  .lane-list article {
    grid-template-columns: 50px minmax(220px, 0.8fr) 1fr;
  }

  .lane-list article > b {
    grid-column: 2 / -1;
    justify-self: start;
  }

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

  .access-copy {
    justify-self: start;
    max-width: 850px;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 22px;
  }

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

  .wordmark b {
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    background:
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 25%),
      var(--ink);
  }

  .hero::before {
    top: 8%;
    right: -40vw;
    width: 100vw;
  }

  .hero::after {
    top: 13%;
    right: -24vw;
    width: 68vw;
  }

  .hero-inner {
    justify-content: flex-start;
    min-height: 680px;
    padding-top: 90px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 80px);
    overflow-wrap: anywhere;
  }

  .hero-lead {
    margin-top: 34px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 30px;
  }

  .hero-actions .pill,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
    border: 1px solid var(--light-line);
    border-radius: 9999px;
  }

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

  .signal span {
    min-height: 50px;
    border-right: 0;
    border-bottom: 1px solid var(--light-line);
  }

  .manifesto,
  .difference {
    display: block;
  }

  .manifesto h2,
  .section-intro h2,
  .difference h2,
  .process h2,
  .guardrails h2,
  .faq h2,
  .access h2 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .manifesto-copy,
  .difference-copy {
    margin-top: 48px;
    font-size: 16px;
  }

  .lane-list article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    min-height: 0;
    padding: 36px 0;
  }

  .lane-list article > p,
  .lane-list article > b {
    grid-column: 2;
  }

  .process li {
    grid-template-columns: 34px 1fr;
    gap: 16px;
  }

  .process li span {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .guardrails ul {
    grid-template-columns: 1fr;
  }

  .faq summary {
    min-height: 76px;
    padding-right: 48px;
  }

  .access {
    padding-right: 0;
    padding-left: 0;
  }

  .access-copy {
    padding: 0 var(--gutter);
  }

  .form-shell {
    min-height: 700px;
    border-radius: 0;
  }

  .footer-top,
  .legal {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top > a {
    width: max-content;
  }

  .legal span {
    white-space: normal;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 53px;
  }

  .wordmark {
    gap: 8px;
  }

  .wordmark span {
    width: 36px;
    height: 36px;
  }

  .mobile-menu > div {
    min-width: calc(100vw - 44px);
  }
}

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

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