:root {
  --bg: #050604;
  --bg-2: #090a08;
  --ink: #f7f4ea;
  --ink-soft: rgba(247, 244, 234, 0.72);
  --muted: rgba(247, 244, 234, 0.48);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.075);
  --panel: rgba(18, 20, 16, 0.82);
  --panel-strong: #11130f;
  --paper: #f2efe4;
  --paper-2: #e8e4d5;
  --paper-ink: #11130f;
  --paper-muted: rgba(17, 19, 15, 0.58);
  --accent: #c9f46f;
  --accent-deep: #6d8338;
  --blue: #8fc4ff;
  --amber: #e7b76a;
  --radius: 8px;
  --shadow: 0 44px 150px rgba(0, 0, 0, 0.38);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #050604 0%, #080907 44%, #050604 100%);
  background-size: 112px 100%, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: hidden;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: 82px;
  line-height: 0.94;
  font-weight: 680;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 740px;
  font-size: 52px;
  line-height: 1.02;
  font-weight: 650;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  font-size: 18px;
  line-height: 1.22;
  font-weight: 680;
}

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

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

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

.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;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 6, 4, 0.88), rgba(5, 6, 4, 0.62));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(5, 6, 4, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
}

.nav {
  width: min(1200px, calc(100% - 48px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 740;
}

.brand-symbol,
.footer-symbol {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--accent);
  filter: drop-shadow(0 0 16px rgba(201, 244, 111, 0.16));
}

.brand-symbol rect,
.footer-symbol rect {
  fill: rgba(201, 244, 111, 0.08);
  stroke: rgba(201, 244, 111, 0.82);
  stroke-width: 1.7;
}

.brand-symbol path,
.footer-symbol path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-symbol circle,
.footer-symbol circle {
  fill: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.62);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  outline: none;
}

.nav-links .nav-cta {
  margin-left: 6px;
  color: #10120e;
  background: var(--accent);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.38) inset;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: #10120e;
  background: #d8ff85;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: currentColor;
}

.hero,
.intro,
.handoff-section,
.route-section,
.offer-section {
  scroll-margin-top: 86px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0) 18%),
    linear-gradient(90deg, rgba(201, 244, 111, 0.07), rgba(201, 244, 111, 0) 34%, rgba(143, 196, 255, 0.045) 78%, rgba(143, 196, 255, 0)),
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 96px 96px, 96px 96px, auto;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(5, 6, 4, 0), #070807 86%);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 116px 0 72px;
}

.hero-intro {
  min-width: 0;
  max-width: none;
}

.hero-text {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid rgba(201, 244, 111, 0.28);
  animation: rise 620ms var(--ease) both;
}

.hero h1 {
  max-width: 650px;
  font-size: 62px;
  text-wrap: pretty;
}

.announce,
.eyebrow {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.announce {
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(247, 244, 234, 0.7);
  font-size: 18px;
  line-height: 1.66;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 760;
  transition: transform 140ms var(--ease), background 140ms var(--ease), border-color 140ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  color: #10120e;
  background: linear-gradient(180deg, #dcff89, var(--accent));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.46) inset, 0 16px 38px rgba(201, 244, 111, 0.12);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.055);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.11);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 20px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 12px;
  color: rgba(247, 244, 234, 0.58);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-proof span:first-child {
  padding-left: 0;
  color: var(--accent);
  border-left: 0;
}

.hero-evidence {
  width: 100%;
  margin-top: 0;
  color: var(--paper-ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.7)),
    var(--paper);
  box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
  transform: perspective(1600px) rotateX(var(--hero-tilt-x, 0deg)) rotateY(var(--hero-tilt-y, 0deg)) translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0);
  transition: transform 180ms var(--ease);
  opacity: 1;
}

.evidence-chrome {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.12);
  background: rgba(255, 255, 255, 0.36);
}

.evidence-window {
  display: none;
}

