/* ============================================================================
   SignalFlow AI — Glassmorphism / Neon Cybernetic Minimalist
   No build step, no framework. Edit colours in :root and everything follows.
   ========================================================================== */

:root {
  /* surfaces */
  --base: #0a0c10;
  --base-950: #06080b;
  --base-900: #0a0c10;
  --base-800: #0e1117;
  --base-700: #141821;
  --base-600: #1b2130;

  /* accents */
  --emerald: #10b981;
  --cyan: #06b6d4;
  --violet: #8b5cf6;

  /* text */
  --ink: #e8edf5;
  --ink-muted: #98a2b3;
  /* Was #5A6478 — measured 2.98–3.37:1 on every background it is used on, at
     11px, and it carries the fine print, eyebrows and price labels. #7A869E
     measures ~4.6:1 on --base-900 and still reads as clearly recessive. */
  --ink-faint: #7a869e;

  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-soft: rgba(255, 255, 255, 0.05);
  --glass-fill: rgba(255, 255, 255, 0.025);

  --brand-gradient: linear-gradient(100deg, #10b981 0%, #06b6d4 55%, #8b5cf6 100%);

  --radius: 16px;
  --radius-sm: 11px;
  --radius-lg: 22px;

  --shell: 1180px;
  --ease: cubic-bezier(0.21, 0.6, 0.35, 1);

  --font-sans: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'Cascadia Mono', Consolas, monospace;

  color-scheme: dark;
}

/* ── reset ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--base-900);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'ss01';
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
button {
  background: none;
  border: 0;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
::selection {
  background: rgba(16, 185, 129, 0.28);
}
:focus-visible {
  outline: 2px solid rgba(6, 182, 212, 0.85);
  outline-offset: 2px;
  border-radius: 4px;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--base-900);
}
::-webkit-scrollbar-thumb {
  background: var(--base-600);
  border: 2px solid var(--base-900);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #252c3d;
}

/* ── typography helpers ──────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.032em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.1rem);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(1.9rem, 4.2vw, 2.6rem);
  line-height: 1.1;
}
h3 {
  font-size: 1.0625rem;
}
p {
  color: var(--ink-muted);
}
.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mono {
  font-family: var(--font-mono);
}
.tnum {
  font-variant-numeric: tabular-nums;
}
.muted {
  color: var(--ink-muted);
}
.faint {
  color: var(--ink-faint);
}
.lede {
  font-size: 1rem;
  line-height: 1.65;
  max-width: 40rem;
}
.fine {
  font-size: 0.6875rem;
  line-height: 1.6;
  color: var(--ink-faint);
}
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}

/* ── layout ──────────────────────────────────────────────────────────────── */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 640px) {
  .shell {
    padding-inline: 32px;
  }
}
section.band {
  position: relative;
  z-index: 1;
  padding-block: clamp(64px, 9vw, 128px);
}
.section-head {
  max-width: 42rem;
  margin-bottom: 48px;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head h2 {
  margin-top: 16px;
}
.section-head p {
  margin-top: 16px;
}

/* ── animated backdrop ───────────────────────────────────────────────────── */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* PERF: the grid is deliberately static. Animating `background-position` on a
   full-viewport fixed layer repaints the entire screen every frame, forever —
   it was the single largest source of scroll lag on this site. */
.backdrop .grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 45%, transparent 100%);
  opacity: 0.7;
}

/* PERF: these used `filter: blur(120px)` on ~600px boxes. A blur that wide is
   among the most expensive things a compositor can redraw, and it ran on three
   elements continuously. A radial-gradient gives the same soft glow for free —
   no filter, no per-frame blur, identical look. */
