
/* ------------------------------------------------------------------
   Federal Software — App Store / Settings-style reference catalog.
   White page, gray canvas only to separate major areas, hairline
   separators, rows not cards, orange for actions only.
   ------------------------------------------------------------------ */
:root {
  --page: #FFFFFF; --canvas: #F5F5F7; --surface: #FFFFFF;
  --text: #1D1D1F; --secondary: #6E6E73; --tertiary: #AEAEB2; --separator: #E5E5EA; --separator-2: #D1D1D6;
  --graphite: #2C2C2E; --black: #1C1C1E;
  --orange: #F25F3A; --orange-hover: #DC4E2B; --orange-soft: #FFF1EC;
  --authorized: #248A3D; --warning: #B26A00; --neutral-status: #6E6E73; --bad: #A23A32;
  --pad: 20px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", Roboto, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; background: var(--page); scroll-padding-top: 80px; overflow-x: hidden; }
body { margin: 0; background: var(--page); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; }
h1, h2, h3, p, ol, ul, dl, dd, figure { margin: 0; }
ol, ul { padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
[hidden] { display: none !important; }
.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; }
.tone-good { color: var(--authorized); } .tone-warn { color: var(--warning); } .tone-bad { color: var(--bad); } .tone-accent { color: var(--orange-hover); }

/* ---------- Header ---------- */
.top { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.88); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--separator); }
.top-row { max-width: 1100px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 12px; padding: 10px var(--pad) 6px; min-height: 52px; }
.brand { display: flex; align-items: baseline; gap: 8px; text-decoration: none; }
.brand b { font-size: 17px; font-weight: 600; letter-spacing: -.02em; white-space: nowrap; }
.brand small { font-size: 12px; color: var(--secondary); white-space: nowrap; }
.nav { display: flex; gap: 2px; flex: 1 1 100%; min-width: 0; max-width: 100%; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.nav::-webkit-scrollbar { display: none; }
@media (min-width: 720px) { .nav { flex: 0 0 auto; overflow: visible; } }
.nav a { display: inline-flex; align-items: center; min-height: 36px; padding: 0 10px; border-radius: 8px; font-size: 14px; color: var(--secondary); text-decoration: none; white-space: nowrap; flex: 0 0 auto; }
.nav a:first-child { padding-left: 0; }
@media (min-width: 720px) { .nav a:first-child { padding-left: 10px; } }
.nav a:hover { color: var(--text); } .nav a.is-current { color: var(--text); font-weight: 600; }
.searchbar { max-width: 1100px; margin: 0 auto; padding: 0 var(--pad) 10px; }
.searchbar.is-home { display: none; }
.search { position: relative; display: flex; align-items: center; background: var(--canvas); border: 1px solid transparent; border-radius: 12px; min-height: 44px; padding: 0 4px 0 14px; }
.search:focus-within { background: var(--page); border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }
.search .glyph { color: var(--secondary); margin-right: 8px; flex: 0 0 auto; }
.search input { flex: 1; min-width: 0; background: none; border: 0; outline: none; font-size: 16px; min-height: 42px; color: var(--text); }
.search input::placeholder { color: var(--secondary); }
.search button { min-height: 34px; padding: 0 14px; border: 0; border-radius: 9px; background: var(--orange); color: #fff; font-weight: 600; cursor: pointer; font-size: 14px; }
.search button:hover { background: var(--orange-hover); }
.live { max-width: 1100px; margin: 0 auto; padding: 0 var(--pad) 8px; font-size: 12px; color: var(--secondary); display: flex; align-items: center; gap: 8px; }
.live i { width: 6px; height: 6px; border-radius: 50%; background: var(--tertiary); }
.live.is-live i { background: var(--authorized); } .live.is-loading i { background: var(--orange); }

/* ---------- Layout ---------- */
.shell { max-width: 1100px; margin: 0 auto; padding-bottom: 60px; }
.panel { padding: 24px var(--pad); }
.narrow { max-width: 780px; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 6px; }
.sec-head h2 { font-size: 24px; font-weight: 700; letter-spacing: -.025em; line-height: 1.15; }
.sec-head a { font-size: 14px; color: var(--secondary); text-decoration: none; white-space: nowrap; }
.sec-head a:hover { color: var(--orange-hover); }
.sec-sub { font-size: 14px; color: var(--secondary); margin-bottom: 14px; }
.h2 { font-size: 26px; font-weight: 700; letter-spacing: -.025em; line-height: 1.15; margin: 0 0 12px; }
.h2 small { display: block; margin-top: 6px; font-size: 14px; font-weight: 400; color: var(--secondary); letter-spacing: 0; line-height: 1.45; }
.h3 { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--secondary); margin: 30px 0 10px; }

/* ---------- Home hero ---------- */
.hero { padding: 48px var(--pad) 28px; text-align: center; }
.hero h1 { font-size: 40px; font-weight: 700; letter-spacing: -.035em; line-height: 1.05; margin: 0 auto 10px; max-width: 14ch; }
.hero p { font-size: 16px; color: var(--secondary); max-width: 46ch; margin: 0 auto; }
.hero .search { max-width: 800px; margin: 22px auto 0; min-height: 56px; border-radius: 16px; border: 1px solid var(--separator); background: var(--page); box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.05); }
.hero .search input { min-height: 54px; font-size: 17px; }
.hero .search button { min-height: 44px; }
.hero .try { margin-top: 12px; font-size: 13px; color: var(--secondary); }
.hero .try button { background: none; border: 0; padding: 0; color: var(--text); font-weight: 600; cursor: pointer; }
.hero .try button:hover { color: var(--orange-hover); }
.quick { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 18px; }
.quick a { display: inline-flex; align-items: center; min-height: 36px; padding: 0 13px; border-radius: 999px; border: 1px solid var(--separator-2); text-decoration: none; font-size: 14px; font-weight: 500; }
.quick a:hover { border-color: var(--text); }

