/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --accent: #5865F2;
    --accent-hover: #4752C4;
    --cyan: #00d4ff;
    --magenta: #ff006e;
    --purple: #8b5cf6;
    --green: #10b981;
    --yellow: #fbbf24;

    --bg-900: #0b0d14;
    --bg-800: #0f1219;
    --bg-700: #151923;
    --bg-600: #1c2233;
    --bg-card: rgba(21, 25, 35, 0.7);

    --text-100: #f1f5f9;
    --text-200: #cbd5e1;
    --text-300: #94a3b8;
    --text-400: #64748b;

    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-900);
    color: var(--text-100);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(11, 13, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
    background: rgba(11, 13, 20, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.logo:hover { opacity: 0.8; }

.logo-icon {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-100);
}

.logo-tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-400);
    letter-spacing: 2px;
    border: 1px solid var(--text-400);
    padding: 0.15rem 0.4rem;
    border-radius: var(--radius-sm);
    align-self: center;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-300);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-100);
}

.nav-cta {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    padding: 0.55rem 1.25rem !important;
    border-radius: var(--radius-full);
    color: var(--text-100) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.35);
}

/* Discord Login Button */
.btn-discord {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-discord:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord svg { flex-shrink: 0; }

/* Discord Logged-In Profile Button */
.discord-user-menu {
    position: relative;
}

.discord-profile-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.75rem 0.3rem 0.3rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-200);
    font-family: var(--font-body);
}

.discord-profile-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.discord-avatar-img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.discord-username {
    font-size: 0.8rem;
    font-weight: 600;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.discord-profile-btn svg {
    flex-shrink: 0;
    color: var(--text-400);
    transition: transform 0.2s;
}

/* Dropdown */
.discord-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    background: var(--bg-700);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    min-width: 220px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s;
    z-index: 200;
}

.discord-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dd-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
}

.dd-user-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.dd-user-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-100);
}

.dd-user-info span {
    font-size: 0.75rem;
    color: var(--text-400);
}

.dd-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin-bottom: 0.5rem;
}

.dd-logout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-300);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.15s;
}

.dd-logout:hover {
    background: rgba(255, 70, 70, 0.1);
    border-color: rgba(255, 70, 70, 0.2);
    color: #ff6b6b;
}

.dd-logout svg { flex-shrink: 0; }

/* Mobile menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-200);
    border-radius: 2px;
    transition: all 0.3s;
}

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

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: white;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

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

.btn-ghost {
    background: transparent;
    color: var(--text-200);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    right: -5%;
    background: rgba(0, 212, 255, 0.08);
    animation: drift 12s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    left: -5%;
    background: rgba(139, 92, 246, 0.08);
    animation: drift 15s ease-in-out infinite reverse;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan), var(--magenta), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
}

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

.hero-description {
    font-size: 1.1rem;
    color: var(--text-300);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-100);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Image */
.hero-right {
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--cyan), var(--purple), var(--magenta));
    border-radius: var(--radius-lg);
    z-index: 0;
    opacity: 0.6;
    filter: blur(1px);
}

.hero-image {
    position: relative;
    z-index: 1;
    border-radius: calc(var(--radius-lg) - 2px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.02);
}

.hero-image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    z-index: 2;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    background: rgba(0, 212, 255, 0.08);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-300);
    max-width: 550px;
    margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.features-showcase {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.15);
    box-shadow:
        0 0 40px rgba(0, 150, 255, 0.12),
        0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 960px;
    margin: 0 auto;
}

.features-video {
    width: 100%;
    display: block;
    background: #080c14;
}

/* ============================================
   SHOWCASE SECTION
   ============================================ */
.showcase {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
}

.showcase-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.showcase-main {
    grid-row: 1 / -1;
}

.showcase-item img,
.showcase-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.showcase-item:hover img,
.showcase-item:hover video {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay span {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--cyan);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.review-stars {
    color: var(--yellow);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-300);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
}

.review-author span {
    font-size: 0.75rem;
    color: var(--text-400);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

.pricing-wrapper {
    max-width: 420px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    text-align: center;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    padding: 0.35rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--text-400);
    margin-left: 0.25rem;
}

.pricing-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: var(--text-300);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-list li::before {
    content: '\2713';
    color: var(--green);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download {
    padding: 6rem 0 8rem;
    position: relative;
    z-index: 2;
}

.download-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    backdrop-filter: blur(10px);
}

.download-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.download-content p {
    color: var(--text-300);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.download-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.download-note {
    font-size: 0.8rem !important;
    color: var(--text-400) !important;
    margin-bottom: 0 !important;
}

/* Terminal */
.terminal {
    background: var(--bg-900);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #ff5f56; }
.terminal-dots span:nth-child(2) { background: #ffbd2e; }
.terminal-dots span:nth-child(3) { background: #27c93f; }

.terminal-title {
    font-size: 0.7rem;
    color: var(--text-400);
}

.terminal-body {
    padding: 1.25rem;
}

.terminal-line {
    margin-bottom: 0.4rem;
    color: var(--text-300);
}

.t-prompt { color: var(--green); }
.t-arrow { color: var(--text-400); }
.t-ok { color: var(--green); }
.t-brand { color: var(--cyan); }

.cursor-blink {
    animation: blink 1s step-end infinite;
    color: var(--text-200);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-800);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-400);
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-400);
    transition: all 0.2s;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-100);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-200);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: var(--text-400);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-200);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-400);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.features-grid .feature-card,
.reviews-grid .review-card,
.showcase-gallery .showcase-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.features-grid .feature-card.visible,
.reviews-grid .review-card.visible,
.showcase-gallery .showcase-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-right { order: -1; }

    .hero-image-wrapper {
        max-width: 500px;
    }

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

    .showcase-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .showcase-main { grid-row: auto; }

    .download-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        background: var(--bg-800);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links.active { right: 0; }
    .menu-toggle { display: flex; }

    .hero { padding-top: 6rem; }


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

    .showcase-gallery {
        grid-template-columns: 1fr;
    }

    .download-card { padding: 2rem; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}
