:root {
  --bg: #0c0510;
  --bg-alt: #160a1d;
  --card: #1b0e24;
  --pink: #ff2d9e;
  --pink-light: #ff7ac6;
  --pink-glow: rgba(255, 45, 158, 0.45);
  --text: #f5e9f2;
  --text-dim: #c5aec3;
  --border: rgba(255, 122, 198, 0.18);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 16px; }

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); text-align: center; }
h3 { font-size: 1.25rem; }

p { color: var(--text-dim); margin: 0 0 16px; }

a { color: var(--pink-light); text-decoration: none; }

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

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, #c026d3 100%);
  color: #fff;
  box-shadow: 0 0 24px var(--pink-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px var(--pink-glow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 5, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pink-light);
  text-shadow: 0 0 18px var(--pink-glow);
}

.logo-dot { color: var(--text); }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-dim);
  font-weight: 500;
}

.nav-links a:hover { color: var(--pink-light); }

.btn-header { padding: 10px 22px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 64px 0 96px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 45, 158, 0.18), transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(192, 38, 211, 0.15), transparent 50%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--pink-light);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.accent { color: var(--pink-light); }

.hero-lead { font-size: 1.1rem; max-width: 520px; }

.cta-form {
  display: flex;
  gap: 12px;
  margin: 28px 0 12px;
  max-width: 480px;
}

.cta-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 1rem;
  min-width: 0;
}

.cta-form input[type="email"]::placeholder { color: var(--text-dim); }
.cta-form input[type="email"]:focus { outline: 2px solid var(--pink); }

.cta-note {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.age-disclaimer {
  font-size: 0.78rem;
  color: #8a7488;
}

.hero-image img {
  border-radius: 24px;
  box-shadow: 0 0 60px var(--pink-glow);
  border: 1px solid var(--border);
}

/* Characters */
.characters { padding: 96px 0; }

.character-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.character-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}

.character-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, #c026d3 100%);
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 0 20px var(--pink-glow);
}

.character-icon svg { width: 28px; height: 28px; }

.character-card h3 { color: var(--pink-light); }
.character-card p { margin: 0; }

/* Features */
.features { padding: 96px 0; background: var(--bg-alt); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.feature-card h3 { color: var(--pink-light); }
.feature-card p { margin: 0; }

/* How it works */
.how-it-works { padding: 96px 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.step { text-align: center; padding: 0 12px; }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, #c026d3 100%);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 0 20px var(--pink-glow);
}

.step p { margin: 0; }

/* FAQ */
.faq { padding: 96px 0; background: var(--bg-alt); }

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-list details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.faq-list p { margin: 12px 0 0; }

/* CTA banner */
.cta-banner {
  padding: 96px 0;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 45, 158, 0.25), transparent 60%),
    var(--bg);
}

.cta-banner .cta-form { margin: 32px auto 12px; }
.cta-banner p.cta-note { text-align: center; }

/* Footer */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.site-footer p { margin: 0; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .btn-header { display: none; }
  .nav-toggle { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .character-grid { grid-template-columns: 1fr; }
  .cta-form { flex-direction: column; }
  .header-inner { padding: 14px 20px; }
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-alt);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
