/* ============================================================
   ioJump public site — modern, clean SaaS-style landing page.
   Mobile-first; minimal CSS; system fonts; one accent color.
   ============================================================ */
:root {
    --bg: #ffffff;
    --bg-soft: #f6f7fb;
    --bg-elev: #ffffff;
    --ink: #0f172a;
    --ink-soft: #475569;
    --ink-mute: #64748b;
    --line: #e5e7eb;
    --brand: #6366f1;
    --brand-dark: #4f46e5;
    --brand-soft: #eef2ff;
    --accent: #06b6d4;
    --danger: #dc2626;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, .08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, .12);
    --radius: 14px;
    --radius-sm: 8px;
    --pad: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw + 1rem, 3.5rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 2.5vw + .5rem, 2.25rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }
img, video { max-width: 100%; height: auto; display: block; }

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

/* ===== Header ===== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.85);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--line);
}
.site-header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
}
.brand {
    display: inline-flex; align-items: baseline; gap: 2px;
    color: var(--ink); font-weight: 800; letter-spacing: -0.02em; font-size: 22px;
    text-decoration: none;
}
.brand-mark {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    color: #fff;
    padding: 4px 8px; border-radius: 8px;
    font-weight: 800;
}
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
    padding: 8px 14px; border-radius: 8px;
    color: var(--ink-soft); font-weight: 600; font-size: 14px;
}
.site-nav a:hover { background: var(--bg-soft); color: var(--ink); text-decoration: none; }
.site-nav a.is-active { color: var(--ink); }
.site-nav .nav-cta {
    background: var(--brand); color: #fff; padding: 9px 16px;
}
.site-nav .nav-cta:hover { background: var(--brand-dark); color: #fff; }
.site-nav .nav-cta-secondary { color: var(--ink); }

/* ===== Hero ===== */
.hero {
    padding: 80px 0 56px;
    background:
        radial-gradient(1200px 600px at 90% -10%, var(--brand-soft) 0%, transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(6,182,212,.10) 0%, transparent 60%),
        var(--bg);
}
.hero-grid {
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; } }
.eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--brand-dark); background: var(--brand-soft);
    padding: 5px 12px; border-radius: 999px; font-weight: 600; font-size: 13px;
    margin-bottom: 18px;
}
.hero h1 { color: var(--ink); }
.hero h1 .accent {
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-tagline {
    margin: 14px 0 18px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.hero-tagline .dot {
    color: var(--brand);
    font-weight: 800;
    transform: translateY(-1px);
}
.hero-lead { font-size: 1.125rem; color: var(--ink-soft); max-width: 50ch; }
.hero-cta-row {
    margin-top: 28px;
    display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.btn-link {
    color: var(--brand); text-decoration: none; font-weight: 600;
    padding: 8px 4px;
}
.btn-link:hover { text-decoration: underline; }
.hero-secondary {
    margin-top: 28px; font-size: 0.95rem; color: var(--ink-mute);
}
.hero-secondary strong { color: var(--ink); }

/* ===== Code form card ===== */
.code-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-md);
    max-width: 460px;
}
.code-card h3 {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 1.05rem;
}
.code-card p { margin: 0 0 16px; color: var(--ink-mute); font-size: 14px; }
.code-form { display: flex; flex-direction: column; gap: 12px; }
.code-form .field {
    display: flex; gap: 8px;
}
.code-input {
    width: 100%;
    box-sizing: border-box;
    font: 700 clamp(1.7rem, 7vw, 2.4rem) ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
    letter-spacing: 0.5em;
    text-indent: 0.5em; /* offsets the letter-spacing so the digits look centered */
    text-align: center;
    padding: 16px 12px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--bg-soft);
    color: var(--ink);
    transition: border-color .15s, background .15s, box-shadow .15s;
    -webkit-appearance: none;
    -moz-appearance: textfield;
    caret-color: var(--brand);
}
.code-input::-webkit-outer-spin-button,
.code-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.code-input::placeholder { color: #cbd5e1; }
.code-input:focus {
    outline: none;
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px var(--brand-soft);
}
.code-input.has-error,
.code-input.has-error:focus {
    border-color: #dc2626;
    background: #fef2f2;
    color: #991b1b;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .12);
    animation: code-shake .35s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes code-shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}
@media (prefers-reduced-motion: reduce) { .code-input.has-error { animation: none; } }
.btn {
    appearance: none; border: 0; cursor: pointer;
    font-weight: 700; font-size: 15px;
    padding: 14px 22px; border-radius: 10px;
    transition: transform .05s, background .15s, box-shadow .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-secondary:hover { background: var(--bg-soft); }
.btn-big { padding: 16px 28px; font-size: 16px; }
.cf-turnstile { min-height: 65px; }
.form-error {
    color: var(--danger);
    background: #fef2f2; border: 1px solid #fecaca;
    padding: 10px 12px; border-radius: 8px; font-size: 14px;
    display: none;
}
.form-error.show { display: block; }

/* ===== Hero video placeholder ===== */
.hero-video {
    position: relative;
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(135deg, rgba(99,102,241,.15) 0%, rgba(6,182,212,.10) 100%),
        var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid; place-items: center;
}
.hero-video::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(99,102,241,.18) 0, transparent 35%),
        radial-gradient(circle at 80% 70%, rgba(6,182,212,.18) 0, transparent 40%);
}
.hero-video .play {
    position: relative; z-index: 1;
    width: 84px; height: 84px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    box-shadow: var(--shadow-lg);
    display: grid; place-items: center;
    color: var(--brand-dark);
    font-size: 28px; font-weight: 700;
}
.hero-video .label {
    position: absolute; bottom: 16px; left: 16px; z-index: 1;
    background: rgba(15, 23, 42, .8); color: #fff;
    padding: 6px 12px; border-radius: 999px;
    font-size: 13px; font-weight: 600; letter-spacing: .02em;
}

