/* ==========================================================================
   Acme Inc — Landing Page Styles
   Aesthetic: Industrial dark, amber accent, Syne + Instrument Serif
   ========================================================================== */

:root {
  --bg: #0d0c0b;
  --bg-2: #141311;
  --surface: #1a1815;
  --border: rgba(255, 255, 255, 0.07);
  --accent: #f59e0b;
  --accent-hover: #fbbf24;
  --text: #e8e4dc;
  --text-muted: #7a7570;
  --text-dim: #4a4540;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Instrument Serif', serif;
  --max-w: 1100px;
  --gutter: 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-logo:hover { color: var(--accent); }
.nav-dot { color: var(--accent); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 80px var(--gutter) 120px;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: hidden;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-headline em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* ── EMAIL CAPTURE ── */
.capture-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.2s ease;
}
.capture-form:focus-within {
  border-color: var(--accent);
}

.capture-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 15px 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text);
}
.capture-input::placeholder { color: var(--text-dim); }

.capture-btn {
  background: var(--accent);
  color: #0d0c0b;
  border: none;
  padding: 15px 24px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.capture-btn:hover { background: var(--accent-hover); }
.btn-arrow { display: inline-block; margin-left: 4px; transition: transform 0.2s ease; }
.capture-btn:hover .btn-arrow { transform: translateX(3px); }

.capture-note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
  min-height: 1.2em;
  transition: color 0.2s ease;
}
.capture-note.success { color: var(--accent); }
.capture-note.error { color: #ef4444; }

/* ── HERO GRID DECORATION ── */
.hero-grid {
  position: absolute;
  top: 0; right: -60px;
  width: 45%;
  height: 100%;
  display: flex;
  gap: 48px;
  opacity: 0.04;
  pointer-events: none;
}
.grid-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--text) 30%, var(--text) 70%, transparent);
}

/* ── FEATURES ── */
.features {
  border-top: 1px solid var(--border);
  padding: 100px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.features-header {
  margin-bottom: 72px;
}

.features-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--bg);
  padding: 48px 36px;
  transition: background 0.25s ease;
  position: relative;
}
.feature-card:hover { background: var(--bg-2); }

.feature-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.feature-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.feature-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── TRUST STRIP ── */
.trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px var(--gutter);
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  color: var(--text);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ── FINAL CTA ── */
.cta-section {
  padding: 120px var(--gutter);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.75rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}

.cta-sub {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.65;
}

.capture-form--light { max-width: 100%; }

.capture-input--light {
  background: rgba(255, 255, 255, 0.04);
}

.capture-btn--dark {
  background: var(--text);
  color: var(--bg);
}
.capture-btn--dark:hover { background: #fff; }

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 48px var(--gutter);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: right;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    flex-wrap: wrap;
    gap: 40px;
  }

  .trust-divider { display: none; }

  .capture-form {
    flex-direction: column;
    max-width: 100%;
  }

  .capture-btn { width: 100%; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand { align-items: center; }
  .footer-copy { text-align: center; }
  .footer-links { justify-content: center; }

  .hero-grid { display: none; }

  .nav-link { display: none; }
  .nav-cta { display: none; }

  /* Pricing — stack cards vertically */
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card--pro {
    margin: -1px;
  }

  /* FAQ — slightly less padding */
  .faq-question {
    font-size: 0.95rem;
  }
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 14px;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--text); }

/* ── CONFIGURATOR ── */
.configurator {
  border-top: 1px solid var(--border);
  padding: 100px var(--gutter);
  background: var(--bg);
}

.configurator-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.configurator-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 12px;
}

.configurator-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 64px;
}

.configurator-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}