/* Category list */
.cats { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--separator); }
.cat { display: grid; grid-template-columns: 1fr auto; gap: 2px 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--separator); text-decoration: none; }
.cat b { grid-column: 1; font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.cat span { grid-column: 1; font-size: 14px; color: var(--secondary); line-height: 1.4; }
.cat small { grid-column: 1; font-size: 13px; color: var(--secondary); }
.cat .chev { grid-column: 2; grid-row: 1 / span 3; color: var(--tertiary); font-size: 20px; }
.cat:hover b { color: var(--orange-hover); }

/* ---------- Product rows ---------- */
.rows { border-top: 1px solid var(--separator); }
.row { display: grid; grid-template-columns: 48px 1fr 18px; grid-template-areas: "mono main chev" "mono meta chev"; gap: 4px 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--separator); text-decoration: none; }
.row:hover .name { color: var(--orange-hover); }
.mono { width: 48px; height: 48px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; flex: 0 0 auto; align-self: start; }
.mono.m0 { background: var(--black); color: #fff; } .mono.m1 { background: var(--graphite); color: #fff; } .mono.m2 { background: #48484A; color: #fff; } .mono.m3 { background: #8E8E93; color: #fff; } .mono.m4 { background: #D1D1D6; color: var(--text); } .mono.m5 { background: #E5E5EA; color: var(--text); }
.row .mono { grid-area: mono; }
.row .main { grid-area: main; min-width: 0; }
.row .name { font-size: 17px; font-weight: 600; line-height: 1.25; letter-spacing: -.01em; }
.row .sub { font-size: 14px; color: var(--secondary); line-height: 1.35; }
.row .meta { grid-area: meta; display: flex; flex-wrap: wrap; gap: 2px 0; font-size: 13px; color: var(--secondary); align-items: center; }
.row .meta > * { display: inline-flex; align-items: center; }
.row .meta > * + *::before { content: ""; width: 1px; height: 12px; background: var(--separator-2); margin: 0 9px; }
.row .chev { grid-area: chev; color: var(--tertiary); font-size: 20px; }
.status { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status.s-authorized { color: var(--authorized); } .status.s-in-process { color: var(--warning); } .status.s-ready { color: var(--neutral-status); }
.named { border-bottom: 1px dashed var(--separator-2); }
.thead { display: none; }
@media (min-width: 900px) {
  .rows.is-table .row { grid-template-columns: 48px minmax(0, 1fr) 112px 84px 150px 74px 18px; grid-template-areas: "mono main st im ro ag chev"; gap: 12px; }
  .rows.is-table .row .meta { display: contents; }
  .rows.is-table .row .meta > * + *::before { display: none; }
  .rows.is-table .row .c-st { grid-area: st; } .rows.is-table .row .c-im { grid-area: im; } .rows.is-table .row .c-ro { grid-area: ro; flex-wrap: wrap; } .rows.is-table .row .c-ag { grid-area: ag; justify-content: flex-end; font-variant-numeric: tabular-nums; }
  .rows.is-table .thead { display: grid; grid-template-columns: 48px minmax(0, 1fr) 112px 84px 150px 74px 18px; gap: 12px; padding: 0 0 8px; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--secondary); }
  .rows.is-table .thead span:nth-child(6) { text-align: right; }
}
.more { display: flex; justify-content: center; padding: 16px 0 4px; }
.btn { min-height: 44px; padding: 0 18px; border: 0; border-radius: 11px; background: var(--text); color: #fff; font-weight: 600; cursor: pointer; font-size: 15px; }
.btn.alt { background: var(--canvas); color: var(--text); } .btn.alt:hover { background: var(--separator); }

/* ---------- Results layout: filter rail ---------- */
.results { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; }
.rail { display: none; }
.rail h4 { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--secondary); margin: 16px 0 6px; }
.rail h4:first-child { margin-top: 0; }
.rail button { display: flex; align-items: center; gap: 9px; width: 100%; text-align: left; min-height: 34px; padding: 0 6px; border: 0; border-radius: 8px; background: none; font-size: 14px; color: var(--text); cursor: pointer; }
.rail button:hover { background: var(--canvas); }
.rail button i { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--separator-2); flex: 0 0 auto; }
.rail button[aria-pressed="true"] i { border-color: var(--orange); background: var(--orange); box-shadow: inset 0 0 0 3px #fff; }
.rail select { margin-top: 12px; width: 100%; min-height: 36px; padding: 0 10px; border: 1px solid var(--separator-2); border-radius: 9px; background: var(--page); font-size: 14px; }
.rail .clear { margin-top: 10px; color: var(--orange-hover); font-weight: 600; }
.results-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 8px; }
.results-bar .count { font-size: 14px; color: var(--secondary); }
.filter-btn { min-height: 36px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--separator-2); background: var(--page); font-size: 14px; font-weight: 500; cursor: pointer; }
.filter-btn b { color: var(--orange-hover); }
.sheet { position: fixed; inset: 0; z-index: 50; }
.sheet .back { position: absolute; inset: 0; background: rgba(0,0,0,.35); }
.sheet .body { position: absolute; left: 0; right: 0; bottom: 0; max-height: 82vh; overflow-y: auto; background: var(--page); border-radius: 16px 16px 0 0; padding: 12px var(--pad) calc(20px + env(safe-area-inset-bottom)); }
.sheet .grab { width: 36px; height: 4px; border-radius: 2px; background: var(--separator-2); margin: 0 auto 8px; }
.sheet .rail { display: block; }
.sheet .done { margin-top: 16px; width: 100%; }
@media (min-width: 900px) {
  .results { grid-template-columns: 200px minmax(0, 1fr); gap: 36px; }
  .rail { display: block; position: sticky; top: 76px; align-self: start; }
  .filter-btn { display: none; }
}

