/* ============================================================
   NEWMIND PARTNERS — Execution Layer design system
   Dark control-room base / paper ledger sections
   Display: Bricolage Grotesque · Body: Instrument Sans · Utility: IBM Plex Mono
   ============================================================ */

:root {
  --bg-0: #06080d;
  --bg-1: #0b0f17;
  --panel: #0f1420;
  --panel-2: #131a2a;
  --paper: #f1f2ec;
  --paper-2: #fafaf6;
  --ink: #10131a;
  --ink-soft: #3c414d;
  --muted-d: #8a93a8;
  --muted-l: #5c626c;
  --cobalt: #3e5bff;
  --cobalt-deep: #2743d8;
  --glow: #8b9dff;
  --verified: #34d399;
  --line-d: rgba(148, 163, 204, 0.14);
  --line-d-strong: rgba(148, 163, 204, 0.26);
  --line-l: #d9dccf;
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1240px;
  --font-display: "Bricolage Grotesque", "Instrument Sans", sans-serif;
  --font-body: "Instrument Sans", ui-sans-serif, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --signal: linear-gradient(90deg, var(--glow), var(--cobalt) 46%, var(--verified));
}

@property --orbit {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0turn;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* premium film grain — subtle tactile texture over the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body {
  margin: 0;
  background: var(--bg-0);
  color: #e8ebf2;
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 640;
  letter-spacing: -0.028em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.1rem, 7.6vw, 6.8rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

/* ---------- mono utility text ---------- */

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- announcement ---------- */

.announcement {
  border-bottom: 1px solid var(--line-d);
  background: var(--bg-1);
  color: var(--muted-d);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.announcement .container {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 9px 0;
  text-align: center;
}

.announcement strong { color: #cdd4e4; font-weight: 600; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(6, 8, 13, 0.72);
  border-bottom: 1px solid var(--line-d);
  transition: background 300ms ease;
}

.site-header.scrolled { background: rgba(6, 8, 13, 0.92); }

/* signal instrument: page progress */
.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  pointer-events: none;
}

.scroll-progress-fill {
  height: 100%;
  background: var(--signal);
  transform: scaleX(var(--scroll, 0));
  transform-origin: left;
  opacity: 0.9;
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height 300ms var(--ease-out);
}

.site-header.scrolled .nav { min-height: 62px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 680;
  letter-spacing: 0.01em;
  color: #f2f4f9;
}

.brand-mark {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid var(--line-d-strong);
  background:
    linear-gradient(135deg, var(--cobalt) 0 46%, transparent 46%),
    var(--panel-2);
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--verified);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-d);
}

.nav-links a { position: relative; padding: 4px 0; transition: color 180ms ease; }
.nav-links a:hover { color: #fff; }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease-out);
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.mobile-menu {
  display: none;
  border: 1px solid var(--line-d);
  background: transparent;
  color: #e8ebf2;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
}

/* ---------- buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease,
    background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.22) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 600ms ease;
  pointer-events: none;
}

.btn:hover::before { transform: translateX(120%); }

.btn:focus-visible,
.chat-option:focus-visible,
.text-link:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--glow);
  outline-offset: 3px;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #5a74ff, var(--cobalt) 45%, var(--cobalt-deep));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 0 0 1px rgba(62, 91, 255, 0.5),
    0 14px 40px rgba(62, 91, 255, 0.45);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6a82ff, var(--cobalt) 55%, #1f38c4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 0 1px rgba(62, 91, 255, 0.65),
    0 18px 52px rgba(62, 91, 255, 0.55);
}

.btn-secondary {
  color: #e8ebf2;
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-d-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--glow);
  background: rgba(139, 157, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 8px 28px rgba(62, 91, 255, 0.18);
}

.btn-dark {
  color: var(--paper);
  background: var(--ink);
}

.btn-dark:hover { background: #232834; }

.btn-small { min-height: 42px; padding-inline: 18px; font-size: 0.7rem; }

/* light-section button variants */
.on-paper .btn-secondary {
  color: var(--ink);
  background: transparent;
  border-color: #c4c8ba;
}
.on-paper .btn-secondary:hover { border-color: var(--cobalt); background: rgba(62, 91, 255, 0.05); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 124px 0 96px;
  isolation: isolate;
}

/* luminous control-room field — layered aurora with real depth */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 58% 52% at 74% -6%, rgba(62, 91, 255, 0.42), transparent 60%),
    radial-gradient(ellipse 50% 46% at 92% 48%, rgba(124, 108, 255, 0.28), transparent 66%),
    radial-gradient(ellipse 46% 40% at 8% 20%, rgba(52, 211, 153, 0.12), transparent 64%),
    radial-gradient(ellipse 70% 50% at 50% 118%, rgba(62, 91, 255, 0.20), transparent 62%);
  pointer-events: none;
  animation: aurora-breathe 16s ease-in-out infinite alternate;
}

