/* StreamClipper — marketing landing page.
   Self-contained: defines its own brand tokens (slightly punchier purple/pink palette
   than the app shell). Linked only by index.leaf. */

:root {
    --bg: #06060b;
    --bg-card: #0d0d16;
    --bg-card-hover: #131320;
    --border: #1a1a2e;
    --border-light: #252540;
    --text: #eeeef2;
    --text-muted: #7b7b98;
    --accent: #7c6af6;
    --accent-light: #a594fd;
    --accent-dark: #5b46e0;
    --accent-glow: rgba(124, 106, 246, 0.25);
    --accent-glow-strong: rgba(124, 106, 246, 0.4);
    --pink: #f472b6;
    --pink-glow: rgba(244, 114, 182, 0.2);
    --green: #34d399;
    --green-bg: rgba(52, 211, 153, 0.08);
    --green-border: rgba(52, 211, 153, 0.25);
    --gold: #fbbf24;
    --gold-bg: rgba(251, 191, 36, 0.08);
    --gold-border: rgba(251, 191, 36, 0.25);
    --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

/* ====== ANIMATIONS ====== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

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

@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

@keyframes count-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ====== NAV ====== */
nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1100px;
    z-index: 100;
    background: rgba(13, 13, 22, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s, border-color 0.3s;
}

nav.scrolled {
    background: rgba(13, 13, 22, 0.85);
    border-color: rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-light), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    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);
    border-radius: 1px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.lang-switcher a {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.lang-switcher a:hover { color: var(--text); }

.lang-switcher a.active {
    background: var(--accent);
    color: #fff;
}

.nav-cta {
    padding: 8px 22px;
    background: var(--accent);
    color: #fff !important;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 2px 12px var(--accent-glow);
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow-strong);
}

.nav-avatar {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
    transition: border-color 0.2s, transform 0.1s;
}

.nav-avatar:hover { border-color: var(--accent-light); transform: translateY(-1px); }

.nav-avatar-fallback {
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: var(--bg-card);
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.1s;
}

.nav-avatar-fallback:hover { border-color: var(--accent-light); transform: translateY(-1px); }
.nav-avatar-fallback svg { width: 18px; height: 18px; }

/* ====== HERO ====== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    position: relative;
    overflow: hidden;
}

/* Parallax orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    will-change: transform;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow-strong), transparent 70%);
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--pink-glow), transparent 70%);
    bottom: 10%;
    right: -5%;
    animation: float 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(52, 211, 153, 0.1), transparent 70%);
    bottom: 20%;
    left: -5%;
    animation: float-slow 12s ease-in-out infinite;
}

/* Floating particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-light);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 32px;
    position: relative;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

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

.hero h1 {
    font-size: clamp(40px, 7vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    position: relative;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 30%, var(--pink) 70%, var(--accent-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease-in-out infinite;
}

.hero-sub {
    font-size: clamp(16px, 2.2vw, 20px);
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 44px;
    line-height: 1.7;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    box-shadow: 0 4px 24px var(--accent-glow), 0 0 0 1px rgba(124, 106, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px var(--accent-glow-strong), 0 0 0 1px rgba(124, 106, 246, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin-top: 64px;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--text), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 12px;
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

.scroll-arrow {
    width: 24px;
    height: 36px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: float 2s ease-in-out infinite;
}

/* ====== SHOWCASE ====== */
.showcase {
    padding: 40px 0 80px;
    overflow: hidden;
    position: relative;
}

.showcase::before,
.showcase::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.showcase::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.showcase::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.showcase-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin-bottom: 24px;
}

.showcase-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scroll-left 60s linear infinite;
}

.showcase-track:hover {
    animation-play-state: paused;
}

.showcase-track video {
    width: 340px;
    height: 190px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: #000;
    flex-shrink: 0;
    transition: transform 0.3s, border-color 0.3s;
}

.showcase-track video:hover {
    transform: scale(1.03);
    border-color: var(--accent);
}

