/* ═══════════════════════════════════════════
   FOXY MUSIC — Landing Page Styles v2
   ═══════════════════════════════════════════ */

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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0e0e16;
    --bg-card: rgba(22, 22, 31, 0.7);
    --bg-card-hover: rgba(28, 28, 40, 0.8);
    --text-primary: #f0f0f5;
    --text-secondary: #9898aa;
    --text-muted: #6b6b80;
    --accent: #ff0033;
    --accent-glow: rgba(255, 0, 51, 0.3);
    --accent-dim: rgba(255, 0, 51, 0.1);
    --accent-orange: #ff6b35;
    --accent-gold: #e5c158;
    --accent-green: #43b581;
    --accent-blue: #5865f2;
    --discord-dark: #2b2d31;
    --discord-darker: #1e1f22;
    --border: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(255, 0, 51, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --font: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
code {
    background: rgba(255,255,255,0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Consolas', monospace;
    font-size: 0.85em;
}

/* ─── Cursor Glow ─── */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,0,51,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* ─── Background Grid ─── */
.bg-grid {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

/* ─── Particles ─── */
.bg-particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.5; }
    90% { opacity: 0.15; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ─── Animations ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}
@keyframes ringRotate1 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ringRotate2 { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes ringPulse {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 0.3; }
    50% { transform: rotate(45deg) scale(1.05); opacity: 0.6; }
}
@keyframes embedFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}
@keyframes noteFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-25px) rotate(20deg); opacity: 0.4; }
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px var(--accent-dim), 0 4px 16px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 0 40px var(--accent-glow), 0 8px 24px rgba(0,0,0,0.4); }
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}
@keyframes progressAnim {
    0% { width: 30%; }
    50% { width: 65%; }
    100% { width: 30%; }
}
@keyframes liveDot {
    0%, 100% { background: var(--accent-green); box-shadow: 0 0 4px var(--accent-green); }
    50% { background: #2d8a5e; box-shadow: 0 0 8px var(--accent-green); }
}

.animate-fade-up { animation: fadeUp 0.8s var(--ease) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.pulse-glow { animation: pulseGlow 3s ease-in-out infinite; }

/* ─── Navigation ─── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 0;
    transition: 0.3s var(--ease);
}
.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 0.6rem;
    font-weight: 700; font-size: 1.3rem;
    transition: 0.3s var(--ease);
}
.nav-logo:hover { transform: scale(1.03); }
.logo-img {
    width: 36px; height: 36px; border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 12px var(--accent-dim);
    transition: 0.3s var(--ease);
}
.nav-logo:hover .logo-img { box-shadow: 0 0 20px var(--accent-glow); }
.logo-text {
    background: linear-gradient(135deg, var(--text-primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
    font-size: 0.95rem; font-weight: 500;
    color: var(--text-secondary);
    transition: 0.3s var(--ease);
    position: relative;
}
.nav-links a:not(.nav-btn):hover { color: var(--text-primary); }
.nav-links a:not(.nav-btn)::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: 0.3s var(--ease);
}
.nav-links a:not(.nav-btn):hover::after { width: 100%; }
.nav-btn {
    background: var(--accent); color: white !important;
    padding: 0.55rem 1.3rem; border-radius: var(--radius-sm);
    font-weight: 600; font-size: 0.9rem;
    transition: 0.3s var(--ease);
}
.nav-btn:hover { background: #e60030; transform: translateY(-2px); box-shadow: 0 4px 20px var(--accent-glow); }
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,15,0.97);
    backdrop-filter: blur(20px); z-index: 999;
    flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    opacity: 0; pointer-events: none; transition: 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-link { font-size: 1.5rem; font-weight: 600; color: var(--text-secondary); transition: 0.3s; }
.mobile-link:hover { color: var(--text-primary); }
.mobile-link.btn { background: var(--accent); color: white; padding: 0.8rem 2rem; border-radius: var(--radius-sm); }

/* ─── Buttons ─── */
.btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.8rem 1.8rem; border-radius: var(--radius-sm);
    font-family: var(--font); font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: 0.3s var(--ease); border: none;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: #e60030; transform: translateY(-3px); }
.btn-ghost {
    background: transparent; color: var(--text-secondary);
    border: 1px solid var(--border);
}
.btn-ghost:hover { color: var(--text-primary); border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); transform: translateY(-3px); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; border-radius: var(--radius-md); }

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

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 8rem 2rem 4rem; gap: 4rem;
    max-width: 1200px; margin: 0 auto; z-index: 1;
}
.hero-glow {
    position: absolute; top: 5%; left: 15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
    border-radius: 50%; filter: blur(80px);
    pointer-events: none; animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow-2 {
    position: absolute; bottom: 10%; right: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(88,101,242,0.08) 0%, transparent 70%);
    border-radius: 50%; filter: blur(80px);
    pointer-events: none; animation: glowPulse 8s ease-in-out infinite 2s;
}
.hero-content { flex: 1; max-width: 580px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.4rem 1rem; background: var(--accent-dim);
    border: 1px solid var(--border-accent); border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
.hero-title {
    font-size: 3.8rem; font-weight: 800;
    line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.2rem;
}
.typing-container { display: inline-flex; align-items: baseline; }
.typing-cursor { animation: blink 1s step-end infinite; margin-left: 2px; font-weight: 300; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }

/* Live Stats */
.hero-stats { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-value { font-size: 1.5rem; font-weight: 700; display: flex; align-items: baseline; gap: 2px; }
.stat-unit { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.4rem; }
.live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-green);
    animation: liveDot 2s ease-in-out infinite;
    flex-shrink: 0;
}
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ─── Hero Visual ─── */
.hero-visual { flex: 1; max-width: 480px; position: relative; }

