:root {
    --paper: #0c1621;
    --ink: #e9f1f8;
    --muted: #9db1c5;
    --accent: #6ea8dd;
    --accent-deep: #325f89;
    --panel: rgba(18, 33, 49, 0.9);
    --line: rgba(183, 204, 229, 0.16);
    --danger: #8d2f23;
    --warning: #c28c3a;
    --ok: #3c8258;
    --shadow: 0 24px 60px rgba(4, 12, 24, 0.34);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(110, 168, 221, 0.18), transparent 28%),
        radial-gradient(circle at bottom right, rgba(50, 95, 137, 0.2), transparent 30%),
        linear-gradient(160deg, #07111b 0%, #102235 52%, #17344d 100%);
}

.bootstrap-shell {
    width: min(980px, calc(100% - 32px));
    margin: 28px auto 42px;
    display: grid;
    gap: 18px;
}

.bootstrap-hero,
.bootstrap-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.bootstrap-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
    gap: 20px;
    padding: 28px;
}

.hero-brand {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.hero-logo {
    width: clamp(76px, 10vw, 104px);
    height: auto;
    object-fit: contain;
}

.eyebrow {
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--muted);
}

h1,
h2 {
    margin: 0;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 0.95;
}

.hero-text,
.subtle,
.status-label {
    color: var(--muted);
}

.hero-text,
.subtle {
    line-height: 1.6;
}

.hero-meta,
.status-grid {
    display: grid;
    gap: 14px;
}

.hero-meta {
    grid-template-columns: 1fr;
}

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

.bootstrap-card {
    padding: 22px 24px;
}

.section-head {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}

.status-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(17, 31, 46, 0.82);
    border: 1px solid var(--line);
}

.status-card-wide {
    grid-column: 1 / -1;
}

.status-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.status-card strong {
    font-size: 1.15rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.bootstrap-form {
    display: grid;
    gap: 16px;
}

.field-stack {
    display: grid;
    gap: 8px;
}

.field-stack span {
    font-size: 0.92rem;
}

.field-stack input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(11, 23, 36, 0.94);
    color: var(--ink);
    font: inherit;
}

.field-stack input:focus {
    outline: 2px solid rgba(110, 168, 221, 0.32);
    outline-offset: 1px;
}

.button-row {
    display: flex;
    justify-content: flex-start;
}

.bootstrap-button {
    appearance: none;
    border: 1px solid rgba(122, 176, 226, 0.28);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #f6fbff;
    padding: 12px 20px;
    font: inherit;
    cursor: pointer;
}

.bootstrap-button[disabled] {
    opacity: 0.6;
    cursor: wait;
}

@media (max-width: 820px) {
    .bootstrap-hero {
        grid-template-columns: 1fr;
    }

    .hero-brand {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .bootstrap-shell {
        width: min(100% - 20px, 100%);
        margin: 10px auto 28px;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }
}
