/* ============================================
   NEWSROOM ROBOTS EXECUTIVE MEMO
   Design System & Styles
   ============================================

   TABLE OF CONTENTS:
   ------------------
   1. CSS Custom Properties (Design Tokens)
      - Colors, Typography, Spacing, Layout
      - Transitions, Shadows, Border Radius

   2. Reset & Base Styles
      - Box-sizing, HTML/Body defaults
      - Image, Link, List, Button resets

   3. Typography
      - Headings (h1-h4)
      - Paragraphs, Lead text
      - Text utilities (gradient, weights)

   4. Layout
      - Container, Section styles

   5. Components
      - Labels & Chips
      - Buttons (primary, secondary, sizes)
      - Navigation (desktop + mobile)
      - Cards (comparison, deliverable, fit, pricing)
      - FAQ Accordion
      - Forms & Inputs

   6. Sections
      - Hero (with animations)
      - Problem, What It Is, What You Get
      - Outcomes, CTA sections
      - Who It's For, About, Cadence
      - FAQ, Final CTA, Footer

   7. Animations
      - Scroll animations
      - Particle effects
      - Hover states
      - Keyframe definitions

   8. Responsive (Mobile-first)
      - Tablet breakpoint (768px)
      - Mobile breakpoint (480px)

   DESIGN TOKENS:
   --------------
   Primary Accent: #6B21A8 (Purple)
   Background: #FFFFFF / #F8F8F8 / #0D0D0D
   Typography: Poppins (Google Fonts)

   ============================================ */

/* ----------------------------------------
   CSS Custom Properties (Design Tokens)
   ---------------------------------------- */
:root {
  /* Colors */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F8F8F8;
  --color-bg-dark: #0D0D0D;
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #4A4A4A;
  --color-text-muted: #7A7A7A;
  --color-text-inverted: #FFFFFF;
  --color-accent: #6B21A8;
  --color-accent-hover: #581C87;
  --color-accent-light: #F3E8FF;
  --color-border: #E5E5E5;
  --color-border-dark: #D4D4D4;
  --color-success: #16A34A;
  --color-warning: #CA8A04;

  /* Typography */
  --font-primary: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Poppins', Georgia, 'Times New Roman', serif;
  --font-sans: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Font Sizes */
  --text-xs: 0.8125rem;   /* 13px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1.0625rem; /* 17px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.75rem;    /* 28px */
  --text-4xl: 2rem;       /* 32px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 4rem;       /* 64px */

  /* Spacing */
  --space-xs: 0.5rem;     /* 8px */
  --space-sm: 1rem;       /* 16px */
  --space-md: 1.5rem;     /* 24px */
  --space-lg: 2rem;       /* 32px */
  --space-xl: 3rem;       /* 48px */
  --space-2xl: 4rem;      /* 64px */
  --space-3xl: 6rem;      /* 96px */
  --space-4xl: 8rem;      /* 128px */

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;
  --nav-height: 64px;

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

  /* Shadows - Premium layered shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.02), 0 12px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.04), 0 24px 48px rgba(0,0,0,0.08);
  --shadow-xl: 0 12px 24px rgba(0,0,0,0.06), 0 48px 96px rgba(0,0,0,0.12);
  --shadow-nav: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
  --shadow-glow: 0 0 40px rgba(107, 33, 168, 0.15);
  --shadow-card: 0 2px 4px rgba(0,0,0,0.02), 0 8px 24px rgba(0,0,0,0.06), 0 24px 48px rgba(0,0,0,0.04);
  --shadow-button: 0 2px 4px rgba(107, 33, 168, 0.2), 0 8px 16px rgba(107, 33, 168, 0.15);

  /* Border Radius - More refined */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Premium Effects */
  --blur-sm: 8px;
  --blur-md: 16px;
  --blur-lg: 32px;
}

/* ----------------------------------------
   Reset & Base Styles
   ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + var(--space-md));
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-accent);
  color: var(--color-text-inverted);
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: var(--space-sm);
}

/* ----------------------------------------
   Typography - Premium Poppins
   ---------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--text-6xl);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--text-5xl);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h3 {
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: var(--space-sm);
  font-weight: 400;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: var(--text-xl);
  line-height: 1.7;
  font-weight: 400;
  color: var(--color-text-secondary);
}

strong {
  font-weight: 600;
}

/* Premium text utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--color-accent) 0%, #9333EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-light {
  font-weight: 300;
}

.text-medium {
  font-weight: 500;
}

.text-semibold {
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

/* ----------------------------------------
   Layout
   ---------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(248,248,248,0.5) 0%, rgba(255,255,255,1) 100%);
}

/* ----------------------------------------
   Components: Labels & Chips - Premium
   ---------------------------------------- */
