/* ═══════════════════════════════════════════════════════════════════
   WatchTower Bot — ProBot-Style Dashboard
   Discord server strip + sidebar + main content
   ═══════════════════════════════════════════════════════════════════ */

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

:root {
    --bg-body: #07090e;
    --bg-strip: #0b0d13;
    --bg-sidebar: #0e111a;
    --bg-main: #07090e;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --bg-input: #0b0d13;
    --bg-topbar: rgba(11, 13, 19, 0.75);
    --border: rgba(255, 255, 255, 0.05);
    --border-active: #3B82F6;
    --text: #f8fafc;
    --text2: #94a3b8;
    --text3: #475569;
    --accent: #3B82F6;
    --accent-glow: rgba(59, 130, 246, 0.3);
    --accent2: #2563EB;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --discord: #5865F2;
    --strip-w: 68px;
    --sidebar-w: 230px;
    --topbar-h: 54px;
    --radius: 12px;
    --tr: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

body { font-family: 'Inter', sans-serif; background: var(--bg-body); color: var(--text); min-height: 100vh; overflow-x: hidden; }
.hidden { display: none !important; }

/* ── Landing Page ─────────────────────────────────────────────────── */
:root {
    --primary: #3B82F6;
    --primary-glow: rgba(59, 130, 246, 0.45);
    --primary-dim: rgba(59, 130, 246, 0.08);
    --bg-landing: #070B16; /* Premium Dark Navy background color */
    --beam-opacity: 0.35;
}


.landing-page {
    min-height: 100vh;
    background: var(--bg-landing);
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}
/* Subtle cyber grid pattern overlay */
.landing-page::after {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; z-index: 0;
}

/* ── Nav ── */
.landing-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px; position: relative; z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(7, 11, 22, 0.7); backdrop-filter: blur(16px);
}
.landing-logo {
    font-size: 20px; font-weight: 800; color: #fff;
    letter-spacing: -0.5px; display: flex; align-items: center;
}
.landing-links { display: flex; gap: 32px; }
.landing-links a {
    color: #94a3b8; text-decoration: none; font-size: 14px;
    font-weight: 500; transition: color 0.2s;
}
.landing-links a:hover { color: #fff; }
.landing-links .premium-link { color: var(--primary); }

.landing-actions { display: flex; align-items: center; gap: 16px; }

.btn-nav-dash {
    background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
}
.btn-nav-dash:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }

.btn-discord-nav {
    background: #3B82F6; color: #fff; padding: 8px 20px; border-radius: 8px;
    font-size: 13px; font-weight: 600; text-decoration: none; display: inline-flex;
    align-items: center; gap: 8px; transition: background 0.2s;
}
.btn-discord-nav:hover { background: #2563EB; }

/* ── Main Layout ── */
.landing-main {
    flex: 1; display: flex; flex-direction: column;
    align-items: center; position: relative;
    padding: 0;
}

/* ── Hero Section — Full Viewport Cinematic ── */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #05070F;
    margin: 0;
    padding: 0;
}

/* Layer 2: Large radial gradient */
.hero-bg-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 50%, rgba(59,130,246,.08) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 30% 40%, rgba(59,130,246,.04) 0%, transparent 60%);
    pointer-events: none; z-index: 1;
}

/* Layer 3: Geometric grid pattern at 2-3% opacity */
.hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none; z-index: 2;
}

/* Layer 4: Blue ambient glow behind GIF */
.hero-glow {
    position: absolute;
    top: 50%; right: 15%;
    transform: translate(20%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(59,130,246,.12) 0%, rgba(59,130,246,.04) 40%, transparent 70%);
    filter: blur(120px);
    opacity: .35;
    pointer-events: none; z-index: 3;
    animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: .35; transform: translate(20%, -50%) scale(1); }
    50% { opacity: .45; transform: translate(20%, -50%) scale(1.05); }
}

