/* ============================================================
   SKIPPER CRICKET — Landing Page Styles
   Version: 2.0 — Charcoal + Lime Rebrand
   Last Updated: March 2026
   ============================================================ */

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

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand — Charcoal + Lime */
  --lime: #A4FF00;
  --lime-80: rgba(164, 255, 0, 0.8);
  --lime-60: rgba(164, 255, 0, 0.6);
  --lime-dim: rgba(164, 255, 0, 0.12);
  --lime-muted: rgba(164, 255, 0, 0.06);
  --lime-subtle: rgba(164, 255, 0, 0.03);

  --charcoal: #121212;
  --charcoal-light: #1A1A1A;
  --charcoal-lighter: #222222;
  --charcoal-border: #2A2A2A;
  --charcoal-surface: #181818;

  /* Legacy aliases (for inner pages / blog / legal that still use them) */
  --green-brand: #A4FF00;
  --green-deep: #1A1A1A;
  --green-dark: #161616;
  --green-darkest: #0F0F0F;
  --green-surface: #1A1A1A;
  --green-light: #B8FF33;
  --green-bright: #A4FF00;
  --green-muted: rgba(164, 255, 0, 0.08);
  --gold: #A4FF00;
  --gold-light: #B8FF33;
  --gold-dim: rgba(164, 255, 0, 0.10);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F0F2F0;
  --gray-100: #D1D5DB;
  --gray-300: #9CA3AF;
  --gray-400: #6B7280;
  --gray-500: #4B5563;
  --dark: #121212;

  /* Utility */
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --red: #EF4444;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 100px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 100px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.4s ease;
}


/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--charcoal);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}


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

.section-pad {
  padding: var(--space-4xl) 0;
}


/* ===== TYPOGRAPHY HELPERS ===== */
.text-gold,
.text-lime { color: var(--lime); }
.text-green { color: var(--lime); }
.text-gray { color: var(--gray-300); }
.text-center { text-align: center; }


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


/* ===== KEYFRAMES ===== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-left {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slide-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(164, 255, 0, 0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 12px rgba(164, 255, 0, 0.9); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(164, 255, 0, 0.15); }
  50% { box-shadow: 0 0 40px rgba(164, 255, 0, 0.3); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Scroll-triggered animation */
.anim {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim.vis {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: rgba(18, 18, 18, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-base);
}

.nav.scrolled {
  padding: 10px 0;
  background: rgba(18, 18, 18, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
}

.nav-logo-stumps {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-logo-stumps .s {
  width: 4px;
  border-radius: 2px;
  background: var(--lime);
  transition: background var(--transition-fast);
}

.nav-logo-stumps .s:nth-child(1) { height: 22px; }
.nav-logo-stumps .s:nth-child(2) { height: 28px; }
.nav-logo-stumps .s:nth-child(3) { height: 22px; }

.nav-logo:hover .nav-logo-stumps .s {
  background: var(--white);
}

.nav-logo-text span {
  color: var(--lime);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  color: var(--gray-300);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--lime);
}

.nav-cta {
  background: var(--lime) !important;
  color: var(--charcoal) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.5px;
  transition: all var(--transition-fast) !important;
  border: none;
}

.nav-cta:hover {
  background: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
}

/* Mobile nav open state */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(18, 18, 18, 0.98);
  padding: var(--space-lg);
  gap: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--charcoal);
  padding: 16px 36px;
  border-radius: 12px;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 24px rgba(164, 255, 0, 0.2);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(164, 255, 0, 0.3);
}

.btn-primary-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--charcoal);
  padding: 16px 36px;
  border-radius: 12px;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 24px rgba(164, 255, 0, 0.2);
}

.btn-primary-gold:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(164, 255, 0, 0.04);
}


/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.section-sub {
  font-size: 17px;
  color: var(--gray-100);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(164, 255, 0, 0.06) 0%, transparent 65%);
  animation: float 14s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(164, 255, 0, 0.03) 0%, transparent 65%);
  animation: float 18s ease-in-out infinite reverse;
}

.pitch-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.02;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 120px, rgba(255, 255, 255, 0.3) 120px, rgba(255, 255, 255, 0.3) 121px),
    repeating-linear-gradient(90deg, transparent, transparent 200px, rgba(255, 255, 255, 0.15) 200px, rgba(255, 255, 255, 0.15) 201px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  animation: slide-left 0.8s ease both;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--lime-dim);
  border: 1px solid rgba(164, 255, 0, 0.2);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  margin-bottom: var(--space-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero-eyebrow .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse-live 2s ease infinite;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
}

