/* Orkestera teaser — brand tokens from the product design system */

:root {
    --purple: #6C5CE7;
    --purple-hover: #5B4DCF;
    --cyan: #2D9CDB;
    --teal: #00C2A8;
    --bg: #0D1117;
    --surface: #131720;
    --border: #1E2535;
    --text: #F5F7FA;
    --text-2: #94A3B8;
    --font-display: 'Sora', system-ui, sans-serif;
    --font-body: 'Noto Sans', system-ui, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background:
        radial-gradient(900px 500px at 80% -10%, rgba(108, 92, 231, 0.16), transparent 60%),
        radial-gradient(700px 500px at 10% 110%, rgba(0, 194, 168, 0.1), transparent 60%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

main {
    flex: 1;
}

.container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    padding: 7rem 0 3rem;
    text-align: center;
}

.mark {
    display: inline-grid;
    place-items: center;
    width: 104px;
    height: 104px;
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 1.75rem;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 7vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.sub {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--purple);
    margin-top: 0.5rem;
}

.lede {
    color: var(--text-2);
    font-size: 1.15rem;
    margin: 1.75rem auto 0;
    max-width: 38em;
}

.points {
    list-style: none;
    margin: 2.25rem auto 0;
    max-width: 34em;
    text-align: left;
    display: grid;
    gap: 0.75rem;
}

.points li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.8rem 1.1rem;
    color: var(--text-2);
    font-size: 0.98rem;
}

.points li::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.7rem;
    background: var(--teal);
}

.points li:nth-child(2)::before { background: var(--cyan); }
.points li:nth-child(3)::before { background: var(--purple); }

.signup {
    padding: 3rem 0 5rem;
    text-align: center;
}

.signup h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
}

.signup > .container > p {
    color: var(--text-2);
    margin-top: 0.4rem;
}

.lead-form {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.lead-form input {
    flex: 1 1 260px;
    max-width: 340px;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.lead-form input:focus {
    outline: 2px solid var(--purple);
    outline-offset: 1px;
}

.btn {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    background: var(--purple);
    border: none;
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(108, 92, 231, 0.35);
    transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover {
    background: var(--purple-hover);
    transform: translateY(-1px);
}

.form-status {
    display: none;
    margin: 1rem auto 0;
    max-width: 34em;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-status.success {
    display: block;
    background: rgba(0, 194, 168, 0.12);
    border: 1px solid var(--teal);
    color: #7ce8d8;
}

.form-status.error {
    display: block;
    background: rgba(108, 92, 231, 0.12);
    border: 1px solid var(--purple);
    color: #c9c1f8;
}

.fine {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #64748B;
}

footer {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-2);
}

footer a {
    color: var(--cyan);
}

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

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}
