:root {
  --ink: #10111a;
  --muted: #626779;
  --line: rgba(20, 22, 40, .12);
  --surface: #fff;
  --soft: #f4f5fa;
  --blue: #3157f5;
  --violet: #6f45ea;
  --pink: #d875c7;
  --orange: #f39a55;
  --dark: #11121a;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(39, 46, 88, .13);
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 10px 15px; border-radius: 10px; background: var(--dark); color: #fff; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #6384ff; outline-offset: 3px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 78px; border-bottom: 1px solid transparent; transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled { background: rgba(250, 251, 255, .88); border-color: rgba(20, 22, 40, .08); box-shadow: 0 10px 40px rgba(45, 48, 72, .06); backdrop-filter: blur(18px); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 29px; font-weight: 800; letter-spacing: -.05em; }
.brand img { border-radius: 0%; }
.primary-nav { display: flex; align-items: center; gap: 27px; font-size: 14px; font-weight: 600; }
.primary-nav > a:not(.button) { position: relative; color: #313340; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--blue); transition: right .2s ease; }
.primary-nav > a:not(.button):hover::after { right: 0; }
.primary-nav .nav-login { margin-left: 10px; }
.menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.8); box-shadow: 0 5px 20px rgba(30,30,50,.08); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-button span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button { min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 20px; color: #fff; background: var(--ink); }
.button-primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--violet)); box-shadow: 0 14px 30px rgba(70, 76, 222, .26); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(70, 76, 222, .34); }
.button-secondary { border-color: rgba(17,18,26,.16); background: rgba(255,255,255,.62); backdrop-filter: blur(12px); }
.button-light { background: #fff; color: var(--ink); box-shadow: 0 12px 30px rgba(0,0,0,.16); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }
.button-full { width: 100%; }

.hero { min-height: 780px; padding: 150px 0 85px; position: relative; isolation: isolate; overflow: hidden; background: linear-gradient(145deg, #f7fbff 0%, #faf7ff 45%, #fff8fa 100%); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .28; background-image: radial-gradient(circle, rgba(67,77,130,.35) 1px, transparent 1px); background-size: 20px 20px; mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent); }
.hero-aurora { position: absolute; z-index: -1; width: 850px; height: 650px; right: -140px; top: -100px; filter: blur(85px); opacity: .44; background: radial-gradient(circle at 28% 35%, #68c6ff 0 13%, transparent 38%), radial-gradient(circle at 72% 30%, #d98bd4 0 16%, transparent 42%), radial-gradient(circle at 54% 72%, #7c67ee 0 20%, transparent 46%); animation: breathe 9s ease-in-out infinite alternate; }
@keyframes breathe { to { transform: translate3d(-30px, 25px, 0) scale(1.06); } }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(42px, 7vw, 96px); align-items: center; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { margin-bottom: 21px; display: flex; align-items: center; gap: 10px; color: #4b5063; font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: linear-gradient(90deg, var(--orange), var(--violet), var(--blue)); }
.eyebrow-light { color: rgba(255,255,255,.7); }
.hero h1 { margin-bottom: 28px; font-size: clamp(3.25rem, 6.1vw, 5.45rem); line-height: .98; letter-spacing: -.066em; font-weight: 800; }
.hero h1 em { display: block; padding-bottom: .1em; font-style: normal; color: transparent; background: linear-gradient(100deg, #f18d4a 0%, #a957d5 43%, #315df5 100%); -webkit-background-clip: text; background-clip: text; }
.hero-lede { max-width: 650px; margin-bottom: 32px; color: #53586a; font-size: clamp(1.08rem, 1.7vw, 1.27rem); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-assurances { margin: 24px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 12px 24px; color: #616678; font-size: 13px; font-weight: 600; }
.hero-assurances li::before { content: "✓"; margin-right: 7px; color: var(--blue); font-weight: 900; }

.product-stage { position: relative; min-height: 700px; display: grid; place-items: center; }
.stage-glow { position: absolute; inset: 6% 0 2%; border-radius: 45%; background: linear-gradient(135deg, rgba(116,202,255,.42), rgba(213,137,221,.45), rgba(255,181,177,.45)); filter: blur(38px); }
.usecase-carousel { width: min(100%, 520px); position: relative; z-index: 2; }
.usecase-viewport { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid rgba(255,255,255,.82); border-radius: 34px; background: #17151b; box-shadow: 0 32px 80px rgba(49,59,109,.22), inset 0 1px rgba(255,255,255,.9); }
.usecase-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .6s ease, visibility .6s; }
.usecase-slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.usecase-slide > img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.015); transition: transform 8s ease; }
.usecase-slide.is-active > img { transform: scale(1.055); }
.usecase-vignette { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,8,12,.04) 0%, rgba(10,8,12,.08) 38%, rgba(10,8,12,.38) 100%); }
.scenario-label { position: absolute; top: 17px; left: 17px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.5); border-radius: 999px; color: #fff; background: rgba(20,16,22,.38); box-shadow: 0 8px 20px rgba(0,0,0,.12); backdrop-filter: blur(12px); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.scenario-learn-more { position: absolute; z-index: 2; top: 17px; right: 17px; display: inline-flex; align-items: center; gap: 5px; padding: 7px 11px; border: 1px solid rgba(255,173,102,.7); border-radius: 999px; color: #5738a5; background: rgba(255,241,222,.94); box-shadow: 0 8px 20px rgba(24,18,42,.14); backdrop-filter: blur(12px); font-size: 10px; font-weight: 850; letter-spacing: .02em; text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.scenario-learn-more span { font-size: 11px; line-height: 1; transition: transform .2s ease; }
.scenario-learn-more:hover { color: #fff; border-color: rgba(255,255,255,.72); background: linear-gradient(110deg, #ef8e48, #8d55d8); transform: translateY(-1px); }
.scenario-learn-more:hover span { transform: translate(1px, -1px); }
.scenario-learn-more:focus-visible { outline: 3px solid rgba(255,255,255,.95); outline-offset: 3px; }
.persona-chat { position: absolute; right: 16px; bottom: 16px; width: calc(100% - 32px); padding: 15px; overflow: hidden; border: 1px solid rgba(255,255,255,.84); border-radius: 23px; color: #202335; background: linear-gradient(145deg, rgba(246,250,255,.92), rgba(249,241,255,.9)); box-shadow: 0 20px 45px rgba(15,13,28,.28); backdrop-filter: blur(18px); }
.persona-chat::before { content: ""; position: absolute; width: 150px; height: 150px; right: -45px; top: -70px; border-radius: 50%; background: radial-gradient(circle, rgba(113,75,235,.19), transparent 68%); pointer-events: none; }
.persona-row { position: relative; display: grid; grid-template-columns: 30px 1fr auto; gap: 9px; align-items: center; }
.persona-row img { width: 30px; height: 30px; padding: 2px; border-radius: 50%; background: #fff; box-shadow: 0 5px 14px rgba(59,64,116,.14); }
.persona-row strong, .persona-row span { display: block; }
.persona-row strong { font-size: 12px; line-height: 1.2; }
.persona-row span { margin-top: 2px; color: #777c91; font-size: 8px; font-weight: 600; }
.persona-row i { width: 8px; height: 8px; border-radius: 50%; background: #27b276; box-shadow: 0 0 0 4px rgba(39,178,118,.1); }
.persona-question { width: fit-content; max-width: 88%; margin: 12px 0 9px auto; padding: 9px 11px; border: 1px solid rgba(119,89,220,.13); border-radius: 14px 14px 4px 14px; color: #272a3a; background: linear-gradient(135deg, rgba(224,232,255,.95), rgba(240,222,255,.94)); font-size: 12px; font-weight: 700; line-height: 1.35; }
.persona-answer { padding: 11px 12px; border: 1px solid rgba(55,61,105,.08); border-radius: 4px 15px 15px 15px; background: rgba(255,255,255,.82); }
.persona-answer p { margin-bottom: 8px; color: #343849; font-size: 12px; line-height: 1.45; }
.persona-answer small { display: block; padding-top: 7px; border-top: 1px solid rgba(50,55,90,.09); color: #686e88; font-size: 7.5px; font-weight: 800; }
.quick-pills { margin-top: 9px; display: flex; flex-wrap: wrap; gap: 6px; }
.quick-pills span { padding: 6px 8px; border: 1px solid rgba(85,75,174,.14); border-radius: 999px; color: #535979; background: rgba(255,255,255,.63); font-size: 8.5px; font-weight: 800; }
.usecase-controls { min-height: 48px; padding-top: 12px; display: grid; grid-template-columns: 36px 1fr 36px; gap: 12px; align-items: center; }
.usecase-controls > button { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(28,31,55,.12); border-radius: 50%; color: #4a4e61; background: rgba(255,255,255,.75); cursor: pointer; transition: transform .2s ease, background .2s ease; }
.usecase-controls > button:hover { transform: translateY(-2px); background: #fff; }
.usecase-dots { display: flex; justify-content: center; gap: 7px; }
.usecase-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: rgba(43,47,71,.25); cursor: pointer; transition: width .25s ease, background .25s ease; }
.usecase-dots button.is-active { width: 24px; background: linear-gradient(90deg, var(--blue), var(--violet)); }

.industry-strip { border-top: 1px solid rgba(20,22,40,.07); border-bottom: 1px solid rgba(20,22,40,.07); background: #fff; }
.strip-content { min-height: 105px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.strip-content p { max-width: 220px; margin: 0; color: #707485; font-size: 12px; font-weight: 800; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.strip-content ul { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 15px 34px; color: #2f3240; font-weight: 700; }
.strip-content li::before { content: "✦"; margin-right: 8px; color: #a581e9; font-size: 9px; }

.section-heading { margin-bottom: 58px; }
.section-heading h2, .pricing-copy h2, .savings-copy h2, .faq-intro h2 { margin-bottom: 22px; font-size: clamp(2.55rem, 5vw, 4.75rem); line-height: 1.03; letter-spacing: -.055em; }
.section-heading > p, .section-heading > div + p { max-width: 680px; color: var(--muted); font-size: 18px; }
.section-heading.centered { max-width: 900px; margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered > p { margin-inline: auto; }
.section-heading.narrow { max-width: 780px; }
.problem-section { background: #fff; }
.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.outcome-grid article { min-height: 300px; padding: 40px; background: #fff; }
.outcome-grid strong { display: block; margin-bottom: 24px; color: transparent; background: linear-gradient(110deg, var(--orange), var(--violet), var(--blue)); -webkit-background-clip: text; background-clip: text; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; letter-spacing: -.05em; }
.outcome-grid h3 { margin-bottom: 12px; font-size: 22px; }
.outcome-grid p { margin-bottom: 0; color: var(--muted); }

.steps-section { color: #fff; background: var(--dark); }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { margin-bottom: 5px; color: rgba(255,255,255,.58); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { min-height: 470px; padding: 24px; position: relative; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.1); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); overflow: hidden; }
.step-number { color: rgba(255,255,255,.42); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.step-visual { height: 235px; margin: 25px 0; position: relative; overflow: hidden; border-radius: 20px; background: #090a18; }
.step-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease; }
.step-card:hover .step-image img { transform: scale(1.035); filter: saturate(1.08) brightness(1.05); }
.step-card h3 { margin-bottom: 10px; font-size: 24px; }
.step-card p { margin-bottom: 0; color: rgba(255,255,255,.58); }
.center-action { margin-top: 38px; display: flex; justify-content: center; }

.use-cases { background: #f6f6f9; }
.case-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 485px 370px; gap: 16px; }
.case-card { min-width: 0; position: relative; overflow: hidden; border-radius: 25px; color: #fff; background: #222; }
.case-large { grid-row: span 2; }
.case-wide { grid-column: span 2; }
.case-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.case-card:hover img { transform: scale(1.045); }
.case-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,6,11,.9), rgba(5,6,11,.08) 70%); }
.case-tag { position: absolute; top: 22px; left: 22px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(12,13,20,.24); backdrop-filter: blur(10px); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.case-card > div { position: absolute; inset: auto 0 0; padding: 28px; }
.case-card h3 { margin-bottom: 10px; font-size: clamp(1.55rem, 2.3vw, 2.45rem); line-height: 1.08; letter-spacing: -.035em; }
.case-card p { max-width: 580px; margin-bottom: 18px; color: rgba(255,255,255,.72); font-size: 14px; }
.case-card b { font-size: 13px; }
.case-card b span { margin-left: 5px; transition: margin .2s ease; }.case-card:hover b span { margin-left: 10px; }
.more-use-cases { margin-top: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--line); }
.more-use-cases a { min-height: 68px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; background: #fff; font-size: 13px; font-weight: 700; }
.more-use-cases a:hover b { transform: translateX(4px); }.more-use-cases b { transition: transform .2s ease; }

.savings-section { background: linear-gradient(150deg, #f8fbff, #faf7ff); }
.savings-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px, 7vw, 100px); align-items: center; }
.savings-copy > p { color: var(--muted); font-size: 18px; }
.savings-copy ul { margin: 34px 0 0; padding: 0; list-style: none; display: grid; gap: 22px; }
.savings-copy li { padding-left: 21px; border-left: 2px solid #d9ddef; color: var(--muted); }
.savings-copy li span { display: block; margin-bottom: 4px; color: var(--ink); font-weight: 800; }
.calculator { padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(255,255,255,.95); border-radius: 30px; background: rgba(255,255,255,.76); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
.calculator-head { margin-bottom: 34px; display: flex; justify-content: space-between; gap: 20px; }
.calculator-head p { margin-bottom: 5px; color: #797e8f; font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.calculator-head h3 { margin: 0; font-size: 29px; letter-spacing: -.04em; }
.calculator-head > span { align-self: start; padding: 6px 10px; border-radius: 999px; color: #5f6380; background: #eff1fb; font-size: 10px; font-weight: 800; }
.control-group { margin: 0 0 29px; }
.control-label { margin-bottom: 12px; display: flex; justify-content: space-between; gap: 20px; font-size: 13px; font-weight: 700; }
.control-label output { color: var(--blue); font-size: 14px; }
input[type="range"] { width: 100%; height: 6px; appearance: none; border-radius: 999px; background: linear-gradient(to right, var(--blue) var(--range-progress, 0%), #e3e5ee var(--range-progress, 0%)); cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { width: 20px; height: 20px; appearance: none; border: 4px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 2px 9px rgba(49,87,245,.4); }
input[type="range"]::-moz-range-thumb { width: 13px; height: 13px; border: 4px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 2px 9px rgba(49,87,245,.4); }
.range-scale { margin-top: 7px; display: flex; justify-content: space-between; color: #999dac; font-size: 9px; }
.results-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 10px; }
.results-grid > div { padding: 18px; border-radius: 18px; background: #f0f2f8; }
.results-grid span, .results-grid small { display: block; color: #74798a; font-size: 10px; font-weight: 700; }
.results-grid strong { display: block; margin: 8px 0 2px; font-size: clamp(1.85rem, 4vw, 2.55rem); line-height: 1; letter-spacing: -.05em; }
.results-grid .result-primary { color: #fff; background: linear-gradient(135deg, #3d5ef2, #7548e1); }
.results-grid .result-primary span, .results-grid .result-primary small { color: rgba(255,255,255,.72); }
.calculator-note { margin: 15px 4px 0; color: #9296a4; font-size: 10px; line-height: 1.45; }

.capabilities-section { background: #fff; }
.split-heading.dark-text > p { color: var(--muted); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.capability-grid article { min-height: 260px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.capability-grid article > span { display: block; margin-bottom: 55px; color: #989baa; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.capability-grid h3 { margin-bottom: 10px; font-size: 21px; }.capability-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.proof-section { color: #fff; background: #12131a; }
.proof-section .section-heading { margin-bottom: 46px; }.proof-section .section-heading h2 { color: #fff; }
.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quotes-grid blockquote { min-height: 320px; margin: 0; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; background: linear-gradient(150deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); }
.quotes-grid blockquote > p { font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.45; letter-spacing: -.025em; }
.quotes-grid footer strong, .quotes-grid footer span { display: block; }.quotes-grid footer span { color: rgba(255,255,255,.48); font-size: 13px; }

.pricing-section { background: #f6f6f9; }
.pricing-grid { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.pricing-copy > p { max-width: 630px; color: var(--muted); font-size: 18px; }
.price-card { padding: 36px; border: 1px solid rgba(28,30,50,.1); border-radius: 30px; background: #fff; box-shadow: 0 22px 65px rgba(37,40,70,.1); }
.price-top { padding-bottom: 25px; display: flex; justify-content: space-between; align-items: start; border-bottom: 1px solid var(--line); }
.price-top > span { padding: 7px 10px; border-radius: 999px; color: #545a7e; background: #eff1fc; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.price-top p { margin: 0; text-align: right; }.price-top strong { font-size: 50px; line-height: 1; letter-spacing: -.06em; }.price-top small { color: var(--muted); }
.price-card ul { margin: 27px 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.price-card li::before { content: "✓"; width: 23px; height: 23px; margin-right: 10px; display: inline-grid; place-items: center; border-radius: 50%; color: var(--blue); background: #eff2ff; font-size: 11px; font-weight: 900; }
.trial-note { margin: 15px 0 0; color: #777c8d; text-align: center; font-size: 11px; }.trial-note strong { color: #4f55a8; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: clamp(55px, 9vw, 130px); align-items: start; }
.faq-intro { position: sticky; top: 120px; }.faq-intro > p { color: var(--muted); }.faq-intro > a { color: var(--blue); font-weight: 800; }.faq-intro > a span { margin-left: 5px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 25px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; list-style: none; cursor: pointer; font-size: 18px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 20px; transition: transform .2s ease; }.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; padding: 0 38px 25px 0; margin: 0; color: var(--muted); }

.final-cta { min-height: 600px; padding: 110px 0; position: relative; overflow: hidden; display: grid; place-items: center; color: #fff; background: #11121a; }
.final-cta::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 22px 22px; mask-image: radial-gradient(circle, #000, transparent 70%); }
.final-orb { position: absolute; width: 800px; height: 500px; border-radius: 50%; filter: blur(80px); opacity: .55; background: radial-gradient(circle at 30% 60%, #f3914b, transparent 34%), radial-gradient(circle at 55% 45%, #ad47ce, transparent 35%), radial-gradient(circle at 75% 60%, #315df5, transparent 35%); }
.final-content { position: relative; z-index: 2; max-width: 850px; text-align: center; }.final-content > img { margin: 0 auto 24px; border-radius: 50%; }.final-content .eyebrow { justify-content: center; }.final-content h2 { margin-bottom: 20px; font-size: clamp(3rem, 6vw, 5.4rem); line-height: .98; letter-spacing: -.06em; }.final-content > p { color: rgba(255,255,255,.7); font-size: 19px; }.centered-actions { justify-content: center; margin-top: 30px; }

.site-footer { padding: 76px 0 26px; background: #f5f5f7; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 45px; padding-bottom: 60px; }
.footer-brand p { max-width: 260px; margin-top: 16px; color: var(--muted); }
.footer-top nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }.footer-top nav h2 { margin-bottom: 8px; font-size: 13px; }.footer-top nav a { color: #666b7b; font-size: 13px; }.footer-top nav a:hover { color: var(--blue); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); color: #7f8391; font-size: 12px; }.footer-bottom p { margin: 0; }.footer-bottom div { display: flex; gap: 20px; }

.contact-page { min-height: 100vh; background: #f7f9ff; }
.contact-header { background: rgba(250,251,255,.9); }
.contact-back { display: inline-flex; align-items: center; gap: 8px; color: #4f5467; font-size: 14px; font-weight: 700; }
.contact-back span { font-size: 19px; transition: transform .2s ease; }
.contact-back:hover span { transform: translateX(-4px); }
.contact-main { min-height: calc(100vh - 80px); padding: 145px 0 90px; position: relative; isolation: isolate; overflow: hidden; }
.contact-main::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .2; background-image: radial-gradient(circle, rgba(67,77,130,.32) 1px, transparent 1px); background-size: 21px 21px; mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent); }
.contact-aurora { position: absolute; z-index: -1; width: 850px; height: 680px; left: -240px; top: 20px; filter: blur(90px); opacity: .32; background: radial-gradient(circle at 30% 30%, #76c8ff, transparent 34%), radial-gradient(circle at 62% 52%, #bc81eb, transparent 38%), radial-gradient(circle at 40% 78%, #ffb8c2, transparent 30%); }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.contact-intro { padding-top: 32px; }
.contact-intro h1 { margin-bottom: 25px; font-size: clamp(3rem, 5.4vw, 5.2rem); line-height: .98; letter-spacing: -.062em; }
.contact-intro > p:not(.eyebrow):not(.direct-email) { max-width: 590px; color: var(--muted); font-size: 18px; }
.contact-expectations { margin-top: 38px; display: grid; gap: 1px; overflow: hidden; border: 1px solid rgba(20,22,40,.1); border-radius: 20px; background: rgba(20,22,40,.09); }
.contact-expectations article { padding: 18px 20px; background: rgba(255,255,255,.76); backdrop-filter: blur(10px); }
.contact-expectations strong, .contact-expectations span { display: block; }
.contact-expectations strong { margin-bottom: 3px; font-size: 14px; }
.contact-expectations span { color: #74798a; font-size: 12px; line-height: 1.45; }
.direct-email { margin: 24px 0 0; color: #777c8c; font-size: 13px; }
.direct-email a { color: var(--blue); font-weight: 800; }
.contact-panel { min-height: 650px; padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(255,255,255,.96); border-radius: 32px; background: rgba(255,255,255,.82); box-shadow: 0 28px 80px rgba(42,48,88,.14); backdrop-filter: blur(22px); }
.contact-panel-head { margin-bottom: 30px; display: flex; align-items: end; justify-content: space-between; gap: 22px; }
.contact-panel-head p { margin: 0; font-size: 25px; font-weight: 800; letter-spacing: -.035em; }
.contact-panel-head span { color: #858999; text-align: right; font-size: 10px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 18px; }
.field label { margin: 0 0 7px 2px; display: block; color: #373a49; font-size: 12px; font-weight: 800; }
.field label span { color: var(--blue); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(30,33,55,.13); border-radius: 13px; color: var(--ink); background: rgba(249,250,255,.8); transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input, .field select { height: 49px; padding: 0 14px; }
.field textarea { min-height: 135px; padding: 13px 14px; resize: vertical; line-height: 1.5; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(49,87,245,.3); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: #6981ef; background: #fff; box-shadow: 0 0 0 4px rgba(49,87,245,.1); }
.field [aria-invalid="true"] { border-color: #c74b5a; box-shadow: 0 0 0 3px rgba(199,75,90,.08); }
.field-error { min-height: 16px; display: block; margin: 5px 2px 0; color: #b33b4b; font-size: 10px; }
.field-meta { display: flex; justify-content: space-between; gap: 20px; color: #9a9dab; font-size: 10px; }
.field-meta .field-error { flex: 1; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.contact-submit { border: 0; cursor: pointer; }
.contact-submit i { font-size: 17px; font-style: normal; transition: transform .2s ease; }
.contact-submit:hover i { transform: translateX(4px); }
.contact-submit:disabled { cursor: wait; opacity: .72; }
.form-status { min-height: 20px; margin: 12px 0 0; text-align: center; font-size: 12px; }
.form-status.error { color: #a42e40; }
.form-note { margin: 2px 0 0; color: #9498a5; text-align: center; font-size: 10px; }
.form-success { padding: 80px 20px; text-align: center; }
.form-success > span { width: 66px; height: 66px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--blue), var(--violet)); box-shadow: 0 15px 35px rgba(70,76,222,.27); font-size: 25px; font-weight: 900; }
.form-success h2 { margin-bottom: 10px; font-size: 38px; letter-spacing: -.04em; }
.form-success p { margin-bottom: 27px; color: var(--muted); }
.contact-footer { padding: 22px 0; border-top: 1px solid var(--line); background: #f7f9ff; }
.contact-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #858997; font-size: 11px; }
.contact-footer p { margin: 0; }
.contact-footer a { color: #565b70; font-weight: 700; }

@media (max-width: 1050px) {
  .primary-nav { gap: 18px; }.primary-nav > a:nth-child(3), .primary-nav > a:nth-child(5) { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }.hero h1 { font-size: clamp(3rem, 6vw, 4.6rem); }
  .case-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 500px 420px; }.case-large { grid-row: auto; }.case-wide { grid-column: span 2; }
  .savings-grid { grid-template-columns: 1fr; }.savings-copy { max-width: 750px; }.calculator { max-width: 790px; width: 100%; margin-inline: auto; }
}

@media (max-width: 820px) {
  .section { padding: 84px 0; }.container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { height: 70px; }.brand { font-size: 26px; }.brand img { width: 39px; height: 39px; }
  .menu-button { display: flex; }
  .primary-nav { position: fixed; inset: 70px 12px auto; max-height: calc(100vh - 86px); padding: 16px; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; border: 1px solid rgba(20,22,40,.1); border-radius: 22px; background: rgba(255,255,255,.97); box-shadow: 0 24px 70px rgba(30,35,70,.2); transform: translateY(-14px); opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .primary-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .primary-nav > a:not(.button) { display: block !important; padding: 14px 8px; border-bottom: 1px solid rgba(20,22,40,.08); font-size: 16px; }.primary-nav > a:not(.button)::after { display: none; }.primary-nav .nav-login { margin: 0 0 12px; border: 0 !important; }.primary-nav .button { width: 100%; }
  .hero { min-height: auto; padding: 120px 0 70px; }.hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 680px; }.product-stage { min-height: 700px; max-width: 650px; width: 100%; margin-inline: auto; }
  .strip-content { padding: 26px 0; flex-direction: column; align-items: flex-start; }.strip-content p { max-width: none; }.strip-content ul { justify-content: flex-start; }
  .outcome-grid { grid-template-columns: 1fr; }.outcome-grid article { min-height: 0; padding: 32px; }.outcome-grid strong { margin-bottom: 14px; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }.steps-grid { grid-template-columns: 1fr; }.step-card { min-height: 420px; }.step-visual { max-width: 420px; width: 100%; margin-inline: auto; }
  .more-use-cases { grid-template-columns: 1fr 1fr; }
  .capability-grid { grid-template-columns: 1fr 1fr; }.quotes-grid { grid-template-columns: 1fr; }.quotes-grid blockquote { min-height: 240px; }
  .pricing-grid, .faq-grid { grid-template-columns: 1fr; }.pricing-copy { max-width: 700px; }.price-card { max-width: 600px; width: 100%; margin-inline: auto; }.faq-intro { position: static; max-width: 680px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }.footer-brand { grid-column: 1 / -1; }
  .contact-main { padding-top: 115px; }.contact-grid { grid-template-columns: 1fr; gap: 42px; }.contact-intro { max-width: 720px; padding-top: 0; }.contact-panel { max-width: 720px; width: 100%; margin-inline: auto; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 74px; }.container { width: min(calc(100% - 28px), var(--container)); }.section { padding: 70px 0; }
  .hero { padding-top: 112px; }.hero h1 { font-size: clamp(2.85rem, 14vw, 4rem); }.hero-lede { font-size: 17px; }.hero-actions { flex-direction: column; }.hero-actions .button { width: 100%; }.hero-assurances { gap: 8px 15px; }
  .product-stage { min-height: 580px; }.usecase-carousel { width: min(100%, 430px); }.usecase-viewport { border-radius: 25px; }.persona-chat { right: 10px; bottom: 10px; width: calc(100% - 20px); padding: 11px; border-radius: 18px; }.persona-question { margin-top: 9px; }.persona-answer p { font-size: 12px; }.quick-pills { margin-top: 7px; }.quick-pills span { padding: 5px 7px; }
  .strip-content ul { gap: 11px 18px; font-size: 13px; }.section-heading { margin-bottom: 38px; }.section-heading h2, .pricing-copy h2, .savings-copy h2, .faq-intro h2 { font-size: clamp(2.35rem, 12vw, 3.2rem); }
  .case-grid { display: flex; flex-direction: column; }.case-card, .case-wide, .case-large { min-height: 450px; }.case-card > div { padding: 22px; }.more-use-cases { grid-template-columns: 1fr; }
  .calculator { padding: 22px 16px; border-radius: 23px; }.calculator-head h3 { font-size: 24px; }.calculator-head > span { display: none; }.results-grid { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: 1fr; }.capability-grid article { min-height: 220px; }.capability-grid article > span { margin-bottom: 35px; }
  .price-card { padding: 25px 19px; }.price-top strong { font-size: 43px; }.faq-list summary { font-size: 16px; }.faq-list details p { padding-right: 10px; }
  .final-cta { min-height: 540px; padding: 85px 0; }.final-content h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; }
  .contact-main { padding: 105px 0 60px; }.contact-back { font-size: 12px; }.contact-intro h1 { font-size: clamp(2.8rem, 13vw, 3.8rem); }.contact-panel { min-height: 0; padding: 24px 17px; border-radius: 24px; }.contact-panel-head { align-items: start; flex-direction: column; gap: 5px; }.contact-panel-head span { text-align: left; }.form-row { grid-template-columns: 1fr; gap: 0; }.contact-footer .container { align-items: flex-start; flex-direction: column; gap: 6px; }
}

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