/* ════════════════════════════════════════════════════════════════ */
/* NSLY VAULT — LANDING PAGE STYLES v2                            */
/* ════════════════════════════════════════════════════════════════ */

:root {
    --primary: #8A2BE2;
    --primary-light: #00FFAA;
    --primary-dark: #3d0e6b;
    --secondary: #FF00AA;
    --accent: #00CFFF;
    --success: #00FF88;
    --bg-dark: #07091a;
    --bg-darker: #040610;
    --text-light: #E8E8F0;
    --text-muted: #7a7a99;
    --gold: #FFD700;
    --glass: rgba(255,255,255,0.03);
    --glass-border: rgba(138,43,226,0.2);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'JetBrains Mono', 'Monaco', 'Courier New', monospace;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ═══ PARTICLES ══════════════════════════════════════════════════ */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

/* ═══ HEADER ═════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(4, 6, 16, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 0.85rem 2rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.header.scrolled {
    border-bottom-color: rgba(138,43,226,0.5);
    box-shadow: 0 0 40px rgba(138,43,226,0.15);
}

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

.logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 1.25rem;
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(0,255,170,0.35);
    letter-spacing: 0.05em;
}

.logo p {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
    letter-spacing: 0.08em;
}

.nav-buttons { display: flex; gap: 0.7rem; }

.btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary-light);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s ease;
    font-size: 0.82rem;
    font-family: inherit;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateX(-101%);
    transition: transform 0.25s ease;
    z-index: -1;
}

.btn:hover::before { transform: translateX(0); }
.btn:hover { color: #fff; }

.btn-github  { border-color: var(--accent); color: var(--accent); }
.btn-github::before { background: var(--accent); }
.btn-github:hover { color: var(--bg-darker); }

.btn-download { border-color: var(--success); color: var(--success); }
.btn-download::before { background: var(--success); }
.btn-download:hover { color: var(--bg-darker); }

/* ═══ HERO ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-glow {
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(138,43,226,0.15) 0%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    animation: glow-pulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%,-50%) scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    padding: 2rem 1.5rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border: 1px solid rgba(0,255,170,0.4);
    color: var(--primary-light);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    animation: fade-up 0.6s ease both;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    animation: fade-up 0.6s ease 0.1s both;
    color: var(--text-light);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fade-up 0.6s ease 0.2s both;
    line-height: 1.6;
}

.hero-sub-muted {
    display: block;
    font-size: 0.85em;
    margin-top: 0.3rem;
    color: rgba(122,122,153,0.7);
}

/* ═══ TERMINAL ════════════════════════════════════════════════════ */
.hero-terminal {
    background: rgba(0,0,0,0.75);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin: 0 auto 2rem;
    max-width: 500px;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(138,43,226,0.15), inset 0 1px 0 rgba(255,255,255,0.04);
    animation: fade-up 0.6s ease 0.3s both;
}

.terminal-bar {
    background: rgba(255,255,255,0.05);
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red    { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green  { background: #27C93F; }

.terminal-title {
    margin-left: auto;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.terminal-body { padding: 1rem 1.2rem 1.3rem; }

.terminal-line {
    display: flex;
    align-items: center;
    font-size: 0.88rem;
}

.prompt { color: var(--success); }
.cmd    { color: var(--text-light); }

.cursor {
    color: var(--primary-light);
    animation: blink 1s step-end infinite;
    margin-left: 1px;
}

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

.terminal-output {
    margin-top: 0.75rem;
    font-size: 0.83rem;
    color: var(--text-muted);
    min-height: 80px;
}

.t-line   { margin: 0.2rem 0; transition: opacity 0.2s; }
.t-green  { color: var(--success); }
.t-purple { color: var(--primary); }
.t-accent { color: var(--accent); }
.t-muted  { color: #444; }

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    animation: fade-up 0.6s ease 0.4s both;
}

.cta-button {
    padding: 0.85rem 1.7rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(138,43,226,0.35);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(138,43,226,0.55);
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(0,255,170,0.08);
    box-shadow: 0 0 25px rgba(0,255,170,0.15);
}

.cta-button.large { padding: 1rem 2.2rem; font-size: 1rem; }

.hero-platforms {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-up 0.6s ease 0.5s both;
}

.platform-badge {
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    animation: bounce 2.5s ease-in-out infinite;
}

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

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

/* ═══ SCROLL SECTIONS ════════════════════════════════════════════ */
.scroll-container { position: relative; z-index: 1; }

.scroll-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
    padding: 5rem 4rem;
    max-width: 1280px;
    margin: 0 auto;
}

.scroll-section.final {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: 6rem 2rem;
}

/* ═══ REVEAL ANIMATION (FIXED) ══════════════════════════════════ */
.scroll-text,
.scroll-image {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.scroll-text.left,
.scroll-image.left  { transform: translateX(-35px); }
.scroll-text.right,
.scroll-image.right { transform: translateX(35px); }

.scroll-text.visible,
.scroll-image.visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Safety net: show everything after 2.5s even if JS fails */
.scroll-text  { animation: force-show 0s 2.5s forwards; }
.scroll-image { animation: force-show 0s 2.5s forwards; }
@keyframes force-show { to { opacity: 1; transform: none; } }

/* ═══ TYPOGRAPHY ═════════════════════════════════════════════════ */
.section-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.scroll-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.scroll-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.highlight-box {
    background: rgba(138,43,226,0.08);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--primary-light);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.inline-kbd {
    background: rgba(138,43,226,0.3);
    color: var(--primary-light);
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    font-size: 0.85em;
    font-family: inherit;
    border: 1px solid rgba(138,43,226,0.5);
}

/* ═══ CODE BLOCK ═════════════════════════════════════════════════ */
.code-block {
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 35px rgba(138,43,226,0.1);
}

.code-header {
    background: rgba(255,255,255,0.04);
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.code-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.code-lang {
    margin-left: auto;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.code-block pre,
.final-code pre { padding: 1.4rem; font-size: 0.87rem; overflow-x: auto; line-height: 1.7; }

.c-comment { color: #555; }
.c-cmd     { color: var(--primary-light); }
.c-success { color: var(--success); font-weight: 600; }
.c-green   { color: var(--success); }
.c-muted   { color: #555; }

/* ═══ INSTALL METHODS ════════════════════════════════════════════ */
.install-methods {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.method-badge {
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--glass-border);
    border-radius: 3px;
    font-size: 0.75rem;
    color: var(--text-muted);
    cursor: default;
    transition: all 0.2s;
}

.method-badge.active {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background: rgba(0,255,170,0.06);
}

/* ═══ SECURITY CARD ══════════════════════════════════════════════ */
.security-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.security-layer {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem 1.1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.security-layer:hover {
    border-color: rgba(138,43,226,0.5);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(138,43,226,0.1);
}

.sec-icon { font-size: 1.4rem; flex-shrink: 0; }

.sec-info h3 {
    font-size: 0.88rem;
    color: var(--primary-light);
    margin-bottom: 0.15rem;
}

.sec-info p { font-size: 0.75rem; color: var(--text-muted); }
.sec-info code { font-family: inherit; color: var(--accent); font-size: 0.85em; }

.sec-badge {
    margin-left: auto;
    font-size: 0.6rem;
    padding: 0.2rem 0.55rem;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
    letter-spacing: 0.1em;
}

.security-connector {
    width: 2px; height: 18px;
    background: linear-gradient(to bottom, rgba(138,43,226,0.4), transparent);
    margin: 0 auto;
}

/* ═══ VAULT FILES ═════════════════════════════════════════════════ */
.vault-files {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vault-file {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.82rem;
    padding: 0.45rem 0.7rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 4px;
}

.file-icon { font-size: 1rem; }
.vault-file code { color: var(--accent); font-family: inherit; flex-shrink: 0; }
.file-desc { color: var(--text-muted); font-size: 0.78rem; }

/* ═══ FEATURES LIST ══════════════════════════════════════════════ */
.features-list {
    list-style: none;
    margin-top: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.9rem;
    color: var(--text-light);
}

.check {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* ═══ ROADMAP CARD ═══════════════════════════════════════════════ */
.roadmap-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
}

.roadmap-title, .deps-title {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.deps-title { margin-top: 0; }

.roadmap-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.roadmap-separator {
    height: 1px;
    background: var(--glass-border);
    margin: 1rem 0;
}

.dep-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.dep-name { color: var(--text-muted); }
.dep-ver  { color: var(--primary); font-size: 0.75rem; }

/* ═══ KEYBOARD SHORTCUTS ══════════════════════════════════════════ */
.kbd-container { display: flex; flex-direction: column; gap: 1.5rem; }

.kbd-group-title {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.shortcut {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    margin-bottom: 0.4rem;
    transition: all 0.25s;
}

.shortcut:hover {
    border-color: rgba(138,43,226,0.4);
    background: rgba(138,43,226,0.06);
}

.shortcut kbd {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.78rem;
    font-family: inherit;
    box-shadow: 0 3px 0 rgba(0,0,0,0.4);
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.shortcut:hover kbd { transform: translateY(-1px); }

.shortcut span { color: var(--text-muted); font-size: 0.82rem; }

/* ═══ PLATFORMS GRID ═════════════════════════════════════════════ */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.platform-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.1rem 0.5rem;
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.3;
    transition: all 0.25s;
}

.platform-card small {
    display: block;
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
    font-family: inherit;
}

.platform-card:hover {
    border-color: rgba(0,255,170,0.3);
    background: rgba(0,255,170,0.04);
    transform: translateY(-3px);
}

/* ═══ LICENSE BADGE ══════════════════════════════════════════════ */
.license-badge {
    background: linear-gradient(135deg, rgba(138,43,226,0.1), rgba(255,215,0,0.06));
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
}

.license-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }

.license-badge h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.license-badge p { color: var(--text-muted); font-size: 0.85rem; margin: 0.2rem 0; }

.license-rights {
    margin: 1.2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.lr-item {
    font-size: 0.83rem;
    color: var(--text-light);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.license-badge a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-light);
    text-decoration: none;
    padding: 0.5rem 1.1rem;
    border: 1px solid var(--primary-light);
    border-radius: 4px;
    font-size: 0.82rem;
    transition: all 0.25s;
}

.license-badge a:hover {
    background: var(--primary-light);
    color: var(--bg-darker);
}

/* ═══ CONTRIBUTE BOX ═════════════════════════════════════════════ */
.contribute-box {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contrib-step {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.5rem 0.7rem;
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
}

.contrib-n {
    width: 22px; height: 22px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.contrib-step code {
    font-family: inherit;
    font-size: 0.8rem;
    color: var(--accent);
}

/* ═══ COMPARISON TABLE ═══════════════════════════════════════════ */
.comparison-table { overflow-x: auto; border-radius: 10px; }

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0,0,0,0.35);
    border-radius: 10px;
    overflow: hidden;
    font-size: 0.85rem;
}

.comparison-table th,
.comparison-table td {
    padding: 0.8rem 0.9rem;
    text-align: center;
    border-bottom: 1px solid rgba(138,43,226,0.08);
}

.comparison-table thead th {
    background: rgba(138,43,226,0.18);
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nsly-col {
    background: rgba(0,255,170,0.04) !important;
    color: var(--primary-light) !important;
    font-weight: 600;
    border-left:  2px solid rgba(0,255,170,0.3) !important;
    border-right: 2px solid rgba(0,255,170,0.3) !important;
}

.comparison-table thead .nsly-col { border-top: 2px solid rgba(0,255,170,0.3) !important; }
.comparison-table td { color: var(--text-muted); }
.comparison-table tr:hover { background: rgba(138,43,226,0.06); }

/* ═══ FINAL SECTION ══════════════════════════════════════════════ */
.final-code {
    background: rgba(0,0,0,0.7);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    overflow: hidden;
    max-width: 580px;
    margin: 0 auto 2rem;
    text-align: left;
}

.final-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--primary-light);
    margin-bottom: 0.8rem;
}

.final-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.final-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══ FOOTER ═════════════════════════════════════════════════════ */
.footer {
    background: rgba(4,6,16,0.8);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 2rem 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.footer-section h4 {
    color: var(--primary-light);
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
}

.footer-section code {
    font-family: inherit;
    color: var(--accent);
    font-size: 0.85em;
}

.footer-section a {
    display: block;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 0.45rem;
    font-size: 0.82rem;
    transition: all 0.2s;
}

.footer-section a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-credit {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-credit strong { color: var(--primary-light); }

/* ═══ SCROLL PROGRESS ════════════════════════════════════════════ */
.scroll-progress {
    position: fixed;
    bottom: 0; left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--accent), var(--secondary));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .scroll-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .scroll-text.right { text-align: left; }
    .scroll-image.right { transform: translateX(0); }

    .platforms-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .header-content { flex-direction: column; gap: 0.7rem; text-align: center; }
    .nav-buttons { justify-content: center; }

    .scroll-section { padding: 3rem 1rem; }
    .hero-title { font-size: 1.9rem; }

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

    .final-buttons { flex-direction: column; align-items: center; }
    .cta-button.large { width: 100%; text-align: center; }
}