/* ====== SECTIONS ====== */
section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-light);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.section-desc {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 540px;
    margin-bottom: 56px;
    line-height: 1.7;
}

/* ====== HOW IT WORKS ====== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-glow), var(--accent), var(--pink), var(--accent-glow));
    z-index: 0;
}

.step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px var(--accent-glow);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ====== FEATURES ====== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature:hover {
    border-color: var(--accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.feature:hover::before { opacity: 1; }

.feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.feature h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ====== PRICING ====== */
.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(124, 106, 246, 0.1);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--pink));
    color: #fff;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-price {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 4px;
    line-height: 1;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0;
}

.pricing-unit {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.pricing-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    font-size: 14px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.pricing-features li .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-features li.included .check {
    background: var(--green-bg);
    border: 1px solid var(--green-border);
    color: var(--green);
}

.pricing-features li.included {
    color: var(--text);
}

.pricing-features li.excluded .check {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.pricing-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ====== FAQ ====== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.faq-item summary {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}

.faq-item summary:hover { color: var(--accent-light); }

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    width: 24px;
    text-align: center;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    font-size: 15px;
    color: var(--text-muted);
    padding-top: 16px;
    line-height: 1.7;
}

/* ====== SOCIAL PROOF ====== */
.social-proof {
    text-align: center;
    padding: 60px 24px;
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(124, 106, 246, 0.03), transparent);
    pointer-events: none;
}

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

.testimonial {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: left;
    transition: all 0.3s;
}

.testimonial:hover {
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-stars {
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.testimonial-name {
    font-size: 13px;
    font-weight: 600;
}

.testimonial-handle {
    font-size: 12px;
    color: var(--text-muted);
}

/* ====== DISCORD ====== */
.discord-section {
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.discord-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(88, 101, 242, 0.04), transparent);
    pointer-events: none;
}

.discord-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.discord-card:hover {
    border-color: #5865f2;
}

.discord-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.12), transparent 70%);
    pointer-events: none;
}

.discord-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5865f2, #7289da);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.3);
}

.discord-icon svg {
    width: 44px;
    height: 44px;
    fill: #fff;
}

.discord-content {
    flex: 1;
    position: relative;
}

.discord-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #7289da;
    margin-bottom: 10px;
}

.discord-title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.discord-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 480px;
}

.discord-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}

.discord-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.discord-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.discord-stat-dot.green {
    background: var(--green);
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
}

.discord-stat-dot.gray {
    background: var(--text-muted);
}

.btn-discord {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #5865f2;
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.3);
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.4);
}

.btn-discord svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

@media (max-width: 750px) {
    .discord-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px;
        gap: 24px;
    }
    .discord-desc { margin-left: auto; margin-right: auto; }
    .discord-stats { justify-content: center; }
}

/* ====== CTA ====== */
.cta-section {
    text-align: center;
    padding: 80px 24px 120px;
    position: relative;
}

.cta-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    letter-spacing: -0.5px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 32px;
    position: relative;
    font-size: 16px;
}

/* ====== FOOTER ====== */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    text-align: center;
}

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

.footer-text {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-light); }

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
    .nav-links { gap: 18px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; }
    .steps::before { display: none; }
    .hero-stats { gap: 32px; }
    .footer-content { flex-direction: column; gap: 16px; }
}

@media (max-width: 750px) {
    .nav-links { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

@media (max-width: 640px) {
    nav { width: calc(100% - 32px); padding: 10px 16px; }
    .hero { padding: 120px 20px 60px; min-height: auto; }
    .hero h1 { font-size: 32px; letter-spacing: -1px; }
    .hero-sub { font-size: 15px; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    section { padding: 60px 16px; }
    .showcase::before, .showcase::after { width: 60px; }
    .showcase-track video { width: 280px; height: 158px; }
    .cta-box { padding: 40px 24px; }
    .scroll-indicator { display: none; }
}
