/* ============================================================
   DIGITAL HELPER — Design System
   Editorial luxe-tech: warm ink, paper cream, chartreuse signal
   ============================================================ */

:root {
  --ink: #121214;
  --ink-2: #1a1a1e;
  --ink-3: #232328;
  --line-dark: rgba(242, 239, 231, 0.12);
  --line-darker: rgba(242, 239, 231, 0.07);
  --paper: #f2efe7;
  --paper-2: #e9e4d6;
  --line-light: rgba(18, 18, 20, 0.12);
  --signal: #3df604;
  --signal-deep: #2bd400;
  --txt-on-dark: #f2efe7;
  --txt-on-dark-dim: rgba(242, 239, 231, 0.62);
  --txt-on-light: #121214;
  --txt-on-light-dim: rgba(18, 18, 20, 0.64);
  --font-display: "Clash Display", "Arial Black", sans-serif;
  --font-body: "General Sans", "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Consolas", monospace;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --nav-h: 76px;
  --btn-radius: 100px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Depth scale — consistent elevation on the dark canvas */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.28);
  --shadow-md: 0 12px 34px rgba(0,0,0,0.34), 0 2px 6px rgba(0,0,0,0.28);
  --shadow-lg: 0 28px 70px rgba(0,0,0,0.46), 0 6px 18px rgba(0,0,0,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* ---- Visible keyboard focus (WCAG 2.4.7) ---- */
:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
  border-radius: 4px;
}
/* On the chartreuse band the signal outline has no contrast — use ink */
.cta-band :focus-visible,
.on-light .btn:focus-visible { outline-color: var(--ink); }

/* ---- Skip link (WCAG 2.4.1) ---- */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 4000;
  background: var(--signal);
  color: var(--ink);
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 100px;
  transform: translateY(-150%);
  transition: transform 0.25s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

body {
  background: var(--ink);
  color: var(--txt-on-dark);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--signal); color: var(--ink); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---- Grain overlay ---- */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(8) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -3%); }
  75% { transform: translate(-2%, -2%); }
}

/* ---- Type scale ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.015em; text-wrap: balance; }

.display-xl { font-size: clamp(2.9rem, 7.2vw, 6.2rem); letter-spacing: -0.028em; line-height: 1.0; }
.display-lg { font-size: clamp(2.3rem, 5vw, 4.2rem); letter-spacing: -0.024em; }
.display-md { font-size: clamp(1.7rem, 3.2vw, 2.7rem); letter-spacing: -0.02em; }
.display-sm { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.2; }

.lede { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.6; max-width: 38em; letter-spacing: -0.003em; text-wrap: pretty; }

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.mono-label::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--signal);
}
.on-light .mono-label::before { background: var(--ink); }
.mono-label.signal { color: var(--signal); }

.accent { color: var(--signal); }
.accent-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--signal);
}
.on-light .accent-italic { color: var(--ink); }

.strike-soft { position: relative; white-space: nowrap; }
.strike-soft::after {
  content: "";
  position: absolute;
  left: -2%;
  top: 54%;
  width: 104%;
  height: 0.08em;
  background: var(--signal);
  transform: rotate(-2deg) scaleX(0);
  transform-origin: left center;
  animation: strike 0.7s var(--ease-out) 1.1s forwards;
}
@keyframes strike { to { transform: rotate(-2deg) scaleX(1); } }

/* ---- Layout ---- */
.wrap { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }
.section-head { margin-bottom: clamp(44px, 6vw, 80px); display: grid; gap: 18px; max-width: 56rem; }
.section-head .mono-label { margin-bottom: 2px; }
.section-head .lede { margin-top: 6px; }

.on-light { background: var(--paper); color: var(--txt-on-light); }
.on-light .dim { color: var(--txt-on-light-dim); }
.dim { color: var(--txt-on-dark-dim); }

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(18, 18, 20, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line-darker);
  box-shadow: 0 1px 0 rgba(0,0,0,0.4), 0 8px 30px rgba(0,0,0,0.28);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--txt-on-dark);
}
.logo .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 14px rgba(61, 246, 4, 0.7);
  animation: pulse-dot 2.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--txt-on-dark-dim);
  transition: color 0.25s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--txt-on-dark); }