.hero h1 .accent {
  color: var(--lime);
  display: block;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-100);
  max-width: 520px;
  margin-bottom: 36px;
}

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

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-proof {
  display: flex;
  gap: 40px;
}

.hero-proof-item {
  text-align: left;
}

.hero-proof-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--lime);
  letter-spacing: 1px;
}

.hero-proof-label {
  font-size: 13px;
  color: var(--gray-400);
  letter-spacing: 0.5px;
}

/* Hero Visual — Screenshot Gallery */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slide-right 1s ease 0.2s both;
}

.hero-screenshots {
  position: relative;
  width: 320px;
  height: 580px;
}

.hero-screenshot {
  position: absolute;
  width: 260px;
  border-radius: 28px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

.hero-screenshot:nth-child(1) {
  z-index: 3;
  top: 0;
  left: 30px;
}

.hero-screenshot:nth-child(2) {
  z-index: 2;
  top: 40px;
  left: -20px;
  opacity: 0.5;
  transform: scale(0.92) rotate(-3deg);
  filter: blur(1px);
}

.hero-screenshot:nth-child(3) {
  z-index: 1;
  top: 40px;
  right: -20px;
  opacity: 0.35;
  transform: scale(0.88) rotate(3deg);
  filter: blur(2px);
}

/* Floating cards around screenshots */
.float-card {
  position: absolute;
  z-index: 4;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.float-top {
  top: 12%;
  right: -24px;
  animation: fade-up 0.8s ease 0.6s both;
}

.float-bottom {
  bottom: 22%;
  left: -32px;
  animation: fade-up 0.8s ease 0.9s both;
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 6px;
}

.float-icon.g { background: var(--lime-dim); }
.float-icon.y { background: var(--lime-dim); }

.float-lbl {
  font-size: 10px;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.float-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  font-weight: 700;
}


/* ============================================================
   REVIEWS / COMMUNITY
   ============================================================ */
.reviews {
  background: var(--charcoal);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.review {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.review:hover {
  border-color: rgba(164, 255, 0, 0.2);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--lime);
  font-size: 14px;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-100);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--charcoal-lighter), var(--charcoal-border));
  border: 1px solid rgba(164, 255, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--lime);
}

.review-name {
  font-size: 14px;
  font-weight: 700;
}

.review-role {
  font-size: 12px;
  color: var(--gray-400);
}


/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  position: relative;
  z-index: 2;
  background: rgba(164, 255, 0, 0.03);
  border-top: 1px solid rgba(164, 255, 0, 0.08);
  border-bottom: 1px solid rgba(164, 255, 0, 0.08);
  padding: 36px 0;
}

.proof-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--lime);
  letter-spacing: 1px;
}

.proof-label {
  font-size: 13px;
  color: var(--gray-400);
  letter-spacing: 0.5px;
  margin-top: 2px;
}


/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  position: relative;
  background: var(--charcoal);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.problem p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-100);
  margin-bottom: var(--space-md);
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.problem-card:hover {
  border-color: rgba(164, 255, 0, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.problem-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.problem-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.problem-card p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
  margin: 0;
}


/* ============================================================
   PILLARS SECTION
   ============================================================ */
.pillars {
  background: var(--charcoal-surface);
  position: relative;
  overflow: hidden;
}

.pillars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(164, 255, 0, 0.03) 0%, transparent 70%);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.pillar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.pillar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform var(--transition-slow);
}

.pillar:hover::after {
  transform: scaleX(1);
}

.pillar:hover {
  border-color: rgba(164, 255, 0, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.pillar-icon.play { background: var(--lime-dim); }
.pillar-icon.perform { background: var(--lime-dim); }
.pillar-icon.improve { background: rgba(96, 165, 250, 0.1); }
.pillar-icon.share { background: rgba(244, 63, 94, 0.1); }

.pillar h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 14px;
  color: var(--gray-100);
  line-height: 1.7;
}


/* ============================================================
   FEATURES DEEP DIVE
   ============================================================ */
.features {
  background: var(--charcoal);
  position: relative;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: var(--space-4xl);
}

.feat-row:last-child {
  margin-bottom: 0;
}

.feat-row.rev {
  direction: rtl;
}

.feat-row.rev > * {
  direction: ltr;
}

.feat-tag {
  display: inline-block;
  background: var(--lime-dim);
  border: 1px solid rgba(164, 255, 0, 0.15);
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.feat-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: var(--space-md);
}

.feat-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-100);
  margin-bottom: var(--space-lg);
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-100);
}

