/* ============ The PopDrop Club — dark minimal ============ */

:root {
  --bg: #0B0B0E;          /* near-black */
  --surface: #131318;     /* card background */
  --surface-2: #18181F;
  --border: #26262E;      /* hairline borders */
  --text: #F4F4F5;        /* near-white */
  --muted: #A1A1AA;       /* secondary text */
  --accent: #5B7CFA;      /* calm blue */
  --accent-soft: rgba(91, 124, 250, 0.12);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

em { font-style: normal; color: var(--accent); }

a { color: inherit; }

/* ---------- Nav ---------- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5vw;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 11, 14, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav-links a:hover:not(.btn) { color: var(--text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 13px 26px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: #6E8BFF; transform: translateY(-1px); }
.btn-small { padding: 8px 16px; font-size: 0.88rem; color: #fff !important; }
.btn-big { font-size: 1.02rem; padding: 15px 32px; }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface); border-color: #3A3A44; }
.btn-full { display: block; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 110px 5vw 90px;
  max-width: 860px;
  margin: 0 auto;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid rgba(91, 124, 250, 0.35);
  color: #AEBFFF;
  border-radius: 999px;
  padding: 6px 16px;
  font-weight: 500;
  font-size: 0.82rem;
  margin-bottom: 30px;
}
.badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 24px;
}
.hero .sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 38px;
}
.hero .sub strong { color: var(--text); }
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.fine { font-size: 0.85rem; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 90px 5vw; max-width: 1060px; margin: 0 auto; }
.eyebrow {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  margin-bottom: 48px;
  text-align: center;
}

/* ---------- Cards grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease;
}
.card:hover { border-color: #3A3A44; }
.card-num {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.93rem; color: var(--muted); }
.step-links { margin-top: 14px; }
.step-links a {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent);
  text-decoration: none;
  margin-right: 16px;
}
.step-links a:hover { text-decoration: underline; }

/* ---------- Videos ---------- */
.videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 20px;
}
.video-placeholder .play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.videos-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 26px;
}
.videos-note a { color: var(--accent); text-decoration: none; }
.videos-note a:hover { text-decoration: underline; }

/* ---------- Won't-do list ---------- */
.wont-list {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
}
.wont-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px 18px 54px;
  margin-bottom: 12px;
  position: relative;
  font-size: 0.97rem;
  color: var(--muted);
}
.wont-list li strong { color: var(--text); }
.wont-list li::before {
  content: "✕";
  position: absolute;
  left: 22px;
  top: 18px;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--surface);
  border: 1px solid rgba(91, 124, 250, 0.45);
  border-radius: 20px;
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 0 60px rgba(91, 124, 250, 0.08);
}
.price-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: #AEBFFF;
  border: 1px solid rgba(91, 124, 250, 0.35);
  border-radius: 999px;
  padding: 5px 14px;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.price { margin-bottom: 8px; }
.price-big {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price span:not(.price-big) { color: var(--muted); }
.price-note { font-size: 0.92rem; color: var(--muted); margin-bottom: 26px; }
.price-note strong { color: var(--text); }
.price-list {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}
.price-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--accent);
  font-weight: 700;
}
.price-card .fine { margin-top: 16px; }

/* ---------- About ---------- */
.about-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.about-photo { flex: 0 0 250px; }
.photo-placeholder {
  width: 250px; height: 310px;
  border: 1px dashed #3A3A44;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.9rem;
}
.about-photo img {
  width: 250px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-text { flex: 1 1 380px; max-width: 560px; }
.about-text h2 { text-align: left; margin-bottom: 18px; }
.about-text p { margin-bottom: 14px; color: var(--muted); }

/* ---------- FAQ ---------- */
#faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 auto 10px;
  max-width: 700px;
  overflow: hidden;
}
#faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 18px 22px;
  list-style: none;
  position: relative;
}
#faq summary::-webkit-details-marker { display: none; }
#faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  color: var(--accent);
  font-weight: 700;
}
#faq details[open] summary::after { content: "–"; }
#faq details p {
  padding: 0 22px 18px;
  font-size: 0.94rem;
  color: var(--muted);
}
#faq details a { color: var(--accent); }

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { margin-bottom: 32px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 48px 5vw;
}
.footer-disclaimer {
  max-width: 660px;
  margin: 0 auto 26px;
  font-size: 0.83rem;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 0.8rem; color: #6B6B74; }

/* ---------- Legal pages ---------- */
.legal {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 5vw 80px;
}
.legal h1 { font-size: 1.9rem; margin-bottom: 8px; }
.legal .updated { color: var(--muted); font-size: 0.88rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.15rem; margin: 32px 0 12px; text-align: left; }
.legal p, .legal li { margin-bottom: 12px; font-size: 0.95rem; color: var(--muted); }
.legal ul { padding-left: 22px; }
.legal a { color: var(--accent); }

/* ---------- Mobile ---------- */
@media (max-width: 640px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 70px 6vw 56px; }
  .section { padding: 60px 6vw; }
}
