:root {
  --paper: #f1eee6;
  --paper-clean: #fbfaf6;
  --ink: #11130f;
  --ink-soft: #20231e;
  --muted: #62675f;
  --line: #cbc7bb;
  --line-dark: rgba(255, 255, 255, 0.22);
  --orange: #f05a24;
  --orange-hot: #ff6b35;
  --green: #315e49;
  --blue-gray: #273d43;
  --white: #fffef9;
  --font-sans: "Archivo", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 78px;
  --shell: min(1280px, calc(100% - 96px));
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid #ffb391;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.scroll-meter {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(10, 11, 9, 0.42), transparent);
  transition:
    min-height 240ms var(--ease),
    color 240ms var(--ease),
    background-color 240ms var(--ease),
    border-color 240ms var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-active {
  min-height: 66px;
  border-color: var(--line);
  color: var(--ink);
  background: rgba(251, 250, 246, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: max-content;
  text-decoration: none;
}

.brand-mark {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 1;
}

.brand-name {
  max-width: 7.5rem;
  padding-left: 0.72rem;
  border-left: 1px solid currentColor;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.2rem, 2.5vw, 2.5rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

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

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms var(--ease);
}

.header-cta:hover {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms var(--ease);
}

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

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

.mobile-menu {
  position: fixed;
  z-index: 900;
  inset: 0;
  padding: calc(var(--header-height) + 32px) 24px 32px;
  color: var(--ink);
  background: var(--paper-clean);
}

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

.mobile-menu nav {
  display: grid;
  height: 100%;
  align-content: center;
  gap: 0;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  font-size: clamp(1.5rem, 8vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.mobile-menu a span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0;
}

.mobile-menu .mobile-menu-cta {
  margin-top: 2rem;
  padding: 1.1rem;
  border: 0;
  color: var(--white);
  background: var(--orange);
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 48px 68px;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero-image,
.hero-wash,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -4;
  object-fit: cover;
  object-position: center 69%;
  filter: saturate(0.82) contrast(1.06);
  transform: scale(1.025);
  animation: hero-image-in 1100ms var(--ease) both;
}

.hero-wash {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(8, 10, 8, 0.96) 0%, rgba(8, 10, 8, 0.78) 38%, rgba(8, 10, 8, 0.22) 72%, rgba(8, 10, 8, 0.36) 100%),
    linear-gradient(0deg, rgba(8, 10, 8, 0.9) 0%, transparent 48%, rgba(8, 10, 8, 0.32) 100%);
}

.hero-grid {
  z-index: -2;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 76%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 66vw);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: #ff9e75;
}

.hero-brand {
  margin: 0 0 0.2rem -0.07em;
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(4.3rem, 8.6vw, 8.7rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.78;
  white-space: nowrap;
}

.hero h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.2rem, 6.5vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -0.064em;
  line-height: 0.9;
}

.hero h1 span {
  color: #ff8250;
}

.hero-copy {
  max-width: 620px;
  margin: 1.65rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 160ms var(--ease),
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button-primary {
  color: #120f0d;
  background: var(--orange);
}

.button-primary:hover {
  background: var(--orange-hot);
  transform: translateY(-3px);
}

.button-primary:active {
  transform: translateY(1px) scale(0.99);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
  background: rgba(0, 0, 0, 0.08);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.hero-work-order {
  position: absolute;
  right: 48px;
  bottom: 68px;
  z-index: 1;
  width: min(340px, 27vw);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(16, 18, 15, 0.76);
  backdrop-filter: blur(10px);
  animation: hero-order-in 700ms 480ms var(--ease) both;
}

.work-order-topline {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-work-order dl {
  margin: 0;
}

.hero-work-order dl div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-work-order dl div:last-child {
  border-bottom: 0;
}

.hero-work-order dt,
.hero-work-order dd {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.35;
}

.hero-work-order dt {
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.hero-work-order dd {
  font-weight: 700;
}

.hero-scroll {
  position: absolute;
  right: 48px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  display: block;
  width: 44px;
  height: 1px;
  background: currentColor;
  overflow: hidden;
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange);
  animation: scan-line 1600ms ease-in-out infinite;
}

.standard-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 88px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper-clean);
}

.standard-strip p {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.standard-strip p:last-child {
  border-right: 0;
}

.standard-strip span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.67rem;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.problem-section {
  padding-block: clamp(6rem, 11vw, 10rem);
}

.section-intro {
  display: grid;
  max-width: 1110px;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: start;
}

.section-intro .eyebrow {
  padding-top: 0.65rem;
}

.section-intro h2,
.scope-heading h2,
.guardrail-block h2,
.follow-on-heading h2,
.founder-strip h2,
.faq-heading h2,
.contact-copy h2,
.proof-statement h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5.7vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.section-intro > p:last-child {
  grid-column: 2;
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.65;
}

.leak-list {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-bottom: 1px solid var(--ink);
}

.leak-row,
.follow-on-row {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  min-height: 154px;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ink);
  overflow: hidden;
}

.leak-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--paper-clean);
  transform: translateX(-102%);
  transition: transform 420ms var(--ease);
}