@keyframes aurora-breathe {
  from { opacity: 0.72; transform: translate3d(0, 0, 0) scale(1); }
  to { opacity: 1; transform: translate3d(-1.5%, 1.2%, 0) scale(1.05); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(148, 163, 204, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 204, 0.07) 1px, transparent 1px);
  background-size: 66px 66px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 4%, black 22%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 4%, black 22%, transparent 74%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-copy { max-width: 1060px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 10px 16px;
  border: 1px solid rgba(139, 157, 255, 0.28);
  border-radius: 100px;
  background: rgba(20, 27, 45, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 30px rgba(62, 91, 255, 0.14);
  color: #c3cce6;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--verified);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.14);
  animation: dot-pulse 2.4s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.16); }
  50% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0.04); }
}

.hero h1 .accent {
  font-style: normal;
  color: transparent;
  background: linear-gradient(100deg, #a9b6ff, #5f78ff 34%, #7c6cff 58%, #38d399 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: signal-sweep 9s ease-in-out infinite;
  filter: drop-shadow(0 8px 40px rgba(62, 91, 255, 0.35));
}

@keyframes signal-sweep {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.lead {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--muted-d);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.6;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.trust-line {
  margin-top: 26px;
  color: #6b7285;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.label {
  padding: 8px 13px;
  border: 1px solid var(--line-d);
  border-radius: 6px;
  color: var(--muted-d);
  background: rgba(15, 20, 32, 0.6);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* hero load sequence */
.hero-seq {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(10px);
  animation: hero-in 1000ms var(--ease-out) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ---------- commercial terms strip ---------- */

.terms-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line-d-strong);
  border-radius: var(--radius-sm);
  background: var(--line-d-strong);
}

.term {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px 24px;
  background: rgba(15, 20, 32, 0.92);
}

.term-label {
  color: #6b7285;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.term-value {
  color: #f2f4f9;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 640;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.term-value.verified { color: var(--verified); }

/* ---------- ticker ---------- */

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line-d);
  background: var(--bg-1);
  padding: 13px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 42s linear infinite;
}

.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-track span {
  padding: 0 28px;
  color: #59617a;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::after {
  content: "·";
  margin-left: 56px;
  color: var(--cobalt);
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- chat console ---------- */

.chat-stage { padding: 84px 0 96px; }

.chat-shell {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-d-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(62, 91, 255, 0.06);
}

/* signal instrument: orbiting beam on the conversion surface */
.chat-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--orbit),
    transparent 0turn 0.66turn,
    rgba(139, 157, 255, 0.85) 0.8turn,
    var(--verified) 0.9turn,
    transparent 0.97turn
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: orbit 10s linear infinite;
}

@keyframes orbit {
  to { --orbit: 1turn; }
}

.chat-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line-d);
  background: rgba(6, 8, 13, 0.5);
}

.agent-identity { display: flex; align-items: center; gap: 12px; }

.agent-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #fff;
  background: var(--cobalt);
  box-shadow: 0 0 18px rgba(62, 91, 255, 0.4);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
}

.agent-name { font-size: 0.94rem; font-weight: 640; color: #f2f4f9; }

.agent-status {
  color: var(--muted-d);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--verified);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: dot-pulse 2.4s ease-in-out infinite;
}

.chat-body {
  min-height: 420px;
  padding: 28px;
  background:
    radial-gradient(circle at 85% 0%, rgba(62, 91, 255, 0.07), transparent 40%),
    var(--panel);
}

.chat-stream {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 740px;
  margin: 0 auto;
}

.message {
  max-width: 86%;
  padding: 14px 17px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.55;
  animation: msg-in 340ms var(--ease-out);
}

.message.agent {
  align-self: flex-start;
  border: 1px solid var(--line-d);
  border-top-left-radius: 4px;
  background: var(--panel-2);
  color: #d6dbe8;
}

