@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('jakarta-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('plex-body.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans';
    src: url('plex-medium.woff2') format('woff2');
    font-weight: 500 700;
    font-style: normal;
    font-display: swap;
}
:root {
    --paper: #f4f3ef;
    --surface: #ffffff;
    --ink: #101828;
    --muted: #505968;
    --line: #d5d6d1;
    --lime: #d6ee5a;
    --lime-hover: #c6df40;
    --soft: #eaece3;
    --dark-line: #414b5a;
    --error: #ad302d;
    --display: 'Plus Jakarta Sans', sans-serif;
    --body: 'IBM Plex Sans', sans-serif;
    --width: 1240px;
    --space-section: clamp(80px, 8vw, 120px);
    --radius: 8px;
    --shadow: 0 16px 44px rgb(16 24 40 / 12%);
    --duration: 240ms;
    --z-base: 0;
    --z-overlay: 2;
    --z-chip: 3;
    --z-header: 20;
    --z-menu: 30;
    --z-skip: 40;
    --z-cookie: 35;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 17px/1.65 var(--body); }
button, input, textarea { font: inherit; }
button, a, summary, input, textarea { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 5px; transition: color var(--duration), background var(--duration), border-color var(--duration), transform var(--duration); }
a:hover { text-decoration-color: currentColor; }
a:active, button:active { transform: translateY(1px); }
button { color: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 5px; }
.site-footer :focus-visible, .local-section :focus-visible { outline-color: var(--lime); }
img { display: block; max-width: 100%; height: auto; }
svg { width: 24px; height: 24px; flex-shrink: 0; }
figure, p { margin: 0; }
p + p { margin-top: 18px; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 700; text-wrap: balance; }
h1 { font-size: clamp(44px, 4.25vw, 63px); line-height: 1.09; letter-spacing: -.062em; }
h2 { font-size: clamp(32px, 3.1vw, 44px); line-height: 1.18; letter-spacing: -.045em; }
h3 { font-size: 22px; line-height: 1.35; letter-spacing: -.028em; }
h2 + p, h3 + p { margin-top: 22px; }
section, article, .section-heading > *, .hero-copy, .navigation { min-width: 0; }
section[id], article[id] { scroll-margin-top: 105px; }
.container { width: min(var(--width), calc(100% - 80px)); margin-inline: auto; }
.section { padding-block: var(--space-section); }
.sr-only, .honey { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 20px; z-index: var(--z-skip); padding: 12px 20px; background: var(--lime); transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; top: 0; z-index: var(--z-header); background: rgb(244 243 239 / 95%); backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: border-color var(--duration); }
.site-header.is-scrolled { border-color: var(--line); }
.header-inner { min-height: 88px; display: flex; align-items: center; gap: 42px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 113px; height: auto; }
.navigation { margin-left: auto; flex: 1; border: 0; }
.navigation > summary { display: none; }
.navigation-body { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.primary-nav, .header-actions { display: flex; align-items: center; gap: 24px; }
.primary-nav a, .header-login { font-size: 15px; font-weight: 500; text-decoration: none; padding-block: 12px; }
.primary-nav a:hover, .header-login:hover { text-decoration: underline; }
.header-actions { gap: 20px; }
.language { position: relative; border: 0; }
.language > summary { padding: 10px 0; gap: 5px; font-size: 14px; font-weight: 500; }
.language > summary::after { display: none; }
.language svg { width: 14px; height: 14px; }
.language nav { position: absolute; right: -15px; top: 100%; width: 180px; background: var(--surface); box-shadow: var(--shadow); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px; z-index: var(--z-menu); }
.language nav a { display: block; padding: 8px 12px; border-radius: 4px; text-decoration: none; }
.language nav a:hover, .language nav a[aria-current] { background: var(--soft); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 14px 23px; min-height: 52px; border-radius: 5px; border: 1px solid transparent; font-weight: 500; font-size: 16px; line-height: 1.45; text-decoration: none; text-align: center; transition: background var(--duration), transform var(--duration), border-color var(--duration); }
.button svg { width: 20px; height: 20px; }
.primary { background: var(--lime); color: var(--ink); }
.primary:hover { background: var(--lime-hover); }
.secondary { border-color: var(--ink); background: transparent; }
.secondary:hover { background: var(--ink); color: var(--paper); }
.compact { padding: 11px 16px; min-height: 44px; font-size: 14px; }
.actions { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 500; text-decoration: none; padding-block: 8px; }
.text-link:hover { text-decoration: underline; }
.text-link svg { width: 19px; height: 19px; transition: transform var(--duration); }
.text-link:hover svg { transform: translateX(3px); }
.hero { display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: center; padding-block: 62px 94px; }
.platform { font-size: 14px; font-weight: 500; margin-bottom: 25px; display: flex; gap: 10px; align-items: center; }
.platform::before { content: ''; width: 7px; height: 7px; background: var(--ink); border-radius: 50%; }
.hero-description { color: var(--muted); font-size: 20px; line-height: 1.6; margin-top: 26px; max-width: 510px; }
.hero .actions { margin-top: 32px; gap: 24px; }
.access-note { font-size: 13px; color: var(--muted); margin-top: 17px; }
.hero-visual { position: relative; padding-bottom: 80px; }
.hero-visual > img { width: 100%; height: 485px; object-fit: cover; object-position: 49% center; border-radius: var(--radius); }
.quote-card { position: absolute; left: -28px; bottom: 4px; width: 286px; padding: 22px 24px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); z-index: var(--z-overlay); }
.demo-label { font-size: 12px; font-weight: 500; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.demo-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); border: 1px solid #748334; }
.quote-body { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.quote-body h2 { font-size: 20px; letter-spacing: -.025em; }
.quote-body img { width: 72px; height: 84px; object-fit: contain; }
.dimensions { font-size: 12px; font-variant-numeric: tabular-nums; margin-top: 7px; white-space: nowrap; }
.quote-total { display: flex; justify-content: space-between; gap: 10px; margin-top: 18px; padding-top: 12px; border-top: 1px solid var(--line); font-size: 13px; }
.quote-total strong { font-size: 18px; font-variant-numeric: tabular-nums; }
.pdf-chip { position: absolute; right: 14px; bottom: 45px; display: flex; align-items: center; gap: 11px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); padding: 14px 18px; border-radius: 6px; z-index: var(--z-chip); max-width: 255px; }
.pdf-chip > svg { color: var(--ink); background: var(--lime); border-radius: 50%; padding: 5px; width: 29px; height: 29px; }
.pdf-chip strong { display: block; font-weight: 500; font-size: 14px; }
.pdf-chip span { display: block; font-size: 10px; color: var(--muted); }
.facts { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding-block: 24px; border-block: 1px solid var(--line); }
.facts p { margin: 0; font-size: 15px; font-weight: 500; }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 72px; margin-bottom: 48px; }
.section-heading h2 { max-width: 650px; }
.section-heading p { max-width: 460px; color: var(--muted); margin: 0; }
.workflow .section-heading h2 { max-width: 530px; }
.workflow-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: start; }
.workflow-photo { position: sticky; top: 130px; }
.workflow-photo img { width: 100%; aspect-ratio: 1.13; object-fit: cover; object-position: 48% center; border-radius: var(--radius); }
.steps article { padding-block: 28px; border-top: 1px solid var(--line); }
.steps article:first-child { padding-top: 0; border: 0; }
.steps article p { color: var(--muted); margin-top: 14px; }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding-block: 24px; font-size: 18px; font-weight: 500; line-height: 1.5; transition: color var(--duration), background var(--duration); }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font: 400 26px/1 var(--body); flex-shrink: 0; }
details[open] > summary::after { content: '−'; }
summary:hover { color: var(--muted); }
summary:active { background: var(--soft); }
details > p:last-child, details > .prose { padding-bottom: 24px; }
.text-detail { border-top: 1px solid var(--line); margin-top: 30px; }
.text-detail summary { font-size: 16px; }
.prose { max-width: 820px; }
.products { background: var(--soft); }
.product-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: start; }
.product-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.product-button { display: flex; align-items: center; width: 100%; gap: 16px; min-height: 91px; border: 0; border-bottom: 1px solid #c5c9be; background: transparent; padding: 16px 10px; text-align: left; line-height: 1.4; transition: background var(--duration), border-color var(--duration); }
.product-button > svg:first-child { width: 32px; height: 32px; }
.product-button > svg:last-child { width: 16px; height: 16px; margin-left: auto; }
.product-button span { font-size: 16px; font-weight: 500; }
.product-button:hover { background: rgb(255 255 255 / 45%); }
.product-button[aria-pressed='true'] { border-bottom-color: var(--ink); background: var(--lime); }
.product-panels { min-height: 430px; }
.product-panels.long-panels { min-height: 560px; }
.product-panels article { padding: 22px 0; }
.product-panels article > svg { width: 50px; height: 50px; margin-bottom: 27px; }
.product-panels h3 { font-size: 30px; }
.product-panels p { margin-top: 20px; color: var(--muted); }
.product-panels .text-link { margin-top: 16px; }
[hidden] { display: none !important; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; }
.feature-grid article { border-top: 1px solid var(--line); padding: 32px 0; display: grid; grid-template-columns: 32px 1fr; column-gap: 20px; align-content: start; }
.feature-grid article > svg { width: 27px; height: 27px; margin-top: 2px; }
.feature-grid p, .feature-grid a { grid-column: 2; }
.feature-grid p { margin-top: 18px; color: var(--muted); font-size: 16px; }
.feature-grid a { justify-self: start; margin-top: 16px; font-size: 15px; }
.feature-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; border-top: 1px solid var(--line); padding-top: 32px; margin-top: 8px; }
.feature-summary h3 { max-width: 450px; }
.feature-summary p { color: var(--muted); margin: 0; }
.crm { display: grid; grid-template-columns: 1.1fr 1fr; gap: 70px; align-items: start; padding-block: 64px; margin-bottom: var(--space-section); border-block: 1px solid var(--line); }
.crm-copy { min-width: 0; }
.crm-copy p { color: var(--muted); }
.crm-copy .text-link { margin-top: 18px; }
.local-section { color: var(--paper); background-color: var(--ink); background-image: linear-gradient(rgb(244 243 239 / 4%) 1px, transparent 1px), linear-gradient(90deg, rgb(244 243 239 / 4%) 1px, transparent 1px); background-size: 44px 44px; }
.local-layout { display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 65px; }
.local-label { display: flex; align-items: center; gap: 12px; color: var(--lime); margin-bottom: 24px; font-size: 15px; }
.workspace-diagram { width: 100%; height: auto; stroke: #7c8796; stroke-width: 1.4; }
.diagram-vault { fill: #1d293a; stroke: var(--lime); }
.diagram-accent { stroke: var(--lime); }
.diagram-dot { fill: var(--lime); stroke: var(--lime); }
.local-prose { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; margin-top: 36px; }
.local-prose p { color: #cbd0d7; margin: 0; }
.local-section details { border-color: var(--dark-line); }
.local-section summary:hover { color: var(--lime); }
.local-section summary:active { background: #253044; }
.local-section .prose { color: #cbd0d7; }
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 48px; }
.role-grid article { border-top: 1px solid var(--line); padding-top: 26px; }
.role-grid article > svg { width: 32px; height: 32px; }
.role-grid h3 { margin-top: 18px; }
.role-grid p { color: var(--muted); margin-top: 14px; max-width: 560px; }
.costs { background: var(--soft); }
.cost-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; align-items: start; }
.cost-intro { position: sticky; top: 132px; }
.cost-intro .button { margin-top: 28px; }
.cost-intro p { color: var(--muted); }
.cost-list article { display: flex; align-items: start; gap: 18px; padding-block: 28px; border-top: 1px solid #c5c9be; }
.cost-list article:first-child { padding-top: 0; border-top: 0; }
.cost-list article > svg { margin-top: 2px; }
.cost-list p { margin-top: 16px; color: var(--muted); }
.cost-list > p { font-size: 15px; border-top: 1px solid #c5c9be; padding-top: 28px; }
.support { display: grid; grid-template-columns: .85fr 1.15fr; gap: 95px; }
.support .button { margin-top: 30px; }
.support p { color: var(--muted); }
.support .text-link { margin-top: 18px; }
.early { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; align-items: center; background: #e8e9e1; border-radius: var(--radius); padding: 40px; }
.early > img { width: 100%; aspect-ratio: 1.15; object-fit: cover; border-radius: 4px; }
.early h2 { font-size: clamp(30px, 2.5vw, 36px); }
.early p { color: var(--muted); }
.early .button { margin-top: 25px; }
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; align-items: start; }
.faq > h2 { position: sticky; top: 132px; }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq details p { color: var(--muted); }
.contact-section { border-top: 1px solid var(--line); background: #eeeee7; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; }
.contact-intro p { color: var(--muted); }
.contact-intro .button { margin-top: 28px; }
.contact-email { display: block; width: fit-content; margin-top: 30px; }
.contact-form { position: relative; display: grid; gap: 20px; }
.contact-form h3 { margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { font-size: 15px; font-weight: 500; }
.contact-form input:not([type='checkbox'], [type='hidden']), .contact-form textarea { display: block; margin-top: 8px; width: 100%; min-width: 0; border: 1px solid #91988e; border-radius: 4px; background: var(--paper); padding: 11px 12px; color: var(--ink); transition: border-color var(--duration), background var(--duration); }
.contact-form textarea { resize: vertical; min-height: 160px; }
.contact-form input:hover, .contact-form textarea:hover { border-color: var(--ink); }
.contact-form input:user-invalid, .contact-form textarea:user-invalid { border-color: var(--error); outline-color: var(--error); }
.contact-form input[type='checkbox']:user-invalid { outline: 2px solid var(--error); outline-offset: 2px; }
.contact-form .form-help { font-size: 13px; color: var(--muted); margin: -8px 0 0; }
.contact-form .bot-label input { max-width: 110px; }
.consent { display: flex; gap: 12px; align-items: flex-start; }
.consent input { width: 20px; height: 20px; margin: 3px 0 0; accent-color: var(--ink); flex-shrink: 0; }
.consent span { font-size: 14px; font-weight: 400; }
.contact-form > button { justify-self: start; }
.site-footer { background: var(--ink); color: var(--paper); padding-block: 70px 35px; }
.footer-top { display: grid; grid-template-columns: .55fr 1.4fr .7fr; gap: 70px; align-items: start; }
.footer-top p { color: #bdc5cf; font-size: 16px; max-width: 560px; }
.footer-top nav { display: grid; gap: 8px; justify-self: end; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--lime); text-decoration: underline; }
.footer-languages { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 48px; padding-bottom: 26px; border-bottom: 1px solid var(--dark-line); font-size: 14px; }
.footer-languages [aria-current] { color: var(--lime); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 13px; color: #bdc5cf; padding-top: 25px; }
.footer-bottom > span { margin-right: auto; }
.operator { display: flex; flex-wrap: wrap; gap: 8px 24px; color: #bdc5cf; margin-top: 25px; font-size: 12px; font-style: normal; }
@keyframes appear { from { transform: translateY(12px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: no-preference) {
    .is-revealed { animation: appear 500ms both; }
    .feature-grid article:nth-child(even).is-revealed, .role-grid article:nth-child(even).is-revealed { animation-delay: 90ms; }
}
@media (min-width: 1101px) {
    .navigation::details-content { content-visibility: visible; }
    .navigation:not([open]) > .navigation-body { display: flex; }
}
@media (max-width: 1100px) {
    .header-inner { min-height: 76px; }
    .navigation { flex: 0 1 auto; }
    .navigation > summary { display: flex; gap: 13px; padding-block: 14px; font-size: 15px; }
    .navigation > summary::after { display: none; }
    .menu-icon { width: 20px; height: 12px; border-block: 1px solid var(--ink); }
    .navigation-body { position: absolute; top: calc(100% - 1px); left: 0; right: 0; display: flex; flex-direction: column; align-items: stretch; gap: 18px; padding: 20px 40px 28px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px rgb(16 24 40 / 8%); max-height: calc(100dvh - 76px); overflow-y: auto; }
    .primary-nav { display: grid; gap: 0; }
    .primary-nav a { border-bottom: 1px solid var(--line); padding-block: 13px; }
    .header-actions { flex-wrap: wrap; justify-content: space-between; gap: 12px; }
    .language nav { position: static; box-shadow: none; width: 100%; margin-top: 8px; }
    .language[open] { flex-basis: 100%; }
    .hero { gap: 36px; padding-top: 45px; }
    .hero-visual > img { height: 435px; }
    .quote-card { left: -10px; width: 260px; padding: 18px; }
    .pdf-chip { right: 0; bottom: -50px; }
    .section-heading, .workflow-layout, .product-layout, .local-layout, .local-prose, .cost-layout, .support, .faq, .contact-layout { gap: 40px; }
    .product-layout { grid-template-columns: 1fr 1fr; }
    .product-list { grid-template-columns: 1fr; }
    .product-button { min-height: 64px; }
    .feature-grid, .feature-summary { column-gap: 40px; }
    .crm { gap: 40px; }
    .early { padding: 30px; gap: 35px; }
    .footer-top { gap: 40px; }
}
@media (max-width: 760px) {
    html { scroll-padding-top: 90px; }
    body { font-size: 16px; }
    .container { width: calc(100% - 40px); }
    h1 { font-size: clamp(38px, 10.8vw, 58px); letter-spacing: -.055em; }
    h2 { font-size: clamp(29px, 7.8vw, 38px); }
    h3 { font-size: 21px; }
    .header-inner { min-height: 72px; }
    .brand img { width: 99px; }
    .navigation-body { padding: 12px 20px 24px; }
    .hero { grid-template-columns: 1fr; gap: 35px; padding-block: 35px 40px; }
    .platform { margin-bottom: 20px; }
    .hero-description { font-size: 18px; line-height: 1.6; margin-top: 21px; }
    .hero .actions { gap: 20px; margin-top: 25px; }
    .hero .button { font-size: 15px; padding-inline: 17px; }
    .access-note { font-size: 12px; }
    .hero-visual { padding-bottom: 173px; }
    .hero-visual > img { height: auto; aspect-ratio: 1.14; object-position: center; }
    .quote-card { left: 14px; bottom: 54px; width: 252px; padding: 17px 20px; }
    .pdf-chip { right: 0; bottom: 0; max-width: 252px; padding: 11px 15px; }
    .quote-body img { width: 58px; height: 67px; }
    .quote-total { margin-top: 13px; }
    .facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 15px; padding-block: 24px; }
    .facts p { font-size: 13px; }
    .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
    .workflow-layout { grid-template-columns: 1fr; gap: 32px; }
    .workflow-photo { position: static; }
    .workflow-photo img { aspect-ratio: 1.2; }
    .steps article { padding-block: 24px; }
    .text-detail { margin-top: 24px; }
    .product-layout { grid-template-columns: 1fr; gap: 20px; }
    .product-list { grid-template-columns: 1fr 1fr; column-gap: 12px; }
    .product-button { gap: 9px; padding: 14px 7px; min-height: 83px; }
    .product-button > svg:first-child { width: 26px; height: 26px; }
    .product-button > svg:last-child { display: none; }
    .product-button span { font-size: 14px; }
    .product-panels { min-height: 470px; }
    .product-panels.long-panels { min-height: 570px; }
    .product-panels article { padding-top: 24px; }
    .product-panels article > svg { margin-bottom: 20px; }
    .product-panels h3 { font-size: 28px; }
    .product-panels p { margin-top: 16px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-grid article { padding-block: 27px; column-gap: 13px; grid-template-columns: 28px 1fr; }
    .feature-grid h3 { font-size: 20px; }
    .feature-grid p { grid-column: 1 / 3; }
    .feature-grid a { grid-column: 1 / 3; }
    .feature-summary { grid-template-columns: 1fr; gap: 20px; }
    .crm { grid-template-columns: 1fr; gap: 24px; padding-block: 40px; }
    .local-layout, .local-prose { grid-template-columns: 1fr; gap: 26px; }
    .local-prose { margin-top: 16px; }
    .workspace-diagram { max-width: 400px; justify-self: center; }
    .role-grid { grid-template-columns: 1fr; gap: 40px; }
    .role-grid h3 { margin-top: 20px; }
    .cost-layout, .support, .faq, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
    .cost-intro, .faq > h2 { position: static; }
    .cost-list article { gap: 12px; }
    .cost-list h3 { font-size: 20px; }
    .early { grid-template-columns: 1fr; gap: 27px; padding: 20px; }
    .early > img { aspect-ratio: 1.3; }
    .early h2 { font-size: 28px; }
    summary { font-size: 17px; gap: 18px; padding-block: 22px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-layout { gap: 48px; }
    .contact-intro h2 { font-size: 31px; }
    .site-footer { padding-top: 48px; }
    .footer-top { grid-template-columns: 1fr; gap: 25px; }
    .footer-top nav { grid-template-columns: 1fr 1fr; justify-self: stretch; gap: 12px 25px; }
    .footer-languages { margin-top: 30px; gap: 12px 24px; }
    .footer-bottom { gap: 14px 22px; }
    .footer-bottom > span { flex-basis: 100%; }
    .operator { flex-direction: column; gap: 9px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
.legal-header { padding-block: 30px; }
.legal-identity { display: grid; gap: 16px; margin-top: 40px; font-style: normal; }
.legal-links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 40px; }

.cookie-banner { position: fixed; z-index: var(--z-cookie); right: 24px; bottom: 24px; width: min(650px, calc(100% - 48px)); max-height: calc(100dvh - 48px); overflow-y: auto; padding: 25px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); color: var(--ink); box-shadow: var(--shadow); }
.cookie-copy h2 { font-size: 20px; letter-spacing: -.025em; }
.cookie-copy p { margin-top: 10px; font-size: 15px; line-height: 1.55; }
.cookie-actions { display: flex; align-items: center; justify-content: flex-end; gap: 25px; margin-top: 18px; }
.cookie-actions .button { min-height: 44px; padding: 10px 22px; }
.cookie-nojs { padding-block: 24px; }
.cookie-page { max-width: 840px; }
.cookie-page > p { margin-top: 24px; }
.cookie-page section { padding-top: 38px; }
.cookie-page section h2 { font-size: 27px; }
.cookie-page .legal-links [aria-current] { font-weight: 500; }
@media (max-width: 760px) {
    .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); padding: 20px; max-height: calc(100dvh - 24px); }
    .cookie-copy h2 { font-size: 19px; }
    .cookie-copy p { font-size: 14px; }
    .cookie-actions { gap: 20px; margin-top: 14px; }
}
:root { --radius: 2px; --shadow: 0 8px 24px rgb(16 24 40 / 7%); --space-section: 88px; }
h1 { font-size: clamp(40px, 4.1vw, 58px); letter-spacing: -.035em; line-height: 1.16; }
h2 { font-size: clamp(28px, 2.7vw, 38px); letter-spacing: -.025em; line-height: 1.25; }
h3 { letter-spacing: -.012em; }
.site-header { background: var(--paper); backdrop-filter: none; border-bottom: 1px solid var(--line); }
.hero { gap: 64px; padding-block: 72px; }
.hero-visual { padding: 0; }
.hero-visual > img { height: auto; aspect-ratio: 1.12; border-radius: 2px; }
.platform::before { display: none; }
.facts { justify-content: flex-start; gap: 20px 38px; flex-wrap: wrap; }
.facts p { font-size: 14px; }
.products { background: var(--paper); border-block: 1px solid var(--line); }
.product-layout { grid-template-columns: 1.2fr .8fr; gap: 72px; }
.product-button { min-height: 76px; padding: 15px 8px; gap: 12px; }
.product-button[aria-pressed='true'] { background: transparent; border-bottom: 2px solid var(--ink); font-weight: 700; }
.product-button[aria-pressed='true'] span { font-weight: 700; }
.product-button:hover { background: var(--soft); }
.product-panels { position: sticky; top: 120px; border-top: 1px solid var(--ink); min-height: 0; }
.product-panels.long-panels { min-height: 0; }
.product-panels h3 { font-size: 28px; }
.feature-grid article { display: block; }
.feature-grid p { font-size: 17px; }
.feature-grid a { display: inline-flex; }
.local-section { color: var(--ink); background: #e9ebe4; }
.local-layout { display: block; max-width: 850px; }
.local-label { color: var(--muted); }
.local-prose p, .local-section .prose { color: var(--muted); }
.local-section details { border-color: var(--line); }
.local-section summary:hover { color: var(--ink); }
.local-section summary:active { background: var(--paper); }
.local-section :focus-visible { outline-color: var(--ink); }
.early { background: transparent; padding: 0; border-radius: 0; gap: 72px; }
.role-grid h3 { margin-top: 0; }
.costs { background: var(--paper); border-block: 1px solid var(--line); }
.is-revealed { animation: none !important; }
.page-intro { padding-block: 72px 52px; }
.page-intro h1 { max-width: 900px; overflow-wrap: anywhere; }
.page-lead { max-width: 820px; margin-top: 28px; font-size: 21px; color: var(--muted); }
.page-chapters { margin-bottom: 64px; }
.chapter { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; padding-block: 38px; border-top: 1px solid var(--line); }
.chapter h2 { font-size: 27px; max-width: 430px; }
.chapter p { color: var(--muted); }
.range-list { padding: 0; margin: 0; list-style: none; columns: 2; column-gap: 32px; }
.range-list li { padding-bottom: 16px; break-inside: avoid; }
.pricing-access { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; border-top: 2px solid var(--ink); padding-block: 38px 64px; }
.pricing-access h2 { font-size: 32px; }
.pricing-access .button { margin-top: 26px; }
.pricing-access > p { color: var(--muted); }
.docs-intro { max-width: var(--width); padding-bottom: 48px; }
.docs-intro p { max-width: 780px; color: var(--muted); }
.documentation-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.contents { display: flex; flex-direction: column; align-self: start; position: sticky; top: 120px; border-top: 1px solid var(--ink); }
.contents a { padding-block: 14px; border-bottom: 1px solid var(--line); text-decoration: none; }
.contents a:hover { text-decoration: underline; }
.documentation-chapters section { padding-block: 32px 44px; border-top: 1px solid var(--line); }
.documentation-chapters h2 { font-size: 28px; }
.documentation-chapters p { color: var(--muted); }
.page-end { padding-block: 42px 64px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; margin-top: 64px; }
.page-end h2 { font-size: 28px; }
.public-page .legal-identity { margin-bottom: 72px; }
@media (max-width: 1100px) {
    .hero { gap: 36px; }
    .product-layout, .chapter, .pricing-access, .documentation-layout { gap: 40px; }
}
@media (max-width: 760px) {
    :root { --space-section: 60px; }
    .hero { padding-block: 40px; gap: 36px; }
    .hero-visual > img { height: auto; aspect-ratio: 1.5; }
    .facts { gap: 12px 24px; }
    .facts p { width: auto; }
    .product-layout, .chapter, .pricing-access, .documentation-layout { grid-template-columns: 1fr; gap: 24px; }
    .product-panels, .contents { position: static; }
    .product-button { min-height: 74px; }
    .product-list { column-gap: 14px; }
    .product-button span { font-size: 14px; }
    .product-panels article { padding-top: 24px; }
    .page-intro { padding-block: 44px 36px; }
    .page-lead { font-size: 18px; }
    .chapter { padding-block: 28px; }
    .chapter h2, .documentation-chapters h2 { font-size: 25px; }
    .range-list { columns: 1; }
    .pricing-access { padding-block: 28px 40px; }
    .early { padding: 0; gap: 28px; }
    .page-end { flex-direction: column; margin-top: 40px; }
}
.legacy-public { padding-block: 60px; }
.legacy-public .page-hero { max-width: 900px; padding-bottom: 44px; }
.legacy-public .page-hero p { margin-top: 24px; color: var(--muted); }
.legacy-public .eyebrow { margin-bottom: 20px; color: var(--muted); }
.legacy-public .section { padding-block: 28px; }
.legacy-public .privacy-content article { display: grid; grid-template-columns: .85fr 1.15fr; gap: 30px 80px; padding-block: 32px; border-top: 1px solid var(--line); }
.legacy-public .privacy-content h2 { font-size: 26px; }
.legacy-public .privacy-content p { grid-column: 2; margin: 0; color: var(--muted); }
.legacy-public table { border-collapse: collapse; width: 100%; }
.legacy-public td, .legacy-public th { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
@media(max-width:760px) {
 .legacy-public .privacy-content article { grid-template-columns: 1fr; gap: 16px; }
 .legacy-public .privacy-content p { grid-column: 1; }
}