.nav-links a.btn, .nav-links a.btn:hover { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--signal);
}
.nav-burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 44px; height: 44px; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--txt-on-dark); transition: 0.3s; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-darker);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  padding: 16px 30px;
  border-radius: var(--btn-radius);
  box-shadow: 0 4px 16px rgba(61, 246, 4, 0.18);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
  will-change: transform;
  position: relative;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(61, 246, 4, 0.4); }
.btn .arr { transition: transform 0.3s var(--ease-out); }
.btn:hover .arr { transform: translateX(4px); }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }
.btn-ghost {
  background: transparent;
  color: var(--txt-on-dark);
  border: 1.5px solid var(--line-dark);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); box-shadow: none; transform: translateY(-2px); }
.on-light .btn-ghost { color: var(--ink); border-color: var(--line-light); }
.on-light .btn-ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { box-shadow: 0 8px 32px rgba(18, 18, 20, 0.3); }

/* Button group — shared hero/CTA action row */
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 38px; }

/* Hero sub-line — small supporting paragraph under a lede */
.lede-sub { font-size: 0.95rem; max-width: 26em; margin-top: 14px; }

.link-arrow {
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--signal);
}
.link-arrow .arr { transition: transform 0.3s var(--ease-out); }
.link-arrow:hover .arr { transform: translateX(5px); }
.on-light .link-arrow { color: var(--ink); }

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.94) translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-scale.in { opacity: 1; transform: none; }

.hero-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-up 0.9s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes word-up { to { transform: translateY(0); } }

/* ---- Statement hero (Unbounded, solid + hollow-outline lines) ---- */
.hero-stmt {
  font-family: "Unbounded", var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.94;
  letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 5.6vw, 5rem);
  margin: 22px 0 30px;
  display: flex;
  flex-direction: column;
}
.hero-stmt .hl { display: block; overflow: hidden; padding: 0.04em 0; }
.hero-stmt .hl > span {
  display: inline-block;
  transform: translateY(110%);
  animation: word-up 0.95s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
.hero-stmt .hollow > span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 239, 231, 0.82);
  color: transparent;
}
.hero-stmt em.g {
  font-style: italic;
  color: var(--signal);
  -webkit-text-fill-color: var(--signal);
}

/* ---- Marquee ---- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-darker);
  border-bottom: 1px solid var(--line-darker);
  padding: 22px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.9rem);
  font-weight: 500;
  white-space: nowrap;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 56px;
  color: var(--txt-on-dark-dim);
}
.marquee-track span::after {
  content: "✦";
  color: var(--signal);
  font-size: 0.8em;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee.on-light-mq { border-color: var(--line-light); }
.marquee.on-light-mq .marquee-track span { color: var(--txt-on-light-dim); }
.marquee.on-light-mq .marquee-track span::after { color: var(--ink); }

/* ---- Cards ---- */
.card {
  background: var(--ink-2);
  border: 1px solid var(--line-darker);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s var(--ease-out);
}
.card:hover { transform: translateY(-6px); border-color: rgba(61, 246, 4, 0.35); box-shadow: var(--shadow-md); }
.on-light .card {
  background: #fff;
  border-color: var(--line-light);
  box-shadow: 0 2px 16px rgba(18, 18, 20, 0.05);
}
.on-light .card:hover { border-color: var(--ink); }

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

/* ---- Stats ---- */
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label { font-size: 0.84rem; line-height: 1.45; margin-top: 10px; }

/* ---- Ticks / checklists ---- */
.tick-list { list-style: none; display: grid; gap: 14px; }
.tick-list li { display: flex; gap: 13px; align-items: flex-start; }
.tick-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 23px; height: 23px;
  border-radius: 50%;
  background: var(--signal);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ---- Footer CTA + footer ---- */
.cta-band {
  background: var(--signal);
  color: var(--ink);
  text-align: center;
  padding: clamp(90px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 0%, rgba(255,255,255,0.35), transparent),
    radial-gradient(ellipse 50% 60% at 85% 100%, rgba(18,18,20,0.12), transparent);
}
.cta-band > .wrap { position: relative; }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 5rem); letter-spacing: -0.028em; }
.cta-band .lede { margin: 24px auto 40px; color: rgba(18,18,20,0.78); }