.message.user {
  align-self: flex-end;
  border-top-right-radius: 4px;
  color: #fff;
  background: var(--cobalt);
}

.message strong { font-weight: 650; }

@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.typing {
  display: inline-flex;
  gap: 5px;
  align-self: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line-d);
  border-radius: 14px;
  border-top-left-radius: 4px;
  background: var(--panel-2);
}

.typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-d);
  animation: typing-bounce 1s ease-in-out infinite;
}

.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.chat-option {
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line-d-strong);
  border-radius: 10px;
  text-align: left;
  background: rgba(19, 26, 42, 0.6);
  color: #d6dbe8;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 180ms ease, transform 180ms var(--ease-out), background 180ms ease;
}

.chat-option:hover {
  transform: translateY(-2px);
  border-color: var(--glow);
  background: rgba(62, 91, 255, 0.12);
}

.chat-result {
  margin-top: 8px;
  padding: 22px;
  border: 1px solid rgba(62, 91, 255, 0.5);
  border-radius: 14px;
  background:
    radial-gradient(ellipse 90% 100% at 50% 0%, rgba(62, 91, 255, 0.14), transparent 70%),
    var(--panel-2);
  animation: msg-in 400ms var(--ease-out);
}

.chat-result-label {
  margin-bottom: 8px;
  color: var(--glow);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.chat-result h3 { margin-bottom: 8px; font-size: 1.3rem; color: #f2f4f9; }
.chat-result p { margin-bottom: 16px; color: var(--muted-d); }
.chat-result-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.chat-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 22px;
  border-top: 1px solid var(--line-d);
  color: #59617a;
  background: rgba(6, 8, 13, 0.5);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- pre-audit agent widget ---------- */

.pa-progress {
  padding: 12px 22px 14px;
  border-bottom: 1px solid var(--line-d);
  background: rgba(6, 8, 13, 0.35);
}

.pa-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
  color: var(--muted-d);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pa-progress-bar {
  height: 3px;
  border-radius: 999px;
  background: rgba(148, 163, 204, 0.16);
  overflow: hidden;
}

.pa-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cobalt), var(--glow));
  transition: width 500ms var(--ease-out);
}

.pa-back {
  border: 1px solid var(--line-d-strong);
  background: transparent;
  color: var(--muted-d);
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.pa-back:hover { color: #fff; border-color: var(--glow); }
.pa-back[hidden] { display: none; }

.pa-input-block {
  display: grid;
  gap: 12px;
  justify-items: start;
  margin-top: 6px;
  animation: msg-in 340ms var(--ease-out);
}

.pa-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.pa-chip {
  padding: 10px 14px;
  border: 1px solid var(--line-d-strong);
  border-radius: 999px;
  background: rgba(19, 26, 42, 0.6);
  color: #d6dbe8;
  cursor: pointer;
  font-size: 0.85rem;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.pa-chip:hover { border-color: var(--glow); }

.pa-chip.selected {
  border-color: var(--cobalt);
  background: rgba(62, 91, 255, 0.2);
  color: #fff;
}

.pa-hint {
  color: #59617a;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.pa-textarea {
  width: 100%;
  max-width: 620px;
  border: 1px solid var(--line-d-strong);
  border-radius: 12px;
  background: var(--bg-1);
  color: #e8ebf2;
  padding: 13px 14px;
  resize: vertical;
  font-size: 0.95rem;
}

.pa-textarea:focus { border-color: var(--cobalt); outline: none; }

.pa-contact {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-top: 6px;
  padding: 20px;
  border: 1px solid var(--line-d-strong);
  border-radius: 14px;
  background: rgba(19, 26, 42, 0.5);
  animation: msg-in 340ms var(--ease-out);
}

.pa-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

/* Honeypot (spec §25): visually removed, still submittable by bots. */
.pa-contact .pa-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.pa-contact label {
  display: grid;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-d);
}

.pa-contact input[type="text"],
.pa-contact input[type="email"],
.pa-contact input:not([type]) {
  width: 100%;
  border: 1px solid var(--line-d-strong);
  border-radius: 10px;
  background: var(--bg-1);
  color: #e8ebf2;
  padding: 12px 13px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
}

.pa-contact input:focus { border-color: var(--cobalt); outline: none; }

.pa-check {
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: #b9c1d4 !important;
  cursor: pointer;
}

.pa-check input { margin-top: 3px; accent-color: var(--cobalt); }

.pa-error {
  padding: 12px 14px;
  border: 1px solid rgba(255, 122, 122, 0.5);
  border-radius: 10px;
  color: #ff9d9d;
  background: rgba(255, 122, 122, 0.08);
  font-size: 0.86rem;
}

.pa-result .pa-score-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 6px 0 18px;
}

.pa-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
}

