/* === BRAVO SIX PICKS — PREMIUM DARK THEME === */
:root {
  --bg: #060610;
  --bg-card: #0e0e1a;
  --bg-card2: #161625;
  --bg-section: #0a0a16;
  --accent: #00d4ff;
  --accent2: #0055ff;
  --accent3: #7c3aed;
  --accent-glow: rgba(0, 212, 255, 0.15);
  --accent-glow2: rgba(0, 212, 255, 0.3);
  --text: #eeeef8;
  --text-muted: #8888a8;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(0, 212, 255, 0.25);
  --green: #00e676;
  --gold: #ffc107;
  --red: #ff4d4d;
  --radius: 14px;
  --radius-lg: 22px;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #05050f;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 6, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.navbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-logo img { height: 42px; width: auto; }
.navbar-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.08em;
}
.navbar-logo-text span { color: var(--accent); }
.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.navbar-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.navbar-links a:hover { color: var(--text); }
.navbar-cta {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem !important;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: box-shadow 0.2s, transform 0.2s !important;
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
}
.navbar-cta:hover {
  box-shadow: 0 0 32px rgba(0,212,255,0.5);
  transform: translateY(-1px);
  text-decoration: none !important;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
  color: #000;
  font-size: 1.05rem;
  padding: 18px 44px;
  box-shadow: 0 0 40px rgba(0,212,255,0.35), 0 4px 20px rgba(0,0,0,0.4);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.18);
  transform: skewX(-20deg);
  animation: btn-shimmer 3s infinite;
}
@keyframes btn-shimmer {
  0% { left: -60%; }
  100% { left: 160%; }
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(0,212,255,0.5), 0 8px 30px rgba(0,0,0,0.4);
  text-decoration: none;
  color: #000;
}
.btn-secondary {
  background: rgba(0,212,255,0.06);
  border: 1.5px solid var(--border-accent);
  color: var(--accent);
  padding: 16px 34px;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(0,212,255,0.12);
  border-color: var(--accent);
  text-decoration: none;
  transform: translateY(-2px);
}
.btn-lg { font-size: 1.15rem; padding: 20px 52px; }

/* === BADGES & PILLS === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.badge-accent {
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent);
}
.badge-green {
  background: rgba(0,230,118,0.1);
  border: 1px solid rgba(0,230,118,0.3);
  color: var(--green);
}
.badge-gold {
  background: rgba(255,193,7,0.12);
  border: 1px solid rgba(255,193,7,0.35);
  color: var(--gold);
}

/* === HERO === */
.hero {
  position: relative;
  padding: 100px 24px 110px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 160% 120% at 50% -40%, rgba(0,212,255,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 80% 70% at 5% 40%, rgba(124,58,237,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 95% 50%, rgba(0,85,255,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 100% 60% at 50% 110%, rgba(59,130,246,0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: aurora-pulse 8s ease-in-out infinite alternate;
}
@keyframes aurora-pulse {
  0%   { opacity: 0.85; }
  100% { opacity: 1; }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at center, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 10%, transparent 75%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero-eyebrow {
  margin-bottom: 24px;
}
.hero h1 {
  margin-bottom: 10px;
  color: var(--text);
  text-shadow: 0 0 80px rgba(0,212,255,0.12);
}
.hero h1 span {
  color: var(--accent);
  display: block;
  text-shadow: 0 0 60px rgba(0,212,255,0.4);
}
.hero-sub {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
}
.social-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 760px;
  margin: 0 auto 70px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.social-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 24px 32px;
  flex: 1;
  position: relative;
}
.social-proof-item + .social-proof-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.social-proof-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 0 30px rgba(0,212,255,0.4);
}
.social-proof-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.social-proof-divider { display: none; }
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

.hero-video-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 0 80px rgba(0,212,255,0.12), 0 40px 80px rgba(0,0,0,0.6);
}
.hero-video-wrap video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}
.whops-choice {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #f97316, #ef4444);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(239,68,68,0.3);
}

/* === WHOP SCREENSHOT === */
.whop-proof {
  text-align: center;
  margin-top: 50px;
  padding: 0 20px;
}
.whop-proof-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.whop-screenshot {
  max-width: 900px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border-accent);
  box-shadow: 0 16px 60px rgba(0,0,0,0.6), 0 0 60px rgba(0,212,255,0.06);
}

