/* ═══════════════════════════════════════════
   TurboFlow — style.css
   Mission Control Theme
   ═══════════════════════════════════════════ */

/* ═══ RESET & BASE ═══ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #08090e;
    color: #e3e3e3;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* ═══ CSS VARIABLES ═══ */
:root {
    --bg: #08090e;
    --bg-card: #111218;
    --bg-card-hover: #161720;
    --card-border: rgba(255, 255, 255, 0.06);
    --card-border-hover: rgba(168, 199, 250, 0.25);

    --text: #e3e3e3;
    --text-dim: #9aa0a6;
    --text-dark: #5f6368;
    --text-muted: #37393b;

    --accent-blue: #a8c7fa;
    --accent-blue-bright: #c2d7fc;
    --accent-gold: #fdd663;
    --accent-green: #81c995;
    --accent-red: #f28b82;
    --accent-red-light: #fca5a5;
    --accent-blue-dark: #062e6f;

    --glow-blue: rgba(168, 199, 250, 0.15);
    --glow-blue-strong: rgba(168, 199, 250, 0.35);
    --glow-blue-subtle: rgba(168, 199, 250, 0.06);
    --glow-gold: rgba(253, 214, 99, 0.15);
    --glow-gold-subtle: rgba(253, 214, 99, 0.06);
    --glow-red: rgba(248, 113, 113, 0.12);
    --glow-green: rgba(129, 201, 149, 0.15);

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 100px;

    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;

    --mono: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
}


/* ═══ AMBIENT BACKGROUND ═══ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(circle 550px at 12% 20%, rgba(168, 199, 250, 0.09) 0%, transparent 70%),
        radial-gradient(circle 450px at 88% 60%, rgba(253, 214, 99, 0.07) 0%, transparent 70%),
        radial-gradient(circle 400px at 45% 45%, rgba(168, 199, 250, 0.05) 0%, transparent 60%),
        radial-gradient(circle 300px at 25% 80%, rgba(253, 214, 99, 0.04) 0%, transparent 60%);
    animation: orbDrift 25s ease-in-out infinite alternate;
}

@keyframes orbDrift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.08) translate(25px, -15px);
    }

    100% {
        transform: scale(1) translate(-15px, 10px);
    }
}


/* ═══ PARTICLES CANVAS ═══ */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}


/* ═══ CURSOR LIGHT ═══ */
#cursor-light {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 199, 250, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    transition: opacity 0.4s;
    opacity: 0;
}

#cursor-light.active {
    opacity: 1;
}


/* ═══ KEYFRAMES ═══ */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 25px var(--glow-blue), 0 0 60px rgba(168, 199, 250, 0.05);
    }

    50% {
        box-shadow: 0 0 40px rgba(168, 199, 250, 0.3), 0 0 80px rgba(168, 199, 250, 0.08);
    }
}

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

    100% {
        background-position: 200% 0;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px var(--accent-green);
    }

    50% {
        opacity: 0.4;
        box-shadow: none;
    }
}

@keyframes statusDotPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 4px var(--accent-green);
    }

    50% {
        opacity: 0.5;
        box-shadow: none;
    }
}


/* ═══ SCROLL REVEAL ═══ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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


/* ═══ UTILITY ═══ */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ═══════════════════════════════════════════
   SECTION LAYOUT
   ═══════════════════════════════════════════ */

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.section-container--narrow {
    max-width: 700px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: var(--mono);
}

.section-tag--red {
    color: var(--accent-red);
}

.section-tag--blue {
    color: var(--accent-blue);
}

.section-tag--gold {
    color: var(--accent-gold);
}

.section-tag--green {
    color: var(--accent-green);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 60px 24px;
    animation: fadeUp 1s ease-out both;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 199, 250, 0.06);
    border: 1px solid rgba(168, 199, 250, 0.12);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    margin-bottom: 20px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.72rem;
    color: var(--accent-blue);
    font-weight: 500;
    font-family: var(--mono);
    letter-spacing: 0.02em;
}