.pa-score-value {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.pa-score-max {
  color: var(--muted-d);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.pa-band {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 640;
  color: var(--glow);
}

.pa-meta-line {
  color: var(--muted-d);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.pa-budget {
  margin: 0 0 18px;
  padding: 15px 17px;
  border: 1px solid rgba(52, 211, 153, 0.45);
  border-radius: 12px;
  background: rgba(52, 211, 153, 0.07);
}

.pa-budget-line {
  color: #e8ebf2;
  font-weight: 600;
  font-size: 1.02rem;
}

.pa-budget-value {
  color: var(--verified);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pa-budget-note {
  margin-top: 4px;
  color: var(--muted-d);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pa-detail {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.pa-detail > div { display: grid; gap: 2px; }

.pa-detail-label {
  color: #59617a;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pa-detail-value { color: #e8ebf2; font-weight: 600; }

.pa-disclaimer {
  color: #6b7285;
  font-size: 0.78rem;
  line-height: 1.5;
}

.pa-result .form-note { margin-top: 14px; }

.fab-audit {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  box-shadow: 0 0 0 1px rgba(62, 91, 255, 0.5), 0 18px 50px rgba(62, 91, 255, 0.45);
}

/* ---------- sections ---------- */

.section { padding: 104px 0; }

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 56px;
}

.section-heading p {
  margin-bottom: 6px;
  color: var(--muted-d);
  font-size: 1.05rem;
}

.section-paper .section-heading p { color: var(--muted-l); }

.section-eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--cobalt);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-paper .section-eyebrow { color: var(--cobalt-deep); }

/* ---------- grids & cards ---------- */

.grid-2, .grid-3, .grid-4 { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line-l);
  border-radius: var(--radius);
  background: var(--paper-2);
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease, border-color 300ms ease;
}

/* signal instrument: a check completing across the card edge */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 480ms var(--ease-out);
}

.card:hover::before { transform: scaleX(1); }

.card:hover {
  transform: translateY(-4px);
  border-color: #b9beac;
  box-shadow: 0 24px 50px rgba(16, 19, 26, 0.09);
}

.card.compact { min-height: 0; }

.card.dark {
  border-color: var(--line-d);
  background: var(--panel);
}

.card.dark:hover {
  border-color: rgba(62, 91, 255, 0.5);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(62, 91, 255, 0.08);
}

.card.dark h3 { color: #f2f4f9; }

.card-index {
  margin-bottom: 48px;
  color: var(--cobalt-deep);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card.dark .card-index { color: var(--glow); }

.card p { color: var(--muted-l); margin-bottom: 0; }
.card.dark p { color: var(--muted-d); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  color: var(--glow);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "\2192";
  transition: transform 200ms var(--ease-out);
}

.text-link:hover::after { transform: translateX(4px); }

/* ---------- product cards ---------- */

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 36px;
  border: 1px solid var(--line-l);
  border-radius: var(--radius);
  background: var(--paper-2);
  transition: transform 320ms var(--ease-out), box-shadow 320ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(16, 19, 26, 0.12);
}

.product-card::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 91, 255, 0.12), transparent 70%);
  transition: transform 500ms var(--ease-out);
}

.product-card:hover::after { transform: scale(1.25); }

.product-card:nth-child(2)::after {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.12), transparent 70%);
}

.product-number {
  margin-bottom: 64px;
  color: var(--cobalt-deep);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.product-card h3 {
  max-width: 480px;
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 640;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.product-card p {
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--muted-l);
  font-size: 1rem;
}

.product-card .btn { margin-top: auto; align-self: flex-start; z-index: 2; }

/* ---------- split panels & lists ---------- */

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.panel {
  padding: 36px;
  border: 1px solid var(--line-l);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.panel h3 { font-size: 1.5rem; }

.check-list, .clean-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li, .clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--verified);
  font-weight: 700;
}

.section-paper .check-list li::before { color: #0e9f6e; }

.clean-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: #a0a496;
}

/* ---------- big statement ---------- */

.big-statement {
  max-width: 1020px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.4vw, 4.9rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 640;
  color: #f2f4f9;
}

