:root {
  --pink: #e040fb;
  --pink-dim: #b02cc5;
  --pink-glow: rgba(224,64,251,0.18);
  --blue: #4fc3f7;
  --blue-dim: #0288d1;
  --blue-glow: rgba(79,195,247,0.15);
  --white: #f0f0f0;
  --white-dim: rgba(240,240,240,0.7);
  --bg: #050508;
  --bg2: #0a0a10;
  --bg3: #0f0f18;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

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

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224,64,251,0.12);
}
.nav-logo { display: flex; align-items: baseline; gap: 4px; }
.nav-logo .r { font-family: 'Dancing Script', cursive; font-size: 22px; color: var(--pink); }
.nav-logo .h { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.05em; color: var(--white); }
.nav-links { display: flex; gap: 2rem; font-size: 13px; color: var(--white-dim); }
.nav-links a:hover { color: var(--pink); transition: color 0.2s; }
.nav-cta {
  background: var(--pink); color: #000;
  font-size: 13px; font-weight: 500;
  padding: 8px 20px; border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: #f06fff; transform: scale(1.04); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 200%; height: 55%;
  background:
    linear-gradient(to top, rgba(224,64,251,0.12) 0%, transparent 60%),
    linear-gradient(to top right, rgba(79,195,247,0.08) 0%, transparent 50%),
    linear-gradient(to top left, rgba(224,64,251,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 1.2rem;
  animation: fadeUp 0.8s ease both;
}
.hero-title { line-height: 1; margin-bottom: 1.5rem; animation: fadeUp 0.8s 0.15s ease both; }
.hero-title .rizz {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(64px, 12vw, 130px);
  color: var(--pink); display: block;
  text-shadow: 0 0 40px rgba(224,64,251,0.5), 0 0 80px rgba(224,64,251,0.2);
}
.hero-title .heaven {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 14vw, 150px);
  letter-spacing: 0.06em; color: var(--white); display: block;
  text-shadow: 0 0 60px rgba(255,255,255,0.3), 0 0 120px rgba(255,255,255,0.1);
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--white-dim);
  max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; font-weight: 300;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.8s 0.45s ease both; }
.btn-primary {
  background: var(--pink); color: #000; font-weight: 500; font-size: 15px;
  padding: 14px 36px; border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(224,64,251,0.4);
  display: inline-block;
}
.btn-primary:hover { background: #f06fff; transform: translateY(-2px); box-shadow: 0 0 40px rgba(224,64,251,0.6); }
.btn-secondary {
  background: transparent; color: var(--white); font-size: 15px;
  padding: 13px 34px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--pink); color: var(--pink); transform: translateY(-2px); }
.hero-pills {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-top: 2.5rem; animation: fadeUp 0.8s 0.6s ease both;
}
.pill {
  font-size: 11px; letter-spacing: 0.06em;
  padding: 5px 14px; border-radius: 100px;
  border: 1px solid rgba(224,64,251,0.3);
  color: rgba(224,64,251,0.9); background: rgba(224,64,251,0.06);
}

/* ── JOIN BAR ── */
.join-bar {
  background: rgba(224,64,251,0.08);
  border-top: 1px solid rgba(224,64,251,0.2);
  border-bottom: 1px solid rgba(224,64,251,0.2);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; text-align: center;
}
.join-bar span { font-size: 14px; color: var(--white-dim); }
.join-bar strong { color: var(--pink); }
.join-bar a {
  background: var(--pink); color: #000;
  font-size: 13px; font-weight: 500;
  padding: 8px 22px; border-radius: 100px;
  transition: background 0.2s;
}
.join-bar a:hover { background: #f06fff; }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; position: relative; z-index: 1; }
.section-inner { max-width: 1000px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); margin-bottom: 0.8rem; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 58px);
  letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 1rem;
}
.section-title span { color: var(--pink); }
.section-desc { font-size: 16px; color: var(--white-dim); font-weight: 300; max-width: 580px; line-height: 1.7; margin-bottom: 3rem; }

/* ── STATS ── */
.stats-bg { background: var(--bg2); }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px; border: 1px solid var(--card-border); border-radius: 20px; overflow: hidden;
}
.stat-item {
  background: var(--card); padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid var(--card-border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px; letter-spacing: 0.02em;
  color: var(--pink); text-shadow: 0 0 30px rgba(224,64,251,0.4); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--white-dim); margin-top: 6px; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.feature-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 1.5rem;
  transition: border-color 0.3s, transform 0.2s, background 0.3s;
}
.feature-card:hover { border-color: rgba(224,64,251,0.35); background: rgba(224,64,251,0.06); transform: translateY(-4px); }
.feature-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 1rem;
  background: rgba(224,64,251,0.1); border: 1px solid rgba(224,64,251,0.2);
}
.feature-icon.blue { background: rgba(79,195,247,0.1); border-color: rgba(79,195,247,0.2); }
.feature-title { font-size: 15px; font-weight: 500; margin-bottom: 6px; }
.feature-desc { font-size: 13px; color: var(--white-dim); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.review-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 1.5rem;
  transition: border-color 0.3s, transform 0.2s;
}
.review-card:hover { border-color: rgba(224,64,251,0.3); transform: translateY(-3px); }
.review-stars { color: var(--pink); font-size: 14px; margin-bottom: 0.8rem; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--white-dim); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(224,64,251,0.2); border: 1px solid rgba(224,64,251,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: var(--pink); text-transform: uppercase;
  flex-shrink: 0;
}
.review-name { font-size: 13px; font-weight: 500; }
.review-tag { font-size: 11px; color: var(--white-dim); margin-top: 2px; }

