/*
Purpose: route-local public styles extracted from pilot/index.html.
Governance scope: remove inline style dependence while preserving static route rendering.
Dependencies: pilot/index.html.
Invariants: no secrets, no runtime claims, no JavaScript dependency.
*/

:root {
      color-scheme: dark;
      --bg: #050609;
      --panel: #0d1018;
      --line: #272d40;
      --ink: #e9eaef;
      --muted: #99a0b4;
      --accent: #5ce6c4;
      --warm: #e8b15c;
      --mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
      --serif: Georgia, "Times New Roman", serif;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      background: linear-gradient(180deg, rgba(143, 240, 192, 0.08), transparent 36%), var(--bg);
      color: var(--ink);
      font: 15px/1.65 var(--mono);
    }
    a { color: inherit; }
    .skip-link {
      position: fixed;
      top: 1rem;
      left: 1rem;
      z-index: 10;
      transform: translateY(-200%);
      background: var(--accent);
      color: #050609;
      padding: 0.75rem 1rem;
    }
    .skip-link:focus { transform: translateY(0); }
    nav, main, footer {
      width: min(1080px, calc(100% - 32px));
      margin: 0 auto;
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 22px 0;
    }
    .brand {
      color: var(--ink);
      font-weight: 700;
      letter-spacing: 0.14em;
      text-decoration: none;
      text-transform: uppercase;
    }
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      color: var(--muted);
      font-size: 12px;
    }
    .nav-links a { text-decoration: none; }
    .nav-links a:hover { color: var(--accent); }
    main { padding: 48px 0 82px; }
    .eyebrow {
      color: var(--warm);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    h1, h2, h3 {
      margin: 0;
      font-family: var(--serif);
      font-weight: 400;
      line-height: 1.1;
    }
    h1 {
      max-width: 14ch;
      margin-top: 16px;
      font-size: 68px;
    }
    h2 { font-size: 36px; }
    h3 { font-size: 20px; }
    p { color: var(--muted); }
    .lede {
      max-width: 74ch;
      margin-top: 18px;
      font-size: 18px;
    }
    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      border: 1px solid var(--accent);
      color: var(--accent);
      padding: 9px 14px;
      text-decoration: none;
      font-size: 12px;
      letter-spacing: 0.05em;
    }
    .button.primary {
      background: var(--accent);
      color: #050609;
      font-weight: 700;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 34px;
    }
    .card, .boundary {
      border: 1px solid var(--line);
      background: rgba(17, 20, 15, 0.86);
      padding: 18px;
    }
    .card span {
      color: var(--warm);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .boundary {
      margin-top: 18px;
    }
    .boundary dl {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin: 18px 0 0;
    }
    .boundary div {
      border-left: 1px solid var(--accent);
      padding-left: 12px;
    }
    dt {
      color: var(--warm);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    dd {
      margin: 5px 0 0;
      color: var(--muted);
    }
    footer {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      padding: 34px 0 48px;
      font-size: 13px;
    }
    @media (max-width: 860px) {
      .grid, .boundary dl { grid-template-columns: 1fr; }
    }
    @media (max-width: 700px) {
      nav, footer { align-items: flex-start; flex-direction: column; }
      main { padding-top: 22px; }
      h1 { font-size: 44px; }
      h2 { font-size: 30px; }
    }