/* ── WatchTower GIF — Blended Background Element ── */
.hero-gif-wrapper {
    position: absolute;
    top: 50%; right: 0;
    transform: translateY(-50%);
    width: 65%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
    z-index: 4;
}
.hero-gif {
    width: 100%; height: 100%;
    object-fit: contain;
    transform: translateZ(0);
    will-change: transform, opacity;

    /* Radial mask — fades edges to transparent */
    -webkit-mask-image: radial-gradient(circle at center,
        rgba(0,0,0,1) 25%,
        rgba(0,0,0,.95) 40%,
        rgba(0,0,0,.7) 55%,
        rgba(0,0,0,.3) 70%,
        transparent 85%);
    mask-image: radial-gradient(circle at center,
        rgba(0,0,0,1) 25%,
        rgba(0,0,0,.95) 40%,
        rgba(0,0,0,.7) 55%,
        rgba(0,0,0,.3) 70%,
        transparent 85%);

    /* Color grading */
    filter: brightness(1.05) contrast(1.1) saturate(1.15);
    mix-blend-mode: screen;
}

/* ── Atmospheric Fog Layers ── */
@keyframes driftFog {
    0%   { transform: translateX(0) translateY(0); }
    50%  { transform: translateX(40px) translateY(-15px); }
    100% { transform: translateX(0) translateY(0); }
}
.hero-fog {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 6;
}
.hero-fog-1 {
    background: linear-gradient(0deg, rgba(5,7,15,.95) 0%, rgba(5,7,15,.5) 15%, transparent 35%),
                linear-gradient(180deg, rgba(5,7,15,.8) 0%, transparent 20%);
    animation: driftFog 20s ease-in-out infinite;
}
.hero-fog-2 {
    background: radial-gradient(ellipse 80% 40% at 50% 100%, rgba(5,7,15,.7) 0%, transparent 70%);
    animation: driftFog 25s ease-in-out infinite reverse;
    opacity: .6;
}

/* Noise texture overlay */
.hero-noise {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 7;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

/* Vignette */
.hero-vignette {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 8;
    background: radial-gradient(ellipse 75% 75% at 50% 50%, transparent 50%, rgba(5,7,15,.6) 100%);
}

/* ── Animated Searchlight Glow ── */
@keyframes searchlightPulse {
    0%, 100% { opacity: .18; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: .28; transform: translate(-50%, -50%) scale(1.08); }
}
.hero-searchlight {
    position: absolute;
    top: 42%; right: 18%;
    transform: translate(-50%, -50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,.2) 0%, rgba(59,130,246,.05) 40%, transparent 70%);
    pointer-events: none; z-index: 5;
    animation: searchlightPulse 6s ease-in-out infinite;
}

/* ── Floating Particles ── */
@keyframes heroFloat {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    15%  { opacity: .7; }
    85%  { opacity: .7; }
    100% { transform: translateY(-200px) translateX(30px); opacity: 0; }
}
.hero-particles {
    position: absolute; inset: 0;
    pointer-events: none; z-index: 9;
}
.hp {
    position: absolute;
    background: rgba(59,130,246,.5);
    border-radius: 50%;
    animation: heroFloat linear infinite;
}
.hp1  { width:3px; height:3px; left:55%; top:75%; animation-duration:11s; animation-delay:0s; }
.hp2  { width:2px; height:2px; left:70%; top:80%; animation-duration:9s;  animation-delay:1.5s; }
.hp3  { width:4px; height:4px; left:60%; top:85%; animation-duration:13s; animation-delay:3s; }
.hp4  { width:2px; height:2px; left:80%; top:70%; animation-duration:10s; animation-delay:0.8s; }
.hp5  { width:3px; height:3px; left:65%; top:60%; animation-duration:14s; animation-delay:2s; }
.hp6  { width:2px; height:2px; left:75%; top:90%; animation-duration:8s;  animation-delay:4s; }
.hp7  { width:3px; height:3px; left:85%; top:65%; animation-duration:12s; animation-delay:1s; }
.hp8  { width:2px; height:2px; left:50%; top:78%; animation-duration:15s; animation-delay:5s; }
.hp9  { width:4px; height:4px; left:90%; top:55%; animation-duration:11s; animation-delay:2.5s; }
.hp10 { width:2px; height:2px; left:58%; top:92%; animation-duration:9s;  animation-delay:3.5s; }
.hp11 { width:3px; height:3px; left:42%; top:82%; animation-duration:16s; animation-delay:6s; }
.hp12 { width:2px; height:2px; left:48%; top:68%; animation-duration:10s; animation-delay:0.5s; }