.backdrop .blob {
  position: absolute;
  border-radius: 50%;
  animation: aurora 24s ease-in-out infinite;
  will-change: transform;
}
.backdrop .blob.a {
  width: 42rem;
  height: 42rem;
  left: -12rem;
  top: -14rem;
  background: radial-gradient(circle closest-side, rgba(16, 185, 129, 0.3), transparent);
}
.backdrop .blob.b {
  width: 38rem;
  height: 38rem;
  right: -10rem;
  top: 4rem;
  background: radial-gradient(circle closest-side, rgba(6, 182, 212, 0.28), transparent);
  animation-delay: -8s;
}
.backdrop .blob.c {
  width: 34rem;
  height: 34rem;
  left: 30%;
  top: 52rem;
  background: radial-gradient(circle closest-side, rgba(139, 92, 246, 0.24), transparent);
  animation-delay: -16s;
}
.backdrop .vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 50% -10%, transparent 35%, var(--base-900) 100%);
}
/* PERF: this used to be a full-viewport gradient whose centre moved via CSS
   custom properties. Moving a gradient repaints every pixel of the viewport on
   every mouse frame. Now it is a fixed-size element moved with `transform`,
   which the compositor handles without any repaint at all. */
.spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 1040px;
  height: 1040px;
  margin: -520px 0 0 -520px;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle closest-side, rgba(6, 182, 212, 0.085), transparent);
  transform: translate3d(-9999px, -9999px, 0);
  will-change: transform;
}
@media (max-width: 767px), (pointer: coarse) {
  .spotlight {
    display: none;
  }
}

@keyframes grid-pan {
  to {
    background-position: 44px 44px;
  }
}
@keyframes aurora {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  33% {
    transform: translate3d(6%, -4%, 0) scale(1.12);
    opacity: 0.8;
  }
  66% {
    transform: translate3d(-5%, 5%, 0) scale(1.05);
    opacity: 0.65;
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dash-flow {
  to {
    stroke-dashoffset: -24;
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes marquee-x {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes bubble-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ── glass surfaces ──────────────────────────────────────────────────────── */
/* PERF: no backdrop-filter here on purpose. There were 16+ blurred panels on
   one page, each re-blurring its backdrop on every scroll frame. What sits
   behind them is a smooth gradient plus a 44px grid — blurring that is visually
   almost undetectable and was costing most of the scroll budget. The sticky
   bars (.topbar, .learn-bar, .topline) DO keep their blur, because real content
   scrolls behind those and there the effect actually reads. */
.glass {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: linear-gradient(rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.022));
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.06), 0 24px 60px -30px rgba(0, 0, 0, 0.9);
}
.glow-card {
  overflow: hidden;
  transition: border-color 0.22s var(--ease), transform 0.22s var(--ease);
}
.glow-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  background: radial-gradient(
    420px circle at var(--card-x, 50%) var(--card-y, 50%),
    rgba(16, 185, 129, 0.1),
    transparent 62%
  );
}
.glow-card:hover {
  border-color: rgba(16, 185, 129, 0.26);
}
.glow-card:hover::after {
  opacity: 1;
}
.ring-gradient {
  border: 1px solid transparent;
  background: linear-gradient(var(--base-800), var(--base-800)) padding-box,
    var(--brand-gradient) border-box;
}

/* ── buttons / chips / inputs ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 13px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  /* Specific properties, not `all` — `all` animates filter, box-shadow and
     background-position too, off the GPU, on every hover. */
  transition: transform 0.16s var(--ease), background-color 0.2s var(--ease),
    border-color 0.2s var(--ease), color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background: var(--brand-gradient);
  color: var(--base-950);
  font-weight: 600;
  box-shadow: 0 10px 40px -12px rgba(16, 185, 129, 0.75);
}
.btn-primary:hover {
  filter: brightness(1.1);
}
.btn-primary:active {
  transform: scale(0.985);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: rgba(6, 182, 212, 0.42);
  background: rgba(255, 255, 255, 0.06);
}
.btn-sm {
  padding: 8px 13px;
  font-size: 0.75rem;
  border-radius: 10px;
}
.btn-block {
  width: 100%;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
}
.skip:focus {
  left: 12px;
  top: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--emerald);
  color: var(--base-950);
  font-size: 0.8125rem;
  font-weight: 600;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}
