/* ────────────────────────────────────────
   PRINTR — Dark Crypto Theme
   ──────────────────────────────────────── */

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

:root {
  --bg:       #030712;
  --surface:  #0d1117;
  --card:     #111827;
  --border:   #1f2937;
  --gold:     #f59e0b;
  --gold-dim: #92400e;
  --purple:   #8b5cf6;
  --green:    #10b981;
  --red:      #ef4444;
  --text:     #f9fafb;
  --muted:    #6b7280;
  --sub:      #9ca3af;
  --font:     'Space Grotesk', system-ui, sans-serif;
  --mono:     'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(3,7,18,.8);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
}
.logo-text { font-size: 20px; font-weight: 700; letter-spacing: .08em; color: var(--gold); }

.nav { display: flex; gap: 24px; margin-left: auto; }
.nav a { color: var(--sub); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.btn-x {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-x:hover { border-color: var(--gold); color: var(--gold); }

.btn-primary {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .1s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: .85; transform: translateY(-1px); }

.btn-locked {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.04);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: not-allowed;
  white-space: nowrap;
  opacity: .6;
}
.lock-icon { font-size: 12px; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245,158,11,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(139,92,246,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--gold);
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: .04em;
}
.hero-title {
  font-size: clamp(72px, 14vw, 140px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #fff 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--sub);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.hero-subtitle em { color: var(--gold); font-style: normal; font-weight: 600; }

/* ── STATS GRID ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 16px;
  transition: border-color .2s, transform .2s;
}
.stat-card:hover { border-color: rgba(245,158,11,.4); transform: translateY(-2px); }
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--mono);
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }

/* ── CONTRACT PILL ── */
.contract-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 16px;
  font-family: var(--mono);
  font-size: 12px;
}
.contract-label { color: var(--muted); font-weight: 700; }
.contract-addr { color: var(--sub); word-break: break-all; }
.copy-btn {
  background: var(--border);
  border: none;
  color: var(--text);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
  font-family: var(--font);
  transition: background .2s;
}
.copy-btn:hover { background: var(--gold-dim); }
.hidden { display: none !important; }

/* ── SECTIONS ── */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-sub {
  text-align: center;
  color: var(--sub);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 16px;
}

/* ── CHART ── */
.chart-section { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.btn-refresh {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  color: var(--sub);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s, transform .1s;
}
.btn-refresh:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.btn-refresh svg { flex-shrink: 0; transition: transform .4s; }
.btn-refresh.spinning svg { animation: spin .6s linear; }
@keyframes spin { to { transform: rotate(360deg); } }

.chart-wrapper { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); margin-top: 0; }
.dex-chart { width: 100%; height: 600px; display: block; background: var(--card); }
.chart-placeholder {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  gap: 16px;
}
.placeholder-icon { font-size: 48px; }
.chart-placeholder p { font-size: 16px; }

/* ── HOW IT WORKS ── */
.how-section { padding: 100px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 48px; }
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .2s;
}
.step-card:hover { border-color: rgba(245,158,11,.3); }
.step-num { font-family: var(--mono); font-size: 13px; color: var(--gold); font-weight: 700; margin-bottom: 12px; letter-spacing: .1em; }
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--sub); line-height: 1.6; }

