/* VolleyRef.App - Bold Sport Design System */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --primary: #d4a24a;
  --primary-dark: #b8863a;
  --primary-light: #e6bd6e;
  --accent: #ef4444;
  --accent-light: #f87171;
  --success: #22c55e;
  --warning: #eab308;
  --rose: #f43f5e;

  --bg: #09090b;
  --bg-warm: #0d0b0a;
  --bg-elevated: rgba(255, 255, 255, 0.025);

  --text: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-border-hover: rgba(255, 255, 255, 0.14);
  --glass-specular: rgba(255, 255, 255, 0.25);
  --glass-blur: 40px;
  --glass-saturate: 180%;

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;

  --gradient-primary: linear-gradient(135deg, #f97316, #ef4444);
  --gradient-warm: linear-gradient(135deg, #f97316, #eab308);

  --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 50px rgba(249,115,22,0.12), 0 0 100px rgba(239,68,68,0.06);
  --shadow-glow-strong: 0 0 60px rgba(249,115,22,0.2), 0 0 120px rgba(239,68,68,0.1);
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10000;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq-question:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ============================================
   BACKGROUND - Warm Ambient Glow + Grain
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% -10%, rgba(249,115,22,0.1), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 5%, rgba(239,68,68,0.07), transparent 70%),
    radial-gradient(ellipse 40% 30% at 50% 60%, rgba(249,115,22,0.04), transparent 70%),
    radial-gradient(ellipse 50% 35% at 10% 90%, rgba(234,179,8,0.05), transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* Subtle film grain for depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-secondary); }

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

/* ============================================
   NAVIGATION - Floating Glass Bar
   ============================================ */
.navbar {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), inset 0 0.5px 0 var(--glass-specular);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(9, 9, 11, 0.88);
  box-shadow: var(--shadow-lg), inset 0 0.5px 0 var(--glass-specular);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.logo-icon {
  height: 28px;
  width: auto;
  /* Make the icon read on the dark nav */
  opacity: 0.95;
  filter: brightness(1.35) contrast(1.1);
}

.logo-hi {
  color: var(--primary);
}

/* Subtle logo animation: make the highlighted words glow.
   (Keeping it single-idea; no icon dimming.)
*/
.navbar .logo-hi {
  animation: logoGlow 2.6s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: brightness(1);
    text-shadow: 0 0 0 rgba(249,115,22,0);
  }
  50% {
    filter: brightness(1.2);
    text-shadow:
      0 0 10px rgba(249,115,22,0.35),
      0 0 24px rgba(249,115,22,0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar .logo-hi {
    animation: none;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links .mobile-cta {
  display: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-links a.active,
.nav-links a.section-active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active::after,
.nav-links a.section-active::after { display: none; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow:
    0 4px 20px rgba(249,115,22,0.3),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 30px rgba(249,115,22,0.45),
    0 0 40px rgba(239,68,68,0.15),
    inset 0 1px 0 rgba(255,255,255,0.25);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-outline:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}

.btn-large {
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
}

.btn-small {
  padding: 0.4rem 0.85rem;
  font-size: 0.78rem;
}

/* ============================================
   HERO - Bold & Visual
   ============================================ */
.hero-v7 {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 96px 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-v7::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -100px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, rgba(239,68,68,0.04) 40%, transparent 70%);
  pointer-events: none;
}

.hero-text {
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}

.mega-headline {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.75rem;
}

.mega-headline .line { display: block; }
.mega-headline .line-1 { color: var(--text); }
.mega-headline .line-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subline - punchy one-liner */
.hero-subline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

/* Hero pills */
.hero-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-pill {
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-description p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  max-width: 480px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}

.hero-microcopy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 2rem;
}

.hero-screenshot {
  width: 100%;
  max-width: 580px;
  border-radius: var(--radius-xl);
  box-shadow:
    0 50px 100px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.06);
  transform: perspective(1200px) rotateY(-3deg);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.5rem;
  position: relative;
}

.section-header p {
  font-size: 1rem;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.85rem;
}

/* Accent line before section label */
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gradient-primary);
  vertical-align: middle;
  flex-shrink: 0;
}

/* ============================================
   GLASS CARD BASE
   ============================================ */