footer {
  background: var(--ink);
  border-top: 1px solid var(--line-darker);
  padding: 70px 0 36px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 64px; }
.footer-grid h4 { font-size: 0.72rem; font-family: var(--font-mono); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: rgba(242, 239, 231, 0.5); margin-bottom: 20px; }
.footer-grid ul { list-style: none; display: grid; gap: 13px; }
.footer-grid a { color: var(--txt-on-dark-dim); font-size: 0.95rem; transition: color 0.25s; }
.footer-grid a:hover { color: var(--signal); }
.footer-bottom { border-top: 1px solid var(--line-darker); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--txt-on-dark-dim); flex-wrap: wrap; gap: 12px; }

/* ============================================================
   DEMO WIDGETS — animated service explainers
   ============================================================ */

.demo-frame {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.demo-frame .demo-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-darker);
  background: rgba(0,0,0,0.25);
}
.demo-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-dark); }
.demo-bar i:first-child { background: #ff6057; }
.demo-bar i:nth-child(2) { background: #febc2e; }
.demo-bar i:nth-child(3) { background: #28c840; }
.demo-bar .demo-title { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; color: var(--txt-on-dark-dim); margin-left: 10px; text-transform: uppercase; }
.demo-live {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.demo-live::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--signal);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

/* --- Lead pipeline widget --- */
.pipeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 22px; min-height: 320px; }
.pipe-col { background: rgba(0,0,0,0.22); border: 1px solid var(--line-darker); border-radius: var(--radius-sm); padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.pipe-col h5 { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-on-dark-dim); display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid var(--line-darker); }
.pipe-col h5 b { color: var(--signal); }
.lead-card {
  background: var(--ink-3);
  border: 1px solid var(--line-darker);
  border-radius: 10px;
  padding: 11px 13px;
  font-size: 0.78rem;
  opacity: 0;
  animation: lead-in 0.6s var(--ease-out) forwards;
}
.lead-card .lc-name { font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.lead-card .lc-meta { color: var(--txt-on-dark-dim); font-size: 0.7rem; margin-top: 3px; font-family: var(--font-mono); }
.lead-card .lc-score { font-family: var(--font-mono); font-size: 0.62rem; background: rgba(61, 246, 4,0.14); color: var(--signal); padding: 2px 7px; border-radius: 30px; }
.lead-card.booked { border-color: rgba(61, 246, 4,0.5); }
.lead-card.booked .lc-score { background: var(--signal); color: var(--ink); }
@keyframes lead-in {
  from { opacity: 0; transform: translateX(-18px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.pipe-loop .lead-card { animation: lead-cycle 9s var(--ease-out) infinite; animation-delay: var(--d, 0s); }
@keyframes lead-cycle {
  0% { opacity: 0; transform: translateX(-18px) scale(0.96); }
  6%, 88% { opacity: 1; transform: none; }
  96%, 100% { opacity: 0; transform: translateX(10px); }
}

/* --- Site builder widget --- */
.sitebuild { padding: 26px; min-height: 320px; }
.sb-canvas { background: var(--paper); border-radius: var(--radius-sm); padding: 18px; height: 100%; min-height: 270px; overflow: hidden; position: relative; }
.sb-el {
  border-radius: 7px;
  margin-bottom: 10px;
  opacity: 0;
  animation: sb-in 8s var(--ease-out) infinite;
  animation-delay: var(--d, 0s);
}
@keyframes sb-in {
  0% { opacity: 0; transform: translateY(14px) scale(0.97); }
  5%, 92% { opacity: 1; transform: none; }
  98%, 100% { opacity: 0; }
}
.sb-nav { height: 26px; background: var(--ink); display: flex; align-items: center; padding: 0 12px; gap: 6px; }
.sb-nav i { width: 26px; height: 5px; border-radius: 3px; background: rgba(242,239,231,0.4); }
.sb-nav i.brand { width: 40px; background: var(--signal); }
.sb-nav i:last-child { margin-left: auto; }
.sb-hero { height: 86px; background: linear-gradient(120deg, var(--ink) 60%, #2d2d33); display: flex; flex-direction: column; justify-content: center; padding: 0 16px; gap: 7px; }
.sb-hero i { height: 9px; border-radius: 4px; background: var(--paper); width: 62%; }
.sb-hero i:nth-child(2) { width: 40%; background: rgba(242,239,231,0.45); height: 6px; }
.sb-hero i.cta { width: 64px; height: 14px; background: var(--signal); border-radius: 20px; margin-top: 3px; }
.sb-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.sb-card2 { height: 58px; background: #fff; border: 1px solid var(--line-light); border-radius: 7px; padding: 8px; }
.sb-card2 i { display: block; height: 6px; border-radius: 3px; background: var(--paper-2); margin-bottom: 5px; }
.sb-card2 i:first-child { width: 18px; height: 18px; background: var(--signal); border-radius: 5px; }
.sb-footer { height: 30px; background: var(--ink-3); }
.sb-cursor {
  position: absolute;
  width: 14px; height: 14px;
  z-index: 5;
  animation: sb-cursor 8s ease-in-out infinite;
}
.sb-cursor::before { content: "▲"; position: absolute; transform: rotate(-32deg); color: var(--ink); font-size: 13px; text-shadow: 0 0 3px var(--paper); }
@keyframes sb-cursor {
  0% { top: 12%; left: 70%; }
  18% { top: 24%; left: 30%; }
  40% { top: 48%; left: 60%; }
  62% { top: 66%; left: 25%; }
  85% { top: 80%; left: 55%; }
  100% { top: 12%; left: 70%; }
}

/* --- Automation flow widget --- */
.flowgraph { padding: 26px; min-height: 320px; position: relative; }
.flow-svg { width: 100%; height: auto; }
.flow-node-box {
  fill: var(--ink-3);
  stroke: rgba(242,239,231,0.16);
  rx: 10;
}
.flow-node-box.signal-node { stroke: var(--signal); }
.flow-label { font-family: var(--font-mono); font-size: 9.5px; fill: var(--txt-on-dark); letter-spacing: 0.06em; }
.flow-sub { font-family: var(--font-mono); font-size: 7.5px; fill: rgba(242,239,231,0.5); }
.flow-edge { stroke: rgba(242,239,231,0.18); stroke-width: 1.5; fill: none; }
.flow-pulse {
  fill: var(--signal);
  filter: drop-shadow(0 0 5px var(--signal));
}

/* ============================================================
   PAGE BLOCKS
   ============================================================ */

/* Hero */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 50px) 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 78% 18%, rgba(61, 246, 4, 0.09), transparent 65%),
    radial-gradient(ellipse 40% 40% at 10% 85%, rgba(61, 246, 4, 0.05), transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-darker) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-darker) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 30%, transparent 75%);
}

/* Page hero (interior pages) */
.page-hero { padding: calc(var(--nav-h) + clamp(60px, 9vw, 110px)) 0 clamp(50px, 7vw, 90px); position: relative; overflow: hidden; }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 110px 1fr 1.2fr;
  gap: 30px;
  padding: 38px 0;
  border-top: 1px solid var(--line-darker);
  align-items: baseline;
}
.step:last-child { border-bottom: 1px solid var(--line-darker); }
.step .step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--signal);
}
.on-light .step { border-color: var(--line-light); }
.on-light .step .step-num { color: var(--ink); }

/* FAQ / accordions */
details.faq {
  border-top: 1px solid var(--line-darker);
  padding: 24px 0;
}
details.faq:last-of-type { border-bottom: 1px solid var(--line-darker); }
details.faq summary {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.25s;
}
details.faq summary:hover { color: var(--signal); }
.on-light details.faq summary:hover { color: var(--ink); }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--signal); transition: transform 0.3s; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { margin-top: 16px; max-width: 46em; }
.on-light details.faq { border-color: var(--line-light); }
.on-light details.faq summary::after { color: var(--ink); }

