:root {
    --bg: #090a0c;
    --surface: rgba(255, 255, 255, 0.055);
    --border: rgba(255, 255, 255, 0.1);
    --text: #f4f4f2;
    --muted: #a4a6aa;
    --accent: #ffffff;
    --green: #8be28f;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 10%, rgba(255,255,255,0.06), transparent 32%),
        var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.page {
    position: relative;
    width: min(1120px, calc(100% - 48px));
    min-height: 100vh;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.background-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
    opacity: 0.11;
}

.glow-one {
    top: -180px;
    left: -160px;
    background: #ffffff;
}

.glow-two {
    right: -180px;
    bottom: -180px;
    background: #64748b;
}

.navbar {
    padding: 28px 0;
    display: flex;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -0.01em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    font-size: 11px;
    letter-spacing: 0.04em;
}

.hero {
    width: min(820px, 100%);
    margin: auto 0;
    padding: 90px 0 105px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
    color: #c3c5c8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(139,226,143,0.08);
}

h1 {
    margin: 24px 0 24px;
    font-size: clamp(52px, 8vw, 94px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    font-weight: 700;
}

h1 span {
    color: #888b91;
}

.intro {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.actions {
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 650;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-primary {
    color: #0b0b0c;
    background: var(--accent);
    box-shadow: 0 12px 35px rgba(0,0,0,0.24);
}

.button-primary:hover {
    transform: translateY(-2px);
    background: #e7e7e5;
}

.marketplace-note {
    width: min(620px, 100%);
    margin-top: 74px;
    padding: 20px 0 0;
    border-top: 1px solid var(--border);
}

.line {
    display: none;
}

.marketplace-note p {
    margin: 0 0 7px;
    color: #878a8f;
    font-size: 13px;
}

.marketplace-note a {
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.marketplace-note a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0 28px;
    border-top: 1px solid var(--border);
    color: #696c71;
    font-size: 12px;
}

@media (max-width: 700px) {
    .page {
        width: min(100% - 32px, 1120px);
    }

    .navbar {
        padding: 20px 0;
    }

    .hero {
        padding: 72px 0 85px;
    }

    h1 {
        font-size: clamp(48px, 15vw, 72px);
    }

    .intro {
        font-size: 16px;
        line-height: 1.65;
    }

    .footer {
        flex-direction: column;
        gap: 8px;
    }
}
