:root {
    --black: #050505;
    --dark: #111217;
    --card: rgba(255,255,255,.06);
    --line: rgba(255,255,255,.12);
    --orange: #ff7a1a;
    --red: #ff4242;
    --blue: #00a3ff;
    --cyan: #31e7ff;
    --green: #35d07f;
    --yellow: #ffd166;
    --text: #ffffff;
    --muted: #a9afbd;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--black);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
    min-height: 100vh;
}

.bg-glow:before,
.bg-glow:after {
    content: "";
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    filter: blur(130px);
    opacity: .22;
    z-index: -1;
    pointer-events: none;
}

.bg-glow:before { background: var(--orange); top: -120px; left: -120px; }
.bg-glow:after { background: var(--blue); right: -160px; bottom: 0; }

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5vw;
    background: rgba(5,5,5,.82);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.brand-text {
    display: flex;
    gap: 12px;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.brand-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(90deg, var(--red), var(--orange));
    font-weight: 950;
}

.topbar nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.topbar a {
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: .9rem;
}

.shell {
    width: min(1180px, 92vw);
    margin: 0 auto;
    padding: 44px 0;
}

.hero,
.card {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
    border-radius: 28px;
}

.hero { padding: 42px; overflow: hidden; position: relative; }
.card { padding: 24px; }

.eyebrow {
    display: inline-flex;
    border: 1px solid rgba(255,122,26,.45);
    background: rgba(255,122,26,.12);
    color: var(--orange);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .16em;
}

h1,
h2,
h3 { margin: .35em 0; font-weight: 950; letter-spacing: -.035em; }
h1 { font-size: clamp(2.3rem, 6vw, 5.1rem); line-height: .95; text-transform: uppercase; }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }

.gradient {
    background: linear-gradient(90deg, var(--orange), var(--red), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.muted { color: var(--muted); }
.small { font-size: .88rem; }
.right { text-align: right; }
.section-stack { display: grid; gap: 22px; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.btn,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 16px;
    padding: 13px 18px;
    background: linear-gradient(90deg, var(--red), var(--orange));
    color: white;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-decoration: none;
    cursor: pointer;
}

.btn.secondary,
button.secondary {
    background: rgba(255,255,255,.08);
    border: 1px solid var(--line);
}

.btn.blue,
button.blue {
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    color: #001018;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.08);
    color: white;
    border-radius: 15px;
    padding: 13px 14px;
    font: inherit;
}

option { color: #111217; }
textarea { min-height: 110px; resize: vertical; }

label {
    display: block;
    font-size: .82rem;
    color: var(--muted);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin: 12px 0 7px;
}

.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th,
.table td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.status {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(53,208,127,.14);
    color: var(--green);
    font-weight: 900;
}

.status.pending { background: rgba(255,209,102,.13); color: var(--yellow); }
.status.danger { background: rgba(255,66,66,.13); color: #ff8888; }

.progress {
    height: 12px;
    background: rgba(255,255,255,.09);
    border-radius: 99px;
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    border-radius: 99px;
}

.benefit { display: grid; gap: 10px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.notice {
    border: 1px solid rgba(49,231,255,.35);
    background: rgba(49,231,255,.08);
    padding: 14px;
    border-radius: 16px;
}

.notice.success {
    border-color: rgba(53,208,127,.38);
    background: rgba(53,208,127,.1);
}

.notice.warning {
    border-color: rgba(255,209,102,.38);
    background: rgba(255,209,102,.1);
}

.footer { text-align: center; color: var(--muted); padding: 30px; }

@media(max-width: 900px) {
    .grid-2,
    .grid-3,
    .grid-4 { grid-template-columns: 1fr; }
    .topbar { align-items: flex-start; gap: 12px; flex-direction: column; }
    .hero { padding: 26px; }
}
