/* ==========================================================================
   ConcursoRadar — instrument-grade readout
   Design direction: a precise data instrument, not a generic SaaS page.
   Signal, not noise. System fonts + a monospace "data" face for all figures,
   scores and labels. Refined blue family with a teal signal companion.
   ========================================================================== */

:root {
  /* --- brand blue scale --- */
  --brand-050: #eef3ff;
  --brand-100: #dce6ff;
  --brand-500: #3b6bf0;
  --brand-600: #1d4ed8;   /* core brand — wordmark, primary actions */
  --brand-700: #1a3fb8;
  --brand-800: #14307f;
  --brand-soft: rgba(29, 78, 216, 0.08);

  /* --- signal (teal): "detected / high relevance" companion accent --- */
  --signal-600: #0d9488;
  --signal-700: #0f766e;
  --signal-050: #e2f6f2;

  /* --- alert (amber): urgency / deadlines running out --- */
  --alert-700: #b45309;
  --alert-050: #fdf1e0;

  /* --- neutral slate scale (blue-tinted) --- */
  --n-0:   #ffffff;
  --n-25:  #fafbfe;
  --n-50:  #f5f7fb;
  --n-100: #eef2f9;
  --n-200: #e3e8f2;
  --n-300: #d3dae8;
  --n-400: #aab3c6;
  --n-500: #7a8399;
  --n-600: #576179;
  --n-700: #3b4257;
  --n-800: #232a3c;
  --n-900: #0c1424;

  /* --- semantic surfaces --- */
  --ink: var(--n-900);
  --muted: var(--n-600);
  --faint: var(--n-500);
  --bg: var(--n-50);
  --card: var(--n-0);
  --line: var(--n-200);
  --line-strong: var(--n-300);
  --accent: var(--brand-600);
  --accent-dark: var(--brand-700);
  --accent-soft: var(--brand-soft);
  --danger: var(--alert-700);
  --surf-sunk: var(--n-100);
  --surf-panel: var(--brand-050);

  /* --- type --- */
  --font-sans: "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, Roboto,
               "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "SFMono-Regular", "Cascadia Mono",
               "Segoe UI Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* --- spacing --- */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px;
  --s7: 48px; --s8: 64px; --s9: 96px;

  /* --- radii --- */
  --r-xs: 6px; --r-sm: 9px; --r-md: 13px; --r-lg: 18px; --r-xl: 24px; --r-pill: 999px;

  /* --- elevation (blue-tinted, subtle) --- */
  --shadow-sm: 0 1px 2px rgba(12,20,36,.06), 0 1px 3px rgba(12,20,36,.04);
  --shadow-md: 0 4px 12px -2px rgba(12,20,36,.10), 0 2px 6px -3px rgba(12,20,36,.07);
  --shadow-lg: 0 28px 56px -16px rgba(20,48,127,.22), 0 10px 24px -12px rgba(12,20,36,.14);

  --t: .16s ease;
  --focus: 2px solid var(--brand-600);

  --maxw: 1080px;
}

@media (prefers-color-scheme: dark) and (min-width: 100000px) {
  :root {
    --ink: #eef2fb;
    --muted: #9aa5bd;
    --faint: #7581a0;
    --bg: #0a1120;
    --card: #111a2d;
    --line: #22304a;
    --line-strong: #2c3c5a;
    --accent: #6a95ff;
    --accent-dark: #8bafff;
    --accent-soft: rgba(106, 149, 255, 0.14);
    --danger: #f0a35a;
    --surf-sunk: #0d1626;
    --surf-panel: #12203a;
    --signal-050: rgba(13,148,136,.16);
    --alert-050: rgba(180,83,9,.16);
    --brand-050: #13213c;
    --shadow-lg: 0 28px 60px -18px rgba(0,0,0,.6), 0 10px 24px -12px rgba(0,0,0,.5);
    --shadow-md: 0 4px 14px -3px rgba(0,0,0,.5);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  }
}

/* ==========================================================================
   Base
   ========================================================================== */
* { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }
img, svg { max-width: 100%; }
main { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--brand-100); color: var(--brand-800); }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, [tabindex]:focus-visible {
  outline: var(--focus); outline-offset: 2px; border-radius: var(--r-xs);
}

