:root {
    --ink: #130826;
    --ink-2: #21103f;
    --ink-3: #32145f;
    --white: #ffffff;
    --paper: #ffffff;
    --soft: #f8f5ff;
    --soft-2: #efe9ff;
    --muted: #6f667e;
    --purple: #7c3aed;
    --purple-2: #8b5cf6;
    --purple-3: #6d28d9;
    --violet: #a855f7;
    --pink: #e879f9;
    --blue: #4f46e5;
    --green: #16a34a;
    --line: #e9e1fb;
    --line-dark: rgba(255, 255, 255, .12);
    --shadow: 0 28px 90px rgba(55, 22, 102, .15);
    --shadow-soft: 0 18px 55px rgba(41, 19, 78, .08);
    --shadow-purple: 0 28px 90px rgba(124, 58, 237, .28);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --shell: min(1180px, calc(100% - 36px));
    --header-height: 82px;
    --safe-bottom: max(14px, env(safe-area-inset-bottom));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(124, 58, 237, .08), transparent 22%),
        radial-gradient(circle at 100% 0, rgba(232, 121, 249, .08), transparent 18%),
        linear-gradient(180deg, #fbf8ff 0%, #fff 36%, #faf7ff 100%);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.has-menu { overflow: hidden; }
img { display: block; max-width: 100px; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea, summary { font: inherit; }
button { cursor: pointer; }
strong, b, h1, h2, h3, h4 { font-weight: 600; }
svg { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: rgba(139, 92, 246, .28); color: var(--ink); }
:focus-visible { outline: 3px solid rgba(168, 85, 247, .34); outline-offset: 3px; }
[hidden] { display: none !important; }

.skip-link {
    position: fixed;
    left: 16px;
    top: -90px;
    z-index: 3000;
    padding: 12px 18px;
    border-radius: 12px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.shell { width: var(--shell); margin: 0 auto; }
.scroll-progress {
    position: fixed;
    inset: 0 auto auto 0;
    z-index: 2500;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-2), var(--pink), var(--blue));
    box-shadow: 0 0 18px rgba(168, 85, 247, .8);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    padding: 14px 0;
    border-bottom: 1px solid transparent;
    transition: padding .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    padding: 8px 0;
    background: rgba(18, 8, 39, .84);
    border-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px) saturate(145%);
    box-shadow: 0 18px 55px rgba(10, 4, 24, .24);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 54px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; color: #fff; }
.brand__mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .07em;
}
.brand__copy { display: grid; gap: 2px; min-width: 0; }
.brand__copy strong { font-size: .96rem; }
.brand__copy small { color: rgba(255, 255, 255, .62); font-size: .75rem; }
.brand--dark { color: var(--ink); }
.brand--dark .brand__mark { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--purple-2), var(--purple-3)); }
.brand--dark .brand__copy small { color: var(--muted); }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 4px; flex: 1; }
.site-nav a, .header-install {
    padding: 10px 12px;
    border: 0;
    border-radius: 12px;
    color: rgba(255, 255, 255, .76);
    background: transparent;
    font-size: .91rem;
    font-weight: 500;
    transition: color .2s ease, background .2s ease;
}
.site-nav a:hover, .site-nav a.is-active, .header-install:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.site-actions { display: flex; align-items: center; gap: 10px; }
.menu-button, .icon-button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, .07);
}
.menu-button { display: none; }
.icon-button { color: var(--ink); background: #fff; border-color: var(--line); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 15px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button:disabled { opacity: .58; cursor: not-allowed; transform: none; }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--purple-3) 72%); box-shadow: 0 16px 38px rgba(124, 58, 237, .34), inset 0 1px 0 rgba(255, 255, 255, .22); }
.button--primary:hover { box-shadow: 0 20px 48px rgba(124, 58, 237, .44), inset 0 1px 0 rgba(255, 255, 255, .22); }
.button--outline { color: #fff; border-color: rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .07); backdrop-filter: blur(12px); }
.button--outline:hover { background: rgba(255, 255, 255, .12); }
.button--ghost { color: var(--purple-3); border-color: rgba(124, 58, 237, .18); background: #fff; }
.button--light { color: var(--ink); background: #fff; box-shadow: 0 16px 38px rgba(9, 3, 22, .16); }
.button--large { min-height: 56px; padding: 15px 23px; }
.button--compact { min-height: 46px; padding: 11px 16px; font-size: .9rem; }
.button--block { width: 100%; }

.mobile-menu { position: fixed; inset: 0; z-index: 1500; }
.mobile-menu__backdrop { position: absolute; inset: 0; width: 100%; border: 0; background: rgba(9, 3, 19, .66); backdrop-filter: blur(7px); }
.mobile-menu__panel {
    position: absolute;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: min(390px, calc(100% - 24px));
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 20px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 35px 100px rgba(0, 0, 0, .28);
    animation: menuIn .28s ease both;
}
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mobile-menu__nav { display: grid; gap: 8px; }
.mobile-menu__nav a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 16px; border-radius: 14px; background: var(--soft); color: var(--ink); font-weight: 500; }
.mobile-menu__actions { display: grid; gap: 10px; margin-top: auto; padding-bottom: var(--safe-bottom); }
@keyframes menuIn { from { opacity: 0; transform: translateX(28px) scale(.98); } to { opacity: 1; transform: none; } }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 132px 0 92px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 18%, rgba(168, 85, 247, .30), transparent 30%),
        radial-gradient(circle at 18% 10%, rgba(124, 58, 237, .28), transparent 34%),
        linear-gradient(145deg, #090313 0%, #16082d 44%, #28105a 100%);
}
.hero__grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .94), transparent 90%); pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__orb--one { width: 360px; height: 360px; top: 10%; right: -130px; background: radial-gradient(circle, rgba(232, 121, 249, .34), rgba(124, 58, 237, .05) 68%, transparent 70%); animation: orbFloat 10s ease-in-out infinite; }
.hero__orb--two { width: 240px; height: 240px; left: -80px; bottom: 7%; background: radial-gradient(circle, rgba(139, 92, 246, .32), transparent 68%); animation: orbFloat 12s ease-in-out infinite reverse; }
.hero__layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); gap: 54px; align-items: center; }
.hero__content { min-width: 0; }
.hero__content h1 { max-width: 780px; margin: 22px 0 20px; font-size: clamp(3.2rem, 5.9vw, 5.55rem); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.hero__copy { max-width: 690px; margin: 0; color: rgba(255, 255, 255, .72); font-size: clamp(1.02rem, 1.45vw, 1.18rem); line-height: 1.75; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__support { margin: 15px 0 0; color: #e9ddff; font-weight: 500; line-height: 1.55; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 999px; background: rgba(255, 255, 255, .055); color: rgba(255, 255, 255, .76); font-size: .82rem; }
.hero__trust svg { color: #c4b5fd; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--purple-3); font-size: .8rem; font-weight: 600; }
.eyebrow--dark { border-color: rgba(216, 197, 255, .22); background: rgba(255, 255, 255, .07); color: #e9ddff; backdrop-filter: blur(14px); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: #c084fc; box-shadow: 0 0 0 7px rgba(192, 132, 252, .12), 0 0 20px rgba(192, 132, 252, .85); animation: signalPulse 2.2s ease-in-out infinite; }
.hero__visual { position: relative; min-width: 0; perspective: 1000px; }
.product-stage { position: relative; min-height: 590px; transform-style: preserve-3d; transition: transform .18s ease-out; }
.stage-symbol { position: absolute; z-index: 1; display: grid; place-items: center; width: 76px; height: 76px; border-radius: 24px; color: #d8c5ff; border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .08); backdrop-filter: blur(16px); box-shadow: 0 25px 70px rgba(4, 1, 10, .28); font-size: 1.8rem; animation: orbFloat 9s ease-in-out infinite; }
.stage-symbol--one { top: 26px; left: 18px; }
.stage-symbol--two { right: 8px; bottom: 78px; animation-delay: -3s; }
.dashboard-shell { position: absolute; inset: 78px 10px auto 10px; z-index: 2; overflow: hidden; padding: 14px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 30px; background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07)); box-shadow: 0 40px 100px rgba(6, 2, 14, .42); backdrop-filter: blur(24px) saturate(130%); }
.window-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 14px; border-radius: 18px 18px 0 0; background: rgba(255, 255, 255, .92); border-bottom: 1px solid #ece7f5; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; }
.window-dots i:nth-child(1) { background: #f87171; }
.window-dots i:nth-child(2) { background: #fbbf24; }
.window-dots i:nth-child(3) { background: #34d399; }
.live-badge { display: inline-flex; align-items: center; gap: 7px; color: var(--purple-3); font-size: .76rem; font-weight: 600; }
.live-badge i { width: 7px; height: 7px; border-radius: 50%; background: var(--purple-2); box-shadow: 0 0 0 5px rgba(139, 92, 246, .12); animation: signalPulse 2s ease-in-out infinite; }
.dashboard-layout { display: grid; grid-template-columns: 132px minmax(0, 1fr); min-height: 330px; overflow: hidden; border-radius: 0 0 18px 18px; background: #fbfaff; color: var(--ink); }
.dashboard-sidebar { display: flex; flex-direction: column; gap: 4px; padding: 18px 10px; background: linear-gradient(180deg, #1b0c35, #281052); color: #d9cff0; }
.sidebar-brand { display: grid; place-items: center; width: 42px; height: 42px; margin: 0 8px 14px; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--purple-3)); font-size: .75rem; font-weight: 600; letter-spacing: .08em; }
.sidebar-item { padding: 9px 10px; border-radius: 10px; color: rgba(255, 255, 255, .62); font-size: .72rem; }
.sidebar-item.is-active { color: #fff; background: rgba(139, 92, 246, .26); }
.dashboard-main { min-width: 0; padding: 17px; }
.dashboard-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.dashboard-heading small, .dashboard-heading strong { display: block; }
.dashboard-heading small { color: #8b829c; font-size: .67rem; }
.dashboard-heading strong { margin-top: 3px; font-size: .9rem; }
.mini-button { flex: 0 0 auto; padding: 7px 9px; border-radius: 9px; color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--purple-3)); font-size: .66rem; font-weight: 600; }
.metric-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.metric-grid article { min-width: 0; padding: 11px; border: 1px solid #ede7f8; border-radius: 13px; background: #fff; box-shadow: 0 10px 24px rgba(42, 19, 81, .05); }
.metric-grid small, .metric-grid strong, .metric-grid em { display: block; }
.metric-grid small { color: #8b829c; font-size: .6rem; }
.metric-grid strong { margin-top: 5px; overflow-wrap: anywhere; font-size: .91rem; }
.metric-grid em { margin-top: 4px; color: var(--green); font-size: .58rem; font-style: normal; }
.chart-card { margin-top: 10px; padding: 13px; border: 1px solid #ede7f8; border-radius: 14px; background: #fff; }
.chart-head { display: flex; align-items: center; justify-content: space-between; color: #8b829c; font-size: .65rem; }
.chart-head strong { color: var(--green); }
.chart-bars { height: 92px; display: flex; align-items: flex-end; gap: 7px; padding-top: 12px; }
.chart-bars span { flex: 1; height: var(--h); min-width: 8px; border-radius: 7px 7px 3px 3px; background: linear-gradient(180deg, #a78bfa, var(--purple-3)); transform-origin: bottom; animation: barPulse 2.4s ease-in-out infinite alternate; }
.chart-bars span:nth-child(2n) { animation-delay: .2s; }
.chart-bars span:nth-child(3n) { animation-delay: .4s; }
.chat-preview { position: absolute; right: -12px; bottom: 4px; z-index: 6; width: 270px; padding: 14px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 24px; color: var(--ink); background: rgba(255, 255, 255, .96); box-shadow: 0 30px 80px rgba(5, 2, 12, .35); backdrop-filter: blur(20px); animation: chatFloat 7.6s ease-in-out infinite; }
.chat-preview__head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.chat-avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--purple-3)); font-weight: 600; font-size: .75rem; letter-spacing: .05em; }
.chat-preview__head strong, .chat-preview__head small { display: block; }
.chat-preview__head strong { font-size: .84rem; }
.chat-preview__head small { margin-top: 3px; color: var(--muted); font-size: .65rem; }
.chat-preview__head small i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 50%; background: #22c55e; }
.chat-preview__body { padding: 6px 0; }
.message { max-width: 88%; margin: 8px 0 0; padding: 9px 11px; border-radius: 14px; font-size: .68rem; line-height: 1.45; }
.message--agent { margin-right: auto; background: var(--soft); }
.message--visitor { margin-left: auto; color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--purple-3)); }
.chat-preview > a { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; padding: 10px 12px; border-radius: 13px; color: var(--purple-3); background: var(--soft); font-size: .72rem; font-weight: 600; }
.floating-stat { position: absolute; z-index: 7; display: flex; align-items: center; gap: 10px; max-width: 210px; padding: 11px 13px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 16px; color: #fff; background: rgba(24, 10, 50, .82); box-shadow: 0 18px 44px rgba(5, 2, 12, .28); backdrop-filter: blur(16px); }
.floating-stat--one { top: 28%; right: -22px; animation: cardFloat 7.8s ease-in-out infinite; }
.floating-stat--two { bottom: 8%; left: -18px; animation: cardFloat 8.8s ease-in-out infinite reverse; }
.stat-icon { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 11px; color: #d8c5ff; background: rgba(139, 92, 246, .24); }
.floating-stat strong, .floating-stat small { display: block; }
.floating-stat strong { font-size: .78rem; }
.floating-stat small { margin-top: 2px; color: rgba(255, 255, 255, .58); font-size: .63rem; }

.capability-strip { position: relative; z-index: 5; margin-top: -34px; }
.capability-strip__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); box-shadow: 0 24px 70px rgba(35, 12, 75, .1); }
.capability-item { display: flex; align-items: center; gap: 13px; min-height: 96px; padding: 18px; background: rgba(255, 255, 255, .98); }
.capability-icon { display: grid; place-items: center; flex: 0 0 42px; width: 42px; height: 42px; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--purple-3)); box-shadow: 0 12px 26px rgba(124, 58, 237, .24); }
.capability-item strong, .capability-item small { display: block; }
.capability-item strong { font-size: .88rem; }
.capability-item small { margin-top: 4px; color: var(--muted); font-size: .74rem; line-height: 1.45; }

.section { padding: 108px 0; }
.section--soft { background: linear-gradient(180deg, rgba(247, 244, 255, .8), rgba(255, 255, 255, .96)); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: 40px; align-items: end; margin-bottom: 44px; }
.section-heading--center { grid-template-columns: 1fr; text-align: center; }
.section-heading--center h2, .section-heading--center .section-copy { margin-inline: auto; }
.section-kicker { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 12px; color: var(--purple-3); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .11em; }
.section-kicker::before { content: ""; width: 28px; height: 2px; border-radius: 999px; background: linear-gradient(90deg, var(--purple-2), var(--pink)); }
.section-kicker--light { color: #d8c5ff; }
.section h2, .process-copy h2, .faq-copy h2, .final-cta h2 { max-width: 850px; margin: 0; font-size: clamp(2.25rem, 4.8vw, 4.3rem); line-height: 1.04; letter-spacing: -.05em; text-wrap: balance; }
.section-copy { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }

.bento-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.bento-card { position: relative; overflow: hidden; grid-column: span 4; min-height: 340px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.bento-card:hover { transform: translateY(-6px); border-color: #d8c5ff; box-shadow: 0 28px 75px rgba(82, 34, 146, .14); }
.bento-card--wide { grid-column: span 7; }
.bento-card--medium { grid-column: span 5; }
.bento-card--dark { color: #fff; border-color: rgba(255, 255, 255, .1); background: radial-gradient(circle at 85% 12%, rgba(168, 85, 247, .30), transparent 34%), linear-gradient(145deg, #160a2e, #271054); box-shadow: var(--shadow-purple); }
.feature-icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 22px; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--purple-3)); box-shadow: 0 14px 30px rgba(124, 58, 237, .23); font-size: 1.2rem; }
.bento-card--dark .feature-icon { background: rgba(255, 255, 255, .12); box-shadow: none; }
.card-label { margin: 0 0 9px; color: var(--purple-3); font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; }
.bento-card--dark .card-label { color: #d8c5ff; }
.bento-card h3, .audience-card h3, .tool-card h3, .tool-feature h3 { max-width: 20ch; margin: 0 0 12px; font-size: 1.42rem; line-height: 1.2; letter-spacing: -.03em; }
.bento-card > p:not(.card-label) { margin: 0; color: #71687e; line-height: 1.7; }
.bento-card--dark > p:not(.card-label) { max-width: 55%; color: rgba(255, 255, 255, .66); }
.card-list { display: grid; gap: 8px; margin: 20px 0 60px; padding: 0; list-style: none; }
.card-list li { display: flex; align-items: flex-start; gap: 8px; color: #62596f; font-size: .88rem; line-height: 1.45; }
.card-list svg { flex: 0 0 auto; margin-top: 2px; color: var(--purple-2); }
.bento-card--dark .card-list { max-width: 52%; }
.bento-card--dark .card-list li { color: rgba(255, 255, 255, .72); }
.bento-card--dark .card-list svg { color: #d8c5ff; }
.card-link { position: absolute; left: 28px; bottom: 26px; display: inline-flex; align-items: center; gap: 8px; color: var(--purple-3); font-size: .88rem; font-weight: 600; }
.bento-card--dark .card-link { color: #fff; }
.card-link svg { transition: transform .2s ease; }
.card-link:hover svg { transform: translateX(4px); }
.mini-calendar { position: absolute; right: 28px; bottom: 28px; width: min(37%, 260px); padding: 18px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 20px; background: rgba(255, 255, 255, .08); backdrop-filter: blur(15px); animation: cardFloat 8s ease-in-out infinite; }
.mini-calendar span, .mini-calendar strong, .mini-calendar small { display: block; }
.mini-calendar span { color: #d8c5ff; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.mini-calendar strong { margin-top: 8px; font-size: 1.05rem; }
.mini-calendar small { margin-top: 8px; color: rgba(255, 255, 255, .56); line-height: 1.5; }

.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.audience-card { display: flex; flex-direction: column; min-width: 0; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.audience-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 24px; border-radius: 17px; color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--blue)); box-shadow: 0 15px 35px rgba(124, 58, 237, .24); font-size: 1.25rem; }
.audience-card > p:not(.card-label) { margin: 0; color: var(--muted); line-height: 1.7; }
.audience-card ul { display: grid; gap: 9px; margin: 22px 0 26px; padding: 0; list-style: none; }
.audience-card li { display: flex; align-items: flex-start; gap: 9px; color: #5f566b; font-size: .88rem; }
.audience-card li svg { flex: 0 0 auto; color: var(--purple-2); margin-top: 2px; }
.audience-card .button { margin-top: auto; }

.tools-section { background: #fff; }
.tools-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.tool-feature, .tool-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); }
.tool-feature { grid-column: span 12; display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr); gap: 36px; align-items: center; padding: 34px; color: #fff; background: radial-gradient(circle at 88% 0, rgba(232, 121, 249, .24), transparent 32%), linear-gradient(145deg, #130726, #2b105c); }
.tool-feature::after { content: ""; position: absolute; width: 220px; height: 220px; right: -80px; bottom: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(168, 85, 247, .34), transparent 70%); animation: orbFloat 9s ease-in-out infinite; }
.tool-feature__copy, .tool-form { position: relative; z-index: 1; }
.tool-feature .card-label { color: #d8c5ff; }
.tool-feature h3 { max-width: 16ch; font-size: clamp(1.9rem, 4vw, 3.2rem); }
.tool-feature__copy > p:not(.card-label) { max-width: 620px; color: rgba(255, 255, 255, .68); line-height: 1.7; }
.tool-form { padding: 24px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 22px; background: rgba(255, 255, 255, .09); backdrop-filter: blur(18px); }
.tool-form label { display: block; margin-bottom: 9px; color: #e9ddff; font-size: .82rem; font-weight: 600; }
.input-action { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.tool-card { grid-column: span 4; padding: 28px; }
.tool-card--large { grid-column: span 8; }
.tool-card > p:not(.card-label) { margin: 0 0 20px; color: var(--muted); line-height: 1.65; }
.tool-card label, .lead-form label { display: grid; gap: 8px; }
.tool-card label > span, .lead-form label > span { color: #574e63; font-size: .82rem; font-weight: 600; }
input, select, textarea {
    width: 100%;
    border: 1px solid #ddd4ed;
    border-radius: 13px;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input, select { min-height: 50px; padding: 0 14px; }
textarea { min-height: 118px; padding: 14px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--purple-2); box-shadow: 0 0 0 4px rgba(139, 92, 246, .12); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220, 38, 38, .08); }
.tool-form input { color: #fff; border-color: rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .1); }
.tool-form input::placeholder { color: rgba(255, 255, 255, .45); }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field-grid label:last-child:nth-child(odd) { grid-column: 1 / -1; }
.tool-card .button { margin-top: 16px; }
.result-box { margin-top: 14px; padding: 15px; border: 1px solid #ded4f2; border-radius: 15px; color: #3c3150; background: #f8f5ff; line-height: 1.55; }
.result-box p { margin: 0; }
.result-box p + p, .result-box ul + p { margin-top: 9px; }
.result-box ul { margin: 9px 0 0; padding-left: 20px; }
.result-box a { display: inline-flex; align-items: center; gap: 7px; color: var(--purple-3); font-weight: 600; }
.tool-form .result-box { border-color: rgba(255, 255, 255, .15); color: #fff; background: rgba(255, 255, 255, .1); }
.tool-form .result-box a { color: #fff; }

.process-section { color: #fff; background: radial-gradient(circle at 12% 14%, rgba(139, 92, 246, .28), transparent 28%), linear-gradient(145deg, #0e041c, #241049); }
.process-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 68px; align-items: center; }
.process-copy > p:not(.section-kicker) { max-width: 570px; margin: 20px 0 28px; color: rgba(255, 255, 255, .65); line-height: 1.75; }
.process-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 58px minmax(0, 1fr); gap: 18px; align-items: start; padding: 22px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 20px; background: rgba(255, 255, 255, .06); backdrop-filter: blur(14px); transition: transform .2s ease, background .2s ease; }
.process-list li:hover { transform: translateX(6px); background: rgba(255, 255, 255, .09); }
.process-list li > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--purple-2), var(--purple-3)); font-size: .8rem; font-weight: 600; }
.process-list h3 { margin: 1px 0 6px; font-size: 1.05rem; }
.process-list p { margin: 0; color: rgba(255, 255, 255, .58); line-height: 1.6; }

.coverage-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 20px; }
.coverage-card, .professional-card { min-width: 0; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-soft); }
.coverage-card--dark { color: #fff; border-color: rgba(255, 255, 255, .1); background: radial-gradient(circle at 85% 12%, rgba(168, 85, 247, .27), transparent 36%), linear-gradient(145deg, #160a2e, #271054); box-shadow: var(--shadow-purple); }
.coverage-card h2, .professional-card h2 { margin: 0; font-size: clamp(2rem, 3.9vw, 3.5rem); line-height: 1.05; letter-spacing: -.045em; }
.coverage-card > p:not(.card-label), .professional-card > p:not(.section-kicker) { margin: 18px 0 0; line-height: 1.7; }
.coverage-card > p:not(.card-label) { color: rgba(255, 255, 255, .64); }
.professional-card > p:not(.section-kicker) { color: var(--muted); }
.zone-cloud { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.zone-cloud a { padding: 9px 12px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; color: rgba(255, 255, 255, .82); background: rgba(255, 255, 255, .07); font-size: .8rem; transition: transform .2s ease, background .2s ease; }
.zone-cloud a:hover { transform: translateY(-2px); background: rgba(255, 255, 255, .12); }
.professional-card ul { display: grid; gap: 11px; margin: 26px 0 28px; padding: 0; list-style: none; }
.professional-card li { display: flex; gap: 9px; color: #5e5569; line-height: 1.5; }
.professional-card li svg { flex: 0 0 auto; margin-top: 3px; color: var(--purple-2); }

.faq-section { background: linear-gradient(180deg, #fff, #f8f5ff); }
.faq-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: 64px; align-items: start; }
.faq-copy { position: sticky; top: 120px; }
.faq-copy > p:not(.section-kicker) { margin: 20px 0 26px; color: var(--muted); line-height: 1.75; }
.faq-copy > a { display: flex; align-items: center; gap: 9px; width: fit-content; margin-top: 10px; color: var(--purple-3); font-weight: 600; }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 12px 30px rgba(41, 19, 78, .05); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; padding: 20px 22px; list-style: none; cursor: pointer; font-weight: 600; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 11px; color: var(--purple-3); background: var(--soft); font-style: normal; font-size: 1.2rem; transition: transform .2s ease; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.75; animation: answerIn .24s ease both; }

.final-section { padding-top: 0; background: linear-gradient(180deg, #f8f5ff 0%, #16082d 0%); }
.final-cta { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 50px; align-items: center; padding: 50px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 36px; color: #fff; background: radial-gradient(circle at 85% 10%, rgba(232, 121, 249, .22), transparent 30%), linear-gradient(145deg, #16082d, #2b105b); box-shadow: 0 35px 100px rgba(18, 7, 38, .28); }
.final-cta > div > p:not(.section-kicker) { margin: 20px 0 0; color: rgba(255, 255, 255, .64); line-height: 1.75; }
.lead-form { display: grid; gap: 16px; padding: 28px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 24px; background: rgba(255, 255, 255, .08); backdrop-filter: blur(18px); }
.field-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-grid--two label:last-child:nth-child(odd) { grid-column: auto; }
.lead-form label > span { color: #eee5ff; }
.lead-form input, .lead-form select, .lead-form textarea { color: #fff; border-color: rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .1); }
.lead-form select option { color: var(--ink); background: #fff; }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(255, 255, 255, .4); }
.field-error { min-height: 16px; color: #fca5a5; font-size: .74rem; }
.form-note { display: flex; align-items: center; justify-content: center; gap: 7px; color: rgba(255, 255, 255, .58); font-size: .76rem; text-align: center; }

.site-footer { padding: 72px 0 24px; color: #fff; background: #0e041c; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, minmax(0, .7fr)); gap: 34px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { max-width: 360px; margin: 0; color: rgba(255, 255, 255, .55); line-height: 1.7; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; }
.footer-grid > div > strong { margin-bottom: 4px; color: #fff; font-size: .9rem; }
.footer-grid a, .footer-grid span:not(.brand__mark):not(.brand__copy) { color: rgba(255, 255, 255, .57); font-size: .83rem; line-height: 1.5; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .45); font-size: .76rem; }
.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes orbFloat { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(0, -24px, 0) scale(1.04); } }
@keyframes barPulse { from { transform: scaleY(.88); opacity: .82; } to { transform: scaleY(1); opacity: 1; } }
@keyframes chatFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes cardFloat { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(.5deg); } }
@keyframes signalPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .68; transform: scale(.88); } }
@keyframes answerIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }

@media (max-width: 1080px) {

    img {
    display: block;
    max-width: 65px!important;
}
    .site-nav { display: none; }
    .menu-button { display: grid; }
    .header-install { display: none !important; }
    .hero__layout { grid-template-columns: 1fr; gap: 44px; }
    .hero__content { max-width: 850px; }
    .hero__content h1 { max-width: 930px; font-size: clamp(3.25rem, 8vw, 5.5rem); }
    .hero__visual { width: min(760px, 100%); margin-inline: auto; }
    .product-stage { min-height: 610px; }
    .capability-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .bento-card { grid-column: span 6; }
    .bento-card--wide, .bento-card--medium { grid-column: span 6; }
    .bento-card--dark > p:not(.card-label), .bento-card--dark .card-list { max-width: 100%; }
    .mini-calendar { display: none; }
    .audience-grid { grid-template-columns: 1fr; }
    .audience-card { display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(250px, .8fr); column-gap: 22px; align-items: start; }
    .audience-icon { grid-row: 1 / span 4; }
    .audience-card .card-label, .audience-card h3, .audience-card > p:not(.card-label) { grid-column: 2; }
    .audience-card ul { grid-column: 3; grid-row: 1 / span 4; margin: 0 0 18px; }
    .audience-card .button { grid-column: 3; }
    .tool-card { grid-column: span 6; }
    .tool-card--large { grid-column: span 12; }
    .process-layout, .coverage-layout, .faq-layout, .final-cta { grid-template-columns: 1fr; }
    .faq-copy { position: static; }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
    :root { --header-height: 72px; --shell: min(100% - 28px, 1180px); }
    .site-header { padding: 10px 0; }
    .site-header.is-scrolled { padding: 7px 0; }
    .site-header__inner { min-height: 50px; }
    .brand__mark { width: 42px; height: 42px; border-radius: 13px; }
    .brand__copy strong { font-size: .9rem; }
    .brand__copy small { font-size: .71rem; }
    .site-actions .button { display: none; }
    .hero { min-height: auto; padding: 118px 0 74px; }
    .hero__content h1 { font-size: clamp(2.75rem, 12vw, 4.6rem); }
    .hero__actions .button { flex: 1 1 220px; }
    .product-stage { min-height: 560px; }
    .dashboard-shell { inset: 70px 0 auto; }
    .floating-stat--one { right: 0; }
    .floating-stat--two { left: 0; }
    .chat-preview { right: 0; }
    .section { padding: 84px 0; }
    .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
    .bento-card, .bento-card--wide, .bento-card--medium { grid-column: span 12; }
    .audience-card { display: flex; }
    .audience-card ul { margin: 22px 0 26px; }
    .tool-feature { grid-template-columns: 1fr; gap: 24px; }
    .tool-card, .tool-card--large { grid-column: span 12; }
    .process-layout { gap: 40px; }
    .final-cta { padding: 34px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .mobile-cta {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: var(--safe-bottom);
        z-index: 1100;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-height: 54px;
        border-radius: 16px;
        color: #fff;
        background: linear-gradient(135deg, var(--purple-2), var(--purple-3));
        box-shadow: 0 20px 45px rgba(66, 25, 129, .35);
        font-weight: 600;
        transition: opacity .2s ease, transform .2s ease;
    }
    .mobile-cta.is-hidden { opacity: 0; pointer-events: none; transform: translateY(18px); }
    .site-footer { padding-bottom: 94px; }
}

@media (max-width: 620px) {
    :root { --shell: min(100% - 22px, 1180px); }
    .brand__copy { display: none; }
    .mobile-menu .brand__copy, .site-footer .brand__copy { display: grid; }
    .hero { padding-top: 104px; }
    .hero__content h1 { font-size: clamp(2.48rem, 12.6vw, 3.8rem); line-height: 1; letter-spacing: -.05em; }
    .hero__copy { font-size: .98rem; line-height: 1.68; }
    .hero__actions { display: grid; }
    .hero__actions .button { width: 100%; }
    .hero__support { font-size: .84rem; }
    .hero__trust span { font-size: .75rem; }
    .hero__visual { margin-top: -6px; }
    .product-stage { min-height: 520px; }
    .stage-symbol { width: 58px; height: 58px; border-radius: 18px; font-size: 1.35rem; }
    .stage-symbol--one { top: 8px; left: 2px; }
    .stage-symbol--two { right: 3px; bottom: 74px; }
    .dashboard-shell { inset: 58px 0 auto; padding: 9px; border-radius: 23px; }
    .window-bar { padding: 10px 11px; }
    .dashboard-layout { grid-template-columns: 76px minmax(0, 1fr); min-height: 300px; }
    .dashboard-sidebar { padding: 12px 7px; }
    .sidebar-brand { width: 36px; height: 36px; margin: 0 5px 12px; }
    .sidebar-item { padding: 8px 6px; font-size: .58rem; overflow: hidden; text-overflow: ellipsis; }
    .dashboard-main { padding: 12px; }
    .dashboard-heading { align-items: flex-start; }
    .dashboard-heading strong { font-size: .8rem; }
    .mini-button { display: none; }
    .metric-grid { grid-template-columns: 1fr; }
    .metric-grid article:nth-child(n+3) { display: none; }
    .chart-bars { height: 70px; }
    .floating-stat { max-width: 165px; padding: 9px 10px; }
    .floating-stat--one { top: 32%; right: -2px; }
    .floating-stat--two { bottom: 5%; left: 0; }
    .floating-stat strong { font-size: .7rem; }
    .floating-stat small { font-size: .56rem; }
    .stat-icon { width: 30px; height: 30px; flex-basis: 30px; }
    .chat-preview { right: 0; bottom: 8px; width: 220px; padding: 11px; border-radius: 18px; }
    .chat-preview__head { padding-bottom: 9px; }
    .chat-avatar { width: 32px; height: 32px; border-radius: 10px; }
    .message { font-size: .61rem; padding: 7px 9px; }
    .capability-strip { margin-top: -24px; }
    .capability-strip__grid { grid-template-columns: 1fr; border-radius: 18px; }
    .capability-item { min-height: 82px; padding: 15px; }
    .section { padding: 72px 0; }
    .section h2, .process-copy h2, .faq-copy h2, .final-cta h2 { font-size: clamp(2rem, 10vw, 3rem); }
    .bento-card, .audience-card, .tool-card, .coverage-card, .professional-card { padding: 24px; border-radius: 22px; }
    .bento-card { min-height: 330px; }
    .tool-feature { padding: 24px; border-radius: 22px; }
    .tool-form { padding: 18px; }
    .input-action { grid-template-columns: 1fr; }
    .field-grid, .field-grid--two { grid-template-columns: 1fr; }
    .field-grid label:last-child:nth-child(odd), .field-grid--two label:last-child:nth-child(odd) { grid-column: auto; }
    .process-list li { grid-template-columns: 46px minmax(0, 1fr); gap: 13px; padding: 17px; }
    .process-list li > span { width: 42px; height: 42px; }
    .final-cta { width: calc(100% - 22px); padding: 24px; border-radius: 26px; }
    .lead-form { padding: 18px; border-radius: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 390px) {
    .hero__content h1 { font-size: 2.35rem; }
    .eyebrow { font-size: .7rem; }
    .product-stage { min-height: 500px; }
    .dashboard-layout { grid-template-columns: 68px minmax(0, 1fr); }
    .chart-bars span:nth-child(n+6) { display: none; }
    .floating-stat--one { top: 30%; }
    .floating-stat--two { bottom: 1%; }
    .chat-preview { width: 205px; }
    .capability-item small { font-size: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Secondary legal and error pages */
.simple-page { min-height: 100vh; color: var(--ink); background: linear-gradient(180deg, #120625 0 310px, #f8f5ff 310px); }
.simple-header { padding: 24px 0; color: #fff; }
.simple-header .shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.simple-header .button { min-height: 44px; }
.simple-hero { padding: 62px 0 86px; color: #fff; }
.simple-hero h1 { max-width: 850px; margin: 12px 0 0; font-size: clamp(2.5rem, 7vw, 5rem); line-height: 1; letter-spacing: -.05em; }
.simple-content { width: min(860px, calc(100% - 28px)); margin: -48px auto 80px; padding: clamp(24px, 5vw, 50px); border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.simple-content h2 { margin: 34px 0 12px; font-size: 1.45rem; letter-spacing: -.025em; }
.simple-content h2:first-child { margin-top: 0; }
.simple-content p, .simple-content li { color: var(--muted); line-height: 1.75; }
.simple-content a { color: var(--purple-3); font-weight: 600; }
.simple-content ul { padding-left: 20px; }
.simple-content .button { color: #fff; }
@media (max-width: 620px) {
    .simple-header .brand__copy { display: grid; }
    .simple-header .button span { display: none; }
    .simple-hero { padding: 42px 0 74px; }
    .simple-content { margin-top: -38px; border-radius: 22px; }
}
