/* ───────────── reset + base ───────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg: #0a0a0a;
    --bg-2: #0f0f14;
    --surface: #161618;
    --surface-2: #1f1f22;
    --border: #26262a;
    --border-2: #2f2f34;

    --text: #e8e8e8;
    --text-2: #a0a0a8;
    --text-3: #6a6a72;

    --green: #2ecc71;
    --green-soft: rgba(46, 204, 113, 0.12);
    --red: #ef5350;
    --red-soft: rgba(239, 83, 80, 0.12);
    --teal: #26c6da;
    --teal-soft: rgba(38, 198, 218, 0.12);
    --violet: #7c5cff;
    --violet-2: #6c5ce7;
    --violet-soft: rgba(124, 92, 255, 0.14);
    --yellow: #f9b115;

    --radius: 14px;
    --radius-lg: 20px;

    --shadow-card: 0 1px 0 rgba(255,255,255,0.03) inset, 0 8px 30px rgba(0,0,0,0.35);
    --shadow-pop: 0 20px 60px rgba(124, 92, 255, 0.2);

    --max-w: 1180px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ───────────── nav ───────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-mark {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff 30%, #b8a3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-mark sup {
    color: var(--violet);
    font-size: 0.55em;
    -webkit-text-fill-color: var(--violet);
    margin-left: 1px;
}
.nav-right { display: flex; align-items: center; gap: 18px; }
/* Language dropdown (white globe) */
.lang-switcher { position: relative; }
.lang-trigger {
    display: inline-flex; align-items: center; gap: 7px;
    background: none; border: none; cursor: pointer;
    color: #fff; font-size: 13px; font-weight: 600;
    padding: 6px 9px; border-radius: 8px;
    transition: background 0.15s;
}
.lang-trigger:hover { background: rgba(255,255,255,0.08); }
.lang-globe { color: #fff; flex-shrink: 0; }
.lang-chevron { opacity: 0.6; transition: transform 0.15s; }
.lang-switcher.open .lang-chevron { transform: rotate(180deg); }
.lang-menu {
    position: absolute; top: calc(100% + 8px); right: 0;
    display: none; flex-direction: column; min-width: 152px;
    background: var(--bg-2, #16161f); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 6px; gap: 2px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.45); z-index: 200;
}
.lang-switcher.open .lang-menu { display: flex; }
.lang-opt {
    background: none; border: none; cursor: pointer; text-align: left;
    color: var(--text-2, #c8c8d0); font-size: 14px; font-weight: 500;
    padding: 9px 12px; border-radius: 8px;
    transition: background 0.12s, color 0.12s;
}
.lang-opt:hover { background: rgba(255,255,255,0.07); color: #fff; }
.lang-opt.active { color: #fff; background: rgba(124,108,255,0.18); }

/* ───────────── buttons ───────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--violet);
    color: white !important;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.15s, box-shadow 0.2s, background 0.15s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(124, 92, 255, 0.35);
}
.btn-primary:hover {
    background: #8a6fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(124, 92, 255, 0.45);
}
/* Coming-soon state for CTAs while beta signup is closed */
.btn-disabled,
.btn-primary.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}
.btn-disabled:hover {
    transform: none;
    box-shadow: none;
    background: var(--violet);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border-2);
    transition: background 0.15s, border-color 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--border-2); }
.btn-large { padding: 14px 24px; font-size: 15px; }
.btn-xl { padding: 18px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; padding: 14px 18px; }

/* ───────────── hero ───────────── */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse 32% 70% at 0% 45%, rgba(124, 92, 255, 0.11), transparent 65%),
        radial-gradient(ellipse 32% 70% at 100% 45%, rgba(124, 92, 255, 0.11), transparent 65%);
}
.hero-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.45fr);
    gap: 72px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 40px;
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero-copy .hero-title { text-align: left; }
.hero-copy .hero-sub { text-align: left; max-width: 560px; }
.hero-visual {
    position: relative;
    width: 100%;
    margin-right: -70px;
    margin-top: -60px;
}
.hero-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}
/* vignette overlay — blends image edges into site bg without cutting pixels */
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(to bottom, var(--bg) 0%, rgba(10, 10, 10, 0) 7%, rgba(10, 10, 10, 0) 93%, var(--bg) 100%),
        linear-gradient(to right, var(--bg) 0%, rgba(10, 10, 10, 0) 14%, rgba(10, 10, 10, 0) 96%, var(--bg) 100%),
        radial-gradient(ellipse 72% 75% at 50% 52%, transparent 60%, var(--bg) 100%);
}
.hero-beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #ffffff;
    background: linear-gradient(90deg, #7c5cff 0%, #5840d6 100%);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(124, 92, 255, 0.35);
}
.hero-beta-badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: betaPulse 2s ease-in-out infinite;
}
@keyframes betaPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--violet);
    background: var(--violet-soft);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 24px;
    border: 1px solid rgba(124, 92, 255, 0.3);
}
.hero-title {
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}
.gradient-text {
    background: linear-gradient(135deg, #b8a3ff 0%, #26c6da 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-sub {
    font-size: 22px;
    color: var(--text-2);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.45;
    font-weight: 400;
}
.hero-sub strong { color: var(--text); font-weight: 700; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; color: var(--text-3); font-size: 13px; margin-bottom: 16px; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-item i { width: 14px; height: 14px; color: var(--text-2); }
.hero-made-in {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-3);
    margin-top: 4px;
}
.hero-made-in .flag { font-size: 16px; }

/* hero — flow proof chip (text-only, no screenshots) */
.hero-flow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 10px 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.03);
}
.flow-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    letter-spacing: -0.005em;
    white-space: nowrap;
}
.flow-pill i { width: 14px; height: 14px; color: var(--text-3); }
.flow-pill-mid { color: var(--text); }
.flow-pill-mid i { color: var(--violet); }
.flow-pill-end {
    color: #d8ffe8;
    background: rgba(46, 204, 113, 0.10);
    border-color: rgba(46, 204, 113, 0.35);
}
.flow-pill-end i { color: var(--green); }
.flow-arrow {
    display: inline-flex;
    align-items: center;
    color: var(--text-3);
}
.flow-arrow i { width: 14px; height: 14px; }