/* ---------- Product page ---------- */
.phead { display: grid; grid-template-columns: 64px 1fr; gap: 12px 16px; align-items: start; }
.phead > .mono { grid-column: 1; grid-row: 1; } .phead > .mono + div { grid-column: 2; grid-row: 1; }
.phead .mono { width: 64px; height: 64px; border-radius: 14px; font-size: 22px; }
.phead h1 { font-size: 28px; font-weight: 700; letter-spacing: -.03em; line-height: 1.1; overflow-wrap: anywhere; }
.phead .vend { font-size: 15px; color: var(--secondary); margin-top: 4px; }
.phead .vend a { text-decoration: none; color: var(--text); font-weight: 500; } .phead .vend a:hover { color: var(--orange-hover); }
.phead .one { grid-column: 1 / -1; font-size: 17px; line-height: 1.5; max-width: 64ch; }
.phead .stat { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 4px 0; font-size: 15px; color: var(--secondary); align-items: center; }
.phead .stat > * + *::before { content: ""; display: inline-block; width: 1px; height: 12px; background: var(--separator-2); margin: 0 10px; vertical-align: -1px; }
.cta { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.cta a, .cta button { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: 11px; text-decoration: none; font-weight: 600; font-size: 15px; border: 1px solid var(--separator-2); background: var(--page); cursor: pointer; }
.cta .primary { background: var(--orange); border-color: var(--orange); color: #fff; } .cta .primary:hover { background: var(--orange-hover); }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--separator); border: 1px solid var(--separator); border-radius: 14px; overflow: hidden; margin-top: 22px; }
.fact { background: var(--page); padding: 14px 16px; min-width: 0; }
.fact small { display: block; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--secondary); }
.fact b { display: block; margin-top: 4px; font-size: 17px; font-weight: 600; letter-spacing: -.01em; line-height: 1.25; }
.fact span { display: block; font-size: 12px; color: var(--secondary); margin-top: 2px; }
.section h2 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 34px 0 10px; }
.prose { font-size: 16px; line-height: 1.6; max-width: 66ch; }
.buy { border-top: 1px solid var(--separator); }
.buy a { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 54px; padding: 0 2px; border-bottom: 1px solid var(--separator); text-decoration: none; font-weight: 500; font-size: 16px; }
.buy a small { font-size: 14px; color: var(--secondary); white-space: nowrap; }
.buy a:hover small { color: var(--orange-hover); }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chip { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--separator-2); text-decoration: none; font-size: 14px; }
.chip:hover { border-color: var(--text); }
.chip.muted { color: var(--secondary); border-style: dashed; }
.matrix { border-top: 1px solid var(--separator); }
.matrix li { display: grid; grid-template-columns: 140px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--separator); font-size: 15px; }
.matrix dt { color: var(--secondary); } .matrix dd { overflow-wrap: anywhere; }
.matrix dd a { color: var(--orange-hover); }
.matrix dd small { display: block; color: var(--secondary); font-size: 13px; margin-top: 2px; line-height: 1.45; }
.note { margin-top: 10px; font-size: 13px; color: var(--secondary); line-height: 1.5; max-width: 66ch; }
.awards { border-top: 1px solid var(--separator); }
.awards li { padding: 12px 0; border-bottom: 1px solid var(--separator); }
.award-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 15px; }
.award-head b { font-weight: 600; line-height: 1.35; }
.award-head span { font-weight: 600; white-space: nowrap; color: var(--secondary); font-variant-numeric: tabular-nums; }
.award-desc { margin-top: 3px; font-size: 14px; line-height: 1.45; }
.award-meta { margin-top: 3px; font-size: 13px; color: var(--secondary); line-height: 1.45; }
.award-links { display: flex; gap: 16px; margin-top: 4px; }
.link { background: none; border: 0; padding: 0; min-height: 28px; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; }
.lines { border-top: 1px solid var(--separator); }
.lines li { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--separator); font-size: 15px; font-variant-numeric: tabular-nums; }
.lines li small { font-size: 12px; color: var(--secondary); }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 72px; margin-top: 14px; }
.bar { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; height: 100%; gap: 5px; position: relative; }
.bar i { display: block; width: 100%; background: var(--graphite); border-radius: 3px 3px 0 0; }
.bar.is-partial i { background: var(--separator); }
.bar span { font-size: 11px; color: var(--secondary); }
.bar em { position: absolute; top: -2px; left: 50%; transform: translate(-50%, -100%); font-style: normal; font-size: 11px; opacity: 0; white-space: nowrap; }
.bar:hover em { opacity: 1; }
.note a { color: var(--orange-hover); }
.crumbs { font-size: 13px; color: var(--secondary); display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs a { text-decoration: none; } .crumbs a:hover { color: var(--text); }
.list { border-top: 1px solid var(--separator); }
.list li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--separator); font-size: 16px; }
.list li a { text-decoration: none; font-weight: 500; } .list li a:hover { color: var(--orange-hover); }
.list li span { color: var(--secondary); white-space: nowrap; font-size: 14px; }
.compare { width: 100%; table-layout: fixed; border-collapse: collapse; margin-top: 8px; font-size: 15px; overflow-wrap: anywhere; }
.compare th, .compare td { text-align: left; vertical-align: top; padding: 12px 8px; border-bottom: 1px solid var(--separator); }
.compare th { font-weight: 600; } .compare a { color: var(--orange-hover); }
.compare td:first-child { color: var(--secondary); }
.compare th:first-child, .compare td:first-child { width: 30%; }
.form { display: grid; gap: 12px; max-width: 560px; }
.form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.form input, .form select, .form textarea { display: block; width: 100%; min-height: 46px; padding: 10px 14px; background: var(--page); border: 1px solid var(--separator-2); border-radius: 11px; font: inherit; }
.form input:focus-visible, .form textarea:focus-visible { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }
.form textarea { min-height: 100px; resize: vertical; }
.empty { padding: 30px 0; }
.empty h2 { font-size: 28px; font-weight: 700; letter-spacing: -.03em; line-height: 1.1; }
.empty p { margin-top: 12px; color: var(--secondary); max-width: 44ch; }
.new { border-top: 1px solid var(--separator); }
.new li { display: grid; grid-template-columns: 76px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--separator); }
.new .date { font-size: 13px; color: var(--secondary); padding-top: 2px; white-space: nowrap; }
.new b { font-size: 15px; font-weight: 600; line-height: 1.35; }
.new b a { text-decoration: none; } .new b a:hover { color: var(--orange-hover); }
.new small { display: block; font-size: 13px; color: var(--secondary); margin-top: 2px; }
.copy { min-height: 44px; padding: 0 14px; border-radius: 11px; border: 1px solid var(--separator-2); background: var(--page); font-size: 15px; font-weight: 600; cursor: pointer; }
.copy.is-copied { color: var(--authorized); border-color: var(--authorized); }
.ex { min-height: 36px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--separator-2); background: var(--page); cursor: pointer; font-size: 14px; }
.site-footer { max-width: 1100px; margin: 32px auto 0; padding: 24px var(--pad) 40px; font-size: 12px; line-height: 1.55; color: var(--secondary); border-top: 1px solid var(--separator); }
.site-footer a { color: var(--text); }

