/* ═══════════════════════════════════════════
   MicRage — Premium Landing Page Stylesheet
   ═══════════════════════════════════════════ */

/* ─── CSS Variables / Design Tokens ─── */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-card: #16161f;
    --bg-card-hover: #1e1e2a;
    --bg-glass: rgba(22, 22, 31, 0.7);

    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;

    --accent-primary: #ff4500;
    --accent-secondary: #ff6b35;
    --accent-tertiary: #ffaa00;
    --accent-glow: rgba(255, 69, 0, 0.3);
    --accent-gradient: linear-gradient(135deg, #ff4500, #ff6b35, #ffaa00);
    --accent-gradient-text: linear-gradient(135deg, #ff6b35, #ffaa00, #ff4500);

    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(255, 69, 0, 0.2);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 69, 0, 0.15);

    --font-primary: 'Outfit', 'Inter', system-ui, sans-serif;
    --font-secondary: 'Inter', system-ui, sans-serif;

    --nav-height: 72px;
    --container-max: 1200px;
    --sidebar-ad-width: 180px;
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-tertiary);
}

img {
    max-width: 100%;
    display: block;
}

/* ─── Utility ─── */
.text-gradient {
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 69, 0, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    color: var(--accent-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ─── Particles Background ─── */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.6);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.9);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 1001;
}

.logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    animation: flame 1.5s ease-in-out infinite alternate;
}

@keyframes flame {
    0% {
        transform: scale(1) rotate(-3deg);
        filter: brightness(1);
    }

    100% {
        transform: scale(1.15) rotate(3deg);
        filter: brightness(1.3);
    }
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo-accent {
    color: var(--accent-primary);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--accent-gradient);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: transform 0.2s, box-shadow 0.3s;
    text-decoration: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: #fff !important;
}

.cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: var(--accent-gradient);
    opacity: 0;
    animation: ctaPulse 2s ease-out infinite;
}

