:root {
    --bg: #0a0f1e;
    --card: rgba(13, 21, 42, 0.82);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #eef4ff;
    --muted: #9fb0d0;
    --accent: #ffb648;
    --accent-2: #7dd3fc;
    --success: #34d399;
    --error: #fb7185;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(125, 211, 252, 0.12), transparent 24%),
        radial-gradient(circle at right, rgba(255, 182, 72, 0.10), transparent 18%),
        linear-gradient(160deg, #07101f 0%, #081326 45%, #0b1429 100%);
    color: var(--text);
    overflow-x: hidden;
}

.bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
}
.orb-1 {
    width: 280px; height: 280px;
    background: #38bdf8;
    top: 30px; left: -60px;
}
.orb-2 {
    width: 320px; height: 320px;
    background: #f59e0b;
    right: -100px; bottom: 20px;
}

.page {
    width: min(1150px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.hero-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: stretch;
    min-height: calc(100vh - 112px);
}

.hero-copy,
.claim-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pill {
    align-self: flex-start;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--accent-2);
    font-weight: 700;
    letter-spacing: 0.02em;
}

h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.subtext {
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 60ch;
}

.stats-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.stat-box {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--muted);
}

.claim-card {
    display: flex;
    align-items: center;
    padding: 28px;
}

.claim-form {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

input[type="text"] {
    width: 100%;
    padding: 18px 18px;
    font-size: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    outline: none;
    transition: border-color .2s ease, transform .2s ease;
}

input[type="text"]:focus {
    border-color: rgba(125, 211, 252, 0.65);
    transform: translateY(-1px);
}

button {
    width: 100%;
    margin-top: 16px;
    padding: 16px 18px;
    border: 0;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    color: #111827;
    background: linear-gradient(135deg, #ffb648 0%, #ffd26f 100%);
    box-shadow: 0 15px 35px rgba(255, 182, 72, 0.25);
    transition: transform .18s ease, opacity .18s ease;
}

button:hover:not(:disabled) { transform: translateY(-2px); }
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.helper-row {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.92rem;
}

code {
    color: var(--accent-2);
    background: rgba(255,255,255,0.05);
    padding: 2px 8px;
    border-radius: 999px;
}

.message {
    min-height: 52px;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid transparent;
    color: var(--muted);
}

.message.success {
    color: #dcfce7;
    border-color: rgba(52, 211, 153, 0.35);
    background: rgba(52, 211, 153, 0.10);
}

.message.error {
    color: #ffe4e6;
    border-color: rgba(251, 113, 133, 0.35);
    background: rgba(251, 113, 133, 0.10);
}

@media (max-width: 980px) {
    .hero-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy,
    .claim-card {
        padding: 24px;
    }
}
