/* ============================================================
   ASA Cinema - temp-site (V1)
   Aligned with privacy.html / terms.html inline styles
   ============================================================ */

:root {
    --bg: #0b0b0c;
    --bg-elevated: #141416;
    --fg: #ededed;
    --fg-soft: #b8b8b8;
    --muted: #7a7a7a;
    --accent: #ff0045;
    --accent-soft: rgba(255, 0, 69, 0.12);
    --border: #232326;
}

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

html, body {
    background: var(--bg);
    color: var(--fg);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
a:hover { border-bottom-color: var(--accent); }

main {
    flex: 1;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 96px 24px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-head {
    margin-bottom: 0;
}
.wordmark {
    height: 28px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}
.kicker {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 22px;
}

h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

h1 .accent { color: var(--accent); }

.lede {
    font-size: 19px;
    color: var(--fg-soft);
    max-width: 56ch;
    margin-bottom: 48px;
}

/* ========== SIGNUP ========== */

.signup {
    margin-top: 32px;
    margin-bottom: 64px;
    padding: 28px 28px 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.signup h2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
    margin-left: 4px;
}
#signup-form {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
#signup-form input[type="email"] {
    flex: 1 1 220px;
    min-width: 0;
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--fg);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#signup-form input[type="email"]::placeholder { color: var(--muted); }
#signup-form input[type="email"]:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
#signup-form button {
    padding: 12px 20px;
    background: var(--accent);
    color: #fff;
    border: 0;
    border-radius: 14px;
    font: inherit;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.05s ease;
}
#signup-form button:hover { filter: brightness(1.08); }
#signup-form button:active { transform: translateY(1px); }
#signup-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.signup-status {
    min-height: 1.4em;
    margin-top: 12px;
    margin-left: 2px;
    font-size: 14px;
    color: var(--muted);
}
.signup-status.success { color: var(--accent); }
.signup-status.error { color: #ff6b6b; }
.signup-status.pending { color: var(--fg-soft); }

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

/* ========== LINKS ========== */

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.links a {
    font-size: 15px;
    color: var(--fg-soft);
}
.links a:hover { color: var(--accent); }

footer {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
    font-size: 13px;
    color: var(--muted);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lang-switch {
    letter-spacing: 0.04em;
}
.lang-switch a {
    color: var(--fg-soft);
}
.lang-switch a:hover {
    color: var(--accent);
}
.lang-switch [aria-current="true"] {
    color: var(--fg);
}

@media (max-width: 540px) {
    main { padding-top: 64px; }
    .lede { font-size: 17px; }
}