/* Shared utility: monospace eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--s4);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--signal-600);
  box-shadow: 0 0 0 3px var(--signal-050);
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--maxw); margin: 0 auto; padding: 16px 24px;
}
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-head .nav { position: static; }
.nav nav { display: flex; gap: var(--s5); align-items: center; }
.nav nav a:not(.btn) { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav nav a:not(.btn):hover { color: var(--ink); text-decoration: none; }
.logo {
  font-size: 21px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.5px; display: inline-flex; align-items: center; gap: 9px;
}
.logo:hover { text-decoration: none; }
.logo span { color: var(--brand-600); }
.logo .mark {
  width: 22px; height: 22px; flex: none; display: block;
}
@media (prefers-color-scheme: dark) and (min-width: 100000px) { .logo span { color: var(--accent); } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; text-align: center;
  padding: clamp(56px, 9vw, 104px) 0 clamp(40px, 6vw, 64px);
}
.hero .radar-field {
  position: absolute; inset: -40px 0 auto 0; height: 620px; z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 30%,
      var(--brand-050) 0%, transparent 60%),
    repeating-radial-gradient(circle at 50% 30%,
      transparent 0 62px,
      color-mix(in srgb, var(--brand-500) 12%, transparent) 62px 63px);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 66%);
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 66%);
  opacity: .9;
}
.hero .eyebrow { justify-content: center; }
.hero h1 {
  font-size: clamp(32px, 5.4vw, 50px); line-height: 1.08;
  letter-spacing: -1.5px; font-weight: 800;
  max-width: 15ch; margin: 0 auto;
  text-wrap: balance;
}
.hero h1 .hl { color: var(--brand-600); }
@media (prefers-color-scheme: dark) and (min-width: 100000px) { .hero h1 .hl { color: var(--accent); } }
.sub {
  color: var(--muted); font-size: clamp(16px, 2vw, 19px);
  margin: var(--s5) auto var(--s6); max-width: 62ch; line-height: 1.62;
}
.hero.narrow { max-width: 480px; margin: 0 auto; text-align: left; padding: 56px 0; }
.hero.narrow h1 { text-align: center; font-size: clamp(26px, 5vw, 34px); max-width: none; }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: var(--s3); }
.tiny { color: var(--faint); font-size: 13px; }
.trust-row {
  display: inline-flex; flex-wrap: wrap; justify-content: center;
  gap: var(--s2) var(--s4); font-family: var(--font-mono);
  font-size: 12.5px; color: var(--faint); letter-spacing: .02em;
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.trust-row span::before { content: "→"; color: var(--signal-600); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  font-family: inherit; font-weight: 600; line-height: 1.4;
  border: 1px solid transparent; border-radius: var(--r-sm);
  cursor: pointer; text-align: center;
  background: var(--brand-600); color: #fff;
  padding: 12px 24px; font-size: 15.5px;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.14);
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.btn:hover { background: var(--brand-700); text-decoration: none;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.14); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { font-size: 17px; padding: 15px 32px; border-radius: var(--r-md); }
.btn-sm { font-size: 14px; padding: 8px 16px; }
.btn:disabled { opacity: .55; cursor: default; box-shadow: none; transform: none; }
.btn-ghost {
  background: transparent; color: var(--accent-dark); border-color: var(--line-strong);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--surf-sunk); border-color: var(--brand-500); }

/* ==========================================================================
   Section rhythm
   ========================================================================== */
section { padding: clamp(40px, 6vw, 72px) 0; }
.section-head { max-width: 60ch; margin-bottom: var(--s6); }
h2 { font-size: clamp(23px, 3.4vw, 29px); line-height: 1.2;
  letter-spacing: -0.6px; font-weight: 800; }
.section-head p { color: var(--muted); margin-top: var(--s3); font-size: 16.5px; }
.cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--s5); }

/* ==========================================================================
   How it works — a genuine ordered sequence, so numbering carries meaning
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--s4);
  list-style: none; padding: 0; margin: 0; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--s5); box-shadow: var(--shadow-sm);
}
.step .num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  color: var(--brand-600); letter-spacing: .05em; display: block;
  margin-bottom: var(--s3);
}
.step .num::after {
  content: ""; display: block; height: 2px; width: 26px; margin-top: var(--s2);
  background: linear-gradient(90deg, var(--brand-600), var(--signal-600));
  border-radius: 2px;
}
.step h3 { font-size: 16.5px; margin-bottom: var(--s2); letter-spacing: -.2px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ==========================================================================
   Cards (generic)
   ========================================================================== */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--s5); box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Why — narrative
   ========================================================================== */