/* Forms */
.form-grid { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 9px; color: var(--txt-on-dark-dim); }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  color: var(--txt-on-dark);
  font: inherit;
  font-size: 0.95rem;
  padding: 15px 17px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(61, 246, 4, 0.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-group input { position: absolute; opacity: 0; pointer-events: none; }
.chip-group label.chip {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  padding: 11px 20px;
  border: 1.5px solid var(--line-dark);
  border-radius: var(--btn-radius);
  cursor: pointer;
  transition: 0.25s;
  color: var(--txt-on-dark-dim);
  margin: 0;
}
.chip-group input:checked + label.chip {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--ink);
}
/* The real checkbox is visually hidden — surface its focus ring on the chip */
.chip-group input:focus-visible + label.chip {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
}

/* Artifact / sample displays */
.artifact {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 26px;
  font-size: 0.9rem;
  line-height: 1.65;
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
  position: relative;
}
.artifact .art-tag {
  position: absolute;
  top: -13px;
  left: 22px;
  background: var(--signal);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 30px;
}
.artifact .art-meta { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(18,18,20,0.5); border-bottom: 1px solid var(--line-light); padding-bottom: 12px; margin-bottom: 14px; display: grid; gap: 3px; }
.artifact mark { background: rgba(61, 246, 4, 0.55); padding: 0 3px; border-radius: 3px; }