/* Title */
.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: #fff;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-dim);
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.65;
}

/* CTA Buttons */
.hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-blue);
    color: var(--accent-blue-dark);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-main:hover {
    background: var(--accent-blue-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-blue-strong);
}

.cta-main--large {
    padding: 16px 36px;
    font-size: 1rem;
}

.cta-icon {
    font-size: 1.1em;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dim);
    padding: 14px 20px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

/* Trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--text-dark);
    font-family: var(--mono);
}

.trust-icon {
    font-size: 0.8rem;
}


/* ═══════════════════════════════════════════
   HERO VISUAL / MOCKUP
   ═══════════════════════════════════════════ */

.hero-visual {
    flex: 0 0 390px;
}

.mockup-card {
    background: rgba(17, 18, 24, 0.85);
    border: 1px solid rgba(168, 199, 250, 0.1);
    border-radius: var(--radius-xl);
    padding: 20px;
    animation: glowPulse 4s infinite;
    backdrop-filter: blur(16px);
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.mockup-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-icon {
    font-size: 0.85rem;
}

.mockup-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.mockup-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    background: rgba(129, 201, 149, 0.1);
    color: var(--accent-green);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-family: var(--mono);
}

.mockup-status-dot {
    width: 5px;
    height: 5px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: statusDotPulse 2s ease-in-out infinite;
}

/* Progress */
.mockup-progress-section {
    background: rgba(8, 9, 14, 0.6);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.mockup-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.mockup-progress-label {
    font-size: 0.58rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--mono);
}

.mockup-progress-pct {
    font-size: 0.58rem;
    color: var(--accent-blue);
    font-weight: 600;
    font-family: var(--mono);
}

.mockup-progress-bar {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    height: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.mockup-progress-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-gold));
    border-radius: var(--radius-full);
    transition: width 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mockup-progress-fill.animated {
    width: 78%;
}

.mockup-progress-text {
    font-size: 0.65rem;
    color: var(--text-dim);
    font-family: var(--mono);
}

/* Grid cells */
.mockup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 10px;
}

