/* === POV — Home — Dark Glass 2026 === */

/* Inter — self-hosted (latin + latin-ext) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 200 700;
    font-display: swap;
    src: url('/static/fonts/inter-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 200 700;
    font-display: swap;
    src: url('/static/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg: #0C0A09;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-border: rgba(255, 255, 255, 0.07);
    --text: #FAF7F2;
    --text-muted: #8A8279;
    --accent: #D4A574;
    --accent-light: #E8D5B7;
    --gold: #C9A96E;
    --glow: rgba(212, 165, 116, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, 'Helvetica Neue', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100dvh;
    overflow: hidden;
}

/* Animated gradient orbs */
.home-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    padding: 2rem;
}

.home-container::before,
.home-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    pointer-events: none;
    animation: float 12s ease-in-out infinite;
}

.home-container::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.3), transparent 70%);
    top: -100px;
    right: -80px;
    animation-delay: -2s;
}

.home-container::after {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.25), transparent 70%);
    bottom: -80px;
    left: -60px;
    animation-delay: -6s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.home-content {
    text-align: center;
    max-width: 480px;
    width: 100%;
    position: relative;
    z-index: 1;
    background: var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 24px 80px rgba(0, 0, 0, 0.4);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.home-eyebrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    font-weight: 500;
}

.home-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 200;
    letter-spacing: -0.03em;
    margin-bottom: 0.6rem;
    background: linear-gradient(135deg, var(--text) 0%, var(--accent-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-date {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.home-divider {
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    margin: 2rem auto;
}

.home-message {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.home-btn {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #0C0A09;
    text-decoration: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 600;
    margin-bottom: 0.8rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px var(--glow);
    letter-spacing: 0.01em;
}

.home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.25);
}

.home-btn:active {
    transform: translateY(0) scale(0.98);
}

.home-btn-secondary {
    display: block;
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--accent);
    text-decoration: none;
    border-radius: 14px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    font-size: 0.9rem;
    font-family: inherit;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-btn-secondary:hover {
    background: rgba(212, 165, 116, 0.06);
    border-color: rgba(212, 165, 116, 0.35);
    transform: translateY(-1px);
}

.home-footer {
    position: fixed;
    bottom: 1.2rem;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

@media (max-width: 480px) {
    .home-title {
        font-size: 2.4rem;
    }
    .home-content {
        padding: 2.5rem 1.8rem;
        border-radius: 22px;
    }
}
