/* ============================================================
   Zeyra Marketing — dark & premium
   Palette: warm charcoal + volt lime + warm off-white
   Type: Space Grotesk (display/body), Instrument Serif (italic
   accents), JetBrains Mono (labels/numbers)
   ============================================================ */

:root {
  --bg: #0c0c0e;
  --bg-alt: #101013;
  --surface: #141418;
  --line: rgba(244, 243, 239, 0.09);
  --line-strong: rgba(244, 243, 239, 0.18);
  --ink: #f4f3ef;
  --ink-dim: #9b9a94;
  --volt: #d6ff3f;
  --volt-soft: rgba(214, 255, 63, 0.14);
  --volt-glow: rgba(214, 255, 63, 0.25);
  --font-sans: "Space Grotesk", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--volt); color: #0c0c0e; }

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

:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}
.container-narrow { width: min(880px, 100% - 48px); }

.volt { color: var(--volt); }

em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--volt);
  letter-spacing: 0.005em;
}

/* ---------- eyebrow labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-dim);
  margin-bottom: 24px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
  will-change: transform;
}
.btn .arrow { transition: transform 0.35s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--volt);
  color: #0c0c0e;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--volt-glow), 0 2px 12px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--volt);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.btn-sm { padding: 11px 22px; font-size: 0.9rem; }
.btn-lg { padding: 20px 40px; font-size: 1.1rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(12, 12, 14, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-dim);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 140px;
  overflow: clip;
}
.hero-inner { padding-bottom: 0; }

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: drift 22s ease-in-out infinite alternate;
}
.orb-a {
  width: 62vw;
  height: 62vw;
  max-width: 900px;
  max-height: 900px;
  top: -18%;
  right: -14%;
  background: radial-gradient(closest-side, rgba(214, 255, 63, 0.13), transparent 72%);
}
.orb-b {
  width: 40vw;
  height: 40vw;
  max-width: 620px;
  max-height: 620px;
  bottom: -8%;
  left: -12%;
  background: radial-gradient(closest-side, rgba(244, 243, 239, 0.05), transparent 70%);
  animation-delay: -8s;
}
.orb-c {
  width: 56vw;
  height: 56vw;
  max-width: 800px;
  max-height: 800px;
  top: -30%;
  left: 50%;
  translate: -50% 0;
  background: radial-gradient(closest-side, rgba(214, 255, 63, 0.1), transparent 72%);
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4%, 6%) scale(1.08); }
}

/* hero background video (covers the orbs while playing; orbs remain
   as the static fallback when the video is hidden) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
/* second copy stays hidden until the crossfade loop hands over to it */
.hero-video--b { opacity: 0; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 14, 0.9) 0%, rgba(12, 12, 14, 0.55) 48%, rgba(12, 12, 14, 0.15) 100%),
    linear-gradient(0deg, rgba(12, 12, 14, 0.85) 0%, rgba(12, 12, 14, 0) 32%);
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero .marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.9rem, 7.6vw, 6.6rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 44px;
  max-width: 18ch;
}
.hero-line { display: block; }

.hero-sub {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.hero-sub p {
  max-width: 46ch;
  color: var(--ink-dim);
  font-size: 1.15rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* entrance animation (on load, not scroll) */
.hero-reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s var(--ease-out) forwards;
}
.hero-reveal:nth-of-type(1) { animation-delay: 0.05s; }
.hero-title .hero-reveal:nth-child(1) { animation-delay: 0.15s; }
.hero-title .hero-reveal:nth-child(2) { animation-delay: 0.26s; }
.hero-title .hero-reveal:nth-child(3) { animation-delay: 0.37s; }
.hero-sub.hero-reveal, .hero-inner > .hero-sub { animation-delay: 0.55s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  animation: scroll 36s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
}
.marquee-track i {
  font-style: normal;
  color: var(--volt);
  font-size: 0.7rem;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ---------- stats ---------- */
.stats {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
}
.stat-num {
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--volt);
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.stat-suffix { font-size: 0.6em; }
.stat-label {
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 24ch;
}

/* ---------- sections ---------- */
.section { padding: clamp(96px, 12vw, 160px) 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.section-title {
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 24ch;
}

/* ---------- cards (shared) ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), var(--volt-soft), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.card:hover::before { opacity: 1; }
.card > * { position: relative; }

/* ---------- guarantee ---------- */
.guarantee-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.guarantee-copy p {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink);
}
.guarantee-copy p + p {
  margin-top: 24px;
  color: var(--ink-dim);
}
.guarantee-card {
  border-color: rgba(214, 255, 63, 0.25);
  box-shadow: 0 0 80px rgba(214, 255, 63, 0.05);
}
.guarantee-card p { color: var(--ink-dim); }
.card-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--volt) !important;
  margin-bottom: 16px;
}