.why .section-head { margin-bottom: var(--s5); }
.why p { color: var(--muted); max-width: 68ch; margin-bottom: var(--s4); font-size: 16.5px; }
.why p strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Score meter — instrument readout for 0..100 relevance
   ========================================================================== */
.meter { display: inline-flex; align-items: center; gap: 7px; vertical-align: middle; }
.meter .track {
  width: 46px; height: 6px; border-radius: var(--r-pill);
  background: var(--n-200); overflow: hidden; flex: none;
}
@media (prefers-color-scheme: dark) and (min-width: 100000px) { .meter .track { background: var(--line); } }
.meter .fill { display: block; height: 100%; border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--brand-500), var(--signal-600)); }
.meter.hot .fill { background: linear-gradient(90deg, var(--signal-600), var(--signal-700)); }
.meter .val {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 700;
  color: var(--ink); font-variant-numeric: tabular-nums; letter-spacing: -.02em;
}

/* ==========================================================================
   Badges
   ========================================================================== */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  padding: 2px 9px; border-radius: var(--r-xs); line-height: 1.6;
  letter-spacing: .01em; font-variant-numeric: tabular-nums;
}
.badge-score { background: var(--accent-soft); color: var(--accent-dark); }
.badge-hot { background: var(--signal-050); color: var(--signal-700); }
.badge-urgent { background: var(--alert-050); color: var(--alert-700); }
@media (prefers-color-scheme: dark) and (min-width: 100000px) {
  .badge-hot { color: #4fd6c4; }
  .badge-urgent { color: var(--danger); }
}

/* ==========================================================================
   Sample digest — framed as a real inbox/email "product screenshot"
   ========================================================================== */
.inbox {
  max-width: 780px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--line-strong);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.inbox-chrome {
  display: flex; align-items: center; gap: var(--s3);
  padding: 12px var(--s5); border-bottom: 1px solid var(--line);
  background: var(--surf-sunk);
}
.inbox-dots { display: inline-flex; gap: 6px; flex: none; }
.inbox-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); display: block; }
.inbox-chrome .from {
  font-family: var(--font-mono); font-size: 12.5px; color: var(--muted);
  letter-spacing: .01em; display: flex; align-items: center; gap: 7px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.inbox-chrome .from b { color: var(--ink); font-weight: 700; }
.inbox-chrome .when {
  margin-left: auto; flex: none; font-family: var(--font-mono);
  font-size: 12px; color: var(--faint);
}
.inbox-subject {
  padding: var(--s4) var(--s5) 0; font-size: 15px; font-weight: 700;
  color: var(--ink); letter-spacing: -.2px;
}
.inbox-subject .sig { color: var(--signal-700); }
@media (prefers-color-scheme: dark) and (min-width: 100000px) { .inbox-subject .sig { color: #4fd6c4; } }
.inbox-body { padding: var(--s3) var(--s5) var(--s5); }

/* Tender rows */
.tender {
  padding: var(--s4) 0; border-bottom: 1px solid var(--line);
}
.tender:last-child { border-bottom: 0; padding-bottom: 0; }
.tender-title { font-weight: 650; font-size: 15.5px; line-height: 1.4; letter-spacing: -.15px; }
.tender-title .rank {
  font-family: var(--font-mono); color: var(--brand-600); font-weight: 700;
  margin-right: 6px; font-variant-numeric: tabular-nums;
}
.tender-title .value {
  font-family: var(--font-mono); color: var(--signal-700); font-weight: 700;
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
@media (prefers-color-scheme: dark) and (min-width: 100000px) { .tender-title .value { color: #4fd6c4; } }
.tender-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2) var(--s3);
  color: var(--muted); font-size: 13px; margin-top: 7px;
  font-family: var(--font-mono); letter-spacing: .01em;
}
.tender-meta .sep { color: var(--line-strong); }
.tender-reason { font-size: 14px; margin-top: var(--s2); color: var(--n-700); line-height: 1.55; }
@media (prefers-color-scheme: dark) and (min-width: 100000px) { .tender-reason { color: var(--muted); } }
.inbox-foot {
  margin-top: var(--s4); padding-top: var(--s4); border-top: 1px dashed var(--line-strong);
  font-size: 13px; color: var(--muted);
}
.inbox-foot .mono { font-family: var(--font-mono); color: var(--faint); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing .cols { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); max-width: 720px; margin: 0 auto; align-items: start; }
.pricing .card { position: relative; box-shadow: var(--shadow-sm); }
.pricing .featured {
  border-color: var(--brand-500); box-shadow: var(--shadow-md);
  background:
    linear-gradient(var(--card), var(--card)) padding-box,
    linear-gradient(160deg, var(--brand-500), var(--signal-600)) border-box;
  border: 1.5px solid transparent;
}
.pricing .card h3 {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--muted);
}
.pricing .featured h3 { color: var(--brand-600); }
@media (prefers-color-scheme: dark) and (min-width: 100000px) { .pricing .featured h3 { color: var(--accent); } }
.plan-tag {
  position: absolute; top: -11px; right: var(--s5);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--brand-600); color: #fff; padding: 3px 10px; border-radius: var(--r-pill);
}
.price { font-size: 38px; font-weight: 800; margin: var(--s3) 0 var(--s4);
  letter-spacing: -1px; font-variant-numeric: tabular-nums; }
.price span { font-size: 15px; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.pricing ul { list-style: none; padding: 0; margin: 0 0 var(--s5); }
.pricing li {
  padding: 7px 0 7px 26px; position: relative; color: var(--n-700); font-size: 14.5px;
  border-top: 1px solid var(--line);
}
@media (prefers-color-scheme: dark) and (min-width: 100000px) { .pricing li { color: var(--muted); } }
.pricing li:first-child { border-top: 0; }
.pricing li::before {
  content: ""; position: absolute; left: 2px; top: 13px;
  width: 12px; height: 6px; border-left: 2px solid var(--signal-600);
  border-bottom: 2px solid var(--signal-600); transform: rotate(-45deg);
}
.pricing .btn { width: 100%; }

/* ==========================================================================
   Forms
   ========================================================================== */
.stack { display: flex; flex-direction: column; gap: var(--s3); margin: var(--s4) 0; }
input:not([type]), input[type="text"], input[type="email"], input[type="password"], textarea {
  font-family: inherit; font-size: 15px; line-height: 1.45;
  padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  background: var(--card); color: var(--ink); width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
input::placeholder, textarea::placeholder { color: var(--faint); }
input:focus, textarea:focus {
  border-color: var(--brand-500); outline: none;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
input:disabled { background: var(--surf-sunk); color: var(--muted); }
textarea { min-height: 130px; resize: vertical; }
label { font-size: 14px; color: var(--muted); font-weight: 500; }

.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s3); padding: var(--s2) 0; cursor: pointer; color: var(--ink); font-size: 15px;
}
.toggle-row input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.switch {
  flex: none; width: 42px; height: 24px; border-radius: var(--r-pill);
  background: var(--line-strong); position: relative; transition: background var(--t);
}
.switch::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.3);
  transition: transform var(--t);
}
.toggle-row input:checked + .switch { background: var(--brand-600); }
.toggle-row input:checked + .switch::after { transform: translateX(18px); }
.toggle-row input:focus-visible + .switch { outline: var(--focus); outline-offset: 2px; }

/* ==========================================================================
   Digest (web view)
   ========================================================================== */
.digest { max-width: 760px; margin: 0 auto; padding: var(--s7) 0 var(--s8); }
.digest-head h1 { font-size: clamp(24px, 4vw, 30px); letter-spacing: -.6px; }
.digest-head p { color: var(--muted); margin: var(--s3) 0 var(--s6); }
.digest h2 {
  font-size: 15px; font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted); font-weight: 700;
  margin: var(--s6) 0 var(--s4); padding-bottom: var(--s2); border-bottom: 1px solid var(--line);
}
.digest .tender-title .value { }
.digest .tender-meta a { color: var(--accent-dark); }
.rest-list { list-style: none; padding: 0; margin: 0; }
.rest-list li { padding: 11px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--muted); }
.rest-list li:last-child { border-bottom: 0; }
.urgent { color: var(--alert-700); font-weight: 600; }
@media (prefers-color-scheme: dark) and (min-width: 100000px) { .urgent { color: var(--danger); } }

