/* TocynBook marketing — shared styles
   Base template for all Tocyn product marketing sites.
   Swap --accent and copy to spin up TocynFood/TocynVet/TocynTrade/etc. */

:root {
  --ink-900: #0a0a0a;
  --ink-800: #141414;
  --ink-700: #1f1f1f;
  --ink-600: #2a2a2a;
  --ink-200: #c8c5be;
  --ink-100: #e6e2d9;
  --cream: #faf9f6;
  --cream-2: #f3f0e8;
  --accent: #00ab39;          /* Tocyn green — swap per product */
  --accent-dim: #008a2e;
  --clay: #c47b4a;            /* Secondary warm accent */
  --border-dark: rgba(255,255,255,0.08);
  --border-light: rgba(10,10,10,0.10);
  --grain-opacity: 0.035;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;
  --max-w: 1180px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ─────────────────────────  TYPOGRAPHY  ───────────────────────── */

.display, h1, h2, h3 {
  font-family: 'Bebas Neue', 'Arial Narrow', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.95;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.eyebrow.dark { color: var(--ink-900); }
section.dark .eyebrow { color: var(--accent); }
section.dark .eyebrow.muted { color: var(--ink-200); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(10,10,10,0.72);
  max-width: 38em;
  line-height: 1.5;
}

section.dark .lead { color: rgba(230,226,217,0.78); }

/* ─────────────────────────  LAYOUT  ───────────────────────── */

section {
  padding: clamp(4rem, 9vw, 7.5rem) clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

section.dark {
  background: var(--ink-900);
  color: var(--cream);
}

section.dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: var(--grain-opacity);
  pointer-events: none;
  mix-blend-mode: screen;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.container.narrow { max-width: 880px; }

/* ─────────────────────────  NAV  ───────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-dark);
  color: var(--cream);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem clamp(1.25rem, 4vw, 2.5rem);
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  color: var(--cream);
}

.brand-tocyn {
  color: #00AB39;
}

.brand-product {
  color: #E63946;
}

/* On dark sections, the green/red stay the same — they read against both
   ink-900 and cream backgrounds. Footer brand inherits the same. */

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.93rem;
  color: var(--ink-100);
  transition: color 120ms ease;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.05rem;
  background: var(--accent);
  color: var(--ink-900) !important;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.92rem;
  transition: transform 120ms ease, background 120ms ease;
}
.nav-cta:hover { background: #00c042; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  background: none; border: 0;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-block; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--ink-900);
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border-dark);
    gap: 1rem;
    align-items: flex-start;
  }
}

/* ─────────────────────────  HERO  ───────────────────────── */

.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  background: var(--ink-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.hero .lead {
  color: rgba(230,226,217,0.82);
  margin-bottom: 2.5rem;
  max-width: 32em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.stat-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}

.stat-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 2px;
  background: var(--accent);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--ink-200);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.trust-line {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-200);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr; max-width: 360px; }
}

/* ─────────────────────────  BUTTONS  ───────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  border: 0;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, box-shadow 120ms ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--ink-900);
  box-shadow: 0 8px 24px -10px rgba(0,171,57,0.6);
}
.btn-primary:hover { background: #00c042; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); }

.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid rgba(10,10,10,0.18);
}
.btn-outline:hover { background: rgba(10,10,10,0.04); }

.btn-large { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* ─────────────────────────  ABSTRACT ART  ─────────────────────────
   Geometric SVG decoration. Reusable across sections. */

.art {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.art--circle {
  width: 540px; height: 540px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
}

.art--circle-2 {
  width: 380px; height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
}

.art--blob {
  width: 420px; height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(0,171,57,0.32), transparent 65%);
  filter: blur(40px);
}

.art--grid {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ─────────────────────────  HOW IT WORKS  ───────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.step {
  position: relative;
  padding-top: 2rem;
}

.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  color: var(--ink-900);
}