/* ───────────── section heads ───────────── */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--violet);
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}
.section-head h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 14px;
}
.section-sub { color: var(--text-2); font-size: 17px; }

/* ───────────── chaos section (problem statement before features) ───────────── */
.chaos-section {
    padding: 120px 0 100px;
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg) 0%, rgba(124, 92, 255, 0.03) 100%);
}
.chaos-section .container {
    max-width: 760px;
    text-align: center;
}
.chaos-lines {
    color: var(--text-3);
    font-size: 22px;
    line-height: 1.7;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin: 0 0 36px;
}
.chaos-lines span {
    display: block;
}
.chaos-punchline {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 720px) {
    .chaos-section { padding: 80px 0 70px; }
    .chaos-lines { font-size: 17px; margin-bottom: 28px; }
    .chaos-punchline { font-size: 28px; }
}

/* ───────────── features ───────────── */
.features { padding: 100px 0; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.panel {
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover { transform: translateY(-3px); border-color: var(--border-2); }
.feature-icon {
    width: 44px; height: 44px;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
}
.feature-icon i { width: 20px; height: 20px; }
.feature-card.green .feature-icon { background: var(--green-soft); color: var(--green); }
.feature-card.red .feature-icon { background: var(--red-soft); color: var(--red); }
.feature-card.teal .feature-icon { background: var(--teal-soft); color: var(--teal); }
.feature-card.violet .feature-icon { background: var(--violet-soft); color: var(--violet); }
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { color: var(--text-2); font-size: 15px; line-height: 1.55; }

/* ───────────── local-first section ───────────── */
.local-section {
    padding: 100px 0;
    background:
        radial-gradient(closest-side at 20% 50%, rgba(38, 198, 218, 0.08), transparent 60%),
        radial-gradient(closest-side at 80% 50%, rgba(124, 92, 255, 0.08), transparent 60%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.local-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 920px;
    margin: 0 auto;
}
.local-icon {
    width: 220px; height: 220px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at 30% 30%, var(--violet-soft) 0%, transparent 70%);
    border: 1px solid var(--border-2);
}
.local-icon i { width: 80px; height: 80px; color: var(--violet); stroke-width: 1.5; }
.local-copy h2 { margin-top: 8px; margin-bottom: 18px; font-size: clamp(28px, 3.5vw, 38px); font-weight: 800; letter-spacing: -0.025em; }
.local-copy > p { color: var(--text-2); font-size: 17px; margin-bottom: 24px; }
.local-bullets { display: flex; flex-direction: column; gap: 12px; }
.bullet { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 15px; }
.bullet i { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* ───────────── who-section (positioning) ───────────── */
.who-section {
    padding: 100px 0;
}
.who-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.who-inner .section-label { margin-bottom: 14px; }
.who-inner h2 {
    font-size: clamp(34px, 4.6vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #fff 0%, #b8a3ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.who-body {
    color: var(--text-2);
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 48px;
}
.who-bullets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}
.who-bullet {
    display: flex;
    gap: 14px;
    padding: 22px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.who-bullet i {
    width: 22px; height: 22px;
    color: var(--violet);
    flex-shrink: 0;
    margin-top: 2px;
}
.who-bullet strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.who-bullet span { display: block; font-size: 14px; color: var(--text-2); line-height: 1.5; }

/* ───────────── how-it-works ───────────── */
.how { padding: 100px 0; border-top: 1px solid var(--border); }
.steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
    max-width: 980px;
    margin: 0 auto;
}
.step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
}
.step-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--violet);
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}
.step-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    background: var(--violet-soft);
    color: var(--violet);
}
.step-icon i { width: 26px; height: 26px; }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.step p { color: var(--text-2); font-size: 14.5px; }
.step-arrow { display: flex; align-items: center; justify-content: center; color: var(--text-3); }
.step-arrow i { width: 24px; height: 24px; }