/* ── WHO ── */
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.who-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 1.4rem;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color 0.3s, transform 0.2s;
}
.who-card:hover { border-color: rgba(79,195,247,0.3); transform: translateY(-3px); }
.who-emoji { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.who-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.who-desc { font-size: 12px; color: var(--white-dim); line-height: 1.5; }

/* ── COMPARISON ── */
.comparison-bg { background: var(--bg3); }
.compare-table {
  width: 100%; border-collapse: collapse;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--card-border);
}
.compare-table th { padding: 1rem 1.5rem; font-size: 13px; font-weight: 500; text-align: left; letter-spacing: 0.05em; }
.compare-table th:first-child { background: rgba(255,255,255,0.03); color: var(--white-dim); }
.compare-table th.rh { background: rgba(224,64,251,0.12); color: var(--pink); }
.compare-table th.other { background: rgba(255,255,255,0.02); color: rgba(255,255,255,0.4); }
.compare-table td { padding: 0.9rem 1.5rem; font-size: 14px; border-top: 1px solid var(--card-border); }
.compare-table td:first-child { color: var(--white-dim); font-size: 13px; }
.compare-table td.yes { color: var(--pink); font-weight: 500; }
.compare-table td.no { color: rgba(255,255,255,0.25); }
.compare-table tr:hover td { background: rgba(224,64,251,0.03); }
.compare-highlight {
  background: rgba(224,64,251,0.07); border: 1px solid rgba(224,64,251,0.2);
  border-radius: 14px; padding: 1.4rem 1.8rem; margin-top: 2rem;
  font-size: 15px; color: var(--white-dim); line-height: 1.7;
}
.compare-highlight strong { color: var(--pink); }

/* ── HOW IT WORKS ── */
.howto-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.howto-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 1.5rem;
  transition: border-color 0.3s, transform 0.2s;
}
.howto-card:hover { border-color: rgba(79,195,247,0.25); transform: translateY(-3px); }
.howto-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 42px;
  color: rgba(224,64,251,0.25); line-height: 1; margin-bottom: 0.5rem;
}
.howto-title { font-size: 15px; font-weight: 500; margin-bottom: 8px; }
.howto-desc { font-size: 13px; color: var(--white-dim); line-height: 1.6; }

/* ── BLOG ── */
.blog-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 18px; padding: 2.5rem; max-width: 760px;
}
.blog-card p { font-size: 15px; color: var(--white-dim); line-height: 1.75; margin-bottom: 1rem; }
.blog-card p strong { color: var(--white); }
.blog-section-head {
  font-size: 13px; font-weight: 500; color: var(--pink);
  text-transform: uppercase; letter-spacing: 0.1em; margin: 1.5rem 0 0.5rem;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.faq-item {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(224,64,251,0.3); }
.faq-q {
  padding: 1.2rem 1.5rem; font-size: 15px; font-weight: 500;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--pink); }
.faq-arrow {
  color: var(--pink); font-size: 16px;
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 1.5rem;
  font-size: 14px; color: var(--white-dim); line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 1.5rem 1.2rem; }

/* ── CTA ── */
.cta-section {
  text-align: center; padding: 8rem 2rem;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(224,64,251,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-title { font-size: clamp(40px, 8vw, 80px); }
.cta-section .section-desc { margin: 0 auto 2.5rem; }
.invite-link { font-size: 13px; color: rgba(224,64,251,0.6); letter-spacing: 0.08em; margin-top: 1.2rem; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--card-border);
  padding: 2rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-logo { display: flex; align-items: baseline; gap: 4px; }
.footer-logo .r { font-family: 'Dancing Script', cursive; font-size: 18px; color: var(--pink); }
.footer-logo .h { font-family: 'Bebas Neue', sans-serif; font-size: 18px; color: var(--white-dim); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: var(--pink); transition: color 0.2s; }
.footer-kw {
  font-size: 11px; color: rgba(255,255,255,0.15);
  max-width: 100%; padding: 1rem 2.5rem;
  background: var(--bg2); line-height: 1.8;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.2rem; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--card-border); }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 0.7rem 0.8rem; }
  .blog-card { padding: 1.5rem; }
  .faq-q { font-size: 14px; }
}