.split-visual { margin-top: 16px; }
.split-bar {
  display: flex;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.split-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
}
.split-seg.holders { background: linear-gradient(90deg, rgba(245,158,11,.3), rgba(245,158,11,.15)); color: var(--gold); }
.split-seg.team { background: rgba(139,92,246,.2); color: #c4b5fd; font-size: 12px; }

/* ── FORMULA ── */
.formula-section { padding: 100px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.formula-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 40px; }
.formula-card {
  background: var(--card);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.formula-card:hover { transform: translateY(-3px); border-color: rgba(245,158,11,.3); }
.formula-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.formula-card.weight-40::before { background: linear-gradient(90deg, var(--gold), #fbbf24); }
.formula-card.weight-20::before { background: linear-gradient(90deg, var(--purple), #a78bfa); }

.weight-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--mono);
  margin-bottom: 12px;
  background: rgba(245,158,11,.15);
  color: var(--gold);
}
.weight-badge.penalty { background: rgba(139,92,246,.15); color: #c4b5fd; }

.factor-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.formula-card h3 { font-size: 18px; margin-bottom: 8px; }
.formula-card p { font-size: 14px; color: var(--sub); line-height: 1.6; margin-bottom: 14px; }
.formula-code {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-family: var(--mono);
  color: #86efac;
  word-break: break-all;
}

.formula-box {
  background: var(--card);
  border: 1px solid rgba(245,158,11,.3);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.formula-title { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 16px; }
.formula-eq {
  font-family: var(--mono);
  font-size: clamp(12px, 2vw, 16px);
  color: var(--gold);
  margin-bottom: 12px;
  word-break: break-all;
}
.formula-share { font-family: var(--mono); font-size: clamp(11px, 1.8vw, 14px); color: var(--sub); }

/* ── LAUNCH SECTION ── */
.launch-section {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.3);
  color: #c4b5fd;
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.title-accent {
  background: linear-gradient(90deg, var(--gold), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .launch-grid { grid-template-columns: 1fr; } }

.launch-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}
.launch-card:hover { border-color: rgba(245,158,11,.3); transform: translateY(-3px); }
.launch-card-featured {
  border-color: rgba(139,92,246,.3);
  background: linear-gradient(135deg, var(--card) 0%, rgba(139,92,246,.07) 100%);
}
.launch-card-featured:hover { border-color: rgba(139,92,246,.6); }

.launch-card-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.launch-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.launch-card-desc { font-size: 14px; color: var(--sub); line-height: 1.65; margin-bottom: 20px; }
.launch-card-note { font-size: 12px; color: var(--muted); line-height: 1.8; margin-top: 12px; }

/* Slider preview */
.slider-preview { margin-bottom: 16px; }
.slider-labels { display: flex; justify-content: space-between; font-size: 13px; font-weight: 500; margin-bottom: 10px; }
.sl-holders { color: var(--gold); }
.sl-dev { color: #c4b5fd; }
.sl-holders strong, .sl-dev strong { font-family: var(--mono); }

/* Range input — fee slider */
.fee-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: var(--border);
  outline: none;
  cursor: pointer;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--gold) var(--pct, 70%), var(--border) var(--pct, 70%));
}
.fee-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  box-shadow: 0 0 8px rgba(245,158,11,.5);
  cursor: grab;
  transition: transform .1s;
}
.fee-range::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.2); }
.fee-range::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--gold);
  cursor: grab;
}

/* Live split bar */
.split-bar-live {
  display: flex;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 12px;
}
.split-live-holders {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, rgba(245,158,11,.35), rgba(245,158,11,.2));
  color: var(--gold);
  font-size: 13px; font-weight: 700; font-family: var(--mono);
  transition: width .2s ease;
  min-width: 40px;
}
.split-live-dev {
  display: flex; align-items: center; justify-content: center;
  background: rgba(139,92,246,.2);
  color: #c4b5fd;
  font-size: 13px; font-weight: 700; font-family: var(--mono);
  transition: width .2s ease;
  min-width: 30px;
}

.slider-examples { display: flex; gap: 8px; flex-wrap: wrap; }
.example-pill {
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--mono);
  background: var(--border);
  color: var(--muted);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.example-pill:hover { color: var(--text); border-color: var(--sub); }
.example-pill.active { background: rgba(245,158,11,.15); color: var(--gold); border-color: rgba(245,158,11,.35); }

/* Weights preview — range inputs */
.weights-preview { display: flex; flex-direction: column; gap: 14px; }
.weight-row { display: flex; align-items: center; gap: 10px; }
.wr-label { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--sub); width: 90px; flex-shrink: 0; }
.wr-icon { font-size: 14px; }