@keyframes ctaPulse {
    0% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    padding: 16px 24px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.mobile-cta {
    display: inline-block !important;
    margin-top: 12px;
    padding: 12px 24px !important;
    background: var(--accent-gradient);
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    border: none !important;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    z-index: 1;
    padding: calc(var(--nav-height) + 60px) 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-gradient {
    display: block;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-fire {
    display: inline-block;
    animation: flame 1s ease-in-out infinite alternate;
    font-size: 0.8em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-subtitle strong {
    color: var(--accent-tertiary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 24px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 69, 0, 0.4);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-download {
    background: var(--accent-gradient);
    color: #fff;
    font-size: 1.2rem;
    padding: 20px 48px;
    box-shadow: 0 8px 40px rgba(255, 69, 0, 0.3);
}

.btn-download:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 60px rgba(255, 69, 0, 0.5);
    color: #fff;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* App Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.app-mockup {
    width: 340px;
    max-width: 100%;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: mockupFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes mockupFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #febc2e;
}

.mockup-dots span:nth-child(3) {
    background: #28c840;
}

.mockup-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mockup-body {
    padding: 20px;
    text-align: center;
    background: #0a0a0f;
}

.mockup-mic-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.mockup-title-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.mockup-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.mockup-select {
    text-align: left;
    margin-bottom: 12px;
}

.mockup-select span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.mockup-dropdown {
    padding: 8px 12px;
    background: #0a0a0f;
    border-radius: var(--radius-sm);
    border: 1px solid #2a2a3a;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.mockup-btn {
    padding: 12px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #fff;
}

.mockup-start {
    background: #00cc66;
}

.mockup-rage {
    background: #FF4500;
    animation: rageGlow 2s ease-in-out infinite;
}

@keyframes rageGlow {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(255, 69, 0, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    }
}

.mockup-meter {
    text-align: left;
    margin-top: 8px;
}

.mockup-meter span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.meter-bar {
    height: 10px;
    background: var(--bg-secondary);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 4px;
}

.meter-fill {
    height: 100%;
    width: 40%;
    background: #00cc66;
    border-radius: 5px;
    animation: meterPulse 2s ease-in-out infinite;
}

.meter-bar.rage .meter-fill,
.rage-fill {
    background: #FF0000;
    width: 80%;
    animation: rageMeter 2s ease-in-out infinite;
}

@keyframes meterPulse {

    0%,
    100% {
        width: 25%;
    }

    50% {
        width: 50%;
    }
}

@keyframes rageMeter {

    0%,
    100% {
        width: 60%;
    }

    50% {
        width: 95%;
    }
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* ─── Ad Zones (Google AdSense) ─── */
.ad-zone {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
}

.ad-slot {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
}

/* Leaderboard (728x90) — after hero */
.ad-leaderboard {
    padding: 32px 24px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Between sections (336x280) */
.ad-between-sections {
    padding: 40px 24px;
    background: rgba(0, 0, 0, 0.15);
}

/* In-content (336x280) */
.ad-in-content {
    padding: 40px 24px;
}

/* Footer banner (970x90) */
.ad-footer-banner {
    padding: 32px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Floating sidebar (160x600) — desktop only */
.ad-sidebar-float {
    position: fixed;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: none;
}

@media (min-width: 1500px) {
    .ad-sidebar-float {
        display: block;
    }
}

/* Sticky bottom (320x50) — mobile only */
.ad-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 8px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.ad-sticky-bottom .ad-close {
    position: absolute;
    top: 4px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.ad-sticky-bottom .ad-close:hover {
    color: var(--text-primary);
}

@media (min-width: 769px) {
    .ad-sticky-bottom {
        display: none;
    }
}

/* Responsive ad zones */
@media (max-width: 768px) {

    .ad-leaderboard .ad-slot ins,
    .ad-footer-banner .ad-slot ins {
        width: 320px !important;
        height: 50px !important;
    }

    .ad-between-sections .ad-slot ins,
    .ad-in-content .ad-slot ins {
        width: 300px !important;
        height: 250px !important;
    }
}

/* ─── Features ─── */
.features {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card.featured {
    border-color: var(--border-glow);
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), transparent);
}

.feature-card.featured::before {
    opacity: 1;
}

.feature-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ─── How It Works ─── */
.how-it-works {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--bg-secondary);
}

.steps-grid {
    max-width: 700px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateX(8px);
}

.step-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 60px;
}

.step-content h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-content a {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.step-connector {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    color: var(--text-muted);
    opacity: 0.3;
}

/* ─── Screenshots ─── */
.screenshots {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.screenshots-showcase {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.screenshot-card {
    width: 380px;
    opacity: 0.5;
    transform: scale(0.95);
    transition: all 0.5s ease;
    cursor: pointer;
}

.screenshot-card.active {
    opacity: 1;
    transform: scale(1);
}

.screenshot-label {
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.screenshot-demo {
    padding: 4px;
}

.demo-window {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
}

.demo-header {
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rage-header {
    background: rgba(255, 69, 0, 0.15) !important;
}

.demo-body {
    padding: 20px;
}

.rage-body {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.05), rgba(255, 0, 0, 0.05));
}

.rage-window {
    border-color: rgba(255, 69, 0, 0.3) !important;
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.1);
}

.demo-status {
    padding: 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.demo-status.normal {
    background: rgba(0, 255, 0, 0.1);
    color: #00cc00;
}

.rage-status {
    background: rgba(255, 0, 0, 0.15) !important;
    color: #ff3333 !important;
    animation: rageFlash 0.5s ease-in-out infinite alternate;
}

@keyframes rageFlash {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

.demo-meter {
    margin-bottom: 12px;
}

.demo-meter-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.demo-meter-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.demo-meter-fill {
    height: 100%;
    border-radius: 6px;
    background: #00AA00;
    transition: width 0.5s ease;
}

.demo-meter-fill.normal-fill {
    animation: normalMeter 3s ease-in-out infinite;
}

@keyframes normalMeter {

    0%,
    100% {
        width: 20%;
    }

    50% {
        width: 45%;
    }
}

.rage-bar {
    background: rgba(255, 0, 0, 0.1) !important;
}

.rage-fill-demo {
    background: linear-gradient(90deg, #ff4500, #ff0000) !important;
}

/* Screenshot Tabs */
.screenshot-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.tab-btn {
    padding: 10px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
}

.tab-btn:hover:not(.active) {
    border-color: var(--border-glow);
    color: var(--text-primary);
}

/* ─── Download Section ─── */
.download {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--bg-secondary);
}

.download-card {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 2;
}

.download-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.download-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.download-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.info-icon {
    font-size: 1.5rem;
}

.info-item strong {
    display: block;
    font-size: 0.95rem;
}

.info-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.download-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ─── FAQ ─── */
.faq {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent-secondary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--text-muted);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--accent-secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
    margin-left: 8px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 4px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
    color: var(--accent-secondary);
    transform: scale(1.2);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .navbar .nav-container {
        padding: 0 20px;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        margin-top: 32px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshots-showcase {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .footer-top {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }

    .download-card {
        padding: 32px 16px;
    }

    .download-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-links {
        gap: 32px;
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ─── Animations on Scroll ─── */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos][data-delay="100"] {
    transition-delay: 100ms;
}

[data-aos][data-delay="200"] {
    transition-delay: 200ms;
}

[data-aos][data-delay="300"] {
    transition-delay: 300ms;
}

[data-aos][data-delay="400"] {
    transition-delay: 400ms;
}

[data-aos][data-delay="500"] {
    transition-delay: 500ms;
}