.evidence-chrome span,
.evidence-minihead span,
.evidence-main-top span,
.evidence-route span,
.evidence-output > span,
.system-board-top span,
.system-steps span,
.focus-top span,
.focus-signal span,
.focus-route span,
.specimen-top span,
.specimen-footer span,
.route-artifact-top span,
.route-flow span,
.mail-note span,
.mail-envelope span,
.followup-card span,
.request-card-top span,
.request-inputs span,
.reply-preview span,
.handoff-panel > span {
  color: var(--accent-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 780;
  text-transform: uppercase;
}

.evidence-chrome > span {
  color: #20231b;
  font-weight: 820;
}

.evidence-chrome em {
  color: rgba(17, 19, 15, 0.56);
  font-size: 12px;
  font-style: normal;
  font-weight: 720;
}

.evidence-shell {
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
  min-height: 0;
}

.evidence-accounts {
  border-right: 1px solid rgba(17, 19, 15, 0.12);
}

.evidence-minihead,
.evidence-accounts article,
.evidence-main-top,
.evidence-output {
  padding: 18px;
}

.evidence-minihead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.1);
}

.evidence-minihead strong {
  color: rgba(17, 19, 15, 0.62);
  font-size: 12px;
}

.evidence-accounts article {
  display: grid;
  gap: 6px;
  min-height: 74px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.09);
}

.evidence-accounts article.is-active {
  background: rgba(201, 244, 111, 0.2);
  box-shadow: 3px 0 0 var(--accent-deep) inset;
}

.evidence-accounts article span {
  color: rgba(17, 19, 15, 0.72);
  font-size: 13px;
  font-weight: 720;
}

.evidence-accounts article strong {
  color: #10120e;
  font-size: 15px;
  line-height: 1.25;
}

.evidence-accounts article em {
  color: rgba(17, 19, 15, 0.56);
  font-size: 12px;
  font-style: normal;
}

.evidence-main {
  display: grid;
  grid-template-rows: auto 1fr;
}

.evidence-main-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.1);
}

.evidence-main-top strong {
  display: block;
  margin-top: 8px;
  color: #10120e;
  font-size: 26px;
  line-height: 1;
}

.evidence-main-top p {
  max-width: 220px;
  color: rgba(17, 19, 15, 0.56);
  font-size: 13px;
  line-height: 1.5;
}

.evidence-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 19, 15, 0.1);
}

.evidence-route article {
  min-height: 154px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.18)),
    var(--paper);
}

.evidence-route strong {
  display: block;
  margin-top: 34px;
  color: #10120e;
  font-size: 16px;
  line-height: 1.14;
}

.evidence-route p {
  margin-top: 12px;
  color: rgba(17, 19, 15, 0.56);
  font-size: 13px;
  line-height: 1.48;
}

.evidence-output {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(17, 19, 15, 0.12);
  border-left: 0;
  background: rgba(17, 19, 15, 0.04);
}

.evidence-output strong {
  display: block;
  margin-top: 12px;
  color: #10120e;
  font-size: 20px;
  line-height: 1.08;
}

.evidence-output p {
  margin-top: 14px;
  color: rgba(17, 19, 15, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.evidence-output ul {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 0;
}

.evidence-output li {
  position: relative;
  padding-left: 17px;
  color: rgba(17, 19, 15, 0.64);
  font-size: 13px;
}

.evidence-output li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-deep);
  content: "";
}

.intro,
.route-section,
.offer-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #070807 0%, #050604 100%);
  background-size: 112px 100%, auto;
}

.intro::before,
.route-section::before,
.offer-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  content: "";
  transform: translateX(-50%);
}

.intro::after,
.route-section::after,
.offer-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(201, 244, 111, 0.035), transparent 22%, transparent 78%, rgba(143, 196, 255, 0.024)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.018));
  content: "";
  pointer-events: none;
}

.intro > *,
.route-section > *,
.offer-section > * {
  position: relative;
  z-index: 1;
}

.system-room {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(560px, 1fr);
  gap: 64px;
  align-items: center;
}

.system-narrative p:not(.eyebrow),
.handoff-copy p,
.route-copy p,
.closing-head p,
.request-card-copy {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.system-narrative h2,
.route-copy h2,
.closing-head h2 {
  margin-top: 18px;
}

.system-narrative p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 20px;
}

.system-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 430px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.system-metrics span {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
}

.system-metrics strong {
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.system-board,
.route-artifact,
.request-card,
.fit-panel {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
}

.system-board-top,
.route-artifact-top,
.request-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.system-board-top strong,
.route-artifact-top strong,
.request-card-top strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.12;
}

.system-board-top em,
.route-artifact-top em {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--accent);
  border: 1px solid rgba(201, 244, 111, 0.2);
  border-radius: 999px;
  background: rgba(201, 244, 111, 0.07);
  font-size: 12px;
  font-style: normal;
  font-weight: 740;
}

.system-board-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  min-height: 360px;
}