/* ── Hero Content (Left Side) ── */
.hero-content {
    position: relative;
    z-index: 20;
    max-width: 580px;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Text readability gradient behind content */
.hero-content::before {
    content: '';
    position: absolute;
    top: -80px; left: -40px; right: -60px; bottom: -60px;
    background: linear-gradient(90deg, rgba(5,7,15,.85) 0%, rgba(5,7,15,.6) 50%, transparent 100%);
    border-radius: 32px;
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

.tag-badge {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 6px;
    color: var(--primary); font-size: 11px; font-weight: 700;
    margin-bottom: 24px; letter-spacing: 1.5px; text-transform: uppercase;
}

.hero-title {
    font-size: 80px; font-weight: 900; color: #fff;
    line-height: 0.9; margin-bottom: 24px; letter-spacing: -3px;
}
.gradient-text {
    background: linear-gradient(180deg, #3B82F6 0%, #1D4ED8 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px; color: #94a3b8; line-height: 1.6;
    margin-bottom: 36px; max-width: 520px;
}

.hero-ctas { display: flex; gap: 16px; margin-bottom: 36px; }

.btn-hero-cta {
    background: #3B82F6; color: #fff; padding: 16px 32px; border-radius: 8px;
    font-size: 15px; font-weight: 700; text-decoration: none; display: inline-flex;
    align-items: center; transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}
.btn-hero-cta:hover { background: #2563EB; transform: translateY(-2px); }

.btn-outline-commands {
    background: rgba(255, 255, 255, 0.02); color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08); padding: 16px 32px;
    border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s;
}
.btn-outline-commands:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }

.hero-badges { display: flex; gap: 24px; align-items: center; margin-bottom: 40px; flex-wrap: wrap; }
.badge-item { font-size: 13px; color: #64748b; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.dot-green {
    width: 6px; height: 6px; background-color: #10B981; border-radius: 50%;
    box-shadow: 0 0 10px #10B981; display: inline-block;
}

.hero-stats {
    display: flex; align-items: center; gap: 24px;
    padding: 16px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%; max-width: 480px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: 20px; font-weight: 800; color: #fff; }
.stat-lbl { font-size: 11px; color: #64748b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.hero-stat-sep { width: 1px; height: 32px; background: rgba(255, 255, 255, 0.08); }

/* ── Accessibility: Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    .hero-gif { animation: none !important; }
    .hero-fog, .hero-glow, .hero-searchlight, .hp { animation: none !important; }
    .hero-gif-wrapper img { content: ''; } /* Falls back to static */
}

/* ── Features Section ── */
.features-section {
    width: 100%; max-width: 1200px; text-align: center;
    padding: 80px 0; margin-top: 0; position: relative; z-index: 10;
}
.section-tag {
    font-size: 11px; font-weight: 700; color: var(--primary);
    letter-spacing: 2px; margin-bottom: 12px;
}
.features-section-title {
    font-size: 32px; font-weight: 800; color: #fff;
    margin-bottom: 56px; letter-spacing: -0.5px;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.015); border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 36px 32px; border-radius: 16px; text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    transform: translateY(-4px); background: rgba(255, 255, 255, 0.03);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 12px 30px -10px rgba(59, 130, 246, 0.15);
}

.feature-icon-wrapper {
    width: 48px; height: 48px; background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; color: var(--primary);
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: #64748b; line-height: 1.5; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-content { padding: 0 40px; max-width: 500px; }
    .hero-gif-wrapper { width: 55%; right: -5%; }
    .hero-title { font-size: 60px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { max-width: 400px; }
}

@media (max-width: 768px) {
    .landing-nav { padding: 16px 24px; }
    .landing-links { display: none; }
    .hero-section { min-height: 100vh; align-items: flex-end; padding-bottom: 60px; }
    .hero-content {
        padding: 0 24px; max-width: 100%;
        align-items: center; text-align: center;
    }
    .hero-content::before {
        background: radial-gradient(ellipse at center bottom, rgba(5,7,15,.9) 0%, rgba(5,7,15,.6) 50%, transparent 100%);
    }
    .hero-title { font-size: 42px; letter-spacing: -2px; }
    .hero-description { margin-inline: auto; font-size: 16px; }
    .hero-ctas { flex-direction: column; width: 100%; }
    .hero-ctas .btn-hero-cta, .hero-ctas .btn-outline-commands { width: 100%; justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-stats { justify-content: center; max-width: 100%; margin-inline: auto; }
    .hero-gif-wrapper {
        width: 100%; right: 0; top: 30%;
        transform: translateY(-50%);
        opacity: .5;
    }
    .features-grid { grid-template-columns: 1fr; }
}


/* ── Login ────────────────────────────────────────────────────────── */
.login-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #07090e; position: relative; overflow: hidden; }
.login-container::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px); background-size: 50px 50px; pointer-events: none; z-index: 0; }
.login-glow { position: absolute; width: 450px; height: 450px; background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%); border-radius: 50%; pointer-events: none; filter: blur(50px); }
.login-card { background: rgba(255, 255, 255, 0.015); border: 1px solid rgba(255, 255, 255, 0.05); backdrop-filter: blur(20px); border-radius: var(--radius); padding: 40px 36px; width: 380px; max-width: 90vw; text-align: center; position: relative; z-index: 1; box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5); }
.login-header { margin-bottom: 28px; }
.login-logo { margin-bottom: 16px; display: flex; justify-content: center; }
.login-logo img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); box-shadow: 0 0 15px var(--accent-glow); }
.login-header h1 { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.login-header p { color: var(--text2); font-size: 13px; margin-top: 6px; font-weight: 500; }
.login-methods { display: flex; flex-direction: column; gap: 12px; }
.login-divider { display: flex; align-items: center; justify-content: center; text-transform: uppercase; color: var(--text3); font-size: 10px; font-weight: 700; margin: 8px 0; gap: 12px; }
.login-divider::before, .login-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.login-error { color: var(--error); font-size: 12px; margin-top: 8px; font-weight: 500; }
.password-form { display: flex; gap: 8px; }
.password-form input { flex: 1; padding: 10px 14px; background: var(--bg-input); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-size: 13px; outline: none; transition: border-color var(--tr), box-shadow var(--tr); }
.password-form input:focus { border-color: var(--accent); box-shadow: 0 0 8px rgba(59, 130, 246, 0.2); }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: 8px; border: none; cursor: pointer; font-size: 13px; font-weight: 600; font-family: inherit; transition: all var(--tr); text-decoration: none; position: relative; overflow: hidden; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; box-shadow: 0 4px 14px var(--accent-glow); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45); }
.btn-discord { background: var(--discord); color: #fff; box-shadow: 0 4px 14px rgba(88, 101, 242, 0.2); }
.btn-discord:hover { background: #4752c4; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(88, 101, 242, 0.35); }
.btn-save { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; width: 100%; margin-top: 8px; padding: 12px; box-shadow: 0 4px 14px var(--accent-glow); }
.btn-save:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45); }