/* Logo Rings */
.hero-logo-container {
    position: relative; width: 120px; height: 120px;
    margin: 0 auto 2rem; display: flex; align-items: center; justify-content: center;
}
.logo-ring {
    position: absolute; border-radius: 50%;
    border: 1px solid var(--border-accent);
}
.ring-1 { width: 100%; height: 100%; animation: ringRotate1 20s linear infinite; border-style: dashed; }
.ring-2 { width: 130%; height: 130%; animation: ringRotate2 30s linear infinite; opacity: 0.4; }
.ring-3 { width: 160%; height: 160%; animation: ringPulse 4s ease-in-out infinite; opacity: 0.2; }
.hero-logo-img {
    width: 80px; height: 80px; border-radius: 50%;
    object-fit: cover; position: relative; z-index: 2;
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px var(--accent-dim);
    border: 2px solid var(--border-accent);
}

/* Embed Preview */
.embed-preview {
    background: var(--discord-dark); border-radius: var(--radius-md);
    overflow: hidden; display: flex; position: relative;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(255,0,51,0.1);
    animation: embedFloat 6s ease-in-out infinite;
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
    /* Accent line native border for flawless rounded corner alignment */
    border-left: 4px solid var(--accent);
}
.embed-body { padding: 1rem; flex: 1; min-width: 0; }
.embed-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; }
.embed-avatar-img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.embed-author { font-size: 0.8rem; font-weight: 600; color: var(--accent); }
.embed-song { margin-bottom: 0.5rem; }
.song-title { color: var(--accent-blue); font-weight: 700; font-size: 0.95rem; }
.song-title:hover { text-decoration: underline; }
.embed-info { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 0.2rem; }
.embed-info strong { color: var(--text-primary); }
.embed-status {
    font-size: 0.8rem; color: var(--text-secondary);
    margin: 0.6rem 0; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.like-badge { margin-left: auto; }
.embed-progress { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.8rem; }
.embed-progress .time { font-size: 0.75rem; color: var(--text-muted); font-family: 'Consolas', monospace; min-width: 30px; }
.progress-track { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; position: relative; }
.progress-fill { height: 100%; width: 24%; background: var(--accent); border-radius: 2px; }
.progress-thumb {
    position: absolute; top: 50%; left: 24%;
    width: 10px; height: 10px; background: var(--accent);
    border-radius: 50%; transform: translate(-50%, -50%);
    box-shadow: 0 0 6px var(--accent-glow);
}
.embed-buttons { display: flex; gap: 0.4rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
.embed-btn {
    padding: 0.35rem 0.7rem; border-radius: 4px;
    font-size: 0.75rem; font-family: var(--font); font-weight: 500;
    border: none; cursor: default; background: #4e505880; color: var(--text-primary); white-space: nowrap;
}
.embed-btn.btn-danger { background: rgba(237,66,69,0.6); }
.embed-btn.btn-success { background: rgba(67,181,129,0.6); }
.embed-thumb { flex-shrink: 0; display: flex; align-items: flex-start; padding: 1rem 1rem 1rem 0; }
.thumb-img { width: 80px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; border: 1px solid var(--border); }

/* Floating Notes */
.floating-notes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: -1; }
.note { position: absolute; font-size: 1.5rem; opacity: 0.15; color: var(--accent); }
.note-1 { top: -10%; left: -5%; animation: noteFloat 7s ease-in-out infinite 0s; }
.note-2 { top: 20%; right: -8%; animation: noteFloat 9s ease-in-out infinite 1.5s; }
.note-3 { bottom: -5%; left: 10%; animation: noteFloat 8s ease-in-out infinite 3s; }
.note-4 { bottom: 30%; right: -5%; animation: noteFloat 10s ease-in-out infinite 4.5s; }
.note-5 { top: 50%; left: -10%; animation: noteFloat 11s ease-in-out infinite 2s; }

/* ─── Marquee Banner ─── */
.marquee-banner {
    overflow: hidden; padding: 1rem 0;
    background: linear-gradient(90deg, var(--bg-secondary), rgba(255,0,51,0.04), var(--bg-secondary));
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    position: relative; z-index: 1;
}
.marquee-track {
    display: flex; gap: 2rem; white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
}
.marquee-track span { flex-shrink: 0; }

/* ─── Section Common ─── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge {
    display: inline-block; padding: 0.35rem 0.9rem;
    background: var(--accent-dim); border: 1px solid var(--border-accent);
    border-radius: 50px; font-size: 0.78rem; font-weight: 600;
    color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem;
}
.section-title { font-size: 2.8rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.8rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 550px; margin: 0 auto; }

/* ─── Glass Card ─── */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.card-shine {
    position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: none;
}
.glass-card:hover .card-shine { animation: shimmer 0.8s ease forwards; }

/* ─── Features ─── */
.features { position: relative; z-index: 1; padding: 6rem 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
    border-radius: var(--radius-md); padding: 2rem;
    transition: 0.4s var(--ease);
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0; transition: 0.4s;
}
.feature-card:hover {
    background: var(--bg-card-hover); border-color: var(--border-accent);
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 40px var(--accent-dim);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon-wrap {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: var(--accent-dim); border: 1px solid var(--border-accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    transition: 0.3s var(--ease);
}
.feature-card:hover .feature-icon-wrap { transform: scale(1.1) rotate(-5deg); box-shadow: 0 0 20px var(--accent-dim); }
.feature-icon { font-size: 1.6rem; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── Commands ─── */
.commands { position: relative; z-index: 1; padding: 6rem 0; background: var(--bg-secondary); }
.commands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.command-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 1.2rem 1.5rem;
    display: flex; align-items: flex-start; gap: 1rem;
    transition: 0.3s var(--ease); position: relative; overflow: hidden;
}
.command-card:hover { border-color: var(--border-accent); background: var(--bg-card-hover); transform: translateX(6px); }
.command-name {
    font-family: 'Consolas', monospace; font-weight: 700; font-size: 0.95rem;
    color: var(--accent); white-space: nowrap; min-width: 110px;
}
.command-desc { font-size: 0.88rem; color: var(--text-secondary); flex: 1; }
.command-tag {
    font-size: 0.7rem; padding: 0.2rem 0.5rem;
    background: var(--accent-dim); color: var(--accent);
    border-radius: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}

/* ─── Showcase ─── */
.showcase { position: relative; z-index: 1; padding: 6rem 0; }
.showcase-content { display: flex; gap: 4rem; align-items: center; }
.showcase-features { flex: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.showcase-feature {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.2rem; background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); transition: 0.3s var(--ease);
}
.showcase-feature:hover { border-color: var(--border-accent); transform: translateX(6px); }
.sf-icon {
    font-size: 1.5rem; flex-shrink: 0;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    background: var(--accent-dim); border-radius: var(--radius-sm);
    border: 1px solid var(--border-accent);
}
.showcase-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.showcase-feature p { font-size: 0.88rem; color: var(--text-secondary); }
.showcase-visual { flex: 1; max-width: 480px; }

/* Discord Mockup */
.discord-mockup {
    background: var(--discord-darker); border-radius: var(--radius-md);
    overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.discord-titlebar {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.7rem 1rem; background: rgba(0,0,0,0.2); border-bottom: 1px solid var(--border);
}
.discord-dots { display: flex; gap: 6px; }
.discord-dots span { width: 10px; height: 10px; border-radius: 50%; }
.discord-dots span:nth-child(1) { background: #ed4245; }
.discord-dots span:nth-child(2) { background: #faa61a; }
.discord-dots span:nth-child(3) { background: #43b581; }
.discord-channel { font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); }
.discord-body { padding: 1rem; }
.discord-message { display: flex; gap: 0.8rem; }
.msg-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-orange));
}
.msg-avatar-img { width: 100%; height: 100%; object-fit: cover; }
.msg-content { flex: 1; min-width: 0; }
.msg-author { font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.3rem; }
.bot-tag { font-size: 0.6rem; padding: 0.1rem 0.35rem; background: var(--accent-blue); color: white; border-radius: 3px; font-weight: 700; }
.msg-embed { 
    display: flex; 
    background: var(--discord-dark); 
    border-radius: var(--radius-sm); 
    overflow: hidden; 
    margin-bottom: 0.5rem; 
    backface-visibility: hidden;
    transform: translate3d(0,0,0);
    /* Accent line native border for flawless rounded corner alignment */
    border-left: 4px solid var(--accent);
}
.msg-embed-content { padding: 0.8rem; flex: 1; }
.msg-embed-author { font-size: 0.78rem; font-weight: 600; color: var(--accent); margin-bottom: 0.3rem; }
.msg-embed-title { font-size: 0.9rem; font-weight: 700; color: var(--accent-blue); margin-bottom: 0.4rem; }
.msg-embed-field { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 0.15rem; }
.msg-embed-field strong { color: var(--text-primary); }
.msg-embed-status { font-size: 0.78rem; color: var(--text-secondary); margin: 0.5rem 0; }
.msg-embed-progress { display: flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; color: var(--text-muted); font-family: 'Consolas', monospace; }
.msg-progress-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
.msg-progress-fill { width: 50%; height: 100%; background: var(--accent); border-radius: 2px; animation: progressAnim 8s ease-in-out infinite; }
.msg-buttons-row { display: flex; gap: 0.35rem; margin-bottom: 0.35rem; flex-wrap: wrap; }
.msg-buttons-row button {
    padding: 0.3rem 0.6rem; border-radius: 4px; font-size: 0.72rem;
    font-family: var(--font); font-weight: 500; border: none;
    cursor: default; background: #4e505880; color: var(--text-primary); white-space: nowrap;
}
.msg-buttons-row button.red { background: rgba(237,66,69,0.5); }
.msg-buttons-row button.green { background: rgba(67,181,129,0.5); }

/* ─── CTA ─── */
.cta { position: relative; z-index: 1; padding: 6rem 0; text-align: center; background: var(--bg-secondary); overflow: hidden; }
.cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, var(--accent-dim) 0%, transparent 70%);
    filter: blur(60px); pointer-events: none;
}
.cta-logo {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 40px var(--accent-glow);
    border: 2px solid var(--border-accent);
    animation: glowPulse 4s ease-in-out infinite;
}
.cta-title { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; max-width: 650px; margin-left: auto; margin-right: auto; }
.cta-subtitle { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 2.5rem; }

/* ─── Footer ─── */
.footer { position: relative; z-index: 1; padding: 2rem 0; border-top: 1px solid var(--border); }
.footer-content { display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.1rem; }
.footer-logo { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.footer-copy { font-size: 0.85rem; color: var(--text-muted); }

/* ─── Scroll Reveal ─── */
.feature-card, .command-card, .showcase-feature {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card.visible, .command-card.visible, .showcase-feature.visible { opacity: 1; transform: translateY(0); }

/* ─── Tilt on hover (3D) ─── */
.feature-card { perspective: 800px; transform-style: preserve-3d; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .hero { flex-direction: column; padding-top: 7rem; text-align: center; gap: 3rem; }
    .hero-content { max-width: 100%; }
    .hero-subtitle { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { max-width: 100%; }
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .commands-grid { grid-template-columns: 1fr; }
    .showcase-content { flex-direction: column-reverse; }
    .showcase-visual { max-width: 100%; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .mobile-menu { display: flex; }
    .footer-content { flex-direction: column; gap: 0.8rem; text-align: center; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 1.8rem; }
    .embed-preview { flex-direction: column; }
    .embed-thumb { padding: 0 1rem 1rem; }
    .thumb-img { width: 100%; height: 60px; }
    .hero-stats { gap: 0.8rem; }
    .stat-divider { height: 24px; }
}
