/* =========================================================================
   LLMQA — Coming Soon landing page
   Brand: Inter type · white/slate light UI · violet→fuchsia→cyan gradient.
   The test console stays dark (re-tinted to brand) for log readability.
   ========================================================================= */

:root {
  /* Brand gradients (from the logo) */
  --brand-gradient: linear-gradient(90deg, #7C3AED 0%, #C026D3 50%, #06B6D4 100%);
  --brand-gradient-diagonal: linear-gradient(135deg, #7C3AED 0%, #C026D3 50%, #06B6D4 100%);
  --brand-gradient-light: linear-gradient(90deg, #A78BFA 0%, #E879F9 50%, #67E8F9 100%);

  /* Brand solids */
  --violet: #7C3AED;   /* primary */
  --fuchsia: #C026D3;  /* secondary */
  --cyan: #06B6D4;     /* accent (decorative only — fails AA as text) */

  /* Light UI tokens */
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;   /* slate-100 */
  --text: #0F172A;        /* slate-900 — headings / foreground */
  --body: #475569;        /* slate-600 — body text */
  --muted: #64748B;       /* slate-500 — muted / fine print */
  --subhead: #334155;     /* slate-700 — subheads / nav */
  --border: #E2E8F0;      /* slate-200 */
  --primary: #7C3AED;     /* violet */
  --accent: #06B6D4;      /* cyan */
  --success: #10B981;     /* emerald-500 */
  --danger: #EF4444;      /* red-500 */
  --focus: #7C3AED;

  /* Console (kept dark, brand-tinted) */
  --con-bg: #0F172A;
  --con-surface: #1E293B;
  --con-border: #334155;
  --con-text: #E2E8F0;
  --con-muted: #94A3B8;
  --con-tag: #67E8F9;       /* cyan-light */
  --con-violet: #A78BFA;    /* violet-light */
  --con-pass: #34D399;      /* emerald */
  --con-fail: #F87171;      /* red */

  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 10px 30px -12px rgba(15, 23, 42, 0.18);
  --shadow-lg: 0 28px 70px -34px rgba(79, 38, 160, 0.30);

  --maxw: 1240px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-head: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background:
    radial-gradient(900px 520px at 85% -12%, rgba(6,182,212,0.10), transparent 60%),
    radial-gradient(820px 480px at 4% -2%, rgba(124,58,237,0.10), transparent 55%),
    var(--bg);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--text); font-weight: 600; }

.mono { font-family: var(--font-mono); }
.ok { color: var(--success); }

.gradient-text {
  background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--primary); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { left: 8px; }

:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn--primary {
  background: var(--brand-gradient); color: #fff; background-size: 140% 140%;
  box-shadow: 0 10px 24px -10px rgba(124,58,237,0.55);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -10px rgba(124,58,237,0.7); text-decoration: none; }
.btn--ghost {
  background: var(--surface); color: var(--subhead); border-color: var(--border); font-weight: 600;
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; background: rgba(124,58,237,0.05); }
.btn:disabled { opacity: .6; cursor: default; transform: none; }

/* ---------- Status pill ---------- */
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 999px; letter-spacing: .02em;
}
.status-pill--sm { font-size: 11px; padding: 4px 10px; }
.status-pill__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  box-shadow: 0 0 0 0 rgba(124,58,237,0.5); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124,58,237,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(124,58,237,0); }
  100% { box-shadow: 0 0 0 0 rgba(124,58,237,0); }
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar__inner { display: flex; align-items: center; gap: 16px; padding-block: 14px; }
.brand { display: inline-flex; align-items: center; }
.brand:hover { text-decoration: none; }
.brand__logo { height: 29px; width: auto; }
.topbar__link { font-size: 14px; font-weight: 600; color: var(--subhead); white-space: nowrap; margin-left: auto; }
.topbar__link:hover { color: var(--primary); text-decoration: none; }