.label {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-md);
  position: relative;
  padding-left: 1rem;
}

.label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #9333EA 100%);
  border-radius: 50%;
}

.signal-chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

.deliverable-chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

/* Confidence Indicators */
.confidence {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-xs);
  font-weight: 500;
}

.confidence-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.confidence-high {
  color: var(--color-success);
}
.confidence-high .confidence-dot {
  background-color: var(--color-success);
}

.confidence-medium {
  color: var(--color-warning);
}
.confidence-medium .confidence-dot {
  background-color: var(--color-warning);
}

.confidence-emerging {
  color: var(--color-accent);
}
.confidence-emerging .confidence-dot {
  background-color: var(--color-accent);
}

/* ----------------------------------------
   Components: Buttons - Premium
   ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #9333EA 100%);
  color: var(--color-text-inverted);
  border: none;
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-hover) 0%, #7E22CE 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(107, 33, 168, 0.25), 0 12px 24px rgba(107, 33, 168, 0.2);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: var(--shadow-button);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-border-dark);
}

.btn-secondary:hover {
  background-color: var(--color-bg-secondary);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.125rem 2.75rem;
  font-size: 1rem;
  font-weight: 600;
}

.btn-nav {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}

/* Premium button shine effect */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

/* ----------------------------------------
   Navigation - Premium
   ---------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0D0D0D;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: var(--nav-height);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  background: #0D0D0D;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 44px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: all 0.25s ease;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #9333EA 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-xs);
  z-index: 1001;
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: all var(--transition-base);
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

/* Hero Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 33, 168, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 33, 168, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(107, 33, 168, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(107, 33, 168, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(107, 33, 168, 0.04) 0%, transparent 50%);
  animation: gradientShift 12s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(1deg); }
}

/* Floating particles */
.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 33, 168, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero-bg::before {
  top: 10%;
  right: 10%;
  animation-delay: -5s;
}

.hero-bg::after {
  bottom: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  animation-delay: -10s;
  animation-duration: 25s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.05); }
}

/* Hero Container */
.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-2xl);
}

.hero-content {
  text-align: left;
}