/* ---------- steps ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.step p { color: var(--ink-dim); font-size: 0.97rem; }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--volt);
  margin-bottom: 40px;
}

/* ---------- included ---------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.inc h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.inc p { color: var(--ink-dim); font-size: 0.95rem; }
.inc-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--volt);
  margin-bottom: 32px;
}

/* ---------- pricing ---------- */
.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 88px);
  background: var(--surface);
  border: 1px solid rgba(214, 255, 63, 0.28);
  border-radius: 28px;
  padding: clamp(40px, 5vw, 72px);
  box-shadow: 0 0 120px rgba(214, 255, 63, 0.06);
}
.pricing-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--volt);
  border: 1px solid rgba(214, 255, 63, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 32px;
}
.price {
  font-size: clamp(3.6rem, 6vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-cur {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  vertical-align: super;
  margin-right: 6px;
}
.price-per { color: var(--ink-dim); margin-top: 10px; }
.price-first {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 0.97rem;
  max-width: 34ch;
}
.price-first strong { color: var(--ink); }

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.pricing-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-dim);
}
.pricing-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--volt);
  font-size: 0.85rem;
}
.pricing-cta {
  margin-top: 48px;
  text-align: center;
}

/* ---------- faq ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 28px 4px;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
.faq-q:hover { color: var(--volt); }
.faq-icon {
  flex: none;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--volt);
  transition: transform 0.4s var(--ease-out);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner p {
  padding: 0 4px 30px;
  color: var(--ink-dim);
  max-width: 62ch;
}

/* ---------- final cta ---------- */
.cta-final {
  position: relative;
  text-align: center;
  padding: clamp(120px, 15vw, 200px) 0;
  overflow: clip;
  border-top: 1px solid var(--line);
}
.cta-title {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 28px;
}
.cta-sub {
  color: var(--ink-dim);
  font-size: 1.12rem;
  max-width: 52ch;
  margin: 0 auto 44px;
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
}
.footer-tag {
  color: var(--ink-dim);
  font-size: 0.95rem;
  margin-top: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  color: var(--ink-dim);
  font-size: 0.95rem;
  transition: color 0.25s ease;
  width: fit-content;
}
.footer-links a:hover { color: var(--ink); }
.footer-contact .eyebrow { margin-bottom: 14px; }
.footer-mail {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.footer-mail:hover { color: var(--volt); border-color: var(--volt); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 0.85rem;
}
.footer-mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--volt);
}

