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

:root {
  --black: #0a0a0f;
  --dark: #12121a;
  --card: #1a1a26;
  --border: #2a2a3a;
  --gold: #f5c842;
  --gold-dark: #d4a825;
  --blue: #3a7bd5;
  --blue-light: #5a9bf0;
  --white: #ffffff;
  --muted: #a0a0b8;
  --red: #e84040;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-header {
  background: var(--gold);
  color: var(--black);
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 5px;
}

.btn-header:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-hero {
  background: var(--gold);
  color: var(--black);
  padding: 18px 40px;
  font-size: 18px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 16px;
  box-shadow: 0 4px 24px rgba(245, 200, 66, 0.3);
}

.btn-hero:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 200, 66, 0.45);
}

.btn-cta {
  background: var(--gold);
  color: var(--black);
  padding: 20px 48px;
  font-size: 20px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 20px;
  box-shadow: 0 4px 24px rgba(245, 200, 66, 0.35);
}

.btn-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(245, 200, 66, 0.5);
}

/* ===========================
   HEADER
=========================== */
.header {
  background: rgba(10, 10, 15, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--white);
}

.logo span {
  color: var(--gold);
}

/* ===========================
   HERO
=========================== */
.hero {
  padding: 90px 0 80px;
  text-align: center;
  background: radial-gradient(ellipse at top, #1a1230 0%, var(--black) 70%);
  border-bottom: 1px solid var(--border);
}

.badge {
  display: inline-block;
  background: rgba(232, 64, 64, 0.15);
  border: 1px solid rgba(232, 64, 64, 0.4);
  color: #ff6b6b;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}

.highlight {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--white);
}

.hero-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2px;
}

/* ===========================
   PROOF BAR
=========================== */
.proof-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.proof-item strong {
  display: block;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}

.proof-item span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* ===========================
   FEATURES
=========================== */
.features {
  padding: 90px 0;
  background: var(--black);
}

.features h2,
.testimonials h2,
.cta-section h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 56px;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 26px;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
  background: var(--dark);
  padding: 90px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials h2 {
  margin-bottom: 48px;
}

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

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

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
}

.testimonial-card p {
  font-size: 14px;
  color: #d0d0e0;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: radial-gradient(ellipse at center, #1a1230 0%, var(--black) 70%);
  padding: 100px 0;
  text-align: center;
}

.cta-section p {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.trust-badges span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* ===========================
   LEGAL PAGES
=========================== */
.legal-page {
  padding: 70px 0 90px;
  background: var(--black);
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 6px;
}

.legal-date {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 36px 0 10px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  color: #b0b0c8;
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-page a {
  color: var(--gold);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
}

.footer .logo {
  margin-bottom: 12px;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===========================
   PROOF SOURCE
=========================== */
.proof-source {
  text-align: center;
  font-size: 11px;
  color: #666680;
  margin-top: 20px;
}

/* ===========================
   GAP SECTION
=========================== */
.gap-section {
  background: var(--dark);
  padding: 90px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gap-section h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

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

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

.gap-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

.gap-doing {
  background: rgba(58, 123, 213, 0.15);
  color: var(--blue-light);
  border: 1px solid rgba(58, 123, 213, 0.3);
}

.gap-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.gap-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===========================
   MISCONCEPTIONS
=========================== */
.misconceptions {
  background: var(--black);
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}

.misconceptions h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

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

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

.misc-belief {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.misc-truth {
  font-size: 14px;
  color: #d0d0e0;
  line-height: 1.7;
}

/* ===========================
   SOURCES BAR
=========================== */
.sources-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.sources-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #555570;
  margin-bottom: 16px;
}

.sources-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.source-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.2px;
  padding: 0 18px;
}

.source-divider {
  color: var(--border);
  font-size: 18px;
  line-height: 1;
}

/* ===========================
   SCENARIOS
=========================== */
.scenarios {
  background: var(--black);
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}

.scenarios h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  text-align: center;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

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

.scenario-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scenario-icon {
  font-size: 32px;
}

.scenario-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.scenario-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.scenario-catch {
  font-size: 13px;
  color: #7dc87d;
  background: rgba(100, 200, 100, 0.08);
  border: 1px solid rgba(100, 200, 100, 0.2);
  border-radius: 6px;
  padding: 12px 14px;
  line-height: 1.6;
  margin-top: 4px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .features-grid,
  .testimonials-grid,
  .gap-grid,
  .misc-grid,
  .scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-grid,
  .testimonials-grid,
  .gap-grid,
  .misc-grid,
  .scenarios-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 60px 0 56px;
  }

  .btn-hero,
  .btn-cta {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}
