/* ============================================================
   UPLIFT BEYOND — Main Stylesheet
   ============================================================ */

:root {
    --accent:        #6F4CFF;
    --accent-hover:  #8060FF;
    --accent-glow:   rgba(111, 76, 255, 0.38);
    --accent-dim:    rgba(111, 76, 255, 0.1);
    --accent-border: rgba(111, 76, 255, 0.22);
    --teal:          #47FFD2;
    --teal-dim:      rgba(71, 255, 210, 0.06);
    --bg:            #121212;
    --surface:       rgba(255,255,255,0.025);
    --surface-hover: rgba(255,255,255,0.04);
    --border:        rgba(255,255,255,0.1);
    --border-light:  rgba(255,255,255,0.2);
    --text:          #f1f5f9;
    --text-muted: #d8d8d8;
    --text-dim: #aeaeae;
    --nav-h:         62px;
    --max-w:         1280px;
    --pad-x:         56px;
    --ease-expo:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; background: var(--bg); cursor: none; }
a { text-decoration: none; color: inherit; }
kbd {
    font-family: 'Outfit', monospace;
    font-size: 0.72em;
    background: rgba(111,76,255,0.15);
    border: 1px solid var(--accent-border);
    border-radius: 3px;
    padding: 1px 5px;
    color: #9b7eff;
}
code {
    font-family: 'Outfit', monospace;
    font-size: 0.85em;
    color: var(--teal);
    background: var(--teal-dim);
    padding: 1px 5px;
    border-radius: 3px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(111,76,255,0.45); border-radius: 2px; }

/* ===== PAGE VEIL ===== */
.page-veil {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9990;
    pointer-events: none;
}

/* ===== GRAIN OVERLAY ===== */
.grain {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    z-index: 9980;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: grain-anim 0.5s steps(2) infinite;
}
@keyframes grain-anim {
    0%,100%{ transform:translate(0,0) }
    20%    { transform:translate(-2%,-3%) }
    40%    { transform:translate(3%, 1%) }
    60%    { transform:translate(2%,-4%) }
    80%    { transform:translate(-4%, 2%) }
}

/* ===== MOUSE SPOTLIGHT (set via JS) ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        700px circle at var(--mx, 50vw) var(--my, 50vh),
        rgba(111,76,255,0.045),
        transparent 40%
    );
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.15s var(--ease-spring),
                height 0.15s var(--ease-spring),
                background 0.15s ease;
    mix-blend-mode: normal;
}
.cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(111,76,255,0.45);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width  0.35s var(--ease-spring),
                height 0.35s var(--ease-spring),
                border-color 0.25s ease,
                opacity 0.25s ease;
}
body.cursor-hover .cursor-dot  { width: 10px; height: 10px; background: #fff; }
body.cursor-hover .cursor-ring { width: 56px; height: 56px; border-color: rgba(111,76,255,0.8); }
body.cursor-click .cursor-dot  { width: 5px; height: 5px; }
body.cursor-click .cursor-ring { width: 28px; height: 28px; }

/* ===== SECTION LABEL ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.label-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px 1px var(--accent);
    flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 9px;
    cursor: none;
    border: none;
    position: relative;
    overflow: hidden;
    transition: background 0.2s ease;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    border-radius: 9px;
    border: 1px solid var(--border);
    cursor: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-light); background: var(--surface); }
.btn-project { margin-top: 40px; }

/* magnetic wrapper injected by JS */
.magnetic-wrap { display: inline-block; }

/* =================================================
   NAVIGATION
================================================= */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: var(--nav-h);
    transition: background 0.5s ease, border-bottom 0.5s ease, backdrop-filter 0.5s ease;
}
.site-nav.scrolled {
    background: rgba(8,8,8,0.85);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img  { height: 30px; object-fit: contain; display: block; mix-blend-mode: screen; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    font-weight: 400;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: none;
    transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: var(--text); background: var(--surface); }

/* =================================================
   HERO
================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 var(--pad-x);
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 100%)
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}
.orb-1 {
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(111,76,255,0.14) 0%, transparent 65%);
    top: -250px; right: -200px;
}
.orb-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(71,255,210,0.07) 0%, transparent 65%);
    bottom: -150px; left: -100px;
}
.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(111,76,255,0.09) 0%, transparent 65%);
    top: 40%; left: 35%;
    filter: blur(80px);
}
.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 20%, transparent 100%);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-top: calc(var(--nav-h) + 24px);
    padding-bottom: 80px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 52px;
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    visibility: hidden; /* GSAP controls */
}
.eyebrow-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 7px var(--accent);
    flex-shrink: 0;
}
.eyebrow-sep {
    width: 24px; height: 1px;
    background: var(--border-light);
}

