    :root {
    --bg-deep: #020307;
    --bg-night: #070914;
    --text-main: #f0f3ff;
    --text-muted: #98a0b9;
    --cyan: #44f1ff;
    --blue: #2a6bff;
    --accent-gradient: linear-gradient(115deg, #44f1ff 0%, #2a6bff 40%, #44f1ff 100%);
    --radius-card: 28px;
    --radius-pill: 999px;
    --blur: 18px;
    --shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
    --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    font-size: 16px;
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-canvas {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -2;
}

.bg-radiance {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -10%;
    left: -20%;
    background: radial-gradient(circle, rgba(68, 241, 255, 0.4), transparent 60%);
    filter: blur(120px);
    animation: drift 30s ease-in-out infinite alternate;
    opacity: 0.75;
}

.bg-radiance-secondary {
    top: auto;
    bottom: -15%;
    left: auto;
    right: -20%;
    background: radial-gradient(circle, rgba(42, 107, 255, 0.45), transparent 65%);
    animation-delay: 12s;
}

.bg-noise {
    position: absolute;
    inset: 0;
    mix-blend-mode: screen;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.08)'/%3E%3C/svg%3E");
}

.landing {
    position: relative;
    padding: 3.5rem 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero {
    min-height: calc(100vh - 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.hero-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(68, 241, 255, 0.22), rgba(2, 3, 7, 0.95));
    box-shadow: var(--shadow);
}

.hero-logo img {
    width: 70%;
    height: auto;
    filter: drop-shadow(0 0 18px rgba(68, 241, 255, 0.45));
}

.logo-glow {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(68, 241, 255, 0.7), transparent 70%);
    filter: blur(28px);
    opacity: 0.6;
}

.hero-overline {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 8vw, 4rem);
    line-height: 1.05;
    max-width: 720px;
}

.hero-lede {
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.badge-label,
.badge-domain,
.badge-info {
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.85rem;
}

.badge-label {
    border-color: rgba(68, 241, 255, 0.4);
    color: var(--cyan);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.ghost-link {
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.3s ease, border 0.3s ease;
}

.ghost-link:hover {
    border-color: rgba(68, 241, 255, 0.45);
    background: rgba(68, 241, 255, 0.08);
}

.ghost-link.outline {
    border-color: rgba(42, 107, 255, 0.4);
    color: var(--cyan);
}

.hero-stream {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 640px;
}

.hero-chip {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(7, 9, 18, 0.85);
    padding: 1rem 1.2rem;
    backdrop-filter: blur(12px);
    text-align: left;
}

.hero-chip span {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.hero-chip p {
    margin-top: 0.45rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.beats {
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(8, 10, 18, 0.85);
    padding: 1.6rem;
    overflow: hidden;
}

.beats-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.section-heading {
    margin-bottom: 1.5rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    max-width: 580px;
    line-height: 1.2;
}

.stream {
    background: rgba(7, 8, 18, 0.9);
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    backdrop-filter: blur(var(--blur));
}

.stream-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.stream-card {
    padding: 1.6rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(5, 6, 12, 0.85);
    transition: transform 0.4s ease, border 0.4s ease;
}

.stream-card:hover {
    transform: translateY(-4px);
    border-color: rgba(68, 241, 255, 0.3);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.stream-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    font-family: var(--font-display);
}

.stream-card p {
    color: var(--text-muted);
    line-height: 1.4;
}

.panels {
    padding: 1.5rem;
}

.panel-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.panel-card {
    padding: 1.3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(140deg, rgba(5, 6, 14, 0.95), rgba(8, 12, 23, 0.85));
    position: relative;
    overflow: hidden;
}

.panel-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(68, 241, 255, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.panel-card:hover::after {
    opacity: 1;
}

.panel-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.panel-card h4 {
    font-size: 1.1rem;
    margin: 0.4rem 0;
}

.panel-card p {
    color: var(--text-muted);
}

.layers {
    background: rgba(6, 7, 14, 0.92);
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
}

.layer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.layer-card {
    padding: 1.2rem;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(130deg, rgba(6, 8, 17, 0.95), rgba(12, 16, 28, 0.8));
    box-shadow: inset 0 0 0 1px rgba(68, 241, 255, 0.05);
}

.layer-card h5 {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.72rem;
    color: var(--cyan);
    margin-bottom: 0.4rem;
}

.layer-card p {
    color: var(--text-muted);
    line-height: 1.4;
}

.footer {
    padding: 2rem 1.5rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.footer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: right;
}

[data-animate],
.reveal {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(14px);
}

[data-animate].visible,
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition: opacity 0.9s ease, transform 0.9s ease, filter 0.9s ease;
}

@media (min-width: 768px) {
    .landing {
        padding: 4.5rem 3rem 5rem;
    }

    .hero-stream {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .beats-track {
        flex-direction: row;
        justify-content: space-between;
    }

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

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

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

@media (min-width: 1200px) {
    .landing {
        padding: 5rem 6rem 6rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    [data-animate],
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

@keyframes drift {
    0% {
        transform: translate(-8%, -6%) scale(1);
    }
    100% {
        transform: translate(6%, 8%) scale(1.08);
    }
}