/* ===== Features ===== */
.section { padding: 72px 0; }
.section-soft { background: var(--bg-soft); }
.section h2 { text-align: center; }
.section-lead {
    text-align: center; max-width: 60ch; margin: 0 auto 40px;
    color: var(--ink-soft); font-size: 1.05rem;
}
.feature-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform .15s, box-shadow .15s;
}
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
a.feature, a.feature:hover { text-decoration: none; color: inherit; }
.feature-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--brand-soft); color: var(--brand-dark);
    display: grid; place-items: center; font-size: 22px;
    margin-bottom: 14px;
}
.feature h3 { color: var(--ink); margin-bottom: 6px; }
.feature p { margin: 0; color: var(--ink-soft); font-size: 15px; }

/* ===== Steps ===== */
.steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
    counter-reset: step;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 26px;
    position: relative;
}
.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute; top: -16px; left: 22px;
    width: 32px; height: 32px;
    background: var(--brand); color: #fff;
    border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 800; font-size: 14px;
    box-shadow: var(--shadow-sm);
}
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; font-size: 15px; }

/* ===== CTA strip =====
 * Flex column with explicit gap so spacing between heading, lede, bullets,
 * button, and fineprint can't collapse or overlap — every child is its own
 * block and the gap controls all vertical rhythm.
 */
