/* ==========================================================================
   MLM HUB — design system
   Brand gradient sampled from the logo: #FF1F4F → #FF0098 → #A500BF
   ========================================================================== */

:root {
  /* Brand */
  --b1: #FF1F4F;
  --b2: #FF0098;
  --b3: #A500BF;
  --grad: linear-gradient(100deg, var(--b1) 0%, var(--b2) 52%, var(--b3) 100%);
  --grad-soft: linear-gradient(100deg, rgba(255,31,79,.12), rgba(165,0,191,.12));

  /* Ink & surfaces */
  --ink: #0B0B12;
  --ink-2: #2C2C3A;
  --muted: #61617A;
  --line: #E9E9F2;
  --bg: #FFFFFF;
  --surface: #F7F7FB;
  --dark: #05050B;
  --dark-2: #0E0E16;
  --dark-line: rgba(255,255,255,.10);
  --dark-muted: #9C9CB4;

  /* Type */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Poppins', var(--sans);

  /* Space & shape */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow: 0 1px 2px rgba(11,11,18,.04), 0 12px 32px -12px rgba(11,11,18,.10);
  --shadow-lg:
    0 2px 3px   rgba(20,14,34,.030),
    0 5px 9px   rgba(20,14,34,.030),
    0 11px 20px rgba(20,14,34,.030),
    0 22px 38px rgba(64,10,80,.048),
    0 40px 66px rgba(64,10,80,.048);
  --wrap: 1200px;
  --nav-h: 78px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; display: block; }
/* Inline icons default to text size unless a component sizes them */
.icon-inline, p svg, li svg, a svg, button svg { width: 1.1em; height: 1.1em; flex: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--b2); color: #fff; }

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.14;
  letter-spacing: -.022em;
  font-weight: 700;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); font-weight: 800; letter-spacing: -.034em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); font-weight: 800; letter-spacing: -.028em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--dark); color: var(--dark-muted); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ---------- Type helpers ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--display); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--b2); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }
