/* =====================
   RESET & BASE
===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-deep:    #09080f;
  --bg-card:    #13101e;
  --bg-card2:   #1a1528;
  --accent:     #c850c0;
  --accent2:    #7b5ea7;
  --neon:       #e040fb;
  --neon2:      #f06292;
  --text:       #f0eaf8;
  --text-muted: #9e8fb5;
  --radius:     14px;
  --glow:       0 0 24px rgba(200,80,192,0.45);
  --glow2:      0 0 40px rgba(224,64,251,0.25);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =====================
   UTILITY
===================== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.gradient-text {
  background: linear-gradient(135deg, var(--neon2), var(--neon), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--neon));
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 40px rgba(200,80,192,0.65);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--text);
}
.btn-outline:hover {
  background: rgba(200,80,192,0.12);
  transform: translateY(-2px);
}

/* =====================
   NAV
===================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9,8,15,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,80,192,0.15);
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
nav .btn { padding: 10px 24px; font-size: 0.95rem; }

/* =====================
   HERO
===================== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,80,192,0.18) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(240,98,146,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,80,192,0.15);
  border: 1px solid rgba(200,80,192,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--neon2);
  margin-bottom: 24px;
}
.hero-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--neon2); display: inline-block; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
}
.hero-visual-inner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1a1028, #2d1040);
  border: 1px solid rgba(200,80,192,0.2);
  box-shadow: var(--glow2), inset 0 0 60px rgba(200,80,192,0.08);
  display: flex;
  align-items: flex-end;
}
.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
}
.hero-visual-placeholder .icon {
  font-size: 5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 20px rgba(200,80,192,0.6));
}
.hero-visual-placeholder p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-card {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(9,8,15,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,80,192,0.2);
  border-radius: 14px;
  padding: 16px;
  z-index: 2;
}
.hero-card-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 4px; }
.hero-card-desc { color: var(--text-muted); font-size: 0.85rem; }
.hero-stats {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.hero-stat-pill {
  background: rgba(200,80,192,0.15);
  border: 1px solid rgba(200,80,192,0.25);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.78rem;
  color: var(--neon2);
}

/* Floating badge */
.float-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  box-shadow: var(--glow);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

/* =====================
   STATS STRIP
===================== */
#stats {
  background: var(--bg-card);
  border-top: 1px solid rgba(200,80,192,0.1);
  border-bottom: 1px solid rgba(200,80,192,0.1);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* =====================
   FEATURES
===================== */
#features { padding: 100px 0; }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}
.section-header { margin-bottom: 60px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,80,192,0.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { border-color: rgba(200,80,192,0.35); transform: translateY(-4px); box-shadow: var(--glow2); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}
.feature-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* =====================
   SHOWCASE / COMPANIONS
===================== */
#showcase { padding: 100px 0; background: var(--bg-card); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.companion-card {
  background: var(--bg-card2);
  border: 1px solid rgba(200,80,192,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.companion-card:hover { transform: translateY(-6px); box-shadow: var(--glow2); border-color: rgba(200,80,192,0.3); }

.companion-img {
  aspect-ratio: 2/3;
  background: linear-gradient(145deg, #1a1028, #2d1040);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.companion-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,8,15,0.9) 0%, transparent 50%);
}
.companion-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  z-index: 1;
}
.companion-name { font-weight: 700; font-size: 1.05rem; }
.companion-tags { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.tag {
  background: rgba(200,80,192,0.2);
  border: 1px solid rgba(200,80,192,0.3);
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 0.72rem;
  color: var(--neon2);
}
.companion-body { padding: 16px; }
.companion-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; margin-bottom: 14px; }
.companion-cta {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.92rem;
}

/* =====================
   HOW IT WORKS
===================== */
#how { padding: 100px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; }
.step { text-align: center; }
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--neon));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900;
  margin: 0 auto 20px;
  box-shadow: var(--glow);
}
.step-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { color: var(--text-muted); font-size: 0.95rem; }
.step-connector {
  display: none;
}

/* =====================
   CTA BAND
===================== */
#cta-band {
  padding: 100px 0;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(200,80,192,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 16px; }
.cta-band-sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================
   FAQ
===================== */
#faq { padding: 100px 0; }
.faq-list { margin-top: 60px; max-width: 740px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid rgba(200,80,192,0.12);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--neon2); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(200,80,192,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 24px; }

/* =====================
   FOOTER
===================== */
footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(200,80,192,0.1);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.footer-links h4 { font-weight: 700; margin-bottom: 16px; font-size: 0.9rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--neon2); }

/* Language dropdown */
.lang-dropdown { position: relative; }
.lang-dropdown-toggle {
  background: rgba(200,80,192,0.12);
  border: 1px solid rgba(200,80,192,0.25);
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--text);
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}
.lang-dropdown-toggle:hover { background: rgba(200,80,192,0.22); border-color: var(--accent); }
.lang-chevron { font-size: 0.72rem; transition: transform 0.25s; display: inline-block; }
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card2);
  border: 1px solid rgba(200,80,192,0.28);
  border-radius: 10px;
  overflow: hidden;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.lang-dropdown.open .lang-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.lang-dropdown-item:hover { background: rgba(200,80,192,0.12); color: var(--text); }
.lang-dropdown-item.active { color: var(--neon2); background: rgba(200,80,192,0.08); font-weight: 600; }
.lang-dropdown-item.active::after { content: '✓'; margin-left: auto; font-size: 0.8rem; }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,80,192,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.disclaimer { color: var(--text-muted); font-size: 0.78rem; max-width: 600px; text-align: right; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .disclaimer { text-align: left; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-band-btns { flex-direction: column; align-items: center; }
}