.system-steps {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.system-steps article {
  min-height: 88px;
  display: grid;
  grid-template-columns: 52px minmax(130px, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(13, 15, 12, 0.92);
}

.system-steps strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.system-steps p {
  color: rgba(247, 244, 234, 0.58);
  font-size: 13px;
  line-height: 1.5;
}

.system-focus {
  display: grid;
  align-content: start;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.system-focus > div {
  min-height: 106px;
  padding: 18px;
  background: rgba(14, 16, 13, 0.92);
}

.system-focus strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-size: 17px;
  line-height: 1.18;
}

.system-focus p {
  margin-top: 10px;
  color: rgba(247, 244, 234, 0.56);
  font-size: 12px;
  line-height: 1.45;
}

.system-board-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.system-board-footer span,
.proof-pack-tags span,
.offer-points li,
.reply-preview li,
.handoff-panel strong {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: rgba(247, 244, 234, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 680;
}

.handoff-section {
  padding: 96px 0;
  color: var(--paper-ink);
  background:
    linear-gradient(90deg, rgba(17, 19, 15, 0.045) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, var(--paper) 0%, #ebe7d9 100%);
  background-size: 112px 100%, auto;
}

.handoff-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(540px, 1fr);
  gap: 86px;
  align-items: center;
}

.handoff-copy .eyebrow {
  color: var(--accent-deep);
}

.handoff-copy p {
  max-width: 500px;
  margin-top: 20px;
  color: var(--paper-muted);
}

.handoff-specimen {
  border: 1px solid rgba(17, 19, 15, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    #f8f5eb;
  box-shadow: 0 38px 110px rgba(17, 19, 15, 0.18), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}

.specimen-top {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.12);
}

.specimen-top strong {
  color: #10120e;
  font-size: 26px;
  line-height: 1;
}

.specimen-top em {
  color: rgba(17, 19, 15, 0.58);
  font-size: 12px;
  font-style: normal;
  font-weight: 740;
}

.specimen-grid {
  display: grid;
}

.specimen-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.62fr) minmax(0, 1fr) minmax(170px, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.1);
}

.specimen-head {
  min-height: 38px;
  background: rgba(201, 244, 111, 0.18);
}

.specimen-head span {
  color: rgba(17, 19, 15, 0.48);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.specimen-row strong {
  color: #10120e;
  font-size: 14px;
}

.specimen-row span:not([role="columnheader"]) {
  color: rgba(17, 19, 15, 0.58);
  font-size: 13px;
}

.specimen-row em {
  color: #10120e;
  font-size: 13px;
  font-style: normal;
  font-weight: 680;
}

.specimen-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 22px 22px;
}

.specimen-footer span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: rgba(17, 19, 15, 0.62);
  border: 1px solid rgba(17, 19, 15, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.48);
}

.route-section {
  background:
    linear-gradient(180deg, #050604 0%, #090a08 54%, #060706 100%);
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(600px, 1fr);
  gap: 70px;
  align-items: center;
}

.route-copy p {
  max-width: 520px;
  margin-top: 20px;
}

.route-artifact {
  min-height: 486px;
  padding: 18px;
}

.route-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.route-flow div {
  min-height: 104px;
  padding: 18px;
  background: rgba(9, 10, 8, 0.78);
}

.route-flow div:nth-child(2) span,
.followup-card span {
  color: var(--blue);
}

.route-flow div:nth-child(3) span,
.route-artifact-top em {
  color: var(--amber);
}

.route-flow strong {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.18;
}

.mail-stage {
  position: relative;
  min-height: 272px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    rgba(5, 6, 4, 0.4);
  background-size: 44px 44px;
}

.mail-stage::before {
  position: absolute;
  top: 50%;
  left: 42px;
  right: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 244, 111, 0.18), rgba(231, 183, 106, 0.44), rgba(143, 196, 255, 0.18));
  content: "";
}

.mail-note,
.mail-envelope,
.followup-card {
  position: absolute;
  border: 1px solid rgba(17, 19, 15, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.24);
}

.mail-note {
  top: 48px;
  left: 34px;
  width: 235px;
  padding: 20px;
  color: var(--paper-ink);
  background: #f9f6eb;
  transform: rotate(-2deg);
}

.mail-note strong {
  display: block;
  margin-top: 16px;
  color: #10120e;
  font-size: 23px;
  line-height: 1.03;
}

