:root {
    --bg: #0b0b0b;
    /* deep black */
    --accent: #b8860b;
    /* warm gold */
    --accent-dark: #c78f0f;
    --saffron: #ff7f2a;
    --text: #f5f5f5;
    --muted: #bfbfbf;
    --max-width: 960px;
    --light: #fffaf2;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 127, 42, 0.02), transparent), var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    position: relative;
    z-index: 1
}

/* Background video styling */
#bg-video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none
}

.bg-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35));
    z-index: 0;
    pointer-events: none
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    /* padding:48px 24px; */
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    background: var(--bg);
    padding: 24px 14px;
    width: 100%;
}

.logo {
    width: 128px;
    filter: none;
}

.tagline {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 13px
}

.hero {
    width: 100%;
    max-width: var(--max-width);
    text-align: center;
    margin: auto;
    padding: 44px;
    /* background:linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.75)); */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.6); */
    /* border:1px solid rgba(255,255,255,0.04); */
}

.lead {
    font-size: 18px;
    color: var(--muted);
    margin: 0 0 24px
}

.notify {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin: 18px 0
}

.notify input[type="email"] {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.6);
    color: var(--text);
    min-width: 260px;
    font-size: 18px;
    font-weight: 400;
    outline: none;
}

.notify input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5)
}

.notify button {
    background: var(--accent);
    color: #0b0b0b;
    border: none;
    padding: 12px 18px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer
}

.notify button:hover {
    background: var(--accent-dark)
}

.notify-msg {
    min-height: 22px;
    color: var(--accent);
    margin-top: 8px
}

.footer {
    align-self: flex-end;
    margin-top: 24px;
    background: rgba(11, 11, 11, 0.8);
    padding: 10px 16px;
    margin: 0 4px 4px 0;
    border-radius: 100px;
}

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

.social a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px
}

.social-icon {
    width: 24px;
    height: 24px;
    border-radius: 100%;
}

.small {
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 8px
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

@media (max-width:600px) {
    .hero {
        padding: 28px
    }

    .brand-name {
        font-size: 20px
    }

    .countdown {
        gap: 10px
    }

    .countdown div {
        min-width: 56px;
        padding: 10px
    }

    .notify input[type="email"] {
        min-width: 160px
    }
}