/* "A product by Testriq" attribution */
.madeby { display: inline-flex; align-items: center; gap: 9px; margin-left: 4px; flex-shrink: 0; white-space: nowrap; line-height: 1; color: var(--muted); font-size: 13px; font-weight: 500; }
.madeby:hover { text-decoration: none; }
.madeby__text { white-space: nowrap; letter-spacing: .01em; }
.madeby__logo { height: 28px; width: auto; flex: 0 0 auto; transition: opacity .2s var(--ease); }
.madeby:hover .madeby__logo { opacity: .75; }

/* ---------- Hero ---------- */
.hero { padding-top: clamp(36px, 4.5vw, 56px); padding-bottom: clamp(48px, 8vw, 88px); position: relative; }
.hero__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: start;
  gap: clamp(28px, 5vw, 64px);
}
.hero__content { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }

/* right-side "coming soon" countdown card */
.hero__aside {
  align-self: center;
  width: 100%; max-width: 440px; margin-inline: auto; text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg); padding: clamp(26px, 3vw, 40px);
}
.hero__aside-label {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--primary); background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.22); padding: 8px 16px; border-radius: 999px;
}
.hero__aside-sub { font-weight: 600; font-size: 1.1rem; color: var(--text); margin: 0 0 18px; letter-spacing: -0.025em; }
.hero__aside-note { color: var(--muted); font-size: 12px; margin: 18px 0 0; line-height: 1.6; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--primary); background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.22); padding: 8px 16px; border-radius: 999px; margin: 0 0 22px;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand-gradient-diagonal);
  box-shadow: 0 0 0 0 rgba(124,58,237,0.5); animation: pulse 2.4s infinite;
}

.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--primary); margin: 0 0 18px;
}
.hero__title {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05; letter-spacing: -0.025em;
  margin: 0 0 22px; max-width: 18ch; color: var(--text);
}
.hero__title-accent {
  background: var(--brand-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__subcopy { color: var(--body); font-size: clamp(1rem, 1.4vw, 1.125rem); line-height: 1.75; max-width: 56ch; margin: 0; }

/* countdown */
.countdown { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 0; }
.countdown__unit {
  min-width: 78px; padding: 14px 12px; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); display: flex; flex-direction: column; align-items: center;
}
.countdown__num {
  font-family: var(--font-head); font-weight: 800; line-height: 1; color: var(--text);
  font-size: clamp(1.6rem, 5vw, 2.3rem); font-variant-numeric: tabular-nums; letter-spacing: -0.025em;
}
.countdown__label {
  font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-top: 9px;
}
/* keep all four units on one row inside the card */
.hero__aside .countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.hero__aside .countdown__unit { min-width: 0; padding: 14px 6px; }

/* ---------- Waitlist form ---------- */
.waitlist { width: 100%; max-width: 520px; margin-top: 4px; }
.waitlist--center { margin-inline: auto; }
.waitlist__row {
  display: flex; gap: 10px; padding: 8px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 999px; box-shadow: var(--shadow-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.waitlist__row:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(124,58,237,0.14); }
.waitlist__input {
  flex: 1 1 auto; min-width: 0; background: transparent; border: 0; color: var(--text);
  font: inherit; font-size: 1rem; padding: 10px 8px 10px 16px;
}
.waitlist__input::placeholder { color: var(--muted); }
.waitlist__input:focus { outline: none; }
.waitlist__submit { position: relative; flex: 0 0 auto; }
.waitlist__spinner {
  display: none; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.45); border-top-color: #fff; animation: spin 0.7s linear infinite;
}
.waitlist.is-loading .waitlist__spinner { display: inline-block; }
.waitlist.is-loading .waitlist__label { display: none; }
.waitlist__help { font-size: 12px; color: var(--muted); margin: 12px 4px 0; line-height: 1.6; }
.waitlist__lock { color: var(--primary); }
.waitlist__status { font-family: var(--font-mono); font-size: 13px; margin: 10px 4px 0; min-height: 1.2em; }
.waitlist__status.is-ok { color: var(--primary); }
.waitlist__status.is-err { color: var(--danger); }

/* ---------- Generic section ---------- */
.section { padding-block: clamp(56px, 9vw, 104px); }
.section__head { max-width: 60ch; margin: 0 auto clamp(32px, 5vw, 52px); text-align: center; }
.section__kicker {
  font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--primary); margin: 0 0 12px;
}
.section__title {
  font-family: var(--font-head); font-weight: 700; letter-spacing: -0.025em; color: var(--text);
  font-size: clamp(1.875rem, 4vw, 2.25rem); line-height: 1.15; margin: 0 0 14px;
}
.section__lede { color: var(--body); font-size: clamp(1rem, 2vw, 1.075rem); margin: 0 auto; }

