@font-face {
    font-family: 'Levrx Sans';
    src: url('bb3ef058b751a6ad-s.p.woff2') format('woff2');
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    font-family: 'Levrx Sans', 'Inter', sans-serif;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top left, #2b0d3a 0%, transparent 35%),
        radial-gradient(circle at bottom right, #0b3a52 0%, transparent 28%),
        linear-gradient(180deg, #090a0f 0%, #11141b 52%, #141817 100%);
}

/* =========================
   CUSTOM CURSOR
========================= */

body::after {
    content: "";
    position: fixed;
    width: 26px;
    height: 26px;
    border: 1.5px solid rgba(255,255,255,0.9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    transform: translate(-50%, -50%);
    backdrop-filter: blur(1px);

    left: var(--cursor-x, -100px);
    top: var(--cursor-y, -100px);

    transition:
        width 0.15s ease,
        height 0.15s ease,
        border-color 0.15s ease,
        background 0.15s ease;
}

body::before {
    content: "";
    position: fixed;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;

    transform: translate(-50%, -50%);

    left: var(--cursor-x, -100px);
    top: var(--cursor-y, -100px);

    box-shadow: 0 0 12px rgba(255,255,255,0.8);
}

/* =========================
   BACKGROUND FX
========================= */

html::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 81, 154, 0.18), transparent 24%),
        radial-gradient(circle at 75% 15%, rgba(68, 194, 255, 0.14), transparent 20%),
        repeating-linear-gradient(
            180deg,
            transparent 0 2px,
            rgba(255,255,255,.02) 2px 3px
        );
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.page-shell {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    padding: 36px 28px 64px;
}

/* =========================
   TOPBAR
========================= */

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
}

.brand {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-decoration: none;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.mobile-menu {
    display: none;
}

/* =========================
   HERO
========================= */

.hero {
    width: 100%;
    padding: 48px 0 20px;
}

.hero-copy {
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 0.78rem;
    color: #82c7ff;
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    margin-bottom: 24px;
}

.subtitle {
    max-width: 620px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #cbd5e1;
    margin-bottom: 32px;
}

/* =========================
   BUTTONS
========================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 22px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #ff3c87 0%, #8f4dff 100%);
    color: white;
    padding: 16px 28px;
}

.primary-btn:hover,
.secondary-btn:hover,
.link-card:hover,
.footer-link:hover {
    transform: translateY(-2px);
}

.secondary-btn {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    padding: 16px 28px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.06);
}

/* =========================
   SERVICE LINKS
========================= */

.service-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    margin-top: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 62px;

    padding: 16px 22px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #ffffff;
    text-decoration: none;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.link-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

/* =========================
   FOOTER
========================= */

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: 14px;
    padding-top: 18px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    color: #9aa6c1;
    font-size: 0.95rem;
}

.footer-links-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 44px;
    min-width: 150px;

    padding: 0 20px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: #ffffff;
    text-decoration: none;

    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.footer-link::after {
    content: '→';
    margin-left: 8px;
}

.footer-link[href^="mailto"]::after {
    content: '✉';
}

.footer-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.footnote {
    color: rgba(255, 255, 255, 0.64);
    white-space: nowrap;
}

/* =========================
   TABLET
========================= */

@media (max-width: 960px) {
    .page-shell {
        padding: 32px 24px 48px;
    }

    .hero {
        padding: 36px 0 20px;
    }

    .service-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 640px) {
    * {
        cursor: auto;
    }

    body::after,
    body::before {
        display: none;
    }

    body {
        background: linear-gradient(180deg, #090a0f 0%, #11141b 100%);
    }

    .page-shell {
        padding: 24px 18px 32px;
    }

    .topbar {
        gap: 12px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .brand {
        font-size: 1rem;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        padding: 8px 12px;
        color: #ffffff;
        font-size: 0.9rem;
    }

    .hero {
        padding: 24px 0 14px;
    }

    h1 {
        font-size: clamp(2.4rem, 10vw, 3.4rem);
    }

    .subtitle {
        font-size: 0.98rem;
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .primary-btn {
        width: 100%;
    }

    .service-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .link-card {
        min-height: 56px;
        padding: 14px 16px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-links-group {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-link {
        flex: 1 1 180px;
    }

    .footnote {
        text-align: left;
    }
}

@media (max-width: 420px) {
    .service-links {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        gap: 12px;
    }

    .footer-link {
        width: 100%;
    }
}

.spotify-card-footer {
    width: 100%;
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
}

.spotify-card-footer .spotify-title {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
}

.spotify-card-footer #spotify-status {
    font-size: 0.95rem;
    color: white;
}