/* Hero title */
.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 0.88;
    margin-bottom: 0;
}
.hero-title-row { display: block; }

/* word-level clip container for GSAP reveal */
.word-clip {
    display: block;
    overflow: hidden;
    padding-top: 0.04em;   /* prevent top clipping */
    margin-top: -0.04em;
    padding-bottom: 0.06em; /* prevent bottom clipping */
    margin-bottom: -0.06em;
}

.title-word {
    display: block;
    font-size: clamp(5.5rem, 15vw, 13rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.9;
}
.title-word.solid  { color: var(--text); }
.title-word.hollow {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.38);
    padding-left: clamp(2.5rem, 7vw, 8rem);
}

/* Divider between words */
.title-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 16px 0;
    visibility: hidden; /* GSAP controls */
}
.divider-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(111,76,255,0.6), rgba(111,76,255,0.1));
    transform-origin: left center;
}
.dl-left  { flex: 1; }
.dl-right {
    flex: 1;
    background: linear-gradient(90deg, rgba(111,76,255,0.1), rgba(111,76,255,0.6));
    transform-origin: right center;
}
.divider-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(111,76,255,0.9);
    white-space: nowrap;
    font-weight: 500;
}

/* Hero bottom row */
.hero-footer-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-top: 60px;
    visibility: hidden; /* GSAP controls */
}
.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 360px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: var(--pad-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    visibility: hidden; /* GSAP controls */
}
.hero-scroll-indicator span {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-dim);
    writing-mode: vertical-rl;
}
.scroll-track {
    width: 1px; height: 56px;
    background: rgba(255,255,255,0.06);
    border-radius: 1px;
    overflow: hidden;
    position: relative;
}
.scroll-thumb {
    position: absolute;
    top: -40%;
    width: 100%; height: 35%;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 1px;
    animation: scrollDrop 2s 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
    0%   { top: -40%; }
    100% { top: 140%; }
}

/* =================================================
   PROJECTS SECTION
================================================= */
.projects-section {
    padding: 140px var(--pad-x);
    position: relative;
    z-index: 2;
}
.projects-inner { max-width: var(--max-w); margin: 0 auto; }

.section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
}
.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.025em;
    line-height: 1.18;
}
.section-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.72;
}

/* Generic GSAP reveal helpers */
.gs-reveal   { opacity: 0; }
.gs-reveal-up { opacity: 0; transform: translateY(40px); }

/* ===== PROJECT SPOTLIGHT ===== */
.project-spotlight {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    background: var(--bg);
    opacity: 0;
    transform: translateY(60px) scale(0.985);
}

/* Backdrop */
.spotlight-backdrop { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.backdrop-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.28;
    transform: scale(1.12);
    will-change: transform;
}
.backdrop-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8,8,8,0.96) 0%,
        rgba(8,8,8,0.8)  50%,
        rgba(8,8,8,0.55) 100%
    );
}
.backdrop-glow {
    position: absolute;
    top: -20%; right: -5%;
    width: 55%; height: 55%;
    background: radial-gradient(circle, rgba(111,76,255,0.1) 0%, transparent 60%);
    filter: blur(50px);
}

/* Spotlight content */
.spotlight-content { position: relative; z-index: 1; padding: 52px; }

/* Top bar */
.spotlight-topbar {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    opacity: 0; transform: translateY(20px);
}
.project-badge { display: flex; align-items: center; gap: 12px; }
.badge-num {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 5px 10px;
    border-radius: 5px;
}
.badge-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.status-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 5px #22c55e;
    animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.35} }
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 100px;
    transition: color 0.2s, border-color 0.2s;
}
.tag-free {
    color: rgba(71,255,210,0.75);
    background: rgba(71,255,210,0.04);
    border-color: rgba(71,255,210,0.18);
}

/* Spotlight body */
.spotlight-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Project info */
.spotlight-info { opacity: 0; transform: translateX(-40px); }
.project-logo-wrap { margin-bottom: 24px; }
.project-logo {
    height: 52px;
    object-fit: contain;
    display: block;
    mix-blend-mode: screen;
}
.project-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}
.project-desc {
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.72;
    margin-bottom: 32px;
}

/* Features */
.features-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    transform: translateX(-24px);
}
.feature-icon-wrap {
    width: 30px; height: 30px;
    flex-shrink: 0;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.feature-item strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
}
.feature-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* Screenshots */
.spotlight-screenshots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(50px) perspective(900px) rotateY(-6deg);
    transform-style: preserve-3d;
}
.ss-card {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    cursor: zoom-in;
    transition: border-color 0.25s ease, transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}