.feat-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--lime-dim);
  color: var(--lime);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
}

.feat-visual {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-2xl);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.feat-visual img {
  border-radius: 20px;
  max-height: 500px;
  width: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* Scorecard Mockup (kept for backward compat) */
.sc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}

.sc-team {
  font-weight: 700;
  font-size: 16px;
}

.sc-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 700;
  color: var(--lime);
}

.sc-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.sc-table th {
  text-align: left;
  font-size: 10px;
  color: var(--gray-400);
  padding: 6px 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sc-table td {
  padding: 10px;
  font-size: 13px;
  background: rgba(164, 255, 0, 0.03);
}

.sc-table tr td:first-child {
  border-radius: 8px 0 0 8px;
  font-weight: 600;
}

.sc-table tr td:last-child {
  border-radius: 0 8px 8px 0;
}

.sc-table .hi td {
  background: rgba(164, 255, 0, 0.06);
}

.sc-runs {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--lime);
}

/* Profile Mockup */
.prof {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.prof-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--charcoal-lighter), var(--lime));
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--charcoal);
  border: 3px solid rgba(164, 255, 0, 0.3);
}

.prof-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.prof-role {
  font-size: 13px;
  color: var(--lime);
  margin-bottom: 20px;
}

.prof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.prof-stat {
  background: rgba(164, 255, 0, 0.04);
  border-radius: 12px;
  padding: 14px 8px;
}

.prof-stat-v {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
}

.prof-stat-l {
  font-size: 10px;
  color: var(--gray-400);
  margin-top: 4px;
}

.prof-badges {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.prof-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--lime-dim);
  border: 1px solid rgba(164, 255, 0, 0.15);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--lime);
}


/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare {
  background: var(--charcoal);
  position: relative;
}

.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--card-bg);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.compare-table thead th {
  padding: 20px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
  color: var(--gray-300);
}

.compare-table thead th:first-child {
  text-align: left;
}

.compare-table thead th.sk {
  background: rgba(164, 255, 0, 0.05);
  color: var(--lime);
  position: relative;
}

.compare-table thead th.sk::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--charcoal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 12px;
  border-radius: 0 0 6px 6px;
}

.compare-table tbody td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 14px;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--gray-100);
}

.compare-table tbody td.sk {
  background: rgba(164, 255, 0, 0.02);
}

.compare-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table tbody tr:hover td.sk {
  background: rgba(164, 255, 0, 0.05);
}

.chk {
  color: var(--lime);
  font-size: 18px;
  font-weight: 700;
}

.crs {
  color: var(--gray-500);
  font-size: 18px;
}

.paid {
  display: inline-block;
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.free {
  display: inline-block;
  background: var(--lime-dim);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.compare-footer {
  text-align: center;
  padding: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-footer p {
  font-size: 15px;
  color: var(--gray-100);
}

.compare-footer strong {
  color: var(--lime);
}


/* ============================================================
   ORGANIZERS
   ============================================================ */
.organizers {
  background: var(--charcoal-surface);
  position: relative;
}

.org-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.org-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.org-feat {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 20px;
  transition: all var(--transition-base);
}

.org-feat:hover {
  border-color: rgba(164, 255, 0, 0.15);
  transform: translateX(4px);
}

.org-feat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: var(--lime-dim);
}

.org-feat h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.org-feat p {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-surface);
}

.cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(164, 255, 0, 0.04) 0%, transparent 60%);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 18px;
  color: var(--gray-100);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.cta-input {
  flex: 1;
  min-width: 260px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: all var(--transition-base);
}

.cta-input::placeholder {
  color: var(--gray-500);
}

.cta-input:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 20px rgba(164, 255, 0, 0.1);
}

.cta-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: var(--space-sm);
}

/* Store Badges */
.store-badges {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--white);
  transition: all var(--transition-base);
}

