* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    color: #fff;
    background:
        radial-gradient(circle at 15% 10%, rgba(125, 211, 252, .35), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(196, 181, 253, .30), transparent 30%),
        radial-gradient(circle at 50% 95%, rgba(52, 211, 153, .20), transparent 30%),
        linear-gradient(135deg, #07111f, #111827 55%, #020617);
}

a {
    color: inherit;
    text-decoration: none;
}

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
    gap: 12px;
    flex-wrap: wrap;
}

.brand {
    font-weight: 800;
    letter-spacing: -0.04em;
    font-size: 24px;
}

.glass {
    background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 30px 80px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.20);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 32px;
}

.card {
    padding: 28px;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: stretch;
}

h1 {
    font-size: clamp(36px, 6vw, 72px);
    letter-spacing: -0.07em;
    line-height: .9;
    margin: 0 0 18px;
}

h2 {
    margin: 0 0 16px;
    font-size: 28px;
    letter-spacing: -0.04em;
}

p {
    color: rgba(255,255,255,.72);
    line-height: 1.6;
}

input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    margin: 8px 0 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.12);
    color: white;
    outline: none;
}

select option {
    color: #111827;
}

input::placeholder, textarea::placeholder {
    color: rgba(255,255,255,.55);
}

button, .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 13px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.22);
    color: white;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.button.primary, button.primary {
    background: linear-gradient(135deg, rgba(59,130,246,.95), rgba(168,85,247,.95));
}

.grid {
    display: grid;
    gap: 18px;
}

.grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.table-wrap {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.table th, .table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    text-align: left;
    color: rgba(255,255,255,.86);
    vertical-align: top;
}

.badge {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    font-size: 13px;
}

.success {
    color: #86efac;
}

.error {
    color: #fca5a5;
}

.code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    word-break: break-all;
    background: rgba(0,0,0,.22);
    padding: 12px;
    border-radius: 16px;
}

@media (max-width: 800px) {
    .hero, .grid.two {
        grid-template-columns: 1fr;
    }
}
