/* Secoya Systems — Evidentiary Modernism design system
   Preserved from the existing brand: dark base, Evidence Lime accent,
   IBM Plex Mono/Sans + Space Grotesk. Static, editable, no build step. */

:root {
  --bg:        #05080c;   /* deepest */
  --bg-1:      #080c11;   /* panels */
  --bg-2:      #0b1016;   /* cards */
  --bg-3:      #0e141c;   /* raised */
  --line:      #1b2430;   /* hairline border */
  --line-soft: #131a23;
  --ink:       #dfe6ec;   /* foreground */
  --ink-dim:   #9aa6b2;   /* muted */
  --ink-faint: #515b66;   /* captions */
  --lime:      #c8ef4b;   /* Evidence Lime */
  --lime-bright:#d9ff57;
  --amber:     #f3bd55;   /* signal: caution / declared */
  --coral:     #ff756b;   /* signal: fail / not established */
  --tan:       #c3b794;   /* signal: external */
  --focus:     #d9ff57;

  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --sans: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --display: "Space Grotesk", var(--sans);

  --maxw: 1120px;
  --gut: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle grid/scanline atmosphere — evidence surface */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    linear-gradient(transparent 0 96%, rgba(200,239,75,.02) 96% 100%) 0 0/100% 34px,
    radial-gradient(1200px 600px at 78% -10%, rgba(200,239,75,.05), transparent 60%);
}
main, header, footer { position: relative; z-index: 1; }

a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--lime); font-weight: 500;
}
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.08; letter-spacing: -.015em; color: #fff; }
h1 { font-size: clamp(30px, 5.2vw, 54px); }
h2 { font-size: clamp(23px, 3.4vw, 34px); }
h3 { font-size: clamp(17px, 2vw, 21px); letter-spacing: -.01em; }
p { color: var(--ink-dim); max-width: 66ch; }
strong { color: var(--ink); font-weight: 600; }
.lead { font-size: clamp(17px, 2.2vw, 21px); color: var(--ink); line-height: 1.5; }
code, .mono { font-family: var(--mono); font-size: .92em; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,8,12,.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 62px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  line-height: 0;
}
.brand .logo {
  display: block;
  width: auto;
  height: 15px;
  max-width: 108px;
  max-height: 15px;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand small { font-family: var(--mono); font-size: 10px; color: var(--ink-faint); letter-spacing: .14em; align-self: center; line-height: 1; }
.site-foot .brand .logo {
  width: auto;
  height: 17px;
  max-width: 123px;
  max-height: 17px;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .04em; color: var(--ink-dim);
  padding: 8px 11px; border-radius: 4px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--ink); background: var(--bg-2); }
.nav a[aria-current="page"] { color: var(--lime); }
.nav-cta { color: var(--bg) !important; background: var(--lime); font-weight: 600; }
.nav-cta:hover { background: var(--lime-bright) !important; color: var(--bg) !important; }
.menu-btn { display: none; background: none; border: 1px solid var(--line); color: var(--ink); width: 40px; height: 36px; border-radius: 5px; font-family: var(--mono); cursor: pointer; }

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav {
    position: fixed; inset: 62px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-1); border-bottom: 1px solid var(--line); padding: 8px var(--gut) 16px;
    transform: translateY(-120%); transition: transform .22s ease; }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: 13px 6px; font-size: 14px; border-bottom: 1px solid var(--line-soft); }
  .nav-cta { margin-top: 10px; text-align: center; border-radius: 5px; }
}

/* ---------- sections ---------- */
section { padding-block: clamp(52px, 8vw, 96px); }
.section-head { max-width: 60ch; margin-bottom: 40px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head p { margin-top: 12px; }
.divider { height: 1px; background: var(--line); border: 0; }

/* hero */
.hero { padding-block: clamp(56px, 10vw, 104px); border-bottom: 1px solid var(--line); }
.hero .eyebrow { margin-bottom: 20px; }
.hero h1 { max-width: 16ch; }
.hero .lead { margin-top: 22px; max-width: 60ch; }
.hero-actions { margin-top: 34px; display: flex; gap: 12px; flex-wrap: wrap; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 13px;
  letter-spacing: .03em; padding: 12px 18px; border-radius: 5px; border: 1px solid var(--line);
  color: var(--ink); background: var(--bg-2); cursor: pointer; transition: .15s;
}
.btn:hover { border-color: var(--ink-faint); background: var(--bg-3); }
.btn-primary { background: var(--lime); color: var(--bg); border-color: var(--lime); font-weight: 600; }
.btn-primary:hover { background: var(--lime-bright); border-color: var(--lime-bright); }

/* cards / grids */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; padding: 22px;
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 14.5px; }
.card .eyebrow { margin-bottom: 12px; display: block; }