/* ───────────── pricing ───────────── */
.pricing { padding: 100px 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
}
.price-card {
    position: relative;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
}
.price-card.featured {
    border-color: var(--violet);
    box-shadow: var(--shadow-card), var(--shadow-pop);
}
.price-badge {
    position: absolute;
    top: -12px; right: 24px;
    background: var(--violet);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    border-radius: 999px;
}
.price-name { font-size: 14px; font-weight: 600; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-currency { font-size: 24px; color: var(--text-2); font-weight: 600; }
.price-num { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.price-period { font-size: 16px; color: var(--text-3); font-weight: 500; margin-left: 4px; }
.price-tagline { color: var(--text-2); font-size: 14.5px; margin-bottom: 28px; }
.price-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.price-features li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 14.5px; }
.price-features i { width: 16px; height: 16px; color: var(--green); }
.pricing-foot { text-align: center; margin-top: 32px; color: var(--text-2); font-size: 14px; }
.pricing-foot a { color: var(--violet); font-weight: 600; }

/* ───────────── compare-section ───────────── */
.compare-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}
.compare-table-wrap {
    max-width: 880px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}
.compare-table th, .compare-table td {
    padding: 16px 18px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); font-weight: 600; background: var(--bg-2); }
.compare-table th.us { color: var(--violet); font-weight: 700; }
.compare-table th.us sup { color: var(--violet); }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; padding-left: 24px; }
.compare-table td.us { color: var(--violet); font-weight: 700; background: rgba(124, 92, 255, 0.05); }
.compare-table td i { width: 18px; height: 18px; vertical-align: middle; }
.compare-table td.us i[data-lucide="check"] { color: var(--green); }
.compare-table td:not(.us) i[data-lucide="check"] { color: var(--green); }
.compare-table td i[data-lucide="x"] { color: var(--text-3); opacity: 0.5; }
.compare-table td.partial { color: var(--yellow); font-weight: 500; font-size: 13px; }
.compare-table td.partial i[data-lucide="check"] { color: var(--yellow); }

/* ───────────── download section ───────────── */
.download-section {
    padding: 100px 0;
    background:
        radial-gradient(closest-side at 50% 0%, rgba(124, 92, 255, 0.08), transparent 60%);
    border-top: 1px solid var(--border);
}
.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 820px;
    margin: 0 auto 24px;
}
.download-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 26px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    box-shadow: var(--shadow-card);
}
.download-card:hover {
    transform: translateY(-3px);
    border-color: var(--violet);
    box-shadow: var(--shadow-card), 0 14px 40px rgba(124, 92, 255, 0.18);
}
.download-card.secondary { opacity: 0.92; }
.download-icon {
    width: 64px; height: 64px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-2);
    border-radius: 14px;
    color: var(--text);
}
.download-info { flex: 1; }
.download-platform { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -0.01em; }
.download-meta { font-size: 13px; color: var(--text-3); }
.download-arrow { width: 22px; height: 22px; color: var(--violet); flex-shrink: 0; }
.download-foot { text-align: center; color: var(--text-3); font-size: 13px; margin-top: 16px; }

