/* Imagine You — marketing site
   Palette mirrors the app's "Cosmic Gold" theme. */
:root {
  --bg: #0B0714;
  --bg-2: #140C26;
  --card: #1D1636;
  --card-2: #15102A;
  --stroke: rgba(255, 255, 255, 0.09);
  --gold: #F4C56A;
  --purple: #9E7BFF;
  --rose: #FF97B7;
  --text: #FFFFFF;
  --text-2: rgba(255, 255, 255, 0.66);
  --text-3: rgba(255, 255, 255, 0.42);
  --radius: 22px;
  --maxw: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue",
          Inter, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(158, 123, 255, 0.22), transparent 60%),
    radial-gradient(900px 600px at 0% 10%, rgba(255, 151, 183, 0.16), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(11, 7, 20, 0.72);
  border-bottom: 1px solid var(--stroke);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 18px; color: var(--text); }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--text-2); font-size: 15px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  color: #1a1030; background: linear-gradient(135deg, var(--gold), var(--rose));
  border: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 10px 30px rgba(244, 197, 106, 0.25);
}
.btn:hover { transform: translateY(-1px); text-decoration: none; box-shadow: 0 14px 38px rgba(244, 197, 106, 0.35); }
.btn.ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--stroke); box-shadow: none;
}
.btn.ghost:hover { border-color: rgba(255,255,255,0.3); }

/* Hero */
.hero { padding: 84px 0 40px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 18px;
}
.hero h1 { font-size: 54px; line-height: 1.05; margin: 0 0 20px; letter-spacing: -0.02em; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--gold), var(--rose), var(--purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 19px; color: var(--text-2); margin: 0 0 30px; max-width: 34ch; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .note { color: var(--text-3); font-size: 14px; margin-top: 16px; }

.phone {
  justify-self: center; width: 300px; border-radius: 42px; padding: 10px;
  background: linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  border: 1px solid var(--stroke);
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
}
.phone img { width: 100%; border-radius: 34px; display: block; }

/* Sections */
section.block { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-size: 36px; margin: 0 0 14px; letter-spacing: -0.01em; }
.section-head p { color: var(--text-2); font-size: 17px; margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--stroke); border-radius: var(--radius); padding: 28px;
}
.step .num {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; color: #1a1030; background: linear-gradient(135deg, var(--gold), var(--rose));
  margin-bottom: 16px;
}
.step h3 { margin: 0 0 8px; font-size: 19px; }
.step p { margin: 0; color: var(--text-2); font-size: 15px; }

/* Packs / features grid */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--stroke); border-radius: var(--radius); padding: 26px;
}
.card .dot { width: 40px; height: 40px; border-radius: 50%; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--purple), var(--rose)); }
.card h3 { margin: 0 0 8px; font-size: 19px; }
.card p { margin: 0; color: var(--text-2); font-size: 15px; }

/* Showcase */
.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.showcase .phone { width: 100%; }

/* Pricing */
.price-card {
  max-width: 460px; margin: 0 auto; text-align: center;
  background: linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid rgba(244, 197, 106, 0.4); border-radius: 26px; padding: 36px;
}
.price-card .badge {
  display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .12em;
  color: #1a1030; background: var(--gold); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.price-card .amount { font-size: 46px; font-weight: 800; }
.price-card .amount span { font-size: 18px; color: var(--text-2); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 22px 0; text-align: left; }
.price-card li { padding: 9px 0 9px 30px; position: relative; color: var(--text-2); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 800; }
.price-card .fine { color: var(--text-3); font-size: 13px; margin-top: 16px; }

/* Content pages (privacy/terms/support) */
.doc { padding: 60px 0 90px; }
.doc .wrap { max-width: 780px; }
.doc h1 { font-size: 40px; margin: 0 0 8px; letter-spacing: -0.01em; }
.doc .updated { color: var(--text-3); margin: 0 0 36px; font-size: 14px; }
.doc h2 { font-size: 23px; margin: 38px 0 12px; }
.doc h3 { font-size: 18px; margin: 26px 0 8px; }
.doc p, .doc li { color: var(--text-2); font-size: 16px; }
.doc ul { padding-left: 22px; }
.doc a { text-decoration: underline; }
.doc .lead { color: var(--text); font-size: 18px; }

/* FAQ */
.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--stroke); border-radius: 16px; padding: 4px 20px; margin-bottom: 12px;
  background: var(--card-2);
}
.faq summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--gold); }
.faq p { color: var(--text-2); margin: 0 0 16px; }

/* CTA band */
.cta-band {
  margin: 20px auto 0; text-align: center; border-radius: 28px; padding: 56px 24px;
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(158,123,255,0.28), transparent 60%),
    linear-gradient(180deg, var(--card), var(--card-2));
  border: 1px solid var(--stroke);
}
.cta-band h2 { font-size: 34px; margin: 0 0 12px; }
.cta-band p { color: var(--text-2); margin: 0 0 26px; }

/* Footer */
footer { border-top: 1px solid var(--stroke); padding: 40px 0; margin-top: 40px; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
footer .brand { font-size: 16px; }
footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
footer .links a { color: var(--text-2); font-size: 14px; }
footer .copy { color: var(--text-3); font-size: 13px; width: 100%; }

/* Responsive */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero .cta-row { justify-content: center; }
  .hero h1 { font-size: 42px; }
  .steps, .grid3, .showcase { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .showcase .phone:nth-child(3) { display: none; }
}
