/* ============================================================
   Brett — design system
   Palette : ink vault + mint(approved) / risk(red) / amber(review)
   Type    : Instrument Serif (display) · Geist (UI) · JetBrains Mono (data)
   ============================================================ */

:root {
  /* color */
  --ink: #0A0C10;
  --ink-2: #0C0F14;
  --panel: #12161D;
  --panel-2: #171C25;
  --panel-3: #1C2230;
  --hair: rgba(255, 255, 255, 0.08);
  --hair-soft: rgba(255, 255, 255, 0.05);
  --hair-strong: rgba(255, 255, 255, 0.14);

  --text: #F2F4F7;
  --muted: #97A1B0;
  --faint: #5C6675;

  --mint: #2FE6B8;
  --mint-deep: #16B894;
  --mint-soft: rgba(47, 230, 184, 0.12);
  --mint-line: rgba(47, 230, 184, 0.45);
  --risk: #FF5D5D;
  --risk-soft: rgba(255, 93, 93, 0.12);
  --amber: #FFB454;
  --amber-soft: rgba(255, 180, 84, 0.14);

  /* paper (light doc on dark hero) */
  --paper: #F6F7F9;
  --paper-2: #ECEEF2;
  --paper-ink: #1A1F29;
  --paper-muted: #6B7280;

  /* type */
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* layout */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 20px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ───────── reset ───────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
::selection { background: var(--mint-soft); color: var(--text); }

/* ───────── typography helpers ───────── */
.mono { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.02em; }
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: 0; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 1.4rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

/* ───────── layout ───────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-title {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
}
.section-lede {
  margin-top: 1.1rem;
  font-size: 1.075rem;
  color: var(--muted);
  max-width: 560px;
}

/* ───────── ambient background ───────── */
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% -8%, rgba(47, 230, 184, 0.16), transparent 60%),
    radial-gradient(50% 40% at 8% 12%, rgba(47, 230, 184, 0.05), transparent 70%);
}
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--hair-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 50% 0%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(80% 60% at 50% 0%, black, transparent 75%);
}
main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ───────── buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-size: 0.95rem; font-weight: 500; letter-spacing: -0.01em;
  padding: 0.7em 1.3em; border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--mint); color: #052018; font-weight: 600;
  box-shadow: 0 0 0 1px rgba(47,230,184,0.25), 0 8px 30px -8px rgba(47, 230, 184, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(47,230,184,0.4), 0 14px 40px -10px rgba(47, 230, 184, 0.7); }