/* Gauges (web standards) */
.gauge { display: grid; place-items: center; position: relative; }
.gauge svg { transform: rotate(-90deg); }
.gauge .g-track { fill: none; stroke: var(--line-dark); stroke-width: 7; }
.gauge .g-fill {
  fill: none;
  stroke: var(--signal);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1.6s var(--ease-out) 0.3s;
}
.gauge.in .g-fill { stroke-dashoffset: var(--target, 28); }
.gauge .g-val {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
}

/* Big number list rows */
.num-rows { display: grid; }
.num-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line-darker);
  transition: padding-left 0.35s var(--ease-out);
}
.num-row:hover { padding-left: 14px; }
.num-row:last-child { border-bottom: 1px solid var(--line-darker); }
.num-row .nr-i { font-family: var(--font-mono); color: var(--signal); font-size: 0.85rem; }
.on-light .num-row { border-color: var(--line-light); }
.on-light .num-row .nr-i { color: var(--ink); }

/* Org-chart collapse visual */
.orgchart { position: relative; min-height: 380px; display: grid; place-items: center; }
.org-role {
  position: absolute;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 13px 19px;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 9px;
  animation: org-drift 11s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.org-role .salary { font-family: var(--font-mono); font-size: 0.62rem; color: #ff8a7a; }
@keyframes org-drift {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-13px) rotate(var(--r, 0deg)); }
}
.org-center {
  position: relative;
  z-index: 3;
  background: var(--signal);
  color: var(--ink);
  border-radius: 18px;
  padding: 26px 38px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  box-shadow: 0 0 70px rgba(61, 246, 4, 0.35);
}
.org-center small { display: block; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.13em; margin-top: 6px; text-transform: uppercase; }

/* Cursor follower (desktop) */
.cursor-dot {
  position: fixed;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--signal);
  pointer-events: none;
  z-index: 3000;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, opacity 0.25s;
  mix-blend-mode: difference;
  opacity: 0;
}
body.cursor-on .cursor-dot { opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 60px 1fr; }
  .step > p:last-child { grid-column: 2; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pipeline { grid-template-columns: 1fr; min-height: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 0; }
}

/* ============================================================
   CONVERSION LAYER — progress, sticky CTA, exit modal,
   guarantees, quiz, calculator, pricing
   ============================================================ */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--signal);
  z-index: 1100;
  box-shadow: 0 0 12px rgba(61, 246, 4, 0.6);
}

/* 3D tilt */
[data-tilt] { transform-style: preserve-3d; will-change: transform; }

/* Sticky floating CTA */
.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 15px 24px;
  border-radius: var(--btn-radius);
  box-shadow: 0 10px 40px rgba(61, 246, 4, 0.35), 0 4px 14px rgba(0,0,0,0.4);
  transform: translateY(120px);
  transition: transform 0.5s var(--ease-bounce);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sc-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); animation: pulse-dot 1.6s ease-in-out infinite; }

/* Exit-intent modal */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1500;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.exit-overlay.show { opacity: 1; pointer-events: auto; }
.exit-modal {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 46px);
  position: relative;
  transform: translateY(26px) scale(0.97);
  transition: transform 0.45s var(--ease-bounce);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
}
.exit-overlay.show .exit-modal { transform: none; }
.exit-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--txt-on-dark-dim);
  transition: 0.25s;
}
.exit-close:hover { border-color: var(--signal); color: var(--signal); }
.exit-modal .audit-list { list-style: none; display: grid; gap: 10px; margin: 20px 0; }
.exit-modal .audit-list li { display: flex; gap: 11px; font-size: 0.92rem; align-items: flex-start; }
.exit-modal .audit-list li b { color: var(--signal); font-family: var(--font-mono); font-size: 0.72rem; padding-top: 4px; }