.cta-strip {
    margin: 72px auto; max-width: 980px;
    border-radius: var(--radius);
    padding: 48px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 60%, #312e81 100%);
    color: #fff;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}
.cta-strip > * { margin: 0; }
.cta-strip h2 {
    color: #fff;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
}
.cta-strip p { color: rgba(255,255,255,.88); }
.cta-strip .cta-lead {
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 56ch;
}
.cta-strip .cta-bullets {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 460px;
    width: 100%;
    text-align: left;
    color: rgba(255,255,255,.94);
    font-size: 1rem;
    line-height: 1.4;
}
.cta-strip .cta-bullets li { padding-left: 4px; }

.cta-action {
    display: flex;
    justify-content: center;
    width: 100%;
}
.cta-strip .btn-primary {
    display: inline-block;
    background: #fff;
    color: var(--brand-dark);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.2;
}
.cta-strip .btn-primary:hover { background: #f1f5f9; }

.cta-strip .cta-fineprint {
    font-size: .85rem;
    color: rgba(255,255,255,.7);
}

@media (max-width: 600px) {
    .cta-strip { padding: 32px 20px; margin: 48px auto; gap: 16px; }
    .cta-strip .btn-primary {
        display: block;
        white-space: normal;
        padding: 16px 20px;
        width: 100%;
        max-width: 360px;
    }
}

/* ===== Long-form pages ===== */
.legal {
    padding: 56px 0 80px;
    max-width: 760px; margin: 0 auto;
}
.legal h1 { font-size: 2rem; margin-bottom: 8px; }
.legal .updated { color: var(--ink-mute); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 1.35rem; margin: 32px 0 10px; color: var(--ink); }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 20px; }

/* ===== Footer ===== */
.site-footer {
    margin-top: 64px;
    background: #0b1220; color: #cbd5e1;
}
.site-footer .brand { color: #fff; }
.site-footer-inner {
    padding: 56px 0 32px;
    display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px;
}
@media (max-width: 760px) { .site-footer-inner { grid-template-columns: 1fr; gap: 32px; } }
.footer-tagline { color: #94a3b8; margin-top: 10px; max-width: 28ch; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 760px) { .footer-cols { grid-template-columns: 1fr; } }
.footer-col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a { color: #cbd5e1; font-size: 14px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 18px 0;
    color: #64748b; font-size: 13px;
}

/* ===== Beta badge in brand ===== */
.brand-beta {
    margin-left: 8px;
    background: #fef3c7; color: #92400e;
    font-size: 10px; font-weight: 800; letter-spacing: .04em;
    padding: 3px 7px; border-radius: 999px;
    align-self: center;
}
.site-nav .nav-feedback { color: var(--ink-soft); }

/* "Download Agent" — top-nav primary action; sits next to the CTAs and
   needs to read as clearly clickable without overpowering "Create Free
   Account". A soft brand-tint background + brand text does that. */
.site-nav .nav-download {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    padding: 8px 14px;
    border: 1px solid color-mix(in srgb, var(--brand) 28%, transparent);
    font-weight: 700;
}
.site-nav .nav-download:hover {
    background: color-mix(in srgb, var(--brand-soft) 72%, var(--brand) 28%);
    color: var(--brand-dark);
    border-color: color-mix(in srgb, var(--brand) 44%, transparent);
}
.site-nav .nav-download .nav-download-ico {
    font-size: 14px; line-height: 1; transform: translateY(-0.5px);
}
@media (max-width: 760px) {
    .site-nav a[href="/pricing.php"], .site-nav a[href="/compare/"] { display: none; }
    /* Keep Download Agent visible on phones — most marketing visitors
       come from mobile and the install lives on a different device, but
       we still want them to see it exists. Shrink it a bit. */
    .site-nav .nav-download { padding: 7px 11px; font-size: 13px; }
    .site-nav .nav-download span:not(.nav-download-ico) { display: none; }
    .site-nav .nav-download::after { content: "Download"; }
}

/* ===== Download Agent modal ===== */
html.iojd-open { overflow: hidden; }
.iojd { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 24px; }
.iojd[hidden] { display: none; }
.iojd-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.iojd-card {
    position: relative; z-index: 1;
    width: 100%; max-width: 540px;
    background: #fff; border-radius: 16px;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.35), 0 4px 14px rgba(2, 6, 23, 0.18);
    overflow: hidden;
    animation: iojd-pop .14s ease-out;
}
@keyframes iojd-pop { from { opacity: 0; transform: translateY(8px) scale(.985); } to { opacity: 1; transform: none; } }
.iojd-close {
    position: absolute; top: 10px; right: 12px;
    width: 32px; height: 32px; border: 0; background: transparent;
    color: var(--ink-mute); font-size: 24px; line-height: 1; cursor: pointer;
    border-radius: 8px;
}
.iojd-close:hover { background: var(--bg-soft); color: var(--ink); }
.iojd-head { padding: 24px 26px 6px; text-align: center; }
.iojd-head h2 { margin: 0 0 6px; font-size: 22px; color: var(--ink); letter-spacing: -0.01em; }
.iojd-sub { margin: 0; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.iojd-dls { display: flex; flex-direction: column; gap: 9px; padding: 18px 26px 8px; }
.iojd-dl {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 16px; border-radius: 11px;
    border: 1px solid var(--line); background: #fff;
    color: var(--ink); font-weight: 600; font-size: 14.5px;
    text-decoration: none;
    transition: border-color .12s, background .12s, transform .05s;
}
.iojd-dl:hover { border-color: var(--brand); background: var(--brand-soft); }
.iojd-dl:active { transform: translateY(1px); }
.iojd-dl:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.iojd-dl .iojd-ico { font-size: 20px; line-height: 1; }
.iojd-dl .iojd-name { flex: 1; }
.iojd-dl.is-primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff; border-color: var(--brand-dark);
}
.iojd-dl.is-primary:hover { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark) 100%); }
.iojd-rec {
    margin-left: auto; background: rgba(255, 255, 255, 0.22);
    color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
    padding: 3px 10px; border-radius: 999px;
}
.iojd-linux { margin: 8px 26px 0; padding: 14px 16px; background: #0f172a; border-radius: 12px; color: #cbd5e1; }
.iojd-linux h3 { margin: 0 0 6px; color: #f1f5f9; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.iojd-linux p { margin: 4px 0 8px; font-size: 13px; color: #cbd5e1; }
.iojd-linux pre.iojd-cmd { margin: 0; padding: 10px 12px; background: #020617; border: 1px solid #1e293b; border-radius: 8px; overflow-x: auto; }
.iojd-linux pre.iojd-cmd code { color: #a7f3d0; font: 12.5px ui-monospace, Menlo, Consolas, monospace; white-space: nowrap; }
.iojd-note { margin: 14px 26px 22px; padding: 10px 12px; background: var(--bg-soft); border-radius: 9px; font-size: 12.5px; color: var(--ink-soft); }
.iojd-note strong { color: var(--ink); }
@media (max-width: 560px) {
    .iojd { padding: 12px; }
    .iojd-card { border-radius: 14px; }
    .iojd-head { padding: 22px 20px 6px; }
    .iojd-dls { padding: 14px 20px 4px; }
    .iojd-linux { margin: 6px 20px 0; }
    .iojd-note { margin: 12px 20px 18px; }
}

/* ===== Beta banner ===== */
.beta-banner {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
}
.beta-banner-inner {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 8px 16px;
    padding: 11px 24px; font-size: 14px; text-align: center;
}
.beta-banner-tag {
    background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.3);
    padding: 3px 10px; border-radius: 999px; font-weight: 700; font-size: 12px;
}
.beta-banner-text { color: rgba(255,255,255,.95); }
.beta-banner-text strong { color: #fff; }
.beta-banner-cta {
    color: #fff; font-weight: 700; text-decoration: underline; white-space: nowrap;
}
.beta-banner-cta:hover { color: #fff; }

/* ===== Comparison table ===== */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 15px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line); }
.compare-table thead th { background: var(--bg-soft); font-weight: 700; color: var(--ink); }
.compare-table tbody td:first-child, .compare-table thead th:first-child { text-align: left; color: var(--ink); font-weight: 600; }
.compare-table .is-us { background: var(--brand-soft); color: var(--brand-dark); font-weight: 700; }
.compare-table thead th.is-us { background: var(--brand); color: #fff; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-note { margin-top: 16px; font-size: 13px; color: var(--ink-mute); text-align: center; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-wrap h2 { text-align: center; margin-bottom: 28px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0; margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq-item summary { cursor: pointer; padding: 18px 20px; font-weight: 600; color: var(--ink); list-style: none; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 20px; top: 16px; font-size: 20px; color: var(--brand); font-weight: 700; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 20px 18px; margin: 0; color: var(--ink-soft); }

/* ===== Pricing ===== */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 820px; margin: 0 auto; }
@media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; position: relative; }
.price-card.is-featured { border-color: var(--brand); box-shadow: var(--shadow-md); }
.price-flag { position: absolute; top: -12px; left: 32px; background: var(--brand); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.price-card h3 { font-size: 1.3rem; }
.price-amount { font-size: 2.4rem; font-weight: 800; color: var(--ink); margin: 8px 0 2px; letter-spacing: -0.02em; }
.price-amount small { font-size: 1rem; font-weight: 600; color: var(--ink-mute); }
.price-sub { color: var(--ink-mute); font-size: 14px; margin-bottom: 18px; }
.price-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.price-list li { padding-left: 26px; position: relative; color: var(--ink-soft); font-size: 15px; }
.price-list li::before { content: "✔"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }

/* ===== Generic content prose (features/compare pages) ===== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { text-align: left; margin-top: 40px; }
.prose ul { padding-left: 22px; }
.prose li { color: var(--ink-soft); margin-bottom: 8px; }
.page-head { padding: 64px 0 8px; text-align: center; }
.page-head .eyebrow { margin-bottom: 14px; }
.page-head p { max-width: 60ch; margin: 12px auto 0; font-size: 1.1rem; }

/* ============================================================
   Modern-SaaS rewrite (2026-05) — components for the redesigned
   homepage + Quick Assist alternative + Google Ads landing.
   ============================================================ */

/* Trust strip — slim row of trust signals directly under the hero. */
.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    padding: 18px 0;
}
.trust-strip-inner {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 14px 28px; font-size: 13px; color: var(--ink-soft);
}
.trust-chip {
    display: inline-flex; align-items: center; gap: 8px; font-weight: 500;
}
.trust-chip .icon {
    display: inline-grid; place-items: center;
    width: 22px; height: 22px; border-radius: 6px;
    background: var(--brand-soft); color: var(--brand-dark);
    font-size: 12px; font-weight: 700;
}

/* Section eyebrow text (small uppercase tag above a section title). */
.section-eyebrow {
    text-align: center;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Security pillars: 4-up grid of cards, each a "pillar" of trust. */
.security-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px;
}
@media (max-width: 980px) { .security-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .security-grid { grid-template-columns: 1fr; } }
.security-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px;
}
.security-card .pillar-icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
    color: #fff; display: grid; place-items: center;
    font-size: 18px; margin-bottom: 14px;
}
.security-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.security-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* "Who it's for" split: two side-by-side audience callouts. */
.audience-split {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media (max-width: 880px) { .audience-split { grid-template-columns: 1fr; } }
.audience-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px;
}
.audience-card h3 {
    font-size: 1.25rem; color: var(--ink); margin-bottom: 8px;
}
.audience-card .audience-eyebrow {
    color: var(--brand-dark); font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px;
}
.audience-card ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 10px; }
.audience-card li { color: var(--ink-soft); font-size: 15px; padding-left: 26px; position: relative; }
.audience-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--brand); font-weight: 700; }

