﻿:root {
    --bg: #0b1410;
    --bg-2: #0e1a13;
    --ink: #eef3ec;
    --ink-dim: #a9bcad;
    --amber: #e7b56a;
    --sage: #8fae6b;
    --line: rgba(231, 181, 106, 0.18);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(1200px 700px at 50% -10%, var(--bg-2), transparent 60%),
        var(--bg);
    overflow: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Soft drifting colour blobs in the background */
.aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    filter: blur(70px);
    opacity: 0.55;
    pointer-events: none;
}

.aurora__blob {
    position: absolute;
    width: 42vmax;
    height: 42vmax;
    border-radius: 50%;
    mix-blend-mode: screen;
}

.aurora__blob--1 {
    background: radial-gradient(circle, rgba(231, 181, 106, 0.55), transparent 65%);
    top: -16vmax;
    left: -10vmax;
    animation: drift1 18s ease-in-out infinite alternate;
}

.aurora__blob--2 {
    background: radial-gradient(circle, rgba(143, 174, 107, 0.5), transparent 65%);
    bottom: -18vmax;
    right: -12vmax;
    animation: drift2 22s ease-in-out infinite alternate;
}

.aurora__blob--3 {
    background: radial-gradient(circle, rgba(86, 132, 109, 0.45), transparent 65%);
    top: 30%;
    right: 20%;
    animation: drift3 26s ease-in-out infinite alternate;
}

@keyframes drift1 { to { transform: translate(8vmax, 6vmax) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-7vmax, -5vmax) scale(1.1); } }
@keyframes drift3 { to { transform: translate(-5vmax, 7vmax) scale(0.9); } }

/* Faint wood-grain / vignette overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.015) 0 2px, transparent 2px 9px),
        radial-gradient(120% 120% at 50% 30%, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

.stage {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 6vw 24px;
}

.card {
    width: min(680px, 100%);
    text-align: center;
    padding: clamp(32px, 6vw, 64px);
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 30px 80px -30px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.brand__mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    filter: drop-shadow(0 6px 14px rgba(231, 181, 106, 0.35));
    animation: sway 6s ease-in-out infinite;
    transform-origin: 50% 90%;
}

.brand__mark svg { width: 100%; height: 100%; }

@keyframes sway {
    0%, 100% { transform: rotate(-4deg); }
    50% { transform: rotate(4deg); }
}

.brand__name {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 600;
    font-size: clamp(20px, 3.4vw, 26px);
    letter-spacing: 0.5px;
    color: var(--ink);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 15px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(231, 181, 106, 0.08);
    color: var(--amber);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 0 0 rgba(231, 181, 106, 0.6);
    animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 181, 106, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(231, 181, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 181, 106, 0); }
}

.headline {
    font-family: "Fraunces", Georgia, serif;
    font-weight: 700;
    font-size: clamp(32px, 6.4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin: 22px 0 18px;
    background: linear-gradient(180deg, #ffffff, #cfe0cd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lede {
    max-width: 50ch;
    margin: 0 auto;
    color: var(--ink-dim);
    font-size: clamp(15px, 2.2vw, 17px);
    line-height: 1.7;
}

.lede strong { color: var(--ink); font-weight: 600; }

.progress {
    position: relative;
    width: min(320px, 80%);
    height: 6px;
    margin: 34px auto 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.progress__fill {
    position: absolute;
    inset: 0;
    width: 45%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sage), var(--amber));
    animation: load 3.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes load {
    0% { transform: translateX(-110%); width: 45%; }
    50% { width: 65%; }
    100% { transform: translateX(360%); width: 45%; }
}

.meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
    color: var(--ink-dim);
    font-size: 13px;
    letter-spacing: 0.3px;
}

.meta__sep { color: var(--amber); opacity: 0.7; }

@media (prefers-reduced-motion: reduce) {
    *, *::after, *::before {
        animation: none !important;
    }
}

