/* SEOBooster Marketing Site — Design Tokens V1 */
:root {
  --sb-ink-950: #070b12;
  --sb-ink-900: #0b1220;
  --sb-ink-800: #121a26;
  --sb-signal-700: #0f766e;
  --sb-signal-600: #0d9488;
  --sb-signal-500: #14b8a6;
  --sb-signal-100: #ccfbf1;
  --sb-signal-50: #f0fdfa;
  --sb-neutral-0: #ffffff;
  --sb-neutral-25: #f8fafb;
  --sb-neutral-50: #f1f4f7;
  --sb-neutral-100: #e5eaef;
  --sb-neutral-200: #d0d8e0;
  --sb-neutral-500: #6b7a8a;
  --sb-neutral-600: #4f5d6b;
  --sb-neutral-700: #374151;
  --sb-neutral-800: #1f2937;
  --sb-neutral-900: #111827;
  --sb-conf-high: #16a34a;
  --sb-conf-med: #d97706;
  --sb-conf-low: #dc2626;

  --sb-bg: var(--sb-neutral-50);
  --sb-surface: var(--sb-neutral-0);
  --sb-text: var(--sb-neutral-900);
  --sb-muted: var(--sb-neutral-600);
  --sb-border: var(--sb-neutral-200);
  --sb-brand: var(--sb-signal-700);

  --sb-font: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --sb-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --sb-radius: 8px;
  --sb-radius-sm: 6px;
  --sb-shadow: 0 1px 0 rgba(11, 18, 32, 0.04), 0 12px 40px rgba(11, 18, 32, 0.06);
  --sb-header-h: 72px;
  --sb-max: 1120px;
  --sb-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sb-font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--sb-text);
  background: var(--sb-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--sb-brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sb-signal-600); }
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.02em; color: var(--sb-ink-900); }
p { color: var(--sb-muted); }
code, .mono { font-family: var(--sb-mono); font-size: 0.92em; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--sb-ink-900); color: #fff; padding: 0.75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.shell {
  width: min(100% - 2rem, var(--sb-max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 250, 251, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--sb-ease), background 0.2s;
}
.site-header.is-scrolled { border-bottom-color: var(--sb-border); background: rgba(255,255,255,0.92); }
.site-header__inner {
  min-height: var(--sb-header-h);
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--sb-ink-900); }
.brand__mark {
  width: 28px; height: 28px; border-radius: 7px;
  background:
    linear-gradient(135deg, var(--sb-signal-500), var(--sb-signal-700));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
  position: relative;
}
.brand__mark::after {
  content: ""; position: absolute; inset: 7px;
  border: 2px solid rgba(255,255,255,0.9); border-radius: 3px;
  border-left-width: 0; border-bottom-width: 0; transform: rotate(45deg) translate(-1px, 1px);
}
.brand__name { font-weight: 700; font-size: 1.125rem; letter-spacing: -0.03em; }
.site-header__actions { margin-left: auto; display: flex; align-items: center; gap: 0.65rem; }
.nav-text { color: var(--sb-muted); text-decoration: none; font-weight: 500; font-size: 0.9375rem; }
.nav-text:hover { color: var(--sb-ink-900); }

.nav-primary { display: none; }
.nav-primary__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.25rem; }
.nav-link {
  display: inline-flex; align-items: center;
  padding: 0.5rem 0.75rem; border-radius: var(--sb-radius-sm);
  color: var(--sb-neutral-700); text-decoration: none; font-weight: 500; font-size: 0.9375rem;
  background: transparent; border: 0; font: inherit; cursor: pointer;
}
.nav-link:hover, .nav-link.is-active { color: var(--sb-ink-900); background: var(--sb-neutral-100); }
.has-mega { position: relative; }
.mega {
  position: absolute; top: calc(100% + 0.5rem); left: 0; width: 320px;
  background: var(--sb-surface); border: 1px solid var(--sb-border);
  border-radius: var(--sb-radius); box-shadow: var(--sb-shadow);
  padding: 0.5rem; display: grid; gap: 0.15rem;
}
.mega[hidden] { display: none !important; }
.mega a {
  display: grid; gap: 0.15rem; padding: 0.75rem 0.85rem; border-radius: var(--sb-radius-sm);
  text-decoration: none; color: inherit;
}
.mega a:hover { background: var(--sb-signal-50); }
.mega strong { color: var(--sb-ink-900); font-size: 0.9375rem; }
.mega span { color: var(--sb-muted); font-size: 0.8125rem; }

