:root {
    --bg:        #000000;
    --surface:   #0b0b0d;
    --border:    rgba(255,255,255,0.10);
    --text:      #f2f2f4;
    --muted:     rgba(242,242,244,0.52);
    --red:       #d81f26;
    --red-dim:   rgba(216,31,38,0.16);
    --radius:    4px;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* subtle red glow behind the seal */
body::before {
    content: '';
    position: fixed;
    top: -12vh; left: 50%;
    width: min(70vw, 620px); height: min(70vw, 620px);
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--red-dim) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.wrap {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 72px 24px 48px;
}

/* ---------- hero ---------- */
.hero { text-align: center; margin-bottom: 64px; }

.seal {
    width: 190px; height: 190px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 28px;
    border: 1px solid var(--border);
}

.wordmark {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(38px, 11vw, 60px);
    font-weight: 700;
    letter-spacing: 0.26em;
    text-indent: 0.26em;          /* optical centring for the tracked-out text */
    margin: 0 0 6px;
    line-height: 1;
}

.tagline {
    margin: 0;
    font-size: 12px;
    letter-spacing: 0.42em;
    text-indent: 0.42em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 500;
}

/* ---------- panels ---------- */
.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 28px;
    margin-bottom: 20px;
}

.panel h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.panel p { margin: 0 0 22px; color: rgba(242,242,244,0.78); font-size: 15px; }

/* ---------- status ---------- */
.status-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(216,31,38,0.06);
    border: 1px solid rgba(216,31,38,0.28);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 24px;
}

.status-card strong { display: block; font-size: 14px; font-weight: 500; }
.status-card span   { font-size: 13px; color: var(--muted); }

.dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--red);
    flex: none;
    margin-top: 8px;
    box-shadow: 0 0 0 4px rgba(216,31,38,0.15);
}

/* ---------- cta ---------- */
.cta {
    display: inline-block;
    background: var(--red);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 12px 26px;
    border-radius: var(--radius);
    transition: background 0.18s ease, transform 0.18s ease;
}
.cta:hover { background: #f0272f; transform: translateY(-1px); }

/* ---------- sibling channels ---------- */
.channels { list-style: none; margin: 0; padding: 0; }

.channels li + li { margin-top: 8px; }

.channels a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.18s ease, background 0.18s ease;
}
.channels a:hover { border-color: rgba(216,31,38,0.5); background: rgba(216,31,38,0.05); }

.ch-name { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 500; }
.ch-meta { font-size: 12px; color: var(--muted); }

/* ---------- footer ---------- */
.l32-footer {
    text-align: center;
    padding: 34px 0 12px;
    margin-top: 8px;
    border-top: 1px solid var(--border);
}
.l32-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    letter-spacing: 0.06em;
    transition: color 0.2s;
}
.l32-footer a:hover { color: rgba(255,255,255,0.55); }
.l32-logo { width: 22px; height: 22px; filter: invert(1); opacity: 0.45; }

@media (max-width: 480px) {
    .wrap  { padding: 48px 18px 36px; }
    .seal  { width: 150px; height: 150px; }
    .panel { padding: 24px 20px; }
    .channels a { flex-direction: column; gap: 3px; }
}