/* === SECTION BASE === */
.section { padding: 90px 24px; }
.section-sm { padding: 55px 24px; }
.section-title {
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 56px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* === SECTION DIVIDER === */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  margin: 0;
  border: none;
}

/* === PAIN POINTS === */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 0.25s, transform 0.25s;
}
.pain-card:hover {
  border-color: rgba(255,77,77,0.4);
  border-left-color: var(--red);
  transform: translateY(-3px);
}
.pain-icon { font-size: 2.2rem; margin-bottom: 14px; }
.pain-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.pain-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* === FEATURES === */
.features-bg {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.features-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.06);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(0,212,255,0.3));
}
.feature-card h3 {
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.6; }

/* === PRICING TABLE === */
.pricing-table-wrap {
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0,0,0,0.4);
}
.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th {
  background: var(--bg-card2);
  padding: 18px 22px;
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.pricing-table th.highlight {
  color: var(--accent);
  background: rgba(0,212,255,0.07);
}
.pricing-table td {
  padding: 15px 22px;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: rgba(255,255,255,0.02); }
.pricing-table td.highlight {
  background: rgba(0,212,255,0.05);
  color: var(--accent);
  font-weight: 700;
}
.price-strike { text-decoration: line-through; color: var(--red); opacity: 0.7; }
.price-good { color: var(--green); font-weight: 700; }
.check { color: var(--green); }
.cross { color: var(--red); }

/* === COMPARE CARDS === */
.compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 48px auto 0;
}
.compare-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.compare-others { background: var(--bg-card); }
.compare-bsix {
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 0 48px rgba(0,212,255,0.1), 0 0 0 1px rgba(0,212,255,0.08) inset;
}
.compare-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.compare-others .compare-header { background: var(--bg-card2); }
.compare-bsix .compare-header {
  background: rgba(0,212,255,0.08);
  border-bottom-color: rgba(0,212,255,0.2);
}
.compare-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.compare-others .compare-label { color: var(--text-muted); }
.compare-bsix .compare-label { color: var(--accent); }
.compare-sub { font-size: 0.78rem; color: var(--text-muted); }
.compare-rows { background: var(--bg-card); }
.compare-bsix .compare-rows { background: rgba(0,212,255,0.03); }
.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 24px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.compare-row:last-child { border-bottom: none; }
.compare-key {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
.compare-val {
  font-weight: 700;
  font-size: 0.88rem;
  text-align: right;
}

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 18px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
  overflow: visible;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.06;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.review-stars { color: #22c55e; font-size: 0.9rem; letter-spacing: 3px; }
.review-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}
.review-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  font-style: normal;
}

/* === FAQ === */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border-accent); }
.faq-item[open] { border-color: var(--border-accent); }
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color 0.2s;
  user-select: none;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.25s;
  flex-shrink: 0;
  margin-left: 16px;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary {
  color: var(--accent);
  border-bottom: 1px solid var(--border);
}
.faq-answer {
  padding: 22px 26px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* === FINAL CTA === */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(0,212,255,0.06) 0%, transparent 70%),
    linear-gradient(135deg, rgba(0,85,255,0.04), rgba(124,58,237,0.04));
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.trial-note { margin-top: 18px; font-size: 0.84rem; color: var(--text-muted); }