.step p { color: rgba(10,10,10,0.7); font-size: 0.98rem; line-height: 1.6; }

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--accent);
}

@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ─────────────────────────  FEATURE BLOCKS  ───────────────────────── */

.feature {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  margin: 4rem auto;
  max-width: var(--max-w);
}

.feature.reverse {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}
.feature.reverse .feature-text { order: 2; }

.feature h3 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: inherit;
}

.feature p {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(10,10,10,0.7);
  max-width: 36em;
}

section.dark .feature p { color: rgba(230,226,217,0.75); }

.tier-pill {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-top: 1rem;
  background: rgba(0,171,57,0.14);
  color: var(--accent);
  border: 1px solid rgba(0,171,57,0.25);
}

.tier-pill.elite {
  background: rgba(196,123,74,0.14);
  color: var(--clay);
  border-color: rgba(196,123,74,0.25);
}

.feature-screenshot {
  position: relative;
  background: linear-gradient(140deg, var(--cream-2), var(--cream));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(10,10,10,0.18);
}

section.dark .feature-screenshot {
  background: linear-gradient(140deg, var(--ink-700), var(--ink-800));
  border-color: var(--border-dark);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}

.feature-screenshot img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.screenshot-placeholder {
  text-align: center;
  padding: 2rem;
  color: rgba(10,10,10,0.42);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
section.dark .screenshot-placeholder { color: rgba(230,226,217,0.45); }

.screenshot-placeholder strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.06em;
  color: rgba(10,10,10,0.55);
}
section.dark .screenshot-placeholder strong { color: rgba(230,226,217,0.6); }

@media (max-width: 880px) {
  .feature, .feature.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem auto;
  }
  .feature.reverse .feature-text { order: 0; }
}

/* ─────────────────────────  COMPARISON TABLE  ───────────────────────── */

.compare-wrap {
  margin-top: 3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  overflow: hidden;
}

.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.compare th, .compare td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-dark);
  color: var(--ink-100);
}

.compare th {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
  color: var(--ink-200);
}

.compare th:first-child, .compare td:first-child {
  font-weight: 500;
  color: var(--cream);
}

.compare .us {
  background: rgba(0,171,57,0.08);
  color: var(--cream);
  font-weight: 500;
}

.compare th.us { color: var(--accent); }

.tick { color: var(--accent); font-weight: 600; }
.cross { color: rgba(255,255,255,0.4); }

@media (max-width: 760px) {
  .compare-wrap { overflow-x: auto; }
  .compare { min-width: 640px; }
}

/* ─────────────────────────  PRICING  ───────────────────────── */

.tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.tier {
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.tier:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -28px rgba(10,10,10,0.18);
}

.tier.featured {
  border-color: var(--accent);
  background: var(--ink-900);
  color: var(--cream);
  box-shadow: 0 24px 60px -28px rgba(0,171,57,0.45);
}

.tier.featured h3, .tier.featured .tier-price { color: var(--cream); }
.tier.featured .tier-price-unit { color: var(--ink-200); }
.tier.featured .tier-features li { color: rgba(230,226,217,0.85); }
.tier.featured .tier-features li::before { color: var(--accent); }

.tier-flag {
  position: absolute;
  top: -10px; right: 1.4rem;
  background: var(--accent);
  color: var(--ink-900);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.tier h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  color: var(--ink-900);
}

.tier-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 0.2rem;
  color: var(--ink-900);
}

.tier-price-unit {
  font-size: 0.85rem;
  color: rgba(10,10,10,0.5);
  margin-bottom: 1.2rem;
}

.tier-blurb {
  font-size: 0.88rem;
  color: rgba(10,10,10,0.62);
  margin-bottom: 1.4rem;
  min-height: 2.6em;
}

.tier.featured .tier-blurb { color: rgba(230,226,217,0.7); }

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem 0;
  flex: 1;
}

