/**
 * Code Credits
 * Project: nixdorf.cloud
 * Owner: Nixdorf
 * Coding Brand: Nixdorf Media
 * Module: Default webserver page
 * File Purpose: Standalone visual styles for the Nixdorf.cloud default page
 * Visibility: public
 * Data Sensitivity: public
 * Rules: UTF-8, no external dependencies
 */

:root {
    --blue: #0093de;
    --blue-dark: #075b88;
    --ink: #10202c;
    --muted: #617583;
    --line: #dbe9f1;
    --page: #f6fbff;
    --surface: #ffffff;
    --display: "Segoe UI", Arial, sans-serif;
    --mono: Consolas, "SFMono-Regular", monospace;
}

* { box-sizing: border-box; }

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 8% 8%, rgba(0, 147, 222, 0.14), transparent 22rem),
        radial-gradient(circle at 92% 84%, rgba(0, 147, 222, 0.1), transparent 25rem),
        var(--page);
    color: var(--ink);
    font-family: var(--display);
}

.page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    width: min(calc(100% - 2rem), 76rem);
    margin: 0 auto;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5.5rem;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: lowercase;
}

.mark {
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 2px solid var(--blue);
    border-radius: 0.75rem;
    color: var(--blue);
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: -0.08em;
}

.server-label {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

main {
    display: grid;
    flex: 1;
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    align-items: center;
    gap: clamp(2rem, 8vw, 8rem);
    padding: clamp(4rem, 11vw, 9rem) 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.25rem;
    color: var(--blue-dark);
    font-family: var(--mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 0.3rem rgba(0, 147, 222, 0.14);
    content: "";
}

h1 {
    max-width: 8ch;
    margin: 0 0 1.5rem;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.lead {
    max-width: 32rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
}

.status-card {
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 1.5rem 4rem rgba(20, 83, 116, 0.1);
    padding: clamp(1.5rem, 4vw, 3rem);
}

.status-card h2 {
    margin: 0 0 1.75rem;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.05em;
}

.status-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line);
    padding: 1rem 0;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.status-line strong {
    color: #247d48;
    font-weight: 600;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line);
    padding: 1.25rem 0 2rem;
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 720px) {
    header { min-height: 4.75rem; }
    .server-label { display: none; }
    main {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 0;
    }
    h1 { font-size: clamp(3.5rem, 19vw, 6rem); }
    footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
