/* JetFed coming-soon — palette + type mirror the BETA app (tailwind.config.js).
   brand gold #FEC100 (light #FFD243 / dark #A77C00) on base black #000. */
:root {
    --brand: #FEC100;
    --brand-light: #FFD243;
    --brand-dark: #A77C00;
    --base: #000000;
    --base-200: #171717;
    --ink: #ffffff;
    --muted: rgba(255, 255, 255, 0.62);
}

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

html, body { height: 100%; }

body {
    background: var(--base);
    color: var(--ink);
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Full-bleed sunset-jet hero with a moody dark wash for legibility. */
.stage {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: #000 url('assets/hero.jpg') center / cover no-repeat;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 50% 30%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.78) 60%, rgba(0, 0, 0, 0.94) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.85) 100%);
}

.content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    text-align: center;
    animation: rise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.logo {
    width: 220px;
    height: auto;
    margin: 0 auto 2.5rem;
    filter: drop-shadow(0 2px 18px rgba(0, 0, 0, 0.6));
}

.eyebrow {
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.headline {
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(2.1rem, 6vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: 0.01em;
}

/* Italic serif tag flanked by hairlines — same motif as the app's <Hero>. */
.tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.6rem auto 0;
    max-width: 520px;
}
.tagline p {
    font-family: 'PT Serif', Georgia, serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--muted);
    white-space: nowrap;
}
.rule { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.28); }

.lede {
    margin: 2rem auto 0;
    max-width: 560px;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--muted);
}
.lede strong { color: var(--ink); font-weight: 600; }

/* Email capture (Mailchimp) */
.signup { margin-top: 2.6rem; }
.signup-label {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.9rem;
}
.signup-row {
    display: flex;
    gap: 0.6rem;
    max-width: 460px;
    margin: 0 auto;
}
.signup-row input {
    flex: 1;
    min-width: 0;
    padding: 0.85rem 1.15rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    color: var(--ink);
    font: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.signup-row input::placeholder { color: rgba(255, 255, 255, 0.4); }
.signup-row input:focus { border-color: var(--brand); background: rgba(255, 255, 255, 0.09); }
.signup-row button {
    padding: 0.85rem 1.9rem;
    background: var(--brand);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}
.signup-row button:hover:not(:disabled) { background: var(--brand-light); transform: translateY(-1px); }
.signup-row button:disabled { opacity: 0.5; cursor: default; }
.signup-msg { min-height: 1.2rem; margin-top: 0.9rem; font-size: 0.85rem; }
.signup-msg.is-error { color: #FF8A5C; }
.signup-msg.is-success { color: var(--brand-light); }
.signup-msg.is-pending { color: var(--muted); }

.foot {
    position: relative;
    z-index: 1;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}
.foot a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.foot a:hover { color: var(--brand); }
.foot .dot { opacity: 0.5; }

@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .logo { width: 180px; margin-bottom: 2rem; }
    .tagline p { white-space: normal; }
    .signup-row { flex-direction: column; }
    .signup-row input, .signup-row button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .content { animation: none; }
}
