:root {
    --bg: #060816;
    --bg-2: #0f172a;
    --panel: rgba(11, 18, 36, 0.74);
    --panel-strong: rgba(15, 23, 42, 0.88);
    --panel-soft: rgba(255, 255, 255, 0.05);
    --panel-border: rgba(255, 255, 255, 0.10);
    --text: #f8fafc;
    --muted: #cbd5e1;
    --muted-2: #94a3b8;
    --accent: #7c3aed;
    --accent-2: #ec4899;
    --accent-3: #22d3ee;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 0% 0%, rgba(124, 58, 237, 0.26), transparent 32%),
        radial-gradient(circle at 100% 15%, rgba(34, 211, 238, 0.18), transparent 25%),
        radial-gradient(circle at 100% 100%, rgba(236, 72, 153, 0.18), transparent 30%),
        linear-gradient(180deg, var(--bg), var(--bg-2));
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.page-shell {
    width: min(var(--max-width), calc(100% - 28px));
    margin: 0 auto;
    padding: 20px 0 52px;
    position: relative;
    z-index: 2;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 0 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.35);
}

.brand-copy {
    display: grid;
    gap: 3px;
}

.brand-title {
    font-size: 1rem;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.8rem;
    line-height: 1;
    color: var(--muted-2);
    font-weight: 600;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid var(--panel-border);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    font-weight: 600;
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-3), var(--accent-2));
}

.glass {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.hero-card,
.form-card,
.status-card {
    border-radius: var(--radius-xl);
    padding: 34px;
    position: relative;
    overflow: hidden;
}

.hero-card::before,
.form-card::before,
.status-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 34%);
    pointer-events: none;
}

.eyebrow,
.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.16);
    color: #e9d5ff;
    border: 1px solid rgba(196, 181, 253, 0.16);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-card h1,
.status-card h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.3rem, 4vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, #fdf2f8, #c4b5fd 45%, #67e8f9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.form-card h2 {
    margin: 16px 0 10px;
    font-size: clamp(1.7rem, 2.8vw, 2.35rem);
    letter-spacing: -0.02em;
}

.lead {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 60ch;
}

.narrow { max-width: 48ch; margin-inline: auto; }

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.mini-chip {
    padding: 10px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: #e2e8f0;
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.stat-card {
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.stat-label {
    color: var(--muted-2);
    font-size: 0.93rem;
    line-height: 1.45;
}

.trust-bar {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}

.trust-icon,
.step-icon,
.status-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(34, 211, 238, 0.22));
    border: 1px solid rgba(255,255,255,0.09);
    font-size: 1.05rem;
}

.trust-item strong,
.step-copy strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
}

.trust-item span,
.card-copy,
.helper-text,
.footer,
.step-copy span,
.status-actions-note,
.form-note,
.form-benefit li,
.fine-print {
    color: var(--muted);
    line-height: 1.65;
}

.form-card {
    align-self: start;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.86), rgba(11, 18, 36, 0.88));
}

.form-card-inner {
    position: relative;
    z-index: 1;
}

.form-benefit {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.form-benefit li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: 12px;
    color: white;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.26);
    margin-top: 2px;
}

.subscribe-form {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.label {
    font-size: 14px;
    font-weight: 700;
    color: #e2e8f0;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted-2);
    font-size: 1rem;
    pointer-events: none;
}

.input {
    width: 100%;
    padding: 16px 18px 16px 46px;
    font-size: 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    outline: none;
    transition: 0.2s ease;
}

.input::placeholder {
    color: #94a3b8;
}

.input:focus {
    border-color: rgba(124, 58, 237, 0.95);
    box-shadow: 0 0 0 5px rgba(124, 58, 237, 0.14);
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 22px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: white;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(124, 58, 237, 0.30);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(124, 58, 237, 0.36);
}

.button.secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: none;
}

.button.secondary:hover {
    box-shadow: none;
}

.helper-text,
.form-note,
.fine-print {
    font-size: 0.94rem;
}

.form-note {
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
}

.info-strip {
    margin-top: 24px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--muted);
}

.info-strip strong {
    color: var(--text);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.step-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
}

.step-copy {
    margin-top: 14px;
}

.single-card-layout {
    min-height: calc(100vh - 160px);
    display: grid;
    place-items: center;
}

.status-card {
    max-width: 820px;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(11, 18, 36, 0.9));
}

.status-card p.lead {
    margin-inline: auto;
}

.status-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 14px;
    border-radius: 24px;
    font-size: 1.6rem;
}

.status-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.flash {
    margin: 0 0 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.12);
}

.flash-error { background: rgba(239, 68, 68, 0.14); }
.flash-success { background: rgba(16, 185, 129, 0.14); }

.footer {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
}

.footer small {
    color: var(--muted-2);
}

.bg-orb {
    position: fixed;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    filter: blur(78px);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.bg-orb-1 {
    top: -100px;
    left: -140px;
    background: #7c3aed;
}

.bg-orb-2 {
    right: -110px;
    bottom: -90px;
    background: #ec4899;
}

.bg-orb-3 {
    top: 32%;
    right: 18%;
    background: #22d3ee;
    width: 260px;
    height: 260px;
    opacity: 0.12;
}

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

    .hero-card,
    .form-card,
    .status-card {
        padding: 28px;
    }

    .trust-bar,
    .steps-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .page-shell {
        width: min(100% - 18px, var(--max-width));
        padding-top: 14px;
        padding-bottom: 34px;
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
        padding-bottom: 14px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .hero-card,
    .form-card,
    .status-card {
        padding: 22px;
        border-radius: 24px;
    }

    .hero-card h1,
    .status-card h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .form-card h2 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .trust-item,
    .step-card,
    .stat-card,
    .feature-item {
        padding: 16px;
    }

    .button,
    .input {
        min-height: 54px;
    }
}