.mockup-cell {
    background: rgba(30, 31, 36, 0.8);
    border-radius: 8px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    font-family: var(--mono);
    font-weight: 500;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.mockup-cell.done {
    color: var(--accent-green);
}

.cell-check {
    font-size: 0.55rem;
}

.mockup-cell.downloading {
    color: var(--accent-gold);
    border-color: rgba(253, 214, 99, 0.1);
}

.cell-arrow {
    font-size: 0.55rem;
}

.mockup-cell.generating {
    font-size: 0.9rem;
    border-color: rgba(168, 199, 250, 0.08);
    background-image: linear-gradient(90deg,
            rgba(168, 199, 250, 0.02),
            rgba(253, 214, 99, 0.05),
            rgba(168, 199, 250, 0.02));
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Queue preview */
.mockup-queue {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-queue-label {
    font-size: 0.55rem;
    color: var(--text-dark);
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.mockup-queue-tag {
    font-size: 0.52rem;
    color: var(--accent-green);
    background: rgba(129, 201, 149, 0.08);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-family: var(--mono);
    font-weight: 500;
    white-space: nowrap;
}

.mockup-queue-tag.pending {
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.04);
}


/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */

.stats-section {
    padding: 30px 24px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stats-row {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-item {
    text-align: center;
    padding: 10px 24px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.68rem;
    color: var(--text-dark);
    font-family: var(--mono);
    letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════
   PAIN POINTS
   ═══════════════════════════════════════════ */

.pain-section {
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 36px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pain-card {
    padding: 18px 20px;
    background: rgba(248, 113, 113, 0.03);
    border: 1px solid rgba(248, 113, 113, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pain-card:hover {
    border-color: rgba(248, 113, 113, 0.35);
    background: rgba(248, 113, 113, 0.06);
    transform: translateY(-2px);
}

.pain-emoji {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pain-text {
    font-size: 0.82rem;
    color: var(--accent-red-light);
    line-height: 1.4;
}

.pain-solution {
    text-align: center;
    padding: 22px 28px;
    background: linear-gradient(135deg, var(--glow-blue-subtle), var(--glow-gold-subtle));
    border: 1px solid rgba(168, 199, 250, 0.12);
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin: 0 auto;
}

.pain-solution-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}


/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */

.features-section {
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-gold), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--card-border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 199, 250, 0.08);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}


.feature-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.feature-desc {
    font-size: 0.76rem;
    color: var(--text-dim);
    line-height: 1.55;
}


/* ═══════════════════════════════════════════
   RESILIENCE / BUILT DIFFERENT
   ═══════════════════════════════════════════ */

.resilience-section {
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

.resilience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.resilience-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.resilience-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.resilience-card:hover::after {
    opacity: 0.6;
}

.resilience-card:hover {
    border-color: rgba(129, 201, 149, 0.2);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(129, 201, 149, 0.06);
}

.resilience-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(129, 201, 149, 0.08);
    border-radius: 12px;
}

.resilience-content {
    flex: 1;
    min-width: 0;
}

.resilience-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.resilience-desc {
    font-size: 0.76rem;
    color: var(--text-dim);
    line-height: 1.55;
}


/* ═══════════════════════════════════════════
   HOW IT WORKS / STEPS
   ═══════════════════════════════════════════ */

.steps-section {
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-3px);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--mono);
}

.step-number--blue {
    background: rgba(168, 199, 250, 0.1);
    color: var(--accent-blue);
}

.step-number--gold {
    background: rgba(253, 214, 99, 0.1);
    color: var(--accent-gold);
}

.step-number--green {
    background: rgba(129, 201, 149, 0.1);
    color: var(--accent-green);
}

.step-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.76rem;
    color: var(--text-dim);
    line-height: 1.55;
}


/* ═══════════════════════════════════════════
   VS COMPARISON
   ═══════════════════════════════════════════ */

.vs-section {
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

.vs-grid {
    display: flex;
    gap: 14px;
    max-width: 850px;
    margin: 0 auto;
}

.vs-card {
    flex: 1;
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.vs-card:hover {
    transform: translateY(-2px);
}

.vs-card--manual {
    background: rgba(248, 113, 113, 0.03);
    border: 1px solid rgba(248, 113, 113, 0.1);
}

.vs-card--manual:hover {
    border-color: rgba(248, 113, 113, 0.25);
}

.vs-card--turbo {
    background: rgba(168, 199, 250, 0.03);
    border: 1px solid rgba(168, 199, 250, 0.12);
}

.vs-card--turbo:hover {
    border-color: rgba(168, 199, 250, 0.3);
}

.vs-label {
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--mono);
}

.vs-label--red {
    color: var(--accent-red);
}

.vs-label--blue {
    color: var(--accent-blue);
}

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

.vs-list li {
    font-size: 0.82rem;
    color: var(--text-dim);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.vs-card--turbo .vs-list li {
    color: #d1d5db;
}

.vs-list li strong {
    color: inherit;
}

.vs-x {
    color: var(--accent-red);
    flex-shrink: 0;
    font-weight: 600;
}

.vs-check {
    color: var(--accent-green);
    flex-shrink: 0;
    font-weight: 600;
}

.vs-highlight-bad {
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid rgba(248, 113, 113, 0.1);
}

.vs-highlight-bad strong {
    color: var(--accent-red) !important;
}

.vs-highlight-good {
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid rgba(129, 201, 149, 0.1);
}

.vs-highlight-good strong {
    color: var(--accent-green) !important;
}


/* ═══════════════════════════════════════════
   PRO BANNER
   ═══════════════════════════════════════════ */

.pro-banner {
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

.pro-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(253, 214, 99, 0.04), rgba(168, 199, 250, 0.04));
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: visible;
    /* ← change this from hidden to visible */
}

.pro-banner-inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-xl) + 1px);
    background: linear-gradient(90deg,
            rgba(253, 214, 99, 0.15),
            rgba(168, 199, 250, 0.5),
            rgba(253, 214, 99, 0.8),
            rgba(168, 199, 250, 0.5),
            rgba(253, 214, 99, 0.15));
    background-size: 300% 100%;
    animation: shimmerSlide 6s linear infinite;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 1px;
    pointer-events: none;
    z-index: 0;
}

.pro-banner-inner:hover::before {
    background: linear-gradient(90deg,
            rgba(253, 214, 99, 0.3),
            rgba(168, 199, 250, 0.7),
            rgba(253, 214, 99, 1),
            rgba(168, 199, 250, 0.7),
            rgba(253, 214, 99, 0.3));
    background-size: 300% 100%;
    animation: shimmerSlide 6s linear infinite;
}

@keyframes shimmerSlide {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: 300% 0;
    }
}

.pro-banner-content {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.pro-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(253, 214, 99, 0.2), rgba(246, 166, 35, 0.2));
    color: var(--accent-gold);
    letter-spacing: 0.08em;
    font-family: var(--mono);
    margin-bottom: 12px;
}