.mail-note p {
  margin-top: 14px;
  color: rgba(17, 19, 15, 0.58);
  font-size: 13px;
  line-height: 1.48;
}

.mail-envelope {
  top: 76px;
  left: 246px;
  width: 260px;
  min-height: 154px;
  padding: 22px;
  color: var(--paper-ink);
  background: #ebe5d4;
  transform: rotate(1.3deg);
}

.mail-envelope::before,
.mail-envelope::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.mail-envelope::before {
  background:
    linear-gradient(28deg, transparent 49.5%, rgba(17, 19, 15, 0.11) 50%, transparent 50.8%),
    linear-gradient(152deg, transparent 49.5%, rgba(17, 19, 15, 0.09) 50%, transparent 50.8%);
}

.mail-envelope strong {
  display: block;
  margin-top: 12px;
  color: #10120e;
  font-size: 20px;
}

.mail-envelope p {
  margin-top: 48px;
  color: rgba(17, 19, 15, 0.54);
  font-size: 13px;
}

.followup-card {
  right: 28px;
  bottom: 28px;
  width: 230px;
  padding: 17px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(15, 17, 16, 0.96);
}

.followup-card ul {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.followup-card li {
  position: relative;
  padding-left: 15px;
  color: rgba(247, 244, 234, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.followup-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.offer-section {
  padding-bottom: 92px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #060706 0%, #080907 54%, #050604 100%);
  background-size: 112px 100%, auto;
}

.closing-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.58fr);
  gap: 72px;
  align-items: end;
}

.closing-head p {
  max-width: 460px;
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
  margin-top: 38px;
}

.closing-main {
  display: grid;
  gap: 22px;
}

.offer-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.offer-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.46fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 118px;
  padding: 24px 28px;
  background:
    linear-gradient(90deg, rgba(201, 244, 111, 0.07), rgba(255, 255, 255, 0.018) 38%, rgba(255, 255, 255, 0.012)),
    var(--panel-strong);
}

.offer-list article:nth-child(2) {
  background:
    linear-gradient(90deg, rgba(143, 196, 255, 0.06), rgba(255, 255, 255, 0.018) 38%, rgba(255, 255, 255, 0.012)),
    var(--panel-strong);
}

.offer-list article:nth-child(3) {
  background:
    linear-gradient(90deg, rgba(231, 183, 106, 0.06), rgba(255, 255, 255, 0.018) 38%, rgba(255, 255, 255, 0.012)),
    var(--panel-strong);
}

.offer-title h3 {
  margin-top: 7px;
}

.offer-list p {
  color: rgba(247, 244, 234, 0.64);
  font-size: 14px;
  line-height: 1.58;
}

.offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.offer-list strong {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
}

.offer-list small {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.fit-panel {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
}

.fit-panel-copy {
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.fit-panel-copy h3 {
  margin-top: 18px;
  font-size: 26px;
  line-height: 1.08;
}

.fit-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.fit-columns article {
  padding: 26px;
  background: rgba(12, 14, 11, 0.92);
}

.fit-columns ul {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.fit-columns li {
  position: relative;
  padding-left: 17px;
  color: rgba(247, 244, 234, 0.62);
  font-size: 13px;
  line-height: 1.52;
}

.fit-columns li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.fit-columns article:nth-child(2) li::before {
  background: var(--amber);
}

.request-card {
  position: sticky;
  top: 86px;
  padding: 0;
}

.request-card > p,
.request-inputs,
.reply-preview,
.handoff-panel,
.request-card .button {
  margin-right: 22px;
  margin-left: 22px;
}

.request-card-copy {
  margin-top: 18px;
}

.cta-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.cta-rail span {
  min-height: 66px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
  color: rgba(247, 244, 234, 0.72);
  background: rgba(8, 9, 7, 0.8);
  font-size: 12px;
  font-weight: 680;
}

.cta-rail em {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-style: normal;
  font-weight: 780;
}

.request-inputs {
  display: grid;
  margin-top: 8px;
}

.request-inputs li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 42px;
  color: rgba(247, 244, 234, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  font-size: 13px;
}

.reply-preview {
  margin-top: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(143, 196, 255, 0.14);
  border-bottom: 1px solid rgba(143, 196, 255, 0.14);
}

.reply-preview strong {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.28;
}

.reply-preview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.handoff-panel {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 18px;
  padding: 15px;
  border: 1px solid rgba(201, 244, 111, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.026);
}

.handoff-panel div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}

.handoff-panel strong {
  justify-content: center;
  min-height: 36px;
  border: 0;
  border-radius: 0;
  background: rgba(8, 9, 7, 0.74);
  text-align: center;
}

.request-card .button {
  width: calc(100% - 44px);
  min-height: 50px;
  margin-bottom: 22px;
}

.footer {
  position: relative;
  padding: 34px 0 42px;
  color: rgba(247, 244, 234, 0.56);
  background: #050604;
}

.footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 244, 111, 0.2), transparent);
  content: "";
  transform: translateX(-50%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 72px;
  padding: 12px 0;
  font-size: 13px;
}