.store-badge:hover {
  border-color: rgba(164, 255, 0, 0.2);
  background: rgba(164, 255, 0, 0.04);
}

.store-badge-icon {
  font-size: 24px;
}

.store-badge-text {
  text-align: left;
}

.store-badge-lbl {
  font-size: 10px;
  color: var(--gray-400);
}

.store-badge-name {
  font-size: 15px;
  font-weight: 700;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 300px;
  margin-top: var(--space-md);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 15px;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--lime-dim);
  border-color: rgba(164, 255, 0, 0.2);
  color: var(--lime);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

.footer-tagline {
  color: var(--lime);
  font-weight: 600;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text { order: 1; }
  .hero-visual { order: 0; margin-bottom: 20px; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }

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

  .feat-row,
  .feat-row.rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feat-row > * { direction: ltr; }
  .problem-grid,
  .org-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-card { display: none; }
}

@media (max-width: 768px) {
  .section-pad { padding: var(--space-3xl) 0; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; }
  .mobile-menu-btn { display: flex; }

  .pillars-grid,
  .reviews-grid { grid-template-columns: 1fr; }

  .hero-proof { gap: var(--space-lg); }
  .proof-inner { gap: var(--space-xl); }
  .footer-grid { grid-template-columns: 1fr; }

  .cta-form {
    flex-direction: column;
    align-items: center;
  }

  .cta-input { min-width: 100%; }
  .store-badges { flex-direction: column; align-items: center; }
  .problem-cards { grid-template-columns: 1fr; }

  .hero-screenshots {
    width: 240px;
    height: 440px;
  }

  .hero-screenshot {
    width: 200px;
  }

  .hero-screenshot:nth-child(2),
  .hero-screenshot:nth-child(3) {
    display: none;
  }

  .hero-screenshot:nth-child(1) {
    left: 20px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 48px; }
  .section-title { font-size: 36px; }
  .prof-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-proof { flex-direction: column; gap: var(--space-md); align-items: center; }
}


/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal-light);
  border-top: 1px solid var(--card-border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 2000;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--gray-300);
  margin: 0;
}

.cookie-banner a {
  color: var(--lime);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-banner__btn {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}

.cookie-banner__decline {
  background: none;
  border: none;
  color: var(--gray-400);
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}

.cookie-banner__decline:hover {
  color: var(--gray-300);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px;
  }
}


/* ============================================================
   INNER PAGE STYLES (blog, articles, legal, quiz, etc.)
   ============================================================ */

/* Narrow container for content pages */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--wide {
  max-width: 1080px;
}

/* Page Header */
.page-header {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 2rem;
}