/* === FINAL CTA SECTION === */
.cta-final {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding: 120px 24px;
  text-align: center;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(0,212,255,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 15% 80%, rgba(124,58,237,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 85% 80%, rgba(0,85,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.cta-final-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.cta-final-accent { color: var(--accent); }
.cta-final-sub {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 44px;
}
.cta-final-btn {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 18px 52px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.cta-final-btn:hover {
  background: var(--accent);
  color: #05050f;
  box-shadow: 0 0 32px rgba(0,212,255,0.35);
  text-decoration: none;
}
.cta-final-note {
  margin-top: 22px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

/* === BLOG === */
.page-hero {
  padding: 70px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.05);
  text-decoration: none;
}
.blog-card-img {
  height: 190px;
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  overflow: hidden;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-card-type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  padding: 4px 12px;
  border-radius: 99px;
}
.blog-card-date { font-size: 0.77rem; color: var(--text-muted); }
.blog-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.4;
}
.blog-card-excerpt {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 32px 24px;
}
.pagination a, .pagination span {
  padding: 9px 18px;
  border-radius: 9px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: all 0.2s;
}
.pagination a:hover { border-color: var(--border-accent); color: var(--accent); text-decoration: none; }
.pagination span.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 700;
}
.empty-state { text-align: center; padding: 90px 20px; color: var(--text-muted); }
.empty-state h3 { margin-bottom: 12px; font-family: 'Plus Jakarta Sans', sans-serif; }

/* === ARTICLE PAGE === */
.article-layout {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}
.article-header { margin-bottom: 32px; }
.article-meta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 18px; }
.article-type-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25);
  padding: 4px 12px;
  border-radius: 99px;
}
.article-date { font-size: 0.84rem; color: var(--text-muted); }
.article-author-inline { font-size: 0.84rem; color: var(--text-muted); }
.article-hero-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
  border: 1px solid var(--border);
}
.affiliate-disclosure {
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin-bottom: 40px;
}
.toc h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.toc ol { padding-left: 20px; }
.toc li { margin-bottom: 7px; }
.toc a { color: var(--text-muted); font-size: 0.91rem; transition: color 0.2s; }
.toc a:hover { color: var(--accent); }
.article-content { color: var(--text); line-height: 1.85; }
.article-content h2 { margin: 44px 0 18px; color: var(--text); }
.article-content h3 { margin: 32px 0 12px; color: var(--text); }
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 26px; }
.article-content li { margin-bottom: 7px; }
.article-content a { color: var(--accent); }
.article-content img { border-radius: var(--radius); margin: 24px 0; border: 1px solid var(--border); }
.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 14px 22px;
  background: rgba(0,212,255,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  color: var(--text-muted);
  font-style: italic;
}
.article-content table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: var(--radius); overflow: hidden; }
.article-content th { background: var(--bg-card2); padding: 12px 16px; text-align: left; border: 1px solid var(--border); }
.article-content td { padding: 12px 16px; border: 1px solid var(--border); }

.article-cta-box {
  background: linear-gradient(135deg, rgba(0,212,255,0.07), rgba(0,85,255,0.07));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin: 44px 0;
  position: relative;
  overflow: hidden;
}
.article-cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.article-cta-box > * { position: relative; }
.article-cta-box h3 { margin-bottom: 10px; font-size: 1.5rem; }
.article-cta-box p { color: var(--text-muted); margin-bottom: 22px; font-size: 0.95rem; }