.leak-row:hover::before {
  transform: translateX(0);
}

.row-number {
  align-self: start;
  padding-top: 0.35rem;
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
}

.leak-row h3,
.follow-on-row h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.leak-row p,
.follow-on-row p {
  max-width: 690px;
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.row-tag,
.gate {
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.path-section {
  color: var(--white);
  background: var(--ink);
}

.path-shell {
  display: grid;
  width: var(--shell);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 7vw, 8rem);
  padding-block: clamp(6rem, 10vw, 9rem);
}

.path-visual {
  position: sticky;
  top: 110px;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: #181a16;
}

.path-visual-head {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 600;
}

.browser-frame {
  margin: clamp(1.2rem, 3vw, 2.3rem);
  color: var(--ink);
  background: var(--paper-clean);
  box-shadow: 18px 18px 0 rgba(240, 90, 36, 0.2);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 38px;
  padding: 0 0.8rem;
  border-bottom: 1px solid var(--ink);
  background: #d8d5cc;
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.browser-bar span {
  margin-left: 0.5rem;
  color: #4e534c;
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.browser-stage {
  position: relative;
  min-height: 400px;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 19, 15, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, 0.045) 1px, transparent 1px),
    var(--paper-clean);
  background-size: 26px 26px;
}

.mock-kicker {
  margin: 0 0 1rem;
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 600;
}

.browser-stage strong {
  display: block;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease);
}

.browser-stage > span {
  display: block;
  max-width: 410px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.5;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease);
}

.browser-stage.is-changing strong,
.browser-stage.is-changing > span {
  opacity: 0;
  transform: translateY(7px);
}

.mock-proof {
  display: flex;
  gap: 0.45rem;
  margin-top: 2rem;
}

.mock-proof i {
  display: block;
  width: 52px;
  height: 38px;
  border: 1px solid var(--ink);
  background: var(--blue-gray);
}

.mock-proof i:nth-child(2) {
  background: #9a6b4e;
}

.mock-proof i:nth-child(3) {
  background: #6b7a67;
}

.mock-action {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0.75rem 0.85rem;
  color: #120f0d;
  background: var(--orange);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.path-progress {
  height: 4px;
  margin: 0 1rem 1rem;
  background: rgba(255, 255, 255, 0.16);
}

.path-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--orange);
  transition: width 460ms var(--ease);
}

.path-caption {
  margin: 0;
  padding: 0 1rem 1.2rem;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.75rem;
  line-height: 1.45;
}

.path-intro {
  display: block;
  padding: 0 0 clamp(3rem, 8vh, 6rem);
}

.path-intro .eyebrow {
  padding: 0;
  color: #ff9e75;
}

.path-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5.1rem);
}

.path-step {
  min-height: 62vh;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.4;
  transition: opacity 260ms ease;
}

.path-step.is-active {
  opacity: 1;
}

.path-step > span {
  color: #ff9e75;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
}

.path-step h3 {
  max-width: 10ch;
  margin: 1.2rem 0 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.path-step p {
  max-width: 460px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.6;
}

.proof-standard {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding-block: clamp(6rem, 11vw, 10rem);
}

.proof-statement h2 {
  max-width: 11ch;
}

.proof-statement > p:last-child {
  max-width: 620px;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.test-sheet {
  border: 1px solid var(--ink);
  background: var(--paper-clean);
  box-shadow: 18px 18px 0 #dbd7cc;
}

.test-sheet-head {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--ink);
  color: var(--white);
  background: var(--blue-gray);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 600;
}

.test-sheet ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.test-sheet li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.8rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  line-height: 1.35;
}

.test-sheet li span {
  color: var(--green);
  font-weight: 900;
}