.tier-features li {
  font-size: 0.92rem;
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  color: rgba(10,10,10,0.78);
  line-height: 1.4;
}

.tier-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.tier .btn {
  width: 100%;
  justify-content: center;
}

.tier.featured .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: var(--cream);
}
.tier.featured .btn-outline:hover { background: rgba(255,255,255,0.08); }

@media (max-width: 1000px) {
  .tiers { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .tiers { grid-template-columns: 1fr; }
}

/* ─────────────────────────  EARLY ADOPTER CTA  ───────────────────────── */

.cta-band {
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
  background: var(--ink-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  margin-bottom: 1rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-band p {
  color: rgba(230,226,217,0.75);
  margin-bottom: 2rem;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────────────────  FAQ  ───────────────────────── */

.faq {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq details {
  border-bottom: 1px solid var(--border-light);
  padding: 1.4rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq summary::after {
  content: '+';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform 180ms ease;
}

.faq details[open] summary::after { content: '−'; }

.faq details p {
  margin-top: 0.9rem;
  color: rgba(10,10,10,0.7);
  font-size: 0.97rem;
  line-height: 1.6;
  max-width: 60ch;
}

/* ─────────────────────────  CONTACT FORM  ───────────────────────── */

.form {
  max-width: 540px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
  margin-bottom: 0.35rem;
  display: block;
}

.form input, .form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.form input:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,171,57,0.15);
}

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

.form .btn { align-self: flex-start; }

/* ─────────────────────────  FOOTER  ───────────────────────── */

footer {
  background: var(--ink-900);
  color: var(--ink-200);
  padding: 4rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  border-top: 1px solid var(--border-dark);
}

.foot-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.foot-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.foot-col ul { list-style: none; padding: 0; }

.foot-col li { margin-bottom: 0.55rem; }

.foot-col a {
  color: var(--ink-200);
  font-size: 0.94rem;
  transition: color 120ms ease;
}
.foot-col a:hover { color: var(--accent); }

.foot-blurb {
  font-size: 0.92rem;
  color: var(--ink-200);
  line-height: 1.55;
  max-width: 32ch;
  margin-bottom: 1.2rem;
}

.foot-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
}

.foot-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.84rem;
  color: rgba(230,226,217,0.55);
}

@media (max-width: 800px) {
  .foot-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .foot-inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────  UTIL  ───────────────────────── */

.section-head {
  max-width: 60ch;
  margin: 0 auto 0.5rem auto;
  text-align: center;
}

.section-head .eyebrow { display: inline-block; }

.section-head h2 { margin-bottom: 1rem; }

.section-head p {
  color: rgba(10,10,10,0.65);
  margin: 0 auto 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

section.dark .section-head p { color: rgba(230,226,217,0.7); }

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ─────────────────────────  REVEAL ANIMATIONS  ─────────────────────────
   Gentle fade-up applied via IntersectionObserver in site.js.
   Initial state hides; .in class triggers the entrance.
   Stagger via nth-child for grouped elements. */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* Stagger the three stat boxes in the hero */
.hero-stats.reveal .stat-box {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}
.hero-stats.reveal.in .stat-box:nth-child(1) { opacity: 1; transform: none; transition-delay: 100ms; }
.hero-stats.reveal.in .stat-box:nth-child(2) { opacity: 1; transform: none; transition-delay: 220ms; }
.hero-stats.reveal.in .stat-box:nth-child(3) { opacity: 1; transform: none; transition-delay: 340ms; }

/* Stagger the three steps */
.steps .step.reveal { transition-delay: 0ms; }
.steps .step.reveal.in:nth-child(1) { transition-delay: 0ms; }
.steps .step.reveal.in:nth-child(2) { transition-delay: 120ms; }
.steps .step.reveal.in:nth-child(3) { transition-delay: 240ms; }

/* Print + reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0ms !important; animation-duration: 0ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-stats.reveal .stat-box { opacity: 1 !important; transform: none !important; }
}
