/* ═══════════════════════════════════════════════════════════════════════════
   UberVisor Marketing Site — shared styles
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --font: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Brand */
  --primary:    #6366f1;
  --primary-h:  #4f46e5;
  --accent:     #0ea5e9;
  --hi-vis:     #f59e0b;
  --hi-vis-2:   #f97316;
  --success:    #22c55e;
  --danger:     #ef4444;

  /* Site (light sections — default) */
  --bg:         #ffffff;
  --bg-alt:     #f4f6f9;
  --bg-stripe:  #eef1f6;
  --surface:    #ffffff;
  --surface-2:  #f0f2f6;
  --border:     #e2e6ed;
  --border-2:   #c8d0db;
  --text:       #0f1117;
  --text-2:     #3d4a5c;
  --text-3:     #7e8fa8;
  --tag-bg:     rgba(99,102,241,0.08);
  --tag-text:   #4f46e5;

  /* Dark accents reused */
  --dark-bg:        #0f1117;
  --dark-surface:   #161b27;
  --dark-surface-2: #1e2535;
  --dark-border:    #2a3348;
  --dark-text:      #e2e8f0;
  --dark-text-mute: #7e8fa8;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  14px;
  --radius-xl:  20px;

  --container:  1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

/* ── Nav ────────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 17, 23, 0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #e2e8f0;
}
.site-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 66px;
  display: flex; align-items: center; gap: 36px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(99,102,241,0.35);
  position: relative;
}
.brand-mark::before {
  content: '';
  position: absolute; inset: 6px;
  background: white;
  clip-path: polygon(50% 12%, 95% 88%, 5% 88%);
  opacity: 0.96;
}
.brand-mark.lg { width: 38px; height: 38px; border-radius: 10px; }
.brand-name {
  font-size: 16px; font-weight: 800; letter-spacing: -0.02em;
  color: #ffffff;
}
.brand-name .dot { color: var(--hi-vis); }

.site-nav-links {
  display: flex; align-items: center; gap: 28px;
  margin-left: 8px;
}
.site-nav-links a {
  font-size: 13.5px; font-weight: 500; color: #c8d0db;
  text-decoration: none; transition: color .12s;
  position: relative;
  padding: 22px 0;
}
.site-nav-links a:hover { color: #fff; }
.site-nav-links a.active { color: #fff; }
.site-nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--hi-vis);
}

.site-nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.nav-link-quiet {
  font-size: 13.5px; color: #c8d0db; text-decoration: none; font-weight: 500;
  transition: color .12s;
}
.nav-link-quiet:hover { color: #fff; }
.btn-signin {
  background: #6366f1; color: #fff;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13.5px; font-weight: 700; letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid #6366f1;
  transition: background .12s, border-color .12s;
}
.btn-signin:hover { background: #4f46e5; border-color: #4f46e5; }
.btn-signin svg { width: 14px; height: 14px; }

/* ── Page hero (dark) ──────────────────────────────────────────────────── */
.hero {
  background: var(--dark-bg);
  color: var(--dark-text);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 800px 500px at 50% 0%, #000 30%, transparent 75%);
}
.hero::after {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.16) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px 28px 72px;
  position: relative; z-index: 1;
}
.hero-inner.compact { padding: 64px 28px 56px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,158,11,0.10);
  border: 1px solid rgba(245,158,11,0.32);
  color: #fbbf24;
  border-radius: 9999px;
  padding: 5px 13px 5px 10px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-mono);
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--hi-vis); box-shadow: 0 0 0 3px rgba(245,158,11,0.18); }
.eyebrow.indigo { background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.32); color: #a5b4fc; }
.eyebrow.indigo .eyebrow-dot { background: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,0.18); }

