/* Scrapless site — hand-written, no build step (prod has no Vite assets). */

:root {
    --bg: #06090f;
    --bg-soft: #0a0f18;
    --card: #0c121d;
    --border: #1a2434;
    --border-soft: #141d2b;
    --text: #e9eff7;
    --muted: #8e9cb0;
    --lime: #b8f24b;
    --green: #3ddc84;
    --cyan: #38e1c6;
    --grad: linear-gradient(90deg, var(--lime), var(--cyan));
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 10px;
    font-weight: 600; font-size: 15px; cursor: pointer;
    border: 1px solid transparent; transition: filter .15s, background .15s;
}
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-primary { background: var(--grad); color: #06130a; }
.btn-primary:hover { filter: brightness(1.1); }
.btn-ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* ---------- nav ---------- */
.nav-wrap {
    position: sticky; top: 0; z-index: 50;
    background: rgba(6, 9, 15, .82); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
}
.nav { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; }
.brand img { border-radius: 8px; }
.nav-links { display: flex; gap: 24px; margin-left: auto; font-size: 14.5px; color: var(--muted); }
.nav-links a:hover { color: var(--text); }

/* ---------- hero ---------- */
.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 54px; font-weight: 800; }
.hero h1 .accent {
    background: var(--grad);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { margin: 20px 0 28px; color: var(--muted); font-size: 17px; max-width: 44ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badges { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.badge-card {
    display: flex; gap: 10px; align-items: center;
    border: 1px solid var(--border); border-radius: 12px;
    background: var(--card); padding: 12px 16px; min-width: 150px;
}
.badge-card .ico { color: var(--green); flex: none; }
.badge-card b { display: block; font-size: 13.5px; }
.badge-card small { color: var(--muted); font-size: 12px; }

.hero-shot {
    border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
    background: var(--bg-soft);
    box-shadow: 0 30px 80px -30px rgba(56, 225, 198, .18);
}
.hero-shot svg { display: block; width: 100%; height: auto; }

/* ---------- sections ---------- */
section { padding: 72px 0; }
.kicker {
    display: block; text-align: center; color: var(--green);
    font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    margin-bottom: 10px;
}
.section-title { text-align: center; font-size: 34px; font-weight: 800; }
.section-sub { text-align: center; color: var(--muted); margin: 12px auto 0; max-width: 56ch; }

.cards { display: grid; gap: 16px; margin-top: 40px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-6 { grid-template-columns: repeat(6, 1fr); }

.card {
    background: var(--card); border: 1px solid var(--border); border-radius: 14px;
    padding: 22px 20px;
}
.card .ico { color: var(--green); margin-bottom: 14px; }
.card h3 { font-size: 16px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 13.5px; }
.card.center { text-align: center; }
.card.center .ico { margin-left: auto; margin-right: auto; }

/* ---------- how it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.step { text-align: center; padding: 0 8px; }
.step .num {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--grad); color: #06130a; font-weight: 700; font-size: 14px;
    display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.step .ring {
    width: 92px; height: 92px; margin: 0 auto 18px; border-radius: 50%;
    border: 1px solid var(--border); background: var(--card);
    display: flex; align-items: center; justify-content: center; color: var(--green);
}
.step h3 { font-size: 16px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 13.5px; }

/* ---------- pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; align-items: stretch; }
.plan {
    background: var(--card); border: 1px solid var(--border); border-radius: 16px;
    padding: 28px 26px; display: flex; flex-direction: column; position: relative;
}
.plan.popular { border-color: var(--green); box-shadow: 0 0 40px -12px rgba(61, 220, 132, .35); }
.plan .flag {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--grad); color: #06130a; font-size: 11.5px; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase; padding: 4px 14px; border-radius: 999px;
    white-space: nowrap;
}
.plan h3 { font-size: 13.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.plan .price { font-size: 42px; font-weight: 800; margin: 10px 0 2px; }
.plan .price small { font-size: 16px; font-weight: 600; color: var(--muted); }
.plan .for { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }
.plan ul { list-style: none; margin: 0 0 26px; display: grid; gap: 10px; }
.plan li { display: flex; gap: 10px; font-size: 14px; align-items: baseline; }
.plan li::before { content: "✓"; color: var(--green); font-weight: 700; flex: none; }
.plan .btn { margin-top: auto; justify-content: center; }

/* ---------- CTA banner ---------- */
.cta-banner {
    border: 1px solid var(--border); border-radius: 18px; background: var(--bg-soft);
    display: flex; align-items: center; gap: 26px; padding: 34px 38px; flex-wrap: wrap;
}
.cta-banner img { width: 64px; height: 64px; border-radius: 14px; flex: none; }
.cta-banner h2 { font-size: 24px; margin-bottom: 6px; }
.cta-banner p { color: var(--muted); font-size: 14.5px; }
.cta-banner .cta-buttons { margin-left: auto; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border-soft); padding: 48px 0 28px; background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; }
.footer h4 { font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.footer-grid a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.footer-grid a:hover { color: var(--text); }
.footer-brand .brand { margin-bottom: 10px; }
.footer-legal { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border-soft); font-size: 13px; }

/* ---------- auth (register) ---------- */
.auth-wrap { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 56px 24px; }
.auth-card {
    width: 100%; max-width: 440px; background: var(--card);
    border: 1px solid var(--border); border-radius: 16px; padding: 36px;
}
.auth-card .brand { justify-content: center; margin-bottom: 22px; display: flex; }
.auth-card h1 { font-size: 24px; text-align: center; margin-bottom: 6px; }
.auth-card .sub { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.field input {
    width: 100%; padding: 11px 14px; border-radius: 10px;
    border: 1px solid var(--border); background: var(--bg);
    color: var(--text); font-size: 15px; outline: none;
}
.field input:focus { border-color: var(--green); }
.field .err { color: #ff8b8b; font-size: 12.5px; margin-top: 5px; }
.auth-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.auth-card .below { text-align: center; color: var(--muted); font-size: 13.5px; margin-top: 20px; }
.alert-err {
    border: 1px solid #5c2430; background: #2a1218; color: #ffb4b4;
    border-radius: 10px; padding: 12px 14px; font-size: 13.5px; margin-bottom: 18px;
}
.trial-note { display: flex; gap: 8px; align-items: baseline; color: var(--muted); font-size: 13px; margin-top: 14px; }
.trial-note::before { content: "✓"; color: var(--green); font-weight: 700; }

/* success page */
.done-steps { margin: 22px 0 6px; display: grid; gap: 14px; }
.done-steps li { display: flex; gap: 12px; font-size: 14.5px; align-items: baseline; list-style: none; }
.done-steps .n {
    flex: none; width: 22px; height: 22px; border-radius: 50%;
    background: var(--grad); color: #06130a; font-size: 12px; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center; transform: translateY(3px);
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 40px; }
    .cards-6 { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
    .plans { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .cta-banner .cta-buttons { margin-left: 0; }
}
@media (max-width: 620px) {
    .cards-3, .cards-6 { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; }
    .hero { padding-top: 48px; }
    .hero h1 { font-size: 34px; }
}