/* ── Topbar ───────────────────────────────────────────────────────── */
.topbar { position: fixed; top: 0; left: 0; right: 0; height: var(--topbar-h); background: var(--bg-topbar); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 20px; z-index: 100; }
.topbar-left { display: flex; align-items: center; gap: 10px; }
.topbar-icon { font-size: 18px; color: var(--accent); filter: drop-shadow(0 0 8px var(--accent-glow)); }
.topbar-brand { font-weight: 800; font-size: 15px; letter-spacing: -0.5px; background: linear-gradient(to right, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-greeting { font-size: 12px; color: var(--text2); font-weight: 500; }
.topbar-logout { color: var(--text2); transition: color var(--tr), transform var(--tr); display: flex; align-items: center; }
.topbar-logout:hover { color: var(--error); transform: translateX(2px); }

/* ── Dashboard Layout ────────────────────────────────────────────── */
.dashboard-layout { display: flex; margin-top: var(--topbar-h); height: calc(100vh - var(--topbar-h)); }

/* ── Server Strip (Discord-style) ────────────────────────────────── */
.server-strip { width: var(--strip-w); background: var(--bg-strip); border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; padding: 16px 0; gap: 8px; overflow-y: auto; flex-shrink: 0; z-index: 10; position: relative; }
.server-strip::-webkit-scrollbar { width: 0; }

.strip-icon { width: 44px; height: 44px; border-radius: 50%; cursor: pointer; transition: all var(--tr); position: relative; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.02); border: 1px solid var(--border); font-size: 16px; font-weight: 700; color: var(--accent); flex-shrink: 0; }
.strip-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; pointer-events: none; }
.strip-icon:hover { border-radius: 12px; transform: scale(1.04); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }
.strip-icon.active { border-radius: 12px; border-color: var(--accent); box-shadow: 0 0 15px var(--accent-glow); }

