:root {
    --black: #0a0a0a;
    --white: #f5f5f5;
    --grey: #8a8a8a;
    --line: rgba(245, 245, 245, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Subtle animated grain / vignette overlay */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 40%, transparent 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 2;
}

.wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 860px;
    padding: 48px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 44px;
    animation: fadeUp 1.1s ease both;
}

/* Brand */
.brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.logo {
    font-size: 22px;
    letter-spacing: 0.5em;
    font-weight: 700;
    padding-left: 0.5em;
}

.sub {
    font-size: 12px;
    letter-spacing: 0.7em;
    color: var(--grey);
    padding-left: 0.7em;
}

/* Hero */
.eyebrow {
    font-size: 13px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--grey);
    margin-bottom: 18px;
}

.title {
    font-size: clamp(3.2rem, 14vw, 9rem);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: flex;
    flex-direction: column;
}

.title .outline {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--white);
    text-stroke: 1.5px var(--white);
}

.tagline {
    margin: 26px auto 0;
    max-width: 460px;
    color: var(--grey);
    font-size: 15px;
    line-height: 1.7;
}

/* Countdown */
.countdown {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
}

.unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}

.num {
    font-size: clamp(2rem, 7vw, 3.4rem);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.label {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--grey);
}

.sep {
    font-size: clamp(2rem, 7vw, 3.4rem);
    font-weight: 300;
    color: var(--grey);
    line-height: 1;
}

/* Signup */
#notifyForm {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

#notifyForm:focus-within { border-color: var(--white); }

#email {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    padding: 16px 18px;
    font-size: 14px;
    letter-spacing: 0.03em;
}

#email::placeholder { color: var(--grey); }

#notifyForm button {
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 0 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

#notifyForm button:hover { opacity: 0.8; }

.message {
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: 0.03em;
    min-height: 18px;
    color: var(--grey);
}

.message.error { color: #ff6b6b; }
.message.success { color: var(--white); }

/* Footer */
.foot {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    padding-top: 8px;
}

.socials {
    display: flex;
    gap: 28px;
}

.socials a {
    color: var(--grey);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.25s ease;
}

.socials a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.socials a:hover { color: var(--white); }
.socials a:hover::after { width: 100%; }

.copy {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(138, 138, 138, 0.6);
}

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

@media (max-width: 560px) {
    .wrap { gap: 34px; }
    .countdown { gap: 8px; }
    .unit { min-width: 56px; }
    #notifyForm { flex-direction: column; }
    #notifyForm button { padding: 14px; }
}