/* ---------- Trust ribbon ---------- */
.ribbon { border-block: 1px solid var(--border); background: var(--surface); }
.ribbon__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 18px;
  padding-block: 18px; font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--subhead);
  letter-spacing: .01em; text-align: center;
}
.ribbon__sep { color: var(--border); }
.ribbon__count .count { color: var(--primary); font-weight: 700; }

/* ---------- Console (DARK) ---------- */
.console {
  position: relative; max-width: 760px; margin: 0 auto; overflow: hidden;
  border: 1px solid var(--con-border); border-radius: var(--radius);
  color: var(--con-text);
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 3px),
    var(--con-bg);
  box-shadow: var(--shadow-lg);
}
.console__bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  border-bottom: 1px solid var(--con-border); background: var(--con-surface);
}
.console__dot { width: 11px; height: 11px; border-radius: 50%; }
.console__dot:nth-child(1) { background: #ff5f57; }
.console__dot:nth-child(2) { background: #febc2e; }
.console__dot:nth-child(3) { background: #28c840; }
.console__path { margin-left: 10px; font-family: var(--font-mono); font-size: 0.8rem; color: var(--con-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.console__body {
  padding: 22px 22px 26px; font-family: var(--font-mono); font-size: clamp(0.74rem, 1.6vw, 0.9rem); line-height: 1.9;
  min-height: 320px; white-space: pre-wrap; word-break: break-word; color: var(--con-text);
}
.console__line { display: block; }
.console__line .tag { color: var(--con-tag); }
.console__line .pass { color: var(--con-pass); font-weight: 600; }
.console__line .fail { color: var(--con-fail); font-weight: 600; }
.console__line .dim { color: var(--con-muted); }
.console__line--cert {
  margin-top: 12px; padding: 10px 14px; border: 1px solid var(--con-violet);
  border-radius: var(--radius-sm); color: var(--con-violet); display: inline-block;
  background: rgba(167,139,250,0.10);
}
.console__caret {
  display: inline-block; width: 9px; height: 1.05em; vertical-align: text-bottom;
  background: var(--con-tag); animation: blink 1.1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes spin { to { transform: rotate(360deg); } }
.console__scanline {
  position: absolute; left: 0; right: 0; top: 0; height: 90px; pointer-events: none;
  background: linear-gradient(180deg, rgba(103,232,249,0.10), transparent);
  animation: scan 7s linear infinite;
}
@keyframes scan {
  from { top: 0;    transform: translateY(-100%); }
  to   { top: 100%; transform: translateY(0); }
}

/* ---------- Cards (coverage) ---------- */
.cards {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: rgba(124,58,237,0.45); box-shadow: var(--shadow); }
.card__title { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; margin: 0 0 10px; color: var(--text); letter-spacing: -0.02em; }
.card__desc { color: var(--body); font-size: 0.95rem; margin: 0 0 14px; }
.card__example {
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); padding-top: 12px; border-top: 1px dashed var(--border);
  transition: color .2s var(--ease);
}
.card:hover .card__example { color: var(--primary); }

/* ---------- Steps ---------- */
.steps {
  list-style: none; margin: 0; padding: 0; display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); position: relative;
}
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px;
  border-radius: 12px; background: var(--brand-gradient-diagonal); color: #fff;
  font-family: var(--font-head); font-weight: 700; margin-bottom: 16px;
}
.step__title { font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; margin: 0 0 8px; color: var(--text); letter-spacing: -0.02em; }
.step__desc { color: var(--body); font-size: 0.95rem; margin: 0; }

/* ---------- Anatomy / certificate ---------- */
.anatomy { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.anatomy__copy .section__title, .anatomy__copy .section__kicker { text-align: left; }
.anatomy__copy { text-align: left; }
.anatomy__copy .section__lede { margin: 0 0 20px; }
.anatomy__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.anatomy__points li { position: relative; padding-left: 30px; color: var(--text); font-size: 0.98rem; }
.anatomy__points li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 700;
}

.cert {
  margin: 0; background: linear-gradient(180deg, #FFFFFF, var(--surface-2));
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.cert__head {
  display: flex; align-items: center; gap: 14px; padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cert__seal {
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 40px; height: 40px; border-radius: 50%; background: var(--brand-gradient-diagonal);
  color: #fff; font-weight: 700; font-size: 1.1rem;
}
.cert__title { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--text); letter-spacing: -0.02em; }
.cert__id { display: block; font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted); }
.cert__badge {
  margin-left: auto; font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: .14em;
  color: #fff; background: var(--brand-gradient); border-radius: 999px; padding: 5px 12px;
}
.cert__grid { padding: 8px 24px 24px; font-family: var(--font-mono); font-size: 0.82rem; }
.cert__grid > div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.cert__grid > div:last-child { border-bottom: 0; }
.cert__grid dt { color: var(--muted); margin: 0; }
.cert__grid dd { margin: 0; color: var(--text); text-align: right; }
.cert__results { flex-direction: column; align-items: flex-start; }
.cert__results dd { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chip { font-family: var(--font-body); font-size: 0.68rem; font-weight: 500; padding: 3px 9px; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); }
.chip.ok { color: #047857; border-color: rgba(16,185,129,0.45); background: rgba(16,185,129,0.10); }

/* ---------- Audience ---------- */
.audience { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.audience__col {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px 28px; box-shadow: var(--shadow-sm);
}
.audience__col::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--brand-gradient); }
.audience__role { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; margin: 0 0 12px; color: var(--text); letter-spacing: -0.02em; }
.audience__q { color: var(--body); font-style: italic; margin: 0; font-size: 0.98rem; }

/* ---------- CTA ---------- */
.cta__inner {
  text-align: center; background:
    radial-gradient(700px 320px at 50% 0%, rgba(124,58,237,0.10), transparent 65%),
    var(--surface);
  border: 1px solid var(--border); border-radius: calc(var(--radius) + 6px);
  padding: clamp(40px, 7vw, 72px) clamp(24px, 5vw, 56px); box-shadow: var(--shadow);
}
.cta__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.875rem, 4vw, 2.5rem); margin: 0 0 14px; letter-spacing: -0.025em; color: var(--text); }
.cta__sub { color: var(--body); max-width: 52ch; margin: 0 auto 28px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface); margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq__item summary {
  cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; font-size: 1rem; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--primary); font-size: 1.4rem; transition: transform .2s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin: 0; padding: 0 22px 20px; color: var(--body); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding-block: 40px; background: var(--surface); }
.footer__inner { display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__logo { height: 24px; width: auto; }
.footer__line { color: var(--muted); margin: 0; font-size: 0.92rem; }
.footer__legal { color: var(--muted); margin: 0; font-size: 12px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: clamp(26px, 6vw, 38px); }
  .hero__content { align-items: center; text-align: center; order: 1; }
  .hero__aside { order: 2; }
  .hero__title { max-width: 20ch; }
  .hero__subcopy { max-width: 60ch; margin-inline: auto; }
  .waitlist { margin-inline: auto; }
}
@media (max-width: 760px) {
  .anatomy { grid-template-columns: 1fr; }
  .cert__grid > div { flex-direction: column; gap: 4px; }
  .cert__grid dd { text-align: left; }
  .topbar .status-pill { display: none; }   /* make room for the Testriq attribution */
  .console__body { min-height: 280px; }
}
@media (max-width: 380px) {
  .madeby__text { display: none; }           /* keep just the Testriq logo on tiny screens */
}
@media (max-width: 440px) {
  .countdown__unit { min-width: 0; flex: 1 1 0; padding: 12px 6px; }
}
@media (max-width: 420px) {
  .waitlist__row { flex-direction: column; border-radius: var(--radius); }
  .waitlist__submit { width: 100%; }
  .waitlist__input { text-align: center; padding-left: 8px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .console__scanline { display: none; }
}
