/* ==========================================
   AI Stage Coach - Brand Manifesto Edition
   "Train Smarter. Improve Faster."
   ========================================== */

/* CSS Custom Properties */
:root {
    --bg-primary: #0a0b0d;
    --bg-secondary: #12141a;
    --bg-tertiary: #1a1d26;
    --bg-card: #161920;
    --accent-primary: #00ff88;
    --accent-secondary: #00cc6a;
    --accent-glow: rgba(0, 255, 136, 0.15);
    --accent-subtle: rgba(0, 255, 136, 0.08);
    --target-red: #e63946;
    --target-red-glow: rgba(230, 57, 70, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #a0a6b8;
    --text-muted: #5c6378;
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(0, 255, 136, 0.3);
    --section-gap: clamp(80px, 12vw, 160px);
    --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --font-size-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --font-size-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --font-size-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);
    --font-size-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.5rem);
    --font-size-2xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    --font-size-3xl: clamp(2.5rem, 2rem + 3vw, 5rem);
}

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: var(--font-size-base);
}

h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; line-height: 1.1; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 3.75rem); }
.accent-text { color: var(--accent-primary); }
.gradient-text { background: linear-gradient(135deg, var(--accent-primary), #00d4ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100%; left: 0; padding: 1rem; background: var(--accent-primary); color: var(--bg-primary); z-index: 9999; transition: top 0.3s ease; }
.skip-link:focus { top: 0; }
:focus-visible { outline: 2px solid var(--accent-primary); outline-offset: 2px; }

/* Navigation */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.25rem 0;
    background: rgba(10, 11, 13, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle); transition: padding 0.3s ease;
}
.nav.scrolled { padding: 0.75rem 0; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-icon {
    width: 44px; height: 44px; min-width: 44px;
    border-radius: 10px; 
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.logo-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--text-primary); letter-spacing: 0.05em; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: var(--font-size-sm); font-weight: 500; transition: color 0.2s ease; position: relative; padding: 0.5rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent-primary); transition: width 0.3s ease; }
.nav-links a:hover, .nav-links a:focus { color: var(--text-primary); outline: none; }
.nav-links a:hover::after, .nav-links a:focus::after { width: 100%; }
.nav-cta {
    background: var(--accent-primary); color: var(--bg-primary); padding: 0.75rem 1.5rem; border-radius: 8px;
    text-decoration: none; font-weight: 600; font-size: var(--font-size-sm); transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex; align-items: center; gap: 0.5rem; min-height: 44px;
}
.nav-cta:hover, .nav-cta:focus { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); outline: none; }
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span { display: block; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.mobile-menu-toggle.active .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 100px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent), radial-gradient(ellipse 60% 40% at 100% 50%, rgba(0, 212, 255, 0.08), transparent); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { max-width: 600px; }
.ai-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 100px; font-size: var(--font-size-xs); font-weight: 500; color: var(--text-muted); margin-bottom: 1.5rem; }
.ai-badge::before { content: ''; }
.hero-title { font-size: var(--font-size-3xl); margin-bottom: 1.5rem; text-transform: uppercase; }
.hero-subtitle { font-size: var(--font-size-lg); color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.7; }
.hero-reframe { font-size: var(--font-size-base); color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; padding-left: 1rem; border-left: 2px solid var(--border-accent); font-style: italic; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.app-store-badge-official { display: inline-block; transition: transform 0.2s ease, opacity 0.2s ease; }
.app-store-badge-official:hover, .app-store-badge-official:focus { transform: scale(1.05); opacity: 0.9; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat { text-align: left; padding: 0.75rem 1.25rem; background: var(--bg-tertiary); border-radius: 8px; border: 1px solid var(--border-subtle); }
.stat-label { font-size: var(--font-size-sm); color: var(--text-primary); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }

/* Phone Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-mockup { position: relative; width: 320px; height: 680px; background: linear-gradient(145deg, #1a1d26 0%, #0d0f12 100%); border-radius: 50px; padding: 12px; box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
.phone-screen { width: 100%; height: 100%; background: var(--bg-secondary); border-radius: 40px; overflow: hidden; position: relative; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 150px; height: 34px; background: #000; border-radius: 0 0 20px 20px; z-index: 10; }
.phone-content { padding: 50px 15px 15px; height: 100%; display: flex; flex-direction: column; position: relative; }
.target-preview { width: 100%; aspect-ratio: 1; background: radial-gradient(circle, transparent 15%, var(--target-red) 15%, var(--target-red) 17%, transparent 17%), radial-gradient(circle, transparent 30%, var(--target-red) 30%, var(--target-red) 32%, transparent 32%), radial-gradient(circle, transparent 45%, var(--target-red) 45%, var(--target-red) 47%, transparent 47%), radial-gradient(circle, transparent 60%, var(--target-red) 60%, var(--target-red) 62%, transparent 62%), radial-gradient(circle, transparent 75%, var(--target-red) 75%, var(--target-red) 77%, transparent 77%); border-radius: 12px; position: relative; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-subtle); opacity: 0.8; flex-shrink: 0; }
.target-center { width: 20%; height: 20%; background: var(--accent-primary); border-radius: 50%; box-shadow: 0 0 30px var(--accent-glow); }
.shot-indicator { position: absolute; width: 10px; height: 10px; background: var(--bg-primary); border: 2px solid var(--accent-primary); border-radius: 50%; box-shadow: 0 0 8px var(--accent-glow); }
.shot-indicator:nth-child(2) { top: 35%; left: 45%; }
.shot-indicator:nth-child(3) { top: 42%; left: 52%; }
.shot-indicator:nth-child(4) { top: 48%; left: 47%; }
.shot-indicator:nth-child(5) { top: 40%; left: 55%; }
.shot-indicator:nth-child(6) { top: 50%; left: 50%; }
.analysis-overlay { margin-top: auto; background: rgba(22, 25, 32, 0.95); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 12px; padding: 10px; border: 1px solid var(--border-accent); }
.analysis-header { font-size: 9px; color: var(--text-secondary); text-align: center; padding-bottom: 8px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 8px; }
.analysis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 6px; }
.analysis-grid:last-child { margin-bottom: 0; }
.analysis-cell { text-align: center; padding: 4px 2px; background: var(--bg-tertiary); border-radius: 4px; }
.cell-label { display: block; font-size: 6px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.cell-value { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent-primary); font-weight: 600; }
.cell-value.good { color: var(--accent-primary); }
.cell-value.poor { color: #ff6b6b; }
.cell-sublabel { display: block; font-size: 6px; color: var(--text-muted); margin-top: 1px; }
.crosshair { position: absolute; width: 200px; height: 200px; border: 2px solid var(--accent-primary); border-radius: 50%; opacity: 0.1; pointer-events: none; }
.crosshair::before, .crosshair::after { content: ''; position: absolute; background: var(--accent-primary); }
.crosshair::before { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }
.crosshair::after { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.crosshair-1 { top: -50px; right: -100px; }
.crosshair-2 { bottom: 0; left: -50px; width: 150px; height: 150px; }

/* Privacy Banner */
.privacy-banner { background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%); padding: 4rem 0; border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.privacy-banner-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
.privacy-icon { font-size: 3rem; }
.privacy-headline { font-size: var(--font-size-xl); text-transform: uppercase; }
.privacy-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.privacy-badge { display: flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border-accent); border-radius: 100px; font-size: var(--font-size-sm); color: var(--text-primary); }
.privacy-badge-icon { color: var(--accent-primary); }

/* Section Common */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag { font-family: 'JetBrains Mono', monospace; font-size: var(--font-size-xs); color: var(--accent-primary); text-transform: uppercase; letter-spacing: 0.2em; display: block; margin-bottom: 1rem; }
.section-title { font-size: var(--font-size-2xl); text-transform: uppercase; margin-bottom: 1rem; }
.section-subtitle { font-size: var(--font-size-base); color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* Features */
.features { padding: var(--section-gap) 0; background: var(--bg-secondary); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 16px; padding: 2rem; transition: border-color 0.3s ease, transform 0.3s ease; }
.feature-card:hover, .feature-card:focus-within { border-color: var(--border-accent); transform: translateY(-4px); }
.feature-card.featured { grid-column: span 2; grid-row: span 2; background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-tertiary) 100%); border-color: var(--border-accent); display: flex; flex-direction: column; padding: 2.5rem; }
.feature-icon { width: 56px; height: 56px; background: var(--accent-subtle); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; }
.feature-title { font-family: 'Bebas Neue', sans-serif; font-size: var(--font-size-lg); letter-spacing: 0.02em; margin-bottom: 0.75rem; }
.feature-desc { font-size: var(--font-size-sm); color: var(--text-secondary); line-height: 1.7; }
.featured .feature-icon { width: 72px; height: 72px; font-size: 2rem; }
.featured .feature-title { font-size: var(--font-size-xl); }
.featured .feature-desc { font-size: var(--font-size-base); max-width: 400px; }
.discipline-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; padding-top: 2rem; }
.discipline-tag { padding: 0.5rem 1rem; background: var(--bg-primary); border: 1px solid var(--border-subtle); border-radius: 100px; font-size: var(--font-size-xs); font-weight: 500; color: var(--text-secondary); }

