/* ── Base ──────────────────────────────────────────── */
@font-face {
    font-family: SuperBrigade;
    src: url(./SuperBrigade.otf);
}
:root {
    --red:    #AA1700;
    --white:  #FFFFFF;
    --black:  #000000;
    --input-bg: #111111;
    --input-border: #2a2a2a;
}

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

html, body {
    height: 100%;
    background-color: var(--black);
    color: var(--white);
    font-family: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
}

/* ── Layout ────────────────────────────────────────── */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.25rem 4rem;
}

.brand-logo {
    letter-spacing: 0.35em;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.7;
    font-family: SuperBridge, sans-serif;
}

.hero {
    max-width: 640px;
    width: 100%;
    text-align: center;
}

/* ── Headline ──────────────────────────────────────── */
.headline {
    font-size: clamp(2.6rem, 9vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--red);
    line-height: 1;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.subheadline {
    font-size: clamp(1rem, 3.5vw, 1.4rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0.55;
}

/* ── Body copy ─────────────────────────────────────── */
.body-copy {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
}

.body-copy .emphasis {
    display: block;
    margin-top: 1.2rem;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 2.8vw, 1.15rem);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    opacity: 0.9;
}

/* ── Form ──────────────────────────────────────────── */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2.75rem 0;
}

.email-input {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border-radius: 15px;
    border: 1.5px solid var(--input-border);
    background: var(--input-bg);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', Arial, sans-serif;
    letter-spacing: 0.04em;
    outline: none;
    transition: border-color 0.2s;
}

.email-input::placeholder { color: rgba(255,255,255,0.35); }

.email-input:focus {
    border-color: var(--red);
}

.btn-signup {
    width: 100%;
    padding: 1.1rem 1.5rem;
    border-radius: 15px;
    border: none;
    background: var(--red);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Barlow Condensed', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-signup:hover  { background: #c71c00; }
.btn-signup:active { transform: scale(0.98); }

/* ── Closing tagline ───────────────────────────────── */
.closing-line {
    font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
}

/* ── Notif (custom toast — avoids Bootstrap .toast conflict) ── */
.notif-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
}

.notif {
    max-width: 250px;
    background: #111;
    border: 1.5px solid var(--input-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    animation: slideUp 0.3s ease;
}

.notif.notif-success { border-color: var(--red); }
.notif.notif-error   { border-color: #555; }

.notif-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.notif-body { flex: 1; }

.notif-title {
    font-family: 'Barlow Condensed', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.2rem;
}

.notif-success .notif-title { color: var(--red); }
.notif-error   .notif-title { color: #aaa; }

.notif-msg {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0;
}

.notif-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    transition: color 0.15s;
}
.notif-close:hover { color: var(--white); }

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

@keyframes fadeOut {
    to { opacity: 0; transform: translateY(10px); }
}

.notif.hiding {
    animation: fadeOut 0.3s ease forwards;
}

/* ── Divider ───────────────────────────────────────── */
.divider {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin: 2rem auto;
    opacity: 0.6;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 480px) {
    .page-wrapper { padding: 2rem 1rem 3rem; }
}
