:root {
    color-scheme: light;
    --bg: #f6f8fb;
    --surface: #ffffff;
    --border: #d8e1e8;
    --text: #17212b;
    --muted: #607080;
    --accent: #0f766e;
    --accent-soft: #dff3ef;
}

* {
    box-sizing: border-box;
}

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

main {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(23, 33, 43, .08);
    overflow: hidden;
}

.header {
    padding: 28px;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-start;
    gap: 20px;
}

.header-content {
    grid-column: 1 / -1;
    grid-row: 1;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

h1 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    letter-spacing: 0;
}

.description {
    max-width: none;
    width: 100%;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

.client-ip {
    width: 100%;
    margin: 28px 0 0;
    color: var(--text);
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
}

.status {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #0b5f58;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.footer {
    padding: 18px 28px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

@media (max-width: 760px) {
    main {
        padding: 24px 0;
    }

    .footer {
        flex-direction: column;
    }

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

    .header-content,
    .status {
        grid-column: 1;
    }

    .status {
        grid-row: 1;
        justify-self: start;
    }

    .header-content {
        grid-row: 2;
    }
}