/* How It Works */
.how-it-works { padding: var(--section-gap) 0; }
.steps-container { display: flex; flex-direction: column; gap: 4rem; max-width: 800px; margin: 0 auto; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: start; }
.step-number { font-family: 'Bebas Neue', sans-serif; font-size: clamp(4rem, 8vw, 7rem); color: var(--bg-tertiary); line-height: 1; min-width: 100px; }
.step-content { }
.step-title { font-size: var(--font-size-lg); margin-bottom: 1rem; color: var(--accent-primary); text-transform: uppercase; letter-spacing: 0.02em; }
.step-desc { font-size: var(--font-size-base); color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.7; }
.step-details { list-style: none; padding: 0; }
.step-details li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; font-size: var(--font-size-sm); color: var(--text-muted); }
.step-details li::before { content: '→'; position: absolute; left: 0; color: var(--accent-primary); }

/* Pricing */
.pricing { padding: var(--section-gap) 0; background: var(--bg-secondary); }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.toggle-label { font-size: var(--font-size-sm); color: var(--text-muted); transition: color 0.3s ease; }
.toggle-label.active { color: var(--text-primary); }
.toggle-switch { width: 60px; height: 32px; background: var(--bg-tertiary); border-radius: 100px; position: relative; cursor: pointer; border: 1px solid var(--border-subtle); min-width: 60px; }
.toggle-switch::after { content: ''; position: absolute; width: 24px; height: 24px; background: var(--accent-primary); border-radius: 50%; top: 3px; left: 4px; transition: transform 0.3s ease; }
.toggle-switch.annual::after { transform: translateX(28px); }
.save-badge { background: var(--accent-primary); color: var(--bg-primary); padding: 0.25rem 0.75rem; border-radius: 100px; font-size: var(--font-size-xs); font-weight: 600; }
.pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 900px; margin: 0 auto; }
.pricing-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 20px; padding: 2.5rem; position: relative; transition: border-color 0.3s ease, transform 0.3s ease; }
.pricing-card:hover, .pricing-card:focus-within { transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--accent-primary); background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-tertiary) 100%); }
.pricing-card.featured::before { content: 'BEST VALUE'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent-primary); color: var(--bg-primary); padding: 0.25rem 1rem; border-radius: 100px; font-size: var(--font-size-xs); font-weight: 700; letter-spacing: 0.05em; }
.pricing-name { font-family: 'Bebas Neue', sans-serif; font-size: var(--font-size-lg); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.pricing-desc { font-size: var(--font-size-sm); color: var(--text-secondary); margin-bottom: 1.5rem; }
.pricing-amount { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 2rem; }
.pricing-currency { font-size: var(--font-size-lg); color: var(--text-muted); }
.pricing-value { font-family: 'Bebas Neue', sans-serif; font-size: var(--font-size-2xl); }
.pricing-period { font-size: var(--font-size-sm); color: var(--text-muted); }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0; font-size: var(--font-size-sm); color: var(--text-secondary); border-bottom: 1px solid var(--border-subtle); }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check { display: inline-block; width: 16px; height: 16px; position: relative; flex-shrink: 0; margin-top: 2px; }
.pricing-features .check::before { content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid var(--accent-primary); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.pricing-features .cross { display: inline-block; width: 16px; height: 16px; position: relative; flex-shrink: 0; margin-top: 2px; }
.pricing-features .cross::before { content: '×'; position: absolute; left: 0; top: -3px; font-size: 18px; color: var(--text-muted); font-weight: 300; }
.pricing-cta { width: 100%; padding: 1rem; border: none; border-radius: 10px; font-size: var(--font-size-sm); font-weight: 600; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; min-height: 48px; }
.pricing-card:not(.featured) .pricing-cta { background: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border-subtle); }
.pricing-card.featured .pricing-cta { background: var(--accent-primary); color: var(--bg-primary); }
.pricing-cta:hover, .pricing-cta:focus { transform: translateY(-2px); outline: none; }
.pricing-card.featured .pricing-cta:hover { box-shadow: 0 8px 30px var(--accent-glow); }