.section--dark .eyebrow { color: #FF6FB4; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); line-height: 1.7; }
.section--dark .lead { color: var(--dark-muted); }
.head { max-width: 760px; margin-bottom: 3.25rem; }
.head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--display); font-weight: 600; font-size: .96rem;
  padding: .95rem 1.7rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--grad { background: var(--grad); color: #fff; box-shadow: 0 14px 30px -12px rgba(255,0,152,.6); }
.btn--grad:hover { box-shadow: 0 22px 44px -14px rgba(255,0,152,.72); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--b2); color: var(--b2); }
.btn--light { background: #fff; color: var(--ink); }
.btn--outline-light { border-color: rgba(255,255,255,.28); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.02rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--display); font-weight: 600; font-size: .93rem; color: var(--b2);
}
.link-arrow svg { width: 18px; height: 18px; flex: none; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Brand wordmark ---------- */
.wordmark {
  font-family: var(--display); font-weight: 800; letter-spacing: -.045em;
  font-size: 1.6rem; line-height: 1; display: inline-flex; gap: 0; align-items: baseline;
}
.wordmark .mlm { color: var(--ink); }
.wordmark .hub { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.wordmark--light .mlm { color: #fff; }
.wordmark-sub {
  display: block; font-family: var(--sans); font-weight: 400;
  font-size: .62rem; letter-spacing: .04em; color: var(--muted); margin-top: .3rem;
}
.wordmark--light + .wordmark-sub, .wordmark--light .wordmark-sub { color: var(--dark-muted); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 90; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -22px rgba(11,11,18,.5);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  font-family: var(--display); font-weight: 500; font-size: .94rem; color: #C8C8DC;
  padding: .55rem .85rem; border-radius: 999px; transition: color .18s, background .18s;
}
.nav__link:hover, .nav__link.is-active { color: #fff; background: rgba(255,255,255,.10); }

/* Over the dark hero the wordmark and toggle must be light; once the nav
   sticks to a white background they flip back to ink. */
.nav .wordmark .mlm { color: #fff; }
.nav__toggle { color: #fff; }
.nav.is-stuck .wordmark .mlm { color: var(--ink); }
.nav.is-stuck .nav__toggle { color: var(--ink); }
.nav.is-stuck .nav__link { color: var(--ink-2); }
.nav.is-stuck .nav__link:hover, .nav.is-stuck .nav__link.is-active { color: var(--b2); background: rgba(255,0,152,.07); }

/* The homepage hero is light, so the nav sitting over it needs ink type.
   Inner pages keep the light-on-dark default for their dark page headers. */
.nav--on-light .wordmark .mlm { color: var(--ink); }
.nav--on-light .nav__toggle { color: var(--ink); }
.nav--on-light .nav__link { color: var(--ink-2); }
.nav--on-light .nav__link:hover,
.nav--on-light .nav__link.is-active { color: var(--b2); background: rgba(255,0,152,.07); }
.nav__actions { display: flex; align-items: center; gap: .6rem; }
.nav__toggle { display: none; background: none; border: 0; padding: .5rem; }
.nav__toggle svg { width: 26px; height: 26px; }

/* Dropdown */
.nav__item { position: relative; }
.nav__panel {
  position: absolute; top: calc(100% + 12px); left: 50%; translate: -50% 0;
  min-width: 460px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: .75rem; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s;
  display: grid; grid-template-columns: 1fr 1fr; gap: .25rem;
}
.nav__item:hover .nav__panel, .nav__item:focus-within .nav__panel { opacity: 1; visibility: visible; transform: none; }
.nav__panel a { display: block; padding: .7rem .85rem; border-radius: var(--r-sm); transition: background .16s; }
.nav__panel a:hover { background: var(--surface); }
.nav__panel strong { display: block; font-family: var(--display); font-size: .92rem; color: var(--ink); font-weight: 600; }
.nav__panel span { font-size: .8rem; color: var(--muted); line-height: 1.45; display: block; margin-top: .1rem; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 100; background: #fff; padding: 1.25rem;
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto; display: flex; flex-direction: column;
}
.drawer.is-open { transform: none; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.drawer__close { background: none; border: 0; color: var(--ink); padding: .5rem; }
.drawer nav { display: flex; flex-direction: column; gap: .1rem; }
.drawer nav a {
  font-family: var(--display); font-weight: 500; font-size: 1.06rem; color: var(--ink);
  padding: .85rem .5rem; border-bottom: 1px solid var(--line);
}
.drawer .btn { margin-top: 1.5rem; }

/* ---------- Hero (light) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(255,0,152,.10), transparent 60%),
    linear-gradient(to bottom, #FFFFFF 0%, var(--surface) 62%, #FFFFFF 100%);
  color: var(--muted);
  min-height: clamp(600px, 90vh, 880px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + clamp(3rem, 7vw, 5.5rem)) 0 0;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}



/* Two soft brand washes, kept low so the type stays the loudest thing */
.hero__glow {
  position: absolute; z-index: 0; pointer-events: none;
  inset: 0;
}
.hero__glow::before, .hero__glow::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(80px);
}
.hero__glow::before {
  width: 46vmax; height: 46vmax;
  background: radial-gradient(circle, rgba(255,31,79,.16), transparent 68%);
  top: -18vmax; left: -10vmax;
}
.hero__glow::after {
  width: 42vmax; height: 42vmax;
  background: radial-gradient(circle, rgba(165,0,191,.14), transparent 68%);
  bottom: -16vmax; right: -8vmax;
}

.hero__inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 940px;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}
.hero h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  letter-spacing: -.038em;
  line-height: 1.06;
  margin-bottom: 1.4rem;
  text-wrap: balance;
}
.hero h1 .grad-text { white-space: nowrap; }
.hero .lead {
  color: var(--muted);
  max-width: 40rem;
  margin-inline: auto;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}
.hero__cta { justify-content: center; margin-top: 2.4rem; }

.pill {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .42rem 1rem .42rem .42rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(11,11,18,.04);
  font-size: .82rem; color: var(--ink-2); margin-bottom: 1.9rem;
  letter-spacing: .01em;
}
.pill b {
  background: var(--grad); color: #fff;
  padding: .2rem .62rem; border-radius: 999px;
  font-size: .68rem; font-weight: 600; letter-spacing: .09em;
}

/* Stat band on the hero's lower edge */
.hero__stats {
  position: relative; z-index: 1;
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.hero__stats ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero__stats li {
  padding: 1.6rem 1rem; text-align: center;
  border-left: 1px solid var(--line);
}
.hero__stats li:first-child { border-left: 0; }
.hero__stats b {
  display: block;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem); letter-spacing: -.028em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.15;
}
.hero__stats span { font-size: .81rem; color: var(--muted); letter-spacing: .02em; }

/* Dark hero variant — used by the 404 page, which has no light surface
   behind it and needs the wordmark to read white. */
.hero--dark {
  background: var(--dark);
  color: var(--dark-muted);
  border-bottom: 0;
}
.hero--dark h1 { color: #fff; }
.hero--dark .lead { color: #B9B9CE; }

.hero--dark .hero__glow::before { background: radial-gradient(circle, rgba(255,0,152,.26), transparent 68%); }
.hero--dark .hero__glow::after  { background: radial-gradient(circle, rgba(165,0,191,.22), transparent 68%); }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px,1fr)); gap: 1px; background: var(--line); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.stat { background: #fff; padding: 2rem 1.25rem; text-align: center; }
.stat b { display: block; font-family: var(--display); font-size: clamp(1.9rem,3.4vw,2.6rem); font-weight: 800; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: .87rem; color: var(--muted); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2rem;
  display: flex; flex-direction: column; height: 100%;
  /* Five layers with growing blur and low alpha approximate real light
     falloff; a single large blur reads as a hard-edged halo. The tint is kept
     almost neutral and only creeps into the outer layers — a saturated purple
     at low alpha bands visibly against white. The resting state repeats the
     same five layers at zero alpha, because box-shadow cannot interpolate
     from `none` and would otherwise pop in. */
  box-shadow:
    0 2px 3px   rgba(20,14,34,.024),
    0 5px 9px   rgba(20,14,34,.020),
    0 11px 20px rgba(20,14,34,0),
    0 22px 38px rgba(64,10,80,0),
    0 40px 66px rgba(64,10,80,0);
  transition: transform .42s cubic-bezier(.22,.61,.36,1),
              box-shadow .42s cubic-bezier(.22,.61,.36,1),
              border-color .42s cubic-bezier(.22,.61,.36,1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 3px   rgba(20,14,34,.034),
    0 5px 9px   rgba(20,14,34,.034),
    0 11px 20px rgba(20,14,34,.034),
    0 22px 38px rgba(64,10,80,.044),
    0 40px 66px rgba(64,10,80,.044);
  border-color: rgba(255,0,152,.13);
}

.card--dark {
  box-shadow:
    0 2px 3px   rgba(0,0,0,.10),
    0 5px 9px   rgba(0,0,0,.09),
    0 11px 20px rgba(0,0,0,0),
    0 22px 38px rgba(255,0,152,0),
    0 40px 66px rgba(255,0,152,0);
}
.card--dark:hover {
  box-shadow:
    0 2px 3px   rgba(0,0,0,.16),
    0 5px 9px   rgba(0,0,0,.16),
    0 11px 20px rgba(0,0,0,.16),
    0 22px 38px rgba(255,0,152,.06),
    0 40px 66px rgba(255,0,152,.07);
  border-color: rgba(255,0,152,.20);
}

.card h3 { margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card .link-arrow { margin-top: auto; padding-top: 1.2rem; }
.card--dark { background: var(--dark-2); border-color: var(--dark-line); }
.card--dark p { color: var(--dark-muted); }

.icon-box {
  width: 54px; height: 54px; border-radius: var(--r); display: grid; place-items: center;
  background: var(--grad-soft); color: var(--b2); margin-bottom: 1.35rem; flex: none;
}
.icon-box svg { width: 26px; height: 26px; }
.card--dark .icon-box { background: rgba(255,0,152,.14); color: #FF6FB4; }

/* Numbered process */
.step { position: relative; padding: 2rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff; height: 100%; }
.step__n { font-family: var(--display); font-size: 2.6rem; font-weight: 800; letter-spacing: -.04em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; margin-bottom: .75rem; display: block; }
.step h3 { font-size: 1.15rem; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }

/* Feature list */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.ticks li { display: flex; gap: .7rem; align-items: flex-start; font-size: .96rem; }
.ticks svg { flex: none; width: 21px; height: 21px; margin-top: .18rem; color: var(--b2); }
.section--dark .ticks li { color: var(--dark-muted); }
.section--dark .ticks svg { color: #FF6FB4; }

/* Plan cards */
.plan-card { position: relative; overflow: hidden; }
.plan-card::after { content: ''; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.plan-card:hover::after { transform: scaleX(1); }

/* Pricing */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 2.25rem; display: flex; flex-direction: column; height: 100%; position: relative; }
.price-card--featured { border-color: transparent; box-shadow: var(--shadow-lg); }
.price-card--featured::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 2px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.price-tag { display: inline-block; position: absolute; top: -14px; left: 2.25rem; background: var(--grad); color: #fff; font-family: var(--display); font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .9rem; border-radius: 999px; }
.price { font-family: var(--display); font-size: 2.5rem; font-weight: 800; letter-spacing: -.035em; color: var(--ink); line-height: 1.1; margin: .5rem 0 .15rem; }
.price small { display: block; font-size: .95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-top: .3rem; }
.price-card .btn { margin-top: auto; }
.price-card .ticks { margin: 1.5rem 0; }

/* Accordion */
.acc { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: #fff; }
.acc__item + .acc__item { border-top: 1px solid var(--line); }
.acc__q {
  width: 100%; text-align: left; background: none; border: 0; padding: 1.4rem 1.6rem;
  font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
}
.acc__q svg { flex: none; width: 20px; height: 20px; color: var(--b2); transition: transform .28s ease; }
.acc__item.is-open .acc__q svg { transform: rotate(45deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.4,0,.2,1); }
.acc__a > div { padding: 0 1.6rem 1.5rem; color: var(--muted); font-size: .97rem; }

/* Logo / trust marquee */
.marquee-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee { display: flex; width: max-content; animation: marq 34s linear infinite; gap: 3.5rem; }
.marquee:hover { animation-play-state: paused; }
.marquee span { font-family: var(--display); font-weight: 600; font-size: 1.05rem; color: var(--muted); white-space: nowrap; opacity: .75; }
@keyframes marq { to { transform: translateX(-50%); } }

/* CTA band */
.cta-band { position: relative; background: var(--dark); border-radius: var(--r-xl); padding: clamp(2.5rem,5vw,4.25rem); overflow: hidden; text-align: center; }
.cta-band::before { content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%; background: rgba(255,0,152,.30); filter: blur(90px); top: -240px; left: 50%; translate: -50% 0; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #B9B9CE; max-width: 46rem; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }



/* ---------- Blog ---------- */
.post-card__cover { display: block; margin: -2rem -2rem 1.4rem; border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden; }
.post-card__cover img { width: 100%; height: 190px; object-fit: cover; display: block; }
.post-card__meta, .post-meta {
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  font-family: var(--display); font-size: .8rem; color: var(--muted);
  margin: 0 0 .7rem; letter-spacing: .01em;
}
.post-card h3 { font-size: 1.14rem; margin-bottom: .5rem; }
.post-card h3 a { color: var(--ink); transition: color .2s ease; }
.post-card:hover h3 a { color: var(--b2); }
.post-meta { color: #8E8EA8; font-size: .88rem; margin-top: 1rem; }
.post-meta time { color: #C6C6DA; }

.pager { display: flex; justify-content: center; gap: .4rem; margin-top: 3rem; }
.pager a {
  min-width: 42px; padding: .55rem .8rem; text-align: center;
  font-family: var(--display); font-weight: 600; font-size: .92rem;
  border: 1px solid var(--line); border-radius: var(--r-sm); color: var(--ink-2);
  transition: color .2s, border-color .2s;
}
.pager a:hover { color: var(--b2); border-color: rgba(255,0,152,.35); }
.pager a.is-on { background: var(--grad); border-color: transparent; color: #fff; }

/* Article body */
.article { max-width: 720px; margin-inline: auto; font-size: 1.06rem; line-height: 1.75; color: var(--ink-2); }
.article__cover { width: 100%; border-radius: var(--r-lg); margin-bottom: 2.5rem; }
.article > h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin: 2.75rem 0 .9rem; scroll-margin-top: calc(var(--nav-h) + 1rem); }
.article > h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); margin: 2.1rem 0 .7rem; scroll-margin-top: calc(var(--nav-h) + 1rem); }
.article > h4 { font-size: 1.08rem; margin: 1.7rem 0 .5rem; }
.article > p { margin: 0 0 1.35rem; }
.article > ul, .article > ol { margin: 0 0 1.5rem; padding-left: 1.35rem; }
.article li { margin-bottom: .6rem; }
.article a { color: var(--b2); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.article a:hover { text-decoration-thickness: 2px; }
.article strong { color: var(--ink); font-weight: 600; }
.article blockquote {
  margin: 2rem 0; padding: .3rem 0 .3rem 1.4rem;
  border-left: 3px solid var(--b2);
  font-size: 1.1rem; color: var(--ink); font-style: italic;
}
.article blockquote p { margin: 0; }
.article hr { border: 0; border-top: 1px solid var(--line); margin: 2.75rem 0; }
.article img { width: 100%; border-radius: var(--r); margin: 1.75rem 0; }
.article code {
  font-family: ui-monospace, Menlo, monospace; font-size: .88em;
  background: var(--surface-2, var(--surface)); border: 1px solid var(--line);
  padding: .12em .4em; border-radius: 5px; color: var(--ink);
}
.article pre {
  background: var(--dark); color: #E6E6F2; border-radius: var(--r);
  padding: 1.2rem 1.35rem; overflow-x: auto; margin: 1.75rem 0;
  font-size: .88rem; line-height: 1.6;
}
.article pre code { background: none; border: 0; padding: 0; color: inherit; font-size: inherit; }

/* ---------- Location pages ---------- */
.city-links { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; }
.city-links a {
  font-family: var(--display); font-size: .9rem; font-weight: 500;
  color: var(--ink-2); background: #fff;
  border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1rem;
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.city-links a:hover { color: var(--b2); border-color: rgba(255,0,152,.35); transform: translateY(-2px); }
.city-links--quiet a { background: transparent; font-size: .84rem; color: var(--muted); }
.city-links--quiet a:hover { color: var(--b2); }

.state-group { padding: 1.6rem 0; border-top: 1px solid var(--line); }
.state-group:first-of-type { border-top: 0; padding-top: 0; }
.state-group h2 {
  font-size: 1.05rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 1rem;
}

/* ---------- Homepage plan visual ---------- */
.plan-visual { margin: 0; }
.plan-visual img {
  display: block;
  width: 100%;
  height: auto;
  /* A soft ground under a cut-out render, so it does not float unanchored */
  filter: drop-shadow(0 30px 40px rgba(64,10,80,.16));
}

@media (max-width: 900px) {
  .plan-visual { max-width: 460px; margin-inline: auto; }
}

/* ---------- Plan builder ---------- */
.builder-promo {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(100deg, rgba(255,31,79,.05), rgba(165,0,191,.05));
  padding: 1.5rem 1.75rem;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.builder-promo:hover { border-color: rgba(255,0,152,.3); transform: translateY(-3px); }
.builder-promo__icon {
  width: 48px; height: 48px; flex: none; border-radius: var(--r-sm);
  display: grid; place-items: center; background: var(--grad); color: #fff;
}
.builder-promo__icon svg { width: 24px; height: 24px; }
.builder-promo__body { flex: 1 1 320px; }
.builder-promo__body b { display: block; font-family: var(--display); font-size: 1.05rem; color: var(--ink); font-weight: 600; }
.builder-promo__body small { display: block; font-size: .92rem; color: var(--muted); margin-top: .2rem; }
.builder-promo__go {
  display: inline-flex; align-items: center; gap: .45rem; flex: none;
  font-family: var(--display); font-weight: 600; font-size: .94rem; color: var(--b2);
}
.builder-promo__go svg { width: 18px; height: 18px; transition: transform .2s ease; }
.builder-promo:hover .builder-promo__go svg { transform: translateX(4px); }

.builder { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.builder__main { display: flex; flex-direction: column; gap: 1.25rem; min-width: 0; }

.step {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: #fff; padding: 1.75rem; margin: 0;
}
.step legend {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--display); font-weight: 700; font-size: 1.12rem;
  color: var(--ink); letter-spacing: -.02em; padding: 0;
}
.step__badge {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--grad); color: #fff;
  display: grid; place-items: center;
  font-size: .78rem; font-weight: 700;
}
.step__note { font-size: .92rem; color: var(--muted); margin: .85rem 0 0; }

.choices { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .7rem; margin-top: 1.25rem; }
.choices--2 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.choices--4 { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice__body {
  display: flex; flex-direction: column; gap: .2rem; height: 100%;
  border: 1px solid var(--line); border-radius: var(--r); padding: .95rem 1rem;
  background: var(--surface);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.choice__body b { font-family: var(--display); font-size: .96rem; color: var(--ink); font-weight: 600; }
.choice__body small { font-size: .81rem; color: var(--muted); line-height: 1.45; }
.choice__body em {
  font-style: normal; margin-top: .45rem;
  font-family: var(--mono, var(--display)); font-size: .88rem; font-weight: 600;
  color: var(--b2); font-variant-numeric: tabular-nums;
}
.choice:hover .choice__body { border-color: rgba(255,0,152,.3); background: #fff; }
.choice input:checked + .choice__body {
  border-color: var(--b2); background: #fff;
  box-shadow: 0 0 0 3px rgba(255,0,152,.10);
}
.choice input:focus-visible + .choice__body { outline: 2px solid var(--b2); outline-offset: 2px; }

/* Running total */
.builder__side { position: sticky; top: calc(var(--nav-h) + 1.25rem); }
.quote {
  border: 1px solid transparent; border-radius: var(--r-lg); padding: 1.6rem;
  background: var(--dark); color: var(--dark-muted); position: relative; overflow: hidden;
}
.quote::before {
  content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: rgba(255,0,152,.22); filter: blur(70px); top: -180px; right: -100px; pointer-events: none;
}
.quote > * { position: relative; }
.quote__eyebrow {
  display: block; font-family: var(--display); font-size: .7rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: #FF6FB4; margin-bottom: 1.15rem;
}
.quote__rows { display: grid; gap: .55rem; }
.quote__rows--sum { margin-top: .85rem; padding-top: .85rem; border-top: 1px solid var(--dark-line); }
.quote__row { display: flex; justify-content: space-between; gap: 1rem; font-size: .92rem; align-items: baseline; }
.quote__row b { font-weight: 600; color: #fff; font-variant-numeric: tabular-nums; }
.quote__row--muted, .quote__row--muted b { color: #8E8EA8; font-weight: 500; }
.quote__row--save, .quote__row--save b { color: #4ADE9B; }
.quote__row i { font-style: normal; color: #8E8EA8; }
.quote__total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  margin: 1.25rem 0 1.35rem; padding-top: 1.1rem; border-top: 1px solid var(--dark-line);
}
.quote__total span { font-size: .92rem; color: #C6C6DA; }
.quote__total strong {
  font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800;
  letter-spacing: -.03em; color: #fff; font-variant-numeric: tabular-nums;
}
.quote .btn { width: 100%; }
.quote__fine { font-size: .78rem; color: #8E8EA8; margin: 1rem 0 0; line-height: 1.5; }
.quote__fine a { color: #FF6FB4; }

/* Unlocked code */
.code-chip {
  display: inline-flex; flex-direction: column; align-items: center; gap: .3rem;
  margin-top: 2rem; padding: 1.1rem 2rem;
  border: 1px dashed rgba(255,255,255,.28); border-radius: var(--r);
  background: rgba(255,255,255,.04);
}
.code-chip span { font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: #9A9AB4; }
.code-chip strong {
  font-family: var(--display); font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 800;
  letter-spacing: .04em; color: #fff;
}
.code-chip small { font-size: .78rem; color: #8E8EA8; }

/* Itemised table on the result page */
.quote-table { width: 100%; border-collapse: collapse; margin-top: 1.1rem; font-size: .94rem; }
.quote-table th { text-align: left; font-weight: 500; color: var(--ink-2); padding: .7rem 0; border-bottom: 1px solid var(--line); }
.quote-table th small { display: block; color: var(--muted); font-size: .82rem; font-weight: 400; margin-top: .1rem; }
.quote-table td { text-align: right; padding: .7rem 0; border-bottom: 1px solid var(--line); color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.quote-table tfoot th, .quote-table tfoot td { font-weight: 600; }
.quote-table tfoot .is-save th, .quote-table tfoot .is-save td { color: #0AA06E; }
.quote-table tfoot .is-total th, .quote-table tfoot .is-total td {
  font-family: var(--display); font-size: 1.2rem; font-weight: 800; color: var(--ink);
  border-bottom: 0; padding-top: 1rem;
}

@media (max-width: 980px) {
  .builder { grid-template-columns: 1fr; }
  .builder__side { position: static; }
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.1rem; }
.field label { display: block; font-family: var(--display); font-size: .88rem; font-weight: 600; color: var(--ink); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .9rem 1.1rem; font: inherit; font-size: .97rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--b2); box-shadow: 0 0 0 4px rgba(255,0,152,.12);
}
.field textarea { min-height: 148px; resize: vertical; }
.field--hp { position: absolute; left: -9999px; opacity: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.alert { padding: 1rem 1.2rem; border-radius: var(--r-sm); font-size: .93rem; margin-bottom: 1.25rem; }
.alert--error { background: #FFF1F4; color: #B3123F; border: 1px solid #FFD4DE; }
.alert ul { margin: .4rem 0 0; padding-left: 1.1rem; }

/* Contact info tiles */
.info-tile { display: flex; gap: 1rem; align-items: flex-start; padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--r); background: #fff; }
.info-tile .icon-box { width: 44px; height: 44px; margin: 0; border-radius: 12px; }
.info-tile .icon-box svg { width: 21px; height: 21px; }
.info-tile b { display: block; font-family: var(--display); font-size: .92rem; color: var(--ink); }
.info-tile a, .info-tile span { color: var(--muted); font-size: .94rem; word-break: break-word; }
.info-tile a:hover { color: var(--b2); }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 76ch; }
.prose h2 { font-size: 1.5rem; margin-top: 2.5rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.75rem; }
.prose ul, .prose ol { padding-left: 1.3rem; color: var(--muted); }
.prose li { margin-bottom: .5rem; }
.prose a { color: var(--b2); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Page header ---------- */
.page-head {
  background: var(--dark); color: var(--dark-muted); position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
}
.page-head::before { content: ''; position: absolute; width: 560px; height: 560px; border-radius: 50%; background: rgba(255,0,152,.26); filter: blur(90px); top: -280px; right: -120px; }
.page-head > * { position: relative; }
.page-head h1 { color: #fff; margin-bottom: .6rem; }
.page-head .lead { color: #B9B9CE; max-width: 46rem; }
.crumbs { font-size: .85rem; color: #8C8CA8; margin-bottom: 1.1rem; }
.crumbs a:hover { color: #fff; }
.crumbs span { opacity: .5; margin: 0 .45rem; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: var(--dark-muted); padding: clamp(3.5rem,6vw,5rem) 0 2rem; }
.footer__bar { padding-right: 5rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer h4 { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 1.15rem; font-weight: 600; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer a { font-size: .93rem; color: var(--dark-muted); transition: color .18s; }
.footer a:hover { color: #fff; }
.footer__about p { font-size: .93rem; color: var(--dark-muted); margin: 1.25rem 0 1.5rem; max-width: 30ch; }
.socials { display: flex; gap: .55rem; }
.socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--dark-line); display: grid; place-items: center; transition: background .2s, border-color .2s, transform .2s; }
.socials a:hover { background: var(--grad); border-color: transparent; transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; }
.footer__bar { border-top: 1px solid var(--dark-line); margin-top: 3rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .86rem; }
.footer__bar nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }

/* Floating WhatsApp */
.wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 80;
  width: 54px; height: 54px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .2s;
}
.wa:hover { transform: scale(1.07); }
.wa svg { width: 28px; height: 28px; }


/* ==========================================================================
   Hero intro sting
   CSS drives the whole timeline, so the overlay clears itself even if the
   JS never runs. Retime the entire sequence with one value: --beat.
   Current: --beat .7s -> ~6.9s total. Beats, in --beat units:
     0.75  Binary.      1.75  Matrix.     2.75  Unilevel.
     3.90  the line     5.35  the stack   6.80  wordmark
     9.80  end
   ========================================================================== */
.intro { display: none; }
.intro-lock { overflow: hidden; }

.has-intro .intro {
  --beat: .7s;
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--dark);
  overflow: hidden;
  animation: intro-out calc(var(--beat) * 9.8) linear forwards;
}

/* Liquid light blooms — the only thing moving behind the type */
.intro__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0;
  will-change: transform, opacity;
}
.intro__bloom--a {
  width: 68vmax; height: 68vmax;
  background: radial-gradient(circle, rgba(255,31,79,.46), rgba(255,0,152,.18) 45%, transparent 68%);
  top: -24vmax; left: -16vmax;
  animation: intro-bloom-a calc(var(--beat) * 9.8) ease-out forwards;
}
.intro__bloom--b {
  width: 62vmax; height: 62vmax;
  background: radial-gradient(circle, rgba(165,0,191,.44), rgba(255,0,152,.16) 45%, transparent 68%);
  bottom: -26vmax; right: -14vmax;
  animation: intro-bloom-b calc(var(--beat) * 9.8) ease-out forwards;
}

.intro__stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100% - 3rem, 1100px);
  min-height: 9em;
  text-align: center;
}
/* Every beat occupies the same cell, so they cut on the spot */
.intro__stage > * { grid-area: 1 / 1; opacity: 0; }

.intro__word {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.4rem, 10vw, 8rem);
  letter-spacing: -.05em;
  color: #fff;
  line-height: 1;
  animation: intro-word var(--beat) cubic-bezier(.2,.7,.2,1) both;
}
.intro__word--1 { animation-delay: calc(var(--beat) * .75); }
.intro__word--2 { animation-delay: calc(var(--beat) * 1.75); }
.intro__word--3 { animation-delay: calc(var(--beat) * 2.75); }

.intro__line {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  letter-spacing: -.025em;
  color: #D2D2E4;
  animation: intro-line calc(var(--beat) * 1.35) cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(var(--beat) * 3.9);
}

/* The wider stack — three capabilities landing in sequence on one line */
.intro__stack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(.8rem, 3vw, 2.4rem);
  animation: intro-line calc(var(--beat) * 1.35) cubic-bezier(.2,.7,.2,1) both;
  animation-delay: calc(var(--beat) * 5.35);
}
.intro__stack em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2rem, 5.4vw, 4.2rem);
  letter-spacing: -.04em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0;
  animation: intro-pop calc(var(--beat) * 1.1) cubic-bezier(.2,.7,.2,1) both;
}
.intro__stack em:nth-child(1) { animation-delay: calc(var(--beat) * 5.45); }
.intro__stack em:nth-child(2) { animation-delay: calc(var(--beat) * 5.72); }
.intro__stack em:nth-child(3) { animation-delay: calc(var(--beat) * 5.99); }

.intro__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  animation: intro-mark calc(var(--beat) * 2.2) cubic-bezier(.16,.8,.3,1) forwards;
  animation-delay: calc(var(--beat) * 6.8);
}
.intro__mark .wordmark { font-size: clamp(2.8rem, 7.5vw, 5.4rem); }
.intro__tag {
  font-family: var(--sans);
  font-size: clamp(.82rem, 1.5vw, 1.05rem);
  font-weight: 400;
  letter-spacing: .04em;
  color: #9A9AB4;
}

.intro__skip {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  background: none;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 500;
  color: #9C9CB4;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  opacity: 0;
  animation: intro-skip calc(var(--beat) * 9.8) linear forwards;
}
.intro__skip:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.intro__skip:focus-visible { outline: 2px solid var(--b2); outline-offset: 3px; }

@keyframes intro-word {
  0%   { opacity: 0; transform: translateY(18px) scale(.98); }
  20%  { opacity: 1; transform: none; }
  74%  { opacity: 1; transform: none; }
  100% { opacity: 0; transform: translateY(-13px) scale(1.012); }
}
@keyframes intro-line {
  0%   { opacity: 0; transform: translateY(12px); }
  22%  { opacity: 1; transform: none; }
  74%  { opacity: 1; transform: none; }
  100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes intro-pop {
  0%   { opacity: 0; transform: translateY(20px) scale(.94); }
  30%  { opacity: 1; transform: none; }
  72%  { opacity: 1; transform: none; }
  100% { opacity: 0; transform: translateY(-10px); }
}
@keyframes intro-mark {
  0%   { opacity: 0; transform: scale(.94); }
  24%  { opacity: 1; transform: scale(1); }
  74%  { opacity: 1; transform: scale(1); }
  90%  { opacity: 0; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.02); }
}
@keyframes intro-bloom-a {
  0%   { opacity: 0; transform: translate(-5%, -7%) scale(.82); }
  30%  { opacity: 1; }
  100% { opacity: .9; transform: translate(7%, 5%) scale(1.16); }
}
@keyframes intro-bloom-b {
  0%   { opacity: 0; transform: translate(6%, 8%) scale(.85); }
  35%  { opacity: 1; }
  100% { opacity: .9; transform: translate(-6%, -5%) scale(1.18); }
}
@keyframes intro-skip {
  0%, 5%   { opacity: 0; pointer-events: none; }
  12%, 88% { opacity: 1; pointer-events: auto; }
  100%     { opacity: 0; pointer-events: none; }
}
@keyframes intro-out {
  0%, 90%  { opacity: 1; visibility: visible; }
  100%     { opacity: 0; visibility: hidden; }
}

/* Phones: same sequence, quicker beat so it is not a long gate on mobile
   data, and the capability row is allowed to stack. */
@media (max-width: 700px) {
  .has-intro .intro { --beat: .52s; }
  .intro__stage { min-height: 11em; }
  .intro__word { font-size: clamp(2.6rem, 13vw, 4.4rem); letter-spacing: -.04em; }
  .intro__line { font-size: clamp(1.15rem, 5.2vw, 1.6rem); }
  .intro__stack { gap: .45rem .9rem; }
  .intro__stack em { font-size: clamp(1.6rem, 8.2vw, 2.6rem); }
  .intro__mark .wordmark { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .intro__tag { font-size: .8rem; padding-inline: 1.5rem; }
  .intro__skip { right: 50%; translate: 50% 0; bottom: 1.6rem; }
}

/* Dismissed early, or finished and cleaned up by JS */
.intro.is-done {
  animation: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s;
  pointer-events: none;
}

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s cubic-bezier(.2,.7,.2,1), transform .65s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s } .reveal.d2 { transition-delay: .14s }
.reveal.d3 { transition-delay: .21s } .reveal.d4 { transition-delay: .28s }
.reveal.d5 { transition-delay: .35s } .reveal.d6 { transition-delay: .42s }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero__stats ul { grid-template-columns: repeat(2, 1fr); }
  .hero__stats li:nth-child(3) { border-left: 0; }
  .hero__stats li:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.07); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero__stats li { padding: 1.15rem .75rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
}

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

/* Print */
@media print {
  .nav, .footer, .wa, .cta-band { display: none !important; }
  body { color: #000; }
}
