:root {
  --sky-50: #f5fbff;
  --sky-100: #eaf7ff;
  --sky-200: #d5efff;
  --sky-300: #a9ddf8;
  --sky-500: #268ec2;
  --sky-600: #1278a9;
  --navy-950: #082b3b;
  --navy-900: #0c3547;
  --navy-800: #16485d;
  --slate-700: #355b6c;
  --slate-600: #557484;
  --green-500: #279463;
  --green-600: #167b51;
  --teal-400: #42c5c8;
  --white: #fff;
  --border: rgba(12, 53, 71, .12);
  --shadow-sm: 0 8px 24px rgba(8, 43, 59, .08);
  --shadow-lg: 0 28px 80px rgba(8, 43, 59, .14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--white); color: var(--navy-950); font-family: var(--font); font-size: 16px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
:focus-visible { outline: 3px solid var(--teal-400); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 810px; text-align: center; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; transform: translateY(-150%); border-radius: 10px; background: var(--navy-950); color: white; font-weight: 800; }
.skip-link:focus { transform: none; }
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Header */
.site-header { position: relative; z-index: 100; height: 82px; border-bottom: 1px solid rgba(12, 53, 71, .08); background: rgba(255, 255, 255, .94); backdrop-filter: blur(18px); }
.header-inner { display: flex; height: 100%; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-950); font-size: 1.23rem; font-weight: 850; letter-spacing: -.03em; text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.desktop-nav > a, .nav-dropdown > summary { display: flex; min-height: 44px; cursor: pointer; align-items: center; gap: 5px; padding: 10px 14px; border-radius: 12px; color: var(--navy-800); font-size: .91rem; font-weight: 680; text-decoration: none; transition: background .18s, color .18s; }
.desktop-nav > a:hover, .nav-dropdown > summary:hover, .nav-dropdown[open] > summary { background: var(--sky-100); color: var(--navy-950); }
.nav-dropdown { position: relative; }
.nav-dropdown summary svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .18s; }
.nav-dropdown[open] summary svg { transform: rotate(180deg); }
.nav-dropdown__panel { position: absolute; top: calc(100% + 9px); left: 0; width: 280px; padding: 9px; border: 1px solid var(--border); border-radius: 16px; background: white; box-shadow: var(--shadow-lg); }
.nav-dropdown:nth-child(2) .nav-dropdown__panel { left: -20px; }
.nav-dropdown__panel a { display: flex; flex-direction: column; padding: 12px 14px; border-radius: 11px; text-decoration: none; }
.nav-dropdown__panel a:hover { background: var(--sky-100); }
.nav-dropdown__panel strong { color: var(--navy-950); font-size: .9rem; }
.nav-dropdown__panel span { color: var(--slate-600); font-size: .76rem; }
.header-cta { margin-left: 4px; }
.language-switcher { display: inline-flex; align-items: center; gap: 3px; padding: 3px; border: 1px solid var(--border); border-radius: 11px; background: var(--sky-50); }
.language-switcher a { display: grid; width: 31px; height: 29px; place-items: center; border-radius: 8px; font-size: 1.05rem; line-height: 1; text-decoration: none; filter: saturate(.72); transition: background .18s, filter .18s, transform .18s; }
.language-switcher a:hover { transform: translateY(-1px); filter: saturate(1); }
.language-switcher a[aria-current="true"] { background: white; filter: saturate(1); box-shadow: 0 2px 8px rgba(8, 43, 59, .11); }
.mobile-nav { display: none; margin-left: auto; }
.mobile-nav > summary { display: grid; width: 44px; height: 44px; cursor: pointer; place-content: center; gap: 5px; border: 1px solid var(--border); border-radius: 12px; }
.mobile-nav > summary span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--navy-950); }
.mobile-nav nav { position: absolute; top: 72px; right: 20px; left: 20px; display: flex; max-height: calc(100vh - 90px); flex-direction: column; padding: 15px; overflow-y: auto; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: var(--shadow-lg); }
.mobile-nav nav a { padding: 10px 12px; border-radius: 9px; color: var(--navy-800); font-weight: 650; text-decoration: none; }
.mobile-nav nav a:hover { background: var(--sky-100); }
.mobile-nav nav .button { margin-top: 8px; color: white; }
.mobile-nav__label { margin-top: 8px; padding: 8px 12px 2px; color: var(--sky-600); font-size: .7rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }

