/* ---------- Tokens ---------- */
:root {
  --ink: #1C1D21;
  --ink-deep: #100e14;
  --ink-card: #1e1b26;

  --purple: #7b3fe4;
  --purple-deep: #4c1fa8;
  --orange: #f6a45c;
  --orange-deep: #e07a34;
  --orange-shadow: #a85a1f;
  --teal: #2dd9a8;
  --coral: #ff5470;
  --coral-shadow: #a8203f;
  --gold: #f6c945;

  --text: #ffffff;
  --text-muted: #cfc6d8;
  --text-faint: #9a93a8;
  --text-ghost: #62596e;

  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --radius-pill: 100px;

  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1.12;
  font-weight: 700;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 760px; }

/* ---------- Background decor ---------- */
.bg-grain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, header, footer { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.15s ease;
}
.btn-primary {
  background: var(--orange);
  color: #2a1608;
  box-shadow: 0 5px 0 var(--orange-shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--orange-shadow); }
.btn-primary:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--orange-shadow); }
.btn-small { padding: 10px 20px; font-size: 14px; }
.btn-large { padding: 17px 30px; font-size: 17px; }

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.16);
  color: var(--text-faint);
  opacity: 0.7;
  cursor: not-allowed;
}
.btn-store span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.btn-store em { font-style: normal; font-size: 11px; font-weight: 500; color: var(--text-ghost); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(28, 29, 33, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 96px;
}
.nav-logo img { height: 80px; width: auto; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--text); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  margin-left: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a {
  padding: 12px 4px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile .btn { margin-top: 12px; }
.nav.open .nav-mobile { display: flex; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 40px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.tag-pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(45, 217, 168, 0.12);
  border: 1px solid rgba(45, 217, 168, 0.35);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-logo { display: none; width: 220px; margin-bottom: 18px; }
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  letter-spacing: -0.01em;
}
.text-accent { color: var(--orange); }
.hero-sub {
  margin-top: 22px;
  max-width: 480px;
  font-size: 18px;
  color: var(--text-muted);
}
.hero-ctas {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-meta {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-faint);
  font-size: 14px;
  font-weight: 600;
}
.hero-meta svg { color: var(--text-ghost); flex-shrink: 0; }

/* ---------- Hero visual (phone mock) ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}
.phone-mock {
  width: 280px;
  height: 460px;
  border-radius: 40px;
  background: linear-gradient(160deg, #2a1f3d, #17141f);
  border: 6px solid #0d0b12;
  box-shadow: 0 40px 70px -25px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04) inset;
  padding: 18px 16px;
  position: relative;
  transform: rotate(-3deg);
}
.phone-screen { display: flex; flex-direction: column; height: 100%; }
.mock-topbar { display: flex; gap: 6px; margin-bottom: 14px; }
.mock-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.mock-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 10px;
}
.mock-fact {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 16px;
}
.mock-answer {
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.mock-answer-me {
  border-color: rgba(123,63,228,0.6);
  background: rgba(123,63,228,0.18);
  color: #fff;
}
.mock-answer-real {
  border-color: rgba(45,217,168,0.6);
  background: rgba(45,217,168,0.16);
  color: #fff;
}
.mock-timer {
  margin-top: auto;
  align-self: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
}
.float-card {
  position: absolute;
  width: 108px;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,0.45));
}
.float-awesome { top: 6%; right: -2%; transform: rotate(8deg); animation: floaty 5s ease-in-out infinite; }
.float-ohno { bottom: 4%; left: -6%; width: 96px; transform: rotate(-10deg); animation: floaty 6s ease-in-out infinite 0.6s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-faint);
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  max-width: 700px;
}
.section-sub {
  margin-top: 14px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
}

/* ---------- Steps ---------- */
.steps-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  background: var(--ink-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  color: var(--text-ghost);
  margin-bottom: 6px;
}
.step-card h3 { font-size: 19px; margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: 14.5px; }

.pro-tip {
  margin-top: 28px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px dashed rgba(255,255,255,0.18);
  color: var(--text-muted);
  font-size: 14.5px;
}
.pro-tip-badge {
  display: inline-block;
  color: var(--orange);
  font-weight: 800;
  margin-right: 8px;
}

/* ---------- Packs ---------- */
.packs-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pack-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: var(--pack-fill);
  border: 2px solid var(--pack-border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.2s ease;
}
.pack-card:hover { transform: translateY(-4px); }
.pack-card img { width: 100%; height: 100%; object-fit: contain; }
.pack-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  outline: 2px solid rgba(255,255,255,0.85);
}
.pack-free { background: #1D8C07; }
.pack-premium { background: #FB2C4E; }

.unlock-banner {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  border-radius: var(--radius-md);
  background: rgba(246,164,92,0.1);
  border: 1px solid rgba(246,164,92,0.3);
}
.unlock-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.unlock-banner h3 { font-size: 19px; margin-bottom: 4px; color: var(--orange); }
.unlock-banner p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Features ---------- */
.features-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}
.feature-emoji { font-size: 30px; margin-bottom: 14px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { color: var(--text-muted); font-size: 15px; max-width: 420px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--ink-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 6px 22px;
}
.faq-item summary {
  padding: 16px 0;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--text-faint);
  font-weight: 400;
  margin-left: 16px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 18px; color: var(--text-muted); font-size: 14.5px; max-width: 620px; }
.faq-item a { color: var(--teal); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  margin: 40px 24px 0;
  padding: 72px 24px;
  border-radius: 28px;
  background: var(--purple);
  text-align: center;
}
.cta-band-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.cta-band p { color: rgba(255,255,255,0.72); font-size: 17px; }
.cta-band .btn { margin-top: 8px; }
.cta-spark {
  position: absolute;
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.spark-1 { top: -34px; left: 14%; background: var(--gold); transform: rotate(-15deg); }
.spark-2 { top: -20px; right: 18%; background: var(--coral); transform: rotate(25deg) scale(0.8); }
.spark-3 { bottom: -30px; right: 8%; background: var(--teal); transform: rotate(160deg) scale(1.3); }

/* ---------- Footer ---------- */
.footer { padding: 72px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand img { height: 36px; margin-bottom: 12px; }
.footer-brand p { color: var(--text-faint); font-size: 14px; max-width: 280px; }
.footer-links { display: flex; gap: 56px; justify-content: flex-end; }
.footer-heading {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-ghost);
  margin-bottom: 14px;
}
.footer-links a {
  display: block;
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  margin-top: 24px;
  text-align: center;
  color: var(--text-ghost);
  font-size: 13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; margin-top: 8px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .packs-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; gap: 48px; }
}

@media (max-width: 760px) {
  .nav-logo { display: none; }
  .nav-links { display: none; }
  .nav-inner .btn-small { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 32px 0 24px; }
  .hero-logo { display: block; }
  .tag-pill { margin-bottom: 16px; }
  .hero-sub { max-width: none; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas { flex-direction: column; }

  .phone-mock { width: 240px; height: 400px; }
  .float-card { width: 84px; }
  .float-ohno { width: 74px; }

  .section { padding: 64px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .packs-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .unlock-banner { flex-direction: column; text-align: center; }

  .cta-band { padding: 56px 20px; margin: 24px 16px 0; border-radius: 28px; }
  .trust-inner { gap: 18px; font-size: 13px; }
}