.author-box {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  margin-top: 54px;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #000;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.author-title { font-size: 0.78rem; color: var(--accent); margin-bottom: 10px; }
.author-bio { font-size: 0.87rem; color: var(--text-muted); line-height: 1.65; }

.related-articles { margin-top: 64px; }
.related-articles h3 { margin-bottom: 22px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  text-decoration: none;
}
.related-card-type {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 7px;
}
.related-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

/* === LEGAL PAGES === */
.legal-layout {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}
.legal-layout h1 { margin-bottom: 8px; }
.legal-updated { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 40px; }
.legal-layout h2 {
  font-size: 1.3rem;
  margin: 40px 0 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
.legal-layout p { color: var(--text-muted); margin-bottom: 18px; font-size: 0.94rem; line-height: 1.8; }
.legal-layout ul { color: var(--text-muted); padding-left: 24px; margin-bottom: 18px; }
.legal-layout li { margin-bottom: 7px; font-size: 0.94rem; }

/* === ABOUT PAGE === */
.about-layout { max-width: 780px; margin: 0 auto; padding: 56px 24px 90px; }
.about-author-box {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.about-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(0,212,255,0.3);
}
.about-name {
  font-size: 1.7rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.about-title { color: var(--accent); font-size: 0.9rem; font-weight: 600; margin-bottom: 14px; }
.about-bio { color: var(--text-muted); font-size: 0.94rem; line-height: 1.75; }

/* === FOOTER === */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.87rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-links h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.footer-bottom p { font-size: 0.81rem; color: var(--text-muted); }
.footer-disclosure { font-size: 0.77rem; color: var(--text-muted); max-width: 620px; line-height: 1.55; }
.footer-disclaimer {
  margin-top: 22px;
  padding: 16px;
  background: rgba(255,77,77,0.04);
  border: 1px solid rgba(255,77,77,0.12);
  border-radius: 10px;
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* === ARTICLE KEYWORDS === */
.keywords-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.keyword-tag {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.77rem;
  color: var(--text-muted);
  transition: border-color 0.2s;
}
.keyword-tag:hover { border-color: var(--border-accent); }

/* === GLOW DIVIDER === */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-accent) 50%, transparent 100%);
  margin: 0;
  border: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .hero { padding: 120px 24px 110px; }
  .hero h1 { margin-bottom: 28px; }
  .hero-sub { margin-bottom: 48px; font-size: 1.05rem; }
  .hero-ctas { margin-bottom: 56px; }
  .social-proof { margin-bottom: 0; }
  .section { padding: 88px 24px; }
  .section-sm { padding: 60px 24px; }
  .section-title { margin-bottom: 16px; }
  .section-subtitle { margin-bottom: 48px; }
  .social-proof-item { padding: 24px 16px; }
  .about-author-box { flex-direction: column; }
  .author-box { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 28px; }
  .btn-lg { font-size: 1rem; padding: 17px 38px; }
  h1 { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .features-grid { gap: 16px; }
  .steps-grid { gap: 24px; }
  .faq-wrap { gap: 12px; }
}
@media (max-width: 480px) {
  .compare-wrap { grid-template-columns: 1fr; }
  .social-proof { flex-wrap: wrap; }
  .social-proof-item + .social-proof-item::before { display: none; }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-green { color: var(--green); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

/* === SCROLL FIX === */
:target { scroll-margin-top: 80px; }

/* ========== HAMBURGER MENU ========== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0d0d1a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 1000;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu ul a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .navbar-links { display: none !important; }
  .mobile-menu { display: block; }
  .navbar { position: relative; overflow: visible; }
  .navbar-inner { overflow: visible; }
}

/* ========== WINS TICKER ========== */
.ticker-wrap {
  overflow: hidden;
  background: rgba(0, 255, 136, 0.05);
  border-top: 1px solid rgba(0, 255, 136, 0.12);
  border-bottom: 1px solid rgba(0, 255, 136, 0.12);
  padding: 11px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  white-space: nowrap;
  padding: 0 28px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.ticker-item .win { color: #00ff96; }
.ticker-sep {
  padding: 0 4px;
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
}

/* ========== HOW IT WORKS ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 32px rgba(0, 255, 136, 0.08);
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-num { font-size: 3.5rem; }
}

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px 16px;
  background: linear-gradient(to top, rgba(8,8,20,1) 60%, rgba(8,8,20,0));
  z-index: 998;
  transition: opacity 0.35s ease;
}
@media (max-width: 768px) {
  .sticky-cta-bar { display: block; }
  body { padding-bottom: 88px; }
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== REVIEWS CAROUSEL ========== */
.reviews-carousel-wrap {
  overflow: hidden;
  position: relative;
}
.reviews-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.reviews-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  align-items: start;
  box-sizing: border-box;
}
.reviews-page > * {
  min-width: 0;
}
.reviews-grid { display: none; }

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, width 0.3s ease;
}
.dot.active {
  background: #22c55e;
  width: 28px;
}
.dot:hover:not(.active) {
  background: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .reviews-page {
    grid-template-columns: 1fr;
  }
  .reviews-page .review-card:not(:first-child) {
    display: none;
  }
}
