/**
 * Landing Page Styles for Retroflight
 * Extends the base design system from styles.css
 */

/* ============================================
   LANDING PAGE BODY & LAYOUT
   ============================================ */

.landing-body {
    background: 
        radial-gradient(circle at 15% 10%, rgba(68, 255, 178, 0.15), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(122, 240, 255, 0.12), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(255, 99, 132, 0.08), transparent 40%),
        var(--bg);
    overflow-x: hidden;
}

.landing-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-base);
}

/* ============================================
   HEADER (Minimal Navigation)
   ============================================ */

.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    background: rgba(5, 6, 17, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(122, 240, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.landing-header__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-header__logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 2px;
    transition: text-shadow 0.3s ease;
}

.landing-header__logo:hover {
    text-shadow: 0 0 20px var(--accent);
}

.landing-header__actions {
    display: flex;
    gap: 12px;
}

.landing-header__login {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: 1px solid rgba(122, 240, 255, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-header__login:hover {
    border-color: var(--accent-2);
    background: rgba(122, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(122, 240, 255, 0.2);
}

/* ============================================
   STICKY CTA
   ============================================ */

.sticky-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 99;
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta__btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #050611;
    background: linear-gradient(135deg, #44ffb2, #7af0ff);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 
        0 8px 30px rgba(68, 255, 178, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.3s ease;
}

.sticky-cta__btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 40px rgba(68, 255, 178, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0 60px;
    gap: 40px;
    text-align: center;
}

@media (min-width: 860px) {
    .hero {
        flex-direction: row;
        text-align: left;
        gap: 60px;
        padding: 120px 0 80px;
    }
}

.hero__content {
    flex: 1;
    max-width: 560px;
}

.hero__headline {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(20px, 5vw, 32px);
    line-height: 1.4;
    margin: 0 0 24px;
    color: var(--text);
}

.hero__headline-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subheadline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    line-height: 1.7;
    color: var(--muted);
    margin: 0 0 32px;
}

.hero__cta-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 480px) {
    .hero__cta-group {
        flex-direction: row;
        justify-content: flex-start;
    }
}

.hero__cta-primary {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #050611;
    background: linear-gradient(135deg, #44ffb2, #7af0ff);
    border: none;
    padding: 16px 28px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(68, 255, 178, 0.35);
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
}

.hero__cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(68, 255, 178, 0.45);
}

.hero__cta-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-2);
    background: transparent;
    border: 1px solid rgba(122, 240, 255, 0.3);
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
}

.hero__cta-secondary:hover {
    background: rgba(122, 240, 255, 0.1);
    border-color: var(--accent-2);
}

.hero__cta-icon {
    font-size: 18px;
}

.hero__visual {
    flex: 1;
    max-width: 500px;
    width: 100%;
}

.hero__video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(122, 240, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.hero__video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.hero__video-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(68, 255, 178, 0.2), transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   SECTION TITLES
   ============================================ */

.section-title {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(16px, 3vw, 24px);
    text-align: center;
    margin: 0 0 12px;
    color: var(--text);
}

.section-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    text-align: center;
    color: var(--muted);
    margin: 0 0 48px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    position: relative;
    background: linear-gradient(135deg, rgba(5, 8, 26, 0.9), rgba(15, 18, 36, 0.85));
    border: 1px solid rgba(122, 240, 255, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(68, 255, 178, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.step-card__number {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: 'Press Start 2P', cursive;
    font-size: 10px;
    color: var(--accent);
    opacity: 0.5;
}

.step-card__icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.step-card__title {
    font-family: 'Press Start 2P', cursive;
    font-size: 11px;
    margin: 0 0 12px;
    color: var(--text);
    line-height: 1.4;
}

.step-card__desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   FEATURES (Z-Pattern Layout)
   ============================================ */

.features {
    padding: 80px 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-row {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

@media (min-width: 768px) {
    .feature-row {
        flex-direction: row;
        gap: 48px;
    }
    
    .feature-row--reverse {
        flex-direction: row-reverse;
    }
}

.feature-content {
    flex: 1;
    max-width: 480px;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-title {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    margin: 0 0 16px;
    color: var(--text);
    line-height: 1.5;
}

.feature-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.feature-visual {
    flex: 1;
    max-width: 400px;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 18, 36, 0.9), rgba(5, 8, 26, 0.95));
    border: 1px solid rgba(122, 240, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual__img {
    max-width: 92%;
    max-height: 92%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.feature-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(68, 255, 178, 0.1), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(122, 240, 255, 0.08), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

/* ============================================
   DEMO VIDEO
   ============================================ */

.demo {
    padding: 80px 0;
}

.demo__container {
    max-width: 360px;
    margin: 0 auto;
}

.demo__video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(122, 240, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.demo__video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.demo__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.demo__video-wrapper:has(video:not([paused])) .demo__play-overlay,
.demo__video-wrapper.playing .demo__play-overlay {
    opacity: 0;
}

.demo__play-btn {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border-radius: 50%;
    font-size: 28px;
    color: #050611;
    box-shadow: 0 8px 30px rgba(68, 255, 178, 0.4);
}

/* ============================================
   SOCIAL PROOF
   ============================================ */

.social-proof {
    padding: 80px 0;
}

.live-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(5, 8, 26, 0.9), rgba(15, 18, 36, 0.85));
    border: 1px solid rgba(122, 240, 255, 0.15);
    border-radius: 16px;
}

.live-stat {
    text-align: center;
    min-width: 120px;
}

.live-stat__value {
    display: block;
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(20px, 4vw, 32px);
    color: var(--accent);
    margin-bottom: 8px;
}

.live-stat__label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(5, 8, 26, 0.9), rgba(15, 18, 36, 0.85));
    border: 1px solid rgba(122, 240, 255, 0.12);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(68, 255, 178, 0.3);
    transform: translateY(-4px);
}

.testimonial__stars {
    color: #ffc857;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial__quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin: 0 0 20px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.testimonial__title {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: var(--accent);
    letter-spacing: 0.5px;
}

/* ============================================
   PRICING
   ============================================ */

.pricing {
    padding: 80px 0;
}

.pricing-intro {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.pricing-intro__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(68, 255, 178, 0.15), rgba(122, 240, 255, 0.1));
    border: 1px solid rgba(68, 255, 178, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
}

.pricing-intro__icon {
    font-size: 20px;
}

.pricing-intro__text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    background: linear-gradient(135deg, rgba(5, 8, 26, 0.95), rgba(15, 18, 36, 0.9));
    border: 1px solid rgba(122, 240, 255, 0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(122, 240, 255, 0.35);
    transform: translateY(-4px);
}

.pricing-card--popular {
    border-color: rgba(68, 255, 178, 0.5);
    box-shadow: 0 0 40px rgba(68, 255, 178, 0.15);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #050611;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.pricing-card__header {
    margin-bottom: 24px;
}

.pricing-card__name {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    margin: 0 0 16px;
    color: var(--text);
}

.pricing-card__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pricing-card__amount {
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    color: var(--accent);
}

.pricing-card__period {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: var(--muted);
}

.pricing-card__savings {
    margin-top: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: #ffc857;
    font-weight: 600;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.pricing-card__features li {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: var(--muted);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__btn {
    width: 100%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: rgba(122, 240, 255, 0.1);
    border: 1px solid rgba(122, 240, 255, 0.3);
    padding: 14px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
}

.pricing-card__btn:hover {
    background: rgba(122, 240, 255, 0.2);
    border-color: var(--accent-2);
}

.pricing-card__btn--primary {
    color: #050611;
    background: linear-gradient(135deg, #44ffb2, #7af0ff);
    border: none;
    box-shadow: 0 6px 20px rgba(68, 255, 178, 0.3);
}

.pricing-card__btn--primary:hover {
    box-shadow: 0 8px 30px rgba(68, 255, 178, 0.4);
}

.pricing-note {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin-top: 32px;
}

/* ============================================
   FAQ
   ============================================ */

.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(5, 8, 26, 0.9), rgba(15, 18, 36, 0.85));
    border: 1px solid rgba(122, 240, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(68, 255, 178, 0.3);
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: transparent;
    border: none;
    padding: 20px 24px;
    cursor: pointer;
    text-align: left;
    min-height: var(--touch-target-min);
}

.faq-item__toggle {
    font-size: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-item__toggle {
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    padding: 0 24px 20px;
}

/* ============================================
   FINAL CTA
   ============================================ */

.final-cta {
    padding: 100px 0;
    text-align: center;
}

.final-cta__content {
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(68, 255, 178, 0.15), transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(122, 240, 255, 0.1), transparent 40%),
        linear-gradient(135deg, rgba(5, 8, 26, 0.95), rgba(15, 18, 36, 0.9));
    border: 1px solid rgba(122, 240, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.final-cta__headline {
    font-family: 'Press Start 2P', cursive;
    font-size: clamp(18px, 4vw, 28px);
    margin: 0 0 16px;
    color: var(--text);
}

.final-cta__subtext {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: var(--muted);
    margin: 0 0 32px;
    line-height: 1.6;
}

.final-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #050611;
    background: linear-gradient(135deg, #44ffb2, #7af0ff);
    border: none;
    padding: 18px 36px;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(68, 255, 178, 0.4);
    transition: all 0.3s ease;
    min-height: var(--touch-target-min);
}

.final-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(68, 255, 178, 0.5);
}

.final-cta__btn-icon {
    font-size: 22px;
}

.final-cta__note {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin: 20px 0 0;
}

/* ============================================
   FOOTER
   ============================================ */

.landing-footer {
    background: rgba(5, 6, 17, 0.9);
    border-top: 1px solid rgba(122, 240, 255, 0.1);
    padding: 48px 24px;
}

.landing-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.landing-footer__brand {
    margin-bottom: 24px;
}

.landing-footer__logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 2px;
}

.landing-footer__tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin: 8px 0 0;
}

.landing-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.landing-footer__link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

.landing-footer__link:hover {
    color: var(--accent-2);
}

.landing-footer__separator {
    color: rgba(255, 255, 255, 0.2);
}

.landing-footer__copyright {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ============================================
   ANIMATIONS & SCROLL REVEALS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations for grids */
.step-card,
.testimonial-card,
.pricing-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-card.visible,
.testimonial-card.visible,
.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pixel scanline effect on video (optional) */
.hero__video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.05) 0px,
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}

/* Micro-interaction: Button press effect */
.hero__cta-primary:active,
.sticky-cta__btn:active,
.final-cta__btn:active {
    transform: scale(0.97);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 480px) {
    .landing-header {
        padding: 12px 16px;
    }
    
    .landing-header__logo {
        font-size: 12px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero__video {
        max-height: 60vh;
    }
    
    .section-title {
        margin-bottom: 8px;
    }
    
    .section-subtitle {
        margin-bottom: 32px;
    }
    
    .how-it-works,
    .features,
    .demo,
    .social-proof,
    .pricing,
    .faq {
        padding: 60px 0;
    }
    
    .live-stats {
        gap: 24px;
        padding: 24px;
    }
    
    .final-cta__content {
        padding: 40px 24px;
    }
}