.big-statement .muted-word { color: #525a70; }

.big-statement .w {
  display: inline-block;
  opacity: 0.08;
  transform: translateY(0.3em);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
  transition-delay: var(--wdel, 0ms);
}

.big-statement.words-in .w { opacity: 1; transform: translateY(0); }

/* ---------- metric row ---------- */

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-l);
  border-radius: var(--radius);
  background: var(--line-l);
}

.metric {
  min-height: 180px;
  padding: 28px;
  background: var(--paper-2);
  transition: background 250ms ease;
}

.metric:hover { background: #fff; }

.metric strong {
  display: block;
  margin-bottom: 34px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 640;
  letter-spacing: -0.02em;
}

.metric span { color: var(--muted-l); font-size: 0.9rem; }

/* ---------- steps ---------- */

.steps {
  counter-reset: steps;
  display: grid;
  border-top: 1px solid var(--line-l);
}

.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 90px 1fr minmax(280px, 0.75fr);
  gap: 26px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-l);
  transition: background 250ms ease;
}

.step::before {
  content: "0" counter(steps);
  color: var(--cobalt-deep);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-top: 6px;
}

.step h3 { font-size: 1.45rem; margin-bottom: 0; }
.step p { color: var(--muted-l); margin-bottom: 0; }

/* dark variant */
.section:not(.section-paper) .steps { border-color: var(--line-d); }
.section:not(.section-paper) .step { border-color: var(--line-d); }
.section:not(.section-paper) .step::before { color: var(--glow); }
.section:not(.section-paper) .step p { color: var(--muted-d); }

/* ---------- callout ---------- */

.callout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr auto;
  align-items: center;
  gap: 34px;
  padding: 52px;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 91, 255, 0.5);
  background:
    radial-gradient(ellipse 70% 100% at 20% 0%, rgba(139, 157, 255, 0.22), transparent 60%),
    linear-gradient(120deg, var(--cobalt-deep), var(--cobalt) 85%);
  color: #fff;
  box-shadow: 0 30px 80px rgba(62, 91, 255, 0.25);
}

.callout::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 100% at 80% 100%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 80% 100%, black, transparent 70%);
  pointer-events: none;
}

.callout::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(ellipse 34% 44% at 68% 32%, rgba(255, 255, 255, 0.14), transparent 62%);
  pointer-events: none;
  animation: callout-drift 13s ease-in-out infinite alternate;
}

@keyframes callout-drift {
  from { transform: translate3d(-4%, -3%, 0); }
  to { transform: translate3d(4%, 4%, 0); }
}

.callout > * { position: relative; z-index: 1; }
.callout h2 { max-width: 820px; margin-bottom: 12px; }
.callout p { max-width: 620px; margin-bottom: 0; color: rgba(255, 255, 255, 0.82); }

.callout .btn-secondary {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.callout .btn-secondary:hover { background: #fff; color: var(--cobalt-deep); }

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--line-d); }
.section-paper .faq { border-color: var(--line-l); }

details { border-bottom: 1px solid var(--line-d); }
.section-paper details { border-color: var(--line-l); }

summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  transition: color 180ms ease;
}

summary:hover { color: var(--glow); }
.section-paper summary:hover { color: var(--cobalt-deep); }

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-d-strong);
  border-radius: 8px;
  color: var(--glow);
  font-family: var(--font-mono);
  font-size: 1rem;
  transition: transform 260ms var(--ease-out);
}