/* Guarantees */
.guarantees { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .guarantees { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .guarantees { grid-template-columns: 1fr; } }
.guar {
  border: 1px solid var(--line-darker);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s var(--ease-out);
}
.guar:hover { transform: translateY(-6px); border-color: rgba(61, 246, 4,0.4); box-shadow: var(--shadow-md); }
.guar .g-ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(61, 246, 4, 0.12);
  border: 1px solid rgba(61, 246, 4, 0.3);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.guar h3 { font-size: 1.12rem; margin-bottom: 9px; }
.guar p { font-size: 0.88rem; color: var(--txt-on-dark-dim); }

/* Score banner (home) */
.score-banner {
  border: 1.5px solid rgba(61, 246, 4, 0.35);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 60% 100% at 85% 50%, rgba(61, 246, 4,0.1), transparent 70%),
    var(--ink-2);
  padding: clamp(34px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media (max-width: 860px) { .score-banner { grid-template-columns: 1fr; } }

/* Quiz */
.quiz-shell { max-width: 760px; margin-inline: auto; }
.quiz-progress { display: flex; gap: 7px; margin-bottom: 34px; }
.quiz-progress i { flex: 1; height: 4px; border-radius: 3px; background: var(--line-dark); transition: background 0.4s; }
.quiz-progress i.done { background: var(--signal); }
.quiz-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 52px);
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.quiz-q { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.15; margin-bottom: 30px; }
.quiz-opts { display: grid; gap: 12px; }
.quiz-opt {
  text-align: left;
  border: 1.5px solid var(--line-dark);
  border-radius: 15px;
  padding: 17px 20px;
  font-size: 0.98rem;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: 0.25s;
  color: var(--txt-on-dark);
}
.quiz-opt:hover { border-color: var(--signal); transform: translateX(5px); }
.quiz-opt .qo-key {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--txt-on-dark-dim);
}
.quiz-opt:hover .qo-key { background: var(--signal); color: var(--ink); border-color: var(--signal); }
.quiz-step { display: none; animation: quiz-in 0.45s var(--ease-out); }
.quiz-step.active { display: flex; flex-direction: column; flex: 1; }
@keyframes quiz-in { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
.quiz-meta { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-on-dark-dim); margin-bottom: 14px; }

/* Score result */
.score-gauge-big { position: relative; width: 210px; height: 210px; margin-inline: auto; display: grid; place-items: center; }
.score-gauge-big svg { transform: rotate(-90deg); position: absolute; inset: 0; }
.score-gauge-big .sg-track { fill: none; stroke: var(--line-dark); stroke-width: 11; }
.score-gauge-big .sg-fill {
  fill: none;
  stroke: var(--signal);
  stroke-width: 11;
  stroke-linecap: round;
  stroke-dasharray: 565;
  stroke-dashoffset: 565;
  transition: stroke-dashoffset 1.8s var(--ease-out) 0.4s;
  filter: drop-shadow(0 0 8px rgba(61, 246, 4,0.5));
}
.score-gauge-big .sg-num { font-family: var(--font-display); font-weight: 600; font-size: 3.4rem; line-height: 1; }
.score-gauge-big .sg-sub { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--txt-on-dark-dim); }
.score-bars { display: grid; gap: 15px; margin: 36px 0; }
.score-bar-row { display: grid; grid-template-columns: 130px 1fr 42px; gap: 14px; align-items: center; font-size: 0.85rem; }
.score-bar-row .sb-track { height: 8px; border-radius: 5px; background: var(--line-dark); overflow: hidden; }
.score-bar-row .sb-fill { height: 100%; border-radius: 5px; background: var(--signal); width: 0; transition: width 1.2s var(--ease-out) 0.6s; }
.score-bar-row .sb-val { font-family: var(--font-mono); font-size: 0.72rem; color: var(--signal); text-align: right; }

