/* ================================================
   NinSpoofer Tool - Premium Stylesheet v3
   ================================================ */

/* === Variables === */
:root {
    --bg-base: #070710;
    --bg-surface: #0c0c1a;
    --bg-card: #0f0f20;
    --bg-card-hover: #14142a;
    --bg-glass: rgba(12, 12, 26, 0.6);
    --border: rgba(255, 255, 255, 0.06);
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(0, 212, 170, 0.2);

    --accent: #00d4aa;
    --accent-dim: rgba(0, 212, 170, 0.08);
    --accent-glow: rgba(0, 212, 170, 0.25);
    --accent-dark: #00a888;

    --text-primary: #ededf5;
    --text-secondary: #8888a8;
    --text-muted: #555572;

    --font: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 28px;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-h: 72px;
}

/* === Reset === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* === Scrollbar === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0, 212, 170, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0, 212, 170, 0.4); }

/* === Selection === */
::selection { background: rgba(0, 212, 170, 0.2); color: var(--text-primary); }

/* === Typography Helpers === */
.section-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 212, 170, 0.15);
    border-radius: 50px;
    background: var(--accent-dim);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(7, 7, 16, 0.85);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom-color: var(--border);
    box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-mark {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 22px;
}

.logo-bar {
    display: block;
    width: 4px;
    background: var(--accent);
    border-radius: 2px;
    transition: height 0.3s var(--ease-spring);
}

.logo-bar:nth-child(1) { height: 14px; }
.logo-bar:nth-child(2) { height: 22px; }
.logo-bar:nth-child(3) { height: 10px; }

.nav-logo:hover .logo-bar:nth-child(1) { height: 22px; }
.nav-logo:hover .logo-bar:nth-child(2) { height: 14px; }
.nav-logo:hover .logo-bar:nth-child(3) { height: 18px; }

.logo-text {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text-primary);
}

.logo-accent { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    position: relative;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: color 0.25s, background 0.25s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
    transition: transform 0.3s var(--ease-out);
}

.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.nav-actions { margin-left: 16px; }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
    background: var(--accent);
    color: #070710;
    border-color: var(--accent);
    box-shadow: 0 0 28px var(--accent-glow);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
}

.hamburger, .hamburger::before, .hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    position: relative;
    transition: all 0.3s;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { transform: rotate(45deg); top: 0; }
.nav-toggle.active .hamburger::after { transform: rotate(-45deg); top: -7px; }

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Layered mesh background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 212, 170, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(0, 100, 80, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Grid overlay */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 170, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 170, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 20%, transparent 70%);
}

/* Ambient glows */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.07) 0%, transparent 65%);
    top: -15%;
    left: 20%;
    transform: translateX(-50%);
    filter: blur(60px);
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 65%);
    bottom: 10%;
    right: 10%;
    filter: blur(80px);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles canvas {
    width: 100%;
    height: 100%;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 60px) 32px 100px;
    display: grid;
    place-items: center;
    text-align: center;
    width: 100%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}

.hero-title {
    font-size: clamp(3.2rem, 9vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.title-line { display: block; }

.title-line.accent {
    background: linear-gradient(135deg, var(--accent) 0%, #00ffcc 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 30px rgba(0, 212, 170, 0.3));
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 6px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s var(--ease-out) 0.3s both;
    font-weight: 400;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeUp 0.8s var(--ease-out) 0.35s both;
}

.divider-diamond {
    display: block;
    width: 5px;
    height: 5px;
    background: var(--accent);
    transform: rotate(45deg);
    opacity: 0.5;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.35s var(--ease-out);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--accent);
    color: #070710;
    box-shadow: 0 4px 24px rgba(0, 212, 170, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
    border-color: rgba(0, 212, 170, 0.3);
    color: var(--accent);
    background: var(--accent-dim);
    transform: translateY(-2px);
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 52px;
    animation: fadeUp 0.8s var(--ease-out) 0.5s both;
}

.hero-tagline span {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 400;
}

.tagline-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
    flex-shrink: 0;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 212, 170, 0.6), transparent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(0.4); transform-origin: top; }
    50% { opacity: 0.7; transform: scaleY(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================
   PLATFORM COMPATIBILITY SECTION
   ================================================ */
.compat-section {
    padding: 120px 0;
    position: relative;
}

.compat-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.compat-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.compat-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.compat-header {
    text-align: center;
    margin-bottom: 60px;
}

.compat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.compat-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 26px;
    background: rgba(15, 15, 32, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
}

.compat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.compat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.compat-card:hover {
    border-color: rgba(0, 212, 170, 0.18);
    background: rgba(20, 20, 40, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.compat-card:hover::before { opacity: 1; }

.compat-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--accent-dim);
    border: 1px solid rgba(0, 212, 170, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.4s;
}

.compat-card:hover .compat-card-icon {
    background: var(--accent);
    color: #070710;
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.2);
}

.compat-card-body {
    flex: 1;
    min-width: 0;
}

.compat-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.compat-card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-weight: 400;
}

.compat-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 50px;
}

.compat-badge-green {
    background: rgba(0, 212, 170, 0.1);
    color: var(--accent);
    border: 1px solid rgba(0, 212, 170, 0.15);
}

.compat-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
}

