/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0D0612;
  --bg2:       #120819;
  --bg3:       #1A0A20;
  --pink:      #FF6B9D;
  --pink-dim:  #CC3D6A;
  --purple:    #B14DFF;
  --purple2:   #7C4DFF;
  --gold:      #FFC857;
  --white:     #FFFFFF;
  --white70:   rgba(255,255,255,0.70);
  --white40:   rgba(255,255,255,0.40);
  --white15:   rgba(255,255,255,0.15);
  --white08:   rgba(255,255,255,0.08);

  --font: 'Inter', 'Segoe UI', sans-serif;
  --radius: 20px;
  --section-pad: 100px 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

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

/* ── Gradient text ───────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,157,0.35);
}
.btn-primary:hover { box-shadow: 0 8px 28px rgba(255,107,157,0.50); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--white40);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white70); background: var(--white08); }
.btn-white {
  background: #fff;
  color: #0D0612;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.4); }
.btn-large { padding: 16px 32px; font-size: 16px; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(13,6,18,0.75);
  border-bottom: 1px solid var(--white08);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}
.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  color: var(--white70);
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: auto; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--purple);
  top: -200px; right: -200px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--pink);
  bottom: -100px; left: -100px;
}
.orb-3 {
  width: 300px; height: 300px;
  background: var(--purple2);
  top: 40%; left: 35%;
  opacity: 0.12;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hero-text {
  flex: 1;
  min-width: 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--white70);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--white70);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-note {
  font-size: 12px;
  color: var(--white40);
}

/* Phone mockup */
.hero-phones {
  flex: 0 0 auto;
  position: relative;
  width: 300px;
  height: 580px;
}
.phone-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.phone {
  position: absolute;
  width: 240px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1.5px rgba(255,255,255,0.1);
}
.phone-front {
  bottom: 0; right: 0;
  height: 520px;
  z-index: 2;
}
.phone-back {
  top: 0; left: 0;
  height: 500px;
  z-index: 1;
  opacity: 0.7;
  transform: rotate(-4deg) scale(0.92);
}
.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
  background: #111;
}
.phone-char {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.phone-ui-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px 24px;
}
.phone-badge-pill {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.phone-char-name {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.phone-char-tag {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  margin-bottom: 10px;
}
.phone-intimacy-wrap { margin-bottom: 10px; }
.phone-intimacy-bar {
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  overflow: hidden;
}
.phone-intimacy-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-radius: 2px;
}
.phone-cta-pill {
  display: inline-block;
  background: #fff;
  color: #111;
  border-radius: 24px;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  align-self: flex-start;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--white40);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Section commons ─────────────────────────────────────── */
.section { padding: var(--section-pad); }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: var(--white70);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 56px;
}

/* ── Features ────────────────────────────────────────────── */
.features { background: var(--bg2); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s, border-color .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,107,157,0.35);
}
.feature-card-large {
  grid-column: span 2;
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--white70);
  line-height: 1.65;
}

