/* =============================================
   CREATORS LAB — Dark Theme Stylesheet
   Theme: Black / Blue / White
   Font: Inter
   ============================================= */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #080808;
  color: #e0e0e0;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: 1.25rem; font-weight: 800; }
h4 { font-size: 1.1rem; font-weight: 700; }

p { color: #aaa; font-size: 1.05rem; }

strong { color: #fff; font-weight: 800; }

/* ===== GLOW TEXT — key highlighted words ===== */
.glow-text {
  color: #4da3ff;
  font-weight: 800;
  text-shadow:
    0 0 8px rgba(77, 163, 255, 0.55),
    0 0 20px rgba(77, 163, 255, 0.25);
}

/* ===== BLUE HIGHLIGHT SPANS ===== */
.highlight {
  color: #0A84FF;
  font-weight: 900;
  text-shadow:
    0 0 12px rgba(10, 132, 255, 0.5),
    0 0 30px rgba(10, 132, 255, 0.2);
}

/* ===== LAYOUT ===== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 0;
}

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

.logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
}

.logo span {
  color: #0A84FF;
  text-shadow: 0 0 14px rgba(10, 132, 255, 0.4);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.btn-nav {
  padding: 10px 20px;
  background: #0A84FF;
  color: #fff;
  font-size: 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 0 16px rgba(10, 132, 255, 0.3);
}

.btn-nav:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 22px rgba(10, 132, 255, 0.55);
}

.btn-primary {
  padding: 16px 36px;
  background: #0A84FF;
  color: #fff;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(10, 132, 255, 0.4);
}

.btn-primary:hover {
  background: #1a8fff;
  transform: scale(1.03);
  box-shadow: 0 6px 36px rgba(10, 132, 255, 0.65);
}

.btn-large {
  padding: 18px 44px;
  font-size: 1.1rem;
}

/* ===== HERO ===== */
.hero {
  padding: 110px 0 90px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(10, 132, 255, 0.12) 0%, transparent 70%),
    #080808;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

/* Subtle grid bg */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,132,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,132,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.badge {
  display: inline-block;
  background: rgba(10, 132, 255, 0.12);
  color: #5eaaff;
  border: 1px solid rgba(10, 132, 255, 0.3);
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.hero h1 { max-width: 840px; }

.hero h1 .muted {
  color: #555;
  font-weight: 700;
  font-size: 0.88em;
}

.hero-sub {
  max-width: 660px;
  font-size: 1.12rem;
  color: #888;
}

.trust-line {
  font-size: 0.85rem;
  color: #555;
  margin-top: -8px;
}

/* ===== VIDEO ===== */
.video-section {
  padding: 60px 0 80px;
  background: #0d0d0d;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 60px rgba(10, 132, 255, 0.08);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== PROBLEM SECTION ===== */
.problem-section { background: #080808; }

.problem-body {
  max-width: 700px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.problem-body p { font-size: 1.08rem; }

.highlight-line {
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  color: #0A84FF !important;
  text-align: center;
  margin-top: 10px;
  text-shadow: 0 0 20px rgba(10, 132, 255, 0.5) !important;
}

/* ===== SECTION LABELS ===== */
.section-title {
  text-align: center;
  margin-bottom: 14px;
}

.section-sub {
  text-align: center;
  font-size: 1.1rem;
  color: #777;
  max-width: 620px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0A84FF;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(10, 132, 255, 0.4);
}

/* ===== SYSTEM SECTION ===== */
.system-section { background: #0d0d0d; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.step-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 36px 28px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.step-card:hover {
  border-color: rgba(10, 132, 255, 0.35);
  box-shadow: 0 0 30px rgba(10, 132, 255, 0.1), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.step-number {
  font-size: 3.2rem;
  font-weight: 900;
  color: rgba(10, 132, 255, 0.18);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -3px;
}

.step-card h3 { margin-bottom: 10px; color: #fff; }
.step-card p { font-size: 0.97rem; color: #888; }

.system-tagline {
  text-align: center;
  font-size: 1.1rem;
  color: #777;
  margin-top: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PROOF / STATS ===== */
.proof-section { background: #080808; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.stat-card {
  background: linear-gradient(135deg, #0d1a2e 0%, #0a1424 100%);
  border: 1px solid rgba(10, 132, 255, 0.2);
  border-radius: 18px;
  padding: 32px 20px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.stat-card:hover {
  border-color: rgba(10, 132, 255, 0.5);
  box-shadow: 0 0 30px rgba(10, 132, 255, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #0A84FF;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 0 16px rgba(10, 132, 255, 0.5);
}

.stat-text {
  font-size: 1.05rem !important;
  line-height: 1.3 !important;
}

.stat-label {
  font-size: 0.82rem;
  color: #557;
  font-weight: 600;
  color: #6688aa;
}

.proof-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.proof-block {
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.proof-block:hover {
  border-color: rgba(10, 132, 255, 0.25);
  box-shadow: 0 0 24px rgba(10, 132, 255, 0.08);
}

.proof-icon { font-size: 2.4rem; margin-bottom: 12px; }
.proof-block h4 { margin-bottom: 10px; color: #fff; }
.proof-block p { font-size: 0.97rem; color: #888; }

/* ===== INCLUDED / WHAT YOU GET ===== */
.included-section { background: #0d0d0d; }

.included-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.included-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 26px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.included-card:hover {
  border-color: rgba(10, 132, 255, 0.3);
  box-shadow: 0 0 20px rgba(10, 132, 255, 0.07);
}

.included-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 6px;
}

.included-title {
  font-weight: 700;
  color: #e8e8e8;
  font-size: 1rem;
}

.tag { font-weight: 500; color: #666; font-size: 0.9rem; }

.included-value {
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0A84FF;
  background: rgba(10, 132, 255, 0.12);
  border: 1px solid rgba(10, 132, 255, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.included-card p { font-size: 0.91rem; color: #666; }

/* ===== OUTCOMES ===== */
.outcomes-section { background: #080808; }

.outcomes-list {
  list-style: none;
  max-width: 680px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: #ccc;
  font-weight: 500;
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.2s;
}

.outcomes-list li:hover {
  border-color: rgba(10, 132, 255, 0.25);
}

.check {
  color: #0A84FF;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
  text-shadow: 0 0 8px rgba(10, 132, 255, 0.5);
}

/* ===== OBJECTIONS ===== */
.objections-section { background: #0d0d0d; }

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

.faq-item {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
}

.faq-q {
  font-weight: 700;
  color: #e0e0e0;
  font-size: 1rem;
  padding: 20px 24px;
}

.faq-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.faq-toggle:hover { background: rgba(10, 132, 255, 0.06); color: #fff; }

.faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
  color: #0A84FF;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-item.open { border-color: rgba(10, 132, 255, 0.3); }

.faq-a {
  color: #777;
  font-size: 0.97rem;
  line-height: 1.7;
}

.objections-section .faq-q { padding: 20px 24px 10px; cursor: default; }
.objections-section .faq-a { padding: 0 24px 20px; }

.faq-section .faq-answer { display: none; padding: 0 24px 20px; }
.faq-section .faq-item.open .faq-answer { display: block; }

/* ===== PRICING ===== */
.pricing-section {
  padding: 90px 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(10, 132, 255, 0.1) 0%, transparent 70%),
    #080808;
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,132,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,132,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.pricing-card {
  position: relative;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
  background: #111;
  border: 1px solid rgba(10, 132, 255, 0.25);
  border-radius: 24px;
  padding: 52px 40px;
  box-shadow:
    0 0 80px rgba(10, 132, 255, 0.12),
    0 24px 60px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pricing-total {
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid rgba(10, 132, 255, 0.2);
  color: #6699cc;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-total strong { color: #aac8ee; }

.pricing-label {
  font-size: 1rem;
  color: #666;
  margin-bottom: -12px;
}

.pricing-old-price {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.25);
  text-decoration: line-through;
  font-weight: 600;
  min-height: 1.8rem;
  transition: opacity 0.4s;
}

.pricing-amount {
  font-size: 5.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  position: relative;
  text-shadow: 0 0 40px rgba(10, 132, 255, 0.35);
}

.pricing-amount::before {
  content: '$';
  font-size: 2.6rem;
  vertical-align: super;
  margin-right: 3px;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
}

.pricing-amount span {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

/* Price landing flash */
@keyframes priceFlash {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.12); color: #4da3ff; text-shadow: 0 0 40px rgba(10,132,255,0.9); }
  65%  { transform: scale(1.05); }
  100% { transform: scale(1); color: #fff; }
}

.price-flash { animation: priceFlash 0.6s ease forwards; }

.pricing-note { color: #666; font-size: 0.97rem; max-width: 400px; }
.pricing-note strong { color: #aaa; }

.pricing-section .btn-primary {
  background: #0A84FF;
  box-shadow: 0 6px 32px rgba(10, 132, 255, 0.5);
  width: 100%;
  text-align: center;
}

.pricing-section .btn-primary:hover {
  box-shadow: 0 8px 44px rgba(10, 132, 255, 0.7);
}

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  color: #555;
  font-size: 0.83rem;
}

/* ===== BONUSES ===== */
.bonuses-section { background: #0d0d0d; }

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.bonus-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 32px 26px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.bonus-card:hover {
  border-color: rgba(10, 132, 255, 0.35);
  box-shadow: 0 0 30px rgba(10, 132, 255, 0.1), 0 8px 32px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.bonus-label {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0A84FF;
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(10, 132, 255, 0.4);
}

.bonus-card h3 { margin-bottom: 10px; color: #fff; }
.bonus-card p { font-size: 0.95rem; color: #888; margin-bottom: 18px; }

.bonus-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0A84FF;
  background: rgba(10, 132, 255, 0.1);
  border: 1px solid rgba(10, 132, 255, 0.2);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
}

/* ===== FAQ SECTION ===== */
.faq-section { background: #080808; }

/* ===== CTA SECTION ===== */
.cta-section { background: #0d0d0d; }

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.option-card {
  border-radius: 18px;
  padding: 32px 28px;
}

.option-bad {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.07);
}

.option-good {
  background: rgba(10, 132, 255, 0.07);
  border: 1.5px solid rgba(10, 132, 255, 0.35);
  box-shadow: 0 0 30px rgba(10, 132, 255, 0.08);
}

.option-label {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #fff;
}

.option-bad .option-label { color: #555; }
.option-good .option-label {
  color: #0A84FF;
  text-shadow: 0 0 10px rgba(10, 132, 255, 0.4);
}

.option-card p { font-size: 0.97rem; }

.final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: #444;
  padding: 36px 0;
  text-align: center;
  font-size: 0.88rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 70px 0 56px; }
  .hero h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .pricing-amount { font-size: 3.8rem; }
  .nav-inner { gap: 10px; }
  .logo { font-size: 0.95rem; }
  .btn-nav { padding: 8px 14px; font-size: 0.78rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-blocks { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: 1fr; }
  .included-header { flex-direction: column; align-items: flex-start; }
  .trust-badges { flex-direction: column; align-items: center; gap: 8px; }
  .pricing-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .btn-primary { width: 100%; text-align: center; }
  .btn-large { padding: 16px 24px; font-size: 0.97rem; }
  .stats-grid { grid-template-columns: 1fr; }
}
