/* =========================================================
   Orbitsen — Welcome Bonus Landing
   Tokens
   ========================================================= */
:root {
    --bg-deep: #050b1e;
    --bg-panel: #0a1230;
    --bg-panel-soft: #0c1638;
    --line: rgba(120, 160, 255, 0.16);

    --neon-blue: #29b6ff;
    --neon-blue-soft: rgba(41, 182, 255, 0.35);
    --neon-violet: #7c5cff;

    --red: #ff3b4e;
    --red-dark: #c6112b;

    --gold: #ffc94a;
    --green: #21c55d;

    --text-hi: #f5f8ff;
    --text-mid: #b9c6ea;
    --text-low: #7c88ad;

    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;

    --font-display: "Space Grotesk", "Segoe UI", Arial, sans-serif;
    --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg-deep);
    color: var(--text-hi);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Ambient background glows, echoing the banner lighting */
.glow-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
            radial-gradient(680px 480px at 12% 8%, rgba(41, 182, 255, 0.16), transparent 60%),
            radial-gradient(620px 520px at 88% 18%, rgba(124, 92, 255, 0.14), transparent 60%),
            radial-gradient(900px 600px at 50% 100%, rgba(41, 182, 255, 0.10), transparent 65%);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------------- Top bar ---------------- */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0 0;
}

.mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.02em;
    color: var(--text-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mark .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--neon-blue);
    box-shadow: 0 0 10px 2px var(--neon-blue-soft);
}

.top-links {
    display: flex;
    gap: 22px;
    font-size: 14px;
    color: var(--text-low);
}

.top-links a {
    text-decoration: none;
}

.top-links a:hover {
    color: var(--text-mid);
}

/* ---------------- Hero ---------------- */
.hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    padding: 56px 0 40px;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    color: var(--gold);
    background: rgba(255, 201, 74, 0.08);
    border: 1px solid rgba(255, 201, 74, 0.28);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.kicker svg {
    width: 14px;
    height: 14px;
}

h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(34px, 4.4vw, 52px);
    line-height: 1.06;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

h1 span {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sub {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 46ch;
    margin: 0 0 32px;
}

/* ---------------- Subscribe card ---------------- */
.card {
    background: linear-gradient(180deg, var(--bg-panel-soft), var(--bg-panel));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    max-width: 460px;
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}

.field-label {
    font-size: 13px;
    color: var(--text-low);
    margin-bottom: 8px;
    display: block;
}

.input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.input-row input[type="email"] {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: var(--text-hi);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-body);
}

.input-row input[type="email"]::placeholder {
    color: var(--text-low);
}

.input-row input[type="email"]:focus,
.consent input:focus-visible + .box {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

.btn-primary {
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    background: linear-gradient(180deg, var(--red), var(--red-dark));
    border: none;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 22px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 12px 24px -10px rgba(255, 59, 78, 0.55);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary.submit {
    background: linear-gradient(180deg, var(--green), var(--gold));
    margin: 5px 0;
}

.btn-primary.submit svg {
    transform: rotate(90deg);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px -10px rgba(255, 59, 78, 0.65);
}

.btn-primary:active {
    transform: translateY(0);
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-low);
    line-height: 1.45;
    user-select: none;
}

.consent input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.consent .box {
    flex: none;
    width: 19px;
    height: 19px;
    border-radius: 6px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.consent .box svg {
    width: 12px;
    height: 12px;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.12s ease, transform 0.12s ease;
}

.consent input:checked + .box {
    background: var(--green);
    border-color: var(--green);
}

.consent input:checked + .box svg {
    opacity: 1;
    transform: scale(1);
}

.form-msg {
    min-height: 18px;
    font-size: 13px;
    color: var(--red);
    margin-top: 10px;
}

.disclaimer {
    font-size: 11.5px;
    color: var(--text-low);
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

/* Success state */
.success {
    display: none;
    text-align: center;
    padding: 10px 4px 4px;
}

.success .check {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(33, 197, 93, 0.12);
    border: 1px solid rgba(33, 197, 93, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success .check svg {
    width: 24px;
    height: 24px;
}

.success h3 {
    font-family: var(--font-display);
    font-size: 20px;
    margin: 0 0 8px;
}

.success p {
    font-size: 14px;
    color: var(--text-mid);
    margin: 0;
}

.card.is-success .form-body {
    display: none;
}

.card.is-success .success {
    display: block;
}

/* ---------------- Banner art ---------------- */
.hero-art {
    position: relative;
}

.hero-art img {
    border-radius: var(--radius-lg);
    width: 100%;
    border: 1px solid var(--line);
}

.banner-desktop {
    display: block;
}

.banner-mobile {
    display: none;
}

/* ---------------- Trust strip ---------------- */
.trust {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 28px 0 8px;
    border-top: 1px solid var(--line);
}

.trust .item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-low);
}

.trust .item svg {
    width: 16px;
    height: 16px;
    color: var(--neon-blue);
    flex: none;
}

/* ---------------- Footer ---------------- */
footer {
    margin-top: 50px;
    border-top: 1px solid var(--line);
    padding: 30px 0 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: var(--text-mid);
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-hi);
}

.footer-support {
    text-align: center;
    font-size: 13.5px;
    color: var(--text-low);
    margin-bottom: 10px;
}

.footer-support a {
    color: var(--neon-blue);
    text-decoration: none;
}

.footer-copy {
    text-align: center;
    font-size: 12.5px;
    color: var(--text-low);
}

.footer-age {
    text-align: center;
    font-size: 11.5px;
    color: var(--text-low);
    margin-top: 14px;
    opacity: 0.8;
}

/* ---------------- Legal pages ---------------- */
.legal {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 28px 40px;
    position: relative;
    z-index: 1;
}

.legal .back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    color: var(--text-mid);
    text-decoration: none;
    margin-bottom: 26px;
}

.legal .back:hover {
    color: var(--text-hi);
}

.legal h1 {
    font-size: clamp(28px, 4vw, 36px);
    margin-bottom: 6px;
}

.legal .updated {
    font-size: 13px;
    color: var(--text-low);
    margin-bottom: 36px;
}

.legal h2 {
    font-family: var(--font-display);
    font-size: 19px;
    margin: 34px 0 12px;
    color: var(--text-hi);
}

.legal p,
.legal li {
    font-size: 15px;
    color: var(--text-mid);
    margin: 0 0 14px;
}

.legal ul {
    padding-left: 20px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 30px;
    }

    .hero-art {
        order: -1;
    }

    .banner-desktop {
        display: none;
    }

    .banner-mobile {
        display: block;
    }

    .card {
        max-width: none;
    }

    .top-links {
        display: none;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 18px;
    }

    .card {
        padding: 22px;
    }

    .input-row {
        flex-direction: column;
    }
}