.feature-card,
.problem-card,
.benefit-card,
.faq-item,
.price-card-bold {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top-edge specular via border-top */
.feature-card,
.problem-card,
.benefit-card,
.price-card-bold {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Hover */
.feature-card:hover,
.benefit-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(249,115,22,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.trust-icon {
  margin-bottom: 0.25rem;
  color: var(--primary);
}
.trust-icon svg {
  width: 28px;
  height: 28px;
  opacity: 0.8;
}

.trust-item strong {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: var(--text);
  letter-spacing: -0.01em;
}

.trust-item span {
  font-size: clamp(0.85rem, 0.95vw, 0.95rem);
  color: var(--text-muted);
}

/* ============================================
   PROBLEM CARDS - Red/Warning accent
   ============================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.problem-card {
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 2px solid rgba(239,68,68,0.4);
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.problem-card:hover {
  background: var(--glass-bg-hover);
  border-left-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(239,68,68,0.06);
}

.problem-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  filter: blur(1px);
}
.problem-icon svg {
  width: 120px;
  height: 120px;
}

.problem-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ============================================
   FEATURES - Bento Grid
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Even grid for 6 cards */

.feature-card {
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.feature-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  pointer-events: none;
  color: var(--primary);
  opacity: 0.07;
  filter: blur(1px);
}
.feature-icon svg {
  width: 120px;
  height: 120px;
}

.feature-demo {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  margin-bottom: 0.9rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.feature-demo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  line-height: 1.55;
}

.feature-link-row {
  margin-top: 14px;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.feature-link:hover {
  color: var(--accent-2);
  transform: translateX(2px);
}

/* ============================================
   HOW IT WORKS - Steps
   ============================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.step:nth-child(even) { direction: rtl; }
.step:nth-child(even) > * { direction: ltr; }

.step-content {
  position: relative;
}

.step-number {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  font-weight: 900;
  line-height: 1;
  color: var(--primary);
  opacity: 0.08;
  pointer-events: none;
  letter-spacing: -0.05em;
  z-index: 0;
}

.step-content h3 {
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}
.step-content p {
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.step-visual {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.step-visual img {
  width: 100%;
  max-width: 100%;
  border-radius: var(--radius-md);
}

/* Fallback for browsers without :has() support */
.step .step-content:only-child {
  grid-column: 1 / -1;
}

@supports selector(:has(*)) {
  .step:not(:has(.step-visual)) {
    grid-template-columns: 1fr;
  }
  .step:not(:has(.step-visual)) .step-content {
    grid-column: auto;
  }
}

/* Breadcrumb nav */
.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  justify-content: center;
}

.breadcrumb li {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.breadcrumb li a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.breadcrumb li a:hover {
  color: var(--primary);
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.breadcrumb li[aria-current="page"] {
  color: var(--text-secondary);
}

/* ============================================
   AUDIENCE / BUILT FOR
   ============================================ */
.audience-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.benefit-card {
  padding: 2rem;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

.benefit-card h4 { margin-bottom: 0.5rem; }

/* ============================================
   PRICING - Dramatic Featured Card
   ============================================ */
.free-tier-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.free-tier-banner span {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.free-tier-banner strong {
  color: var(--primary);
}

.pricing-bold {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.price-card-bold {
  text-align: center;
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-md);
}

.price-card-bold:hover {
  background: var(--glass-bg-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card-bold.featured {
  border-color: rgba(249,115,22,0.35);
  background: linear-gradient(180deg, rgba(249,115,22,0.06) 0%, var(--glass-bg) 50%);
  transform: scale(1.04);
  box-shadow:
    var(--shadow-lg),
    0 0 60px rgba(249,115,22,0.08);
}

.price-card-bold.featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow:
    var(--shadow-lg),
    var(--shadow-glow-strong);
}

.price-card-bold h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.price-card-bold .price {
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.3rem;
  color: var(--text);
  letter-spacing: -0.04em;
}

.price-card-bold.featured .price {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-card-bold .period {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}

.price-card-bold .pricing-features {
  list-style: none;
  margin-bottom: 1.5rem;
  text-align: left;
}

.price-card-bold .pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  color: var(--text-secondary);
  font-size: 0.82rem;
}

.price-card-bold .pricing-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.plan-persona {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary-light);
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.12);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.6rem;
}

.plan-savings {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.12);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.4rem;
}

/* ============================================
   FAQ - Accordion
   ============================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--glass-border);
  margin-bottom: 0.6rem;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
}

.faq-question {
  width: 100%;
  padding: 1.15rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.01em;
}

.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.25rem;
  max-height: 500px;
}

.faq-answer p {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   CTA - Bold Warm Background
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border-top: 1px solid rgba(249,115,22,0.1);
  border-bottom: 1px solid rgba(249,115,22,0.1);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(249,115,22,0.07), transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 50%, rgba(239,68,68,0.04), transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  margin-bottom: 0.85rem;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.cta-video-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.cta-video {
  width: min(560px, 92vw);
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 60px rgba(0,0,0,0.45), 0 0 40px rgba(249,115,22,0.10);
  background: #0b0b0b;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.cta-video-link:hover .cta-video {
  transform: translateY(-2px);
  border-color: rgba(249,115,22,0.25);
  box-shadow: 0 22px 70px rgba(0,0,0,0.5), 0 0 55px rgba(249,115,22,0.16);
}

/* cta-video-label removed (video itself is clickable) */

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 3rem 0 1.25rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo { margin-bottom: 0.6rem; }
.footer-brand p { margin-top: 0.6rem; max-width: 260px; font-size: 0.8rem; }

.footer-links h4 {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

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

.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================
   COMPARISON TABLE - Glass Styled
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table thead th {
  padding: 1.15rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
}

.comparison-table thead th:last-child {
  color: var(--primary-light);
}

.comparison-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--glass-bg-hover);
}

.comparison-table tbody td:first-child {
  color: var(--text);
  font-weight: 500;
}

.comparison-table tbody td:last-child {
  color: var(--primary-light);
}

/* ============================================
   USE CASE CARDS
   ============================================ */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.use-case-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.use-case-card:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(249,115,22,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.use-case-card h3 {
  margin-bottom: 0.5rem;
}

.use-case-card p {
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ============================================
   FEATURE DEEP DIVE - Prose
   ============================================ */
.deep-dive {
  max-width: 720px;
  margin: 0 auto;
}

.deep-dive h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}

.deep-dive h2:first-child {
  margin-top: 0;
}

.deep-dive p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ============================================
   LEGAL PROSE - Privacy, Terms, Delete Account
   ============================================ */
.legal-prose {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-prose h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin-top: 3rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-prose a {
  color: var(--primary-light);
  text-decoration: underline;
  text-decoration-color: rgba(249, 115, 22, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s ease;
}

.legal-prose a:hover {
  text-decoration-color: var(--primary);
}

.legal-prose ul,
.legal-prose ol {
  margin: 0.75rem 0 1.25rem;
  padding-left: 0;
  list-style: none;
}

.legal-prose ul li,
.legal-prose ol li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.legal-prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.5;
}

.legal-prose ol {
  counter-reset: legal-step;
}

.legal-prose ol li::before {
  counter-increment: legal-step;
  content: counter(legal-step);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.7;
}

.legal-prose li strong {
  color: var(--text);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================================
   SECTION ALTERNATING BACKGROUNDS
   ============================================ */
.section[style*="background"] {
  background: rgba(255,255,255,0.015) !important;
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .features-grid,
  .pricing-bold {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card-bold.featured {
    transform: none;
  }

  .price-card-bold.featured:hover {
    transform: translateY(-4px);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    top: 8px;
    width: calc(100% - 16px);
    border-radius: var(--radius-md);
  }

  .navbar .container { height: 54px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px;
    left: 8px;
    right: 8px;
    background: rgb(9, 9, 11);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    padding: 1rem;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active { display: flex; }
  .mobile-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links .mobile-cta { display: list-item; }
  .nav-links .mobile-cta:first-of-type { margin-top: 0.5rem; padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links .mobile-cta a { display: block; text-align: center; }

  .hero-v7 {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 80px 1.5rem 3rem;
    min-height: auto;
  }

  .hero-text {
    padding: 0;
    margin-bottom: 2rem;
  }

  .hero-pills { justify-content: center; }
  .hero-description p { max-width: none; }
  .hero-buttons { justify-content: center; }

  .hero-visual {
    padding: 0;
    order: -1;
    margin-bottom: 1.5rem;
  }

  .hero-screenshot {
    max-width: 92%;
    transform: none;
  }

  .section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  .features-grid,
  .pricing-bold,
  .problem-grid {
    grid-template-columns: 1fr;
  }

  #features .feature-card:first-child {
    grid-column: span 1;
  }

  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step:nth-child(even) { direction: ltr; }

  .free-tier-banner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p { max-width: none; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }

  .audience-benefits { grid-template-columns: 1fr; }

  .use-cases-grid { grid-template-columns: 1fr; }

  .comparison-table thead th,
  .comparison-table tbody td {
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .mega-headline {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .hero-pill {
    font-size: 0.7rem;
    padding: 0.28rem 0.65rem;
  }

  .btn-large {
    padding: 0.75rem 1.4rem;
    font-size: 0.875rem;
  }

  .price-card-bold .price {
    font-size: 2.5rem;
  }

  .trust-bar .container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Hero demo video */
.hero-screenshot {
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  background: #0b0b0b;
}
.hero-visual video.hero-screenshot {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ============================================
   Video lightbox (tap demo videos to expand)
   ============================================ */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,0.86);
}
.video-lightbox.is-open { display: flex; }

.video-lightbox-inner {
  width: min(1100px, 96vw);
  max-height: 92vh;
}

.video-lightbox video {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  background: #000;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
}

.video-lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 3001;
}

.feature-demo-video,
.hero-visual video.hero-screenshot {
  cursor: zoom-in;
}