.chip svg {
  width: 12px;
  height: 12px;
}
.chip.emerald {
  color: var(--emerald);
  border-color: rgba(16, 185, 129, 0.28);
  background: rgba(16, 185, 129, 0.07);
}
.chip.cyan {
  color: var(--cyan);
  border-color: rgba(6, 182, 212, 0.28);
  background: rgba(6, 182, 212, 0.07);
}
.chip.violet {
  color: var(--violet);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.08);
}
.chip.off {
  opacity: 0.4;
  text-decoration: line-through;
}

.pulse-dot {
  position: relative;
  display: inline-flex;
  width: 7px;
  height: 7px;
  flex: none;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--emerald);
  animation: pulse-ring 2.4s var(--ease) infinite;
}
.pulse-dot::after {
  content: '';
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--emerald);
}
.pulse-dot.cyan::before,
.pulse-dot.cyan::after {
  background: var(--cyan);
}

.field {
  margin-bottom: 14px;
}
.label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
}
.input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(14, 17, 23, 0.85);
  padding: 12px 14px;
  font-size: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.input::placeholder {
  color: var(--ink-faint);
}
.input:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.5);
  background: var(--base-800);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.14);
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px; /* touch target — was 35px */
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: transform 0.16s var(--ease), border-color 0.2s var(--ease),
    background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.pill:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--ink);
}
.pill[aria-pressed='true'] {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
}

.alert {
  display: flex;
  gap: 8px;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.75rem;
  line-height: 1.55;
  margin-bottom: 12px;
}
.alert svg {
  width: 14px;
  height: 14px;
  flex: none;
  margin-top: 2px;
}
.alert.error {
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
}
.alert.warn {
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.1);
  color: #fcd34d;
}
.alert[hidden] {
  display: none;
}

/* ── nav ─────────────────────────────────────────────────────────────────── */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
}
.topbar.scrolled {
  background: rgba(10, 12, 16, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--hairline);
}
.topbar nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.wordmark svg {
  width: 30px;
  height: 30px;
}
.navlinks {
  display: none;
  align-items: center;
  gap: 2px;
}
.navlinks a {
  border-radius: 9px;
  padding: 8px 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: all 0.2s;
}
.navlinks a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.burger {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 8px;
}
.burger svg {
  width: 20px;
  height: 20px;
}
.mobile-sheet {
  display: none;
  border-top: 1px solid var(--hairline);
  background: rgba(10, 12, 16, 0.97);
  backdrop-filter: blur(20px);
  padding-block: 14px;
}
.mobile-sheet.open {
  display: block;
}
/* `:not(.btn)` is load-bearing. Without it this rule out-specifies
   .btn-primary's colour and paints the mobile menu's only CTA text grey on the
   emerald gradient — measured at 1.02:1, i.e. invisible. */
.mobile-sheet a:not(.btn) {
  display: block;
  border-radius: 10px;
  padding: 12px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.mobile-sheet a:not(.btn):hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}
.mobile-sheet .btn {
  margin-top: 10px;
}
@media (min-width: 900px) {
  .navlinks {
    display: flex;
  }
  .burger {
    display: none;
  }
  .mobile-sheet {
    display: none !important;
  }
}
@media (max-width: 520px) {
  .nav-actions .btn-primary {
    display: none;
  }
}

/* ── hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  padding-top: 116px;
}
.hero-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
  }
  .hero-aside {
    position: sticky;
    top: 96px;
  }
}
.hero h1 {
  margin-top: 28px;
}
.hero .lede {
  margin-top: 24px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 6px 16px 6px 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-muted);
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
}
.badge-live:hover {
  border-color: rgba(16, 185, 129, 0.42);
  background: rgba(16, 185, 129, 0.07);
  color: var(--ink);
}
.badge-live .tag {
  border-radius: 999px;
  background: var(--brand-gradient);
  padding: 4px 10px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--base-950);
}
.badge-live svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}
.badge-live:hover svg {
  transform: translateX(2px);
}

.statrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.statrow dt {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.statrow dt svg {
  width: 14px;
  height: 14px;
  color: var(--cyan);
  flex: none;
}
.statrow dd {
  font-size: clamp(1.5rem, 3.4vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}
.statrow .stat-label-sm {
  margin-top: 4px;
  font-size: 0.6875rem;
  color: var(--ink-faint);
}
@media (min-width: 640px) {
  .statrow .stat-label-sm {
    display: none;
  }
}
@media (max-width: 639px) {
  .statrow dt span {
    display: none;
  }
}

/* ── marquee ─────────────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee-x 34s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-faint);
}

/* ── waitlist card ───────────────────────────────────────────────────────── */
.waitlist-card {
  padding: 26px;
}
.waitlist-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}
.waitlist-card h3 {
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}
.waitlist-card .sub {
  margin: 6px 0 20px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.grid-2 {
  display: grid;
  gap: 14px;
}
@media (min-width: 480px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2 .span-2 {
    grid-column: span 2;
  }
}
.tier-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tier-opt {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: left;
  transition: all 0.2s;
}
.tier-opt:hover {
  border-color: rgba(255, 255, 255, 0.25);
}
.tier-opt[aria-pressed='true'] {
  border-color: transparent;
  background: linear-gradient(var(--base-800), var(--base-800)) padding-box,
    var(--brand-gradient) border-box;
  border: 1px solid transparent;
}
.tier-opt .name {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
}
.tier-opt .price {
  display: block;
  margin-top: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.tier-opt .price small {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--ink-faint);
}
.honeypot {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.form-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.6875rem;
  color: var(--ink-faint);
}
.form-foot svg {
  width: 12px;
  height: 12px;
}
.strike {
  text-decoration: line-through;
  color: var(--ink-faint);
}
.upsell {
  border: 1px solid rgba(16, 185, 129, 0.22);
  background: rgba(16, 185, 129, 0.06);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}
.upsell .eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald);
}
.upsell .eyebrow svg {
  width: 14px;
  height: 14px;
}
.upsell p {
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.upsell-actions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}
@media (min-width: 480px) {
  .upsell-actions {
    grid-template-columns: 1fr 1fr;
  }
}
.success-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.success-head .icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
}
.success-head .icon svg {
  width: 20px;
  height: 20px;
}
[data-phase][hidden] {
  display: none;
}

/* ── ROI calculator ──────────────────────────────────────────────────────── */
.roi {
  display: grid;
  gap: 4px;
}
@media (min-width: 900px) {
  .roi {
    grid-template-columns: 1fr 0.85fr;
    gap: 20px;
  }
}
.roi-controls {
  padding: 24px;
}
.roi-row {
  margin-bottom: 22px;
}
.roi-row:last-child {
  margin-bottom: 0;
}
.roi-row header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.roi-row header span:first-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}
.roi-row output {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--emerald);
  font-variant-numeric: tabular-nums;
}
/* A 4px-tall drag target is unusable on touch. Padding + content-box clipping
   gives a 44px hit area while the visible track stays 4px. */
input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  box-sizing: content-box;
  padding-block: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  background-clip: content-box;
  cursor: pointer;
}
/* Keyboard users must be able to see which slider they are on. Do NOT add
   `outline: none` here — it out-specifies the global :focus-visible rule. */
input[type='range']:focus-visible {
  outline: 2px solid rgba(6, 182, 212, 0.85);
  outline-offset: 6px;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--brand-gradient);
  border: 3px solid var(--base-800);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.5), 0 0 18px -2px rgba(16, 185, 129, 0.8);
  cursor: grab;
}
input[type='range']::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
}
input[type='range']::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--emerald);
  border: 3px solid var(--base-800);
  cursor: grab;
}
.roi-out {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(
    150deg,
    rgba(16, 185, 129, 0.1),
    rgba(6, 182, 212, 0.06) 55%,
    transparent
  );
}
.roi-big {
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.roi-out .eyebrow {
  margin-bottom: 10px;
}
.roi-breakdown {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  display: grid;
  gap: 10px;
}
.roi-breakdown div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8125rem;
}
.roi-breakdown dt {
  color: var(--ink-muted);
}
.roi-breakdown dd {
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.roi-verdict {
  margin-top: 18px;
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.08);
  padding: 12px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ink);
}