/* Chat demo */
.feature-chat-demo {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat-bubble {
  padding: 10px 15px;
  border-radius: 18px;
  font-size: 13px;
  max-width: 80%;
  line-height: 1.4;
}
.chat-incoming {
  background: var(--white15);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-outgoing {
  background: linear-gradient(135deg, var(--pink-dim), var(--pink));
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Intimacy demo */
.intimacy-demo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.intimacy-stage {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--white08);
  border: 1px solid var(--white15);
  color: var(--white70);
}
.active-stage {
  background: rgba(255,107,157,0.15);
  border-color: var(--pink);
  color: var(--pink);
}
.intimacy-arrow { color: var(--white40); font-size: 14px; }

/* Album demo */
.album-demo {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.album-thumb {
  width: 64px; height: 80px;
  border-radius: 12px;
  background: var(--white15);
  border: 1px solid var(--white15);
}
.album-thumb.unlocked {
  background: linear-gradient(135deg, rgba(177,77,255,0.3), rgba(255,107,157,0.3));
  border-color: rgba(177,77,255,0.4);
}
.album-thumb.locked {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white40);
}

/* Gift demo */
.gift-demo {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.gift-item {
  flex: 1;
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: 14px;
  padding: 14px 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.gift-item-highlight {
  border-color: rgba(255,107,157,0.5);
  background: rgba(255,107,157,0.08);
}
.gift-emoji { font-size: 28px; }
.gift-name { font-size: 11px; color: var(--white70); }
.gift-cost { font-size: 11px; font-weight: 600; color: var(--gold); }

/* Notif demo */
.notif-demo { margin-top: 18px; }
.notif-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid var(--white15);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.notif-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}
.notif-title { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.notif-body { font-size: 12px; color: var(--white70); }

/* ── Characters ──────────────────────────────────────────── */
.characters { background: var(--bg); }
.chars-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.char-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--white15);
  background: var(--bg3);
  position: relative;
  height: 580px;
  transition: transform .2s, box-shadow .2s;
}
.char-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.char-card-featured {
  border-color: rgba(177,77,255,0.5);
  box-shadow: 0 0 40px rgba(177,77,255,0.15);
}
.char-img-wrap {
  position: absolute;
  inset: 0;
}
.char-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.char-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.05) 0%,
    transparent 30%,
    rgba(13,6,18,0.6) 60%,
    rgba(13,6,18,0.97) 100%);
}
.char-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
}
.char-badge-gold {
  background: rgba(255,200,87,0.2);
  border-color: var(--gold);
  color: var(--gold);
}
.char-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px 24px;
  z-index: 2;
}
.char-info h3 { font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.char-tag { font-size: 13px; color: var(--white70); line-height: 1.5; margin-bottom: 12px; }
.char-vibes { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.vibe {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 11px;
  color: var(--white70);
}
.char-quote {
  font-size: 13px;
  font-style: italic;
  color: var(--white40);
  padding: 10px 14px;
  border-left: 2px solid var(--pink);
  background: rgba(255,107,157,0.06);
  border-radius: 0 8px 8px 0;
}
.chars-note {
  text-align: center;
  color: var(--white40);
  font-size: 13px;
  margin-top: 36px;
}

/* ── How it works ────────────────────────────────────────── */
.how-it-works { background: var(--bg2); }
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px;
  background: var(--white08);
  border-radius: var(--radius);
  border: 1px solid var(--white15);
}
.step-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  align-self: center;
  flex-shrink: 0;
  margin: 0 -1px;
}
.step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--pink);
  margin-bottom: 8px;
}
.step-icon { font-size: 36px; margin-bottom: 14px; }
.step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--white70); line-height: 1.65; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.price-card {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  position: relative;
  transition: transform .2s, border-color .2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card-featured {
  border-color: var(--pink);
  background: rgba(255,107,157,0.06);
  box-shadow: 0 0 30px rgba(255,107,157,0.15);
}
.price-card-gold {
  border-color: var(--gold);
  background: rgba(255,200,87,0.05);
}
.price-popular-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.price-coins { font-size: 16px; font-weight: 700; }
.price-bonus {
  font-size: 10px;
  color: var(--pink);
  font-weight: 600;
  background: rgba(255,107,157,0.12);
  padding: 2px 8px;
  border-radius: 10px;
}
.price-amount {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.price-perks {
  list-style: none;
  font-size: 12px;
  color: var(--white70);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.price-perks li::before { content: "✓  "; color: var(--pink); font-weight: 700; }
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255,200,87,0.08);
  border: 1px solid rgba(255,200,87,0.3);
  border-radius: 14px;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 12px;
}
.pricing-note-small {
  font-size: 12px;
  color: var(--white40);
  text-align: center;
}

/* ── Download ────────────────────────────────────────────── */
.download { background: var(--bg2); }
.download-card {
  background: linear-gradient(135deg, rgba(177,77,255,0.12), rgba(255,107,157,0.12));
  border: 1px solid rgba(177,77,255,0.3);
  border-radius: 28px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dl-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}
.dl-orb-1 { width: 300px; height: 300px; background: var(--purple); top: -100px; right: -80px; }
.dl-orb-2 { width: 250px; height: 250px; background: var(--pink); bottom: -80px; left: -60px; }
.dl-icon {
  width: 90px;
  height: 90px;
  border-radius: 22px;
  margin: 0 auto 24px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  position: relative;
}
.download-card h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.download-card p { font-size: 16px; color: var(--white70); margin-bottom: 32px; }
.dl-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--white08);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
}
.footer-brand img { width: 28px; height: 28px; border-radius: 7px; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { font-size: 13px; color: var(--white70); transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-legal { font-size: 12px; color: var(--white40); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-large { grid-column: span 2; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-phones { display: none; }
  .chars-row { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .steps-row { flex-direction: column; }
  .step-divider { width: 2px; height: 30px; background: linear-gradient(180deg, var(--pink), var(--purple)); align-self: center; margin: 0; }
}

@media (max-width: 700px) {
  :root { --section-pad: 64px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .dl-actions { flex-direction: column; align-items: center; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { background: var(--bg); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 780px;
}
.faq-item {
  background: var(--white08);
  border: 1px solid var(--white15);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(255,107,157,0.4); }
.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--white70);
  line-height: 1.7;
}

/* ── WordPress admin bar offset ─────────────────────────── */
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
}