.footer-lockup {
  display: grid;
  gap: 8px;
}

.footer-lockup > p:last-child {
  color: rgba(247, 244, 234, 0.42);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 244, 234, 0.78);
  font-weight: 720;
}

.footer-symbol {
  width: 24px;
  height: 24px;
}

.footer-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.footer-status span,
.footer-status a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: rgba(247, 244, 234, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.026);
  font-size: 12px;
  font-weight: 680;
}

.footer-status a {
  color: #10120e;
  border-color: rgba(201, 244, 111, 0.5);
  background: var(--accent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (hover: hover) and (pointer: fine) {
  .hero-evidence:hover,
  .system-board:hover,
  .route-artifact:hover,
  .request-card:hover {
    border-color: rgba(201, 244, 111, 0.22);
  }

  .offer-list article:hover {
    background-color: rgba(255, 255, 255, 0.025);
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 68px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: 68px;
  }

  h2 {
    font-size: 44px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 116px 0 72px;
  }

  .hero-evidence {
    max-width: 820px;
  }

  .system-room,
  .route-layout,
  .handoff-layout,
  .closing-head,
  .closing-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .request-card {
    position: relative;
    top: auto;
  }

  .evidence-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .evidence-output {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(17, 19, 15, 0.12);
    border-left: 0;
  }

  .evidence-output ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .route-artifact,
  .handoff-specimen {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .section-inner,
  .nav {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 48px;
    line-height: 0.98;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 48px;
    line-height: 0.98;
  }

  h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(8, 9, 7, 0.98);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 42px;
  }

  .nav-links .nav-cta {
    margin: 6px 0 0;
    justify-content: center;
  }

  .hero-content {
    padding: 98px 0 52px;
  }

  .hero-text {
    padding-left: 0;
    border-left: 0;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    min-height: 28px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.035);
  }

  .hero-evidence {
    display: none;
  }

  .intro,
  .handoff-section,
  .route-section,
  .offer-section {
    padding: 78px 0;
  }

  .system-metrics,
  .fit-columns {
    grid-template-columns: 1fr;
  }

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

  .system-steps article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .system-steps p {
    grid-column: 2;
  }

  .system-focus {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }

  .system-board-top,
  .route-artifact-top,
  .request-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .handoff-layout {
    gap: 30px;
  }

  .specimen-top,
  .specimen-row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 16px;
  }

  .specimen-head {
    display: none;
  }

  .specimen-top strong {
    font-size: 22px;
  }

  .route-layout {
    gap: 30px;
  }

  .route-artifact {
    min-height: auto;
  }

  .route-flow {
    grid-template-columns: 1fr;
  }

  .mail-stage {
    min-height: 450px;
  }

  .mail-stage::before {
    display: none;
  }

  .mail-note,
  .mail-envelope,
  .followup-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    margin: 16px;
    transform: none;
  }

  .mail-envelope p {
    margin-top: 30px;
  }

  .closing-head {
    gap: 20px;
  }

  .offer-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .offer-list strong {
    justify-items: start;
  }

  .fit-panel {
    grid-template-columns: 1fr;
  }

  .fit-panel-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .cta-rail,
  .handoff-panel div {
    grid-template-columns: 1fr;
  }

  .request-card > p,
  .request-inputs,
  .reply-preview,
  .handoff-panel,
  .request-card .button {
    margin-right: 18px;
    margin-left: 18px;
  }

  .request-card .button {
    width: calc(100% - 36px);
  }

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

  .footer-status {
    justify-content: flex-start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 40px;
  }

  .hero h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  .system-metrics strong {
    font-size: 28px;
  }

  .offer-list article,
  .fit-panel-copy,
  .fit-columns article {
    padding: 22px;
  }
}

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