/* ───────────── signup card (inside download section) ───────────── */
.signup-card {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 28px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border-2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}
.signup-field { margin-bottom: 18px; }
.signup-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.signup-field input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    box-sizing: border-box;
}
.signup-field input:focus {
    outline: none;
    border-color: var(--violet);
    box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.15);
}
.signup-captcha { margin: 0 0 18px; min-height: 65px; }
.signup-foot {
    text-align: center;
    color: var(--text-3);
    font-size: 12.5px;
    margin: 14px 0 0;
}
.signup-result {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.5;
}
.signup-result.success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}
.signup-result.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}
#signup-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ───────────── faq ───────────── */
.faq { padding: 100px 0; border-top: 1px solid var(--border); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-list details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    transition: border-color 0.15s, background 0.15s;
}
.faq-list details[open] { border-color: var(--border-2); background: var(--surface-2); }
.faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: var(--text-3);
    transition: transform 0.2s;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
    color: var(--text-2);
    font-size: 15px;
    margin-top: 14px;
    line-height: 1.6;
}

/* ───────────── final cta ───────────── */
.final-cta {
    padding: 110px 0;
    text-align: center;
    background:
        radial-gradient(closest-side at 50% 50%, rgba(124, 92, 255, 0.18), transparent 70%);
    border-top: 1px solid var(--border);
}
.final-cta h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.final-cta p { color: var(--text-2); font-size: 18px; margin-bottom: 32px; }

/* ───────────── footer ───────────── */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 96px 0 56px;
    color: var(--text-2);
    font-size: 14px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}
.footer-col a { display: block; padding: 4px 0; }
.footer-brand p { margin-top: 12px; color: var(--text-3); max-width: 280px; }
.footer-contact { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-2);
    font-size: 14px;
    transition: color 0.15s;
}
.footer-contact-link:hover { color: var(--text); }
.footer-contact-link i { width: 16px; height: 16px; color: var(--violet); }
.footer-col-title { font-weight: 600; color: var(--text); margin-bottom: 14px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col a { display: block; padding: 4px 0; color: var(--text-2); transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-meta { display: block; padding: 4px 0; color: var(--text-3); font-size: 13px; }
.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 24px 24px 0;
    border-top: 1px solid var(--border);
    color: var(--text-3);
    font-size: 13px;
    text-align: center;
}

/* ───────────── responsive ───────────── */
@media (max-width: 980px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .hero-copy { align-items: center; }
    .hero-copy .hero-title,
    .hero-copy .hero-sub { text-align: center; }
    .hero-copy .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { max-width: 640px; margin: 0 auto; }
}
@media (max-width: 880px) {
    .hero { padding: 60px 0 40px; }
    .hero-flow {
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 18px;
        padding: 10px 12px;
    }
    .feature-grid { grid-template-columns: 1fr; }
    .local-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .local-icon { margin: 0 auto; width: 160px; height: 160px; }
    .local-icon i { width: 60px; height: 60px; }
    .local-bullets { align-items: center; }
    .who-bullets { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 16px; }
    .step-arrow { transform: rotate(90deg); }
    .pricing-grid { grid-template-columns: 1fr; }
    .download-grid { grid-template-columns: 1fr; }
    .compare-table { font-size: 12.5px; }
    .compare-table th, .compare-table td { padding: 12px 10px; }
    .compare-table td:first-child, .compare-table th:first-child { padding-left: 14px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 520px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-trust { gap: 14px; }
    .nav-right { gap: 10px; }
}

/* ───────────── scroll fade-in ───────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.in {
    opacity: 1;
    transform: translateY(0);
}

/* ───────────── hero entrance animation ───────────── */
@keyframes heroRise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroVisualRise {
    from { opacity: 0; transform: translateY(20px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-ctas,
.hero-trust,
.hero-flow {
    opacity: 0;
    animation: heroRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-eyebrow { animation-delay: 0.05s; }
.hero-title   { animation-delay: 0.15s; }
.hero-sub     { animation-delay: 0.28s; }
.hero-ctas    { animation-delay: 0.40s; }
.hero-trust   { animation-delay: 0.52s; }
.hero-flow    { animation-delay: 0.64s; }

.hero-visual {
    opacity: 0;
    animation: heroVisualRise 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.20s forwards;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hero-eyebrow, .hero-title, .hero-sub, .hero-ctas,
    .hero-trust, .hero-flow, .hero-visual {
        opacity: 1;
        animation: none;
    }
    .fade-in { opacity: 1; transform: none; transition: none; }
}

