/* ─── CSS Variables ─────────────────────────────────── */
:root {
    --bg: #0a0a0a;
    --surface: #111111;
    --border: rgba(255, 255, 255, 0.07);
    --accent: #e8ff00;
    /* electric lime */
    --accent2: #00ffe0;
    /* cyan pop */
    --text: #f0ede6;
    --muted: rgba(240, 237, 230, 0.4);
    --font-hero: "Bebas Neue", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --font-mono: "Space Mono", monospace;
}

/* ─── Reset & Base ──────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}

/* ─── Custom Cursor ─────────────────────────────────── */
.cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        transform 0.08s ease,
        width 0.2s ease,
        height 0.2s ease;
}

.cursor-ring {
    position: fixed;
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition:
        transform 0.18s ease,
        width 0.2s ease,
        height 0.2s ease,
        opacity 0.2s ease;
    opacity: 0.5;
}

body:hover .cursor {
    opacity: 1;
}

/* ─── Grid Overlay ──────────────────────────────────── */
.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* ─── Noise Texture ─────────────────────────────────── */
.noise {
    position: fixed;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}

/* ─── Glow blobs ────────────────────────────────────── */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.18;
    animation: drift 14s ease-in-out infinite alternate;
}

.blob-1 {
    width: 520px;
    height: 520px;
    background: var(--accent);
    top: -150px;
    left: -180px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent2);
    bottom: -120px;
    right: -120px;
    animation-delay: -7s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.08);
    }
}

/* ─── Layout Shell ──────────────────────────────────── */
.page-wrap {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── Top Bar ───────────────────────────────────────── */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 3rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(18px);
    z-index: 100;
    animation: slideDown 0.8s ease both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-mark {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text);
    text-transform: uppercase;
    text-decoration: none;
}

.logo-mark span {
    color: var(--accent);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(232, 255, 0, 0.5);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 5px rgba(232, 255, 0, 0);
    }
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: top;
    padding: 3.5rem 3rem 2.5rem;
    position: relative;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeUp 0.7s 0.3s ease forwards;
}

.hero-headline {
    font-family: var(--font-hero);
    font-size: clamp(5.5rem, 14vw, 13rem);
    line-height: 0.9;
    letter-spacing: -0.01em;
    color: var(--text);
}

.hero-headline .accent-line {
    color: var(--accent);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--muted);
    margin-top: 1.2rem;
    max-width: 480px;
    line-height: 1.7;
}

@keyframes revealLine {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* ─── Info Grid ─────────────────────────────────────── */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    max-width: 820px;
    opacity: 0;
    animation: fadeUp 0.7s 1.05s ease forwards;
}

.info-cell {
    padding: 1.6rem 2rem;
    border-right: 1px solid var(--border);
    position: relative;
}

.info-cell:last-child {
    border-right: none;
}

.info-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.info-value {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

/* CTA cell */
.cta-cell {
    display: flex;
    align-items: center;
    padding: 1.6rem 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0a0a;
    background: var(--accent);
    border: none;
    padding: 0.85rem 1.6rem;
    border-radius: 3px;
    cursor: none;
    text-decoration: none;
    transition:
        background 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
    white-space: nowrap;
}

.cta-btn:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 255, 224, 0.3);
}

.cta-arrow {
    display: inline-block;
    transition: transform 0.2s;
}

.cta-btn:hover .cta-arrow {
    transform: translateX(4px);
}

/* ─── Marquee ───────────────────────────────────────── */
.marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    opacity: 0;
    animation: fadeUp 0.7s 1.4s ease forwards;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--font-hero);
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    text-transform: uppercase;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.marquee-item .dot {
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── Bottom Bar ────────────────────────────────────── */
.bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    border-top: 1px solid var(--border);
    opacity: 0;
    animation: fadeUp 0.7s 1.55s ease forwards;
}

.copyright {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--muted);
}

.tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--muted);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--accent);
}

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 768px) {

    .top-bar,
    .hero,
    .bottom-bar {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .top-bar-right .status-pill {
        display: none;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-cell:nth-child(2) {
        border-right: none;
    }

    .cta-cell {
        grid-column: 1 / -1;
        border-top: 1px solid var(--border);
    }

    .bottom-bar {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-cell {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .info-cell:last-of-type {
        border-bottom: none;
    }

    .hero {
        padding-top: 2rem;
    }
}