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

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f18;
    --bg-card: #12121e;
    --bg-card-hover: #1a1a2e;
    --text-primary: #f0f0f5;
    --text-secondary: #8888aa;
    --text-muted: #555570;
    --accent-cyan: #00d4ff;
    --accent-cyan-dark: #0099bb;
    --accent-purple: #8b5cf6;
    --gradient-start: #00d4ff;
    --gradient-end: #8b5cf6;
    --border-color: rgba(255, 255, 255, 0.06);
    --glass: rgba(255, 255, 255, 0.03);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-xs: 4px;
    --shadow-glow: 0 0 60px rgba(0, 212, 255, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ═══════════════════════════════════════════ */
/*  NAVBAR                                     */
/* ═══════════════════════════════════════════ */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    backdrop-filter: blur(0px);
}

#navbar.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px var(--accent-cyan));
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    text-decoration: none;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #000;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.lang-switcher {
    display: flex;
    gap: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    padding: 3px;
    border: 1px solid var(--border-color);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover {
    color: var(--text-secondary);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #000;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    z-index: 999;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 1rem;
    padding: 8px 0;
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--text-primary);
}

/* ═══════════════════════════════════════════ */
/*  HERO                                       */
/* ═══════════════════════════════════════════ */

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(0.7) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.4) 0%,
        rgba(10, 10, 15, 0.6) 50%,
        rgba(10, 10, 15, 1) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: float-up linear infinite;
    opacity: 0;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    background: rgba(0, 212, 255, 0.05);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0px rgba(0, 212, 255, 0); }
    50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.15); }
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

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

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

.btn-outline:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-cyan);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent-cyan), transparent);
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════ */
/*  SECTIONS COMMON                            */
/* ═══════════════════════════════════════════ */

section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-cyan);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════ */
/*  FEATURES                                   */
/* ═══════════════════════════════════════════ */

#features {
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.feature-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.feature-large h3 {
    font-size: 1.3rem;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(0, 212, 255, 0.08);
    color: var(--accent-cyan);
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.feature-large .feature-icon {
    margin-bottom: 0;
}

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

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════ */
/*  SYNC STATUS                                */
/* ═══════════════════════════════════════════ */

#sync-status {
    background: var(--bg-primary);
}

.sync-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-yes {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.legend-partial {
    background: #eab308;
    box-shadow: 0 0 8px rgba(234, 179, 8, 0.5);
}

.legend-no {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

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

.sync-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sync-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    transition: width var(--transition);
}

.sync-yes .sync-indicator {
    background: #22c55e;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.3);
}

.sync-partial .sync-indicator {
    background: #eab308;
    box-shadow: 0 0 12px rgba(234, 179, 8, 0.3);
}

.sync-no .sync-indicator {
    background: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.2);
}

.sync-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--bg-card-hover);
}

.sync-item:hover .sync-indicator {
    width: 4px;
}

/* Changelog */
.changelog-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 32px;
}

.changelog-list::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(255,102,0,0.1));
    border-radius: 2px;
}

.changelog-loading {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px 0;
    font-size: 14px;
}

.changelog-release {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 24px 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.changelog-release::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 28px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--primary);
    z-index: 1;
}

.changelog-release:first-child::before {
    background: var(--primary);
    box-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
}

.changelog-release:first-child {
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.06);
}

.changelog-release:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.changelog-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.changelog-version {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark, #cc5200));
    color: #fff;
    padding: 5px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.changelog-latest {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.changelog-date {
    color: var(--text-secondary);
    font-size: 13px;
    margin-left: auto;
}

.changelog-body {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.changelog-body .cl-section-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    margin-top: 14px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.changelog-body .cl-item {
    padding-left: 18px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.changelog-body .cl-item::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
}

.sync-yes:hover {
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.08);
}

.sync-partial:hover {
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.08);
}

.sync-no:hover {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.06);
}

.sync-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.sync-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.sync-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ═══════════════════════════════════════════ */
.servers-block {
    margin-top: 48px;
    text-align: center;
}

.servers-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.servers-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.servers-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.server-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px 28px;
    transition: var(--transition);
    min-width: 240px;
}

.server-card:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 0 25px rgba(34, 197, 94, 0.1);
}

.server-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: server-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes server-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
    50% { box-shadow: 0 0 16px rgba(34, 197, 94, 0.9); }
}

.server-flag {
    font-size: 2rem;
    line-height: 1;
}

.server-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.server-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════ */
/*  API SECTION                                */
/* ═══════════════════════════════════════════ */

#api {
    background: var(--bg-primary);
}

.api-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 24px;
    align-items: start;
}

.api-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.api-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
}

.api-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    color: var(--accent-purple);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.api-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.api-info-card > p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.api-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 28px;
}

.api-module {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xs);
    padding: 8px 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.api-module:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05);
    color: var(--text-primary);
}

.api-module-icon {
    font-size: 1rem;
}

.api-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.api-stats-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.api-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}

.api-stat-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
}

.api-stat-value {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.api-stat-value span {
    font-size: 1.2rem;
}

.api-stat-open {
    display: flex;
    justify-content: center;
    color: var(--accent-purple);
    -webkit-text-fill-color: unset;
    background: none;
}

.api-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════ */
/*  HOW IT WORKS                               */
/* ═══════════════════════════════════════════ */

.steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 220px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-cyan), var(--accent-purple), transparent);
}

