/* StratusTalk public marketing site — standalone (not loaded inside Filament). */

:root {
    --ink: #10233b;
    --muted: #5a6b80;
    --navy: #0b2440;
    --navy-2: #0e3057;
    --line: #e2e8f1;
    --panel: #f5f8fc;
    --panel-2: #eef3fa;
    --brand: #1466b8;
    --brand-2: #1a8fe3;
    --accent: #00ac69;
    --accent-dark: #00915a;
    --gold: #f4a100;
    --white: #ffffff;
    --shadow-sm: 0 6px 20px rgba(11, 36, 64, 0.08);
    --shadow: 0 18px 44px rgba(11, 36, 64, 0.14);
    --radius: 16px;
    --radius-sm: 10px;
    --maxw: 1160px;
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-2); }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

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

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 0.75rem;
}
.eyebrow.on-dark { color: #8fd0ff; }

.grad {
    background: linear-gradient(90deg, #59c6ff, #7bffb0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.section { padding: 88px 0; }
.section.tight { padding: 60px 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(0, 172, 105, 0.32); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-secondary { background: var(--brand); color: #fff; }
.btn-secondary:hover { background: var(--brand-2); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn-ghost.on-dark:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 74px;
}
.nav-brand { display: flex; align-items: center; margin-right: auto; }
.nav-brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a {
    color: var(--ink);
    font-weight: 600;
    font-size: 0.96rem;
    padding: 0.4rem 0;
    position: relative;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a.active { color: var(--brand); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-login {
    font-weight: 700;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.nav-login:hover { color: var(--brand); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(8, 25, 45, 0.94) 0%, rgba(10, 40, 74, 0.82) 55%, rgba(20, 102, 184, 0.72) 100%),
        url('/images/marketing/hero-meeting.jpg') center/cover no-repeat;
    overflow: hidden;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; padding: 96px 0 104px; }
.hero h1 { color: #fff; }
.hero h1 .grad {
    background: linear-gradient(90deg, #59c6ff, #7bffb0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p { color: #d6e4f2; font-size: 1.2rem; max-width: 52ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: 2.4rem; color: #bcd3ea; font-size: 0.92rem; }
.hero-badges span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-art { position: relative; }
.hero-art img { border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-cloud { position: absolute; opacity: 0.25; z-index: 1; }
.hero-cloud.c1 { top: 12%; right: -40px; width: 240px; }
.hero-cloud.c2 { bottom: 8%; left: -30px; width: 200px; }

/* ---------- Trust bar ---------- */
.trust { background: var(--navy); color: #cfe0f0; padding: 22px 0; }
.trust .container { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; text-align: center; }
.trust strong { color: #fff; font-size: 1.15rem; }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px;
    background: var(--panel-2);
    margin-bottom: 18px;
}
.card .icon img { width: 32px; height: 32px; }
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Split feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-body ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.split-body li { position: relative; padding-left: 1.9rem; margin-bottom: 0.7rem; color: var(--ink); }
.split-body li::before {
    content: "";
    position: absolute; left: 0; top: 0.35rem;
    width: 18px; height: 18px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85);
}

/* ---------- Alt / panel sections ---------- */
.bg-panel { background: var(--panel); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .lead { color: #c4d6ea; }
.bg-blue {
    color: #fff;
    background: linear-gradient(120deg, var(--navy) 0%, var(--brand) 100%);
}
.bg-blue h1, .bg-blue h2, .bg-blue h3 { color: #fff; }
.bg-blue .lead { color: #dcebfa; }

/* Feature-list items sit on dark panels here — keep them legible. */
.bg-navy .split-body li,
.bg-blue .split-body li { color: #eaf3fc; }

/* ---------- Partners ---------- */
.partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; }
.partners img { height: 42px; width: auto; opacity: 0.7; filter: grayscale(100%); transition: opacity 0.2s ease, filter 0.2s ease; }
.partners img:hover { opacity: 1; filter: grayscale(0); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.plan {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.plan.featured { border-color: var(--accent); box-shadow: 0 20px 50px rgba(0, 172, 105, 0.18); transform: translateY(-6px); }
.plan .plan-badge {
    align-self: flex-start;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--accent); background: rgba(0, 172, 105, 0.1);
    padding: 4px 10px; border-radius: 999px; margin-bottom: 14px;
}
.plan h3 { font-size: 1.05rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--muted); }
.plan .price { font-size: 2.6rem; font-weight: 800; color: var(--ink); line-height: 1; margin: 6px 0 2px; }
.plan .price small { font-size: 0.9rem; font-weight: 600; color: var(--muted); }
.plan .per { color: var(--muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan li { padding: 8px 0 8px 26px; position: relative; border-top: 1px solid var(--line); color: var(--ink); font-size: 0.94rem; }
.plan li:first-child { border-top: 0; }
.plan li::before {
    content: "✓"; position: absolute; left: 0; top: 8px;
    color: var(--accent); font-weight: 800;
}
.plan .btn { width: 100%; }

/* ---------- VoxLayer AI section ---------- */
.voxlayer .split { align-items: center; }
.vox-features { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.vox-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #eaf3fc;
    font-weight: 500;
}
.vox-features li::before {
    content: "";
    position: absolute; left: 0; top: 0.3rem;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #59c6ff, #7bffb0);
    box-shadow: inset 0 0 0 4px rgba(11, 36, 64, 0.55);
}
.vox-demo { display: flex; justify-content: center; }
.vox-demo-card {
    width: 100%;
    max-width: 380px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(6px);
}
.vox-demo-card h3 { color: #fff; margin-bottom: 0.5rem; }
.vox-demo-card p { color: #cfe0f2; font-size: 0.98rem; }
.vox-demo-card .btn { width: 100%; margin-top: 0.6rem; }
.vox-demo-note {
    display: block;
    margin-top: 14px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9fc4e6;
}
.vox-orb {
    width: 96px; height: 96px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-2), var(--accent));
    box-shadow: 0 0 0 0 rgba(0, 172, 105, 0.55);
    animation: vox-pulse 2.4s ease-out infinite;
}
@keyframes vox-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 172, 105, 0.55); }
    70% { box-shadow: 0 0 0 22px rgba(0, 172, 105, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 172, 105, 0); }
}
.vox-dock-dot {
    display: inline-block;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    animation: vox-blink 1.6s ease-out infinite;
}
@keyframes vox-blink {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8); }
    70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ---------- VoxLayer demo dock + panel ---------- */
.vox-dock {
    position: fixed;
    right: 24px; bottom: 24px;
    z-index: 2147483000;
}
.vox-dock-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.4rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--brand), var(--accent));
    color: #fff;
    font: 700 1rem var(--font);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(11, 36, 64, 0.35);
    transition: transform 0.12s ease, box-shadow 0.2s ease;
}
.vox-dock-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(11, 36, 64, 0.42); }
.vox-panel {
    position: fixed;
    right: 24px; bottom: 92px;
    z-index: 2147483001;
    width: 400px;
    max-width: calc(100vw - 48px);
    height: 600px;
    max-height: calc(100vh - 130px);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 48px rgba(11, 36, 64, 0.45);
}
.vox-panel iframe { width: 100%; height: 100%; border: none; display: block; }
.vox-panel-close {
    position: absolute;
    top: 8px; right: 8px;
    width: 30px; height: 30px;
    border: none;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 20px; line-height: 1;
    cursor: pointer;
}
.vox-panel-close:hover { background: rgba(0, 0, 0, 0.8); }
@media (max-width: 560px) {
    .vox-dock { right: 16px; bottom: 16px; }
    .vox-dock-btn { padding: 0.8rem 1.1rem; font-size: 0.92rem; }
}

/* ---------- App screenshot frames (reseller page) ---------- */
.shot {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #0d1b2e;
    border: 1px solid rgba(11, 36, 64, 0.14);
    box-shadow: var(--shadow);
}
.shot-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: #12233b;
}
.shot-bar span { width: 11px; height: 11px; border-radius: 50%; background: #35507a; display: block; }
.shot-bar span:nth-child(1) { background: #ff5f57; }
.shot-bar span:nth-child(2) { background: #febc2e; }
.shot-bar span:nth-child(3) { background: #28c840; }
.shot-body { position: relative; background: #0b1626; }
.shot-body img { display: block; width: 100%; height: auto; }
.shot-ph {
    display: none;
    aspect-ratio: 16 / 11;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: #9fc4e6;
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(26, 143, 227, 0.25), transparent 55%),
        linear-gradient(120deg, #0e2036, #143059);
    text-align: center;
}
.shot-ph span { font-weight: 700; font-size: 1.05rem; color: #dcebfa; letter-spacing: 0.01em; }
.shot-ph small { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; opacity: 0.7; }
.shot.is-empty .shot-body img { display: none; }
.shot.is-empty .shot-ph { display: flex; }

/* ---------- Reseller stat strip ---------- */
.rev-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: center; }
.rev-strip .rev-num {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #59c6ff, #7bffb0);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.rev-strip p { color: #c4d6ea; margin: 10px 0 0; }
@media (max-width: 700px) { .rev-strip { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- CTA banner ---------- */
.cta-banner {
    background: linear-gradient(120deg, var(--navy) 0%, var(--brand) 100%);
    color: #fff;
    border-radius: 24px;
    padding: 56px;
    text-align: center;
    box-shadow: var(--shadow);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #dcebfa; max-width: 60ch; margin: 0 auto 1.6rem; font-size: 1.1rem; }

/* ---------- Guarantees ---------- */
.guarantee { text-align: center; padding: 8px; }
.guarantee .g-num { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }

/* ---------- Contact form ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.field input, .field textarea, .field select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
    font: inherit;
    color: var(--ink);
    background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(20, 102, 184, 0.15); }
.form-note { font-size: 0.85rem; color: var(--muted); }
.alert-success {
    background: rgba(0, 172, 105, 0.1);
    border: 1px solid rgba(0, 172, 105, 0.35);
    color: var(--accent-dark);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9cadd; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: #b9cadd; display: block; padding: 5px 0; font-size: 0.95rem; }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 46px; margin-bottom: 16px; }
.footer-brand p { color: #90a6bd; max-width: 34ch; font-size: 0.95rem; }
.footer-login {
    margin-top: 18px;
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}
.footer-login:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.footer-bottom {
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: #8399b0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; padding: 64px 0 72px; }
    .hero-art { display: none; }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split.reverse .split-media { order: 0; }
    .grid-3, .grid-4, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links, .nav-actions .btn { display: none; }
    .nav-toggle { display: block; }
    .nav[data-open="true"] .nav-links {
        display: flex;
        position: absolute;
        top: 74px; left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 12px 24px 20px;
        box-shadow: var(--shadow);
    }
    .nav[data-open="true"] .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
    .grid-3, .grid-4, .pricing-grid, .grid-2, .form-row { grid-template-columns: 1fr; }
    .cta-banner { padding: 36px 24px; }
    .section { padding: 60px 0; }
}