/* Testimonial placeholders — clearly marked as awaiting real quotes. */
.testimonial-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
    background: #fff; border: 1px dashed var(--line); border-radius: var(--radius);
    padding: 24px; text-align: center; color: var(--ink-mute);
}
.testimonial-card .quote-mark { font-size: 36px; color: #e5e7eb; line-height: 1; }
.testimonial-card .quote { font-size: 14px; margin: 8px 0 12px; line-height: 1.55; }
.testimonial-card .author { font-size: 13px; color: var(--ink-soft); }

/* Demo video frame — bigger, more prominent. */
.demo-wrap {
    max-width: 920px; margin: 0 auto;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(99,102,241,.15) 0%, rgba(6,182,212,.10) 100%);
    aspect-ratio: 16 / 9;
    display: grid; place-items: center;
    position: relative;
}
.demo-wrap .play {
    width: 88px; height: 88px; border-radius: 50%;
    background: rgba(255,255,255,.95);
    color: var(--brand-dark); font-size: 30px; font-weight: 700;
    display: grid; place-items: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
}
.demo-wrap .play:hover { transform: scale(1.05); }
.demo-wrap .caption {
    position: absolute; bottom: 14px; left: 14px;
    background: rgba(15,23,42,.78); color: #fff;
    padding: 6px 12px; border-radius: 999px;
    font-size: 12px; font-weight: 600;
}