.test-note {
  margin: 0;
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.scope-section {
  padding-block: clamp(6rem, 10vw, 9rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(rgba(17, 19, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, 0.035) 1px, transparent 1px),
    #e5e0d5;
  background-size: 30px 30px;
}

.scope-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.scope-heading .eyebrow {
  padding-top: 0.6rem;
}

.scope-heading > p:last-child {
  grid-column: 2;
  max-width: 620px;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

.scope-board {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.7fr);
  gap: 0;
  margin-top: clamp(4rem, 8vw, 7rem);
  border: 1px solid var(--ink);
  background: var(--paper-clean);
}

.scope-line {
  display: grid;
  grid-template-columns: 54px minmax(0, 1.25fr) minmax(180px, 0.75fr);
  gap: 1.1rem;
  align-items: center;
  min-height: 84px;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
}

.scope-line:last-child {
  border-bottom: 0;
}

.scope-line > span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.scope-line strong {
  font-size: 1.02rem;
}

.scope-line small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.scope-guardrail {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-left: 1px solid var(--ink);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.scope-guardrail .stamp {
  position: absolute;
  top: 1.5rem;
  right: 1.2rem;
  padding: 0.7rem 0.8rem;
  border: 3px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
  transform: rotate(5deg);
}

.scope-guardrail .eyebrow {
  color: #ff9e75;
}

.scope-guardrail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-guardrail li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.87rem;
}

.scope-guardrail > p:last-child {
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.77rem;
  line-height: 1.5;
}

.guardrails-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-block: clamp(6rem, 10vw, 9rem);
}

.guardrail-block {
  padding-right: clamp(2.5rem, 7vw, 7rem);
}

.guardrail-block + .guardrail-block {
  padding-right: 0;
  padding-left: clamp(2.5rem, 7vw, 7rem);
  border-left: 1px solid var(--ink);
}

.guardrail-block h2 {
  max-width: 9ch;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.guardrail-block > p:not(.eyebrow):not(.fine-print):not(.ownership-callout) {
  max-width: 580px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.timeline {
  margin: 2.3rem 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--orange);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 600;
}

.timeline strong {
  font-size: 0.88rem;
}

.fine-print {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.key-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.4rem;
}

.key-list span {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 600;
}

.ownership-callout {
  margin: 2rem 0 0;
  padding: 1rem;
  color: var(--white);
  background: var(--blue-gray);
  font-size: 1.05rem;
  font-weight: 800;
}

.follow-on-section {
  padding-block: clamp(6rem, 10vw, 9rem);
  color: var(--white);
  background: var(--blue-gray);
}

.follow-on-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.follow-on-heading .eyebrow {
  padding-top: 0.6rem;
  color: #ff9e75;
}

.follow-on-heading > p:last-child {
  grid-column: 2;
  max-width: 610px;
  margin: 1.3rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.follow-on-rows {
  margin-top: clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.follow-on-row {
  border-color: rgba(255, 255, 255, 0.4);
}

.follow-on-row p {
  color: rgba(255, 255, 255, 0.62);
}

.gate {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ff9e75;
}

.founder-strip {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid var(--ink);
}

.founder-strip .eyebrow {
  margin: 0;
}

.founder-strip h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.7vw, 4rem);
}

.founder-strip div p {
  max-width: 650px;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.founder-strip > a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(6rem, 10vw, 9rem);
}

.faq-heading h2 {
  max-width: 8ch;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
}

.faq-list {
  border-bottom: 1px solid var(--ink);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 86px;
  padding: 1rem 0;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--ink);
  font-size: 1.2rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 650px;
  margin: -0.3rem 0 0;
  padding: 0 3rem 1.8rem 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  padding: clamp(5rem, 9vw, 8rem) 48px;
  border-top: 1px solid var(--ink);
  background: var(--orange);
}

.contact-shell {
  display: grid;
  width: min(1280px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.72fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.contact-copy .eyebrow {
  color: #442012;
}

.contact-copy h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 6.7vw, 6.8rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 630px;
  margin: 1.7rem 0 0;
  color: #3d241a;
  font-size: 1.05rem;
  line-height: 1.65;
}

.contact-copy a {
  font-weight: 700;
  text-underline-offset: 3px;
}

.contact-note {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  max-width: 590px;
  margin-top: 2.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 19, 15, 0.65);
}

.contact-note span {
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 600;
}

.contact-note p {
  margin: 0;
  color: #3d241a;
  font-size: 0.82rem;
  line-height: 1.55;
}

.lead-form {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper-clean);
  box-shadow: 18px 18px 0 rgba(17, 19, 15, 0.18);
}

.form-head {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--ink);
  color: var(--white);
  background: var(--blue-gray);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-weight: 600;
}