/* Social Proof */
.social-proof { padding: var(--section-gap) 0; }
.social-proof-content { text-align: center; max-width: 600px; margin: 0 auto; }
.social-proof h2 { font-size: var(--font-size-2xl); margin-bottom: 1.5rem; text-transform: uppercase; }
.social-proof p { font-size: var(--font-size-base); color: var(--text-secondary); margin-bottom: 2rem; }
.app-store-widget { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.app-store-widget-text { font-size: var(--font-size-sm); color: var(--text-muted); }
.app-store-link { transition: transform 0.2s ease, opacity 0.2s ease; }
.app-store-link:hover, .app-store-link:focus { transform: scale(1.05); opacity: 0.9; }

/* CTA Section */
.cta-section { padding: var(--section-gap) 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% 100%, var(--accent-glow), transparent); pointer-events: none; }
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-title { font-size: var(--font-size-2xl); text-transform: uppercase; margin-bottom: 1.5rem; }
.cta-subtitle { font-size: var(--font-size-base); color: var(--text-secondary); max-width: 500px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; }

/* Footer */
.footer { background: var(--bg-secondary); padding: 4rem 0 2rem; border-top: 1px solid var(--border-subtle); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3rem; margin-bottom: 4rem; }
.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: var(--font-size-sm); color: var(--text-secondary); line-height: 1.7; }
.footer-column h4 { font-family: 'Bebas Neue', sans-serif; font-size: var(--font-size-base); letter-spacing: 0.05em; margin-bottom: 1rem; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.75rem; }
.footer-column a { color: var(--text-secondary); text-decoration: none; font-size: var(--font-size-sm); transition: color 0.2s ease; padding: 0.25rem 0; display: inline-block; }
.footer-column a:hover, .footer-column a:focus { color: var(--accent-primary); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border-subtle); }
.footer-copyright { font-size: var(--font-size-xs); color: var(--text-muted); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--bg-tertiary); border-radius: 8px; color: var(--text-secondary); text-decoration: none; transition: background 0.2s ease, color 0.2s ease; font-family: 'JetBrains Mono', monospace; font-size: var(--font-size-xs); font-weight: 500; letter-spacing: -0.02em; }
.footer-social a:hover, .footer-social a:focus { background: var(--accent-primary); color: var(--bg-primary); }

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    @keyframes pulse { 0%, 100% { opacity: 0.1; transform: scale(1); } 50% { opacity: 0.2; transform: scale(1.05); } }
    @keyframes shotAppear { 0% { opacity: 0; transform: scale(0); } 50% { opacity: 1; transform: scale(1.2); } 100% { opacity: 1; transform: scale(1); } }
    .crosshair { animation: pulse 4s ease-in-out infinite; }
    .crosshair-2 { animation-delay: 2s; }
    .shot-indicator { animation: shotAppear 0.5s ease-out forwards; opacity: 0; }
    .shot-indicator:nth-child(2) { animation-delay: 0.5s; }
    .shot-indicator:nth-child(3) { animation-delay: 0.8s; }
    .shot-indicator:nth-child(4) { animation-delay: 1.1s; }
    .shot-indicator:nth-child(5) { animation-delay: 1.4s; }
    .shot-indicator:nth-child(6) { animation-delay: 1.7s; }
}