/* labelled list (capabilities) */
.speclist { list-style: none; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.speclist li { background: var(--bg-2); padding: 14px 18px; display: flex; gap: 12px; align-items: baseline; }
.speclist li .k { font-family: var(--mono); font-size: 12px; color: var(--lime); white-space: nowrap; }
.speclist li .v { font-size: 14.5px; color: var(--ink-dim); }

/* claim table: establishes / does not */
.claims { width: 100%; border-collapse: collapse; font-size: 14px; }
.claims th, .claims td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.claims th { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }
.claims td.yes { color: var(--ink); }
.claims td.no { color: var(--ink-dim); }
.claims .tag { font-family: var(--mono); font-size: 11px; padding: 2px 7px; border-radius: 3px; }
.tag-yes { color: var(--lime); border: 1px solid rgba(200,239,75,.3); }
.tag-no  { color: var(--coral); border: 1px solid rgba(255,117,107,.3); }

/* callout / limitation */
.note {
  border-left: 3px solid var(--amber); background: var(--bg-1);
  padding: 16px 20px; border-radius: 0 8px 8px 0; margin-block: 8px;
}
.note.strong { border-left-color: var(--coral); }
.note .eyebrow { display: block; margin-bottom: 8px; color: var(--amber); }
.note.strong .eyebrow { color: var(--coral); }
.note p { color: var(--ink); font-size: 15px; }

/* status pill */
.pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--ink-dim); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; background: var(--bg-2); }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.pill.ok .dot { background: var(--lime); }

/* code block */
.codeblock { background: var(--bg-1); border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; overflow-x: auto; }
.codeblock code { color: var(--ink); font-size: 13px; line-height: 1.7; white-space: pre; display: block; }
.codeblock .c { color: var(--ink-faint); }
.codeblock .g { color: var(--lime); }

/* key-value meta */
.kv { display: grid; grid-template-columns: max-content 1fr; gap: 6px 22px; font-size: 14px; }
.kv dt { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .06em; }
.kv dd { color: var(--ink); }

/* result layers viz (demo) */
.layers { display: grid; gap: 8px; }
.layer { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; padding: 11px 15px; font-size: 14px; }
.layer .name { font-family: var(--mono); font-size: 12.5px; color: var(--ink-dim); }
.layer .val { font-family: var(--mono); font-size: 12px; }
.v-ok { color: var(--lime); } .v-no { color: var(--coral); } .v-na { color: var(--tan); }

/* footer */
.site-foot { border-top: 1px solid var(--line); padding-block: 48px 40px; margin-top: 40px; }
.site-foot .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
@media (max-width: 720px) { .site-foot .cols { grid-template-columns: 1fr 1fr; gap: 28px; } }
.site-foot .brand { margin-bottom: 14px; }
.site-foot p { font-size: 13.5px; max-width: 42ch; }
.site-foot h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.site-foot ul { list-style: none; display: grid; gap: 8px; }
.site-foot ul a { font-size: 13.5px; color: var(--ink-dim); }
.site-foot ul a:hover { color: var(--lime); }
.foot-base { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-family: var(--mono); font-size: 11.5px; color: var(--ink-faint); }

/* utility */
.stack > * + * { margin-top: 16px; }
.mt-s { margin-top: 10px; } .mt-m { margin-top: 24px; } .mt-l { margin-top: 40px; }
.muted { color: var(--ink-dim); }
.small { font-size: 13px; }
ul.bullets { list-style: none; display: grid; gap: 10px; }
ul.bullets li { position: relative; padding-left: 18px; font-size: 14.5px; color: var(--ink-dim); }
ul.bullets li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; background: var(--lime); border-radius: 1px; }

