:root {
  --ink: #181a17;
  --ink-soft: #2a2d28;
  --muted: #6f746c;
  --paper: #f4f3ed;
  --panel: #fffefa;
  --line: #d7d6ce;
  --yellow: #e9ff70;
  --orange: #ff7a45;
  --teal: #173f46;
  --green: #2d7b52;
  --radius: 12px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

em {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(24, 26, 23, .12);
  background: rgba(244, 243, 237, .92);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-decoration: none;
}

.wordmark-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  background: var(--yellow);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.06em;
  transform: rotate(-2deg);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-navigation a,
.site-footer nav a {
  color: #4f544d;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.site-navigation a:hover,
.site-footer nav a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.text-link {
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.01em;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

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

.button-small {
  min-height: 40px;
  padding: 0 15px;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.button-ghost {
  background: transparent;
  color: var(--ink);
}

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

.hero {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  min-height: 690px;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 78px 0 86px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #62675f;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  background: var(--orange);
}

.hero h1,
.section-heading h2,
.signup-intro h1,
.not-found h1 {
  margin: 0;
  font-size: clamp(56px, 6.25vw, 92px);
  font-weight: 820;
  letter-spacing: -.072em;
  line-height: .9;
}

.hero h1 em,
.section-heading h2 em,
.signup-intro h1 em {
  letter-spacing: -.06em;
}

.hero-lede {
  max-width: 620px;
  margin: 32px 0 0;
  color: #555a53;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 35px;
}

.hero-assurances {
  display: flex;
  gap: 20px;
  margin: 30px 0 0;
  padding: 0;
  color: #636861;
  font-size: 11px;
  font-weight: 700;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-assurances li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-product {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    var(--ink);
  background-size: 30px 30px;
  box-shadow: 0 24px 70px rgba(24,26,23,.18);
  overflow: hidden;
}

.plan-stack {
  position: absolute;
  top: 45px;
  left: 42px;
  width: 59%;
  height: 380px;
}

.plan-sheet {
  position: absolute;
  inset: 0;
  border: 1px solid #c8c6b9;
  border-radius: 4px;
  background: #f7f4e8;
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
  transform: rotate(-4deg);
}

.plan-sheet-back {
  inset: 18px -22px -12px 22px;
  background: #dcd9ca;
  transform: rotate(3deg);
}

.plan-title {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 18px;
  font-weight: 900;
}

.plan-title span {
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-grid {
  position: absolute;
  inset: 24px 20px 52px;
  background:
    linear-gradient(90deg, transparent 49%, #8e938a 50%, transparent 51%),
    linear-gradient(transparent 49%, #8e938a 50%, transparent 51%),
    repeating-linear-gradient(90deg, transparent 0 52px, rgba(24,26,23,.38) 53px 55px),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(24,26,23,.38) 49px 51px);
}

.plan-room {
  position: absolute;
  padding: 3px;
  border: 1px solid #777c74;
  font-family: monospace;
  font-size: 8px;
}

.room-a { top: 64px; left: 54px; }
.room-b { top: 156px; right: 74px; }
.room-c { bottom: 94px; left: 150px; }

.plan-highlight {
  position: absolute;
  top: 110px;
  left: 76px;
  width: 146px;
  height: 17px;
  background: rgba(233,255,112,.72);
  transform: rotate(-1deg);
}

.plan-note {
  position: absolute;
  top: 96px;
  left: 103px;
  font-family: monospace;
  font-size: 9px;
}

.analysis-card {
  position: absolute;
  right: 28px;
  bottom: 36px;
  width: 67%;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(23,63,70,.97);
  color: white;
  box-shadow: 0 22px 50px rgba(0,0,0,.38);
}

.analysis-topline,
.analysis-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analysis-topline {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.analysis-label {
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.analysis-status,
.approval-pill {
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.09);
  color: #bacacb;
  font-family: monospace;
  font-size: 8px;
}

.analysis-row {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto 25px;
  gap: 10px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
}

.item-code {
  display: grid;
  height: 27px;
  place-items: center;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  font-family: monospace;
  font-size: 9px;
  font-weight: 900;
}

.item-code.alert {
  background: var(--orange);
}

.analysis-row strong,
.analysis-row small {
  display: block;
}

.analysis-row strong {
  font-size: 10px;
}

.analysis-row small {
  margin-top: 4px;
  color: #9fb3b5;
  font-size: 8px;
}

.quantity {
  font-family: monospace;
  font-size: 9px;
}

.confidence {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  font-family: monospace;
  font-size: 8px;
}

.confidence.high { border: 1px solid var(--yellow); color: var(--yellow); }
.confidence.medium { border: 1px solid #f2c35e; color: #f2c35e; }
.confidence.risk { border: 1px solid var(--orange); color: var(--orange); }
.risk-label { color: var(--orange); font-family: monospace; font-size: 8px; text-transform: uppercase; }

.analysis-footer {
  padding-top: 14px;
  color: #b9c8c9;
  font-size: 9px;
}

.hero-stamp {
  position: absolute;
  top: 27px;
  right: 25px;
  padding: 9px 11px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-family: monospace;
  font-size: 8px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.hero-stamp strong {
  font-size: 9px;
}

.trade-strip {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 20px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.trade-strip > span {
  color: #73776f;
  font-family: monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trade-strip ul {
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trade-strip li {
  font-size: 13px;
  font-weight: 800;
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.problem-section,
.product-section,
.pricing-section,
.faq-section {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-heading h2 {
  font-size: clamp(46px, 5.4vw, 76px);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 76px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.problem-grid article {
  min-height: 270px;
  padding: 28px 34px 34px 0;
}

.problem-grid article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.problem-number,
.feature-index {
  color: var(--orange);
  font-family: monospace;
  font-size: 10px;
  font-weight: 800;
}

.problem-grid h3,
.workflow-step h3,
.feature-card h3,
.control-list h3 {
  margin: 42px 0 14px;
  font-size: 20px;
  letter-spacing: -.035em;
}

.problem-grid p,
.workflow-step p,
.feature-card p,
.control-list p {
  margin: 0;
  color: #676c65;
  font-size: 13px;
  line-height: 1.7;
}

.workflow-section {
  padding: 130px 0;
  background: var(--ink);
  color: white;
}

.section-heading-light .eyebrow,
.safety-copy .eyebrow {
  color: #afb4ab;
}

.section-heading-light em {
  color: #aeb3aa;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 72px;
}

.workflow-step {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: #20231f;
}

.workflow-step.featured {
  border-color: rgba(233,255,112,.4);
}

.step-visual {
  position: relative;
  height: 230px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 25px 25px;
}

.step-copy {
  padding: 28px;
}

.step-copy > span {
  color: var(--yellow);
  font-family: monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.step-copy h3 {
  margin: 17px 0 12px;
}

.step-copy p {
  color: #adb2aa;
}

.file {
  position: absolute;
  display: grid;
  width: 85px;
  height: 110px;
  place-items: center;
  border: 1px solid #8c9189;
  background: #e9e8df;
  color: var(--ink);
  font-family: monospace;
  font-size: 10px;
  font-weight: 900;
}

.file-one { top: 47px; left: calc(50% - 112px); transform: rotate(-7deg); }
.file-two { top: 62px; left: calc(50% - 42px); transform: rotate(3deg); }
.file-three { top: 43px; left: calc(50% + 30px); transform: rotate(9deg); }
.upload-arrow { position: absolute; right: 22px; bottom: 16px; color: var(--yellow); font-size: 28px; }

.scan-page {
  position: absolute;
  inset: 28px 60px;
  border: 1px solid #6b7778;
  background:
    repeating-linear-gradient(90deg, transparent 0 44px, rgba(255,255,255,.1) 45px 46px),
    repeating-linear-gradient(0deg, transparent 0 37px, rgba(255,255,255,.1) 38px 39px),
    var(--teal);
}

.scan-line {
  position: absolute;
  z-index: 2;
  top: 70px;
  right: 42px;
  left: 42px;
  height: 2px;
  background: var(--yellow);
  box-shadow: 0 0 18px var(--yellow);
}

.evidence-tag {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border-radius: 4px;
  background: var(--yellow);
  color: var(--ink);
  font-family: monospace;
  font-size: 8px;
  font-weight: 900;
}

.evidence-one { top: 96px; left: 37px; }
.evidence-two { right: 28px; bottom: 40px; background: var(--orange); }

.review-visual {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 34px;
}

.review-line {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 5px;
  font-family: monospace;
  font-size: 9px;
}

.review-line b {
  font-size: 8px;
  text-transform: uppercase;
}

.accepted b { color: var(--yellow); }
.pending b { color: #f1c45d; }
.rejected { opacity: .5; }

.split-heading {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 5px;
  color: #656a63;
  font-size: 14px;
  line-height: 1.75;
}

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

.feature-card {
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature-wide {
  display: grid;
  min-height: 420px;
  grid-column: 1 / -1;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.feature-card h3 {
  margin: 46px 0 14px;
  font-size: 25px;
}

.feature-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: #555b53;
  font-size: 12px;
  list-style: none;
}

.feature-card li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
}

.evidence-panel {
  padding: 28px;
  border-radius: 7px;
  background: var(--teal);
  color: white;
  box-shadow: 0 22px 50px rgba(23,63,70,.2);
}

.evidence-header,
.evidence-panel > div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.evidence-header {
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  font-family: monospace;
  font-size: 10px;
}

.evidence-header b {
  padding: 5px 7px;
  border-radius: 3px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 8px;
}

.evidence-panel p {
  margin: 36px 0;
  color: white;
  font-family: Georgia, serif;
  font-size: 23px;
  line-height: 1.4;
}

.evidence-panel > div:last-child {
  color: #a9babb;
  font-family: monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.mini-queue {
  display: grid;
  gap: 8px;
  margin-top: 35px;
}

.mini-queue > span,
.rate-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 10px;
}

.mini-queue b {
  font-family: monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
}

.dot.green { background: var(--green); }
.dot.yellow { background: #d1a523; }
.dot.gray { background: #999; }

.rate-line {
  margin-top: 10px;
  font-family: monospace;
}

.rate-line:first-of-type {
  margin-top: 36px;
}

.risk-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  margin-top: 35px;
  padding: 16px;
  border-left: 3px solid var(--orange);
  background: #f9ede6;
}

.risk-box span {
  grid-row: 1 / 3;
  color: var(--orange);
  font-family: monospace;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.risk-box strong {
  font-size: 11px;
}

.risk-box small {
  color: #777;
  font-size: 9px;
}

.proposal-lines {
  display: grid;
  gap: 11px;
  margin-top: 38px;
}

.proposal-lines span {
  height: 8px;
  border-radius: 3px;
  background: #dadbd4;
}

.proposal-lines span:nth-child(2) { width: 88%; }
.proposal-lines span:nth-child(3) { width: 94%; }
.proposal-lines span:nth-child(4) { width: 62%; background: var(--yellow); }

.safety-section {
  padding: 120px 0;
  background: var(--teal);
  color: white;
}

.safety-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 105px;
}

.safety-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.safety-copy h2 {
  margin: 0;
  font-size: clamp(46px, 5vw, 72px);
  letter-spacing: -.065em;
  line-height: .93;
}

.safety-copy h2 em {
  color: #b7c5c6;
}

.safety-copy > p:not(.eyebrow) {
  margin: 28px 0 34px;
  color: #becbcb;
  font-size: 14px;
  line-height: 1.75;
}

.control-list {
  border-top: 1px solid rgba(255,255,255,.2);
}

.control-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.control-list article > span {
  color: var(--yellow);
  font-family: monospace;
  font-size: 10px;
}

.control-list h3 {
  margin: 0 0 10px;
}

.control-list p {
  color: #b8c6c6;
}

.pricing-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  margin-top: 75px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--panel);
  overflow: hidden;
}

.pricing-intro {
  padding: 48px;
  background: var(--ink);
  color: white;
}

.pricing-intro > span,
.pricing-includes h3 {
  font-family: monospace;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.price {
  display: flex;
  align-items: end;
  gap: 16px;
  margin: 48px 0 26px;
}

.price strong {
  color: var(--yellow);
  font-size: clamp(64px, 7vw, 92px);
  letter-spacing: -.08em;
  line-height: .8;
}

.price span {
  color: #aeb3aa;
  font-family: monospace;
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

.pricing-intro p {
  margin: 0 0 34px;
  color: #b8bdb5;
  font-size: 13px;
  line-height: 1.7;
}

.pricing-includes {
  padding: 48px 55px;
}

.pricing-includes ul {
  display: grid;
  margin: 30px 0 26px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-includes li {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.pricing-includes li span {
  color: var(--orange);
  font-family: monospace;
  font-size: 8px;
}

.pricing-includes small {
  color: #777b74;
  font-size: 10px;
  line-height: 1.6;
}

.faq-section {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}

.compact-heading h2 {
  font-size: clamp(40px, 4.5vw, 62px);
}

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

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

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  font-family: monospace;
  font-size: 19px;
}

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

.faq-list details p {
  max-width: 670px;
  margin: -5px 40px 28px 0;
  color: #636860;
  font-size: 13px;
  line-height: 1.75;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--yellow);
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(50px, 5.7vw, 80px);
  letter-spacing: -.07em;
  line-height: .92;
}

.final-cta h2 em {
  color: #707857;
}

.final-cta > div:last-child p {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.7;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 45px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--ink);
  color: white;
}

.wordmark-light {
  color: white;
}

.site-footer p {
  color: #9ea39b;
  font-size: 12px;
}

.site-footer nav {
  display: flex;
  gap: 20px;
}

.site-footer nav a {
  color: #d5d8d2;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: #777d74;
  font-family: monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.signup-body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(24,26,23,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,26,23,.035) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}

.site-header-light {
  position: relative;
  background: var(--panel);
}

.already-account {
  color: #777b74;
  font-size: 11px;
}

.signup-main {
  display: grid;
  width: min(1160px, calc(100% - 48px));
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: start;
  margin: 0 auto;
  padding: 80px 0 110px;
}

.signup-intro {
  position: sticky;
  top: 40px;
}

.back-link {
  display: inline-block;
  margin-bottom: 65px;
  color: #676c65;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}

.signup-intro h1 {
  font-size: clamp(58px, 6vw, 82px);
}

.signup-intro > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: #60655e;
  font-size: 14px;
  line-height: 1.75;
}

.pilot-path {
  display: grid;
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.pilot-path article {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.pilot-path article > span {
  color: var(--orange);
  font-family: monospace;
  font-size: 8px;
}

.pilot-path strong,
.pilot-path small {
  display: block;
}

.pilot-path strong {
  font-size: 12px;
}

.pilot-path small {
  margin-top: 5px;
  color: #777c74;
  font-size: 10px;
  line-height: 1.5;
}

.signup-note {
  margin-top: 28px;
  padding: 16px;
  border-left: 3px solid var(--yellow);
  background: var(--ink);
  color: #b9beb6;
  font-size: 10px;
  line-height: 1.6;
}

.signup-note strong {
  color: white;
}

.signup-panel,
.success-panel {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 22px 60px rgba(24,26,23,.08);
}

.form-heading > span {
  color: var(--orange);
  font-family: monospace;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-heading h2,
.success-panel h2 {
  margin: 13px 0 8px;
  font-size: 30px;
  letter-spacing: -.045em;
}

.form-heading p,
.success-panel p {
  margin: 0;
  color: #73776f;
  font-size: 11px;
  line-height: 1.65;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 14px;
  margin-top: 36px;
}

.signup-panel label {
  display: grid;
  gap: 8px;
}

.signup-panel label > span {
  color: #575c55;
  font-size: 10px;
  font-weight: 800;
}

.signup-panel input,
.signup-panel select,
.signup-panel textarea {
  width: 100%;
  border: 1px solid #cbcac1;
  border-radius: 4px;
  outline: none;
  background: white;
  color: var(--ink);
}

.signup-panel input,
.signup-panel select {
  height: 47px;
  padding: 0 12px;
}

.signup-panel textarea {
  padding: 12px;
  resize: vertical;
}

.signup-panel input:focus,
.signup-panel select:focus,
.signup-panel textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(23,63,70,.1);
}

.full-field {
  margin-top: 20px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-field {
  display: grid !important;
  grid-template-columns: 17px 1fr;
  gap: 10px !important;
  align-items: start;
  margin-top: 22px;
}

.consent-field input {
  width: 17px;
  height: 17px;
  margin: 0;
}

.consent-field span {
  font-weight: 600 !important;
  line-height: 1.5;
}

.form-error {
  min-height: 18px;
  margin: 12px 0 0;
  color: #a83f2f;
  font-size: 11px;
  font-weight: 700;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: .65;
}

.form-fineprint {
  display: block;
  margin-top: 14px;
  color: #898d85;
  font-size: 9px;
  line-height: 1.5;
  text-align: center;
}

.success-panel {
  min-height: 470px;
  align-content: center;
  outline: none;
}

.success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 24px;
  font-weight: 900;
}

.success-panel h2 {
  max-width: 520px;
  font-size: 39px;
}

.success-panel > p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 18px;
  font-size: 13px;
}

.success-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 36px;
}

.not-found-body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    var(--ink);
  background-size: 28px 28px;
  color: white;
}

.not-found {
  width: min(620px, calc(100% - 48px));
}

.not-found .eyebrow {
  margin-top: 50px;
  color: #a8ada5;
}

.not-found h1 {
  font-size: clamp(56px, 7vw, 90px);
}

.not-found > p:not(.eyebrow) {
  margin: 28px 0;
  color: #adb2aa;
}

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

  .site-navigation {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--panel);
  }

  .site-navigation.is-open {
    display: grid;
  }

  .menu-button {
    display: grid;
    width: 40px;
    height: 40px;
    gap: 5px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
  }

  .menu-button > span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--ink);
  }

  .site-header > .header-actions {
    display: none;
  }

  .site-header-light > .header-actions {
    display: flex;
  }

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

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

  .trade-strip {
    align-items: start;
    gap: 25px;
    flex-direction: column;
  }

  .trade-strip ul {
    flex-wrap: wrap;
  }

  .split-heading,
  .safety-grid,
  .faq-section,
  .signup-main {
    grid-template-columns: 1fr;
  }

  .safety-copy,
  .signup-intro {
    position: static;
  }

  .faq-section {
    gap: 60px;
  }

  .signup-main {
    gap: 60px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 66px;
    padding: 10px 18px;
  }

  .site-navigation {
    top: 66px;
  }

  .already-account,
  .site-header-light .wordmark > span:last-child {
    display: none;
  }

  .hero,
  .section-shell,
  .signup-main {
    width: min(100% - 32px, var(--max));
  }

  .hero {
    min-height: auto;
    padding: 62px 0;
  }

  .hero h1,
  .section-heading h2,
  .signup-intro h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

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

  .hero-assurances {
    gap: 11px;
  }

  .hero-product {
    min-height: 480px;
  }

  .plan-stack {
    top: 28px;
    left: 28px;
    width: 78%;
    height: 300px;
  }

  .analysis-card {
    right: 14px;
    bottom: 22px;
    width: 88%;
  }

  .analysis-row {
    grid-template-columns: 28px minmax(0, 1fr) 24px;
  }

  .quantity {
    display: none;
  }

  .trade-strip {
    padding: 24px 18px;
  }

  .trade-strip ul {
    gap: 12px 24px;
  }

  .problem-section,
  .product-section,
  .pricing-section,
  .faq-section,
  .workflow-section,
  .safety-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .problem-grid,
  .workflow-grid,
  .feature-grid,
  .pricing-card,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .problem-grid article + article {
    min-height: 220px;
    padding: 26px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .problem-grid h3 {
    margin-top: 28px;
  }

  .feature-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .feature-card {
    padding: 26px;
  }

  .pricing-intro,
  .pricing-includes,
  .signup-panel,
  .success-panel {
    padding: 30px 24px;
  }

  .price strong {
    font-size: 64px;
  }

  .final-cta {
    gap: 40px;
    padding: 80px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 42px 18px;
  }

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

  .site-footer small {
    grid-column: 1;
  }

  .back-link {
    margin-bottom: 45px;
  }

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

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

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

/* Live demo and legal pages */
.demo-body,
.legal-body {
  background: var(--paper);
}

.demo-main {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
  padding: 76px 0 120px;
}

.demo-intro {
  max-width: 920px;
}

.demo-intro h1,
.demo-results h2,
.legal-hero h1 {
  margin: 20px 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .92;
}

.demo-intro > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.demo-boundaries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 44px 0 24px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.demo-boundaries article {
  display: grid;
  gap: 6px;
  padding: 24px;
}

.demo-boundaries article + article {
  border-left: 1px solid var(--line);
}

.demo-boundaries span {
  color: var(--muted);
  font-size: 13px;
}

.demo-panel,
.demo-progress,
.demo-results {
  margin-top: 70px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 80px rgba(24, 26, 23, .08);
}

.demo-panel,
.demo-progress {
  max-width: 920px;
  padding: 48px;
}

.demo-file {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 28px;
  border: 1px dashed #adb2aa;
  background: var(--paper);
}

.demo-file input {
  padding: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.demo-file small,
.form-fineprint {
  color: var(--muted);
  line-height: 1.55;
}

.demo-consents {
  display: grid;
  gap: 15px;
  margin: 28px 0;
}

.demo-consents label {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #4f554e;
  font-size: 14px;
  line-height: 1.55;
}

.demo-consents input {
  margin-top: 4px;
}

.demo-consents a,
.consent-field a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.turnstile-slot {
  min-height: 70px;
  margin: 20px 0;
}

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

.progress-orbit {
  display: inline-block;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--lime);
  border-radius: 50%;
  animation: demo-spin .9s linear infinite;
}

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

.demo-progress h2 {
  margin: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
}

.demo-progress > p:last-child {
  color: var(--muted);
}

.demo-results {
  padding: 54px;
}

.demo-results-head,
.condition-section > div:first-child,
.result-cta {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
}

.demo-results h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 72px);
}

.demo-summary {
  margin: 48px 0;
  padding: 30px;
  border-left: 4px solid var(--lime);
  background: var(--paper);
}

.demo-summary span,
.condition-section h3,
.result-columns h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.demo-summary p {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.65;
}

.result-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.result-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.result-item {
  padding: 20px;
  border: 1px solid var(--line);
}

.result-item p {
  margin: 8px 0;
  color: #41463f;
  line-height: 1.55;
}

.result-item small {
  color: var(--muted);
}

.result-item.high,
.result-item.review {
  border-left: 4px solid #d06a3d;
}

.condition-section {
  margin-top: 52px;
}

.condition-section > div:first-child p {
  max-width: 520px;
  color: var(--muted);
}

.condition-table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
}

.condition-table-wrap table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

.condition-table-wrap th,
.condition-table-wrap td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.condition-table-wrap th {
  background: var(--paper);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.result-cta {
  margin-top: 48px;
  padding: 30px;
  background: var(--lime);
}

.result-cta div {
  display: grid;
  gap: 8px;
}

.result-cta span {
  font-size: 14px;
}

.legal-main {
  width: min(100% - 48px, 980px);
  margin: 0 auto;
  padding: 80px 0 120px;
}

.legal-hero {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  font-size: clamp(50px, 8vw, 86px);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content {
  max-width: 800px;
  padding-top: 48px;
}

.legal-content h2 {
  margin: 48px 0 14px;
  font-size: 25px;
}

.legal-content h3 {
  margin: 32px 0 12px;
  font-size: 17px;
}

.legal-content p,
.legal-content li {
  color: #454a44;
  line-height: 1.75;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-callout {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--lime);
  background: #fff;
}

@media (max-width: 760px) {
  .demo-main,
  .legal-main {
    width: min(100% - 32px, var(--max));
    padding-top: 50px;
  }

  .demo-boundaries,
  .result-columns {
    grid-template-columns: 1fr;
  }

  .demo-boundaries article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .demo-panel,
  .demo-progress,
  .demo-results {
    padding: 28px 22px;
  }

  .demo-results-head,
  .condition-section > div:first-child,
  .result-cta {
    align-items: stretch;
    flex-direction: column;
  }
}
