/* ============================================
   StorMail.dk — tokens
   ============================================ */
:root {
    --color-bg: #FAF9F5;
    --color-surface: #FFFFFF;
    --color-text: #2B2B28;
    --color-text-muted: #6B6A63;
    --color-green: #1F6B4A;
    --color-green-tint: #E7F2EC;
    --color-orange: #DD6B33;
    --color-border: #E4E0D6;

    --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Variable", "Helvetica Neue", sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Variable", "Helvetica Neue", sans-serif;

    --radius: 14px;
    --shadow: 0 1px 2px rgba(43, 43, 40, 0.04), 0 12px 28px -12px rgba(31, 107, 74, 0.18);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(31, 107, 74, 0.08) 1px, transparent 0);
    background-size: 22px 22px;
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* ============================================
   Layout
   ============================================ */
.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 20px 32px;
    gap: 40px;
}

/* ============================================
   Header + stamp signature
   ============================================ */
.site-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stamp {
    width: 112px;
    height: 112px;
    display: block;
    filter: drop-shadow(0 8px 14px rgba(31, 107, 74, 0.28));
    margin-bottom: 4px;
}

.site-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 2.75rem);
    margin: 0;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.site-title .dot {
    color: var(--color-green);
}

.site-subtitle {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.01em;
}

/* ============================================
   Card
   ============================================ */
main {
    width: 100%;
    display: flex;
    justify-content: center;
}

.card {
    width: 100%;
    max-width: 460px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-green);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.card-label {
    align-self: flex-start;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-green);
    background: var(--color-green-tint);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 4px;
}

.card-text {
    margin: 0;
    color: var(--color-text);
    font-size: 1rem;
    max-width: 34ch;
}

.card-text + .card-text {
    color: var(--color-text-muted);
}

/* ============================================
   Button
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 13px 30px;
    background: var(--color-green);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 8px 18px -8px rgba(31, 107, 74, 0.55);
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.btn:hover {
    background-color: #17573B;
    transform: translateY(-1px);
}

.btn:focus-visible {
    outline: 3px solid var(--color-orange);
    outline-offset: 3px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    text-align: center;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    max-width: 90%;
}

.site-footer p {
    margin: 4px 0;
}

.site-footer a {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    border-bottom-color: var(--color-orange);
}

/* ============================================
   Reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

/* ============================================
   Mobile
   ============================================ */
@media (max-width: 480px) {
    .page {
        padding: 40px 16px 24px;
        gap: 32px;
    }

    .card {
        padding: 26px 20px 22px;
    }

    .site-footer {
        font-size: 0.78rem;
    }

    .site-footer p {
        line-height: 1.6;
    }
}