/* Calculator */
.calc {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4.5vw, 48px);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 4vw, 56px);
}
@media (max-width: 860px) { .calc { grid-template-columns: 1fr; } }
.calc-field { margin-bottom: 28px; }
.calc-field label { display: flex; justify-content: space-between; font-size: 0.92rem; font-weight: 500; margin-bottom: 12px; gap: 12px; }
.calc-field label output { font-family: var(--font-mono); color: var(--signal); white-space: nowrap; }
input[type="range"].calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: var(--line-dark);
  outline: none;
}
input[type="range"].calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--signal);
  cursor: pointer;
  box-shadow: 0 0 0 5px rgba(61, 246, 4, 0.18);
  transition: box-shadow 0.25s;
}
input[type="range"].calc-range::-webkit-slider-thumb:hover { box-shadow: 0 0 0 9px rgba(61, 246, 4, 0.25); }
input[type="range"].calc-range::-moz-range-thumb {
  width: 22px; height: 22px; border: none;
  border-radius: 50%;
  background: var(--signal);
  cursor: pointer;
}
.calc-result {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--line-darker);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.calc-result .cr-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--signal); line-height: 1; }
.calc-result .cr-label { font-size: 0.85rem; color: var(--txt-on-dark-dim); margin-top: 6px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 940px) { .price-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }
.price-card {
  border: 1px solid var(--line-darker);
  border-radius: var(--radius-lg);
  background: var(--ink-2);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s var(--ease-out);
}
.price-card:hover { transform: translateY(-8px); border-color: rgba(61, 246, 4,0.35); box-shadow: var(--shadow-md); }
.price-card.featured {
  border: 1.5px solid var(--signal);
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(61, 246, 4,0.1), transparent 70%),
    var(--ink-2);
  box-shadow: 0 24px 80px rgba(61, 246, 4, 0.12);
}
.price-card .pc-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--signal);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  white-space: nowrap;
}
.price-card .pc-name { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-on-dark-dim); }
.price-card .pc-price { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.1rem, 3.4vw, 2.9rem); margin: 16px 0 4px; }
.price-card .pc-price small { font-size: 0.42em; font-weight: 500; color: var(--txt-on-dark-dim); }
.price-card .pc-for { font-size: 0.88rem; color: var(--txt-on-dark-dim); margin-bottom: 26px; min-height: 42px; }
.price-card .tick-list { font-size: 0.9rem; gap: 12px; margin-bottom: 30px; }
.price-card .btn { margin-top: auto; justify-content: center; }

/* Custom bundles + simple contact band */
.custom-band {
  background:
    radial-gradient(ellipse 70% 130% at 82% 0%, rgba(61, 246, 4, 0.09), transparent 70%),
    var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4.5vw, 56px);
}
.contact-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  padding: 7px 7px 7px 22px;
  max-width: 560px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-bar:focus-within { border-color: var(--signal); box-shadow: 0 0 0 3px rgba(61, 246, 4, 0.15); }
.contact-bar input {
  flex: 1; min-width: 0;
  background: transparent; border: none;
  color: var(--txt-on-dark); font: inherit; font-size: 0.98rem; outline: none;
}
.contact-bar input::placeholder { color: var(--txt-on-dark-dim); }
.contact-bar .btn { flex-shrink: 0; }
.fb-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #1877f2; color: #fff; font-weight: 600;
  padding: 14px 24px; border-radius: 100px;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.fb-btn:hover { box-shadow: 0 8px 28px rgba(24, 119, 242, 0.42); transform: translateY(-2px); }
.fb-btn svg { width: 19px; height: 19px; fill: currentColor; }
.toast {
  position: fixed; left: 50%; bottom: 28px;
  transform: translateX(-50%) translateY(140px);
  background: var(--signal); color: var(--ink);
  font-weight: 600; font-size: 0.92rem;
  padding: 14px 24px; border-radius: 100px;
  z-index: 1600; box-shadow: var(--shadow-lg);
  transition: transform 0.45s var(--ease-bounce);
}
.toast.show { transform: translateX(-50%) translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  /* Stop the looping grain overlay and any decorative pulses */
  body::after { animation: none !important; }
  /* SVG SMIL motion (flow pulses) is not covered by the rules above */
  .flow-pulse { display: none !important; }
}