/* Compact "ads" landing — minimal layout, single CTA, no nav distractions. */
.ads-shell {
    min-height: 100vh; background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    padding: 32px 16px;
}
.ads-brand-row {
    max-width: 980px; margin: 0 auto 28px;
    display: flex; align-items: center; gap: 10px;
}
.ads-brand { display: inline-flex; align-items: baseline; gap: 2px; }
.ads-card {
    max-width: 980px; margin: 0 auto;
    background: #fff; border: 1px solid var(--line);
    border-radius: 18px; padding: 48px 40px;
    box-shadow: var(--shadow-md);
}
@media (max-width: 600px) { .ads-card { padding: 28px 22px; } }
.ads-card h1 {
    font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px;
}
.ads-card .lead {
    font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; margin-bottom: 28px;
}
.ads-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 18px; font-size: 13px; color: var(--ink-soft); }
.ads-footer {
    max-width: 980px; margin: 28px auto 0;
    text-align: center; font-size: 12px; color: var(--ink-mute);
}
.ads-footer a { color: var(--ink-soft); }

/* ============================================================
   Founding Member Program — gold-trimmed premium hero, offer
   grid with numbered cards, and a top-of-site offer ribbon.
   ============================================================ */

/* Gold accent used throughout the program */
:root {
    --fm-gold:        #f59e0b;
    --fm-gold-dark:   #b45309;
    --fm-gold-soft:   #fffbeb;
}