/* ---------- scroll reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative;
  padding: 200px 0 24px;
  overflow: clip;
}
.contact-title {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin-bottom: 20px;
}
.contact-sub { color: var(--ink-dim); font-size: 1.15rem; }
.contact-hero .hero-reveal:nth-child(2) { animation-delay: 0.15s; }
.contact-hero .hero-reveal:nth-child(3) { animation-delay: 0.28s; }

.contact-section { padding-top: 40px; }

.madlib-line {
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 2.1;
  font-weight: 500;
  letter-spacing: -0.015em;
  animation-delay: 0.4s;
}
.blank { white-space: nowrap; }
.madlib input {
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--line-strong);
  color: var(--volt);
  font-family: var(--font-sans);
  font-size: inherit;
  font-weight: 500;
  letter-spacing: inherit;
  padding: 0 6px 2px;
  min-width: 60px;
  max-width: 100%;
  transition: border-color 0.3s ease;
}
.madlib input::placeholder {
  color: rgba(155, 154, 148, 0.55);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.madlib input:focus {
  outline: none;
  border-bottom-color: var(--volt);
}
.madlib input.invalid { border-bottom-color: #ff6b5e; }

.chip-block { margin-top: 44px; animation-delay: 0.55s; }
.chip-block + .chip-block { animation-delay: 0.68s; }
.chip-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-dim);
  margin-bottom: 16px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--ink-dim);
  transition: all 0.3s var(--ease-out);
}
.chip:hover {
  border-color: var(--volt);
  color: var(--ink);
  transform: translateY(-2px);
}
.chip.selected {
  background: var(--volt);
  border-color: var(--volt);
  color: #0c0c0e;
  font-weight: 600;
}

.form-error {
  margin-top: 32px;
  color: #ff6b5e;
  font-size: 0.95rem;
}

.madlib-actions {
  margin-top: 52px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  animation-delay: 0.8s;
}
.form-note {
  color: var(--ink-dim);
  font-size: 0.88rem;
  max-width: 30ch;
}

/* success panel */
.success-panel {
  text-align: center;
  padding: 60px 0 40px;
}
.success-panel h2 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 28px 0 14px;
}
.success-panel p {
  color: var(--ink-dim);
  max-width: 44ch;
  margin: 0 auto 40px;
}
/* ============================================================
   THANK-YOU PAGE — logo, tick, copy; nothing else
   ============================================================ */
.thanks-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
.thanks-header {
  padding: 28px 0;
  text-align: center;
}
.thanks-main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow: clip;
}
.thanks-main .success-panel {
  position: relative;
  padding: 0 0 8vh;
}
.thanks-main h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 28px 0 14px;
}

/* ============================================================
   PRIVACY / LEGAL PAGE
   ============================================================ */
.legal-hero {
  position: relative;
  padding: 190px 0 0;
}
.legal-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.legal-sub {
  color: var(--ink-dim);
  font-size: 1.12rem;
  max-width: 58ch;
}
.legal-body { padding-top: 56px; }
.legal-body h2 {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 48px 0 14px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  color: var(--ink-dim);
  max-width: 68ch;
  margin-bottom: 14px;
}
.legal-body ul {
  margin: 0 0 14px 22px;
  color: var(--ink-dim);
}
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--ink); }
.legal-body a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.legal-body a:hover { color: var(--volt); border-color: var(--volt); }

.footer-legal {
  color: var(--ink-dim);
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-legal:hover { color: var(--ink); }
.tick {
  width: 84px;
  height: 84px;
  margin: 0 auto;
}
.tick-circle {
  fill: none;
  stroke: var(--volt);
  stroke-width: 2.5;
  stroke-dasharray: 183;
  stroke-dashoffset: 183;
  animation: draw 0.9s var(--ease-out) forwards;
}
.tick-path {
  fill: none;
  stroke: var(--volt);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: draw 0.5s var(--ease-out) 0.7s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

/* next steps */
.next-steps {
  margin-top: 96px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.mini-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.mini-steps li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: var(--ink-dim);
  font-size: 1.05rem;
}
.mini-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--volt);
  flex: none;
}
.alt-contact { color: var(--ink-dim); font-size: 0.95rem; }
.alt-contact a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.alt-contact a:hover { color: var(--volt); border-color: var(--volt); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 620px) {
  body { font-size: 1rem; }
  .container, .container-narrow { width: min(1200px, 100% - 40px); }
  .hero { padding-top: 104px; padding-bottom: 108px; }
  .steps { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 40px 24px; }
  .madlib-line { line-height: 2.3; }
  .blank { white-space: normal; }
  .madlib input { min-width: 48px; }
  .contact-hero { padding-top: 150px; }
  .btn-lg { padding: 18px 32px; font-size: 1rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video, .hero-scrim { display: none; }
  .hero-reveal, .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .orb, .marquee-track { animation: none !important; }
  .tick-circle, .tick-path {
    stroke-dashoffset: 0;
    animation: none;
  }
  * { transition-duration: 0.01ms !important; }
}