.section-paper summary::after { border-color: #c4c8ba; color: var(--cobalt-deep); }

details[open] summary::after { transform: rotate(45deg); }

details p {
  max-width: 760px;
  padding-bottom: 24px;
  color: var(--muted-d);
}

.section-paper details p { color: var(--muted-l); }

/* ---------- inline note ---------- */

.inline-note {
  padding: 16px 18px;
  border: 1px solid var(--line-l);
  border-left: 3px solid var(--cobalt);
  border-radius: 0 10px 10px 0;
  color: var(--ink-soft);
  background: var(--paper-2);
  font-size: 0.9rem;
}

/* ---------- footer ---------- */

.footer {
  padding: 72px 0 30px;
  border-top: 1px solid var(--line-d);
  color: var(--muted-d);
  background: var(--bg-0);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
  padding-bottom: 48px;
}

.footer h2 { max-width: 680px; color: #f2f4f9; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-d);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #59617a;
}

/* ---------- modal & form ---------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 5, 9, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.modal-backdrop.open { opacity: 1; visibility: visible; }

.modal {
  width: min(100%, 660px);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid var(--line-d-strong);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.98);
  transition: transform 320ms var(--ease-out);
}

.modal-backdrop.open .modal { transform: translateY(0) scale(1); }

.modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--line-d);
}

.modal-header h3 { margin-bottom: 6px; font-size: 1.5rem; color: #f2f4f9; }
.modal-header p { margin-bottom: 0; color: var(--muted-d); font-size: 0.9rem; }

.modal-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-d-strong);
  border-radius: 10px;
  background: transparent;
  color: #e8ebf2;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.modal-close:hover { border-color: var(--glow); transform: rotate(90deg); }

.audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px 28px 30px;
}

.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-d);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line-d-strong);
  border-radius: 10px;
  background: var(--bg-1);
  color: #e8ebf2;
  padding: 13px 14px;
  transition: border-color 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--cobalt);
  outline: none;
}

.form-field textarea { min-height: 105px; resize: vertical; }

.form-note {
  grid-column: 1 / -1;
  color: #59617a;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
}

.form-success {
  display: none;
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid rgba(52, 211, 153, 0.5);
  border-radius: 10px;
  color: #7fe6bb;
  background: rgba(52, 211, 153, 0.08);
}

.form-success.show { display: block; }

/* ---------- subpage hero ---------- */

.hero-subpage { padding: 96px 0 30px; }
.hero-subpage h1 { font-size: clamp(2.7rem, 6.4vw, 5.5rem); }

/* ---------- scroll reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}

[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* staggered children */
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

[data-reveal-group].is-visible > * { opacity: 1; transform: translateY(0); }

[data-reveal-group].is-visible > :nth-child(1) { transition-delay: 0ms; }
[data-reveal-group].is-visible > :nth-child(2) { transition-delay: 90ms; }
[data-reveal-group].is-visible > :nth-child(3) { transition-delay: 180ms; }
[data-reveal-group].is-visible > :nth-child(4) { transition-delay: 270ms; }
[data-reveal-group].is-visible > :nth-child(5) { transition-delay: 360ms; }
[data-reveal-group].is-visible > :nth-child(6) { transition-delay: 450ms; }

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .nav { position: relative; }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line-d-strong);
    border-radius: 14px;
    background: rgba(11, 15, 23, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  }

  .nav-links a { width: 100%; padding: 13px 12px; border-radius: 8px; }
  .nav-links a::after { display: none; }
  .nav-links a:hover { background: rgba(62, 91, 255, 0.12); }

  body.mobile-nav-open .nav-links { display: flex; }
  .mobile-menu { display: inline-grid; place-items: center; }

  .section-heading, .split-panel, .grid-3, .grid-4, .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading { align-items: start; }

  .step { grid-template-columns: 64px 1fr; }
  .step p { grid-column: 2; }

  .callout { grid-template-columns: 1fr; padding: 40px 34px; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 32px), var(--max)); }

  .announcement .container { display: block; padding: 9px 12px; }

  .site-header .nav-actions .btn { display: none; }

  .hero { padding-top: 64px; }
  .section { padding: 76px 0; }

  .chat-body { padding: 20px 16px; }

  .chat-options, .grid-2, .grid-3, .grid-4, .split-panel,
  .section-heading, .metric-row, .audit-form {
    grid-template-columns: 1fr;
  }

  .message { max-width: 94%; }

  .product-card { min-height: 0; }
  .product-number { margin-bottom: 44px; }

  .step { grid-template-columns: 44px 1fr; gap: 12px; }

  .footer-top, .footer-bottom { display: grid; grid-template-columns: 1fr; }

  .form-field.full, .form-note, .form-success { grid-column: 1; }

  .terms-strip { grid-template-columns: 1fr; }

  .pa-contact-grid { grid-template-columns: 1fr; }

  .pa-score-row { flex-direction: column; align-items: flex-start; gap: 10px; }

  .fab-audit { right: 14px; bottom: 14px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-seq, [data-reveal], [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
  }

  .big-statement .w { opacity: 1 !important; transform: none !important; }

  .hero-seq { filter: none !important; }

  .ticker-track { animation: none !important; }

  .hero::before,
  .hero h1 .accent,
  .chat-shell::after,
  .callout::after { animation: none !important; }
}