/* Top-of-site offer ribbon (replaces the old beta banner on the homepage) */
.fm-ribbon {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #312e81 100%);
    color: #fff;
    border-bottom: 1px solid #1e293b;
}
.fm-ribbon-inner {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 8px 18px;
    padding: 12px 24px; font-size: 14px; text-align: center;
}
.fm-ribbon-tag {
    background: var(--fm-gold); color: #1f2937;
    padding: 3px 10px; border-radius: 999px;
    font-weight: 800; font-size: 11px; letter-spacing: .04em;
    text-transform: uppercase;
}
.fm-ribbon-text { color: rgba(255,255,255,.95); }
.fm-ribbon-text strong { color: #fff; }
.fm-ribbon-cta {
    color: var(--fm-gold); font-weight: 700; text-decoration: underline; white-space: nowrap;
}
.fm-ribbon-cta:hover { color: #fde68a; }

/* Founding-member hero — gold-accented eyebrow + the same hero structure */
.fm-hero {
    padding: 80px 0 56px;
    background:
        radial-gradient(1200px 600px at 90% -10%, var(--fm-gold-soft) 0%, transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(99,102,241,.08) 0%, transparent 60%),
        var(--bg);
}
.fm-hero-inner { max-width: 880px; margin: 0 auto; text-align: center; padding: 0 var(--pad); }
.fm-badge-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--fm-gold) 0%, #fbbf24 100%);
    color: #1f2937;
    padding: 6px 14px; border-radius: 999px;
    font-weight: 700; font-size: 13px; letter-spacing: -0.005em;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(245,158,11,.25);
}
.fm-hero h1 .accent { /* override homepage gradient — use gold here */
    background: linear-gradient(135deg, var(--fm-gold-dark) 0%, var(--fm-gold) 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fm-lead {
    font-size: 1.15rem; color: var(--ink-soft);
    max-width: 64ch; margin: 0 auto 24px;
}
.fm-hero .hero-cta-row { justify-content: center; }
.fm-microcopy { margin-top: 20px; font-size: 0.92rem; color: var(--ink-mute); }

/* Offer grid — six cards, two with the gold accent border */
.fm-offer-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px;
}
@media (max-width: 980px) { .fm-offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fm-offer-grid { grid-template-columns: 1fr; } }
.fm-offer-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .15s, box-shadow .15s;
    position: relative;
}
.fm-offer-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.fm-offer-num {
    position: absolute; top: 18px; right: 20px;
    font-family: ui-monospace, Menlo, Consolas, monospace;
    font-size: 12px; font-weight: 800; color: var(--fm-gold-dark);
    background: var(--fm-gold-soft);
    border: 1px solid #fde68a;
    padding: 3px 8px; border-radius: 6px;
    letter-spacing: .04em;
}
.fm-offer-card h3 { color: var(--ink); margin-bottom: 6px; padding-right: 48px; }
.fm-offer-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* The last "Ready?" card stands out with gold accents + the inline CTA */
.fm-offer-cta {
    background: linear-gradient(135deg, var(--fm-gold-soft) 0%, #fff 70%);
    border-color: #fde68a;
}
.fm-offer-cta .btn-primary {
    margin-top: 14px;
    background: linear-gradient(135deg, var(--fm-gold-dark) 0%, var(--fm-gold) 100%);
    color: #fff;
}
.fm-offer-cta .btn-primary:hover {
    background: linear-gradient(135deg, #92400e 0%, var(--fm-gold-dark) 100%);
}

/* Hero reinforcement bullets — the "No downloads · No installations · No admin
   rights required · Start instantly" row that sits right under the hero-lead. */
.hero-bullets {
    list-style: none; padding: 0; margin: 16px 0 0;
    display: flex; flex-wrap: wrap; gap: 8px 16px;
    font-size: 14px; color: var(--ink-soft);
}
.hero-bullets li {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 600;
    background: var(--brand-soft); color: var(--brand-dark);
    padding: 4px 12px; border-radius: 999px;
}
@media (max-width: 560px) { .hero-bullets { gap: 6px 8px; font-size: 13px; } }

/* ===== Differentiator comparison table (homepage #no-install) ===== */
.no-install-wrap {
    overflow-x: auto;
    margin-top: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.no-install-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    font-size: 14.5px;
    color: var(--ink);
}
.no-install-table thead th {
    background: var(--bg-soft);
    color: var(--ink);
    font-weight: 700;
    text-align: center;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    line-height: 1.3;
}
.no-install-table thead th:first-child { text-align: left; }
.no-install-table tbody th {
    text-align: left;
    padding: 14px 16px;
    font-weight: 600;
    color: var(--ink);
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.no-install-table tbody td {
    text-align: center;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    line-height: 1.35;
    color: var(--ink-soft);
    font-size: 13.5px;
}
.no-install-table tbody tr:last-child th,
.no-install-table tbody tr:last-child td {
    border-bottom: 0;
}
.no-install-table .y { color: #16a34a; font-weight: 600; }
.no-install-table .n { color: #dc2626; }
.no-install-table .m { color: #d97706; }
.no-install-table .row-iojump {
    background: linear-gradient(90deg, var(--brand-soft) 0%, rgba(99,102,241,0.04) 100%);
}
.no-install-table .row-iojump th {
    background: transparent;
    color: var(--brand-dark);
}
.no-install-table .row-iojump td {
    color: var(--brand-dark);
}
@media (max-width: 720px) {
    .no-install-table { font-size: 13px; }
    .no-install-table thead th,
    .no-install-table tbody th,
    .no-install-table tbody td { padding: 10px 8px; }
}
