:root {
  --ink: #101828;
  --ink-soft: #475467;
  --paper: #f7f9fc;
  --white: #ffffff;
  --line: #e4e7ec;
  --line-strong: #d0d5dd;
  --blue: #2563eb;
  --blue-dark: #175cd3;
  --cyan: #38bdf8;
  --violet: #7c3aed;
  --lime: #60a5fa;
  --mint: #22d3ee;
  --green: #2563eb;
  --dark: #070b1a;
  --dark-2: #10172c;
  --warm: #f2f4f7;
  --shadow-sm: 0 4px 14px rgba(16, 24, 40, .06);
  --shadow: 0 24px 70px rgba(15, 23, 42, .14);
  --shadow-blue: 0 22px 60px rgba(37, 99, 235, .22);
  --radius: 22px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 { margin: 0 0 .65em; font-family: "Manrope", sans-serif; line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(3.25rem, 6.2vw, 5.75rem); }
h2 { font-size: clamp(2.15rem, 4vw, 3.65rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 1.2em; }
.container { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(790px, 100%); }
.section { position: relative; padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-dark { overflow: hidden; color: white; background: var(--dark); }
.section-dark::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 8% 8%, rgba(37,99,235,.2), transparent 27%), radial-gradient(circle at 88% 78%, rgba(124,58,237,.14), transparent 28%); }
.section-white { background: white; }
.section-warm { background: #eef2ff; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; color: var(--blue); font-size: .74rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(37,99,235,.1); }
.section-dark .eyebrow { color: #7dd3fc; }
.section-dark .eyebrow::before { box-shadow: 0 0 0 5px rgba(125,211,252,.12); }
.lede { max-width: 720px; color: var(--ink-soft); font-size: clamp(1.04rem, 1.6vw, 1.23rem); line-height: 1.65; }
.section-dark .lede, .section-dark p { color: #aeb9cc; }
.muted { color: #667085; }
.accent { color: var(--blue); }
.highlight { color: transparent; background: linear-gradient(90deg, #8ec5ff 0%, #a78bfa 55%, #67e8f9 100%); -webkit-background-clip: text; background-clip: text; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 52px; }
.section-heading > div:first-child { max-width: 800px; }

.skip-link { position: fixed; top: 10px; left: 10px; z-index: 999; padding: 10px 15px; color: white; background: var(--blue); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.site-header { position: sticky; top: 0; z-index: 100; height: 78px; border-bottom: 1px solid rgba(228,231,236,.8); background: rgba(255,255,255,.88); backdrop-filter: blur(18px) saturate(150%); transition: box-shadow .25s, background .25s; }
.site-header.scrolled { background: rgba(255,255,255,.96); box-shadow: 0 10px 36px rgba(16,24,40,.08); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 165px; height: auto; display: block; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 29px; }
.site-nav > a, .nav-group > button { position: relative; border: 0; padding: 27px 0; color: #344054; background: none; text-decoration: none; font-weight: 700; font-size: .9rem; cursor: pointer; }
.site-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 18px; height: 2px; border-radius: 2px; background: var(--blue); transition: right .2s; }
.site-nav > a:hover::after { right: 0; }
.site-nav > a:hover, .nav-group > button:hover { color: var(--blue); }
.nav-group { position: relative; }
.nav-panel { display: grid; visibility: hidden; opacity: 0; transform: translate(-44%, 10px); position: absolute; top: 66px; left: 50%; width: 530px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 24px 70px rgba(16,24,40,.18); transition: .2s ease; }
.nav-group:hover .nav-panel, .nav-group:focus-within .nav-panel, .nav-group.open .nav-panel { visibility: visible; opacity: 1; transform: translate(-44%, 0); }
.nav-panel a { display: grid; padding: 14px 16px; border-radius: 12px; text-decoration: none; transition: background .2s, transform .2s; }
.nav-panel a:hover { background: #f2f4f7; transform: translateX(3px); }
.nav-panel strong { color: var(--ink); font-family: "Manrope", sans-serif; font-size: .94rem; }
.nav-panel small { color: #667085; }
.nav-cta { flex: 0 0 auto; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 11px; padding: 10px; background: white; }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--ink); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px; padding: 14px 22px; border: 1px solid var(--blue); border-radius: 11px; color: white; background: var(--blue); box-shadow: 0 6px 18px rgba(37,99,235,.18); text-decoration: none; font-weight: 800; line-height: 1; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); border-color: var(--blue-dark); background: var(--blue-dark); box-shadow: 0 14px 30px rgba(37,99,235,.3); }
.button-sm { min-height: 43px; padding: 11px 17px; font-size: .87rem; }
.button-lime { color: #07111f; border-color: #7dd3fc; background: #7dd3fc; box-shadow: 0 8px 24px rgba(56,189,248,.2); }
.button-lime:hover { border-color: #bae6fd; background: #bae6fd; }
.button-ghost { color: #344054; border-color: #d0d5dd; background: rgba(255,255,255,.82); box-shadow: none; }
.button-ghost:hover { color: var(--blue); border-color: #84adff; background: white; box-shadow: var(--shadow-sm); }
.button-ghost-light { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); box-shadow: none; }
.button-ghost-light:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.09); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 800; text-decoration: none; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translate(3px,-3px); }

.hero { min-height: calc(100vh - 78px); display: grid; align-items: center; overflow: hidden; position: relative; padding: 92px 0 104px; color: white; background: #070b1a; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 12% 14%, rgba(37,99,235,.32), transparent 36%), radial-gradient(ellipse at 82% 20%, rgba(124,58,237,.26), transparent 35%), radial-gradient(circle at 70% 100%, rgba(34,211,238,.11), transparent 31%); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(50px, 7vw, 90px); align-items: center; }
.hero h1 { max-width: 760px; }
.hero .eyebrow { color: #7dd3fc; }
.hero-copy > p { max-width: 650px; color: #b8c3d8; font-size: clamp(1.08rem, 1.7vw, 1.27rem); }
.hero .button-ghost { color: white; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05); }
.hero .button-ghost:hover { border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.1); }
.hero-proof { display: flex; flex-wrap: wrap; gap: 16px 27px; margin-top: 31px; color: #aab6cb; font-size: .88rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid rgba(125,211,252,.35); border-radius: 50%; color: #7dd3fc; background: rgba(56,189,248,.1); font-size: .72rem; font-weight: 900; }

.agent-demo { position: relative; padding: 1px; border-radius: 25px; background: linear-gradient(135deg, rgba(125,211,252,.8), rgba(124,58,237,.58), rgba(255,255,255,.12)); box-shadow: 0 30px 100px rgba(0,0,0,.45), 0 0 80px rgba(37,99,235,.18); }
.agent-demo::before { content: ""; position: absolute; inset: -24px; z-index: -1; border-radius: 40px; background: radial-gradient(circle, rgba(37,99,235,.25), transparent 67%); filter: blur(18px); }
.demo-window { overflow: hidden; border-radius: 24px; background: #f8fafc; }
.demo-bar { display: flex; align-items: center; justify-content: space-between; padding: 17px 20px; border-bottom: 1px solid rgba(255,255,255,.08); color: #e7eefc; background: #11182b; font-size: .82rem; font-weight: 700; }
.demo-bar > span:first-child::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 10px; border-radius: 50%; background: #38bdf8; box-shadow: 14px 0 #818cf8, 28px 0 #c084fc; }
.demo-bar > span:first-child { padding-left: 34px; }
.status { display: inline-flex; align-items: center; gap: 7px; color: #a7f3d0; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 5px rgba(52,211,153,.1); animation: pulse 2.2s infinite; }
.demo-body { padding: 25px; }
.demo-label { margin-bottom: 18px; color: #667085; font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.bubble { width: 88%; margin: 0 0 12px; padding: 13px 15px; border: 1px solid #e4e7ec; border-radius: 14px 14px 14px 4px; color: #344054; background: white; box-shadow: 0 3px 9px rgba(16,24,40,.04); font-size: .87rem; line-height: 1.5; }
.bubble.user { width: 77%; margin-left: auto; color: white; border-color: transparent; border-radius: 14px 14px 4px 14px; background: linear-gradient(135deg, #2563eb, #4f46e5); }
.agent-events { display: grid; gap: 9px; margin-top: 19px; }
.agent-event { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border: 1px solid #e4e7ec; border-radius: 10px; color: #475467; background: rgba(255,255,255,.7); font-size: .78rem; }
.agent-event::before { content: "✓"; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 6px; color: #175cd3; background: #dbeafe; font-size: .68rem; font-weight: 900; }
.agent-event b { margin-left: auto; color: var(--blue); font-size: .67rem; letter-spacing: .06em; text-transform: uppercase; }
.demo-insights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid #e4e7ec; }
.demo-insights div { padding: 10px; border-radius: 10px; text-align: center; background: #eef4ff; }
.demo-insights strong, .demo-insights span { display: block; }
.demo-insights strong { color: #175cd3; font: 800 .82rem "Manrope", sans-serif; }
.demo-insights span { margin-top: 2px; color: #667085; font-size: .64rem; letter-spacing: .04em; text-transform: uppercase; }

.logo-strip { padding: 23px 0; border-block: 1px solid var(--line); background: white; }
.strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 22px 46px; color: #667085; font-size: .8rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.strip-inner strong { color: #98a2b3; font-size: .69rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 21px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card { position: relative; overflow: hidden; min-height: 100%; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s, box-shadow .25s; }
.card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; opacity: 0; background: linear-gradient(90deg, var(--blue), var(--violet), var(--cyan)); transition: opacity .25s; }
.card:hover { transform: translateY(-6px); border-color: #b9ccf9; box-shadow: 0 22px 55px rgba(16,24,40,.12); }
.card:hover::after { opacity: 1; }
.card-number { display: inline-grid; place-items: center; width: 45px; height: 45px; margin-bottom: 48px; border: 1px solid #bfdbfe; border-radius: 13px; color: #175cd3; background: #eff6ff; font-family: "Manrope", sans-serif; font-size: .82rem; font-weight: 800; }
.card p { color: #667085; }
.card a.stretched { text-decoration: none; }
.card a.stretched::after { content: ""; position: absolute; inset: 0; }
.card-arrow { position: absolute; top: 35px; right: 35px; color: #98a2b3; font-size: 1.25rem; transition: transform .2s, color .2s; }
.card:hover .card-arrow { color: var(--blue); transform: translate(3px,-3px); }
.card-dark { color: white; border-color: #1d2939; background: linear-gradient(145deg, #101828, #111b34); box-shadow: 0 20px 50px rgba(16,24,40,.18); }
.card-dark p { color: #b4bfd0; }
.card-dark .card-number { color: #7dd3fc; border-color: rgba(125,211,252,.25); background: rgba(56,189,248,.1); }
.card-dark .card-arrow { color: #7dd3fc; }
.card-lime { border-color: #d9d6fe; background: linear-gradient(145deg, #f5f3ff, #eef2ff); }
.card-lime .card-number { color: #6938ef; border-color: #ddd6fe; background: white; }
.card-lime p { color: #475467; }
.cap-list { display: grid; gap: 0; margin-top: 27px; border-top: 1px solid var(--line); }
.cap-list span { position: relative; padding: 10px 0 10px 20px; border-bottom: 1px solid var(--line); color: #475467; font-size: .86rem; font-weight: 700; }
.cap-list span::before { content: ""; position: absolute; left: 2px; top: 17px; width: 6px; height: 6px; border-radius: 50%; background: #60a5fa; }
.card-dark .cap-list, .card-dark .cap-list span { border-color: rgba(255,255,255,.12); }
.card-dark .cap-list span { color: #c7d0df; }

.workflow { position: relative; z-index: 1; display: grid; grid-template-columns: .73fr 1.27fr; gap: 76px; align-items: start; }
.sticky-copy { position: sticky; top: 125px; }
.steps { counter-reset: process; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 21px; padding: 31px 0; border-top: 1px solid rgba(255,255,255,.13); counter-increment: process; }
.step:first-child { border-top: 0; }
.step::before { content: "0" counter(process); display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(125,211,252,.25); border-radius: 13px; color: #7dd3fc; background: rgba(56,189,248,.06); font-family: "Manrope", sans-serif; font-size: .8rem; font-weight: 800; }
.step h3 { margin-bottom: 7px; color: white; }
.step p { margin: 0; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.metric { position: relative; padding: 30px; border-left: 1px solid var(--line); }
.metric:first-child { border-left: 0; }
.metric::before { content: ""; display: block; width: 34px; height: 3px; margin-bottom: 26px; border-radius: 3px; background: linear-gradient(90deg, var(--blue), var(--cyan)); }
.metric strong { display: block; margin-bottom: 7px; font: 800 clamp(1.65rem, 3vw, 2.45rem)/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.metric span { color: #667085; font-size: .83rem; }

.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.industry { position: relative; isolation: isolate; min-height: 300px; overflow: hidden; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.industry::after { content: ""; position: absolute; z-index: -1; width: 210px; height: 210px; top: -105px; right: -75px; border-radius: 50%; filter: blur(2px); opacity: .55; }
.industry:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(16,24,40,.1); }
.industry:nth-child(1)::after { background: #bfdbfe; }
.industry:nth-child(2)::after { background: #a5f3fc; }
.industry:nth-child(3)::after { background: #c7d2fe; }
.industry:nth-child(4)::after { background: #ddd6fe; }
.industry .tag { align-self: flex-start; margin-bottom: auto; padding: 5px 11px; border: 1px solid #d0d5dd; border-radius: 999px; color: #475467; background: rgba(255,255,255,.72); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.industry p { max-width: 520px; margin: 0; color: #667085; }

.quote-block { position: relative; overflow: hidden; display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; padding: 68px; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; color: white; background: linear-gradient(135deg, #101828 0%, #172554 70%, #312e81 100%); box-shadow: var(--shadow); }
.quote-block::after { content: ""; position: absolute; width: 340px; height: 340px; right: -150px; bottom: -170px; border: 1px solid rgba(125,211,252,.35); border-radius: 50%; box-shadow: 0 0 0 55px rgba(125,211,252,.035), 0 0 0 110px rgba(167,139,250,.025); }
.quote-block blockquote { position: relative; z-index: 1; margin: 0; font: 600 clamp(1.5rem, 3vw, 2.5rem)/1.3 "Manrope", sans-serif; letter-spacing: -.025em; }
.quote-block .note { color: #b7c3d7; }

.cta { position: relative; overflow: hidden; padding: 80px; border-radius: 28px; color: white; background: linear-gradient(125deg, #1d4ed8 0%, #4f46e5 54%, #6d28d9 100%); box-shadow: var(--shadow-blue); }
.cta::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px); background-size: 46px 46px; mask-image: linear-gradient(90deg, transparent, black); }
.cta::after { content: ""; position: absolute; width: 360px; height: 360px; right: -100px; bottom: -220px; border: 72px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta > * { position: relative; z-index: 1; }
.cta .eyebrow { color: #bae6fd; }
.cta .eyebrow::before { box-shadow: 0 0 0 5px rgba(186,230,253,.12); }
.cta h2 { max-width: 830px; }
.cta p { max-width: 660px; color: #dbeafe; font-size: 1.12rem; }
.cta .button { color: #1d4ed8; border-color: white; background: white; box-shadow: 0 10px 28px rgba(15,23,42,.22); }
.cta .button:hover { color: #1e40af; background: #eff6ff; }

.page-hero { position: relative; overflow: hidden; padding: 96px 0 88px; color: white; background: #080d1e; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 10%, rgba(37,99,235,.3), transparent 31%), radial-gradient(circle at 88% 60%, rgba(124,58,237,.22), transparent 32%); }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to right, black, transparent); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 72px; align-items: end; }
.page-hero h1 { font-size: clamp(3rem, 5.5vw, 5.35rem); }
.page-hero .highlight { color: transparent; }
.page-hero-side { padding: 28px 0 4px 30px; border-left: 1px solid rgba(255,255,255,.2); }
.page-hero-side p { color: #b8c3d8; font-size: 1.14rem; }
.page-hero .button-ghost { color: white; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05); }
.breadcrumb { display: flex; gap: 8px; margin-bottom: 27px; color: #9eabc0; font-size: .82rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb span { color: #7dd3fc; }

.feature-row { display: grid; grid-template-columns: .8fr 1.2fr; gap: 88px; padding: 52px 0; border-top: 1px solid var(--line); }
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-row h3 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 24px; }
.check { position: relative; padding-left: 29px; color: #475467; }
.check::before { content: "✓"; position: absolute; left: 0; top: 1px; display: grid; place-items: center; width: 19px; height: 19px; border-radius: 6px; color: #175cd3; background: #dbeafe; font-size: .7rem; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; counter-reset: p; }
.process-card { min-height: 265px; padding: 27px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.035); counter-increment: p; transition: transform .2s, background .2s; }
.process-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.06); }
.process-card::before { content: "0" counter(p); display: block; margin-bottom: 68px; color: #7dd3fc; font: 800 .85rem "Manrope",sans-serif; }
.process-card h3 { color: white; font-size: 1.18rem; }
.process-card p { font-size: .9rem; }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-family: "Manrope", sans-serif; font-weight: 800; cursor: pointer; }
.faq-item button span { display: grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 8px; color: var(--blue); background: #eff6ff; transition: transform .25s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { max-width: 820px; padding-bottom: 23px; color: #667085; }
.faq-item.open .faq-answer { max-height: 340px; }
.faq-item.open button span { transform: rotate(45deg); }

.form-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 76px; align-items: start; }
.contact-card { position: relative; overflow: hidden; padding: 36px; border-radius: var(--radius); color: white; background: linear-gradient(145deg, #101828, #172554); box-shadow: var(--shadow); }
.contact-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; bottom: -90px; border-radius: 50%; background: rgba(56,189,248,.12); }
.contact-card p, .contact-card a { color: #b8c3d8; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1/-1; }
.field label { color: #344054; font-size: .8rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--line-strong); border-radius: 10px; color: var(--ink); background: #fff; outline: none; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #84adff; box-shadow: 0 0 0 4px rgba(37,99,235,.1); }
.form-status { grid-column: 1/-1; min-height: 25px; margin: 0; font-size: .88rem; }
.form-status.success { color: #067647; }
.form-status.error { color: #b42318; }

.legal { max-width: 840px; }
.legal h2 { margin-top: 2.2em; font-size: 1.65rem; }
.legal h3 { margin-top: 1.8em; font-size: 1.15rem; letter-spacing: -.015em; }
.legal p, .legal li { color: #475467; }
.legal li { margin-bottom: 9px; }
.legal-note { padding: 20px 22px; border-left: 4px solid var(--blue); border-radius: 0 10px 10px 0; background: #eff6ff; }

/* Agentic CRM product architecture */
.product-hero::before { background: radial-gradient(circle at 12% 10%, rgba(37,99,235,.34), transparent 31%), radial-gradient(circle at 88% 60%, rgba(124,58,237,.27), transparent 34%), radial-gradient(circle at 55% 120%, rgba(34,211,238,.12), transparent 35%); }
.platform-map { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: 30px; background: #f8faff; box-shadow: var(--shadow-sm); }
.manager-card { position: relative; overflow: hidden; display: grid; grid-template-columns: auto 1fr .8fr; align-items: center; gap: 25px; padding: 30px; border: 1px solid rgba(125,211,252,.22); border-radius: 20px; color: white; background: linear-gradient(125deg, #101828, #172554 65%, #312e81); box-shadow: 0 18px 45px rgba(16,24,40,.19); }
.manager-card::after { content: ""; position: absolute; width: 250px; height: 250px; right: -110px; top: -130px; border-radius: 50%; background: rgba(56,189,248,.12); }
.role-icon { display: grid; place-items: center; flex: 0 0 auto; width: 55px; height: 55px; border: 1px solid rgba(125,211,252,.34); border-radius: 16px; color: #bae6fd; background: rgba(56,189,248,.1); font: 800 .82rem "Manrope", sans-serif; box-shadow: inset 0 0 22px rgba(56,189,248,.08); }
.map-label { display: block; margin-bottom: 4px; color: #7dd3fc; font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.manager-card h3 { margin-bottom: 5px; color: white; }
.manager-card p { margin: 0; color: #b8c3d8; font-size: .9rem; }
.manager-status { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.manager-status span { padding: 9px 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; color: #cbd5e1; background: rgba(255,255,255,.045); font-size: .7rem; font-weight: 700; }
.map-connector { position: relative; height: 54px; }
.map-connector::before { content: ""; position: absolute; left: 50%; top: 0; width: 1px; height: 30px; background: #b8c7e4; }
.map-connector::after { content: ""; position: absolute; left: 12%; right: 12%; top: 29px; height: 1px; background: #b8c7e4; }
.map-connector span::before, .map-connector span::after { content: ""; position: absolute; top: 29px; width: 1px; height: 25px; background: #b8c7e4; }
.map-connector span::before { left: 12%; }
.map-connector span::after { right: 12%; }
.map-connector.downward::after, .map-connector.downward span::before, .map-connector.downward span::after { display: none; }
.map-connector.downward::before { height: 54px; }
.department-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.department-card { position: relative; overflow: hidden; min-height: 280px; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 8px 24px rgba(16,24,40,.06); transition: transform .22s, box-shadow .22s; }
.department-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; }
.department-card.sales::before { background: #3b82f6; }
.department-card.support::before { background: #06b6d4; }
.department-card.accounts::before { background: #8b5cf6; }
.department-card.admin::before { background: #6366f1; }
.department-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16,24,40,.1); }
.department-card h3 { margin: 20px 0 10px; font-size: 1.13rem; }
.department-card p { color: #667085; font-size: .87rem; }
.department-card ul { display: grid; gap: 7px; margin: 20px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); list-style: none; }
.department-card li { position: relative; padding-left: 16px; color: #475467; font-size: .76rem; font-weight: 700; }
.department-card li::before { content: ""; position: absolute; left: 1px; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: #60a5fa; }
.dept-label { display: inline-flex; padding: 5px 9px; border: 1px solid #dbe5f7; border-radius: 999px; color: #475467; background: #f8faff; font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.core-strip { display: grid; grid-template-columns: .55fr 1.45fr; gap: 32px; align-items: center; padding: 27px 30px; border: 1px solid #c7d7f2; border-radius: 18px; background: white; box-shadow: var(--shadow-sm); }
.core-strip h3 { margin: 0; }
.core-items { display: flex; flex-wrap: wrap; gap: 8px; }
.core-items span { padding: 7px 10px; border: 1px solid #dbe5f7; border-radius: 8px; color: #475467; background: #f7f9fc; font-size: .72rem; font-weight: 700; }
.manager-mini { display: grid; grid-template-columns: .7fr 1.3fr; gap: 34px; align-items: center; margin-bottom: 16px; padding: 25px 28px; border-radius: 18px; color: white; background: linear-gradient(125deg, #101828, #172554 68%, #312e81); box-shadow: var(--shadow); }
.manager-mini > div { display: flex; align-items: center; gap: 15px; }
.manager-mini small, .manager-mini strong { display: block; }
.manager-mini small { margin-bottom: 3px; color: #9eabc0; font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; }
.manager-mini strong { font: 800 1.2rem "Manrope", sans-serif; }
.manager-mini p { margin: 0; color: #b8c3d8; }
.home-departments .department-card { min-height: 225px; }
.comparison-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; }
.comparison-card { min-height: 370px; padding: 38px; border-radius: 22px; }
.comparison-card > span { display: inline-flex; padding: 6px 11px; border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.comparison-card h3 { margin: 38px 0 25px; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.comparison-card ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.comparison-card li { position: relative; padding-left: 27px; }
.comparison-card li::before { position: absolute; left: 0; font-weight: 900; }
.muted-card { border: 1px solid var(--line); color: #475467; background: #f2f4f7; }
.muted-card > span { color: #667085; background: #e4e7ec; }
.muted-card li::before { content: "−"; color: #98a2b3; }
.active-card { color: white; background: linear-gradient(135deg, #172554, #3730a3); box-shadow: var(--shadow-blue); }
.active-card > span { color: #bae6fd; border: 1px solid rgba(125,211,252,.25); background: rgba(56,189,248,.1); }
.active-card li { color: #d6deec; }
.active-card li::before { content: "✓"; color: #7dd3fc; }
.comparison-arrow { display: grid; place-items: center; width: 47px; height: 47px; border: 1px solid #bfdbfe; border-radius: 50%; color: var(--blue); background: white; box-shadow: var(--shadow-sm); font-size: 1.3rem; }

.site-footer { position: relative; overflow: hidden; padding: 76px 0 25px; color: #d6deec; background: #070b1a; }
.site-footer::before { content: ""; position: absolute; width: 500px; height: 500px; top: -300px; left: -200px; border-radius: 50%; background: rgba(37,99,235,.14); filter: blur(10px); }
.footer-main { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding-bottom: 60px; }
.brand-footer { display: inline-flex; padding: 8px 13px; border-radius: 9px; background: white; }
.brand-footer img { width: 153px; }
.footer-brand p { max-width: 340px; margin-top: 24px; color: #98a5ba; }
.footer-email { color: #7dd3fc; text-decoration: none; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links div { display: grid; align-content: start; gap: 9px; }
.footer-links h2 { margin-bottom: 10px; color: white; font-size: .77rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-links a { color: #9ca9bd; text-decoration: none; font-size: .89rem; transition: color .2s, transform .2s; }
.footer-links a:hover { color: #7dd3fc; transform: translateX(2px); }
.footer-bottom { position: relative; display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #718096; font-size: .78rem; }
.footer-bottom p { margin: 0; }

@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 5px rgba(52,211,153,.1); } 50% { box-shadow: 0 0 0 8px rgba(52,211,153,.03); } }

@media (max-width: 980px) {
  .nav-wrap { gap: 14px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .site-nav { display: none; position: absolute; top: 77px; left: 20px; right: 20px; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: var(--shadow); }
  .site-nav.open { display: grid; gap: 0; }
  .site-nav > a, .nav-group > button { display: block; width: 100%; padding: 13px; text-align: left; }
  .site-nav > a::after { display: none; }
  .nav-panel { display: none; visibility: visible; opacity: 1; transform: none; position: static; width: auto; margin: 0 7px 10px; box-shadow: none; }
  .nav-group:hover .nav-panel, .nav-group:focus-within .nav-panel { display: none; transform: none; }
  .nav-group.open .nav-panel { display: grid; transform: none; }
  .hero-grid, .page-hero-grid, .workflow, .feature-row, .form-layout, .quote-block, .footer-main { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { gap: 66px; }
  .agent-demo { width: min(650px, 100%); margin-inline: auto; }
  .card-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .metric:nth-child(4) { border-top: 1px solid var(--line); }
  .sticky-copy { position: static; }
  .page-hero-grid { gap: 42px; }
  .page-hero-side { max-width: 720px; }
  .footer-main { gap: 52px; }
  .manager-card { grid-template-columns: auto 1fr; }
  .manager-status { grid-column: 1 / -1; }
  .department-grid { grid-template-columns: repeat(2, 1fr); }
  .map-connector::after, .map-connector span::before, .map-connector span::after { display: none; }
  .manager-mini { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .container { width: min(100% - 28px, 1200px); }
  .section { padding: 76px 0; }
  .section-sm { padding: 54px 0; }
  .site-header { height: 70px; }
  .brand img { width: 143px; }
  .site-nav { top: 69px; left: 14px; right: 14px; }
  .section-heading { display: block; margin-bottom: 36px; }
  .section-heading .text-link { margin-top: 14px; }
  .hero { padding: 68px 0 76px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero-grid { gap: 52px; }
  .button { width: 100%; }
  .hero-proof { gap: 13px 20px; }
  .agent-demo { border-radius: 20px; }
  .demo-window { border-radius: 19px; }
  .demo-body { padding: 17px; }
  .bubble { width: 95%; font-size: .81rem; }
  .bubble.user { width: 87%; }
  .agent-event { align-items: flex-start; }
  .agent-event b { white-space: nowrap; }
  .card-grid, .card-grid.two, .process-grid, .industry-grid, .check-grid, .contact-form, .footer-links { grid-template-columns: 1fr; }
  .card { padding: 27px; }
  .card-number { margin-bottom: 40px; }
  .industry { min-height: 270px; padding: 27px; }
  .step { grid-template-columns: 50px 1fr; gap: 15px; }
  .step::before { width: 42px; height: 42px; }
  .metrics { grid-template-columns: 1fr; }
  .metric, .metric:nth-child(2), .metric:nth-child(3), .metric:nth-child(4) { border-left: 0; border-top: 1px solid var(--line); }
  .metric:first-child { border-top: 0; }
  .quote-block, .cta { padding: 38px 27px; border-radius: 22px; }
  .quote-block { gap: 27px; }
  .page-hero { padding: 72px 0 66px; }
  .page-hero-grid { gap: 30px; }
  .page-hero-side { padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .feature-row { gap: 24px; padding: 40px 0; }
  .contact-form, .contact-card { padding: 26px 22px; }
  .field.full { grid-column: auto; }
  .footer-main { gap: 44px; }
  .footer-links { gap: 30px; }
  .footer-bottom { display: grid; gap: 7px; }
  .platform-map { padding: 14px; border-radius: 20px; }
  .manager-card { grid-template-columns: 1fr; padding: 24px 21px; }
  .manager-status { grid-template-columns: 1fr; }
  .department-grid { grid-template-columns: 1fr; }
  .department-card, .home-departments .department-card { min-height: auto; }
  .core-strip { grid-template-columns: 1fr; gap: 18px; padding: 24px 21px; }
  .manager-mini { padding: 23px 21px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-card { min-height: auto; padding: 28px 23px; }
  .comparison-arrow { margin-inline: auto; transform: rotate(90deg); }
}

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