.hero h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-wrap: balance;
  margin: 22px 0 22px;
}
.hero h1 .hl { color: var(--hi-vis); }
.hero h1 .underline {
  background: linear-gradient(180deg, transparent 60%, rgba(245,158,11,0.45) 60%);
  padding: 0 2px;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(226,232,240,0.7);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14.5px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  border: 1px solid transparent;
  transition: background .12s, border-color .12s, color .12s;
}
.btn-primary { background: #6366f1; color: #fff; }
.btn-primary:hover { background: #4f46e5; }
.btn-ghost { background: rgba(255,255,255,0.06); color: #e2e8f0; border-color: rgba(255,255,255,0.16); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }
.btn-primary svg, .btn-ghost svg { width: 14px; height: 14px; }

.hero-meta {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center;
  color: rgba(226,232,240,0.55);
  font-size: 12px; font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(226,232,240,0.35); }

/* ── Hero split (web + mobile) ─────────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 960px) { .hero-split { grid-template-columns: 1fr; } }

.hero-product {
  position: relative;
  height: 520px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 960px) { .hero-product { height: 460px; margin-top: 24px; } }

/* Section shells ───────────────────────────────────────────────────────── */
.section {
  padding: 96px 28px;
}
.section.tight { padding: 72px 28px; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section.alt { background: var(--bg-alt); }
.section.stripe { background: var(--bg-stripe); }
.section.dark { background: var(--dark-bg); color: var(--dark-text); }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  font-family: var(--font-mono);
  color: var(--hi-vis-2);
}
.section-eyebrow .bar { width: 24px; height: 2px; background: var(--hi-vis); }
.section.dark .section-eyebrow { color: var(--hi-vis); }

.section-title {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--text);
  text-wrap: balance;
  margin-top: 14px;
}
.section.dark .section-title { color: #fff; }
.section-sub {
  margin-top: 16px;
  font-size: 17px; color: var(--text-2); line-height: 1.65;
  max-width: 620px;
}
.section.dark .section-sub { color: rgba(226,232,240,0.7); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head.center .section-eyebrow { justify-content: center; }
.section-head.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end;
}
.section-head.split .section-sub { margin-top: 0; }
@media (max-width: 800px) { .section-head.split { grid-template-columns: 1fr; gap: 24px; } }

/* ── Stat strip ─────────────────────────────────────────────────────────── */
.stat-strip {
  background: #0f1117;
  color: #fff;
  border-top: 4px solid var(--hi-vis);
  border-bottom: 1px solid var(--dark-border);
}
.stat-strip-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 36px 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
@media (max-width: 800px) { .stat-strip-inner { grid-template-columns: repeat(2,1fr); } }
.stat-item { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
  font-size: 38px; font-weight: 800; letter-spacing: -0.03em;
  color: #fff; line-height: 1;
}
.stat-num small { font-size: 18px; color: var(--hi-vis); font-weight: 700; margin-left: 2px; }
.stat-label {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(226,232,240,0.55);
  font-family: var(--font-mono);
}

/* ── Trust bar ──────────────────────────────────────────────────────────── */
.trust-bar { padding: 36px 28px; border-bottom: 1px solid var(--border); background: var(--bg); }
.trust-bar-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.trust-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-3); font-family: var(--font-mono);
  white-space: nowrap;
}
.trust-pills { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 12.5px; font-weight: 600;
  color: var(--text-2);
}
.trust-pill .swatch {
  width: 18px; height: 18px; border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
  font-family: var(--font-mono);
}

/* ── Feature grids ──────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-cell {
  background: var(--surface);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.feature-cell:hover { background: var(--bg-alt); }
.feature-cell-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(99,102,241,0.10);
}
.feature-cell-icon svg { width: 22px; height: 22px; }
.feature-cell-title {
  font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -0.01em;
}
.feature-cell-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.feature-cell-tag {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3);
}

/* split feature row ──────────────────────────────────────────────────── */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) { .feature-split { grid-template-columns: 1fr; gap: 32px; } }
.feature-split.reverse > :first-child { order: 2; }
@media (max-width: 900px) { .feature-split.reverse > :first-child { order: 0; } }