.strip-pill { position: absolute; left: -6px; top: 50%; transform: translateY(-50%); width: 4px; height: 0; background: #fff; border-radius: 0 4px 4px 0; transition: height var(--tr); pointer-events: none; }
.strip-icon:hover .strip-pill { height: 20px; }
.strip-icon.active .strip-pill { height: 32px; }

/* ── Profile Page ────────────────────────────────────────────────── */
.strip-profile { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--accent); flex-shrink: 0; cursor: pointer; transition: all var(--tr); }
.strip-profile:hover { border-radius: 14px; opacity: 0.85; }
.strip-profile.active { border-radius: 14px; outline: 2px solid var(--accent); outline-offset: 2px; }
.strip-profile img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }

.profile-page { max-width: 800px; }
.profile-hero { display: flex; align-items: center; gap: 20px; padding: 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 20px; }
.profile-hero-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; background: var(--bg-input); flex-shrink: 0; }
.profile-hero-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-hero-info h2 { font-size: 22px; font-weight: 700; }
.profile-hero-tag { font-size: 13px; color: var(--text2); margin-top: 3px; }

.profile-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.profile-stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; text-align: center; }
.profile-stat-card .ps-icon { font-size: 20px; margin-bottom: 4px; }
.profile-stat-card .ps-label { font-size: 10px; color: var(--text2); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.profile-stat-card .ps-value { font-size: 22px; font-weight: 700; margin-top: 2px; }

.profile-servers { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-top: 12px; }
.profile-server-item { display: flex; align-items: center; gap: 8px; padding: 10px; background: var(--bg-input); border: 1px solid var(--border); border-radius: 6px; cursor: pointer; transition: all var(--tr); }
.profile-server-item:hover { background: var(--bg-card-hover); border-color: var(--accent); }
.profile-server-item img { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.profile-server-item .ps-initial { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-card); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; color: var(--accent); flex-shrink: 0; }
.profile-server-item span { font-size: 12px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Store Grid */
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; margin-top: 12px; }
.store-item { background: var(--bg-input); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; cursor: pointer; transition: all var(--tr); text-align: center; }
.store-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.store-preview { height: 80px; }
.store-item p { font-size: 12px; font-weight: 600; padding: 8px 8px 2px; }
.store-item > span { font-size: 10px; color: var(--warning); padding: 0 8px 10px; display: block; }

/* Badge Grid */
.badge-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.badge-item { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: var(--bg-input); border: 1px solid var(--border); border-radius: 20px; font-size: 12px; font-weight: 500; }
.badge-item.locked { opacity: 0.4; }

/* Membership Badge */
.membership-badge { display: inline-block; padding: 4px 14px; border-radius: 12px; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.membership-badge.free { background: rgba(255,255,255,0.06); color: var(--text2); }
.membership-badge.premium { background: rgba(124,58,237,0.2); color: #a78bfa; }

/* Daily Streak */
.daily-streak { display: flex; gap: 8px; margin: 16px 0; flex-wrap: wrap; }
.streak-day { width: 60px; padding: 10px 6px; background: var(--bg-input); border: 1px solid var(--border); border-radius: 8px; text-align: center; font-size: 10px; font-weight: 600; color: var(--text2); }
.streak-day span { display: block; margin-top: 4px; font-size: 14px; font-weight: 700; color: var(--warning); }
.streak-day.active { border-color: var(--accent); background: rgba(124,58,237,0.15); color: var(--text); }
.streak-day.locked { opacity: 0.35; }

.strip-sep { width: 32px; height: 2px; background: var(--border); border-radius: 1px; margin: 4px 0; flex-shrink: 0; }

/* Mobile menu toggles (desktop default) */
.mobile-menu-btn { display: none; }
.mobile-menu-overlay { display: none; }
.topbar-icon img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); display: block; box-shadow: 0 0 8px var(--accent-glow); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: var(--text2);
        cursor: pointer;
        padding: 6px;
        margin-right: 10px;
        border-radius: 6px;
        transition: background var(--tr);
    }
    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #fff;
    }
    
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        z-index: 990;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--tr);
    }
    
    .mobile-menu-open .mobile-menu-overlay {
        opacity: 1;
        pointer-events: auto;
    }
    
    .server-strip {
        position: fixed;
        top: var(--topbar-h);
        bottom: 0;
        left: calc(-1 * (var(--strip-w) + var(--sidebar-w)));
        z-index: 1000;
        transition: left var(--tr);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    }
    
    .sidebar {
        position: fixed;
        top: var(--topbar-h);
        bottom: 0;
        left: calc(-1 * var(--sidebar-w));
        z-index: 1000;
        transition: left var(--tr);
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.5);
    }
    
    .mobile-menu-open .server-strip {
        left: 0;
    }
    
    .mobile-menu-open .sidebar {
        left: var(--strip-w);
    }

    .main-content {
        padding: 24px 16px;
        width: 100%;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .chart-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .profile-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .overview-stats {
        grid-template-columns: 1fr;
    }
    .profile-stats-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .profile-hero {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    .setting-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .setting-row label:first-child {
        min-width: 100%;
    }
}

.sidebar { width: var(--sidebar-w); background: var(--bg-sidebar); border-right: 1px solid var(--border); display: flex; flex-direction: column; flex-shrink: 0; overflow-y: auto; }
.sidebar-profile { padding: 16px; margin: 16px; background: rgba(255, 255, 255, 0.015); border: 1px solid rgba(255, 255, 255, 0.04); border-radius: 10px; text-align: center; }
.sidebar-profile .profile-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; margin: 0 auto 8px; border: 2px solid var(--accent); box-shadow: 0 0 10px var(--accent-glow); display: flex; align-items: center; justify-content: center; }
.sidebar-profile .profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-profile .profile-name { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.sidebar-profile .profile-tag { font-size: 11px; color: var(--text2); font-weight: 500; }

.sidebar-nav { list-style: none; padding: 12px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.nav-group-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text3); padding: 16px 12px 6px; }
.nav-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; border-radius: 8px; color: var(--text2); font-size: 13px; font-weight: 600; cursor: pointer; transition: all var(--tr); user-select: none; border-left: 3px solid transparent; }
.nav-item:hover { background: rgba(59, 130, 246, 0.05); color: #fff; }
.nav-item.active { background: rgba(59, 130, 246, 0.09); color: #fff; border-left-color: var(--accent); box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.05); }
.nav-item-left { display: flex; align-items: center; gap: 10px; }
.nav-icon { font-size: 14px; width: 18px; text-align: center; flex-shrink: 0; }
.nav-badges-container { display: flex; gap: 4px; margin-left: 6px; align-items: center; }
.nav-badge-premium { background: #faa81a; color: #05070f; font-size: 8px; font-weight: 800; padding: 2px 5px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.1; }
.nav-badge-new { background: #ec4899; color: #fff; font-size: 8px; font-weight: 800; padding: 2px 5px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.1; }
.module-status-indicator { width: 14px; height: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 800; transition: all var(--tr); flex-shrink: 0; }
.module-status-active { background: #10B981; color: #fff; border: 1px solid #10B981; }
.module-status-inactive { background: rgba(255, 255, 255, 0.08); border: 1.5px solid rgba(255, 255, 255, 0.2); }

/* ── Main Content ────────────────────────────────────────────────── */
.main-content { flex: 1; padding: 32px 40px; overflow-y: auto; background: var(--bg-main); }
.section-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; letter-spacing: -0.5px; }

/* ── Overview Stats ──────────────────────────────────────────────── */
.overview-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
@media (max-width: 900px) {
    .overview-stats { grid-template-columns: 1fr; }
}
.ov-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr); }
.ov-card:hover { border-color: rgba(59, 130, 246, 0.15); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); }
.ov-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.ov-card-icon { font-size: 16px; color: var(--accent); filter: drop-shadow(0 0 4px var(--accent-glow)); }
.ov-card-label { font-size: 11px; color: var(--text2); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.ov-card-value { font-size: 26px; font-weight: 800; color: #fff; background: linear-gradient(135deg, #fff, #94a3b8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ── Charts ──────────────────────────────────────────────────────── */
.charts-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.charts-header h3 { font-size: 14px; font-weight: 700; }
.chart-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }
.chart-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr); }
.chart-card:hover { border-color: rgba(59, 130, 246, 0.15); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); }
.chart-card h4 { font-size: 12px; font-weight: 700; color: var(--text2); margin-bottom: 12px; }
.chart-card canvas { width: 100% !important; height: 160px !important; }
.chart-full { margin-bottom: 24px; }

