:root {
    color-scheme: light;

    --page: #f3f6f6;
    --surface: #ffffff;
    --surface-muted: #edf3f2;

    --text: #243434;
    --muted: #647474;

    --primary: #245e5b;
    --primary-dark: #184844;

    --border: #d4dfde;

    --shadow: 0 18px 46px rgba(29, 59, 58, 0.10);
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;

    min-height: 100vh;

    color: var(--text);
    background: var(--page);

    font-family:
            Inter,
            "Segoe UI",
            Arial,
            sans-serif;

    line-height: 1.55;
}


/* =========================================
   SIDE
========================================= */

.home-page {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 100vh;

    padding: 32px;
}


/* =========================================
   HOVEDKORT
========================================= */

.development-card {
    width: min(900px, 100%);

    padding: clamp(28px, 6vw, 54px);

    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: 22px;

    box-shadow: var(--shadow);
}


/* =========================================
   BRAND
========================================= */

.brand {
    display: flex;
    align-items: center;

    gap: 24px;
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 110px;
    height: 110px;

    flex-shrink: 0;
    overflow: hidden;

    background: var(--surface);

    border: 3px solid var(--primary);
    border-radius: 50%;

    box-shadow:
            0 10px 28px rgba(29, 59, 58, 0.12);
}

.brand-mark img {
    display: block;

    width: 90%;
    height: 90%;

    object-fit: contain;
}

.brand-name {
    margin: 0;

    color: var(--primary-dark);

    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 750;
    line-height: 1;

    letter-spacing: -0.04em;
}

.brand-slogan {
    margin: 10px 0 0;

    color: #5d6b6a;

    font-size: clamp(1rem, 2vw, 1.35rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.35;
}


/* =========================================
   UTVIKLINGSMELDING
========================================= */

.development-content {
    margin-top: 44px;
    padding-top: 34px;

    border-top: 1px solid var(--border);
}

.development-label {
    display: inline-block;

    margin-bottom: 10px;
    padding: 7px 11px;

    color: var(--primary-dark);
    background: var(--surface-muted);

    border: 1px solid var(--border);
    border-radius: 999px;

    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.03em;
}

.development-content h2 {
    margin: 0 0 18px;

    color: var(--primary-dark);

    font-size: clamp(1.55rem, 4vw, 2.2rem);
    font-weight: 750;
    line-height: 1.2;
}

.development-content p {
    max-width: 720px;

    margin: 10px 0;

    color: var(--text);

    font-size: 1rem;
}

.development-content p:last-child {
    color: var(--muted);

    font-weight: 600;
}


/* =========================================
   FOOTER
========================================= */

.development-footer {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 34px;
    padding-top: 22px;

    color: var(--muted);

    border-top: 1px solid var(--border);

    font-size: 0.85rem;
}

.status-dot {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    background: var(--primary);

    border-radius: 50%;
}


/* =========================================
   MOBIL
========================================= */

@media (max-width: 650px) {
    .home-page {
        align-items: flex-start;

        padding: 14px 9px 28px;
    }

    .development-card {
        padding: 24px 18px;

        border-radius: 12px;
    }

    .brand {
        gap: 14px;
    }

    .brand-mark {
        width: 72px;
        height: 72px;

        border-width: 2px;
    }

    .brand-name {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .brand-slogan {
        margin-top: 6px;

        font-size: 0.82rem;
        font-weight: 600;
        line-height: 1.2;
    }

    .development-content {
        margin-top: 28px;
        padding-top: 24px;
    }

    .development-content h2 {
        margin-bottom: 14px;
    }

    .development-content p {
        font-size: 0.94rem;
    }

    .development-footer {
        margin-top: 28px;
    }
}


@media (max-width: 420px) {
    .brand {
        align-items: flex-start;
    }

    .brand-mark {
        width: 58px;
        height: 58px;
    }

    .brand-name {
        font-size: 2rem;
    }

    .brand-slogan {
        white-space: normal;
    }
}