body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 20% 20%, #0b1224, #050914 40%, #01030a);
    color: #e5e7eb;
    margin: 0;
    padding: 2rem;
}

.card {
    max-width: 960px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(12, 18, 32, 0.9), rgba(9, 12, 24, 0.95));
    border: 1px solid #1f2937;
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
    padding: 2.25rem;
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.08), transparent 35%),
                radial-gradient(circle at 80% 10%, rgba(244, 114, 182, 0.06), transparent 30%);
    z-index: 0;
}

.card > * { position: relative; z-index: 1; }

h1 {
    margin-top: 0;
    font-size: 1.9rem;
    letter-spacing: 0.01em;
    color: #f8fafc;
}

.header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    font-size: 0.75rem;
    margin: 0 0 0.35rem 0;
}

.lede {
    color: #cbd5e1;
    max-width: 640px;
    margin-top: 0.35rem;
    line-height: 1.6;
}

.pill {
    background: rgba(14, 116, 144, 0.2);
    border: 1px solid rgba(45, 212, 191, 0.25);
    color: #99f6e4;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
}

.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #1f2937;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.summary-card .label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0 0 0.35rem 0;
}

.summary-card .value {
    margin: 0;
    font-weight: 700;
    color: #e2e8f0;
}

.summary-card .mono {
    font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, Consolas, monospace;
    font-size: 0.95rem;
    word-break: break-all;
}

.summary-card .hint {
    margin: 0.35rem 0 0 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.warn strong {
    display: block;
    margin-top: 0.5rem;
    color: #fecdd3;
}

.warn {
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.35);
    padding: 0.9rem 1rem;
    border-radius: 12px;
    line-height: 1.5;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
}

.data-table td {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #1e293b;
}

.data-table td:first-child {
    color: #cbd5e1;
    width: 40%;
    font-weight: 600;
}

.data-table td:last-child {
    color: #e5e7eb;
}

ul.small, p.small {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

button {
    background: #1e293b;
    border: none;
    color: #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 0.5rem;
}

.button + .button { margin-left: 0.5rem; }

button:hover { background: #293548; }

button.ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #334155;
}

pre {
    background: #0f172a;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #1e293b;
    overflow-x: auto;
    max-height: 320px;
    display: none;
    margin-top: 0.5rem;
    color: #cbd5e1;
}

.actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.status {
    font-size: 0.9rem;
    color: #a5b4fc;
}

footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
}

.small em {
    color: #e5e7eb;
}

.notice {
    background: rgba(251, 146, 60, 0.12);
    color: #fed7aa;
    border: 1px solid rgba(251, 146, 60, 0.35);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin: 0.5rem 0 1rem;
    display: inline-block;
}