/* Shared type and controls */
h1, h2, h3 { margin: 0; color: var(--navy-950); line-height: 1.12; letter-spacing: -.045em; }
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0; }
.eyebrow { margin-bottom: 18px; color: var(--sky-600); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow--light { color: #79e2e1; }
.hero-lead { max-width: 680px; margin-top: 25px; color: var(--slate-700); font-size: clamp(1.08rem, 1.8vw, 1.32rem); line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button-row--center { justify-content: center; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 12px 21px; border: 1px solid var(--navy-950); border-radius: 14px; background: var(--navy-950); color: white; font-size: .91rem; font-weight: 780; text-decoration: none; box-shadow: 0 8px 18px rgba(8, 43, 59, .14); transition: transform .18s, box-shadow .18s, background .18s; }
.button:hover { transform: translateY(-2px); background: var(--navy-800); box-shadow: 0 12px 28px rgba(8, 43, 59, .19); }
.button--secondary { border-color: var(--border); background: white; color: var(--navy-950); box-shadow: none; }
.button--secondary:hover { background: var(--sky-100); box-shadow: none; }
.button--small { min-height: 42px; padding: 9px 15px; border-radius: 11px; font-size: .82rem; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--sky-600); font-size: .86rem; font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.text-link--large { font-size: 1rem; }
.section { padding: 112px 0; }
.section--tight { padding-top: 55px; }
.section--tint { background: var(--sky-50); }
.section-heading { max-width: 720px; margin-bottom: 55px; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading > p:last-child { color: var(--slate-600); font-size: 1.08rem; }
.section-heading--center { margin-inline: auto; text-align: center; }
.center-action { margin-top: 42px; text-align: center; }

/* Hero */
.hero { position: relative; min-height: 720px; padding: 86px 0 95px; overflow: hidden; background: linear-gradient(135deg, #f8fdff 0%, var(--sky-100) 55%, #ddf7f4 100%); }
.hero::before { position: absolute; inset: 0; background-image: radial-gradient(rgba(18, 120, 169, .11) 1px, transparent 1px); background-size: 27px 27px; content: ""; mask-image: linear-gradient(to right, black, transparent 70%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .38; }
.hero-orb--one { top: -180px; right: -100px; width: 560px; height: 560px; background: radial-gradient(circle at 35% 35%, var(--teal-400), transparent 68%); }
.hero-orb--two { bottom: -220px; left: 35%; width: 480px; height: 480px; background: radial-gradient(circle, var(--sky-300), transparent 67%); }
.hero-grid { position: relative; display: grid; align-items: center; grid-template-columns: .92fr 1.08fr; gap: 65px; }
.hero-copy h1 em { color: var(--sky-600); font-style: normal; }
.hero-copy .hero-lead { max-width: 590px; }
.hero-copy .button-row { margin-top: 32px; }
.hero-copy .eyebrow { display: flex; align-items: center; gap: 9px; }
.hero-copy .eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 5px rgba(39, 148, 99, .12); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 17px; margin: 26px 0 0; padding: 0; color: var(--slate-600); font-size: .78rem; font-weight: 650; list-style: none; }
.hero-notes li { display: flex; align-items: center; gap: 4px; }
.hero-notes .icon { color: var(--green-500); }
.hero-visual { position: relative; padding: 40px 0; }
.logo-halo { position: absolute; top: -5px; right: 7%; width: 180px; height: 180px; border-radius: 50%; background: url('../../images/logo.png') center/contain no-repeat; opacity: .09; }
.floating-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px; padding: 11px 14px; border: 1px solid rgba(255, 255, 255, .8); border-radius: 13px; background: rgba(255, 255, 255, .92); color: var(--sky-600); box-shadow: var(--shadow-sm); backdrop-filter: blur(12px); }
.floating-badge span { display: flex; flex-direction: column; color: var(--slate-600); font-size: .66rem; line-height: 1.3; }
.floating-badge strong { color: var(--navy-950); font-size: .78rem; }
.floating-badge--collab { top: 5px; width: max-content; max-width: none; }
.floating-badge--collab strong { white-space: nowrap; }
.floating-badge--pdf { right: -28px; bottom: 3px; }

/* Image placeholders */
.media-placeholder { position: relative; width: 100%; min-height: 390px; margin: 0; overflow: hidden; border: 1px solid rgba(12, 53, 71, .14); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-lg); }
.media-placeholder__bar { display: flex; height: 42px; align-items: center; gap: 6px; padding: 0 16px; border-bottom: 1px solid var(--border); background: #f8fbfd; }
.media-placeholder__bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--sky-300); }
.media-placeholder__body { position: absolute; inset: 42px 0 28px; display: flex; align-items: center; justify-content: center; flex-direction: column; padding: 40px; background: linear-gradient(150deg, #f8fdff, var(--sky-100)); text-align: center; }
.media-placeholder__body::before, .media-placeholder__body::after { position: absolute; border: 1px solid rgba(18, 120, 169, .12); border-radius: 13px; content: ""; }
.media-placeholder__body::before { top: 30px; bottom: 30px; left: 25px; width: 22%; }
.media-placeholder__body::after { top: 30px; right: 25px; bottom: 30px; width: 28%; }
.media-placeholder__body svg { width: 48px; margin-bottom: 18px; fill: none; stroke: var(--sky-500); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.media-placeholder__body strong { position: relative; max-width: 330px; color: var(--navy-950); font-size: 1.03rem; }
.media-placeholder__body span { position: relative; margin-top: 5px; color: var(--slate-600); font-size: .75rem; }
.media-placeholder figcaption { position: absolute; right: 0; bottom: 0; left: 0; height: 28px; padding-top: 4px; background: white; color: var(--slate-600); font-size: .64rem; text-align: center; }
.media-placeholder--hero { min-height: 430px; transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.product-figure { margin: 0; }
.product-figure img { border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.product-figure figcaption { margin-top: 10px; color: var(--slate-600); font-size: .76rem; text-align: center; }
.product-figure--screen { overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-lg); }
.product-figure--screen img { width: 100%; height: auto; }
.product-figure--ollama { max-width: 947px; }
.product-figure--ollama img { aspect-ratio: 947 / 283; object-fit: contain; background: white; }
.screen-pair { display: grid; gap: 20px; }
.screen-pair .product-figure--screen:last-child { width: 50%; justify-self: center; }
.product-figure--hero { transform: none; }

/* Trust and cards */
.trust-strip { padding: 34px 0; border-block: 1px solid var(--border); background: white; }
.trust-strip .container { display: flex; align-items: center; gap: 28px; }
.trust-strip p { max-width: 220px; color: var(--slate-600); font-size: .73rem; font-weight: 720; line-height: 1.4; }
.trust-items { display: flex; flex: 1; align-items: center; justify-content: center; gap: 20px; color: var(--navy-800); font-size: .8rem; font-weight: 800; letter-spacing: .02em; }
.trust-items i { width: 4px; height: 4px; border-radius: 50%; background: var(--sky-300); }
.trust-strip a { display: inline-flex; align-items: center; gap: 5px; color: var(--sky-600); font-size: .75rem; font-weight: 800; text-decoration: none; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid--four { grid-template-columns: repeat(4, 1fr); }
.feature-card { min-height: 245px; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: white; transition: transform .2s, border .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(18, 120, 169, .28); box-shadow: var(--shadow-sm); }
.feature-card__icon, .audience-card__icon { display: grid; width: 46px; height: 46px; margin-bottom: 25px; place-items: center; border-radius: 13px; background: var(--sky-100); color: var(--sky-600); }
.feature-card__icon .icon { width: 23px; height: 23px; }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { color: var(--slate-600); font-size: .9rem; line-height: 1.65; }
.feature-grid--compact .feature-card { min-height: 225px; }
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card { min-height: 310px; padding: 34px; border: 1px solid var(--border); border-radius: var(--radius-md); background: linear-gradient(145deg, white, var(--sky-50)); transition: transform .2s, box-shadow .2s; }
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.audience-card:nth-child(2) .audience-card__icon { background: #e9f8f1; color: var(--green-600); }
.audience-card:nth-child(3) .audience-card__icon { background: #e5f8f8; color: #188b8b; }
.audience-card h3 { margin-bottom: 15px; font-size: 1.5rem; }
.audience-card p { min-height: 90px; margin-bottom: 22px; color: var(--slate-600); font-size: .92rem; }

/* Split and assistant */
.split-layout { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 90px; }
.split-copy h2 { margin-bottom: 24px; }
.split-copy > p:not(.eyebrow) { color: var(--slate-600); font-size: 1.02rem; }
.split-copy > .button { margin-top: 10px; }
.check-list { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--navy-800); font-size: .91rem; font-weight: 620; }
.check-list li span { display: grid; width: 22px; height: 22px; flex: none; place-items: center; border-radius: 50%; background: #dff6eb; color: var(--green-600); }
.check-list .icon { width: 14px; height: 14px; stroke-width: 2.5; }
.assistant-demo { position: relative; padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-md); background: white; box-shadow: var(--shadow-lg); }
.assistant-demo::before { position: absolute; z-index: -1; inset: 30px -20px -20px 30px; border-radius: var(--radius-md); background: var(--sky-200); content: ""; }
.assistant-demo__top { display: flex; align-items: center; gap: 11px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.assistant-demo__top img { border-radius: 50%; }
.assistant-demo__top div { display: flex; flex-direction: column; }
.assistant-demo__top strong { font-size: .88rem; }
.assistant-demo__top span { color: var(--green-600); font-size: .68rem; }
.assistant-demo__selection, .assistant-demo__suggestion { margin-top: 17px; padding: 16px; border-radius: 12px; background: #f6f9fa; }
.assistant-demo small { color: var(--slate-600); font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.assistant-demo p { margin-top: 6px; color: var(--navy-800); font-family: ui-monospace, monospace; font-size: .79rem; line-height: 1.7; }
.assistant-demo__suggestion { background: #eefaf6; }
.assistant-demo del { background: #fee8e8; color: #8e3b3b; }
.assistant-demo ins { background: #d9f4e8; color: #176a48; text-decoration: none; }
.assistant-demo__actions { display: flex; justify-content: flex-end; gap: 14px; margin-top: 17px; font-size: .72rem; }
.assistant-demo__actions span { padding: 7px; color: var(--slate-600); }
.assistant-demo__actions strong { padding: 7px 11px; border-radius: 8px; background: var(--navy-950); color: white; }

/* Deployment and CTAs */
.section--deployment { position: relative; overflow: hidden; background: var(--navy-950); color: white; }
.section--deployment::after { position: absolute; right: -150px; bottom: -250px; width: 580px; height: 580px; border: 1px solid rgba(66, 197, 200, .24); border-radius: 50%; content: ""; box-shadow: 0 0 0 70px rgba(66, 197, 200, .04), 0 0 0 140px rgba(66, 197, 200, .03); }
.deployment-grid { position: relative; z-index: 1; display: grid; align-items: center; grid-template-columns: .9fr 1.1fr; gap: 85px; }
.deployment-grid h2 { margin-bottom: 22px; color: white; }
.deployment-grid p:not(.eyebrow) { color: #b9d2dc; }
.deployment-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.deployment-tags span { padding: 6px 10px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 8px; color: #cde1e9; font-size: .69rem; font-weight: 720; }
.architecture { padding: 30px; border: 1px solid rgba(255, 255, 255, .14); border-radius: var(--radius-md); background: rgba(255, 255, 255, .05); }
.architecture__main { display: grid; max-width: 240px; margin: auto; padding: 20px; place-items: center; border: 1px solid rgba(121, 226, 225, .34); border-radius: 14px; background: rgba(66, 197, 200, .09); }
.architecture__main .icon { margin-bottom: 7px; color: #79e2e1; font-size: 1.6rem; }
.architecture strong { color: white; font-size: .84rem; }
.architecture span { color: #a9c6d0; font-size: .65rem; }
.architecture__line { width: 1px; height: 35px; margin: auto; background: rgba(121, 226, 225, .35); }
.architecture__nodes { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.architecture__nodes::before { position: absolute; top: -1px; right: 16%; left: 16%; height: 1px; background: rgba(121, 226, 225, .35); content: ""; }
.architecture__nodes div { display: flex; align-items: center; flex-direction: column; padding: 16px 7px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 11px; background: rgba(255, 255, 255, .04); text-align: center; }
.final-cta { padding: 120px 0; background: linear-gradient(135deg, var(--sky-100), #ecfbf7); }
.final-cta__inner { max-width: 830px; text-align: center; }
.final-cta img { margin: 0 auto 18px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.final-cta h2 { margin-bottom: 20px; }
.final-cta p:not(.eyebrow) { max-width: 620px; margin: auto; color: var(--slate-600); }
.final-cta .button-row { margin-top: 30px; }
.inline-cta { padding: 75px 0; background: var(--sky-100); }
.inline-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.inline-cta h2 { max-width: 660px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.inline-cta .button-row { flex: none; }

/* Interior pages */
.page-hero { position: relative; padding: 100px 0; overflow: hidden; background: linear-gradient(140deg, var(--sky-50), var(--sky-100)); }
.page-hero::after { position: absolute; top: -240px; right: -220px; width: 600px; height: 600px; border: 1px solid rgba(18, 120, 169, .12); border-radius: 50%; content: ""; box-shadow: 0 0 0 70px rgba(18, 120, 169, .03); }
.page-hero__grid { position: relative; z-index: 1; display: grid; align-items: center; grid-template-columns: .92fr 1.08fr; gap: 75px; }
.page-hero h1 { font-size: clamp(2.8rem, 5vw, 4.7rem); }
.page-hero .button { margin-top: 30px; }
.page-hero--compact { padding: 105px 0; }
.page-hero--compact .hero-lead { margin-inline: auto; }
.feature-sections { padding-bottom: 50px; }
.feature-row { display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 90px; padding: 75px 0; }
.feature-row--reverse > *:first-child { order: 2; }
.feature-row h2 { margin-bottom: 20px; }
.feature-row > div > p:not(.eyebrow) { color: var(--slate-600); }
.number-label { display: block; margin-bottom: 10px; color: var(--sky-300); font-size: 3.8rem; font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.notice-section { padding: 65px 0; }
.notice-card { display: flex; align-items: flex-start; gap: 25px; padding: 38px; border: 1px solid #f0d6a8; border-radius: var(--radius-md); background: #fffaf0; }
.notice-card > span { display: grid; width: 50px; height: 50px; flex: none; place-items: center; border-radius: 14px; background: #fff0ce; color: #92610a; }
.notice-card h2 { margin-bottom: 10px; font-size: 1.65rem; }
.notice-card p:last-child { color: #725f3c; }
.page-hero--ollama { background: linear-gradient(140deg, #f4fbff, #e3f9f5); }
.privacy-pill { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; padding: 9px 13px; border: 1px solid rgba(39, 148, 99, .2); border-radius: 10px; background: rgba(255, 255, 255, .7); color: var(--green-600); font-size: .76rem; font-weight: 750; }
.ollama-mark { position: relative; width: min(80%, 400px); margin: auto; }
.ollama-mark img { border-radius: 50%; box-shadow: 0 35px 70px rgba(8, 43, 59, .19); }
.ollama-mark > span { position: absolute; right: 0; bottom: 5%; display: grid; width: 70px; height: 70px; place-items: center; border: 7px solid var(--sky-100); border-radius: 50%; background: white; color: var(--sky-600); font-size: 1.6rem; box-shadow: var(--shadow-sm); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0; padding: 0; list-style: none; }
.steps li { position: relative; min-height: 220px; padding: 27px; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.steps li:not(:last-child)::after { position: absolute; z-index: 2; top: 37px; right: -25px; width: 32px; color: var(--sky-300); content: "→"; font-size: 1.5rem; text-align: center; }
.steps li > span { display: grid; width: 34px; height: 34px; margin-bottom: 28px; place-items: center; border-radius: 50%; background: var(--sky-100); color: var(--sky-600); font-size: .77rem; font-weight: 900; }
.steps h3 { margin-bottom: 10px; }
.steps p { color: var(--slate-600); font-size: .85rem; }
.control-panel { padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--sky-50); }
.control-panel div { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px; border-bottom: 1px solid var(--border); }
.control-panel div:last-child { border-bottom: 0; }
.control-panel span { color: var(--slate-600); font-size: .76rem; font-weight: 750; }
.control-panel strong { font-family: ui-monospace, monospace; font-size: .75rem; text-align: right; }
.control-panel .status-ok { color: var(--green-600); }
.muted-note { margin-top: 18px; padding-left: 15px; border-left: 3px solid var(--sky-300); font-size: .82rem !important; }
.page-hero--solution { background: linear-gradient(140deg, #f7fcff, #e5f7ff); }
.solution-emblem { display: grid; width: 390px; height: 390px; max-width: 85vw; margin: auto; place-content: center; border: 1px solid rgba(18, 120, 169, .16); border-radius: 50%; background: rgba(255, 255, 255, .55); text-align: center; box-shadow: 0 0 0 45px rgba(255, 255, 255, .2); }
.solution-emblem > span { display: grid; width: 100px; height: 100px; margin: 0 auto 23px; place-items: center; border-radius: 28px; background: var(--navy-950); color: white; font-size: 2.3rem; box-shadow: var(--shadow-lg); }
.solution-emblem p { max-width: 230px; color: var(--slate-700); font-size: .9rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.quote-section { padding: 90px 0; }
.quote-section blockquote { max-width: 850px; margin: 0 auto; text-align: center; }
.quote-section img { margin: 0 auto 22px; border-radius: 50%; }
.quote-section blockquote p { color: var(--navy-800); font-size: clamp(1.5rem, 3vw, 2.35rem); font-weight: 720; line-height: 1.4; letter-spacing: -.03em; }
.quote-section blockquote footer { margin-top: 18px; color: var(--slate-600); font-size: .76rem; font-weight: 700; }
.limits { padding: 24px 0; border-block: 1px solid #f0d6a8; background: #fffaf0; color: #725f3c; font-size: .82rem; text-align: center; }
.prose { max-width: 800px; padding-block: 70px; }
.prose p { margin-bottom: 1em; color: var(--slate-700); }

/* Who uses */
.testimonial-carousel { max-width: 780px; margin: auto; }
.testimonial-carousel__controls { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
.testimonial-carousel__controls button { width: 10px; height: 10px; padding: 0; cursor: pointer; border: 0; border-radius: 50%; background: var(--sky-300); transition: transform .18s, background .18s; }
.testimonial-carousel__controls button:hover, .testimonial-carousel__controls button:focus-visible, .testimonial-carousel__controls button[aria-current="true"] { background: var(--sky-600); transform: scale(1.25); }
.testimonial { padding: 36px; border: 1px solid var(--border); border-radius: var(--radius-md); background: linear-gradient(145deg, white, var(--sky-50)); box-shadow: var(--shadow-sm); }
.testimonial__person { display: flex; align-items: center; gap: 14px; }
.testimonial__person img, .testimonial__initials { width: 58px; height: 58px; flex: none; border-radius: 50%; object-fit: cover; }
.testimonial__initials { display: grid; place-items: center; background: var(--navy-950); color: white; font-size: .82rem; font-weight: 850; }
.testimonial blockquote { margin: 22px 0 0; color: var(--slate-700); font-size: 1.05rem; line-height: 1.75; }
.story-invite { display: grid; align-items: center; grid-template-columns: auto 1fr auto; gap: 30px; padding: 40px; border: 1px solid var(--border); border-radius: var(--radius-md); }
.story-invite > span { display: grid; width: 70px; height: 70px; place-items: center; border-radius: 20px; background: var(--sky-100); color: var(--sky-600); font-size: 1.6rem; }
.story-invite h2 { margin-bottom: 10px; font-size: 1.8rem; }
.story-invite p:last-child { color: var(--slate-600); }
.error-page { min-height: 65vh; display: grid; align-items: center; }
.docs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.docs-card { min-height: 330px; padding: 38px; border: 1px solid var(--border); border-radius: var(--radius-md); background: white; color: inherit; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.docs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.docs-card__number { color: var(--sky-300); font-size: 2.4rem; font-weight: 900; letter-spacing: -.08em; }
.docs-card .eyebrow { margin: 20px 0 9px; }.docs-card h2 { margin-bottom: 14px; font-size: 2rem; }.docs-card p:not(.eyebrow) { color: var(--slate-600); }.docs-card .text-link { margin-top: 25px; }
.manual { padding: 75px 0; }.manual__grid { display: grid; grid-template-columns: 240px minmax(0, 760px); justify-content: center; gap: 70px; }.manual__nav { position: sticky; top: 25px; align-self: start; }.manual__nav > p { margin-bottom: 12px; color: var(--sky-600); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }.manual__nav nav { display: grid; gap: 4px; }.manual__nav a { color: var(--slate-600); font-size: .82rem; text-decoration: none; }.manual__nav nav a { padding: 6px 0; }.manual__nav > a { display: inline-block; margin-top: 25px; color: var(--sky-600); font-weight: 750; }.manual__content { color: var(--slate-700); }.manual__content h2 { margin: 48px 0 16px; font-size: clamp(1.75rem, 3vw, 2.45rem); }.manual__content h2:first-child { margin-top: 0; }.manual__content h3 { margin: 30px 0 10px; }.manual__content p { margin-bottom: 1.05em; }.manual__content code { padding: .1em .35em; border-radius: 5px; background: var(--sky-100); color: var(--navy-900); font-size: .88em; }.manual__content pre { position: relative; margin: 24px 0; padding: 42px 22px 20px; overflow-x: auto; border-radius: var(--radius-sm); background: #071f2a; box-shadow: var(--shadow-sm); }.manual__content pre::before { position: absolute; top: 13px; left: 18px; color: #79e2e1; content: "bash"; font: 750 .7rem ui-monospace, monospace; letter-spacing: .08em; text-transform: uppercase; }.manual__content pre code { padding: 0; background: transparent; color: #e4f4f8; font-size: .86rem; }.manual__content table { width: 100%; margin: 26px 0; overflow: hidden; border: 1px solid var(--border); border-collapse: separate; border-radius: var(--radius-sm); border-spacing: 0; font-size: .82rem; }.manual__content th, .manual__content td { padding: 13px 15px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); vertical-align: top; text-align: left; }.manual__content th { background: var(--navy-950); color: white; }.manual__content td { color: var(--slate-700); }.manual__content tr:nth-child(even) td { background: var(--sky-50); }.manual__content th:last-child, .manual__content td:last-child { border-right: 0; }.manual__content tr:last-child td { border-bottom: 0; }

/* Footer */
.site-footer { padding: 75px 0 25px; background: #071f2a; color: #a9c5d0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 55px; }
.brand--footer { margin-bottom: 14px; color: white; }
.brand--footer img { width: 45px; height: 45px; }
.footer-brand p { max-width: 320px; font-size: .83rem; }
.footer-grid h2 { margin: 13px 0 15px; color: white; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; align-items: flex-start; flex-direction: column; }
.footer-grid > div:not(:first-child) a { margin-bottom: 9px; color: #a9c5d0; font-size: .78rem; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .1); color: #7699a7; font-size: .68rem; }

.has-motion .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.has-motion .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .desktop-nav, .header-cta { display: none; }
  .mobile-nav { display: block; margin-left: 0; }
  .language-switcher { margin-left: auto; }
  .hero-grid, .page-hero__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 720px); margin: auto; }
  .feature-grid--four { grid-template-columns: repeat(2, 1fr); }
  .split-layout, .deployment-grid, .feature-row { gap: 55px; }
  .trust-strip .container { flex-wrap: wrap; }
  .trust-items { order: 3; min-width: 100%; justify-content: flex-start; }
  .solution-emblem { width: 320px; height: 320px; }
}

@media (max-width: 800px) {
  .section { padding: 82px 0; }
  .feature-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout, .deployment-grid, .feature-row { grid-template-columns: 1fr; }
  .feature-row--reverse > *:first-child { order: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li:nth-child(2)::after { display: none; }
  .inline-cta__inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .story-invite { grid-template-columns: auto 1fr; }
  .story-invite .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header { height: 70px; }
  .brand img { width: 41px; height: 41px; }
  .language-switcher a { width: 29px; }
  .hero { min-height: auto; padding: 60px 0 70px; }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  .hero-lead { font-size: 1rem; }
  .hero-copy .button-row .button { width: 100%; }
  .hero-notes { gap: 10px; }
  .media-placeholder, .media-placeholder--hero { min-height: 300px; transform: none; }
  .media-placeholder__body::before, .media-placeholder__body::after { display: none; }
  .floating-badge { display: none; }
  .trust-items { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-items i { display: none; }
  .feature-grid, .feature-grid--four, .audience-grid { grid-template-columns: 1fr; }
  .feature-card, .audience-card { min-height: auto; }
  .audience-card p { min-height: auto; }
  .assistant-demo { padding: 14px; }
  .architecture { padding: 18px; }
  .architecture__nodes { grid-template-columns: 1fr; }
  .architecture__nodes::before { display: none; }
  .final-cta { padding: 80px 0; }
  .page-hero { padding: 72px 0; }
  .page-hero h1 { font-size: 2.65rem; }
  .feature-row { padding: 55px 0; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: auto; }
  .steps li::after { display: none; }
  .solution-emblem { width: 260px; height: 260px; }
  .solution-emblem > span { width: 80px; height: 80px; }
  .story-invite { grid-template-columns: 1fr; }
  .story-invite .button { grid-column: auto; }
  .docs-grid, .manual__grid { grid-template-columns: 1fr; }
  .docs-card { min-height: auto; padding: 28px; }
  .manual { padding: 55px 0; }.manual__grid { gap: 35px; }.manual__nav { position: static; }.manual__nav nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .screen-pair .product-figure--screen:last-child { width: 75%; }
  .manual__content table { display: block; overflow-x: auto; }
  .notice-card { flex-direction: column; padding: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

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