:root {
  color-scheme: light;
  --night: #071721;
  --night-2: #0b2534;
  --ink: #0b1b25;
  --muted: #52636d;
  --paper: #f4f9fb;
  --white: #ffffff;
  --line: #cbd9df;
  --blue: #3578f6;
  --cyan: #52dfe2;
  --lime: #c9f45d;
  --amber: #ffbe60;
  --red: #dc5d58;
  --shadow: 0 28px 80px rgba(2, 21, 32, 0.22);
  --radius: 18px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI Variable Text", "Segoe UI", Aptos, system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
code, pre { font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--night);
  background: var(--lime);
  border-radius: 6px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.hero-shell {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 16%, rgba(53, 120, 246, 0.22), transparent 28rem),
    linear-gradient(145deg, #06131c 0%, #0a2331 72%, #092838 100%);
}
.home-header-shell { color: var(--white); background: #06131c; }
.hero-shell::before,
.sample-hero::before,
.release-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(82, 223, 226, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 223, 226, 0.35) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.site-header {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 40px), var(--max));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 780;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}
.brand > span > span { color: var(--cyan); }
.brand-mark {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.7;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: #c9d6db;
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 650;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  padding: 9px 15px;
  color: var(--night);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 999px;
}
.nav-links .nav-cta:hover { color: var(--night); background: #dcff88; }

.hero {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  min-height: 665px;
  margin: 0 auto;
  padding: 82px 0 98px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
}
.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a8c2cd;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow span { width: 22px; height: 2px; background: var(--cyan); }
.eyebrow.dark { color: #64757d; }
.eyebrow.dark span { background: var(--blue); }
h1, h2, h3, p { margin-top: 0; }
.hero h1,
.sample-hero h1,
.release-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.7vw, 5.7rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-lede {
  max-width: 630px;
  margin-bottom: 32px;
  color: #c3d2d8;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.65;
}
.offer-line {
  width: fit-content;
  margin: 0 0 30px;
  padding: 13px 0;
  display: flex;
  border-top: 1px solid rgba(255,255,255,.17);
  border-bottom: 1px solid rgba(255,255,255,.17);
}
.offer-line div { padding: 0 24px; display: flex; flex-direction: column; }
.offer-line div:first-child { padding-left: 0; border-right: 1px solid rgba(255,255,255,.17); }
.offer-line strong { color: var(--white); font-size: 1.15rem; }
.offer-line span { color: #90a8b2; font-size: 0.78rem; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button {
  min-height: 48px;
  padding: 11px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .62; cursor: wait; transform: none; }
.button-primary { color: var(--night); background: var(--lime); box-shadow: 0 10px 28px rgba(201,244,93,.12); }
.button-primary:hover { background: #dcff87; }
.button-accent { color: var(--night); background: var(--cyan); white-space: nowrap; }
.button-accent:hover { background: #7cebee; }
.button-light { color: var(--night); background: var(--white); }
.button-dark { color: var(--white); background: var(--night); }
.button-dark:hover { background: #133346; }
.text-link { color: #dce7eb; font-weight: 700; text-underline-offset: 5px; }
.text-link:hover { color: var(--white); }
.boundary-list {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  list-style: none;
}
.boundary-list li {
  padding: 5px 10px;
  color: #9fb4bd;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  font-size: .75rem;
}

.checker-wrap { position: relative; }
.checker-card {
  position: relative;
  z-index: 2;
  padding: clamp(27px, 4vw, 40px);
  color: var(--ink);
  background: rgba(249, 253, 255, .98);
  border: 1px solid rgba(255,255,255,.52);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.checker-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid #dce7ea;
  border-radius: 12px;
}
.checker-card > * { position: relative; z-index: 1; }
.card-kicker {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #59717c;
  font: 700 .73rem/1.2 "Cascadia Code", Consolas, monospace;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.card-kicker span { color: var(--blue); }
.checker-card h2 { margin-bottom: 12px; font-size: clamp(1.65rem, 3vw, 2.25rem); line-height: 1.08; letter-spacing: -.045em; }
.checker-card > p { color: var(--muted); }
.checker-card label,
.field label { display: block; margin-bottom: 7px; font-size: .86rem; font-weight: 720; }
.inline-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
input, textarea, select {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #b7c9d0;
  border-radius: 7px;
  outline: none;
}
input, select { min-height: 48px; padding: 10px 13px; }
textarea { padding: 11px 13px; resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(53,120,246,.16); }
.microcopy { margin: 17px 0 0 !important; font-size: .76rem; line-height: 1.5; }
.form-status { min-height: 1.5rem; margin-top: 10px; color: #495e67; font-size: .85rem; }
.form-status.is-error { color: #a32e2a; }
.form-status.is-success { color: #19633f; }
.check-result { margin-top: 13px; padding: 14px 15px; background: #eaf2f5; border-left: 4px solid var(--blue); border-radius: 4px; }
.check-result.available { background: #ecf8e3; border-color: #62a72e; }
.check-result.opportunity { background: #fff5df; border-color: var(--amber); }
.check-result.not-found { background: #f7ebeb; border-color: var(--red); }
.result-badge { margin-bottom: 3px; color: #536a74; font: 750 .7rem/1.2 "Cascadia Code", Consolas, monospace; letter-spacing: .08em; text-transform: uppercase; }
.check-result h3 { margin-bottom: 5px; font-size: 1.02rem; line-height: 1.35; }
.check-result p { margin-bottom: 7px; color: #4d616a; font-size: .84rem; line-height: 1.5; }
.check-result a { color: #174fae; font-size: .82rem; font-weight: 700; }
.result-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 16px; margin-top: 10px; }
.result-actions .result-cta { padding: 7px 10px; color: #081824; background: var(--lime); border-radius: 4px; text-decoration: none; }
.registration-mark { position: absolute; z-index: 3; width: 22px; height: 22px; }
.registration-mark::before, .registration-mark::after { content: ""; position: absolute; background: var(--cyan); }
.registration-mark::before { left: 10px; width: 1px; height: 22px; }
.registration-mark::after { top: 10px; width: 22px; height: 1px; }
.registration-mark-a { top: -31px; right: -31px; }
.registration-mark-b { bottom: -31px; left: -31px; }

.proof-rail { color: var(--white); background: var(--blue); }
.proof-rail-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.proof-rail p { margin: 0; font-size: .86rem; font-weight: 680; }
.proof-rail a { color: var(--white); font-size: .81rem; font-weight: 720; text-underline-offset: 4px; }
.signal-dot { width: 8px; height: 8px; margin-right: 8px; display: inline-block; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(201,244,93,.18); }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 110px 0; }
.section-heading { margin-bottom: 54px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: 70px; }
.section-heading.compact { display: block; }
.section-heading h2,
.sample-band h2,
.process-section h2,
.inquiry-section h2,
.upsell-section h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.section-heading > p { margin: 0; color: var(--muted); }
.deliverable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.deliverable-card { position: relative; min-height: 270px; padding: 30px; background: var(--white); }
.deliverable-card.featured { color: var(--white); background: var(--night-2); }
.card-number { display: block; margin-bottom: 58px; color: #6a7b82; font: 700 .73rem/1 "Cascadia Code", Consolas, monospace; }
.featured .card-number { color: var(--cyan); }
.deliverable-card h3 { margin-bottom: 10px; font-size: 1.28rem; letter-spacing: -.025em; }
.deliverable-card p { margin: 0; color: var(--muted); font-size: .91rem; }
.deliverable-card.featured p { color: #b6c9d1; }
.deliverable-card code { font-size: .78rem; }
.code-glyph { position: absolute; top: 27px; right: 27px; color: var(--lime); font: 600 1.2rem/1 "Cascadia Code", Consolas, monospace; }

.sample-band {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 90px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
  color: var(--white);
  background: var(--night);
  border-radius: 22px;
}
.sample-copy > p:not(.eyebrow) { max-width: 600px; margin: 24px 0 28px; color: #afc3cb; }
.blueprint-diagram { min-height: 440px; padding: 28px; border: 1px solid rgba(82,223,226,.38); background: rgba(82,223,226,.035); }
.diagram-label { margin-bottom: 35px; color: var(--cyan); font: 700 .72rem/1.2 "Cascadia Code", Consolas, monospace; letter-spacing: .08em; }
.diagram-node { min-height: 56px; padding: 13px 16px; display: flex; align-items: center; gap: 14px; color: #bdd0d7; border: 1px solid #41606d; background: #0c2230; font-size: .88rem; font-weight: 650; }
.diagram-node span { width: 25px; height: 25px; display: grid; place-items: center; color: var(--cyan); border: 1px solid #436d7c; border-radius: 50%; font: 700 .7rem/1 "Cascadia Code", Consolas, monospace; }
.diagram-node.active { color: var(--night); background: var(--cyan); border-color: var(--cyan); }
.diagram-node.active span { color: var(--night); border-color: rgba(7,23,33,.4); }
.diagram-node.final { border-color: var(--lime); }
.blueprint-diagram i { width: 1px; height: 35px; margin-left: 29px; display: block; background: #426170; }

.fit-section { padding-bottom: 80px; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit-card { padding: 34px; background: var(--white); border: 1px solid var(--line); }
.fit-card h3 { margin-bottom: 24px; font-size: 1.25rem; }
.fit-card h3 span { width: 30px; height: 30px; margin-right: 8px; display: inline-grid; place-items: center; border-radius: 50%; }
.fit-card.good h3 span { color: #17472e; background: #d9f0ca; }
.fit-card.caution h3 span { color: #6e302e; background: #f6d8d5; }
.fit-card ul { margin: 0; padding-left: 21px; color: var(--muted); }
.fit-card li + li { margin-top: 9px; }
.fit-note { margin: 20px 0 0; color: var(--muted); font-size: .88rem; text-align: center; }

.process-section {
  padding: 100px max(20px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(60px, 10vw, 150px);
  color: var(--white);
  background: var(--blue);
}
.process-intro { position: sticky; top: 35px; align-self: start; }
.process-intro > p:last-child { margin: 22px 0 0; color: #d5e3ff; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { padding: 28px 0; display: grid; grid-template-columns: 60px 1fr; gap: 18px; border-top: 1px solid rgba(255,255,255,.3); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.3); }
.process-list li > span { color: var(--lime); font: 700 .78rem/1.6 "Cascadia Code", Consolas, monospace; }
.process-list strong { display: block; margin-bottom: 5px; font-size: 1.12rem; }
.process-list p { margin: 0; color: #d7e3f9; font-size: .92rem; }

.upsell-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 90px auto 0;
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  background: #e9f0f3;
  border: 1px solid #bacbd2;
  border-left: 6px solid var(--amber);
}
.upsell-section h2 { max-width: 720px; font-size: clamp(2rem, 4vw, 3.5rem); }
.upsell-section > div > p:last-child { max-width: 720px; margin: 18px 0 0; color: var(--muted); }
.upsell-action { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.upsell-action > span { font: 750 .76rem/1 "Cascadia Code", Consolas, monospace; color: #6a561b; text-transform: uppercase; }

.inquiry-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 9vw, 130px);
}
.inquiry-intro > p:not(.eyebrow) { margin: 24px 0 32px; color: var(--muted); }
.price-stamp { width: 180px; padding: 15px 18px; display: grid; color: var(--white); background: var(--night); border-left: 5px solid var(--lime); }
.price-stamp span, .price-stamp small { color: #a6bbc4; font-size: .7rem; }
.price-stamp strong { font-size: 2rem; line-height: 1.1; }
.inquiry-form { padding: 38px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 20px 55px rgba(7,23,33,.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 17px; }
.field label span { color: #71828a; font-weight: 500; }
.trap { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
.consent { margin: 4px 0 20px; display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: var(--muted); font-size: .84rem; line-height: 1.5; }
.consent input { width: 18px; min-height: 18px; margin-top: 2px; }
.consent a { color: #174fae; }
.submit-button { width: 100%; }
.dark-status { margin-bottom: -10px; }

.site-footer { padding: 55px max(20px, calc((100% - var(--max)) / 2)) 30px; color: #a8bbc3; background: var(--night); }
.footer-top { padding-bottom: 38px; display: flex; justify-content: space-between; gap: 40px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-top p { max-width: 480px; margin: 0; font-size: .9rem; text-align: right; }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 25px; }
.footer-bottom p { margin: 0; font-size: .76rem; }
.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { font-size: .78rem; }
.outcome-note { margin: 18px 0 0; color: #718a94; font-size: .7rem; }

/* Sample and legal pages */
.subpage { background: #f4f9fb; }
.subpage-header { width: 100%; padding: 0 max(20px, calc((100% - var(--max)) / 2)); color: var(--white); background: var(--night); }
.sample-hero,
.release-hero {
  position: relative;
  overflow: hidden;
  padding: 105px max(20px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
  color: var(--white);
  background: linear-gradient(135deg, #071721, #0c2c3d);
}
.sample-hero > *, .release-hero > * { position: relative; z-index: 1; }
.sample-hero h1, .release-hero h1 { font-size: clamp(3rem, 6vw, 5.6rem); }
.sample-hero p:not(.eyebrow), .release-hero p:not(.eyebrow) { max-width: 750px; color: #b5c8d0; font-size: 1.05rem; }
.light-link { color: var(--white); }
.sample-spec { padding: 27px; border: 1px solid rgba(82,223,226,.45); background: rgba(7,23,33,.72); box-shadow: 18px 18px 0 rgba(53,120,246,.2); }
.spec-head { padding-bottom: 16px; display: flex; justify-content: space-between; color: var(--cyan); border-bottom: 1px solid #345564; font: 700 .73rem/1.3 "Cascadia Code", Consolas, monospace; }
.sample-spec dl { margin: 0; }
.sample-spec dl div { padding: 12px 0; display: grid; grid-template-columns: 90px 1fr; gap: 12px; border-bottom: 1px solid #294755; }
.sample-spec dt { color: #7895a1; font-size: .76rem; }
.sample-spec dd { margin: 0; color: #e2eaed; font-size: .8rem; }
.sample-document { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 90px 0 120px; display: grid; grid-template-columns: 235px 1fr; gap: 80px; }
.document-index { position: sticky; top: 25px; align-self: start; padding: 24px; background: var(--white); border: 1px solid var(--line); }
.document-index > p { margin-bottom: 14px; color: #687b84; font: 700 .73rem/1.2 "Cascadia Code", Consolas, monospace; text-transform: uppercase; }
.document-index ol { margin: 0 0 25px; padding-left: 22px; }
.document-index li { padding: 4px 0; color: #586b74; font-size: .84rem; }
.document-index a { text-underline-offset: 3px; }
.small-button { width: 100%; min-height: 40px; padding: 9px 12px; font-size: .8rem; }
.document-body { min-width: 0; }
.document-section { padding: 0 0 65px; margin-bottom: 65px; border-bottom: 1px solid var(--line); }
.document-section:last-child { margin-bottom: 0; }
.doc-label { margin-bottom: 16px; color: #687b84; font: 700 .72rem/1.2 "Cascadia Code", Consolas, monospace; letter-spacing: .08em; text-transform: uppercase; }
.doc-label span { margin-right: 9px; color: var(--blue); }
.document-section h2 { max-width: 690px; margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; letter-spacing: -.045em; }
.document-section > p { max-width: 790px; color: var(--muted); }
pre { max-width: 100%; margin: 28px 0 15px; padding: 25px; overflow-x: auto; color: #d5f4f4; background: #0a202d; border-left: 5px solid var(--cyan); font-size: .78rem; line-height: 1.75; }
.doc-note { padding: 11px 14px; background: #e8f0f3; border-left: 3px solid #9aafb8; font-size: .8rem; }
.doc-note a { color: #174fae; font-weight: 700; }
.evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.evidence-grid article { padding: 21px; background: var(--white); border: 1px solid var(--line); }
.evidence-grid strong { font-size: .9rem; }
.evidence-grid p { margin: 7px 0 0; color: var(--muted); font-size: .8rem; }
.checklist { margin: 25px 0; padding: 0; list-style: none; }
.checklist li { padding: 16px 0; display: grid; grid-template-columns: 35px 1fr; gap: 10px; border-top: 1px solid var(--line); }
.checklist li:last-child { border-bottom: 1px solid var(--line); }
.checklist li > span { width: 25px; height: 25px; display: grid; place-items: center; color: #1f623e; background: #dff1d5; border-radius: 50%; font-weight: 800; }
.checklist strong { font-size: .9rem; }
.checklist p { margin: 2px 0 0; color: var(--muted); font-size: .8rem; }
.test-table { margin: 26px 0; border: 1px solid var(--line); }
.test-row { display: grid; grid-template-columns: 1.7fr .65fr .65fr; }
.test-row + .test-row { border-top: 1px solid var(--line); }
.test-row span { padding: 12px 14px; font-size: .8rem; }
.test-row span + span { border-left: 1px solid var(--line); }
.test-head { color: var(--white); background: var(--night-2); font-weight: 700; }
.handoff-steps { margin: 25px 0; padding: 0; list-style: none; }
.handoff-steps li { margin-bottom: 9px; padding: 15px; display: grid; grid-template-columns: 34px 1fr; align-items: center; background: var(--white); border: 1px solid var(--line); }
.handoff-steps span { width: 25px; height: 25px; display: grid; place-items: center; color: var(--white); background: var(--blue); border-radius: 50%; font-size: .72rem; font-weight: 800; }
.handoff-steps p { margin: 0; color: var(--muted); font-size: .84rem; }
.compact-footer { padding-top: 28px; }

.legal-layout { width: min(calc(100% - 40px), 940px); margin: 0 auto; padding: 90px 0 120px; }
.legal-heading { margin-bottom: 65px; }
.legal-heading .eyebrow { color: #677b84; }
.legal-heading h1 { max-width: 800px; margin-bottom: 13px; font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1; letter-spacing: -.06em; }
.legal-heading > p:last-child { color: var(--muted); }
.legal-copy { padding: clamp(30px, 6vw, 65px); background: var(--white); border: 1px solid var(--line); }
.legal-copy section + section { margin-top: 42px; padding-top: 42px; border-top: 1px solid #dde6e9; }
.legal-copy h2 { margin-bottom: 11px; font-size: 1.35rem; letter-spacing: -.025em; }
.legal-copy p { margin: 0; color: var(--muted); }

/* Preflight Packet */
.release-hero { background: linear-gradient(135deg, #19160e, #352916); }
.release-hero::before { opacity: .1; background-image: linear-gradient(rgba(255,190,96,.4) 1px, transparent 1px), linear-gradient(90deg, rgba(255,190,96,.4) 1px, transparent 1px); }
.release-chip { width: fit-content; margin: 25px 0; padding: 7px 11px; color: #3b2b0d; background: var(--amber); font: 750 .75rem/1.2 "Cascadia Code", Consolas, monospace; text-transform: uppercase; }
.release-panel { padding: 30px; color: #f7f1e6; background: rgba(12,12,9,.63); border: 1px solid rgba(255,190,96,.43); }
.release-panel h2 { margin-bottom: 18px; font-size: 1.35rem; }
.release-panel ul { margin: 0; padding-left: 20px; color: #d7cab4; font-size: .86rem; }
.release-panel li + li { margin-top: 10px; }
.release-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.release-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-top: 5px solid var(--amber); }
.release-card h3 { font-size: 1.2rem; }
.release-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.scope-callout { margin-top: 30px; padding: 24px; color: #66511f; background: #fff4de; border: 1px solid #e5c989; }
.scope-callout strong { color: #43350f; }

@media (max-width: 960px) {
  .nav-links { gap: 16px; }
  .nav-links > a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-copy { max-width: 760px; }
  .checker-wrap { max-width: 680px; }
  .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
  .sample-band, .sample-hero, .release-hero { grid-template-columns: 1fr; }
  .blueprint-diagram { min-height: auto; }
  .process-section { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .inquiry-section { grid-template-columns: 1fr; }
  .inquiry-intro { max-width: 720px; }
  .sample-document { grid-template-columns: 1fr; gap: 45px; }
  .document-index { position: static; }
  .document-index ol { display: grid; grid-template-columns: repeat(3, 1fr); }
  .release-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .site-header { width: min(calc(100% - 28px), var(--max)); min-height: 72px; }
  .nav-links .nav-cta { padding: 7px 11px; font-size: .78rem; }
  .hero { width: min(calc(100% - 28px), var(--max)); padding: 50px 0 75px; }
  .hero h1, .sample-hero h1, .release-hero h1 { font-size: clamp(2.75rem, 14vw, 4.4rem); }
  .offer-line { width: 100%; }
  .offer-line div { padding: 0 12px; }
  .inline-form { grid-template-columns: 1fr; }
  .inline-form .button { width: 100%; }
  .registration-mark { display: none; }
  .proof-rail-inner { min-height: 110px; padding: 20px 0; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
  .proof-rail-inner p:nth-child(2) { display: none; }
  .section { width: min(calc(100% - 28px), var(--max)); padding: 75px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 35px; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .deliverable-card { min-height: 230px; }
  .sample-band { width: calc(100% - 28px); padding: 42px 25px; border-radius: 14px; }
  .fit-grid, .form-row, .evidence-grid { grid-template-columns: 1fr; }
  .process-section { padding: 75px 20px; }
  .upsell-section { width: calc(100% - 28px); margin-top: 65px; padding: 27px; grid-template-columns: 1fr; gap: 25px; }
  .upsell-action { align-items: flex-start; }
  .inquiry-section { width: calc(100% - 28px); padding: 75px 0; gap: 42px; }
  .inquiry-form { padding: 24px; }
  .footer-top, .footer-bottom { flex-direction: column; }
  .footer-top p { text-align: left; }
  .sample-hero, .release-hero { padding: 72px 20px; }
  .sample-document { width: calc(100% - 28px); padding: 60px 0 85px; }
  .document-index ol { grid-template-columns: 1fr 1fr; }
  .test-row { grid-template-columns: 1.45fr .7fr .7fr; }
  .test-row span { padding: 9px 7px; font-size: .7rem; }
  .legal-layout { width: calc(100% - 28px); padding: 65px 0 90px; }
  .legal-copy { padding: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