.lead-form > label,
.field-grid,
.turnstile-wrap,
.submit-button,
.form-note {
  margin-right: 1.2rem;
  margin-left: 1.2rem;
}

.lead-form > label:first-of-type {
  margin: 0;
}

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

.lead-form label {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
  color: #33372f;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  padding: 0.72rem 0.8rem;
  border: 1px solid #7d8278;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: none;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.lead-form input::placeholder {
  color: #8a8e86;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--orange);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(240, 90, 36, 0.17);
}

.lead-form [aria-invalid="true"] {
  border-color: #ad2e24;
  box-shadow: 0 0 0 3px rgba(173, 46, 36, 0.13);
}

.honey-field {
  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;
}

.turnstile-wrap {
  min-height: 65px;
  margin-top: 1rem;
}

.submit-button {
  width: calc(100% - 2.4rem);
  justify-content: space-between;
  margin-top: 0.7rem;
  border: 1px solid var(--ink);
}

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

.form-note {
  min-height: 2.7rem;
  margin-top: 0.8rem;
  margin-bottom: 0;
  padding-bottom: 1rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.form-note[data-state="success"] {
  color: var(--green);
  font-weight: 700;
}

.form-note[data-state="error"] {
  color: #9d241b;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 142px;
  padding: 2rem 48px;
  color: var(--white);
  background: var(--ink);
}

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

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.74rem;
  line-height: 1.5;
}

.site-footer p:last-child {
  font-family: var(--font-mono);
  font-size: 0.59rem;
  text-align: right;
  text-transform: uppercase;
}

.site-footer p span {
  display: block;
  margin-top: 0.35rem;
}

.motion-stagger > * {
  animation: soft-in 680ms var(--ease) both;
  animation-delay: calc(var(--motion-order, 0) * 80ms + 160ms);
}

.motion-reveal {
  opacity: 1;
  transform: none;
}

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

@keyframes soft-in {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0.55;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1.025);
  }
}