/* Responsive - Tablets & Small Desktops */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; order: 1; }
    .hero-visual { order: 0; margin-bottom: 2rem; }
    .hero-cta-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card.featured { grid-column: span 2; grid-row: span 1; }
    .step { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .step-number { order: 0; }
    .step-content { order: 1; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: span 2; max-width: 100%; text-align: center; }
    .footer-brand .logo { justify-content: center; }
}

/* Responsive - Tablets */
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10, 11, 13, 0.98); backdrop-filter: blur(20px); flex-direction: column; padding: 1.5rem; gap: 0; border-bottom: 1px solid var(--border-subtle); }
    .nav-links.active { display: flex; }
    .nav-links li { border-bottom: 1px solid var(--border-subtle); }
    .nav-links li:last-child { border-bottom: none; }
    .nav-links a { display: block; padding: 1rem 0; font-size: var(--font-size-base); }
    .nav-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card.featured { grid-column: span 1; }
    .pricing-cards { grid-template-columns: 1fr; }
    .pricing-card.featured { order: -1; }
    .phone-mockup { width: 280px; height: 580px; border-radius: 40px; }
    .phone-screen { border-radius: 32px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; gap: 1rem; }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .hero { padding-top: 80px; min-height: auto; padding-bottom: 3rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .stat { text-align: center; }
    .privacy-badges { flex-direction: column; align-items: center; }
    .pricing-toggle { flex-wrap: wrap; }
    .save-badge { order: -1; width: 100%; text-align: center; margin-bottom: 0.5rem; }
    .phone-mockup { width: 240px; height: 500px; border-radius: 36px; }
    .phone-screen { border-radius: 28px; }
    .phone-notch { width: 120px; height: 28px; }
}