/* ── Stats Grid ──────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr); }
.stat-card:hover { border-color: rgba(59, 130, 246, 0.15); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); }
.stat-icon { font-size: 24px; margin-bottom: 8px; color: var(--accent); filter: drop-shadow(0 0 6px var(--accent-glow)); }
.stat-value { font-size: 24px; font-weight: 800; color: #fff; }
.stat-label { font-size: 11px; color: var(--text2); margin-top: 4px; font-weight: 600; }

/* ── Settings ────────────────────────────────────────────────────── */
.settings-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr); }
.settings-card:hover { border-color: rgba(59, 130, 246, 0.15); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); }
.card-title { font-size: 15px; font-weight: 700; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); color: #fff; }
.card-desc { font-size: 12px; color: var(--text2); margin-bottom: 16px; margin-top: -6px; line-height: 1.4; }
.setting-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.setting-row label:first-child { font-size: 13px; font-weight: 600; color: var(--text2); min-width: 120px; flex-shrink: 0; }
.setting-row small { display: block; font-size: 10px; color: var(--text3); margin-top: 4px; }

/* ── Form ─────────────────────────────────────────────────────────── */
.input, .textarea, .select { width: 100%; padding: 10px 14px; background: var(--bg-input); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: inherit; font-size: 13px; outline: none; transition: border-color var(--tr), box-shadow var(--tr); }
.input:focus, .textarea:focus, .select:focus { border-color: var(--accent); box-shadow: 0 0 8px rgba(59, 130, 246, 0.2); }
.select { cursor: pointer; appearance: auto; }
.select-sm { width: auto; min-width: 140px; padding: 6px 12px; font-size: 11px; }
.textarea { resize: vertical; min-height: 60px; }
.input-group { display: flex; gap: 6px; flex: 1; }