/* ── cards grid ──────────────────────────────────────────────────────────── */
.cards-3 {
  display: grid;
  gap: 20px;
}
@media (min-width: 860px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.phase {
  padding: 24px;
  height: 100%;
}
.phase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.phase-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
}
.phase-icon svg {
  width: 18px;
  height: 18px;
}
.phase-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.07);
}
.phase .when {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
}
.phase .body {
  margin-top: 14px;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.phase .deliver {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.phase .deliver b {
  color: var(--ink);
  font-weight: 500;
}

/* ── simulator ───────────────────────────────────────────────────────────── */
.sim-shell {
  padding: 20px;
}
.sim-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.sim-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-muted);
}
.sim-controls {
  display: flex;
  gap: 8px;
}
.sim-body {
  display: grid;
  gap: 20px;
}
@media (min-width: 1024px) {
  .sim-body {
    grid-template-columns: 1.55fr 1fr;
  }
}
.sim-canvas {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: rgba(6, 8, 11, 0.6);
  padding: 8px;
  overflow: hidden;
}
.sim-canvas svg {
  width: 100%;
  height: auto;
}

/* node states, driven by data-state on each <g> */
.wf-node rect.box {
  fill: rgba(14, 17, 23, 0.9);
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1.25;
  transition: fill 0.5s var(--ease), stroke 0.5s var(--ease), stroke-width 0.5s var(--ease);
}
.wf-node .pip {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.14);
  transition: all 0.5s var(--ease);
}
.wf-node .pip-num {
  fill: var(--ink-faint);
  transition: fill 0.5s;
}
.wf-node .title {
  fill: var(--ink-muted);
  transition: fill 0.5s;
}
.wf-node .time {
  fill: var(--ink-faint);
  transition: fill 0.5s;
}
.wf-node[data-state='done'] rect.box {
  stroke: rgba(6, 182, 212, 0.42);
}
.wf-node[data-state='done'] .pip {
  fill: rgba(16, 185, 129, 0.18);
  stroke: var(--emerald);
}
.wf-node[data-state='done'] .pip-num,
.wf-node[data-state='active'] .pip-num {
  fill: var(--emerald);
}
.wf-node[data-state='done'] .title,
.wf-node[data-state='active'] .title {
  fill: var(--ink);
}
.wf-node[data-state='active'] rect.box {
  fill: rgba(16, 185, 129, 0.09);
  stroke: rgba(16, 185, 129, 0.85);
  stroke-width: 2;
  filter: url(#wf-glow);
}
.wf-node[data-state='active'] .pip {
  fill: rgba(16, 185, 129, 0.18);
  stroke: var(--emerald);
}
.wf-node[data-state='active'] .time {
  fill: var(--cyan);
}

.wf-edge .live {
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.wf-edge[data-state='done'] .live,
.wf-edge[data-state='flowing'] .live {
  opacity: 1;
}
.wf-edge[data-state='flowing'] .live {
  animation: dash-flow 0.7s linear infinite;
}

.wf-outcome rect {
  fill: rgba(14, 17, 23, 0.55);
  stroke: rgba(255, 255, 255, 0.08);
  stroke-dasharray: 5 5;
  transition: all 0.7s var(--ease);
}
.wf-outcome .amount {
  fill: #252c3d;
  transition: fill 0.7s;
}
.wf-outcome .cap {
  fill: var(--ink-faint);
  transition: fill 0.7s;
}
.wf-outcome[data-state='done'] rect {
  fill: rgba(16, 185, 129, 0.12);
  stroke: rgba(16, 185, 129, 0.9);
  stroke-width: 2;
  stroke-dasharray: none;
  filter: url(#wf-glow);
}
.wf-outcome[data-state='done'] .amount {
  fill: var(--ink);
}
.wf-outcome[data-state='done'] .cap {
  fill: var(--emerald);
}

/* phone transcript */
.phone {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: rgba(6, 8, 11, 0.6);
  overflow: hidden;
}
.phone-head {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--hairline);
  padding: 12px 16px;
}
.phone-head .av {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--emerald);
}
.phone-head .av svg {
  width: 14px;
  height: 14px;
}
.phone-head .num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.phone-head .meta {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--ink-faint);
}
.thread {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 250px;
  max-height: 330px;
  overflow-y: auto;
  padding: 16px;
  scrollbar-width: none;
}
.thread::-webkit-scrollbar {
  display: none;
}
.thread .empty {
  margin: auto;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--ink-faint);
}
.thread .empty i {
  animation: blink 1.1s steps(1) infinite;
  font-style: normal;
}
.bubble {
  max-width: 88%;
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 0.8125rem;
  line-height: 1.6;
  animation: bubble-in 0.35s var(--ease) both;
}
.bubble.ai {
  align-self: flex-start;
  border: 1px solid rgba(16, 185, 129, 0.2);
  background: rgba(16, 185, 129, 0.08);
  border-bottom-left-radius: 6px;
  color: var(--ink);
}
.bubble.lead {
  align-self: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-bottom-right-radius: 6px;
  color: var(--ink-muted);
}
.bubble .who {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-mono);
  font-size: 0.59rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--emerald);
}
.phone-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--hairline);
  background: var(--hairline-soft);
  text-align: center;
}
.phone-foot div {
  background: rgba(6, 8, 11, 0.85);
  padding: 12px 8px;
}
.phone-foot .k {
  font-family: var(--font-mono);
  font-size: 0.59rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}