@media (min-width: 720px) {
  :root { --pad: 32px; }
  .hero { padding: 72px var(--pad) 36px; }
  .hero h1 { font-size: 56px; }
  .cats { grid-template-columns: 1fr 1fr; gap: 0 32px; }
  .facts { grid-template-columns: repeat(4, 1fr); }
  .phead h1 { font-size: 34px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } }

/* ---------- Static-site additions ---------- */
.skip { position: absolute; left: -999px; top: 8px; background: var(--text); color: #fff; padding: 8px 12px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
.searchbar[hidden] { display: none; }
.doc h1 { font-size: 34px; font-weight: 700; letter-spacing: -.03em; line-height: 1.1; margin: 10px 0 14px; }
.doc h2 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 30px 0 8px; }
.doc p { font-size: 16px; line-height: 1.6; margin: 0 0 12px; max-width: 66ch; }
.doc p.lede { font-size: 18px; color: var(--secondary); }
.doc ul { margin: 0 0 12px 20px; list-style: disc; } .doc li { margin: 4px 0; line-height: 1.55; }
.doc a { color: var(--orange-hover); }
.btn-link { display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px; border-radius: 11px; background: var(--orange); color: #fff !important; text-decoration: none; font-weight: 600; }
.foot-grid { display: grid; gap: 16px; grid-template-columns: 1fr; font-size: 14px; line-height: 1.6; }
.foot-grid a { text-decoration: none; color: var(--text); } .foot-grid a:hover { color: var(--orange-hover); }
.foot-muted { color: var(--secondary); font-size: 13px; }
.site-footer p.foot-muted { margin-top: 16px; }
.site-footer p.foot-muted a { color: var(--text); }
.az { display: grid; grid-template-columns: 1fr; }
.az a { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 12px 0; border-bottom: 1px solid var(--separator); text-decoration: none; align-items: center; }
.az a b { font-size: 16px; font-weight: 600; } .az a small { grid-column: 1; font-size: 13px; color: var(--secondary); } .az a span { grid-column: 2; grid-row: 1 / span 2; color: var(--tertiary); font-size: 18px; }
.az a:hover b { color: var(--orange-hover); }
.letters { display: flex; flex-wrap: wrap; gap: 4px; margin: 10px 0 16px; } .letters a { min-width: 32px; min-height: 32px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--separator-2); border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 600; }
.procs { border-top: 1px solid var(--separator); }
.proc { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--separator); }
.proc.is-confirmed { background: var(--canvas); border-radius: 10px; padding: 12px 14px; border-bottom: 0; margin-bottom: 6px; }
.proc.is-confirmed b::before { content: "✓ "; color: var(--authorized); }
.proc.is-vendor b::before { content: "● "; color: var(--secondary); }
.proc.is-vendor-supplied { background: var(--canvas); border-radius: 10px; padding: 12px 14px; border-bottom: 0; margin-bottom: 6px; }
.proc.is-vendor-supplied b::before { content: "○ "; color: var(--secondary); }
.procs.is-quiet .proc b { font-weight: 500; } .procs.is-quiet .proc a { color: var(--secondary); } .procs.is-quiet .proc a:hover { color: var(--orange-hover); }
.proc b { display: block; font-size: 15px; font-weight: 600; } .proc small { display: block; font-size: 13px; color: var(--secondary); line-height: 1.4; }
.proc a { font-size: 14px; font-weight: 600; text-decoration: none; color: var(--orange-hover); white-space: nowrap; }
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; max-width: 800px; margin: 14px auto 0; }
.pillars a { display: block; padding: 8px 10px; border: 1px solid var(--separator); border-radius: 10px; text-decoration: none; text-align: left; min-width: 0; }
.pillars a small { display: block; font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--secondary); }
.pillars a.is-key { border-color: var(--separator-2); } .pillars a.is-key small { color: var(--orange); } .pillars a b { display: block; font-size: 13px; font-weight: 600; margin-top: 1px; line-height: 1.25; }
.pillars a:hover { border-color: var(--text); }
.pillars a.is-key:hover { border-color: var(--orange); }
@media (min-width: 720px) { .pillars a { padding: 12px 14px; } .pillars a b { font-size: 15px; } }
.hero .kicker { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--orange-hover); margin-bottom: 10px; }
.hero .counts { margin-top: 10px; font-size: 14px; color: var(--secondary); }
.hero .cred { max-width: 800px; margin: 12px auto 0; font-size: 13px; color: var(--secondary); line-height: 1.5; }
.hero .cred a { font-weight: 600; color: var(--orange); text-decoration: none; white-space: nowrap; }
.hero .quick { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; margin-top: 12px; font-size: 13px; max-width: none; }
.hero .quick a { color: var(--secondary); text-decoration: none; font-weight: 500; padding: 4px 0; min-height: 0; border: 0; border-radius: 0; }
.hero .quick a + a::before { content: "·"; color: var(--tertiary); margin: 0 10px; }
.hero .quick a:hover { color: var(--orange); }
.signup { margin-top: 24px; padding: 18px; border: 1px solid var(--separator); border-radius: 14px; background: var(--canvas); }
.signup h2 { font-size: 18px; font-weight: 700; letter-spacing: -.02em; margin: 0 0 4px; }
.signup p { font-size: 14px; color: var(--secondary); line-height: 1.5; margin: 0 0 12px; max-width: 66ch; }
.signup form { display: flex; gap: 8px; flex-wrap: wrap; }
.signup input { flex: 1 1 220px; min-height: 44px; padding: 0 12px; border: 1px solid var(--separator-2); border-radius: 10px; background: var(--page); font: inherit; }
.signup input:focus-visible { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }
.signup button { min-height: 44px; padding: 0 16px; border: 0; border-radius: 10px; background: var(--orange); color: #fff; font-weight: 600; cursor: pointer; }
.signup button:hover { background: var(--orange-hover); }
.signup small { display: block; margin-top: 8px; font-size: 12px; color: var(--secondary); }
.prov { margin-top: 10px; font-size: 13px; color: var(--secondary); line-height: 1.5; } .prov a { color: var(--orange-hover); }
.builtby { border-top: 1px solid var(--separator); padding-top: 22px; } .builtby h2 { font-size: 22px; font-weight: 700; letter-spacing: -.02em; } .builtby p { margin-top: 8px; font-size: 16px; line-height: 1.55; max-width: 66ch; color: var(--secondary); } .builtby a { color: var(--orange-hover); font-weight: 600; text-decoration: none; }
.hero .try a { color: var(--text); font-weight: 600; text-decoration: none; } .hero .try a:hover { color: var(--orange-hover); }
@media (min-width: 720px) { .foot-grid { grid-template-columns: 1fr auto; } .az { grid-template-columns: 1fr 1fr; gap: 0 32px; } }