.wr-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  height: 5px;
  border-radius: 99px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--gold) var(--pct, 40%), var(--border) var(--pct, 40%));
}
.wr-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 0 6px rgba(245,158,11,.4);
  cursor: grab;
}
.wr-range::-webkit-slider-thumb:active { cursor: grabbing; }
.wr-range-purple {
  background: linear-gradient(90deg, var(--purple) var(--pct, 20%), var(--border) var(--pct, 20%));
}
.wr-range-purple::-webkit-slider-thumb { border-color: var(--purple); box-shadow: 0 0 6px rgba(139,92,246,.4); }

.wr-val { font-family: var(--mono); font-size: 12px; font-weight: 700; color: var(--gold); width: 36px; text-align: right; flex-shrink: 0; }
.wr-val-purple { color: #c4b5fd; }
.weights-total { display: flex; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); }
.weights-total-val { color: var(--green); font-family: var(--mono); font-weight: 700; }

/* Interval options */
.interval-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.interval-pill {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--mono);
  background: var(--border);
  color: var(--muted);
  cursor: default;
  border: 1px solid transparent;
}
.interval-pill.active {
  background: rgba(245,158,11,.15);
  color: var(--gold);
  border-color: rgba(245,158,11,.3);
}

/* Feature list */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--sub); }
.check { color: var(--green); font-weight: 700; font-size: 15px; flex-shrink: 0; }

/* Waitlist box */
.waitlist-box {
  background: linear-gradient(135deg, rgba(245,158,11,.08) 0%, rgba(139,92,246,.08) 100%);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 20px;
  padding: 36px 40px;
}
.waitlist-content { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.waitlist-title { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.waitlist-sub { font-size: 14px; color: var(--sub); }
.waitlist-form { display: flex; gap: 10px; flex-wrap: wrap; }
.waitlist-input {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 16px;
  width: 280px;
  outline: none;
  transition: border-color .2s;
}
.waitlist-input:focus { border-color: var(--gold); }
.waitlist-input::placeholder { color: var(--muted); }
.waitlist-btn {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
  white-space: nowrap;
}
.waitlist-btn:hover { opacity: .85; }
.waitlist-success {
  text-align: center;
  color: var(--green);
  font-size: 15px;
  font-weight: 600;
  padding-top: 16px;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: var(--card);
  border: 1px solid rgba(139,92,246,.4);
  border-radius: 24px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  animation: slideUp .25s ease;
}
@keyframes slideUp { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--border);
  border: none;
  color: var(--muted);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s, color .2s;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--text); color: var(--bg); }

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.3);
  color: #c4b5fd;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.modal-title { font-size: 24px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.modal-desc { font-size: 14px; color: var(--sub); line-height: 1.6; margin-bottom: 24px; }

.modal-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.mf-item { display: flex; gap: 14px; align-items: flex-start; }
.mf-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.mf-label { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.mf-text { font-size: 13px; color: var(--sub); line-height: 1.55; }

.modal-cta {
  display: block;
  text-align: center;
  background: linear-gradient(90deg, rgba(245,158,11,.15), rgba(139,92,246,.15));
  border: 1px solid rgba(245,158,11,.25);
  color: var(--gold);
  text-decoration: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .2s;
}
.modal-cta:hover { opacity: .8; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 48px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-info { display: flex; flex-direction: column; gap: 8px; }
.footer-item { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
.footer-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.footer-addr { font-family: var(--mono); font-size: 12px; color: var(--sub); word-break: break-all; }
.footer-link { text-decoration: none; }
.footer-link:hover { color: var(--gold); }
.footer-disclaimer { font-size: 12px; color: var(--muted); max-width: 480px; line-height: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav { display: none; }
  .hero-subtitle { font-size: 16px; }
  .header-actions .btn-x { display: none; }
  .header-actions .btn-locked { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .formula-cards { grid-template-columns: 1fr; }
  .dex-chart { height: 400px; }
  .formula-eq { font-size: 11px; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp .6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .2s; }
.hero-content > *:nth-child(3) { animation-delay: .3s; }
.hero-content > *:nth-child(4) { animation-delay: .4s; }
.hero-content > *:nth-child(5) { animation-delay: .5s; }