@keyframes hero-order-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scan-line {
  0% {
    transform: translateX(-105%);
  }

  65%,
  100% {
    transform: translateX(105%);
  }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 64px, 1100px);
  }

  .site-header {
    padding-inline: 32px;
  }

  .desktop-nav {
    gap: 1.15rem;
  }

  .desktop-nav a {
    font-size: 0.63rem;
  }

  .hero {
    padding-inline: 32px;
  }

  .hero-content {
    width: min(730px, 67vw);
  }

  .hero-work-order {
    right: 32px;
    width: 300px;
  }

  .hero-scroll {
    right: 32px;
  }

  .contact-section,
  .site-footer {
    padding-inline: 32px;
  }

  .path-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 4rem;
  }

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

  .founder-strip > a {
    grid-column: 2;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
    --shell: calc(100% - 48px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 24px;
  }

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

  .nav-toggle {
    display: block;
    grid-column: 3;
  }

  .hero {
    min-height: 880px;
    padding: calc(var(--header-height) + 48px) 24px 250px;
  }

  .hero-image {
    object-position: 54% 70%;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(8, 10, 8, 0.95) 0%, rgba(8, 10, 8, 0.71) 56%, rgba(8, 10, 8, 0.3) 100%),
      linear-gradient(0deg, rgba(8, 10, 8, 0.92) 0%, transparent 50%, rgba(8, 10, 8, 0.45) 100%);
  }

  .hero-content {
    width: 100%;
  }

  .hero-brand {
    font-size: clamp(4rem, 14vw, 7.5rem);
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-work-order {
    right: 24px;
    bottom: 48px;
    left: 24px;
    width: auto;
  }

  .hero-work-order dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-work-order dl div {
    display: block;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
  }

  .hero-work-order dd {
    margin-top: 0.4rem;
  }

  .hero-scroll {
    display: none;
  }

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

  .standard-strip p:nth-child(2) {
    border-right: 0;
  }

  .standard-strip p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ink);
  }

  .section-intro,
  .scope-heading,
  .follow-on-heading {
    display: block;
  }

  .section-intro .eyebrow,
  .scope-heading .eyebrow,
  .follow-on-heading .eyebrow {
    padding-top: 0;
  }

  .section-intro > p:last-child,
  .scope-heading > p:last-child,
  .follow-on-heading > p:last-child {
    margin-top: 1.5rem;
  }

  .path-shell {
    display: block;
  }

  .path-visual {
    position: relative;
    top: auto;
    margin-bottom: 5rem;
  }

  .browser-stage {
    min-height: 360px;
  }

  .path-step {
    min-height: auto;
    padding: 3rem 0 4rem;
    opacity: 1;
  }

  .proof-standard {
    grid-template-columns: 1fr;
  }

  .test-sheet {
    max-width: 620px;
  }

  .scope-board {
    grid-template-columns: 1fr;
  }

  .scope-guardrail {
    min-height: 460px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .guardrails-section {
    display: block;
  }

  .guardrail-block {
    padding-right: 0;
  }

  .guardrail-block + .guardrail-block {
    margin-top: 5rem;
    padding: 5rem 0 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .lead-form {
    max-width: 680px;
  }

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

  .site-footer p:last-child {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 36px);
  }

  .brand-name {
    display: none;
  }

  .site-header {
    padding-inline: 18px;
  }

  .hero {
    min-height: 820px;
    padding-right: 18px;
    padding-bottom: 250px;
    padding-left: 18px;
  }

  .hero-image {
    object-position: 57% 72%;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(8, 10, 8, 0.92) 0%, rgba(8, 10, 8, 0.56) 100%),
      linear-gradient(0deg, rgba(8, 10, 8, 0.96) 0%, rgba(8, 10, 8, 0.15) 59%, rgba(8, 10, 8, 0.53) 100%);
  }

  .hero-brand {
    margin-bottom: 0.55rem;
    font-size: clamp(3rem, 16vw, 5rem);
    white-space: normal;
  }

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

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-work-order {
    right: 18px;
    left: 18px;
  }

  .hero-work-order dl div {
    padding: 0.75rem 0.6rem;
  }

  .hero-work-order dd {
    font-size: 0.67rem;
  }

  .hero-work-order dt {
    font-size: 0.58rem;
  }

  .standard-strip p {
    min-height: 74px;
    padding: 0.8rem 1rem;
    font-size: 0.68rem;
  }

  .leak-row,
  .follow-on-row {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    padding: 1.8rem 0;
  }

  .row-tag,
  .gate {
    display: none;
  }

  .browser-frame {
    margin: 1rem;
    box-shadow: 10px 10px 0 rgba(240, 90, 36, 0.2);
  }

  .browser-stage {
    min-height: 330px;
    padding: 1.5rem;
  }

  .browser-stage strong {
    font-size: 2.35rem;
  }

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

  .test-sheet {
    box-shadow: 10px 10px 0 #dbd7cc;
  }

  .scope-line {
    grid-template-columns: 34px 1fr;
  }

  .scope-line small {
    grid-column: 2;
    margin-top: -0.65rem;
  }

  .scope-guardrail {
    min-height: 430px;
  }

  .founder-strip {
    display: block;
  }

  .founder-strip h2 {
    margin-top: 1.5rem;
  }

  .founder-strip > a {
    display: inline-block;
    margin-top: 2rem;
  }

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

  .contact-section {
    padding-inline: 18px;
  }

  .contact-copy h2 {
    font-size: clamp(3.15rem, 14vw, 5rem);
  }

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

  .lead-form {
    box-shadow: 10px 10px 0 rgba(17, 19, 15, 0.18);
  }

  .site-footer {
    display: block;
    padding-inline: 18px;
  }

  .site-footer > p {
    margin-top: 1.3rem;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 850px;
    padding-bottom: 252px;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-brand {
    font-size: 2.95rem;
  }

  .hero-copy {
    font-size: 0.91rem;
  }

  .button {
    min-height: 50px;
    padding-inline: 0.8rem;
    font-size: 0.73rem;
  }

  .standard-strip {
    grid-template-columns: 1fr;
  }

  .standard-strip p,
  .standard-strip p:nth-child(2) {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .standard-strip p:last-child {
    border-bottom: 0;
  }

  .section-intro h2,
  .scope-heading h2,
  .guardrail-block h2,
  .follow-on-heading h2,
  .founder-strip h2,
  .faq-heading h2,
  .proof-statement h2 {
    font-size: 2.55rem;
  }

  .browser-stage {
    min-height: 350px;
  }

  .browser-stage strong {
    font-size: 2.05rem;
  }

  .mock-action {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .contact-note {
    grid-template-columns: 1fr;
  }

  .form-head {
    font-size: 0.53rem;
  }

  .cf-turnstile {
    transform: scale(0.88);
    transform-origin: left top;
  }
}

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

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

  .motion-reveal {
    opacity: 1;
    transform: none;
  }

  .hero-image {
    transform: scale(1.025);
  }
}
