:root {
    --color-cream-paper: #ffffeb;
    --color-midnight-ink: #1a1a1a;
    --color-white: #ffffff;
    --color-stone-mist: #e4e4d0;
    --color-graphite-veil: #8a8a80;
    --color-smoke: #5f5f59;
    --color-deep-forest-teal: #034f46;
    --color-lavender-whisper: #f0d7ff;
    --radius-control: 14px;
    --radius-card: 32px;
    --radius-pill: 999px;
    --page-max-width: 1200px;
    --shadow-nav: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-card: 0 24px 50px rgba(26, 26, 26, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: radial-gradient(circle at top, rgba(240, 215, 255, 0.3), transparent 24%), var(--color-cream-paper);
    color: var(--color-midnight-ink);
    font-family: "Figtree", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.announcement-bar {
    padding: 12px 20px;
    background: var(--color-deep-forest-teal);
    color: var(--color-white);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.site-nav {
    padding: 16px 20px 0;
}

.nav-shell,
.footer-shell,
.page-shell {
    width: min(var(--page-max-width), calc(100% - 40px));
    margin: 0 auto;
}

.nav-shell {
    padding: 12px 14px;
    border: 1px solid var(--color-stone-mist);
    border-radius: var(--radius-control);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-nav);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo {
    width: auto;
    height: 28px;
}

.nav-actions,
.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-stone-mist);
    background: var(--color-cream-paper);
}

.lang-btn {
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-graphite-veil);
    transition: background 200ms ease, color 200ms ease;
}

.lang-btn.is-active {
    background: var(--color-midnight-ink);
    color: var(--color-white);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: var(--radius-control);
    border: 1px solid var(--color-midnight-ink);
    font-size: 14px;
    font-weight: 600;
}

.button-ghost {
    background: transparent;
}

.teaser-section {
    min-height: calc(100vh - 180px);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 48px;
    align-items: center;
    padding: 72px 0 96px;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-graphite-veil);
}

.teaser-title {
    margin: 0;
    max-width: 8ch;
    font-family: "EB Garamond", "Noto Serif SC", serif;
    font-size: clamp(56px, 9vw, 112px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.teaser-title .muted {
    color: var(--color-graphite-veil);
}

.teaser-status,
.footer-links a,
.footer-mark {
    font-size: 16px;
    line-height: 1.3;
}

.teaser-status {
    margin: 28px 0 0;
    font-weight: 600;
}

.teaser-stage {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame {
    width: min(760px, 100%);
    padding: 28px;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-stone-mist);
    background:
        radial-gradient(circle at top right, rgba(240, 215, 255, 0.95), transparent 28%),
        rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow-card);
}

.blurred-preview {
    width: 100%;
    border-radius: 28px;
    filter: blur(18px) saturate(0.9);
    transform: scale(1.04);
    opacity: 0.9;
}

.orb {
    position: absolute;
    display: grid;
    place-items: center;
    width: 140px;
    height: 140px;
    border-radius: 1600px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.orb-dark {
    top: 30px;
    left: 20px;
    background: var(--color-midnight-ink);
    color: var(--color-white);
}

.orb-lavender {
    right: 12px;
    bottom: 42px;
    background: var(--color-lavender-whisper);
    border: 1px solid var(--color-midnight-ink);
}

.site-footer {
    padding: 0 20px 28px;
}

.footer-shell {
    padding-top: 28px;
    border-top: 1px solid var(--color-stone-mist);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-mark {
    margin: 0;
    font-weight: 600;
}

@media (max-width: 900px) {
    .teaser-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-nav,
    .site-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-shell,
    .page-shell,
    .footer-shell {
        width: calc(100% - 32px);
    }

    .nav-shell,
    .nav-actions,
    .footer-shell,
    .footer-links {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .teaser-section {
        gap: 28px;
        padding: 56px 0 72px;
    }

    .teaser-title {
        max-width: none;
        font-size: clamp(44px, 18vw, 76px);
    }

    .teaser-stage {
        min-height: auto;
        padding-top: 110px;
    }

    .image-frame {
        padding: 18px;
    }

    .orb {
        width: 112px;
        height: 112px;
        font-size: 13px;
    }

    .orb-dark {
        top: 0;
        left: 0;
    }

    .orb-lavender {
        right: 0;
        bottom: auto;
        top: 56px;
    }
}
