/* ========================================
   Back Zone — Coming Soon
   ======================================== */

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

:root {
    --bg: #0a0a0c;
    --fg: #f0eee6;
    --fg-muted: #8a8880;
    --accent: #c8ff32;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'DM Sans', -apple-system, sans-serif;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* — Grain overlay — */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* — Top bar — */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2rem 3rem;
    animation: fadeDown 1s ease both;
}

.logo-wrap {
    display: inline-block;
}

.logo {
    height: 36px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

/* — Hero — */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
}

.hero-content {
    max-width: 780px;
}

.eyebrow {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s ease 0.2s both;
}

h1 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-size: clamp(3rem, 8vw, 6.5rem);
}

h1 em {
    font-style: italic;
    color: var(--accent);
}

h1 .line {
    display: block;
}

.line-1 { animation: fadeUp 0.8s ease 0.35s both; }
.line-2 { animation: fadeUp 0.8s ease 0.5s both; }
.line-3 { animation: fadeUp 0.8s ease 0.65s both; }

.dot {
    color: var(--accent);
}

.subtitle {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--fg-muted);
    max-width: 460px;
    margin-top: 2.5rem;
    animation: fadeUp 0.8s ease 0.8s both;
}

.divider {
    width: 48px;
    height: 1px;
    background: var(--fg-muted);
    margin: 2.5rem 0;
    animation: fadeUp 0.8s ease 0.95s both;
}

.contact {
    font-family: var(--sans);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--fg-muted);
    animation: fadeUp 0.8s ease 1.1s both;
}

.contact a {
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.contact a:hover {
    color: var(--accent);
}

/* — Footer — */
.bottombar {
    padding: 2rem 3rem;
    font-family: var(--sans);
    font-size: 0.75rem;
    color: var(--fg-muted);
    letter-spacing: 0.03em;
    animation: fadeUp 0.8s ease 1.3s both;
}

/* — Animations — */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* — Responsive — */
@media (max-width: 768px) {
    .topbar {
        padding: 1.5rem 1.5rem;
    }

    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .logo {
        height: 28px;
    }

    .bottombar {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .eyebrow {
        font-size: 0.7rem;
        margin-bottom: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}