/* Hero Label - Premium */
.hero-label-wrapper {
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.2s forwards;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  background: linear-gradient(135deg, rgba(107, 33, 168, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
  border: 1px solid rgba(107, 33, 168, 0.15);
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-label:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 33, 168, 0.15);
  border-color: rgba(107, 33, 168, 0.3);
}

.hero-label-dot {
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #9333EA 100%);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(107, 33, 168, 0.5);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(107, 33, 168, 0.5); }
  50% { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 20px rgba(107, 33, 168, 0.8); }
}

/* Hero Title - Premium */
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.4s forwards;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-line:first-child {
  animation: revealText 1s ease-out 0.5s both;
}

.hero-title-accent {
  color: var(--color-accent);
  background: linear-gradient(135deg, #6B21A8 0%, #9333EA 50%, #6B21A8 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 4s ease-in-out infinite, revealText 1s ease-out 0.7s both;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes revealText {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.6s forwards;
}

.hero-divider-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  animation: expandLine 1s ease-out 0.8s both;
  transform-origin: left center;
}

.hero-divider-line:last-child {
  background: linear-gradient(90deg, transparent, var(--color-accent));
  transform-origin: right center;
}

@keyframes expandLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-divider-icon {
  color: var(--color-accent);
  display: flex;
  animation: spin 20s linear infinite, scaleIn 0.5s ease-out 0.9s both;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scaleIn {
  from { transform: scale(0) rotate(0deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Hero Tagline - Premium */
.hero-tagline {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.7s forwards;
}

.hero-tagline strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

/* Hero Subhead - Premium */
.hero-subhead {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 500px;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.8s forwards;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.9s forwards;
}

.btn-glow {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
  transition: all var(--transition-base);
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn-glow:hover::before {
  left: 100%;
}

.btn-glow:hover {
  box-shadow: 0 6px 25px rgba(107, 33, 168, 0.4);
  transform: translateY(-2px);
}

/* Hero Trust */
.hero-trust {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 1s forwards;
}

.hero-social-proof {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

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

/* ----------------------------------------
   Hero - Futuristic Centered Layout
   ---------------------------------------- */
.hero-container-centered {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-3xl);
  min-height: calc(100vh - var(--nav-height));
}

.hero-content-centered {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-centered {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: heroTitleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes heroTitleReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-tagline-centered {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 0.6s forwards;
}

.tagline-word {
  display: inline-block;
  margin: 0 0.25em;
  opacity: 0;
  animation: wordFade 0.6s ease-out forwards;
}

.tagline-word:nth-child(1) { animation-delay: 0.7s; }
.tagline-word:nth-child(2) { animation-delay: 0.9s; }
.tagline-word:nth-child(3) { animation-delay: 1.1s; }

@keyframes wordFade {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.tagline-highlight {
  color: var(--color-accent);
  font-weight: 600;
}

.hero-subhead-centered {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 1.2s forwards;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 1.3s forwards;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(107, 33, 168, 0.04);
  border: 1px solid rgba(107, 33, 168, 0.1);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  background: rgba(107, 33, 168, 0.08);
  border-color: rgba(107, 33, 168, 0.2);
  transform: translateY(-2px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, #9333EA 100%);
  border-radius: var(--radius-md);
  color: white;
}

.stat-content {
  text-align: left;
}

.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero CTAs Centered */
.hero-ctas-centered {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 1.4s forwards;
}

/* Trust Avatars */
.hero-trust-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  animation: fadeSlideUp 0.8s ease-out 1.5s forwards;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
  border: 2px solid white;
  margin-left: -10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.trust-avatar::before {
  content: '';
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, #9CA3AF 0%, #6B7280 100%);
  border-radius: 50%;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-avatar-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, #9333EA 100%);
  border: 2px solid white;
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 0.625rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 2px 8px rgba(107, 33, 168, 0.3);
}

/* ----------------------------------------
   Hero - Futuristic Background Elements
   ---------------------------------------- */
/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 20%; animation-delay: -3s; animation-duration: 18s; }
.particle-3 { top: 30%; right: 15%; animation-delay: -6s; animation-duration: 20s; }
.particle-4 { top: 70%; right: 25%; animation-delay: -9s; animation-duration: 16s; }
.particle-5 { top: 40%; left: 30%; animation-delay: -12s; animation-duration: 22s; }
.particle-6 { bottom: 20%; right: 10%; animation-delay: -5s; animation-duration: 19s; }

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(40px, -60px) scale(1.5);
    opacity: 0.8;
  }
  50% {
    transform: translate(-30px, 40px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(50px, 20px) scale(1.2);
    opacity: 0.7;
  }
}

/* Glowing Orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbPulse 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 33, 168, 0.15) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.12) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation-delay: -3s;
  animation-duration: 10s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  animation-delay: -5s;
  animation-duration: 12s;
}

@keyframes orbPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Scan Line Effect */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(107, 33, 168, 0.3), transparent);
  animation: scanMove 4s linear infinite;
}

@keyframes scanMove {
  0% {
    top: -2px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Hero Visual - Memo Preview */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeSlideLeft 1s ease-out 0.5s forwards;
}

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-memo-preview {
  background: var(--color-bg-primary);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  width: 100%;
  max-width: 420px;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 25px 50px -12px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(107, 33, 168, 0.03);
  animation: cardFloat 6s ease-in-out infinite;
  position: relative;
}

.hero-memo-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #9333EA 50%, #EC4899 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

@keyframes cardFloat {
  0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(-3deg) rotateX(1deg) translateY(-10px); }
}

.hero-memo-preview:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-8px) scale(1.02);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 40px 80px -20px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(107, 33, 168, 0.08);
  animation-play-state: paused;
}

.hero-memo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hero-memo-badge {
  font-family: var(--font-primary);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  background: linear-gradient(135deg, rgba(107, 33, 168, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(107, 33, 168, 0.15);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107, 33, 168, 0.15); }
  50% { box-shadow: 0 0 0 6px rgba(107, 33, 168, 0.05); }
}

.hero-memo-date {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.hero-memo-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hero-memo-section {
  padding: var(--space-sm);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--color-accent);
  transition: all var(--transition-base);
}

.hero-memo-section:hover {
  transform: translateX(4px);
  border-left-width: 4px;
  background: var(--color-accent-light);
}

.hero-memo-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.hero-memo-section p {
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.5;
}

.hero-memo-section .confidence {
  margin-top: 0.5rem;
}

.hero-memo-footer {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
  transition: color var(--transition-base);
}

.hero-scroll-indicator:hover {
  color: var(--color-accent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* General Animation Keyframes */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------------------------------------
   Problem Section
   ---------------------------------------- */
.section-problem {
  position: relative;
}

.section-problem h2 {
  margin-bottom: var(--space-xl);
}

.problem-content {
  font-size: var(--text-lg);
  line-height: 1.7;
}

.problem-content .lead {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
}

.problem-content .highlight {
  font-size: var(--text-xl);
  margin: var(--space-lg) 0;
}

/* ----------------------------------------
   Comparison Cards (What It Is / Isn't)
   ---------------------------------------- */
.section-alt h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
}

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

.comparison-card {
  background: var(--color-bg-primary);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #9333EA 100%);
}

.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.comparison-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent) 0%, #9333EA 100%);
  border-radius: var(--radius-lg);
  color: white;
  margin-bottom: var(--space-md);
}

.comparison-card-icon-not {
  background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
}

.comparison-card-isnt::before {
  background: linear-gradient(90deg, #6B7280 0%, #4B5563 100%);
}

.comparison-card-header {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: none;
}

.comparison-card-isnt .comparison-card-header {
  border-bottom-color: var(--color-border-dark);
}

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

.comparison-list li {
  font-size: var(--text-base);
  line-height: 1.6;
  padding-left: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.comparison-list li svg {
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 3px;
}

.comparison-list-not li svg {
  color: var(--color-text-muted);
}

.comparison-list li::before {
  display: none;
}

.comparison-list-not li::before {
  display: none;
}

.section-closing {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  font-style: italic;
}

.section-subhead {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.section-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ----------------------------------------
   Deliverables Grid
   ---------------------------------------- */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.deliverable-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.deliverable-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.deliverable-icon {
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.deliverable-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.deliverable-card p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.signal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
}

.confidence-examples {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

/* Audio Add-on */
.audio-addon {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
}

.audio-addon-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.audio-addon-content {
  flex: 1;
}

.audio-addon-content h4 {
  font-size: var(--text-base);
  margin-bottom: 0.25rem;
}

.audio-addon-content p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

.audio-addon-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ----------------------------------------
   Memo Preview Cards
   ---------------------------------------- */
.memo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.memo-card {
  background: var(--color-bg-primary);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.memo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(107, 33, 168, 0.1);
}

.memo-card-label {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-accent);
  background: linear-gradient(135deg, rgba(107, 33, 168, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.memo-card-date {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}

.memo-card-content {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
}

/* Memo Judgment */
.memo-judgment {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.memo-judgment:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.memo-judgment-text {
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

.memo-judgment-detail {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
}

/* Memo Signal */
.memo-signal {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.memo-signal:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.memo-signal-text {
  font-size: var(--text-sm);
  margin-bottom: var(--space-xs);
}

.memo-signal-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

.memo-signal-source {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.memo-signal-detail {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-xs);
}

/* Memo Watchlist */
.memo-watchlist {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.memo-watchlist li {
  padding-left: var(--space-md);
  border-left: 2px solid var(--color-accent);
}

.memo-watchlist li strong {
  display: block;
  font-size: var(--text-sm);
  margin-bottom: 0.25rem;
}

.memo-watchlist li p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

/* ----------------------------------------
   Outcomes Section
   ---------------------------------------- */
.section-intro {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.outcome-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.outcome-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-light);
  border-radius: 50%;
  color: var(--color-accent);
}

.outcome-content h3 {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

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

.outcomes-closing {
  font-size: var(--text-xl);
  font-style: italic;
  text-align: center;
  color: var(--color-text-secondary);
}

/* ----------------------------------------
   Mid-Page CTA
   ---------------------------------------- */
.section-cta-mid {
  background: var(--color-bg-dark);
  color: var(--color-text-inverted);
  text-align: center;
  padding: var(--space-2xl) 0;
}

.section-cta-mid h2 {
  color: var(--color-text-inverted);
  margin-bottom: var(--space-sm);
}

.section-cta-mid p {
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  margin-bottom: var(--space-sm);
}

.cta-microcopy {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

/* ----------------------------------------
   Fit Cards (Who It's For)
   ---------------------------------------- */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.fit-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.fit-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-accent);
}

.fit-card-not h3 {
  border-bottom-color: var(--color-border-dark);
}

.fit-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.fit-list li {
  position: relative;
  padding-left: var(--space-md);
  font-size: var(--text-base);
  line-height: 1.5;
}

.fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--color-success);
  border-radius: 50%;
}

.fit-list-not li::before {
  background: var(--color-text-muted);
}

/* ----------------------------------------
   About Section
   ---------------------------------------- */
.about-content {
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.about-content .lead {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-lg);
}

.pullquote {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-style: italic;
  color: var(--color-text-primary);
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-md);
  margin: var(--space-lg) 0;
}

.about-credential {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.about-credential p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

/* ----------------------------------------
   Cadence Section
   ---------------------------------------- */
.cadence-comparison {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.cadence-item {
  padding: var(--space-lg);
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.cadence-item h3 {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

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

.cadence-item-yes {
  border-color: var(--color-accent);
  border-width: 2px;
  background: var(--color-accent-light);
}

.cadence-item-yes h3 {
  color: var(--color-accent);
}

.cadence-closing {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  font-style: italic;
}

/* ----------------------------------------
   FAQ Section
   ---------------------------------------- */
.faq-list {
  border-top: none;
}

.faq-item {
  background: var(--color-bg-primary);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(107, 33, 168, 0.15);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 500;
  text-align: left;
  color: var(--color-text-primary);
  background: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--color-accent) 0%, #9333EA 100%);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-weight: 400;
}

/* ----------------------------------------
   Final CTA Section
   ---------------------------------------- */
.section-cta-final {
  background: #F5F5F0;
  text-align: center;
  padding: var(--space-4xl) 0;
}

.section-cta-final h2 {
  margin-bottom: var(--space-md);
}

.cta-lead {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
}

.cta-sublead {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.pricing-block {
  margin-bottom: var(--space-lg);
}

.pricing-amount {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.pricing-placeholder {
  color: var(--color-accent);
}

.pricing-annual {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.section-cta-final .cta-microcopy {
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.cta-secondary-options {
  margin-top: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-sm);
}

.cta-link {
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.cta-link:hover {
  color: var(--color-accent-hover);
}

.cta-divider {
  color: var(--color-border-dark);
}

/* ----------------------------------------
   Final CTA - Beehiiv Style
   ---------------------------------------- */
.cta-final-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.cta-final-header h2 {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.cta-final-subhead {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-secondary);
}

.pricing-card-centered {
  display: flex;
  justify-content: center;
}

.pricing-card-centered .pricing-card {
  max-width: 480px;
  width: 100%;
  background: var(--color-bg-primary);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.pricing-card-title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.pricing-card-centered .pricing-card-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
}

.pricing-card-centered .pricing-currency {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text-primary);
}

.pricing-card-centered .pricing-number {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
}

.pricing-card-centered .pricing-period {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-text-muted);
}

.pricing-billed {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.pricing-description {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.pricing-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.pricing-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  color: var(--color-text-primary);
}

.pricing-benefit svg {
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--text-base);
  background: var(--color-text-primary);
  border-radius: var(--radius-lg);
}

.btn-full:hover {
  background: #333;
}

/* ----------------------------------------
   Footer - Premium
   ---------------------------------------- */
.footer {
  background: linear-gradient(180deg, #0D0D0D 0%, #1A1A1A 100%);
  color: var(--color-text-inverted);
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

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

.footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.footer h4 {
  font-family: var(--font-primary);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-md);
}

.footer-nav ul,
.footer-connect ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav a,
.footer-connect a {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  transition: all 0.25s ease;
}

.footer-nav a:hover,
.footer-connect a:hover {
  color: var(--color-text-inverted);
  padding-left: 4px;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-legal p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ----------------------------------------
   Premium CTA Elements
   ---------------------------------------- */

/* Inline CTA after sections */
.inline-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.inline-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.btn-arrow {
  display: flex;
  transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.inline-cta-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
}

.inline-cta-subtle {
  text-align: center;
  margin-top: var(--space-lg);
}

.inline-cta-subtle .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Floating CTA Bar within sections */
.floating-cta-bar {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1a1a2e 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  margin-top: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.floating-cta-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), #9333EA, var(--color-accent));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

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

.floating-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.floating-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.floating-cta-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

.floating-cta-headline {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-inverted);
}

/* Dual CTA Block */
.dual-cta-block {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.dual-cta-block .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

/* Enhanced Mid-Page CTA */
.section-cta-mid {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #0d0d1a 100%);
  overflow: hidden;
}

.cta-mid-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(107, 33, 168, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 70% 80%, rgba(107, 33, 168, 0.15) 0%, transparent 50%);
  animation: ctaBgMove 15s ease-in-out infinite;
}

@keyframes ctaBgMove {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 10px); }
}

.cta-mid-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-mid-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(107, 33, 168, 0.2);
  border: 1px solid rgba(107, 33, 168, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: var(--space-lg);
}

.section-cta-mid h2 {
  color: var(--color-text-inverted);
  margin-bottom: var(--space-md);
}

.cta-mid-lead {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
}

.cta-mid-features {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.cta-mid-feature {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.cta-mid-feature svg {
  color: var(--color-accent);
}

.cta-mid-buttons {
  margin-bottom: var(--space-md);
}

.btn-xl {
  padding: 1.25rem 3rem;
  font-size: var(--text-lg);
}

.cta-mid-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.cta-trust-text {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Enhanced Final CTA Section */
.section-cta-final {
  position: relative;
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 50%, var(--color-bg-secondary) 100%);
  overflow: hidden;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 20% 30%, rgba(107, 33, 168, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 25% at 80% 70%, rgba(107, 33, 168, 0.05) 0%, transparent 50%);
}

.cta-final-content {
  position: relative;
}

.cta-final-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.cta-final-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  margin-bottom: var(--space-md);
}

.cta-final-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.cta-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.cta-final-left {
  padding-top: var(--space-md);
}

.cta-final-left .cta-lead {
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.cta-final-left .cta-sublead {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
}

.cta-final-checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.cta-check-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

.cta-check-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Pricing Card */
.pricing-card {
  background: var(--color-bg-primary);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 25px 50px -12px rgba(107, 33, 168, 0.15);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), #9333EA);
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.pricing-card-label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card-popular {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}

.pricing-card-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--space-xs);
}

.pricing-currency {
  font-size: var(--text-2xl);
  color: var(--color-text-secondary);
}

.pricing-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-text-primary);
}

.pricing-period {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}

.pricing-card .pricing-annual {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.pricing-card-trust {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.trust-item svg {
  color: var(--color-accent);
}

.cta-final-team {
  margin-top: var(--space-lg);
  text-align: center;
}

.cta-final-team p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.cta-final-team .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

.cta-gift-link {
  text-align: center;
  margin-top: var(--space-md);
}

.cta-gift-link a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-base);
}

.cta-gift-link a:hover {
  color: var(--color-accent);
}

/* Sticky CTA Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  padding: var(--space-sm) var(--space-lg);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.sticky-cta-headline {
  font-weight: 600;
  color: var(--color-text-primary);
}

.sticky-cta-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.sticky-cta-bar .btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  white-space: nowrap;
}

/* Button with icon */
.btn svg {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ----------------------------------------
   Animations & Scroll Effects
   ---------------------------------------- */

/* Base animation states */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade slide from left */
.animate-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Fade slide from right */
.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up animation */
.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.8s; }
.stagger-children > *:nth-child(9) { transition-delay: 0.9s; }
.stagger-children > *:nth-child(10) { transition-delay: 1s; }

/* Section label animations */
.label {
  position: relative;
  overflow: hidden;
}

.label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: translateX(-100%);
  transition: transform 0.6s ease-out;
}

.visible .label::after,
.label.visible::after {
  transform: translateX(0);
}

/* Card hover animations */
.comparison-card,
.deliverable-card,
.memo-card,
.fit-card,
.cadence-item {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.comparison-card:hover,
.fit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.deliverable-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -15px rgba(107, 33, 168, 0.15);
  border-color: var(--color-accent);
}

.memo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.15);
  border-color: var(--color-accent);
}

/* List item animations */
.comparison-list li,
.fit-list li,
.outcomes-list .outcome-item {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.visible .comparison-list li,
.visible .fit-list li,
.visible .outcomes-list .outcome-item {
  opacity: 1;
  transform: translateX(0);
}

/* FAQ animations */
.faq-item {
  transition: background-color 0.3s ease;
}

.faq-item:hover {
  background-color: var(--color-bg-secondary);
}

.faq-question {
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.faq-item:hover .faq-question {
  padding-left: 8px;
  color: var(--color-accent);
}

/* Button ripple effect */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* Navigation link underline animation */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Pullquote animation */
.pullquote {
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible .pullquote {
  opacity: 1;
  transform: translateX(0);
}

.pullquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  color: var(--color-accent);
  opacity: 0.2;
  font-family: var(--font-serif);
  line-height: 1;
}

/* Signal chip hover */
.signal-chip {
  transition: all 0.3s ease;
  cursor: default;
}

.signal-chip:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Confidence indicator pulse */
.confidence-dot {
  animation: confidencePulse 2s ease-in-out infinite;
}

@keyframes confidencePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Outcome checkmark animation */
.outcome-icon {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.outcome-item:hover .outcome-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: var(--color-accent);
}

.outcome-item:hover .outcome-icon svg {
  stroke: white;
}

/* Section divider animation */
.section::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), transparent);
  margin: var(--space-xl) auto 0;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform-origin: left center;
}

.section.visible::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Pricing block animation */
.pricing-amount {
  transition: transform 0.3s ease;
}

.pricing-block:hover .pricing-amount {
  transform: scale(1.05);
}

/* Footer link hover */
.footer-nav a,
.footer-connect a {
  position: relative;
  display: inline-block;
}

.footer-nav a::after,
.footer-connect a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-text-inverted);
  transition: width 0.3s ease;
}

.footer-nav a:hover::after,
.footer-connect a:hover::after {
  width: 100%;
}

/* Audio addon hover */
.audio-addon {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.audio-addon:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px -10px rgba(107, 33, 168, 0.2);
  border-color: var(--color-accent);
}

/* Scroll progress indicator - added via JS */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), #9333EA);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* Page load animation */
body {
  animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Typing cursor effect for labels */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Magnetic button effect - enhanced hover */
.btn-primary {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

/* CTA section special animation */
.section-cta-mid,
.section-cta-final {
  position: relative;
  overflow: hidden;
}

.section-cta-mid::before,
.section-cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(107, 33, 168, 0.1) 0%, transparent 50%);
  animation: ctaGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10%, 10%); }
  50% { transform: translate(-5%, 5%); }
  75% { transform: translate(5%, -10%); }
}

/* Text highlight animation on scroll */
.highlight strong {
  background: linear-gradient(120deg, var(--color-accent-light) 0%, var(--color-accent-light) 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: 0 100%;
  transition: background-size 0.8s ease;
  padding: 0 4px;
  margin: 0 -4px;
}

.visible .highlight strong {
  background-size: 100% 100%;
}

/* ----------------------------------------
   Responsive: Tablet
   ---------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --text-6xl: 3rem;
    --text-5xl: 2.5rem;
    --text-4xl: 1.75rem;
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .nav-container {
    padding: 0 var(--space-lg);
  }

  /* Hero Tablet */
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-label-wrapper {
    display: flex;
    justify-content: center;
  }

  .hero-divider {
    justify-content: center;
  }

  .hero-subhead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-memo-preview {
    transform: none;
    margin: 0 auto;
  }

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

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

  .memo-cards .memo-card:last-child {
    grid-column: span 2;
  }

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

  .footer-legal {
    grid-column: span 2;
    flex-direction: row;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  /* CTA Elements Tablet */
  .cta-final-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .cta-final-benefits {
    order: 2;
  }

  .cta-final-pricing {
    order: 1;
  }

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

  .pricing-options {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }
}

/* ----------------------------------------
   Responsive: Mobile
   ---------------------------------------- */
@media (max-width: 768px) {
  :root {
    --text-6xl: 2.5rem;
    --text-5xl: 2rem;
    --text-4xl: 1.5rem;
    --text-3xl: 1.375rem;
    --nav-height: 60px;
  }

  .container {
    padding: 0 var(--space-md);
  }

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

  /* Mobile Navigation */
  .nav-container {
    padding: 0 var(--space-md);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-4xl) var(--space-lg) var(--space-lg);
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right var(--transition-slow);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    width: 100%;
  }

  .nav-links a {
    font-size: var(--text-lg);
  }

  .btn-nav {
    width: 100%;
    margin-top: var(--space-md);
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: var(--space-3xl) 0 var(--space-2xl);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
  }

  .hero-content {
    text-align: center;
  }

  .hero-label-wrapper {
    display: flex;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-divider {
    justify-content: center;
  }

  .hero-tagline {
    font-size: var(--text-xl);
  }

  .hero-tagline br {
    display: none;
  }

  .hero-subhead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-trust {
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-memo-preview {
    transform: none;
    max-width: 100%;
  }

  .hero-memo-preview:hover {
    transform: none;
  }

  /* Hero Centered - Mobile */
  .hero-container-centered {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-xl);
    min-height: auto;
  }

  .hero-title-centered {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .hero-tagline-centered {
    font-size: var(--text-lg);
  }

  .tagline-word {
    display: block;
    margin: 0.25em 0;
  }

  .hero-subhead-centered {
    font-size: var(--text-base);
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  .hero-stat {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-ctas-centered {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas-centered .btn {
    width: 100%;
    max-width: 300px;
  }

  .trust-avatars {
    justify-content: center;
  }

  /* Hide complex animations on mobile for performance */
  .hero-orbs,
  .hero-particles,
  .hero-lines {
    display: none;
  }

  /* Comparison cards mobile */
  .comparison-card-icon {
    width: 40px;
    height: 40px;
  }

  .comparison-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Grids */
  .comparison-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .memo-cards {
    grid-template-columns: 1fr;
  }

  .memo-cards .memo-card:last-child {
    grid-column: span 1;
  }

  /* Outcomes */
  .outcome-item {
    flex-direction: column;
    gap: var(--space-sm);
  }

  /* Audio addon */
  .audio-addon {
    flex-direction: column;
    text-align: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-legal {
    grid-column: span 1;
    flex-direction: column;
    gap: var(--space-xs);
  }

  /* CTAs */
  .cta-secondary-options {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .cta-divider {
    display: none;
  }

  /* Inline CTAs */
  .inline-cta {
    padding: var(--space-lg) var(--space-md);
    margin: var(--space-lg) 0;
  }

  .inline-cta .btn-lg {
    width: 100%;
    max-width: 300px;
  }

  /* Floating CTA Bar */
  .floating-cta-bar {
    padding: var(--space-md);
  }

  .floating-cta-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .floating-cta-text {
    text-align: center;
  }

  .floating-cta-bar .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Mid-page CTA Section */
  .cta-mid-section .cta-mid-badge {
    font-size: var(--text-xs);
  }

  .cta-mid-section .cta-mid-headline {
    font-size: var(--text-3xl);
  }

  .cta-mid-features {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    text-align: left;
  }

  .cta-mid-feature {
    justify-content: flex-start;
  }

  .cta-mid-trust {
    flex-direction: column;
    gap: var(--space-xs);
  }

  /* Final CTA Section */
  .cta-final-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .cta-final-benefits {
    order: 2;
  }

  .cta-final-pricing {
    order: 1;
  }

  .cta-final-headline {
    font-size: var(--text-3xl);
    text-align: center;
  }

  .cta-final-subhead {
    text-align: center;
  }

  .cta-benefits-checklist {
    max-width: 100%;
  }

  .pricing-card {
    padding: var(--space-lg);
  }

  .pricing-card::before {
    height: 4px;
  }

  .pricing-amount {
    font-size: var(--text-4xl);
  }

  .pricing-cta .btn {
    width: 100%;
  }

  .pricing-options {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  .pricing-options::before {
    display: none;
  }

  /* Sticky CTA Bar */
  .sticky-cta-bar {
    padding: var(--space-sm) var(--space-md);
  }

  .sticky-cta-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .sticky-cta-headline {
    font-size: var(--text-sm);
  }

  .sticky-cta-sub {
    font-size: var(--text-xs);
  }

  .sticky-cta-bar .btn {
    width: 100%;
    max-width: 200px;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-sm);
  }

  /* Dual CTA Block */
  .dual-cta-block {
    padding: var(--space-lg);
    gap: var(--space-md);
  }

  .dual-cta-options {
    flex-direction: column;
    gap: var(--space-md);
  }

  .dual-cta-options .btn {
    width: 100%;
  }

  .dual-cta-or {
    display: none;
  }
}

/* ----------------------------------------
   Reduced Motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ----------------------------------------
   Print Styles
   ---------------------------------------- */
@media print {
  .nav,
  .btn,
  .section-cta-mid,
  .section-cta-final,
  .footer {
    display: none;
  }

  .section {
    padding: var(--space-lg) 0;
    page-break-inside: avoid;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}