/* ==========================================================================
   Waitlist
   ========================================================================== */
.waitlist-cta {
  position: relative; overflow: hidden;
  text-align: center; border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% -10%, var(--brand-050) 0%, transparent 55%),
    var(--card);
  border-radius: var(--r-xl); padding: clamp(36px, 5vw, 56px) 24px; margin: var(--s6) 0;
  box-shadow: var(--shadow-sm);
}
.waitlist-cta h2 { margin-bottom: var(--s3); }
.waitlist-cta p { color: var(--muted); max-width: 56ch; margin: 0 auto var(--s5); }
.wl-form { display: flex; gap: var(--s2); max-width: 440px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center; }
.wl-form input { flex: 1; min-width: 220px; }

/* ==========================================================================
   Notices
   ========================================================================== */
.notice-ok, .notice-warn {
  border-radius: var(--r-sm); padding: 11px 15px; font-size: 14px;
  margin-bottom: var(--s4); border: 1px solid transparent;
}
.notice-ok { background: var(--signal-050); color: var(--signal-700); border-color: color-mix(in srgb, var(--signal-600) 30%, transparent); }
.notice-warn { background: var(--alert-050); color: var(--alert-700); border-color: color-mix(in srgb, var(--alert-700) 28%, transparent); }
@media (prefers-color-scheme: dark) and (min-width: 100000px) {
  .notice-ok { color: #4fd6c4; }
  .notice-warn { color: var(--danger); }
}

/* ==========================================================================
   Legal
   ========================================================================== */
.legal { max-width: 700px; margin: 0 auto; padding: var(--s7) 0 var(--s8); }
.legal h1 { font-size: clamp(26px, 4vw, 32px); margin-bottom: var(--s2); letter-spacing: -.6px; }
.legal h2 { font-size: 18px; margin: var(--s6) 0 var(--s3); letter-spacing: -.2px; }
.legal p, .legal li { color: var(--muted); font-size: 15.5px; margin-bottom: var(--s3); line-height: 1.65; }
.legal ul { padding-left: 22px; }

/* ==========================================================================
   Footer
   ========================================================================== */
footer.site-foot {
  border-top: 1px solid var(--line); margin-top: var(--s8);
  background: var(--surf-sunk);
}
footer.site-foot .foot-inner {
  max-width: var(--maxw); margin: 0 auto; padding: var(--s7) 24px;
  display: flex; flex-wrap: wrap; gap: var(--s5); justify-content: space-between; align-items: flex-start;
}
footer .foot-brand .logo { font-size: 19px; }
footer .foot-brand p { color: var(--muted); font-size: 13.5px; margin-top: var(--s2); max-width: 40ch; }
footer .foot-links { display: flex; flex-wrap: wrap; gap: var(--s2) var(--s4); align-items: center;
  font-size: 13.5px; }
footer .foot-links a { color: var(--muted); }
footer .foot-links a:hover { color: var(--ink); }
footer .foot-meta { width: 100%; border-top: 1px solid var(--line); padding-top: var(--s4);
  font-family: var(--font-mono); font-size: 12px; color: var(--faint); letter-spacing: .01em; }

/* ==========================================================================
   Motion & responsive
   ========================================================================== */
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hero > *:not(.radar-field) { animation: rise .6s ease both; }
.hero .eyebrow { animation-delay: .02s; }
.hero h1 { animation-delay: .08s; }
.hero .sub { animation-delay: .16s; }
.hero .hero-actions { animation-delay: .24s; }

@media (max-width: 640px) {
  main { padding: 0 18px; }
  .nav { padding: 14px 18px; }
  .nav nav { gap: var(--s4); }
  .inbox-chrome .from .from-label { display: none; }
  .tender-title .value { display: inline-block; margin-top: 2px; }
  footer.site-foot .foot-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .hero > *:not(.radar-field) { opacity: 1 !important; transform: none !important; }
}