.btn-ghost {
  background: rgba(255,255,255,0.03); color: var(--text);
  border-color: var(--hair);
}
.btn-ghost:hover { border-color: var(--mint-line); color: var(--mint); transform: translateY(-2px); }
.btn-lg { padding: 0.95em 1.7em; font-size: 1rem; }
.link-quiet { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.link-quiet:hover { color: var(--text); }
.link-arrow {
  color: var(--mint); font-weight: 500; font-size: 0.98rem;
  display: inline-flex; align-items: center; gap: 0.5em; transition: gap 0.25s var(--ease);
}
.link-arrow:hover { gap: 0.85em; }

/* ───────── header ───────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 12, 16, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--hair); background: rgba(10, 12, 16, 0.82); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 2rem; }
.wordmark { display: inline-flex; align-items: center; gap: 0.55em; font-size: 1.2rem; font-weight: 600; letter-spacing: -0.02em; }
.wordmark-mark { color: var(--mint); display: inline-flex; }
.wordmark-text { color: var(--text); }
.wordmark-dot { color: var(--mint); }
.site-nav { display: flex; gap: 2rem; }
.site-nav a { font-size: 0.92rem; color: var(--muted); transition: color 0.2s; position: relative; }
.site-nav a:hover { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 1.25rem; }

/* ───────── hero ───────── */
.hero { padding-top: clamp(4rem, 9vw, 7rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-title {
  font-family: var(--sans);
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0.5rem 0 1.5rem;
}
.hero-title .serif-italic {
  font-size: 1.08em;
  color: var(--mint);
  letter-spacing: -0.01em;
}
.hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 30em; line-height: 1.6; }
.hero-sub-strong { color: var(--text); }
.hero-cta { display: flex; gap: 0.9rem; margin: 2rem 0 1.6rem; flex-wrap: wrap; }
.hero-foot { color: var(--faint); }
.hero-foot .mono { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }

/* ───────── hero demo : live scan ───────── */
.hero-demo {
  position: relative;
  overflow: visible;
}
@media (min-width: 981px) {
  .hero-demo { overflow: visible; }
}
@media (max-width: 980px) {
  .hero-demo { overflow: hidden; }
}
.demo-stack { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.demo-paper.ghost {
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: var(--panel-2); border: 1px solid var(--hair);
  height: 100%;
}
.demo-paper.ghost:nth-child(1) { transform: translate(10px, 14px) rotate(1.2deg); opacity: 0.5; }
.demo-paper.ghost:nth-child(2) { transform: translate(5px, 7px) rotate(0.5deg); opacity: 0.75; }

.demo-paper {
  position: relative; z-index: 1;
  background: var(--paper);
  color: var(--paper-ink);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.7rem 1.4rem;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}
.paper-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.paper-meta { display: flex; align-items: center; gap: 0.7rem; min-width: 0; }
.paper-tag {
  font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: var(--paper-ink); padding: 0.28em 0.6em; border-radius: 4px;
}
.paper-title { font-weight: 600; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.paper-id { color: var(--paper-muted); font-size: 0.66rem; }
.paper-rule { height: 1px; background: var(--paper-2); margin-bottom: 1rem; }

.paper-body { display: flex; flex-direction: column; gap: 0.55rem; font-size: 0.94rem; line-height: 1.55; min-height: 11.5rem; }
.paper-body .line { opacity: 0; transform: translateY(4px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.paper-body .line.shown { opacity: 1; transform: none; }

/* annotation marks on the paper */
.mark { padding: 0 0.05em; border-radius: 3px; }
.mark.ok {
  background-image: linear-gradient(transparent 62%, var(--mint-soft) 62%, var(--mint-soft) 92%, transparent 92%);
  color: #0b6b53;
}
.mark.risk {
  text-decoration: underline wavy var(--risk);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  color: #b3261e;
}
/* risk marks start hidden until scan reveals them */
.paper-body .mark.risk { background-color: transparent; }
.paper-body .line.shown .mark.risk { animation: flagIn 0.5s var(--ease) both; }

@keyframes flagIn {
  from { background-color: var(--risk-soft); }
  to { background-color: transparent; }
}

/* margin annotation callouts */
.annotations {
  position: absolute; right: -280px; top: 80px; width: 260px;
  display: flex; flex-direction: column; gap: 0.75rem;
  pointer-events: none; z-index: 3;
}
.anno {
  background: #fff; border-radius: 8px; padding: 0.75rem 0.85rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-left: 3px solid var(--risk);
  opacity: 0; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  transform: translateX(-8px);
}
.anno.anno-risk { border-left-color: var(--risk); }
.anno-rule {
  display: block; font-size: 0.64rem; letter-spacing: 0.06em;
  color: var(--risk); margin-bottom: 0.35rem; text-transform: uppercase;
}
.anno-text {
  font-size: 0.81rem; color: var(--paper-ink); line-height: 1.4;
}

/* scan status bar */
.paper-status {
  margin-top: 1.1rem; padding-top: 0.95rem; border-top: 1px solid var(--paper-2);
  display: flex; align-items: center; gap: 0.7rem; font-size: 0.78rem; color: var(--paper-muted);
}
.status-beam {
  width: 9px; height: 9px; border-radius: 50%; background: var(--mint);
  box-shadow: 0 0 0 4px rgba(47,230,184,0.18);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.status-text { color: var(--paper-ink); font-weight: 500; }
.status-result { margin-left: auto; color: #0b6b53; font-weight: 600; opacity: 0; transition: opacity 0.5s; }
.status-result.shown { opacity: 1; }

/* the sweeping scan beam */
.scan-beam {
  position: absolute; left: 0; right: 0; height: 2px; top: 0;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  box-shadow: 0 0 18px 2px rgba(47,230,184,0.6);
  opacity: 0; z-index: 2; pointer-events: none;
}

/* ───────── industries strip ───────── */
.strip { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 1.5rem 0; background: rgba(255,255,255,0.015); }
.strip-inner { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.strip-label { color: var(--faint); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.strip-tags { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.strip-tags li { font-size: 0.92rem; color: var(--muted); transition: color 0.2s; }
.strip-tags li:hover { color: var(--text); }

/* ───────── tension ───────── */
.tension { text-align: center; }
.tension-inner { max-width: 760px; margin: 0 auto; display: grid; gap: 0.4rem; }
.tension-line { font-size: clamp(1.3rem, 3vw, 2rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.25; }
.tension-a { color: var(--text); }
.tension-b { color: var(--text); }
.tension-vs { color: var(--faint); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; margin: 0.5rem 0; }
.tension-pay {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); color: var(--mint);
  margin-top: 1.2rem; line-height: 1.3;
}

/* ───────── steps ───────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.step {
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--hair); border-radius: var(--radius-lg);
  padding: 2rem 1.8rem; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.step:hover { border-color: var(--mint-line); transform: translateY(-3px); }
.step-num { font-size: 0.78rem; color: var(--mint); letter-spacing: 0.1em; }
.step-title { font-size: 1.25rem; font-weight: 600; margin: 0.8rem 0 0.6rem; letter-spacing: -0.015em; }
.step-body { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.step::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--mint), transparent); opacity: 0; transition: opacity 0.3s;
}
.step:hover::after { opacity: 1; }

/* ───────── grid (features / industries) ───────── */
.grid { display: grid; gap: 1.25rem; }
.features { grid-template-columns: repeat(3, 1fr); }
.industries { grid-template-columns: repeat(3, 1fr); }

/* card */
.card {
  background: var(--panel); border: 1px solid var(--hair); border-radius: var(--radius-lg);
  padding: 1.8rem; transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.card:hover { border-color: var(--mint-line); transform: translateY(-3px); background: var(--panel-2); }
.card-icon {
  width: 42px; height: 42px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--mint-soft); color: var(--mint); border: 1px solid var(--mint-line); margin-bottom: 1.1rem;
}
.card-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; letter-spacing: -0.015em; }
.card-body { color: var(--muted); font-size: 0.93rem; line-height: 1.6; }

/* industry tile */
.tile {
  display: flex; flex-direction: column; gap: 0.5rem; padding: 1.5rem 1.4rem;
  background: var(--panel); border: 1px solid var(--hair); border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.tile:hover { border-color: var(--mint-line); transform: translateY(-3px); }
.tile-name { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.015em; }
.tile-rule { color: var(--faint); font-size: 0.72rem; letter-spacing: 0.06em; }

/* ───────── showcase ───────── */
.showcase-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015), transparent); }
.showcase {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start;
}
.showcase-paper {
  background: var(--paper); color: var(--paper-ink);
  border-radius: var(--radius-lg); padding: 1.7rem 1.9rem;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}
.showcase-body { display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.98rem; line-height: 1.65; }
.showcase-body .mark.ok { background-image: linear-gradient(transparent 62%, var(--mint-soft) 62%, var(--mint-soft) 92%, transparent 92%); color: #0b6b53; }
.showcase-body .mark.risk { text-decoration: underline wavy var(--risk); text-decoration-thickness: 1.5px; text-underline-offset: 3px; color: #b3261e; background-color: var(--risk-soft); }
.showcase-body .mark.review { text-decoration: underline dashed var(--amber); text-decoration-thickness: 1.5px; text-underline-offset: 3px; background-color: var(--amber-soft); color: #8a5a14; }

.showcase-notes { display: flex; flex-direction: column; gap: 0.85rem; }
.note {
  border: 1px solid var(--hair); border-radius: var(--radius); padding: 1rem 1.1rem;
  background: var(--panel);
}
.note-rule { display: block; font-size: 0.7rem; letter-spacing: 0.08em; margin-bottom: 0.45rem; }
.note-text { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.note-risk { border-left: 3px solid var(--risk); }
.note-risk .note-rule { color: var(--risk); }
.note-review { border-left: 3px solid var(--amber); }
.note-review .note-rule { color: var(--amber); }
.note-ok { border-left: 3px solid var(--mint); }
.note-ok .note-rule { color: var(--mint); }
.note-summary { border-color: var(--mint-line); background: var(--mint-soft); }
.note-summary .note-rule { color: var(--mint); }
.note-summary .note-text { color: var(--text); }

/* ───────── stats ───────── */
.stats-section { border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); background: rgba(255,255,255,0.012); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; }
.stat { padding: 1.5rem 1rem; }
.stat + .stat { border-left: 1px solid var(--hair); }
.stat-num {
  display: block; font-size: clamp(3.5rem, 8vw, 6rem); line-height: 1;
  color: var(--text); letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--text), var(--muted));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { display: block; margin-top: 0.8rem; color: var(--muted); font-size: 0.92rem; letter-spacing: 0.01em; }

/* ───────── compliance ───────── */
.compliance-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
.badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  padding: 1.3rem 0.5rem; border: 1px solid var(--hair); border-radius: var(--radius);
  background: var(--panel); transition: border-color 0.3s, transform 0.3s var(--ease);
}
.badge:hover { border-color: var(--mint-line); transform: translateY(-2px); }
.badge-mark { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; }
.badge-sub { color: var(--faint); font-size: 0.66rem; letter-spacing: 0.08em; }

/* ───────── quote ───────── */
.quote-section { text-align: center; }
.quote-inner { max-width: 820px; margin: 0 auto; position: relative; }
.quote-mark { font-size: 5rem; line-height: 0.6; color: var(--mint); height: 1.5rem; }
.quote {
  font-size: clamp(1.5rem, 3.4vw, 2.3rem); line-height: 1.35; letter-spacing: -0.01em;
  color: var(--text); margin: 0.5rem 0 1.6rem;
}
.quote-attr { display: flex; flex-direction: column; gap: 0.2rem; }
.attr-name { font-weight: 600; }
.attr-role { color: var(--faint); font-size: 0.76rem; letter-spacing: 0.06em; }

/* ───────── final CTA ───────── */
.cta-section { text-align: center; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-title { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; letter-spacing: -0.03em; font-weight: 400; }
.cta-title .serif-italic { color: var(--mint); }
.cta-sub { color: var(--muted); margin: 1.2rem 0 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1.5rem; align-items: center; justify-content: center; flex-wrap: wrap; }

/* ───────── footer ───────── */
.site-footer { border-top: 1px solid var(--hair); padding: 4rem 0 2rem; background: var(--ink-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem; }
.footer-brand { max-width: 280px; }
.wordmark-footer { margin-bottom: 1rem; }
.footer-tagline { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.footer-loc { color: var(--faint); font-size: 0.7rem; letter-spacing: 0.1em; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-head { color: var(--text); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.3rem; }
.footer-col a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--mint); }
.footer-base {
  display: flex; align-items: center; justify-content: space-between; margin-top: 3rem;
  padding-top: 1.5rem; border-top: 1px solid var(--hair); gap: 1rem; flex-wrap: wrap;
}
.footer-base .mono { color: var(--faint); font-size: 0.72rem; }
.footer-base-links { display: flex; gap: 1.25rem; }
.footer-base-links a { color: var(--faint); font-size: 0.78rem; transition: color 0.2s; }
.footer-base-links a:hover { color: var(--text); }

/* ───────── reveal animations ───────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ───────── responsive ───────── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-demo { margin-top: 1rem; }
  .showcase { grid-template-columns: 1fr; }
  .compliance-inner { grid-template-columns: 1fr; }
  /* Hide side annotations on tablet/mobile - they won't fit */
  .annotations { display: none !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .site-nav { display: none; }
  .steps, .features, .industries { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 0; }
  .stat + .stat { border-left: none; border-top: 1px solid var(--hair); }
  .badges { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-actions .link-quiet { display: none; }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .badges { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { width: 100%; }
}

/* ───────── a11y : reduced motion + focus ───────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .paper-body .line { opacity: 1; transform: none; }
  .status-result { opacity: 1; }
  .scan-beam { display: none; }
}
:focus-visible { outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 4px; }