/* Legal Pages (Privacy Policy, Terms of Service) */
.legal-page { 
    padding-top: 140px; 
    padding-bottom: var(--section-gap); 
    min-height: 100vh; 
    background: var(--bg-primary);
    position: relative;
}
.legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-glow), transparent);
    pointer-events: none;
}
.legal-content { 
    max-width: 800px; 
    margin: 0 auto; 
    position: relative;
    z-index: 1;
}
.legal-header { 
    text-align: center; 
    margin-bottom: 4rem; 
    padding-bottom: 3rem; 
    border-bottom: 1px solid var(--border-subtle); 
}
.legal-header h1 { 
    font-family: 'Bebas Neue', sans-serif; 
    font-size: var(--font-size-3xl); 
    text-transform: uppercase; 
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.legal-meta { 
    font-size: var(--font-size-sm); 
    color: var(--text-secondary);
    line-height: 1.8;
}
.legal-meta strong { color: var(--text-primary); }

.legal-body { 
    color: var(--text-secondary); 
    line-height: 1.9;
    font-size: var(--font-size-base);
}
.legal-body h2 { 
    font-family: 'Bebas Neue', sans-serif; 
    font-size: var(--font-size-xl); 
    color: var(--text-primary); 
    margin: 3.5rem 0 1.5rem; 
    text-transform: uppercase; 
    letter-spacing: 0.02em;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}
.legal-body h2:first-child {
    margin-top: 0;
}
.legal-body h3 { 
    font-family: 'Outfit', sans-serif; 
    font-size: var(--font-size-lg); 
    color: var(--accent-primary); 
    margin: 2.5rem 0 1rem; 
    font-weight: 600; 
    text-transform: none; 
    letter-spacing: normal; 
    line-height: 1.4; 
}
.legal-body p { 
    margin-bottom: 1.5rem; 
}
.legal-body ul, .legal-body ol { 
    margin: 1.5rem 0 2rem 1.5rem; 
}
.legal-body li { 
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}
.legal-body a { 
    color: var(--accent-primary); 
    text-decoration: none; 
    transition: opacity 0.2s ease; 
}
.legal-body a:hover, .legal-body a:focus { 
    opacity: 0.8; 
    text-decoration: underline; 
}
.legal-body hr { 
    border: none; 
    border-top: 1px solid var(--border-subtle); 
    margin: 3rem 0; 
}
.legal-body strong { color: var(--text-primary); }

.legal-signature { 
    text-align: center; 
    margin-top: 4rem; 
    padding-top: 3rem; 
    border-top: 1px solid var(--border-subtle); 
    color: var(--text-muted); 
    font-size: var(--font-size-sm); 
}

@media (max-width: 768px) {
    .legal-page { padding-top: 120px; }
    .legal-content { padding: 0 1.5rem; }
    .legal-header { margin-bottom: 3rem; padding-bottom: 2rem; }
    .legal-body h2 { margin: 2.5rem 0 1rem; }
}