.step {
    display: flex;
    gap: 32px;
    padding: 32px 0;
    position: relative;
}

.step-launcher {
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 12px;
    padding: 24px 32px;
    background: rgba(255, 102, 0, 0.04);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.06);
}

.step-launcher .step-number {
    color: var(--primary);
    font-size: 2rem;
}

.steps-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}

.steps-divider::before,
.steps-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
}

.steps-divider span {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    min-width: 72px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-cyan);
    z-index: -1;
    opacity: 0;
}

.step:hover .step-number::after {
    opacity: 1;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.step-content code,
.step-content kbd {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    font-family: 'Outfit', monospace;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

/* ═══════════════════════════════════════════ */
/*  TECH STATS                                 */
/* ═══════════════════════════════════════════ */

#tech {
    background: var(--bg-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tech-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.tech-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.tech-value span {
    font-size: 1.5rem;
}

.tech-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════ */
/*  DOWNLOAD                                   */
/* ═══════════════════════════════════════════ */

.download-box {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    overflow: hidden;
}

.download-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.download-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.download-requirements {
    display: inline-block;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 24px 32px;
}

.download-requirements h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.download-requirements ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 32px;
}

.download-requirements li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    padding-left: 18px;
}

.download-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 700;
}

/* ═══════════════════════════════════════════ */
/*  SUPPORT BANNER                             */
/* ═══════════════════════════════════════════ */

.support-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 16px;
    padding: 32px 40px;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.06);
}

.support-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.support-text {
    flex: 1;
}

.support-text h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.support-text p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.support-box .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ═══════════════════════════════════════════ */
/*  COMMUNITY                                  */
/* ═══════════════════════════════════════════ */

#community {
    background: var(--bg-secondary);
}

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

.community-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.community-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: var(--transition);
}

.discord-card::after { background: #5865F2; }
.nexus-card::after { background: #da8e35; }
.github-card::after { background: #f0f0f5; }

.community-card:hover {
    transform: translateY(-6px);
}

.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 0 40px rgba(88, 101, 242, 0.15);
}

.nexus-card:hover {
    border-color: rgba(218, 142, 53, 0.4);
    box-shadow: 0 0 40px rgba(218, 142, 53, 0.15);
}

.github-card:hover {
    border-color: rgba(240, 240, 245, 0.2);
    box-shadow: 0 0 40px rgba(240, 240, 245, 0.08);
}

.community-card svg {
    margin-bottom: 20px;
    transition: var(--transition);
}

.discord-card svg { color: #5865F2; }
.nexus-card svg { color: #da8e35; }
.github-card svg { color: #f0f0f5; }

.community-card:hover svg {
    transform: scale(1.1);
}

.community-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.community-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.community-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-cyan);
    transition: var(--transition);
}

.community-card:hover .community-link {
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════ */
/*  CREATOR                                    */
/* ═══════════════════════════════════════════ */

#creator {
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.creator-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
}

.creator-avatar-alt {
    background: linear-gradient(135deg, var(--accent-cyan), #06b6d4);
}

.creator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
}

.creator-avatar {
    min-width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.creator-avatar span {
    font-size: 2.2rem;
    font-weight: 900;
    color: #000;
}

.creator-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.creator-role {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-purple);
    margin-bottom: 12px;
}

.creator-bio {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.creator-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.creator-project {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
}

.creator-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.78rem;
}

/* ═══════════════════════════════════════════ */
/*  FOOTER                                     */
/* ═══════════════════════════════════════════ */

footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition);
}

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

.footer-disclaimer {
    text-align: right;
}

.footer-disclaimer p {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════ */
/*  ANIMATIONS                                 */
/* ═══════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════════════════════════════ */
/*  RESPONSIVE                                 */
/* ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-large {
        grid-column: 1 / -1;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .api-content {
        grid-template-columns: 1fr;
    }

    .api-stats-col {
        flex-direction: row;
    }

    .api-stat-card {
        flex: 1;
    }

    .changelog-list {
        padding-left: 24px;
    }

    .support-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .nav-burger {
        display: flex;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-large {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-large .feature-icon {
        margin: 0 auto 16px;
    }
    
    .feature-tag {
        margin-top: 12px;
    }

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

    .sync-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .download-box {
        padding: 48px 24px;
    }
    
    .download-requirements ul {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
    
    .steps::before {
        left: 20px;
    }
    
    .step-number {
        min-width: 42px;
        font-size: 1.2rem;
    }
    
    .step {
        gap: 20px;
    }

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

    .creator-projects {
        justify-content: center;
    }

    .creator-links {
        justify-content: center;
    }

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

    .api-info-card {
        padding: 24px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .changelog-list {
        padding-left: 20px;
    }

    .changelog-release {
        padding: 16px;
    }

    .changelog-release::before {
        left: -25px;
        width: 10px;
        height: 10px;
    }

    .changelog-list::before {
        left: 5px;
    }

    .step-launcher {
        padding: 16px 20px;
    }

    .support-box {
        gap: 16px;
        padding: 20px;
    }

    .lang-switcher {
        display: none;
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .sync-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .changelog-list {
        padding-left: 0;
    }

    .changelog-list::before {
        display: none;
    }

    .changelog-release::before {
        display: none;
    }

    .changelog-header {
        flex-wrap: wrap;
    }

    .changelog-date {
        margin-left: 0;
        width: 100%;
    }

    .steps-divider span {
        font-size: 10px;
    }
}