.page-header__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header__meta {
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* Legal Content (privacy, terms, etc.) */
.legal { padding-bottom: 4rem; }
.legal h2 { font-size: 1.25rem; font-weight: 600; margin: 2.5rem 0 1rem; }
.legal h3 { font-size: 1.0625rem; font-weight: 600; margin: 1.5rem 0 0.75rem; }
.legal p { color: var(--gray-300); margin-bottom: 1rem; }
.legal ul, .legal ol { color: var(--gray-300); margin: 0.75rem 0 1rem 1.5rem; }
.legal li { margin-bottom: 0.5rem; }
.legal strong { color: var(--white); font-weight: 600; }

/* Info Box */
.info-box {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.info-box--highlight { border-color: var(--lime); background: rgba(164, 255, 0, 0.03); }
.info-box__title { font-weight: 600; margin-bottom: 0.5rem; }
.info-box p { color: var(--gray-300); margin-bottom: 0.5rem; }
.info-box p:last-child { margin-bottom: 0; }

/* Steps */
.steps { counter-reset: step; list-style: none; margin: 1.5rem 0; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
  color: var(--gray-300);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 2rem; height: 2rem;
  background: var(--lime-dim);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 600; color: var(--lime);
}

/* Buttons (inner pages) */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; border-radius: 12px;
  font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
}
.btn--primary { background: var(--lime); color: var(--charcoal); font-weight: 700; }
.btn--primary:hover { background: #B8FF33; color: var(--charcoal); }
.btn--outline { border: 1px solid var(--card-border); color: var(--white); background: transparent; }
.btn--outline:hover { border-color: var(--lime); color: var(--lime); }

/* Blog Filters */
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1.5rem 0 0; }
.blog-filter {
  padding: 0.5rem 1rem; border-radius: 8px;
  border: 1px solid var(--card-border); background: transparent;
  color: var(--gray-300); font-family: inherit;
  font-size: 0.8125rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.blog-filter:hover { border-color: var(--lime); color: var(--white); }
.blog-filter--active { background: var(--lime); border-color: var(--lime); color: var(--charcoal); }

/* Blog Search */
.blog-search {
  width: 100%; max-width: 400px;
  padding: 0.625rem 1rem; border-radius: 8px;
  border: 1px solid var(--card-border); background: var(--card-bg);
  color: var(--white); font-family: inherit; font-size: 0.875rem;
  margin-top: 1rem; transition: border-color 0.2s;
}
.blog-search::placeholder { color: var(--gray-400); }
.blog-search:focus { outline: none; border-color: var(--lime); }

/* Blog Grid */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; padding: 2rem 0 4rem; max-width: 1080px;
}
@media (max-width: 960px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 16px; padding: 2rem;
  transition: border-color 0.2s; display: flex; flex-direction: column;
}
.blog-card:hover { border-color: var(--lime); }
.blog-card__image { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.blog-card__tag {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--lime); text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 0.75rem;
}
.blog-card__title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card__title a { color: var(--white); }
.blog-card__title a:hover { color: var(--lime); }
.blog-card__excerpt { color: var(--gray-300); font-size: 0.9375rem; line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.blog-card__meta { color: var(--gray-400); font-size: 0.8125rem; }

/* Article */
.article { padding-bottom: 4rem; }
.article__hero { width: 100%; height: 350px; object-fit: cover; border-radius: 12px; margin-bottom: 2rem; }
@media (max-width: 640px) { .article__hero { height: 200px; } }
.article p { color: var(--gray-300); margin-bottom: 1.25rem; line-height: 1.8; }
.article h2 { font-size: 1.375rem; font-weight: 600; margin: 2.5rem 0 1rem; }
.article h3 { font-size: 1.125rem; font-weight: 600; margin: 2rem 0 0.75rem; }
.article ul, .article ol { color: var(--gray-300); margin: 0.75rem 0 1.25rem 1.5rem; line-height: 1.8; }
.article li { margin-bottom: 0.5rem; }
.article strong { color: var(--white); font-weight: 600; }
.article blockquote {
  border-left: 3px solid var(--lime);
  padding: 1rem 1.5rem; margin: 1.5rem 0;
  background: var(--card-bg); border-radius: 0 8px 8px 0;
  color: var(--gray-300); font-style: italic;
}
.article blockquote cite { display: block; margin-top: 0.5rem; font-size: 0.85rem; font-style: normal; color: var(--lime); }
.article__back { display: inline-flex; align-items: center; gap: 0.25rem; color: var(--gray-400); font-size: 0.875rem; margin-bottom: 2rem; }
.article__back:hover { color: var(--gray-300); }
.article table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.article th, .article td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--card-border); color: var(--gray-300); font-size: 0.9375rem; }
.article th { color: var(--white); font-weight: 600; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.03em; }

/* Article Author */
.article__author { display: flex; align-items: center; gap: 0.75rem; margin: 1.5rem 0 2rem; }
.article__author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--lime-dim); border: 1px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--lime); flex-shrink: 0;
}
.article__author-name { display: block; font-size: 0.875rem; font-weight: 600; }
.article__author-date { display: block; font-size: 0.75rem; color: var(--gray-400); }

/* Article Sources */
.article__sources {
  margin-top: 2.5rem; padding: 1.25rem 1.5rem;
  background: var(--card-bg); border-radius: 10px; border: 1px solid var(--card-border);
}
.article__sources h3 { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-300); margin: 0 0 0.75rem; }
.article__sources ul { list-style: none; margin: 0; padding: 0; }
.article__sources li { margin-bottom: 0.375rem; }
.article__sources a { font-size: 0.875rem; color: var(--lime); }

/* Related Articles */
.article__related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--card-border); }
.article__related h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1rem; }
.article__related ul { list-style: none; margin: 0; padding: 0; }
.article__related li { margin-bottom: 0.5rem; }
.article__related a { color: var(--lime); font-size: 0.9375rem; font-weight: 500; }
.article__related a:hover { color: #B8FF33; }