/* ---------- long-form briefings ---------- */
.article-hero { padding-block: clamp(56px, 9vw, 96px); border-bottom: 1px solid var(--line); }
.article-hero .eyebrow { display: block; margin-bottom: 18px; }
.article-hero h1 { max-width: 20ch; }
.article-hero .lead { margin-top: 22px; max-width: 68ch; }
.article-wrap { max-width: 880px; }
.article-meta, .source-note { margin-top: 20px; font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
.source-note a { color: var(--lime); text-decoration: underline; text-underline-offset: 3px; }
.article-section { padding-block: clamp(48px, 7vw, 76px); border-bottom: 1px solid var(--line-soft); }
.article-section h2 { margin-bottom: 18px; }
.article-section p + p { margin-top: 16px; }
.article-section a:not(.btn) { color: var(--lime); text-decoration: underline; text-decoration-color: rgba(200,239,75,.35); text-underline-offset: 3px; }
.article-list { margin: 20px 0 0; padding-left: 20px; color: var(--ink-dim); }
.article-list li { margin-bottom: 10px; padding-left: 4px; }
.article-list.compact { margin-top: 14px; font-size: 14.5px; }
.table-scroll { overflow-x: auto; margin-block: 24px 12px; }
.article-table { width: 100%; border-collapse: collapse; min-width: 580px; font-size: 14.5px; }
.article-table th, .article-table td { text-align: left; padding: 13px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article-table th { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }
.article-table .when { width: 130px; white-space: nowrap; font-family: var(--mono); color: var(--lime); }
.digest-lab { margin-top: 26px; background: var(--bg-2); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.digest-lab-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.verdict { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; padding: 5px 10px; border: 1px solid; border-radius: 4px; }
.verdict.ok { color: var(--lime); border-color: rgba(200,239,75,.4); background: rgba(200,239,75,.08); }
.verdict.no { color: var(--coral); border-color: rgba(255,117,107,.4); background: rgba(255,117,107,.08); }
.digest-fields { display: grid; grid-template-columns: repeat(2, 1fr); }
.digest-fields label { padding: 13px 16px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.digest-fields label:nth-child(odd) { border-right: 1px solid var(--line); }
.digest-fields label:last-child { grid-column: 1 / -1; border-right: 0; }
.digest-fields input { display: block; width: 100%; margin-top: 7px; padding: 9px 10px; background: var(--bg-1); border: 1px solid var(--line); border-radius: 4px; color: var(--ink); font-family: var(--mono); font-size: 13px; text-transform: none; letter-spacing: 0; }
.digest-fields input:focus { outline: 1px solid var(--lime); border-color: var(--lime); }
.digest-output { padding: 14px 16px; display: grid; gap: 8px; background: var(--bg-1); }
.digest-output div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; font-family: var(--mono); font-size: 11.5px; }
.digest-output span { color: var(--ink-faint); }
.digest-output code { overflow-wrap: anywhere; color: var(--lime); }
.digest-caption { padding: 12px 16px; border-top: 1px solid var(--line); font-size: 12.5px; }
.article-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.article-cta h2 { margin-top: 10px; }
@media (max-width: 680px) {
  .digest-fields { grid-template-columns: 1fr; }
  .digest-fields label, .digest-fields label:nth-child(odd), .digest-fields label:last-child { grid-column: auto; border-right: 0; }
  .digest-output div { grid-template-columns: 1fr; gap: 3px; }
  .article-cta { align-items: flex-start; flex-direction: column; }
}

/* interactive trust-record demo */
.demo-fields { display: grid; gap: 8px; }
.demo-fields label { font-family: var(--mono); font-size: 12px; color: var(--ink-dim); }
.demo-fields input,
.demo-fields select {
  width: 100%; box-sizing: border-box; color: var(--ink); background: var(--bg-1);
  border: 1px solid var(--line); border-radius: 5px; padding: 11px 12px;
  font: 14px var(--mono);
}
.demo-fields input:focus,
.demo-fields select:focus { border-color: var(--lime); outline: 2px solid rgba(200,239,75,.18); outline-offset: 1px; }
.demo-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn:disabled:hover { border-color: var(--line); background: var(--bg-2); }
.demo-output-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.demo-output-head .eyebrow { margin-bottom: 0; }
.demo-json { max-height: 620px; overflow: auto; }
.demo-json code { white-space: pre; }

/* ---------- transparency demonstration ---------- */
.transparency-hero h1 { max-width: 18ch; }
.transparency-layer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.transparency-layer-card { position: relative; overflow: hidden; }
.transparency-layer-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(200,239,75,.12);
  border-radius: 50%;
}
.transparency-layer-card .layer-number {
  display: block;
  margin-bottom: 26px;
  color: var(--lime);
  font: 500 11px var(--mono);
  letter-spacing: .18em;
}
.transparency-layer-card p + p { margin-top: 20px; }
.transparency-connector {
  align-self: center;
  color: var(--lime);
  font: 500 24px var(--mono);
}
.transparency-stage {
  background: linear-gradient(180deg, rgba(200,239,75,.035), transparent 22%), var(--bg-1);
  border-block: 1px solid var(--line);
}
.transparency-demo .controls { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; }
.transparency-demo button.act {
  padding: 9px 13px;
  border: 1px solid var(--ink-faint);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  font: 500 11px var(--mono);
  letter-spacing: .03em;
}
.transparency-demo button.act:hover { border-color: var(--lime); color: var(--lime); background: rgba(200,239,75,.05); }
.transparency-demo button.act.attack { border-color: rgba(255,117,107,.5); color: var(--coral); }
.transparency-demo button.act.attack:hover { border-color: var(--coral); background: rgba(255,117,107,.07); }
.transparency-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.15fr); gap: 32px; }
.transparency-pane { min-width: 0; }
.transparency-demo .demo-heading {
  margin: 0 0 11px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
  font: 600 11px var(--mono);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.transparency-demo .hint { margin: 0 0 13px; color: var(--ink-dim); font-size: 13px; }
.transparency-demo .ledger { max-height: 350px; overflow-y: auto; border: 1px solid var(--line); background: var(--bg); }
.transparency-demo .row {
  display: grid;
  grid-template-columns: 44px minmax(0,1fr);
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.transparency-demo .row:last-child { border-bottom: 0; }
.transparency-demo .row:hover { background: var(--bg-2); }
.transparency-demo .row[aria-selected="true"] { background: var(--bg-3); box-shadow: inset 3px 0 0 var(--amber); }
.transparency-demo .row.altered .purpose { color: var(--coral); text-decoration: line-through; }
.transparency-demo .idx { padding-top: 2px; color: var(--ink-faint); font: 12px var(--mono); }
.transparency-demo .purpose { color: var(--ink); font-weight: 600; font-size: 14px; }
.transparency-demo .meta { display: inline-block; max-width: 100%; overflow: hidden; color: var(--ink-faint); font: 11px var(--mono); text-overflow: ellipsis; white-space: nowrap; }
.transparency-demo .treebox { overflow-x: auto; padding: 14px 8px 8px; border: 1px solid var(--line); background: var(--bg); }
.transparency-demo svg { display: block; min-width: 100%; }
.transparency-demo .edge { fill: none; stroke: var(--ink-faint); stroke-width: 1.2; }
.transparency-demo .edge.lit { stroke: var(--amber); stroke-width: 2.2; }
.transparency-demo .node { fill: var(--bg-3); stroke: var(--ink-faint); stroke-width: 1.2; }
.transparency-demo .node.anc { fill: var(--bg-3); stroke: var(--amber); stroke-width: 2.2; }
.transparency-demo .node.sib,
.transparency-demo .node.leafsel { fill: var(--amber); stroke: var(--amber); }
.transparency-demo .node.leaf { fill: var(--ink-faint); stroke: var(--ink-faint); }
.transparency-demo .node.bad { fill: var(--coral); stroke: var(--coral); }
.transparency-demo .lbl { fill: var(--ink-faint); font: 8px var(--mono); }
.transparency-demo .panel { margin-bottom: 20px; padding: 14px; border: 1px solid var(--line); background: var(--bg); }
.transparency-demo .kv { display: grid; grid-template-columns: 104px minmax(0,1fr); gap: 4px 12px; font: 11.5px var(--mono); }
.transparency-demo .kv dt { color: var(--ink-faint); }
.transparency-demo .kv dd { margin: 0; color: var(--ink); overflow-wrap: anywhere; }
.transparency-demo .verdict { margin-top: 12px; padding: 9px 11px; border: 0; border-left: 3px solid var(--line); border-radius: 0; background: var(--bg-2); font: 12px var(--mono); letter-spacing: 0; }
.transparency-demo .verdict.ok { border-left-color: var(--lime); color: var(--lime); }
.transparency-demo .verdict.bad { border-left-color: var(--coral); color: var(--coral); }
.transparency-demo .feed { max-height: 240px; overflow-y: auto; border: 1px solid var(--line); background: var(--bg); font: 11.5px var(--mono); }
.transparency-demo .feed p { display: grid; grid-template-columns: 14px 1fr; gap: 8px; max-width: none; margin: 0; padding: 8px 11px; border-bottom: 1px solid var(--line); color: var(--ink-dim); }
.transparency-demo .feed p:last-child { border-bottom: 0; }
.transparency-demo .feed .mark { font-weight: 700; }
.transparency-demo .feed .ok .mark { color: var(--lime); }
.transparency-demo .feed .bad { background: rgba(255,117,107,.05); }
.transparency-demo .feed .bad .mark { color: var(--coral); }
@media (prefers-reduced-motion:no-preference) {
  .transparency-demo .edge,
  .transparency-demo .node { transition: fill .18s ease, stroke .18s ease, stroke-width .18s ease; }
}
@media (max-width: 900px) {
  .transparency-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .transparency-layer-grid { grid-template-columns: 1fr; }
  .transparency-connector { justify-self: center; }
  .transparency-demo button.act { flex: 1 1 calc(50% - 8px); }
}

/* ---------- founding pilot ---------- */
.pilot-hero h1 { max-width: 19ch; }
.pilot-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 920px;
  margin-top: 38px;
  border-block: 1px solid var(--line);
}
.pilot-facts > div { padding: 19px 18px 18px 0; border-right: 1px solid var(--line); }
.pilot-facts > div:not(:first-child) { padding-left: 18px; }
.pilot-facts > div:last-child { border-right: 0; }
.pilot-facts strong { display: block; color: var(--lime); font: 600 clamp(21px, 3vw, 29px) var(--display); }
.pilot-facts span { display: block; margin-top: 3px; color: var(--ink-faint); font: 11px var(--mono); }
.pilot-home-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .36fr);
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(200,239,75,.28);
  border-radius: 8px;
  background: linear-gradient(115deg, rgba(200,239,75,.08), transparent 52%), var(--bg-2);
}
.pilot-home-band h2 { max-width: 20ch; }
.pilot-home-band p { max-width: 66ch; }
.pilot-home-action { display: grid; gap: 16px; justify-items: start; }
.pilot-gates { list-style: none; border-top: 1px solid var(--line); }
.pilot-gates li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.pilot-gates .gate-no { color: var(--lime); font: 500 12px var(--mono); letter-spacing: .15em; }
.pilot-gates h3 { margin-bottom: 7px; font-size: 19px; }
.pilot-gates p { max-width: 72ch; }
.pilot-pass-rule { margin-top: 28px; border-color: rgba(200,239,75,.35); }
.pilot-pass-rule p { color: var(--ink); font-weight: 500; }
.pilot-section-muted { background: var(--bg-1); border-block: 1px solid var(--line-soft); }
.pilot-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-color: rgba(200,239,75,.24);
}
.pilot-final-cta > div:first-child { flex: 1 1 620px; }
.pilot-final-cta .hero-actions { flex: 0 1 auto; margin-top: 0; }
.contact-hero h1 { max-width: 18ch; }
.contact-offer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 30px;
  border-block: 1px solid var(--line);
  color: var(--ink);
  font: 12px var(--mono);
}
.contact-offer-line span { padding: 13px 18px; border-right: 1px solid var(--line); }
.contact-offer-line span:first-child { padding-left: 0; color: var(--lime); font-weight: 600; }
.contact-offer-line span:last-child { border-right: 0; }
.contact-prompt-list { list-style: none; margin-top: 28px; border-top: 1px solid var(--line); }
.contact-prompt-list li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-prompt-list span { color: var(--lime); font: 11px var(--mono); }
.contact-prompt-list p { color: var(--ink); }
.contact-next-step { align-self: start; }
@media (max-width: 760px) {
  .pilot-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pilot-facts > div:nth-child(2) { border-right: 0; }
  .pilot-facts > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pilot-facts > div:nth-child(3) { padding-left: 0; }
  .pilot-home-band { grid-template-columns: 1fr; }
  .pilot-final-cta { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 520px) {
  .pilot-gates li { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; }
  .contact-offer-line { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-offer-line span,
  .contact-offer-line span:first-child { padding: 11px 10px; border-bottom: 1px solid var(--line); }
  .contact-offer-line span:nth-child(even) { border-right: 0; }
  .contact-offer-line span:nth-last-child(-n+2) { border-bottom: 0; }
}