/* ── Toggle ──────────────────────────────────────────────────────── */
.toggle { position: relative; display: inline-block; width: 42px; height: 22px; flex-shrink: 0; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider { position: absolute; cursor: pointer; inset: 0; background: #232733; border-radius: 22px; transition: var(--tr); border: 1px solid rgba(255,255,255,0.03); }
.toggle-slider::before { content: ''; position: absolute; height: 16px; width: 16px; left: 2px; bottom: 2px; background: #fff; border-radius: 50%; transition: var(--tr); }
.toggle input:checked + .toggle-slider { background: var(--accent); box-shadow: 0 0 10px var(--accent-glow); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ── Toast ────────────────────────────────────────────────────────── */
#toast-container { position: fixed; bottom: 16px; right: 16px; z-index: 1000; display: flex; flex-direction: column; gap: 6px; }
.toast { padding: 10px 18px; border-radius: 6px; color: #fff; font-size: 12px; font-weight: 500; animation: slideIn 0.3s ease; transition: all 0.3s ease; }
.toast-success { background: var(--success); }
.toast-error { background: var(--error); }
.toast-info { background: var(--accent); }
@keyframes slideIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

/* ── Tables ──────────────────────────────────────────────────────── */
.ticket-table, .lb-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.ticket-table th, .lb-table th { text-align: left; color: var(--text3); font-weight: 600; font-size: 10px; text-transform: uppercase; padding: 8px 10px; border-bottom: 1px solid var(--border); }
.ticket-table td, .lb-table td { padding: 10px; border-bottom: 1px solid var(--border); }
.badge { padding: 2px 7px; border-radius: 8px; font-size: 10px; font-weight: 600; }
.badge-open { background: rgba(16,185,129,0.15); color: var(--success); }
.badge-closed { background: rgba(239,68,68,0.15); color: var(--error); }

.lb-rank { font-weight: 700; color: var(--accent); }
.lb-user { display: flex; align-items: center; gap: 8px; }
.lb-user img { width: 24px; height: 24px; border-radius: 50%; }

/* ── Previews ────────────────────────────────────────────────────── */
.image-preview-container { margin: 10px 0; }
.preview-label { display: block; font-size: 12px; font-weight: 500; color: var(--text2); margin-bottom: 6px; }
.image-preview-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: var(--bg-input); max-height: 180px; }
.image-preview-card img { width: 100%; max-height: 180px; object-fit: cover; display: block; }
.preview-error { padding: 14px; color: var(--warning); font-size: 12px; line-height: 1.5; text-align: center; }

.embed-preview { margin: 14px 0; }
.embed-preview-header { font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.embed-preview-card { background: #2b2d31; border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; position: relative; padding-left: 4px; }
.embed-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; border-radius: 4px 0 0 4px; }
.embed-body { display: flex; gap: 14px; padding: 10px 14px 6px 10px; }
.embed-text { flex: 1; min-width: 0; }
.embed-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.embed-desc { font-size: 12px; color: #b5bac1; line-height: 1.4; white-space: pre-wrap; }
.embed-thumb { width: 70px; height: 70px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.embed-image { width: calc(100% - 14px); max-height: 200px; object-fit: cover; border-radius: 4px; margin: 0 7px 10px 10px; }
.embed-preview-btn { margin: 0 10px 10px 10px; padding: 5px 14px; background: #5865f2; color: #fff; border-radius: 3px; font-size: 12px; font-weight: 500; display: inline-block; width: fit-content; }
.embed-preview-buttons { display: flex; gap: 6px; flex-wrap: wrap; margin: 0 10px 10px 10px; }
.embed-preview-buttons .preview-btn { padding: 3px 12px; background: #4e5058; color: #e4e5e8; border-radius: 3px; font-size: 12px; font-weight: 500; }

/* ── Leaderboard ─────────────────────────────────────────────────── */
.leaderboard-table .lb-table { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }

/* ── Global Smooth Scroll ── */
html {
    scroll-behavior: smooth;
}

/* ── Common Landing Titles ── */
.section-title-landing {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.section-desc-landing {
    color: var(--text2);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ── Commands Section ── */
.commands-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.commands-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(12px);
    max-width: 900px;
    margin: 0 auto;
}
.commands-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 16px;
}
.cmd-tab {
    background: transparent;
    border: none;
    color: var(--text2);
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.cmd-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.cmd-tab.active {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}
.cmd-category-content {
    display: none;
    flex-direction: column;
    gap: 16px;
}
.cmd-category-content.active {
    display: flex;
}
.cmd-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 18px;
    transition: transform 0.2s ease;
}
.cmd-item:hover {
    transform: translateX(4px);
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(255, 255, 255, 0.03);
}
.cmd-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.cmd-name {
    font-family: monospace;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
}
.cmd-perms {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text2);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}
.cmd-body {
    font-size: 0.9rem;
    color: var(--text2);
    line-height: 1.4;
}

/* ── Premium / Pricing Section ── */
.premium-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.price-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}
.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.price-card.popular {
    background: rgba(59, 130, 246, 0.03);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
}
.pop-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px var(--primary-glow);
}
.price-header {
    text-align: center;
    margin-bottom: 30px;
}
.price-tier {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 12px;
}
.price-val {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
}
.price-dur {
    font-size: 0.95rem;
    color: var(--text2);
    font-weight: 500;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.price-features li {
    font-size: 0.9rem;
    color: var(--text2);
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-pricing-cta {
    width: 100%;
    text-align: center;
    box-shadow: 0 0 20px var(--primary-glow);
    box-sizing: border-box;
}
.btn-outline-pricing {
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}
.btn-outline-pricing:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

/* ── Docs & FAQ Section ── */
.docs-section {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}
.faq-q {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
}
.faq-arrow {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.2s ease;
}
.faq-a {
    padding: 0 24px 20px 24px;
    color: var(--text2);
    font-size: 0.95rem;
    line-height: 1.5;
    display: none;
}
.faq-item.active .faq-a {
    display: block;
}
.faq-item.active .faq-arrow {
    transform: rotate(45deg);
    color: var(--error);
}

/* ── Support Section ── */
.support-section {
    padding: 80px 0 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.support-card-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(59, 130, 246, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.support-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.08;
    pointer-events: none;
}
.support-card-body {
    padding: 50px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.support-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.support-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.support-desc {
    color: var(--text2);
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-size: 1rem;
    line-height: 1.5;
}
.btn-support-cta {
    padding: 14px 32px;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(88, 101, 242, 0.2);
}

/* ── Landing Page Footer Styling ── */
.landing-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(10, 12, 18, 0.4);
    backdrop-filter: blur(12px);
    padding: 30px 40px;
    margin-top: auto;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.footer-copyright {
    font-size: 0.8rem;
    color: var(--text2);
}
.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-link {
    font-size: 0.85rem;
    color: var(--text2);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-link:hover {
    color: var(--primary);
}
.footer-sep {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    user-select: none;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

