:root {
    --bg-top: #06070d;
    --bg-bottom: #1a0f16;
    --panel: rgba(17, 15, 23, 0.86);
    --panel-border: rgba(255, 255, 255, 0.08);
    --text: #f6efe8;
    --muted: #c0b3a8;
    --accent: #e16b43;
    --gold: #e9bb70;
    --font-display: "Cinzel", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top, rgba(225, 107, 67, 0.12), transparent 30%),
        linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

a {
    color: inherit;
}

.landing-shell {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 24px 0 40px;
}

.landing-header,
.landing-nav,
.hero-actions,
.auth-form,
.hero-highlights,
.auth-column {
    display: flex;
}

.landing-header {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand-pill,
.eyebrow {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-size: 0.78rem;
}

.landing-nav {
    gap: 18px;
    flex-wrap: wrap;
}

.landing-nav a {
    text-decoration: none;
    color: var(--muted);
}

.landing-main {
    margin-top: 28px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
    gap: 24px;
}

.hero-panel,
.auth-panel {
    border: 1px solid var(--panel-border);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 34%),
        var(--panel);
    backdrop-filter: blur(14px);
}

.hero-panel {
    padding: 34px;
    min-height: 520px;
}

h1,
h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 800;
}

h1 {
    margin-top: 12px;
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    line-height: 0.92;
}

h2 {
    font-size: 1.32rem;
}

.hero-copy,
.panel-copy,
.status-copy,
.hero-highlights {
    color: var(--muted);
    line-height: 1.7;
}

.hero-copy {
    max-width: 42ch;
    margin-top: 20px;
    font-size: 1.02rem;
}

.hero-actions {
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-body);
    cursor: pointer;
}

.hero-button.primary {
    background: linear-gradient(135deg, #bb3f2c, #f07d45);
    color: #fff6ed;
}

.hero-button.ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.full-width {
    width: 100%;
}

.hero-highlights {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.auth-column {
    flex-direction: column;
    gap: 18px;
}

.auth-panel {
    padding: 22px;
}

.auth-form {
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.auth-form label {
    display: grid;
    gap: 8px;
}

.auth-form span {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.auth-form input {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
}

.token-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (max-width: 920px) {
    .landing-shell {
        width: min(100%, calc(100% - 24px));
    }

    .landing-main {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .landing-shell {
        padding-top: 18px;
    }

    .landing-header,
    .token-panel {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-panel,
    .auth-panel {
        padding: 18px;
        border-radius: 22px;
    }

    h1 {
        font-size: clamp(2.6rem, 13vw, 4rem);
    }
}