.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border: 1px solid var(--sb-border); border-radius: var(--sb-radius-sm);
  background: var(--sb-surface); cursor: pointer; padding: 0 11px;
}
.nav-toggle span { display: block; height: 2px; background: var(--sb-ink-900); border-radius: 2px; }
.nav-drawer {
  display: grid; gap: 0.35rem; padding: 0.75rem 1rem 1.25rem;
  border-top: 1px solid var(--sb-border); background: var(--sb-surface);
}
.nav-drawer[hidden] { display: none !important; }
.nav-drawer a {
  padding: 0.75rem; border-radius: var(--sb-radius-sm); text-decoration: none; color: var(--sb-ink-900); font-weight: 500;
}
.nav-drawer .btn { text-align: center; }

@media (min-width: 960px) {
  .nav-primary { display: block; }
  .nav-toggle { display: none; }
  .nav-drawer { display: none !important; }
  .site-header__actions .btn--ghost { display: inline-flex; }
}

@media (max-width: 959px) {
  .site-header__actions .btn--ghost,
  .site-header__actions .nav-text { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 44px; padding: 0.7rem 1.15rem; border-radius: var(--sb-radius-sm);
  font-weight: 600; font-size: 0.9375rem; text-decoration: none; border: 1px solid transparent;
  transition: transform 0.2s var(--sb-ease), background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--sb-signal-700); color: #fff; }
.btn--primary:hover { background: var(--sb-signal-600); color: #fff; }
.btn--ghost { background: transparent; color: var(--sb-ink-900); border-color: var(--sb-border); }
.btn--ghost:hover { border-color: var(--sb-signal-600); color: var(--sb-signal-700); background: var(--sb-signal-50); }
.btn--light { background: #fff; color: var(--sb-ink-900); }
.btn--sm { min-height: 40px; padding: 0.55rem 0.9rem; font-size: 0.875rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Hero */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: calc(100svh - var(--sb-header-h));
  display: grid; align-items: end;
  color: #fff;
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(20, 184, 166, 0.28), transparent 55%),
    radial-gradient(900px 500px at 10% 80%, rgba(15, 118, 110, 0.35), transparent 50%),
    linear-gradient(160deg, #070b12 0%, #0b1220 45%, #12261f 100%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: -1; opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 40%, transparent);
  animation: grid-drift 28s linear infinite;
}
@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, 48px 48px; }
}
.hero__inner {
  width: min(100% - 2rem, var(--sb-max));
  margin: 0 auto;
  padding: 4.5rem 0 3.5rem;
  display: grid; gap: 2.5rem;
}
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
    padding: 5.5rem 0 4rem;
  }
}
.hero__brand {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 700; letter-spacing: -0.045em; line-height: 0.95;
  margin: 0 0 1rem;
  color: #fff;
  animation: rise 0.8s var(--sb-ease) both;
}
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 600; color: #e8eef5; max-width: 18ch;
  animation: rise 0.8s var(--sb-ease) 0.08s both;
}
.hero__support {
  margin: 0 0 1.75rem; max-width: 38ch; color: #b7c2d0; font-size: 1.0625rem;
  animation: rise 0.8s var(--sb-ease) 0.14s both;
}
.hero .btn-row { animation: rise 0.8s var(--sb-ease) 0.2s both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-visual {
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(18,26,38,0.85), rgba(11,18,32,0.95));
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  animation: rise 0.9s var(--sb-ease) 0.18s both;
}
.hero-visual__bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #9aa8b8; font-size: 0.75rem; font-family: var(--sb-mono);
}
.hero-visual__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sb-signal-500); box-shadow: 0 0 0 4px rgba(20,184,166,0.15); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}
.hero-visual__body { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 280px; }
.hero-visual__list { padding: 0.75rem; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-visual__row {
  display: grid; grid-template-columns: 1fr auto; gap: 0.5rem; align-items: center;
  padding: 0.65rem 0.7rem; border-radius: 6px; color: #d5dde8; font-size: 0.8125rem;
}
.hero-visual__row.is-active { background: rgba(15,118,110,0.25); outline: 1px solid rgba(20,184,166,0.35); }
.hero-visual__row span { font-family: var(--sb-mono); color: #8b99a8; font-size: 0.75rem; }
.badge {
  display: inline-flex; align-items: center; padding: 0.15rem 0.45rem; border-radius: 4px;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.02em;
}
.badge--high { background: rgba(22,163,74,0.18); color: #4ade80; }
.badge--med { background: rgba(217,119,6,0.18); color: #fbbf24; }
.badge--low { background: rgba(220,38,38,0.18); color: #f87171; }
.hero-visual__panel { padding: 1rem; display: grid; gap: 0.75rem; align-content: start; }
.hero-visual__panel h3 { margin: 0; color: #fff; font-size: 0.95rem; }
.hero-visual__panel p { margin: 0; color: #9aa8b8; font-size: 0.8125rem; }
.evidence-line {
  height: 8px; border-radius: 99px; background: rgba(255,255,255,0.08); overflow: hidden;
}
.evidence-line > i {
  display: block; height: 100%; width: 72%;
  background: linear-gradient(90deg, var(--sb-signal-700), var(--sb-signal-500));
  animation: fill 1.6s var(--sb-ease) 0.4s both;
}
@keyframes fill { from { width: 0; } to { width: 72%; } }

@media (max-width: 700px) {
  .hero-visual__body { grid-template-columns: 1fr; }
  .hero-visual__list { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* Sections */
.section { padding: 4.5rem 0; }
.section--tight { padding: 3rem 0; }
.section--ink {
  background: var(--sb-ink-900); color: #fff;
}
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #b7c2d0; }
.section--wash {
  background:
    linear-gradient(180deg, var(--sb-signal-50), var(--sb-neutral-25) 40%, var(--sb-neutral-50));
}
.section__head { max-width: 40rem; margin-bottom: 2.25rem; }
.section__head h2 { margin: 0 0 0.75rem; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.section__head p { margin: 0; font-size: 1.0625rem; }
.eyebrow {
  display: inline-block; margin: 0 0 0.75rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--sb-signal-700);
}
.section--ink .eyebrow { color: var(--sb-signal-500); }

.feature-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  padding: 0; border: 0; background: transparent;
}
.feature h3 { margin: 0 0 0.5rem; font-size: 1.125rem; }
.feature p { margin: 0; }
.feature__icon {
  width: 36px; height: 36px; margin-bottom: 1rem; border-radius: 8px;
  background: var(--sb-signal-100); color: var(--sb-signal-700);
  display: grid; place-items: center; font-family: var(--sb-mono); font-weight: 600; font-size: 0.85rem;
}

.workflow {
  display: grid; gap: 0.75rem;
  counter-reset: step;
}
@media (min-width: 800px) {
  .workflow {
    grid-template-columns: repeat(7, 1fr); gap: 0.5rem; align-items: stretch;
  }
}
.workflow__step {
  position: relative; padding: 1rem 0.85rem; border-top: 2px solid var(--sb-signal-700);
  background: var(--sb-surface);
}
.workflow__step::before {
  counter-increment: step; content: counter(step);
  display: block; font-family: var(--sb-mono); font-size: 0.75rem; color: var(--sb-signal-700);
  margin-bottom: 0.5rem; font-weight: 600;
}
.workflow__step strong { display: block; color: var(--sb-ink-900); font-size: 0.9375rem; margin-bottom: 0.25rem; }
.workflow__step span { color: var(--sb-muted); font-size: 0.8125rem; }

.compare-band {
  display: grid; gap: 2rem;
}
@media (min-width: 800px) { .compare-band { grid-template-columns: 1.1fr 0.9fr; align-items: center; } }
.compare-band__panel {
  padding: 1.5rem; border-left: 3px solid var(--sb-signal-700);
  background: rgba(255,255,255,0.04);
}
.compare-band__panel ul { margin: 0.75rem 0 0; padding-left: 1.1rem; color: #d5dde8; }
.compare-band__panel li { margin: 0.35rem 0; }

.quote-grid { display: grid; gap: 1.5rem; }
@media (min-width: 800px) { .quote-grid { grid-template-columns: repeat(3, 1fr); } }
.quote {
  padding: 0; border: 0; background: transparent;
}
.quote blockquote {
  margin: 0 0 1rem; padding: 0; border: 0;
  color: var(--sb-ink-900); font-size: 1.05rem; font-weight: 500;
}
.quote cite { font-style: normal; color: var(--sb-muted); font-size: 0.875rem; }
.quote__tag {
  display: inline-block; margin-bottom: 0.75rem;
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--sb-neutral-500);
}

.faq { display: grid; gap: 0.5rem; max-width: 48rem; }
.faq details {
  border-bottom: 1px solid var(--sb-border); padding: 1rem 0;
}
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--sb-ink-900); list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--sb-mono); color: var(--sb-signal-700); }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0.75rem 0 0; }

/* Pricing */
.billing-toggle {
  display: inline-flex; padding: 0.25rem; border: 1px solid var(--sb-border);
  border-radius: 999px; background: var(--sb-surface); gap: 0.15rem; margin-bottom: 1.5rem;
}
.billing-toggle button {
  border: 0; background: transparent; padding: 0.5rem 1rem; border-radius: 999px;
  font: inherit; font-weight: 600; font-size: 0.875rem; color: var(--sb-muted); cursor: pointer;
}
.billing-toggle button.is-active { background: var(--sb-ink-900); color: #fff; }
.price-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }
.price-card {
  position: relative;
  padding: 1.5rem 1.25rem; background: var(--sb-surface);
  border: 1px solid var(--sb-border); border-radius: var(--sb-radius);
  display: grid; gap: 0.75rem; align-content: start;
}
.price-card.is-featured {
  border-color: var(--sb-signal-700);
  box-shadow: 0 0 0 1px var(--sb-signal-700), var(--sb-shadow);
}
.price-card__badge {
  position: absolute; top: -0.7rem; left: 1rem;
  background: var(--sb-signal-700); color: #fff;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.3rem 0.55rem; border-radius: 4px;
}
.price-card h3 { margin: 0; font-size: 1.25rem; }
.price-card .amount { font-size: 2rem; font-weight: 700; color: var(--sb-ink-900); letter-spacing: -0.03em; }
.price-card .amount small { font-size: 0.95rem; font-weight: 500; color: var(--sb-muted); }
.price-card .buyer { margin: 0; font-size: 0.875rem; }
.limits-wrap { overflow-x: auto; margin-top: 2.5rem; border: 1px solid var(--sb-border); border-radius: var(--sb-radius); background: var(--sb-surface); }
.limits-table { width: 100%; border-collapse: collapse; min-width: 720px; font-size: 0.875rem; }
.limits-table th, .limits-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--sb-border); }
.limits-table th { background: var(--sb-neutral-25); color: var(--sb-ink-900); font-weight: 600; }
.limits-table td:first-child { font-weight: 500; color: var(--sb-ink-900); }
.limits-table tr:last-child td { border-bottom: 0; }

/* Page chrome */
.page-hero {
  padding: 3.5rem 0 2rem;
  background:
    radial-gradient(800px 300px at 100% 0%, rgba(20,184,166,0.12), transparent 60%),
    linear-gradient(180deg, var(--sb-signal-50), var(--sb-neutral-50));
}
.page-hero h1 { margin: 0 0 0.75rem; font-size: clamp(2rem, 4vw, 2.75rem); }
.page-hero p { margin: 0; max-width: 40rem; font-size: 1.0625rem; }
.prose { max-width: 44rem; }
.prose h2 { margin: 2.5rem 0 0.75rem; font-size: 1.5rem; }
.prose h3 { margin: 1.75rem 0 0.5rem; font-size: 1.15rem; }
.prose ul { color: var(--sb-muted); padding-left: 1.2rem; }
.prose li { margin: 0.4rem 0; }
.split {
  display: grid; gap: 2rem;
}
@media (min-width: 860px) { .split { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; } }

.matrix { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.matrix th, .matrix td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--sb-border); text-align: left; vertical-align: top; }
.matrix th { background: var(--sb-neutral-25); }
.card-list { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .card-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-list.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.resource-card {
  display: grid; gap: 0.5rem; padding: 1.25rem 0; border-top: 1px solid var(--sb-border);
  text-decoration: none; color: inherit;
}
.resource-card:hover h3 { color: var(--sb-signal-700); }
.resource-card h3 { margin: 0; font-size: 1.125rem; }
.resource-card p { margin: 0; }

.form { display: grid; gap: 1rem; max-width: 36rem; }
.form label { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.875rem; color: var(--sb-ink-900); }
.form input, .form select, .form textarea {
  font: inherit; padding: 0.75rem 0.85rem; border: 1px solid var(--sb-border);
  border-radius: var(--sb-radius-sm); background: var(--sb-surface); color: var(--sb-text);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--sb-signal-600); outline-offset: 1px;
}
.form-note { font-size: 0.875rem; color: var(--sb-muted); }

.cta-band {
  padding: 3.5rem 0;
  background:
    linear-gradient(120deg, var(--sb-ink-900), #12332e 70%, var(--sb-signal-700));
  color: #fff;
}
.cta-band h2 { margin: 0 0 0.75rem; color: #fff; font-size: clamp(1.75rem, 3vw, 2.25rem); }
.cta-band p { margin: 0 0 1.5rem; color: #c5d0dc; max-width: 36rem; }

/* Footer */
.site-footer {
  background: var(--sb-ink-950); color: #c5d0dc; padding: 3.5rem 0 2rem;
}
.site-footer__grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}
.site-footer .brand__name { color: #fff; }
.site-footer__brand p { color: #9aa8b8; max-width: 28ch; }
.site-footer__cta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.footer-heading {
  margin: 0 0 0.85rem; font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; font-weight: 600;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-list a { color: #9aa8b8; text-decoration: none; }
.footer-list a:hover { color: #fff; }
.site-footer__bottom {
  display: grid; gap: 0.5rem; padding-top: 1.5rem; font-size: 0.8125rem; color: #6b7a8a;
}
.site-footer__note { margin: 0; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.6s var(--sb-ease), transform 0.6s var(--sb-ease); }
.reveal.is-visible { 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;
  }
  .reveal { opacity: 1; transform: none; }
}
