:root {
  --bg: #0a0a0b;
  --bg-2: #111214;
  --card: #16181b;
  --card-2: #1c1f23;
  --line: #26292e;
  --text: #f4f5f7;
  --muted: #9a9ea6;
  --lime: #c8f24a;
  --lime-dim: #aee02f;
  --purple: #8b6cff;
  --pink: #ff6b8a;
  --blue: #5db4ff;
  --gold: #ffc861;
  --green: #5ee6a8;
  --radius: 22px;
  --maxw: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary {
  background: var(--lime);
  color: #0a0a0b;
  box-shadow: 0 8px 30px rgba(200, 242, 74, .25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(200, 242, 74, .38); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--muted); }
.btn-pill {
  background: var(--card-2);
  border: 1px solid var(--line);
  padding: 10px 18px;
  font-size: 14px;
}
.btn-pill:hover { border-color: var(--lime); color: var(--lime); }

/* ---------- nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 5vw, 56px);
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 18px; }
.brand-mark { font-size: 20px; }
.brand-name { letter-spacing: -.01em; }
.nav-links { display: flex; gap: 28px; font-size: 15px; color: var(--muted); }
.nav-links a:hover { color: var(--text); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) clamp(20px, 5vw, 56px) 60px;
}
.hero-glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(200,242,74,.16), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--lime);
  background: rgba(200,242,74,.08);
  border: 1px solid rgba(200,242,74,.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 6.2vw, 64px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hl { color: var(--lime); }
.lede {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

/* ---------- phone mockup ---------- */
.hero-phone { display: flex; justify-content: center; position: relative; z-index: 1; }
.phone {
  width: 300px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  border: 1px solid #2a2d32;
  box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 8px #0d0e10;
}
.phone .statusbar,
.phone .phone-topbar,
.phone .phone-body { padding-inline: 8px; }
.statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  padding-top: 8px;
  padding-bottom: 6px;
}
.status-icons { display: flex; align-items: center; gap: 5px; }
.status-icons .dot { width: 14px; height: 9px; background: var(--text); border-radius: 2px; opacity:.5;}
.status-icons .bars { width: 16px; height: 10px; background: var(--text); border-radius: 2px; }
.status-icons .battery { width: 22px; height: 11px; border: 1px solid var(--text); border-radius: 3px; }
.phone-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 6px 0 10px;
  font-size: 16px;
  font-weight: 800;
}
.profile-dot { width: 22px; height: 22px; border: 1.5px solid var(--muted); border-radius: 50%; }
.phone-greet {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 6px 0 16px;
}
.picked-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--card);
  border: 1px solid rgba(200,242,74,.4);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 14px;
}
.tarot {
  width: 46px; height: 64px;
  flex-shrink: 0;
  border-radius: 8px;
  background: radial-gradient(circle at 50% 30%, #2a2456, #140f2e);
  border: 1px solid #4a3f8a;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.picked-text .label { font-size: 10px; font-weight: 700; color: var(--lime); letter-spacing: .06em; }
.picked-text .quote { font-size: 14px; font-weight: 600; margin-top: 4px; }
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.tile {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 12px;
}
.tile-icon { font-size: 18px; display: block; margin-bottom: 30px; }
.tile strong { display: block; font-size: 14px; }
.tile small, .gift-row small { color: var(--muted); font-size: 11px; }
.gift-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  margin-bottom: 14px;
  font-size: 14px;
}
.gift-row > span:first-child { font-size: 18px; }
.gift-row div { flex: 1; }
.gift-row strong { display: block; font-size: 13px; }
.gift-row .chev { color: var(--muted); font-size: 18px; }
.phone-cta {
  background: var(--lime);
  color: #0a0a0b;
  text-align: center;
  font-weight: 800;
  padding: 15px;
  border-radius: 16px;
  font-size: 15px;
  margin-bottom: 8px;
}

/* ---------- sections shared ---------- */
section.features, section.how {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 100px) clamp(20px, 5vw, 56px);
}
.section-eyebrow {
  text-align: center;
  color: var(--lime);
  font-weight: 600;
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  font-size: clamp(28px, 4.2vw, 44px);
  font-weight: 900;
  letter-spacing: -.025em;
  margin-bottom: 48px;
}

/* ---------- features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .18s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: #3a3e45; }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  font-size: 24px;
  border-radius: 14px;
  margin-bottom: 18px;
}
.feature-icon.purple { background: rgba(139,108,255,.14); }
.feature-icon.pink   { background: rgba(255,107,138,.14); }
.feature-icon.lime   { background: rgba(200,242,74,.14); }
.feature-icon.blue   { background: rgba(93,180,255,.14); }
.feature-icon.gold   { background: rgba(255,200,97,.14); }
.feature-icon.green  { background: rgba(94,230,168,.14); }
.feature-card h3 { font-size: 19px; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 15px; }

/* ---------- how ---------- */
.how { background: var(--bg-2); max-width: none; }
.how > * { max-width: var(--maxw); margin-inline: auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  text-align: center;
  padding: 10px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--lime);
  color: #0a0a0b;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 18px;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; max-width: 280px; margin-inline: auto; }

/* ---------- download ---------- */
.download {
  padding: clamp(40px, 7vw, 80px) clamp(20px, 5vw, 56px);
}
.download-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(160deg, #1a1d10, #121311);
  border: 1px solid rgba(200,242,74,.28);
  border-radius: 32px;
  padding: clamp(40px, 6vw, 64px) 32px;
  position: relative;
  overflow: hidden;
}
.download-inner::before {
  content: "";
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(200,242,74,.18), transparent 70%);
  pointer-events: none;
}
.download h2 {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  letter-spacing: -.025em;
  margin-bottom: 14px;
  position: relative;
}
.download p { color: var(--muted); font-size: 17px; margin-bottom: 28px; position: relative; }
.store-badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.store-badge {
  background: var(--lime);
  color: #0a0a0b;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 14px;
  transition: transform .15s ease;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge.is-soon {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  cursor: default;
}
.store-badge.is-soon:hover { transform: none; }
.fine { font-size: 13px; margin-top: 20px; margin-bottom: 0; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px clamp(20px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-brand { font-weight: 800; font-size: 18px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; color: var(--muted); font-size: 15px; }
.footer-links a:hover { color: var(--text); }
.copyright { color: #5d626a; font-size: 13px; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { order: 1; }
  .hero-phone { order: 2; }
  .hero-actions { justify-content: center; }
  .lede { margin-inline: auto; }
  .feature-grid, .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .phone { width: 270px; }
}