/* ── CONTROLS ── */
.config-controls {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.config-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.config-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.config-hint {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* Segmented control */
.seg-control {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
}

.seg-btn {
  flex: 1;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
.seg-btn:last-child { border-right: none; }
.seg-btn:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.seg-btn--active {
  background: var(--accent);
  color: #0d0c0b;
}
.seg-btn--active:hover { background: var(--accent-hover); }

/* Quantity row */
.qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.qty-presets {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  background: var(--surface);
}

.qty-preset {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.qty-preset:last-child { border-right: none; }
.qty-preset:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.qty-preset--active {
  background: var(--accent);
  color: #0d0c0b;
}
.qty-preset--active:hover { background: var(--accent-hover); }

.qty-custom-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-custom-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.qty-custom-input {
  width: 100px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  /* Hide browser number spinners */
  -moz-appearance: textfield;
}
.qty-custom-input::-webkit-outer-spin-button,
.qty-custom-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-custom-input:focus { border-color: var(--accent); }
.qty-custom-input::placeholder { color: var(--text-dim); }

/* ── PREVIEW CARD ── */
.config-preview {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  position: sticky;
  top: 24px;
  transition: border-color 0.3s ease;
}
.config-preview:focus-within { border-color: rgba(245, 158, 11, 0.3); }

.preview-widget-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.preview-widget-svg {
  width: 100%;
  max-width: 200px;
  height: auto;
  transition: all 0.3s ease;
}

.preview-badge {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Pricing lines */
.preview-pricing {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.preview-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.preview-line-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.preview-line-value {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

.preview-discount-label { color: #4ade80; }
.preview-discount-value { color: #4ade80; }

.preview-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.preview-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.preview-total-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.preview-total-amount {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

/* CTA */
.config-cta-btn {
  width: 100%;
  background: var(--accent);
  color: #0d0c0b;
  border: none;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.config-cta-btn:hover { background: var(--accent-hover); }
.config-cta-btn .btn-arrow { transition: transform 0.2s ease; }
.config-cta-btn:hover .btn-arrow { transform: translateX(3px); }

.config-cta-note {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
}

/* ── RESPONSIVE — configurator ── */
@media (max-width: 900px) {
  .configurator-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .config-preview {
    position: static;
  }
}

@media (max-width: 600px) {
  .seg-control,
  .qty-presets {
    width: 100%;
  }
  .seg-btn,
  .qty-preset {
    flex: 1;
    padding: 10px 12px;
  }
  .qty-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── PRICING ── */
.pricing {
  border-top: 1px solid var(--border);
  padding: 100px var(--gutter);
}

.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pricing-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 12px;
}

.pricing-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  padding: 48px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Pro tier: amber border + subtle glow */
.pricing-card--pro {
  background: var(--bg-2);
  border: 1px solid var(--accent);
  outline: 0;
  box-shadow: 0 0 32px rgba(245, 158, 11, 0.08), inset 0 0 48px rgba(245, 158, 11, 0.03);
  /* Overlap the grid gap border */
  margin: -1px;
  z-index: 1;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 24px;
  align-self: flex-start;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.pricing-card--pro .pricing-tier {
  color: var(--accent);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 32px;
}

.price-amount {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-amount--custom {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.price-period {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.pricing-card--pro .pricing-features li { color: var(--text); }
.pricing-card--pro .pricing-features li::before { color: var(--accent); }

.pricing-btn {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pricing-btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.pricing-btn--primary:hover { background: var(--accent-hover); }

.pricing-btn--secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.pricing-btn--secondary:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

/* ── FAQ ── */
.faq {
  border-top: 1px solid var(--border);
  padding: 100px var(--gutter);
  background: var(--bg-2);
}

.faq-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.faq-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 56px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  /* No gap — borders create separation */
}

.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  padding: 24px 40px 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
  position: relative;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }

/* Chevron via pseudo-element */
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s ease;
  line-height: 1;
}

details[open] .faq-question::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-question:hover { color: var(--accent); }

details[open] .faq-question { color: var(--text); }

.faq-answer {
  padding: 0 40px 28px 0;
  animation: fadeDown 0.2s ease both;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label, .hero-headline, .hero-sub, .capture-form {
  animation: fadeUp 0.6s ease both;
}
.hero-label    { animation-delay: 0s; }
.hero-headline { animation-delay: 0.08s; }
.hero-sub      { animation-delay: 0.16s; }
.capture-form  { animation-delay: 0.24s; }
