:root {
    --bg: #493528;
    --fg: rgba(240, 240, 240, 0.95);
    --fg-soft: rgba(240, 240, 240, 0.75);

    --glass: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.14);
    --border: rgba(255, 255, 255, 0.18);

    --btn-bg: rgba(255, 255, 255, 0.95);
    --btn-hover: rgba(255, 255, 255, 1);
    --btn-text: #0a0a0a;
}

* {
    box-sizing: border-box;
    font-family: "Stack Sans Text", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at center, #0a0a0a, #000 65%);
    color: var(--fg);
    overflow-x: hidden;
}

.topbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);

    width: min(700px, calc(100vw - 32px));
    height: 52px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    padding: 10px 12px 10px 24px;
    border-radius: 40px;

    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);

    box-shadow:
        0px 2px 12px rgba(0, 0, 0, 0.10),
        inset 0.5px 0.5px 0.5px rgba(255, 255, 255, 0.8),
        inset -0.5px -0.5px 0.5px rgba(255, 255, 255, 0.8);

    overflow: hidden;
    pointer-events: auto;
    z-index: 10;
}

.logo {
    font-family: "Stack Sans Notch", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 6px 14px;
    justify-self: start;
}

.topbar-links {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.topbar,
.topbar a {
    color: #444;
}

.topbar a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.65);
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.topbar a:hover {
    color: rgba(0, 0, 0, 1);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-items: end;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 10vh;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        url("https://r4.wallpaperflare.com/wallpaper/727/373/131/bocchi-the-rock-cherry-blossom-ultrawide-hd-wallpaper-2a8ee685dbbf81811560d22eec494dce.jpg") center center / cover no-repeat;
    z-index: -1;
}


.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.05),
            rgba(20, 20, 20, 0.9));
}

h1 {
    font-family: "Stack Sans Notch", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0 0 14px;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    letter-spacing: 0.6px;
}

.subtitle {
    max-width: 620px;
    margin: 0 auto 44px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--fg-soft);
}

.socials {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    color: var(--btn-text);
    padding: 8px 20px;
    border-radius: 8px;
    background: var(--btn-bg);
    font-size: 0.9rem;
    font-weight: 500;

    box-shadow:
        0 4px 0px rgba(200, 200, 200, 0.5);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.socials a:hover {
    background: var(--btn-hover);
    transform: translateY(2px);
    box-shadow:
        0 4px 21px rgba(200, 200, 200, 0.2);
}

.socials svg,
.socials img {
    flex-shrink: 0;
}

.pad {
    padding-left: 56px;
}

.copyright {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);

    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.3px;
    pointer-events: none;
}

#coming-soon-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;

    z-index: 5;
}

#coming-soon-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.coming-soon-content {
    text-align: center;
    color: white;
}

.coming-soon-content h2 {
    font-size: 3rem;
    font-family: "Stack Sans Headline", sans-serif;
}

.coming-soon-content p {
    margin-top: 0.5rem;
    opacity: 0.85;
    font-family: "Stack Sans Text", sans-serif;
}