.phone-foot .v {
  margin-top: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--emerald);
  font-variant-numeric: tabular-nums;
}
.phone-foot .v.idle {
  color: var(--ink-faint);
}

/* ── pricing ─────────────────────────────────────────────────────────────── */
.seg {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 4px;
}
.seg button {
  position: relative;
  border-radius: 9px;
  padding: 9px 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.seg button svg {
  width: 14px;
  height: 14px;
}
.seg button:hover {
  color: var(--ink);
}
.seg button[aria-pressed='true'] {
  background: var(--brand-gradient);
  color: var(--base-950);
  font-weight: 600;
}
.seg.sm button {
  padding: 6px 12px;
  font-size: 0.6875rem;
}
.seg.sm button[aria-pressed='true'] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
}
.toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tier-cards {
  display: grid;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .tier-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .tier-card.featured {
    margin-top: -12px;
    margin-bottom: 12px;
  }
}
.tier-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  height: 100%;
}
.tier-card.featured {
  border-color: rgba(16, 185, 129, 0.3);
}
.tier-card.featured::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--brand-gradient);
}
.tier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.tier-head p {
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1.6;
}
.tier-badge {
  flex: none;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.59rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--brand-gradient);
  color: var(--base-950);
}
.tier-badge.alt {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: var(--violet);
}
.price-line {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.price-line .amt {
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
}
.price-line .per {
  padding-bottom: 6px;
  font-size: 0.875rem;
  color: var(--ink-faint);
}
.price-note {
  min-height: 18px;
  margin: 4px 0 18px;
  font-size: 0.75rem;
  color: var(--ink-faint);
}
.surfaces {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.bestfor {
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 18px;
  font-size: 0.75rem;
  line-height: 1.6;
}
.bestfor b {
  color: var(--ink);
  font-weight: 500;
}
.feat {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.feat li {
  display: flex;
  gap: 10px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ink-muted);
}
.feat li svg {
  width: 14px;
  height: 14px;
  flex: none;
  margin-top: 4px;
  color: var(--emerald);
}
.feat li.head {
  color: var(--ink);
  font-weight: 500;
}
.tier-foot {
  margin-top: auto;
  display: grid;
  gap: 8px;
}
.linkish {
  padding: 4px;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  transition: color 0.2s;
}
.linkish:hover {
  color: var(--cyan);
}

/* comparison table */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
}
.cmp {
  min-width: 640px;
  text-align: left;
}
.cmp th,
.cmp td {
  padding: 14px 20px;
}
.cmp thead tr {
  border-bottom: 1px solid var(--hairline);
}
.cmp thead th:first-child {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.cmp thead th:not(:first-child) {
  text-align: center;
  transition: background 0.25s;
}
.cmp thead .t-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.cmp thead .t-price {
  display: block;
  margin-top: 2px;
  font-size: 0.6875rem;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}
.cmp .grouprow td {
  padding: 9px 20px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
}
.cmp tbody tr.datarow {
  border-bottom: 1px solid var(--hairline-soft);
}
.cmp tbody tr.datarow:hover {
  background: rgba(255, 255, 255, 0.02);
}
.cmp tbody td:first-child {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}
.cmp tbody td:not(:first-child) {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ink);
  transition: background 0.25s;
}
.cmp td svg,
.cmp th svg {
  width: 16px;
  height: 16px;
  margin-inline: auto;
}
.cmp .yes {
  color: var(--emerald);
}
.cmp .no {
  color: rgba(90, 100, 120, 0.55);
}
.cmp [data-col].focus {
  background: rgba(16, 185, 129, 0.045);
}

/* ── surfaces / product preview ──────────────────────────────────────────── */
.surface-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 900px) {
  .surface-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.surface-card {
  padding: 0;
  overflow: hidden;
}
.surface-card .shot {
  position: relative;
  aspect-ratio: 16 / 10;
  background: radial-gradient(120% 100% at 50% 0%, rgba(6, 182, 212, 0.1), transparent 60%),
    var(--base-950);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.surface-card .shot svg {
  width: 100%;
  height: 100%;
}
.surface-card .meta {
  padding: 20px 24px 24px;
}
.surface-card .meta h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.surface-card .meta h3 svg {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}
.surface-card .meta p {
  margin-top: 8px;
  font-size: 0.8125rem;
  line-height: 1.65;
}
.surface-card .meta .btn {
  margin-top: 16px;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq {
  display: grid;
  gap: 10px;
  max-width: 46rem;
  margin-inline: auto;
}
.faq details {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, background 0.25s;
}
.faq details[open] {
  border-color: rgba(16, 185, 129, 0.25);
  background: rgba(16, 185, 129, 0.035);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--ink-faint);
  transition: transform 0.3s var(--ease), color 0.3s;
}
.faq details[open] summary svg {
  transform: rotate(45deg);
  color: var(--emerald);
}
.faq .answer {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

/* ── final CTA + footer ──────────────────────────────────────────────────── */
.finale {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  border-radius: var(--radius-lg);
}
.finale::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 50% 0%, rgba(16, 185, 129, 0.14), transparent 60%);
  pointer-events: none;
}
.finale h2 {
  position: relative;
  max-width: 32rem;
  margin-inline: auto;
}
.finale p {
  position: relative;
  margin: 18px auto 28px;
  max-width: 34rem;
}
.finale .hero-cta {
  position: relative;
  justify-content: center;
}

footer.site {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--hairline);
  margin-top: 80px;
  padding-block: 44px;
}
.foot-grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 720px) {
  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
.foot-grid h4 {
  margin-bottom: 14px;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
}
.foot-grid a {
  display: block;
  padding: 4px 0;
  font-size: 0.8125rem;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.foot-grid a:hover {
  color: var(--ink);
}
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 0.75rem;
  color: var(--ink-faint);
}

/* ── scroll reveal ───────────────────────────────────────────────────────── */
/* 0.45s, not 0.7s — a 700ms reveal reads as the page lagging behind your scroll.
   No `will-change` at rest: it was holding a compositor layer for every one of
   these elements for the entire life of the page. */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
