/* ao-site.css — shared shell for the real pages (Sep 2026 split).
   WHY THIS FILE: index.html carried the whole site in one 67KB page with three inline
   <style> blocks. Google indexes URLs, not fragments, so #pricing and #how were never
   rankable documents and there was nowhere to put About/Security/Contact — the pages a
   buyer looks for to decide whether a company is real. These pages share this one file
   so the palette can never drift from index.html's :root, which it mirrors exactly. */
:root{
  --bg:#0a1838; --bg2:#0c1f40; --panel:#13233f; --panel2:#102036; --line:#26406b;
  --ink:#eaf2fb; --muted:#9fb2cc; --dim:#6f86a6;
  --blue:#3560a0; --blue2:#5a86c8;
  --brass:#6f86a6; --gold:#8fb4e6; --golddim:#5a7190;
  --green:#36d27a; --amber:#ffb020;
  --serif:'Playfair Display',Georgia,'Times New Roman',serif;
  --head:'Oswald',Impact,sans-serif;
  --body:'Inter',-apple-system,Segoe UI,Arial,sans-serif;
}
*{box-sizing:border-box}
body{margin:0;font-family:var(--body);background:var(--bg);color:var(--ink);line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden}
img{max-width:100%;height:auto}
.wrap{max-width:1080px;margin:0 auto;padding:0 22px}
a{color:var(--blue2)}
/* ---- nav ---- */
.nav{position:sticky;top:0;z-index:50;background:rgba(10,24,56,.94);backdrop-filter:blur(8px);border-bottom:1px solid var(--line)}
.nav .wrap{display:flex;align-items:center;gap:18px;min-height:62px;flex-wrap:wrap}
.navlogo{height:28px;width:28px;vertical-align:middle}
.wm{display:inline-flex;align-items:center;gap:9px;font-family:var(--head);text-transform:uppercase;letter-spacing:1.5px;font-weight:700;color:var(--ink);text-decoration:none;font-size:17px}
.aimark{color:var(--gold)}
.navlinks{display:flex;gap:16px;flex-wrap:wrap;margin-left:auto;align-items:center;font-family:var(--head);text-transform:uppercase;letter-spacing:1px;font-size:12.5px;font-weight:600}
.navlinks a{color:var(--muted);text-decoration:none;padding:6px 2px;border-bottom:2px solid transparent}
.navlinks a:hover{color:var(--ink)}
.navlinks a[aria-current="page"]{color:var(--ink);border-bottom-color:var(--gold)}
.btn{display:inline-block;background:var(--green);color:#062012;font-family:var(--head);text-transform:uppercase;letter-spacing:1px;font-weight:700;font-size:13px;padding:11px 18px;border-radius:6px;text-decoration:none;border:0}
.btn:hover{filter:brightness(1.08)}
.btn.ghost{background:transparent;color:var(--ink);border:1px solid var(--line)}
/* ---- page head ---- */
.phead{padding:54px 0 26px;border-bottom:1px solid var(--line);background:linear-gradient(180deg,var(--bg2),var(--bg))}
.eyebrow{font-family:var(--head);text-transform:uppercase;letter-spacing:2px;font-size:12.5px;font-weight:600;color:var(--gold);display:block;margin-bottom:10px}
h1{font-family:var(--serif);font-size:clamp(30px,4.6vw,48px);line-height:1.14;margin:0 0 12px;font-weight:700}
h2{font-family:var(--serif);font-size:clamp(23px,3vw,32px);line-height:1.2;margin:0 0 12px;font-weight:700}
h3{font-family:var(--head);text-transform:uppercase;letter-spacing:1px;font-size:15px;margin:0 0 8px;color:var(--gold);font-weight:600}
.lede{font-size:18px;color:#e6eefb;max-width:74ch;margin:0}
section{padding:40px 0;border-bottom:1px solid var(--line)}
section:last-of-type{border-bottom:0}
p{max-width:76ch}
.muted{color:var(--muted)}
.small{font-size:13.5px}
/* ---- blocks ---- */
.card{background:var(--panel);border:1px solid var(--line);border-radius:10px;padding:20px}
.grid{display:grid;gap:16px}
@media(min-width:760px){.g2{grid-template-columns:1fr 1fr}.g3{grid-template-columns:repeat(3,1fr)}}
.stat{font-family:var(--head);font-size:38px;line-height:1;color:var(--green);font-weight:700}
.rows{width:100%;border-collapse:collapse;margin-top:8px}
.rows th,.rows td{text-align:left;padding:11px 12px;border-bottom:1px solid var(--line);vertical-align:top;font-size:15px}
.rows th{font-family:var(--head);text-transform:uppercase;letter-spacing:1px;font-size:12px;color:var(--gold);font-weight:600}
.scroll{overflow-x:auto}
.note{border-left:3px solid var(--gold);padding:2px 0 2px 14px;color:var(--muted);font-size:14px;margin-top:14px}
ul.clean{padding-left:20px}
ul.clean li{margin-bottom:9px}
/* ---- footer ---- */
footer{padding:26px 0 40px;color:var(--muted);font-size:14px}
footer .wrap{display:flex;gap:16px;align-items:center;flex-wrap:wrap;justify-content:space-between}
footer a{color:var(--muted);text-decoration:none;margin-right:14px}
footer a:hover{color:var(--ink)}
.est{font-family:var(--head);text-transform:uppercase;letter-spacing:1px;font-size:11.5px}
/* ---- a11y: WCAG 2.2 AA. Focus must be visible and never obscured (2.4.11),
   and every interactive target clears 24x24 (2.5.8). Cheap on static HTML. ---- */
a:focus-visible,button:focus-visible,input:focus-visible{outline:3px solid var(--gold);outline-offset:2px}
.skip{position:absolute;left:-9999px}
.skip:focus{left:12px;top:12px;position:fixed;z-index:99;background:var(--gold);color:#0a1838;padding:10px 14px;border-radius:6px}

/* Mobile nav: at 390px the link row overflowed the viewport by ~80px, because
   .navlinks took margin-left:auto and could not shrink. Measured with a
   getBoundingClientRect sweep, not eyeballed. Below 720px the row starts on its
   own line and wraps normally. */
@media(max-width:720px){
  .nav .wrap{min-height:0;padding-top:10px;padding-bottom:10px}
  .navlinks{margin-left:0;width:100%;gap:12px;row-gap:8px}
  .navlinks .btn{padding:9px 14px}
  h1{font-size:29px}
  .rows th,.rows td{padding:9px 8px;font-size:14px}
}

/* Footer link row: the culprit was the footer, not the nav. Its link <div> is a
   flex item, and a flex item will not shrink below its content width by default
   (min-width:auto), so eight inline links held the page 79px wider than a 390px
   viewport. min-width:0 lets it wrap. Found by rect sweep, twice. */
footer .wrap > div{min-width:0;flex:1 1 100%}
footer .wrap > div:last-child{flex:1 1 auto}
footer a{display:inline-block;margin:0 14px 6px 0}