.ss-card:hover {
    border-color: var(--accent-border);
    transform: scale(1.015);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.screenshot-main { aspect-ratio: 16 / 9; position: relative; }
.screenshot-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.screenshot-thumb { aspect-ratio: 16 / 9; }
.ss-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ss-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(111,76,255,0.04) 100%);
    pointer-events: none;
}

/* Coming soon */
.coming-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    opacity: 0;
    transform: translateY(40px);
}
.coming-card {
    border-radius: 18px;
    border: 1px dashed rgba(255,255,255,0.13);
    padding: 40px 48px;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: background 0.2s ease, border-color 0.2s ease;
    cursor: default;
}
.coming-card:hover { background: var(--surface-hover); border-color: rgba(255,255,255,0.1); }
.coming-inner { display: flex; align-items: center; gap: 24px; }
.coming-num {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-dim);
    border: 1px dashed rgba(255,255,255,0.15);
    padding: 5px 10px;
    border-radius: 5px;
    flex-shrink: 0;
}
.coming-label {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
    display: block;
}
.coming-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: -0.01em;
}
.coming-hint { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; }
.coming-dots { display: flex; gap: 5px; flex-shrink: 0; }
.coming-dots span {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--text-dim);
    animation: dotPulse 1.8s ease-in-out infinite;
}
.coming-dots span:nth-child(2) { animation-delay: 0.2s; }
.coming-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse { 0%,100%{opacity:.2} 50%{opacity:.8} }
.coming-card-sm .coming-title { font-size: 1.5rem; letter-spacing: -0.025em; }

/* =================================================
   ABOUT SECTION
================================================= */
.about-section {
    padding: 160px var(--pad-x);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

/* Ghost decorative text */
.about-ghost {
    position: absolute;
    bottom: -0.1em;
    right: -0.05em;
    font-size: clamp(10rem, 25vw, 22rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(111,76,255,0.13);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    will-change: transform;
}

.about-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.about-left { opacity: 0; transform: translateY(50px); }
.about-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}
.about-line {
    width: 36px; height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 1px;
    margin-top: 32px;
    transform: scaleX(0);
    transform-origin: left;
}

.about-right { display: flex; flex-direction: column; gap: 0; }
.about-text {
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    opacity: 0;
    transform: translateY(30px);
}
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 80px;
}
.stat-divider {
    width: 1px; height: 40px;
    background: var(--border);
    flex-shrink: 0;
}

/* =================================================
   FOOTER
================================================= */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 28px var(--pad-x);
    position: relative;
    z-index: 2;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-logo-img { height: 22px; mix-blend-mode: screen; opacity: 0.6; }
.footer-copy { font-size: 0.72rem; color: var(--text-dim); letter-spacing: 0.02em; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
    font-size: 0.72rem;
    color: var(--text-dim);
    cursor: none;
    transition: color 0.2s ease;
    letter-spacing: 0.02em;
}
.footer-nav a:hover { color: var(--text-muted); }

/* =================================================
   LIGHTBOX
================================================= */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9970;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}
.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}
.lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    object-fit: contain;
    transform: scale(0.94);
    transition: transform 0.35s var(--ease-spring);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
    position: absolute;
    top: 24px; right: 24px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(255,255,255,0.14); }
.lightbox-close svg { pointer-events: none; }

/* =================================================
   RESPONSIVE
================================================= */
@media (max-width: 1100px) {
    :root { --pad-x: 36px; }
    .spotlight-body   { grid-template-columns: 1fr; gap: 44px; }
    .section-header   { grid-template-columns: 1fr; gap: 16px; }
    .about-inner      { grid-template-columns: 1fr; gap: 48px; }
    .spotlight-screenshots { transform: none; }
}
@media (max-width: 768px) {
    :root { --pad-x: 20px; }
    .title-word { font-size: clamp(3.5rem, 16vw, 6rem); }
    .title-word.hollow { padding-left: 1.5rem; }
    .hero-footer-row { flex-direction: column; align-items: flex-start; gap: 28px; }
    .hero-actions { flex-wrap: wrap; }
    .spotlight-content { padding: 28px; }
    .coming-grid { grid-template-columns: 1fr; }
    .about-stats { flex-wrap: wrap; gap: 20px; }
    .stat-divider { display: none; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .hero-scroll-indicator { display: none; }
    .spotlight-topbar { flex-direction: column; align-items: flex-start; }
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    .btn-primary, .btn-ghost, .nav-link, .footer-nav a { cursor: pointer; }
    .about-ghost { font-size: clamp(6rem, 20vw, 12rem); }
}