.feature-list { display: flex; flex-direction: column; gap: 26px; margin-top: 28px; }
.feature-list-item { display: flex; gap: 16px; }
.feature-list-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.feature-list-icon svg { width: 20px; height: 20px; }
.feature-list-item h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feature-list-item p  { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ── Mock UI panels (light & dark variants) ────────────────────────────── */
.mock-window {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -20px rgba(15,17,23,0.18), 0 8px 20px -8px rgba(15,17,23,0.10);
  overflow: hidden;
}
.mock-window.dark {
  background: var(--dark-surface);
  border-color: var(--dark-border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.mock-window-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 0 14px;
  height: 44px;
  display: flex; align-items: center; gap: 10px;
}
.mock-window.dark .mock-window-bar { background: var(--dark-surface-2); border-bottom-color: var(--dark-border); }
.dots { display: flex; gap: 5px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.url-pill {
  flex: 1; max-width: 320px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11px; color: var(--text-3); font-family: var(--font-mono);
  text-align: center;
}
.mock-window.dark .url-pill {
  background: var(--dark-bg); border-color: var(--dark-border); color: rgba(226,232,240,0.45);
}
.mock-window-body { padding: 16px; }
.mock-window.dark .mock-window-body { color: var(--dark-text); }

/* Gantt row mock (used in screenshots) ────────────────────────────────── */
.gantt-mock { display: flex; flex-direction: column; gap: 6px; }
.gantt-mock-head {
  display: flex; align-items: center; gap: 10px;
  padding: 4px 0 10px;
  font-size: 12px;
}
.gantt-mock-head .title { font-weight: 700; color: var(--text); flex: 1; }
.mock-window.dark .gantt-mock-head .title { color: #fff; }
.add-btn {
  background: var(--primary); color: #fff;
  border: 0;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 11px; font-weight: 700;
  display: inline-flex; gap: 4px; align-items: center;
}
.gantt-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
}
.mock-window.dark .gantt-row {
  background: var(--dark-surface-2);
  border-color: var(--dark-border);
}
.gantt-row .num {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 700; color: var(--text-3);
  width: 18px; text-align: center;
}
.gantt-row .label {
  flex: 1;
  font-size: 12px; color: var(--text); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mock-window.dark .gantt-row .label { color: #e2e8f0; }
.chip {
  font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 3px 8px; border-radius: 9999px; font-family: var(--font-mono);
}
.chip.high     { background: rgba(249,115,22,0.14); color: #f97316; }
.chip.med      { background: rgba(245,158,11,0.14); color: #f59e0b; }
.chip.low      { background: rgba(34,197,94,0.14);  color: #22c55e; }
.chip.critical { background: rgba(239,68,68,0.14);  color: #ef4444; }
.chip.shift-pn { background: rgba(139,92,246,0.14); color: #a78bfa; }
.chip.shift-pd { background: rgba(14,165,233,0.14); color: #0ea5e9; }
.chip.shift-eh { background: rgba(99,102,241,0.14); color: #818cf8; }

.day-cells { display: flex; gap: 3px; }
.day-cell {
  width: 22px; height: 20px; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  font-family: var(--font-mono);
}
.day-cell.c { background: rgba(34,197,94,0.18);  color: #16a34a; }
.day-cell.p { background: rgba(59,130,246,0.18); color: #2563eb; }
.day-cell.a { background: rgba(239,68,68,0.18);  color: #dc2626; }
.day-cell.empty { background: var(--bg-stripe); color: var(--text-3); }
.mock-window.dark .day-cell.c { background: rgba(34,197,94,0.18);  color: #22c55e; }
.mock-window.dark .day-cell.p { background: rgba(59,130,246,0.18); color: #3b82f6; }
.mock-window.dark .day-cell.a { background: rgba(239,68,68,0.18);  color: #ef4444; }
.mock-window.dark .day-cell.empty { background: var(--dark-surface-2); color: var(--text-3); }

/* ── Phone mock ────────────────────────────────────────────────────────── */
.phone {
  width: 290px;
  background: #0a0d14;
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    0 40px 80px -20px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 2px #1a1f2e;
  position: relative;
}
.phone-screen {
  background: var(--dark-bg);
  border-radius: 28px;
  overflow: hidden;
  padding: 14px;
  color: var(--dark-text);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 480px;
}
.phone-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700; color: #e2e8f0;
  padding: 2px 4px 8px;
  font-family: var(--font-mono);
}
.phone-statusbar .icons { display: flex; gap: 6px; align-items: center; }
.phone-greet-card {
  background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
  border-radius: 14px;
  padding: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.phone-greet-card .h { font-size: 15px; font-weight: 800; color: #fff; }
.phone-greet-card .s { font-size: 10.5px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.cscs-pill {
  border: 1.5px solid #1e40af;
  border-radius: 9999px;
  padding: 4px 10px;
  display: flex; align-items: center; gap: 5px;
  font-size: 9px; font-weight: 800; color: #fff;
  background: rgba(30,64,175,0.4);
}
.cscs-pill .swatch { width: 7px; height: 7px; border-radius: 50%; background: #1e40af; }

.phone-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.phone-stat {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  padding: 9px 11px;
}
.phone-stat.success { background: #052e16; border-color: #14532d; }
.phone-stat .label {
  font-size: 9px; font-weight: 700; color: var(--dark-text-mute);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 3px;
  font-family: var(--font-mono);
}
.phone-stat.success .label { color: #22c55e; }
.phone-stat .v { font-size: 18px; font-weight: 800; color: #fff; line-height: 1; display: flex; align-items: center; gap: 5px; }
.phone-stat.success .v { color: #22c55e; }
.phone-stat .v small { font-size: 10px; color: var(--dark-text-mute); font-weight: 500; }
.phone-stat .dot-live { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }

.phone-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 11px 12px;
  display: flex; align-items: center; gap: 10px;
}
.phone-card-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.phone-card .t { font-size: 12px; font-weight: 700; color: #fff; }
.phone-card .s { font-size: 10px; color: var(--dark-text-mute); margin-top: 1px; }
.phone-card .status-dot { margin-left: auto; width: 7px; height: 7px; border-radius: 50%; }

.cred-row {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 11px;
  background: var(--dark-surface-2);
  border: 1px solid var(--dark-border);
  border-radius: 9px;
}
.cred-row .name { flex: 1; font-size: 11px; font-weight: 600; color: #e2e8f0; }
.cred-row .badge {
  font-size: 9px; font-weight: 800;
  font-family: var(--font-mono);
  padding: 2px 7px; border-radius: 9999px;
  border: 1px solid;
}
.cred-row .badge.ok { background: #052e16; border-color: #14532d; color: #22c55e; }
.cred-row .badge.warn { background: #1c1405; border-color: #451a03; color: #f59e0b; }

/* ── CTA strip ─────────────────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, #1a1d52 0%, #0f1117 60%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  pointer-events: none;
}
.cta-strip-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 84px 28px;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; align-items: center;
}
@media (max-width: 800px) { .cta-strip-inner { grid-template-columns: 1fr; } }
.cta-strip h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #fff;
  text-wrap: balance;
}
.cta-strip p {
  font-size: 16px; color: rgba(255,255,255,0.68); margin-top: 14px; line-height: 1.6;
  max-width: 480px;
}
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.cta-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px;
}
.cta-card .l {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--hi-vis); font-family: var(--font-mono); margin-bottom: 10px;
}
.cta-card h4 { color: #fff; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.cta-card p  { color: rgba(255,255,255,0.6); font-size: 13.5px; margin: 0 0 14px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark-bg);
  color: rgba(226,232,240,0.6);
  border-top: 1px solid var(--dark-border);
}
.site-footer-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 64px 28px 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 800px) { .site-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
.site-footer h5 {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--hi-vis); font-family: var(--font-mono); margin-bottom: 14px;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer a {
  color: rgba(226,232,240,0.7); text-decoration: none; font-size: 13.5px;
  transition: color .12s;
}
.site-footer a:hover { color: #fff; }
.site-footer-brand-tag {
  font-size: 13px; color: rgba(226,232,240,0.55); line-height: 1.6;
  margin-top: 16px; max-width: 280px;
}
.site-footer-bottom {
  border-top: 1px solid var(--dark-border);
  max-width: var(--container); margin: 0 auto;
  padding: 24px 28px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: rgba(226,232,240,0.45);
  font-family: var(--font-mono);
}
.site-footer-bottom .right { display: flex; gap: 18px; }

/* ── Tweaks panel (only on home) ───────────────────────────────────────── */
.tweaks-panel {
  position: fixed; bottom: 20px; right: 20px;
  background: var(--dark-surface); border: 1px solid var(--dark-border);
  border-radius: 14px;
  padding: 16px 18px;
  z-index: 999; min-width: 240px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  display: none; flex-direction: column; gap: 14px;
  font-family: var(--font);
}
.tweaks-panel.visible { display: flex; }
.tweaks-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #7e8fa8; font-family: var(--font-mono); }
.tweaks-group { display: flex; flex-direction: column; gap: 6px; }
.tweaks-label { font-size: 11px; font-weight: 600; color: #a8b8cc; }
.tweaks-options { display: flex; gap: 5px; flex-wrap: wrap; }
.tweak-btn {
  padding: 6px 11px; border-radius: 6px; border: 1px solid var(--dark-border);
  background: transparent; color: var(--dark-text-mute);
  font-family: var(--font); font-size: 11.5px; font-weight: 600;
  cursor: pointer; transition: all .12s;
}
.tweak-btn:hover { border-color: var(--primary); color: #a5b4fc; }
.tweak-btn.active { background: rgba(99,102,241,0.2); border-color: var(--primary); color: #a5b4fc; }

/* ── Generic page utilities ─────────────────────────────────────────────── */
.kicker {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-3);
}
.kicker.dark { color: rgba(255,255,255,0.55); }
.callout-block {
  background: var(--dark-bg);
  color: var(--dark-text);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--dark-border);
  position: relative;
}
.divider-line {
  height: 1px; background: var(--border); margin: 0;
}

/* Pricing-specific (used on pricing page) */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.price-card.featured {
  background: var(--dark-bg); color: var(--dark-text);
  border-color: var(--primary);
  box-shadow: 0 24px 48px -20px rgba(99,102,241,0.45);
}
.price-card.featured .price-name,
.price-card.featured .price-cost { color: #fff; }
.price-card.featured .price-feature .check { color: var(--hi-vis); }
.price-card.featured .price-feature { color: rgba(255,255,255,0.85); }
.price-card.featured .price-sub { color: rgba(255,255,255,0.6); }
.price-card.featured .price-cost-suffix { color: rgba(255,255,255,0.55); }
.price-tag {
  position: absolute; top: -10px; right: 20px;
  background: var(--hi-vis); color: var(--dark-bg);
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 6px;
  font-family: var(--font-mono);
}
.price-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.price-sub  { font-size: 13px; color: var(--text-3); line-height: 1.5; }
.price-cost { font-size: 44px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.price-cost-suffix { font-size: 13px; color: var(--text-3); font-weight: 500; margin-left: 6px; }
.price-features { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.price-feature { font-size: 13.5px; color: var(--text-2); display: flex; gap: 9px; align-items: flex-start; }
.price-feature .check { color: var(--primary); font-weight: 800; flex-shrink: 0; line-height: 1.4; }
.price-cta {
  margin-top: auto;
  background: var(--surface-2); color: var(--text);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 10px; text-align: center;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: background .12s, border-color .12s, color .12s;
}
.price-cta:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.price-card.featured .price-cta {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.price-card.featured .price-cta:hover { background: var(--primary-h); border-color: var(--primary-h); }

/* Testimonial card */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.testi-quote { font-size: 16px; line-height: 1.55; color: var(--text); font-weight: 500; }
.testi-quote::before { content: '"'; color: var(--hi-vis); font-size: 36px; line-height: 0; vertical-align: -0.18em; margin-right: 4px; font-family: Georgia, serif; }
.testi-author { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
  font-family: var(--font-mono);
}
.testi-name { font-size: 13.5px; font-weight: 700; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text-3); }

/* Compliance grid (security page) */
.compliance-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 900px) { .compliance-grid { grid-template-columns: repeat(2,1fr); } }
.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.cert-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(245,158,11,0.12); color: var(--hi-vis-2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 14px; font-weight: 800;
}
.cert-name { font-size: 14px; font-weight: 700; }
.cert-desc { font-size: 12.5px; color: var(--text-3); line-height: 1.5; }

/* Case study card */
.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 900px) { .case-card { grid-template-columns: 1fr; } }
.case-card-cover {
  padding: 32px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 260px;
  color: #fff;
  background: var(--dark-bg);
}
.case-card-cover::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at bottom right, #000, transparent 75%);
  pointer-events: none;
}
.case-card-cover > * { position: relative; }
.case-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  align-self: flex-start;
  padding: 4px 10px; border-radius: 9999px;
}
.case-card-title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.case-card-body {
  padding: 32px;
  display: flex; flex-direction: column; gap: 20px;
}
.case-quote { font-size: 16px; color: var(--text); line-height: 1.55; font-weight: 500; }
.case-quote::before { content: '"'; color: var(--hi-vis); font-size: 32px; line-height: 0; vertical-align: -0.2em; margin-right: 4px; font-family: Georgia, serif; }
.case-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; border-top: 1px solid var(--border); padding-top: 20px; }
.case-stat .v { font-size: 26px; font-weight: 800; letter-spacing: -0.025em; line-height: 1; }
.case-stat .v small { font-size: 14px; color: var(--hi-vis-2); font-weight: 700; margin-left: 2px; }
.case-stat .l {
  font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-3); font-family: var(--font-mono); margin-top: 4px;
}
.case-author { display: flex; align-items: center; gap: 10px; }
.case-author .ava {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 800; color: #fff; font-size: 12px;
}
.case-author .n { font-size: 13px; font-weight: 700; color: var(--text); }
.case-author .r { font-size: 11.5px; color: var(--text-3); }

/* ── Product brand tokens ──────────────────────────────────────────────── */
:root {
  --wallet-c:    #6366f1;
  --wallet-c-bg: rgba(99,102,241,0.10);
  --certify-c:    #f59e0b;
  --certify-c-bg: rgba(245,158,11,0.12);
  --lookahead-c:    #0ea5e9;
  --lookahead-c-bg: rgba(14,165,233,0.10);
  --soon-c:    #8b5cf6;
  --soon-c-bg: rgba(139,92,246,0.10);
}

/* ── Product cards (home page hero + sections) ─────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(15,17,23,0.12);
  border-color: var(--border-2);
}
.product-card-stripe {
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
}
.product-card.wallet    .product-card-stripe { background: var(--wallet-c); }
.product-card.certify   .product-card-stripe { background: var(--certify-c); }
.product-card.lookahead .product-card-stripe { background: var(--lookahead-c); }
.product-card.soon      .product-card-stripe { background: var(--soon-c); }

.product-card-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 10px 5px 8px;
  border-radius: 9999px;
  align-self: flex-start;
}
.product-card.wallet    .product-card-tag { background: var(--wallet-c-bg); color: var(--wallet-c); }
.product-card.certify   .product-card-tag { background: var(--certify-c-bg); color: #c2710b; }
.product-card.lookahead .product-card-tag { background: var(--lookahead-c-bg); color: #0284c7; }
.product-card.soon      .product-card-tag { background: var(--soon-c-bg); color: #7c3aed; }
.product-card-tag .dot {
  width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}

.product-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.product-card.wallet    .product-card-icon { background: var(--wallet-c-bg); }
.product-card.certify   .product-card-icon { background: var(--certify-c-bg); }
.product-card.lookahead .product-card-icon { background: var(--lookahead-c-bg); }
.product-card.soon      .product-card-icon { background: var(--soon-c-bg); }
.product-card-icon svg { width: 26px; height: 26px; }

.product-card-name {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--text);
}
.product-card-name small {
  display: block;
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-3); font-family: var(--font-mono); margin-bottom: 4px;
}
.product-card-desc {
  font-size: 14.5px; color: var(--text-2); line-height: 1.6;
  flex: 1;
}
.product-card-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700;
  color: var(--text);
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.product-card-cta .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--surface-2);
  transition: background .15s, color .15s;
}
.product-card:hover .arrow { background: var(--text); color: #fff; }

.product-card-price {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  color: var(--text-3);
  margin-left: auto;
  padding: 3px 9px;
  border: 1px solid var(--border);
  border-radius: 9999px;
}
.product-card.wallet .product-card-price { color: var(--success); border-color: rgba(34,197,94,0.30); background: rgba(34,197,94,0.06); }
.product-card.lookahead .product-card-price { color: var(--success); border-color: rgba(34,197,94,0.30); background: rgba(34,197,94,0.06); }

/* ── Pricing card adaptions for cert-allowance ─────────────────────────── */
.cert-allowance {
  display: grid; grid-template-columns: auto 1fr; gap: 10px 14px;
  margin-top: 4px; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
}
.cert-allowance dt { font-weight: 700; color: var(--text); }
.cert-allowance dd { color: var(--text-2); }
.price-card.featured .cert-allowance dt { color: #fff; }
.price-card.featured .cert-allowance dd { color: rgba(255,255,255,0.7); }

/* ── Certify-specific issuer dashboard mock ────────────────────────────── */
.cert-mock-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--dark-surface-2);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
}
.cert-mock-row .ava {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.cert-mock-row .nm { font-size: 12.5px; font-weight: 600; color: #fff; line-height: 1.3; }
.cert-mock-row .sub { font-size: 11px; color: var(--dark-text-mute); font-family: var(--font-mono); margin-top: 2px; }
.cert-mock-row .right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.cert-badge {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 3px 8px; border-radius: 9999px;
  border: 1px solid;
}
.cert-badge.issued  { background: rgba(34,197,94,0.10); border-color: rgba(34,197,94,0.32); color: #22c55e; }
.cert-badge.pending { background: rgba(245,158,11,0.10); border-color: rgba(245,158,11,0.32); color: #f59e0b; }
.cert-badge.revoked { background: rgba(239,68,68,0.10); border-color: rgba(239,68,68,0.32); color: #ef4444; }

/* ── Soon / waitlist callout ───────────────────────────────────────────── */
.soon-card {
  background: var(--dark-bg);
  color: var(--dark-text);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.soon-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at top right, #000 30%, transparent 75%);
  pointer-events: none;
}
.soon-card > * { position: relative; }
.soon-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,92,246,0.14);
  border: 1px solid rgba(139,92,246,0.32);
  color: #c4b5fd;
  border-radius: 9999px;
  padding: 5px 13px 5px 10px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  font-family: var(--font-mono);
}
.soon-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: #a78bfa; box-shadow: 0 0 0 3px rgba(139,92,246,0.18); }

.waitlist-form {
  display: flex; gap: 8px; max-width: 460px; margin-top: 22px;
}
.waitlist-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 9px;
  padding: 12px 14px;
  color: #fff;
  font-family: var(--font); font-size: 14px;
  outline: none;
  transition: border-color .12s;
}
.waitlist-form input:focus { border-color: #a78bfa; }
.waitlist-form input::placeholder { color: rgba(255,255,255,0.45); }
.waitlist-form button {
  background: #8b5cf6; color: #fff;
  border: 0; border-radius: 9px;
  padding: 12px 18px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .12s;
}
.waitlist-form button:hover { background: #7c3aed; }

/* ── App store badges ───────────────────────────────────────────────────── */
.store-row { display: flex; gap: 10px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 14px;
  background: #0f1117;
  color: #fff;
  border: 1px solid #2a3348;
  border-radius: 10px;
  text-decoration: none;
  transition: background .12s, border-color .12s;
}
.store-badge:hover { background: #1e2535; border-color: #6366f1; }
.store-badge svg { width: 22px; height: 22px; }
.store-badge .l { font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); font-family: var(--font-mono); }
.store-badge .n { font-size: 14px; font-weight: 700; line-height: 1.1; margin-top: 1px; }

/* Featurelist with rule lines */
.rule-list { display: flex; flex-direction: column; }
.rule-list > div {
  display: grid; grid-template-columns: 64px 1fr 220px;
  gap: 28px; align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.rule-list > div:last-child { border-bottom: 1px solid var(--border); }
.rule-list .idx {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 700;
  color: var(--hi-vis-2);
  letter-spacing: 0.06em;
}
.rule-list .t { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; }
.rule-list .d { font-size: 14px; color: var(--text-2); line-height: 1.55; margin-top: 4px; }
.rule-list .meta { font-size: 12px; color: var(--text-3); font-family: var(--font-mono); }
@media (max-width: 800px) {
  .rule-list > div { grid-template-columns: 1fr; gap: 8px; }
}

/* ── Mobile nav (hamburger drawer) — added in the responsive pass ──────────
   The 8-item top nav had no mobile treatment and crowded/overflowed on a
   phone. Below 800px it collapses into a hamburger-toggled drawer. CSS-only
   (checkbox hack) so there's no JS to fail, and navigating to a new page
   resets it closed automatically. The checkbox is visually hidden but stays
   keyboard-focusable; the <label> is the visible hamburger. */
.nav-toggle-cb { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.nav-toggle { display: none; }

@media (max-width: 800px) {
  .site-nav-inner { flex-wrap: wrap; gap: 0; height: auto; min-height: 66px; }

  /* Hamburger button — 44px touch target, pushed to the far right of row 1 */
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: auto; width: 44px; height: 44px;
    border-radius: 8px; cursor: pointer; color: #e2e8f0;
  }
  .nav-toggle > span, .nav-toggle > span::before, .nav-toggle > span::after {
    content: ''; position: absolute;
    width: 20px; height: 2px; border-radius: 2px; background: currentColor;
  }
  .nav-toggle > span { position: relative; }
  .nav-toggle > span::before { top: -6px; }
  .nav-toggle > span::after  { top: 6px; }
  .nav-toggle-cb:focus-visible + .nav-toggle { outline: 2px solid var(--hi-vis); outline-offset: 2px; }

  /* Collapsible panels — hidden until the checkbox is checked, then stacked */
  .site-nav-links, .site-nav-right {
    display: none; flex-direction: column; align-items: stretch;
    width: 100%; margin: 0; gap: 0;
  }
  .nav-toggle-cb:checked ~ .site-nav-links,
  .nav-toggle-cb:checked ~ .site-nav-right { display: flex; }

  .site-nav-links { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 4px; }
  .site-nav-links a { padding: 12px 2px; width: 100%; font-size: 15px; }
  .site-nav-links a.active::after { display: none; }

  .site-nav-right { margin-left: 0; padding: 4px 0 14px; gap: 10px; }
  .nav-link-quiet { padding: 10px 2px; }
  .btn-signin { width: 100%; justify-content: center; }
}