.pro-banner-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.pro-banner-subtitle {
    font-size: 0.88rem;
    color: var(--text-dim);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Pro features grid */
.pro-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.pro-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition);
}

.pro-feature:hover {
    border-color: rgba(253, 214, 99, 0.2);
    background: rgba(253, 214, 99, 0.04);
    transform: translateY(-1px);
}

.pro-feature-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 214, 99, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--mono);
}

.pro-feature-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.pro-feature-desc {
    font-size: 0.7rem;
    color: var(--text-dim);
    line-height: 1.4;
}

/* Pro CTA */
.pro-banner-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.pro-banner-note {
    font-size: 0.72rem;
    color: var(--text-dark);
    font-family: var(--mono);
}


/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */

.faq-section {
    padding: 80px 24px;
    position: relative;
    z-index: 2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(168, 199, 250, 0.15);
}

.faq-item.active {
    border-color: rgba(168, 199, 250, 0.2);
    background: var(--bg-card-hover);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    gap: 12px;
}

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

.faq-chevron {
    font-size: 1rem;
    color: var(--text-dark);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

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

.faq-answer p {
    font-size: 0.78rem;
    color: var(--text-dim);
    line-height: 1.65;
    padding-bottom: 18px;
}

/* ═══════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════ */

.final-cta {
    padding: 80px 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.final-cta-subtitle {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.final-cta-note {
    font-size: 0.72rem;
    color: var(--text-dark);
    margin-top: 20px;
    font-family: var(--mono);
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
    padding: 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 2;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-dark);
}

.footer-copy {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.footer-note {
    font-size: 0.62rem;
    color: var(--text-muted);
    font-family: var(--mono);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-link {
    font-size: 0.65rem;
    color: var(--text-dark);
    text-decoration: none;
    font-family: var(--mono);
    transition: color 0.2s;
}

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


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 768px) {
    html {
        font-size: 17px;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-cta-row {
        justify-content: center;
    }

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

    .hero-visual {
        flex: none;
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

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

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

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

    .vs-grid {
        flex-direction: column;
    }

    .pro-features-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-direction: column;
        gap: 16px;
    }

    .pro-banner-inner {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 16px;
    }

    .hero {
        padding: 40px 16px;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .pain-section,
    .features-section,
    .resilience-section,
    .steps-section,
    .vs-section,
    .pro-banner,
    .faq-section,
    .final-cta {
        padding: 50px 16px;
    }

    .cta-main {
        width: 100%;
        justify-content: center;
    }

    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .final-cta-title {
        font-size: 1.6rem;
    }

    .mockup-queue {
        flex-wrap: wrap;
    }

    .pro-banner-title {
        font-size: 1.3rem;
    }
}