.compat-note i {
    color: var(--accent);
    font-size: 0.88rem;
    flex-shrink: 0;
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features-section {
    padding: 120px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.features-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* Feature Card — Glassmorphism */
.feature-card {
    border-radius: var(--radius-xl);
    background: rgba(15, 15, 32, 0.6);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s var(--ease-out);
    opacity: 0;
    transform: translateY(28px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: rgba(0, 212, 170, 0.18);
    background: rgba(20, 20, 40, 0.8);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 212, 170, 0.04);
}

.feature-card:hover::before { opacity: 1; }

.feature-card-inner {
    padding: 36px 32px;
    position: relative;
    z-index: 1;
}

.feature-icon-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--accent-dim);
    border: 1px solid rgba(0, 212, 170, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 28px;
    transition: all 0.4s var(--ease-out);
}

.feature-card:hover .feature-icon-wrap {
    background: var(--accent);
    color: #070710;
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.25);
}

.icon-glow {
    position: absolute;
    inset: -12px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover .icon-glow { opacity: 1; }

.feature-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.85;
    font-weight: 400;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.feature-tags span {
    font-size: 0.72rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 5px 14px;
    transition: all 0.3s;
    font-weight: 500;
}

.feature-card:hover .feature-tags span {
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.feature-index {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -1px;
    line-height: 1;
    user-select: none;
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 170, 0.015) 40%, transparent);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.45s var(--ease-out);
    opacity: 0;
    transform: translateY(24px);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item:hover {
    border-color: rgba(0, 212, 170, 0.18);
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 16px;
    background: linear-gradient(to top, rgba(7, 7, 16, 0.92), rgba(7, 7, 16, 0.5) 60%, transparent);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s, transform 0.4s;
}

.gallery-item:hover .gallery-item-label {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   DOWNLOAD
   ================================================ */
.download-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.download-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0, 212, 170, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.download-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.download-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 56px;
    flex-wrap: wrap;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 30px 36px;
    background: rgba(15, 15, 32, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s var(--ease-out);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: left;
}

.download-card:hover {
    border-color: rgba(0, 212, 170, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.download-card.primary {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.07), rgba(0, 212, 170, 0.02));
    border-color: rgba(0, 212, 170, 0.15);
}

.download-card.primary:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 50px rgba(0, 212, 170, 0.06);
}

.dl-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--accent-dim);
    border: 1px solid rgba(0, 212, 170, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: all 0.3s;
}

.download-card:hover .dl-card-icon {
    background: var(--accent);
    color: #070710;
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.2);
}

.dl-card-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dl-card-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.dl-card-arrow {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.download-card:hover .dl-card-arrow {
    color: var(--accent);
    transform: translateX(4px);
}

.download-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.download-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
}

.download-meta i {
    color: var(--accent);
    font-size: 0.88rem;
}

.meta-sep {
    width: 1px;
    height: 14px;
    background: var(--border);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: 0 0 40px;
    border-top: 1px solid var(--border);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 32px 48px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.footer-brand { flex: 1; }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.footer-links-group {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 5px 0;
    transition: color 0.25s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    padding: 0 32px;
}

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
    letter-spacing: 0.5px;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compat-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        gap: 40px;
    }

    .footer-links-group {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: rgba(7, 7, 16, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px 24px 28px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active { display: flex; }

    .nav-link {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-link::after { display: none; }

    .nav-actions { display: none; }
    .nav-toggle { display: block; }

    .hero-title { letter-spacing: -1px; }
    .hero-desc { letter-spacing: 3px; font-size: 0.92rem; }

    .features-section { padding: 80px 0; }
    .features-grid { grid-template-columns: 1fr; padding: 0 20px; }

    .compat-section { padding: 80px 0; }
    .compat-grid { grid-template-columns: 1fr; padding: 0 20px; }

    .gallery-section { padding: 80px 0; }
    .gallery-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 14px; }

    .download-section { padding: 80px 0; }
    .download-cards { flex-direction: column; align-items: center; }
    .download-card { max-width: 100%; width: 100%; }

    .footer-top {
        flex-direction: column;
        gap: 32px;
        padding: 40px 20px 32px;
    }

    .footer-links-group { gap: 32px; }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
