/* waitlist-v1.css — pre-launch interest capture page */

.waitlist-v1 {
    background: var(--paper-alt);
    color: var(--ink-900);
}

/* ── Hero ─────────────────────────────────────────────────── */
.wl-hero {
    background: var(--ink-900);
    color: var(--paper);
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
}

.wl-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 50% at 18% 22%, rgba(200, 248, 73, 0.10), transparent 70%),
                radial-gradient(50% 50% at 90% 80%, rgba(200, 248, 73, 0.06), transparent 70%);
    pointer-events: none;
}

.wl-hero .container {
    position: relative;
    z-index: 1;
}

.wl-hero-grid {
    display: grid;
    gap: 56px;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
}

@media (max-width: 960px) {
    .wl-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.wl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(200, 248, 73, 0.12);
    border: 1px solid rgba(200, 248, 73, 0.25);
    color: var(--signal);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.wl-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--signal);
    box-shadow: 0 0 0 0 rgba(200, 248, 73, 0.6);
    animation: wlPulse 2.2s infinite;
}

@keyframes wlPulse {
    0%   { box-shadow: 0 0 0 0 rgba(200, 248, 73, 0.55); }
    70%  { box-shadow: 0 0 0 12px rgba(200, 248, 73, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 248, 73, 0); }
}

.wl-hero h1 {
    margin: 28px 0 20px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(40px, 5.4vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--paper);
}

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

.wl-hero p.lede {
    color: rgba(247, 246, 240, 0.78);
    font-size: 17px;
    line-height: 1.55;
    max-width: 560px;
    margin: 0 0 14px;
}

.wl-hero p.lede.muted {
    color: rgba(247, 246, 240, 0.55);
    font-size: 14px;
    margin-bottom: 32px;
}

.wl-hero-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

@media (max-width: 720px) {
    .wl-hero-tiles { grid-template-columns: 1fr; }
}

.wl-tile {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(247, 246, 240, 0.04);
    border: 1px solid rgba(247, 246, 240, 0.08);
}

.wl-tile-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--paper);
}

.wl-tile-copy {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(247, 246, 240, 0.65);
}

/* ── Form card ───────────────────────────────────────────── */
.wl-card {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 24px 60px -28px rgba(10, 18, 31, 0.45),
                0 1px 0 rgba(247, 246, 240, 0.05) inset;
    border: 1px solid rgba(247, 246, 240, 0.06);
}

.wl-card .pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--signal-soft);
    color: var(--signal-ink);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 14px;
}

.wl-card h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    margin: 0 0 12px;
}

.wl-card p.intro {
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 24px;
}

.wl-form { display: flex; flex-direction: column; gap: 20px; }

.wl-field-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.wl-field-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-800);
}

.wl-field-error {
    font-size: 12px;
    color: var(--danger);
    font-weight: 500;
}

.wl-form input[type="email"],
.wl-form input[type="text"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--ink-200);
    border-radius: var(--radius-sm);
    background: var(--paper);
    font: inherit;
    color: var(--ink-900);
    transition: border-color 120ms ease, box-shadow 120ms ease;
}

.wl-form input[type="email"]:focus,
.wl-form input[type="text"]:focus {
    outline: none;
    border-color: var(--ink-900);
    box-shadow: var(--shadow-focus);
}

.wl-roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .wl-roles { grid-template-columns: 1fr; }
}

.wl-role { cursor: pointer; }

.wl-role input { position: absolute; opacity: 0; pointer-events: none; }

.wl-role-card {
    display: block;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--ink-200);
    background: var(--paper);
    transition: border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

.wl-role-card-title {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-900);
}

.wl-role-card-copy {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-500);
}

.wl-role:hover .wl-role-card { border-color: var(--ink-400); }

.wl-role input:checked + .wl-role-card {
    border-color: var(--ink-900);
    background: var(--paper-alt);
    box-shadow: 0 0 0 3px rgba(10, 18, 31, 0.06);
}

.wl-submit {
    width: 100%;
    justify-content: center;
}

.wl-disclaimer {
    margin-top: 16px;
    font-size: 12px;
    color: var(--ink-500);
}

/* ── Success ─────────────────────────────────────────────── */
.wl-success {
    text-align: center;
    padding: 24px 16px 8px;
}

.wl-success-mark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--success);
    color: var(--paper);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.wl-success h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    margin: 0 0 12px;
}

.wl-success p {
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 24px;
}

.wl-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Steps section ───────────────────────────────────────── */
.wl-steps {
    background: var(--paper);
    padding: 88px 0;
}

.wl-steps-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.wl-steps-head h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(30px, 3.6vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ink-900);
    margin: 14px 0 12px;
}

.wl-steps-head p {
    color: var(--ink-500);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

.wl-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) { .wl-step-grid { grid-template-columns: 1fr; } }

.wl-step {
    padding: 28px;
    background: var(--paper);
    border: 1px solid var(--ink-150);
    border-radius: var(--radius-md);
}

.wl-step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--signal);
    color: var(--signal-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 18px;
}

.wl-step h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink-900);
    margin: 0 0 8px;
}

.wl-step p {
    color: var(--ink-500);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* ── CTA band ────────────────────────────────────────────── */
.wl-cta {
    background: var(--paper-alt);
    padding: 88px 0;
}

.wl-cta-card {
    background: var(--ink-900);
    color: var(--paper);
    border-radius: var(--radius-lg);
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wl-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 60% at 20% 0%, rgba(200, 248, 73, 0.08), transparent 70%);
    pointer-events: none;
}

.wl-cta-card > * { position: relative; z-index: 1; }

.wl-cta-card h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--paper);
    margin: 18px 0 14px;
}

.wl-cta-card p {
    color: rgba(247, 246, 240, 0.72);
    font-size: 15px;
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto 28px;
}

.wl-cta .wl-eyebrow {
    background: rgba(200, 248, 73, 0.14);
}
