/* MaxData / Max family — shared design tokens and UI primitives.
   Mobile-first. No marketing layout and no application-specific selectors. */
:root {
  color-scheme: dark;
  --md-bg: #040e19;
  --md-bg-alt: #071624;
  --md-surface: #0a1c2f;
  --md-surface-raised: #10273d;
  --md-text: #f3f8ff;
  --md-muted: #a1b6ca;
  --md-dim: #7c98b2;
  --md-accent: #1ba9f4;
  --md-accent-bright: #6fd5ff;
  --md-blue: #1483f4;
  --md-line: rgba(131, 180, 218, .18);
  --md-line-strong: rgba(117, 184, 232, .38);
  --md-gradient: linear-gradient(110deg, #20baf8 0%, #229af4 51%, #62c7ff 100%);
  --md-button-gradient: linear-gradient(115deg, #08a8ee, #1083ed);
  --md-font: Inter, "Segoe UI", Arial, sans-serif;
  --md-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --md-radius: 12px;
  --md-radius-small: 7px;
  --md-max: 1280px;
  --md-space-section: 64px;
  --md-gutter: 22px;
  --md-header-height: 76px;
  --md-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--md-bg); color: var(--md-text); font-family: var(--md-font); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
h1, h2, h3, h4 { color: var(--md-text); font-weight: 650; }
h1 { font-size: clamp(42px, 10.8vw, 56px); line-height: 1.05; letter-spacing: -.046em; }
h2 { font-size: clamp(32px, 7.9vw, 46px); line-height: 1.15; letter-spacing: -.038em; }
h3 { font-size: 25px; line-height: 1.2; letter-spacing: -.028em; }
h4 { font-size: 16px; line-height: 1.4; letter-spacing: -.01em; }
p { color: var(--md-muted); }
a { color: inherit; text-decoration: none; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; color: inherit; }
button, a, summary { -webkit-tap-highlight-color: transparent; }
button, summary { cursor: pointer; }
button { background: none; border: 0; }
button:disabled { opacity: .5; cursor: not-allowed; }
input, select, textarea { min-width: 0; }
textarea { resize: vertical; }
ul, ol { margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
svg { max-width: 100%; }
::selection { background: #0d6d9d; color: #fff; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--md-accent-bright); outline-offset: 5px; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.icon { width: 22px; height: 22px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; vertical-align: middle; }
.text-gradient { color: var(--md-accent-bright); background: var(--md-gradient); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-muted { color: #91abc3; }
.eyebrow { display: block; color: #74ccf7; font-size: 10px; line-height: 1.7; font-weight: 600; letter-spacing: 1.9px; margin-bottom: 17px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 12px; padding: 13px 20px; border: 1px solid transparent; border-radius: var(--md-radius-small); font-size: 14px; line-height: 1.5; font-weight: 600; text-align: center; transition: transform .18s, background .18s, box-shadow .18s, border-color .18s; }
.button .icon { width: 19px; height: 19px; }
.button-primary { background: var(--md-button-gradient); color: #fff; border-color: #2eb1fc; box-shadow: 0 5px 24px rgba(2, 141, 247, .24), inset 0 1px 0 rgba(255,255,255,.12); }
.button-primary:hover { background: linear-gradient(115deg, #23baff, #238df4); box-shadow: 0 8px 33px rgba(2, 159, 247, .33); transform: translateY(-2px); }
.button-outline { color: #e3f0fc; background: rgba(7, 21, 36, .45); border-color: rgba(157, 191, 218, .48); }
.button-outline:hover { background: #112c43; border-color: #7dcaff; transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 10px 15px; font-size: 13px; }
.button-large { min-height: 56px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: #80cff9; font-size: 14px; line-height: 1.5; font-weight: 550; padding: 7px 0; }
.text-link .icon { width: 18px; height: 18px; transition: transform .2s; }
.text-link:hover { color: #d3efff; }
.text-link:hover .icon { transform: translateX(4px); }
.icon-button { display: inline-flex; justify-content: center; align-items: center; width: 44px; height: 44px; padding: 10px; border-radius: 7px; border: 1px solid var(--md-line); background: #0c2034; }
.icon-button:hover { background: #17344d; }
.check-list { display: grid; gap: 13px; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: #b7cada; font-size: 13px; line-height: 1.6; }
.check-list .icon { color: #5bcbff; width: 16px; height: 16px; margin-top: 3px; }
.sample-label { display: inline-flex; align-items: center; padding: 3px 6px; border: 1px solid var(--md-line); border-radius: 4px; font-size: 8px; font-weight: 500; line-height: 1.6; letter-spacing: .7px; color: #a1bbd2; white-space: nowrap; }
.skip-link { position: fixed; z-index: 200; top: -100px; left: 16px; padding: 12px 18px; border-radius: 6px; color: #fff; background: #087aac; }
.skip-link:focus { top: 10px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field label { color: #dcebf7; font-size: 13px; font-weight: 600; }
.form-field label span { color: var(--md-dim); font-weight: 400; font-size: 11px; margin-left: 5px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid #32516b; border-radius: 7px; background: #091a2a; padding: 13px 12px; min-height: 49px; font-size: 14px; color: #dfedf8; }
.form-field textarea { line-height: 1.65; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: #6087a7; }
.form-field small { font-size: 11px; line-height: 1.6; color: #9ab1c8; }
.form-field textarea::placeholder { color: #88a2b9; }
@media (min-width: 40rem) {
 :root { --md-gutter: 32px; --md-space-section: 78px; }
 h1 { font-size: 64px; } h2 { font-size: 44px; }
 .button-large { padding: 15px 23px; font-size: 15px; }
}
@media (min-width: 70rem) {
 :root { --md-gutter: 64px; --md-space-section: 100px; --md-header-height: 87px; }
 h1 { font-size: clamp(64px, 5.05vw, 76px); }
 h2 { font-size: 46px; }
}
@media (prefers-reduced-motion: reduce) {
 html { scroll-behavior: auto; }
 *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
/* Clipboard fallback uses a stylesheet class, never an inline style. */
.clipboard-buffer { position: fixed; top: 0; left: -10000px; width: 1px; height: 1px; }

/* Shared layout layer. Base rules target narrow screens; wider layouts are additive. */
.container { width: min(var(--md-max), calc(100% - var(--md-gutter) * 2)); margin-inline: auto; }
.section { position: relative; isolation: isolate; padding-block: var(--md-space-section); }
.section-heading { margin-bottom: 36px; }
.heading-split { display: grid; gap: 22px; }
.heading-split > p { max-width: 390px; font-size: 15px; line-height: 1.8; }
.centered { max-width: 790px; margin-inline: auto; text-align: center; }
.centered > p { max-width: 640px; margin: 22px auto 0; font-size: 15px; line-height: 1.85; }
.header-inner { min-height: var(--md-header-height); display: flex; align-items: center; gap: 14px; justify-content: space-between; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.desktop-nav { display: none; }
.hero-inner { position: relative; }
.hero-copy { position: relative; z-index: 3; padding: 45px 0 25px; }
.hero-visual { position: relative; width: calc(100% + 44px); margin-inline: -22px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.hero-actions > .button { flex: 1 1 auto; }
.hero-reassurance { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 22px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px 16px; padding-block: 27px; }
.industry-grid, .data-showcase, .quality-layout, .usecases-layout, .integration-layout, .access-grid, .faq-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; }
.data-showcase > *, .quality-layout > *, .usecases-layout > *, .integration-layout > *, .faq-layout > * { min-width: 0; }
.section-bottom-note, .access-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 25px; }
.data-copy { margin-top: 10px; }
.quality-art { order: 2; }
.quality-copy { order: 1; }
.pipeline-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pipeline-panel { display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
.pipeline-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.usecase-tabs { display: grid; gap: 8px; }
.ecosystem-targets { display: grid; gap: 0; }
.closing-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 13px; }
.footer-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 32px 22px; }
.footer-brand { grid-column: 1 / -1; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.form-grid { display: grid; grid-template-columns: minmax(0,1fr); }
.result-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 40rem) {
 .hero-visual { width: calc(100% + 64px); margin-inline: -32px; }
 .hero-copy { padding-top: 60px; }
 .hero-actions { justify-content: flex-start; }
 .hero-actions > .button { flex: 0 1 auto; }
 .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 .industry-automotive { grid-column: 1 / -1; }
 .data-copy { max-width: 680px; }
 .pipeline-tabs { grid-template-columns: repeat(6, minmax(0, 1fr)); }
 .pipeline-panel { grid-template-columns: 70px minmax(0, 1fr); align-items: center; gap: 25px; }
 .pipeline-tags { grid-column: 2; }
 .ecosystem-targets { grid-template-columns: repeat(3, minmax(0, 1fr)); }
 .access-grid { max-width: 600px; margin-inline: auto; }
 .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 18px; }
}
@media (min-width: 56rem) {
 .heading-split { grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; }
 .heading-split > p { justify-self: end; padding-bottom: 4px; }
 .benefit-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; padding-block: 31px; }
 .industry-grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
 .industry-automotive { grid-column: auto; }
 .data-showcase { grid-template-columns: 1.12fr .88fr; gap: 45px; align-items: center; }
 .quality-layout { grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: center; }
 .quality-art { order: 1; }
 .quality-copy { order: 2; }
 .usecases-layout { grid-template-columns: .8fr 1.5fr; gap: 32px; align-items: stretch; }
 .usecase-tabs { align-content: start; gap: 12px; }
 .integration-layout { grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
 .access-grid { grid-template-columns: repeat(3, minmax(0,1fr)); max-width: none; gap: 22px; }
 .faq-layout { grid-template-columns: .75fr 1.25fr; gap: 80px; }
 .footer-grid { grid-template-columns: 1.55fr 1fr 1fr 1.15fr 1fr; gap: 24px; }
 .footer-brand { grid-column: auto; }
}
@media (min-width: 70rem) {
 .desktop-nav { display: flex; align-items: center; gap: 25px; }
 .mobile-menu { display: none; }
 .header-inner { gap: 25px; }
 .hero-inner { min-height: 708px; display: flex; align-items: center; }
 .hero-copy { width: 52%; padding: 65px 0 69px; }
 .hero-visual { position: absolute; width: min(64vw, 850px); max-width: none; margin: 0; right: -100px; top: 22px; }
 .hero-actions { gap: 15px; }
 .hero-actions > .button { flex: 0 0 auto; padding-inline: 23px; font-size: 14px; }
 .section-heading { margin-bottom: 47px; }
 .industry-grid { gap: 27px; }
 .data-showcase { gap: 72px; }
 .quality-layout { gap: 85px; }
 .pipeline-panel { grid-template-columns: 82px 1.7fr 1fr; padding: 30px 42px; gap: 32px; }
 .pipeline-tags { grid-column: auto; flex-direction: column; align-items: flex-start; justify-self: end; }
 .integration-layout { gap: 90px; }
 .access-grid { gap: 26px; }
 .faq-layout { gap: 115px; }
 .footer-grid { gap: 40px; }
}
@media (min-width: 90rem) {
 .hero-inner { min-height: 733px; }
 .hero-copy { padding-top: 70px; }
 .hero-visual { top: 22px; right: -100px; }
 .header-inner { gap: 40px; }
}
@media (min-width: 70rem) and (max-height: 56rem) {
 .hero-inner { min-height: calc(100svh - var(--md-header-height)); align-items: flex-start; }
 .hero-copy { width: 48%; padding: clamp(34px, 5.4vh, 48px) 0 42px; }
 .hero-visual { width: min(58vw, 790px); right: -56px; top: -2px; }
 .hero-actions { margin-top: 22px; }
 .hero-reassurance { margin-top: 17px; }
}

/* Public marketing components. Depends on core.css + layout.css.
   backend.css is intentionally NOT loaded by the public Home. */
.md-frontend { overflow-x: clip; }
.site-header { position: relative; z-index: 50; border-bottom: 1px solid var(--md-line); background: rgba(4, 16, 29, .96); }
.brand-link { display: inline-flex; flex-shrink: 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 30px; height: 34px; fill: #27bafa; overflow: visible; }
.brand-name { font-size: 27px; font-weight: 650; letter-spacing: -.7px; line-height: 1.05; white-space: nowrap; }
.brand-name > span { color: #23b8ff; }
.brand-name > small { display: block; margin-top: 7px; color: #aec6d9; font-size: 5.7px; font-weight: 400; letter-spacing: 1.2px; }
.header-actions > .button { display: none; }
.login-link { color: #c2d3e3; font-size: 13px; padding: 12px 0; }
.login-link:hover { color: #fff; }
.nav-link, .nav-disclosure > summary { color: #c5d4e4; font-size: 13px; display: flex; align-items: center; gap: 5px; padding-block: 29px; white-space: nowrap; }
.nav-link:hover, .nav-disclosure > summary:hover, .nav-disclosure[open] > summary { color: #fff; }
.nav-disclosure > summary .icon { width: 13px; height: 13px; }
.nav-disclosure[open] > summary .icon { transform: rotate(180deg); }
.nav-disclosure { position: relative; }
.nav-panel { position: absolute; top: 74px; left: -20px; min-width: 355px; padding: 13px; background: #0a1c2ef7; border: 1px solid #2d5271; border-radius: 10px; box-shadow: 0 20px 80px #0008; backdrop-filter: blur(20px); }
.nav-panel > a { display: flex; align-items: center; gap: 14px; padding: 15px 13px; border-radius: 7px; font-size: 14px; }
.nav-panel > a:hover { background: #15314b; }
.nav-panel > a > .icon { width: 24px; height: 24px; color: var(--md-accent-bright); }
.nav-panel small { display: block; color: #9ab4cd; font-size: 11px; margin-top: 4px; }
.mobile-menu { position: static; }
.mobile-menu[open] > summary { background: #174365; border-color: #427aa2; }
.mobile-nav { position: absolute; top: calc(var(--md-header-height) - 1px); left: 0; right: 0; background: #081929fa; border-top: 1px solid #28465e; border-bottom: 1px solid #385d7a; padding: 27px var(--md-gutter); box-shadow: 0 25px 50px #0009; max-height: calc(100dvh - var(--md-header-height)); overflow-y: auto; backdrop-filter: blur(24px); }
.mobile-nav > a:not(.button), .mobile-nav > details > summary { display: flex; align-items: center; justify-content: space-between; color: #d0e0ed; border-bottom: 1px solid var(--md-line); padding-block: 15px; font-size: 15px; }
.mobile-nav > a > .icon, .mobile-nav > details > summary > .icon { width: 18px; height: 18px; color: #6ec2ef; }
.mobile-nav > details > div { padding: 10px 15px; border-left: 1px solid #3b7098; }
.mobile-nav > details a { display: block; padding: 12px 0; font-size: 14px; color: #aac2d8; }
.mobile-nav > .button { display: flex; margin-top: 22px; }
.hero { position: relative; isolation: isolate; overflow: hidden; background: #061422; }
.hero-atmosphere { position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at 80% 33%, rgba(18, 88, 138, .32), transparent 57%), radial-gradient(ellipse at 46% 100%, rgba(10, 69, 105, .35), transparent 60%), linear-gradient(100deg, #030d18 10%, #081e31 90%); }
.hero-label { display: inline-flex; align-items: center; gap: 9px; font-size: 8px; font-weight: 600; color: #b9e5ff; letter-spacing: 1.25px; line-height: 1.6; padding: 8px 11px; background: linear-gradient(90deg, #0b2c43, #0b3656); border: 1px solid #1e62884f; border-radius: 40px; margin-bottom: 22px; }
.hero-label .icon { width: 14px; height: 14px; color: #4dcaff; }
.hero h1 { max-width: 660px; }
.hero-lead { font-size: 15px; line-height: 1.85; color: #bed0e1; margin-top: 23px; max-width: 510px; }
.hero-actions .button { min-height: 52px; font-size: 13px; padding-inline: 14px; }
.hero-reassurance span { display: inline-flex; align-items: center; gap: 7px; color: #9fbbd2; font-size: 11px; }
.hero-reassurance .icon { color: #53c8f7; width: 15px; height: 15px; }
.hero-visual { padding-bottom: 16px; }
.hero-visual > img { width: 100%; opacity: .95; mask-image: linear-gradient(0deg, transparent, #000 13%, #000 96%, transparent); }
.hero-visual > figcaption { text-align: right; position: absolute; bottom: 12px; right: 28px; font-size: 8px; color: #87a9c4; }
.benefit-strip { position: relative; background: linear-gradient(90deg, #081f33, #0a233a 60%, #0b2034); border-top: 1px solid #286b973f; border-bottom: 1px solid #38709930; }
.benefit-grid > div { display: flex; gap: 11px; align-items: flex-start; }
.benefit-grid > div > .icon { color: #33bafb; width: 25px; height: 25px; margin-top: 1px; }
.benefit-grid span { display: block; font-size: 11px; line-height: 1.4; font-weight: 600; color: #d8e9f6; }
.benefit-grid small { display: block; margin-top: 5px; font-size: 10px; font-weight: 400; color: #a1bad0; }
.industries { background: radial-gradient(ellipse at 54% 22%, #0c2b4438, transparent 55%); }
.industry-card { background: #081b2c; border: 1px solid var(--md-line); border-radius: 12px; position: relative; overflow: hidden; box-shadow: 0 15px 40px #0002; transition: transform .25s, border-color .25s; }
.industry-card:hover { transform: translateY(-4px); border-color: #488dbbbb; }
.industry-photo { height: 214px; position: relative; overflow: hidden; }
.industry-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #081b2c, #081b2c00 78%); }
.industry-photo > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86) brightness(.84); transform: scale(1.035); transition: transform .6s; }
.industry-card:hover .industry-photo > img { transform: scale(1.07); }
.industry-solar .industry-photo > img { object-position: 50% 38%; }
.industry-retail .industry-photo > img { object-position: 50% 43%; }
.industry-automotive .industry-photo > img { object-position: 50% 46%; }
.industry-status { position: absolute; z-index: 2; left: 19px; top: 17px; background: #081b2bd9; padding: 5px 10px; border-radius: 5px; color: #bbdef4; border: 1px solid #75b8e550; font-size: 10px; letter-spacing: .2px; backdrop-filter: blur(10px); }
.status-planned { border-color: #8d9faa66; color: #d3dfeb; }
.industry-content { position: relative; z-index: 2; padding: 0 25px 27px; margin-top: -17px; }
.industry-title { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
.industry-title > .icon { color: #5bccff; width: 26px; height: 26px; }
.industry-solar .industry-title > .icon { color: #f1c575; }
.industry-title > h3 { font-size: 30px; }
.industry-title > span { margin-left: auto; font: 12px var(--md-mono); color: #7894aa; }
.industry-content > p { font-size: 13px; color: #9fb9cf; min-height: 42px; }
.industry-content .check-list { padding-block: 24px; margin-block: 16px 14px; border-block: 1px solid var(--md-line); gap: 12px; }
.industry-content .check-list li { font-size: 12px; }
.industry-content .text-link { font-size: 12px; }
.industry-retail { border-color: #258acc61; box-shadow: 0 10px 55px #028fea12; }
.section-bottom-note { color: #8ea9c1; font-size: 11px; line-height: 1.7; align-items: center; }
.section-bottom-note > span { display: flex; align-items: flex-start; gap: 8px; }
.section-bottom-note .icon { width: 15px; height: 15px; margin-top: 2px; }
.section-bottom-note > .text-link { font-size: 12px; }
.intelligence-section { background: linear-gradient(140deg, #081b2b, #061626 60%, #081c2d); border-block: 1px solid #4165821a; }
.data-workspace { background: linear-gradient(150deg, #102d46, #0b2033 75%); border: 1px solid #3a698a99; box-shadow: 0 26px 70px #0005, 0 0 65px #007bdc13; border-radius: 11px; overflow: hidden; }
.workspace-topbar { display: flex; gap: 10px; justify-content: space-between; align-items: center; padding: 17px 17px; background: #0d2236; border-bottom: 1px solid var(--md-line); }
.workspace-topbar > span:first-child { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; }
.workspace-topbar .icon { width: 17px; height: 17px; color: #3fc3ff; }
.workspace-topbar b { font-size: 11px; color: #8fadc6; font-weight: 400; margin-left: 3px; }
.workspace-tabs { display: flex; gap: 5px; padding: 14px 17px 0; border-bottom: 1px solid #42749740; }
.workspace-tabs > button { color: #b2c6d9; font-size: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 19px; border-bottom: 2px solid transparent; border-radius: 6px 6px 0 0; }
.workspace-tabs > button > .icon { width: 16px; height: 16px; }
.workspace-tabs > button[aria-selected="true"] { color: #e2f5ff; border-color: #3abcff; background: #1c507652; }
.workspace-tabs > button:hover { background: #2347628a; }
.record-panel { padding: 24px 18px 18px; }
.record-breadcrumb { color: #87a9c4; font-size: 9px; display: flex; align-items: center; gap: 7px; margin-bottom: 24px; flex-wrap: wrap; }
.record-breadcrumb > span { color: #4a708d; }
.record-heading { display: flex; align-items: center; gap: 15px; }
.record-object { display: flex; align-items: center; justify-content: center; width: 52px; height: 58px; background: linear-gradient(145deg, #1c5680, #102d46); border: 1px solid #5288b063; border-radius: 8px; flex-shrink: 0; }
.record-object > .icon { width: 31px; height: 31px; color: #7dd8ff; }
.record-overline { font-size: 7px; letter-spacing: .8px; color: #88a8c3; display: block; margin-bottom: 6px; }
.record-heading h3 { font-size: 23px; }
.record-heading p { font-size: 10px; margin-top: 6px; color: #9fb8cc; }
.identity-chain { display: flex; align-items: center; gap: 5px; padding: 10px; background: #09253a; border: 1px solid #2d5a785e; border-radius: 5px; margin-block: 25px 18px; flex-wrap: wrap; }
.identity-chain > span { font-size: 9px; color: #b0ccdf; }
.identity-chain .icon { width: 12px; height: 12px; color: #43a1d6; transform: rotate(-90deg); }
.spec-table > div { display: flex; justify-content: space-between; gap: 18px; padding-block: 13px; border-bottom: 1px solid #6799bf24; font-size: 10px; }
.spec-table dt { color: #9ebbd1; }
.spec-table dd { color: #e1f1fb; text-align: right; }
.spec-table dd span { color: #95b4c9; }
.record-context { display: flex; flex-wrap: wrap; gap: 10px 13px; padding-top: 22px; }
.record-context > span { display: flex; align-items: center; gap: 5px; color: #93b9d3; font-size: 8px; }
.record-context .icon { width: 13px; height: 13px; color: #4ebdf3; }
.workspace-bottom { padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; gap: 13px; border-top: 1px solid var(--md-line); background: #0a1c2c; }
.workspace-bottom > span { font-size: 8px; color: #8eabc2; max-width: 58%; }
.workspace-bottom > .text-link { font-size: 10px; white-space: nowrap; }
.workspace-bottom > .text-link > .icon { width: 14px; height: 14px; }
.data-copy > h3 { font-size: 32px; margin-bottom: 20px; }
.data-copy > p { font-size: 14px; line-height: 1.8; margin-bottom: 25px; }
.value-row { display: flex; gap: 13px; padding-block: 16px; }
.value-row > .icon { color: #4abefa; width: 22px; height: 22px; margin-top: 1px; }
.value-row h4 { font-size: 14px; margin-bottom: 5px; }
.value-row p { font-size: 12px; line-height: 1.8; }
.data-copy > .text-link { font-size: 12px; margin-top: 19px; }
.quality-section { background: radial-gradient(ellipse at 17% 50%, #082d4b55, transparent 60%); }
.quality-copy > p { font-size: 15px; line-height: 1.9; max-width: 525px; margin-block: 23px 30px; }
.quality-principles { display: grid; gap: 21px; margin-bottom: 29px; }
.quality-principles > div { display: flex; gap: 17px; }
.quality-principles > div > span { color: #4bb8f0; font: 12px var(--md-mono); padding-top: 3px; }
.quality-principles p { font-size: 13px; line-height: 1.8; }
.quality-principles strong { color: #d8e9f7; display: block; margin-bottom: 4px; font-weight: 550; }
.quality-copy > .text-link { font-size: 12px; }
.quality-art { height: 437px; position: relative; max-width: 485px; width: 100%; margin-inline: auto; }
.quality-art::before { content: ""; position: absolute; width: 80%; aspect-ratio: 1; left: 10%; top: 0; background: radial-gradient(circle, #147cbd4d, #1069ab16 37%, transparent 69%); }
.quality-orbit { border: 1px solid #4fb1fa29; border-radius: 50%; position: absolute; left: 50%; top: 140px; transform: translate(-50%,-50%); }
.orbit-outer { width: min(100%, 354px); aspect-ratio: 1; border-style: dashed; }
.orbit-middle { width: min(82%, 284px); aspect-ratio: 1; }
.orbit-inner { width: 190px; height: 190px; box-shadow: 0 0 40px #0a7bbc1b, inset 0 0 40px #0b70b819; }
.quality-center { width: 135px; height: 135px; position: absolute; left: 50%; top: 140px; transform: translate(-50%,-50%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; background: radial-gradient(circle at 50% 25%, #163c61, #081b30); border: 1px solid #2885c9; box-shadow: 0 0 60px #008eec40, inset 0 0 17px #189bf01c; border-radius: 50%; }
.quality-center > .icon { width: 47px; height: 47px; stroke-width: 1; color: #77d6ff; filter: drop-shadow(0 0 8px #38b9ffc9); }
.quality-center > span { font-size: 8px; line-height: 1.5; text-align: center; color: #97c7e5; letter-spacing: 1.7px; }
.orbit-label { position: absolute; display: flex; align-items: center; gap: 6px; font-size: 9px; padding: 8px 10px; border: 1px solid #376c935a; border-radius: 4px; background: #0d2941dc; color: #afd2e9; z-index: 2; }
.orbit-label > .icon { width: 13px; height: 13px; color: #74c4ef; }
.orbit-source { left: 4%; top: 40px; transform: rotate(-11deg); }
.orbit-identity { right: 0; top: 29px; transform: rotate(10deg); }
.orbit-rights { left: 0; top: 204px; transform: rotate(5deg); }
.orbit-evidence { right: 1%; top: 210px; transform: rotate(-7deg); }
.quality-rule { position: absolute; z-index: 3; bottom: 7px; left: 7%; width: 86%; padding: 19px 20px 14px; background: linear-gradient(120deg, #0f2b44ef, #0a1d31ef); border: 1px solid #43769c66; border-radius: 9px; box-shadow: 0 24px 50px #0004; backdrop-filter: blur(12px); }
.quality-rule > div { display: flex; align-items: center; gap: 9px; color: #d9eaf6; font-size: 12px; margin-bottom: 11px; }
.quality-rule > div > .icon { width: 17px; height: 17px; color: #75c9ff; }
.quality-rule p { display: flex; align-items: center; justify-content: space-between; padding-block: 8px; border-top: 1px solid #3d6a8d36; font-size: 9px; gap: 10px; }
.quality-rule b { color: #b3d5ea; font-size: 8px; font-weight: 400; padding: 2px 6px; border: 1px solid #345571; background: #102d46; border-radius: 3px; }
.pipeline-section { background: linear-gradient(140deg, #061522, #092138 60%, #061625); border-block: 1px solid #5d91b421; }
.pipeline-section .centered { max-width: 960px; }
.pipeline-section .centered > h2 { font-size: 33px; }
.pipeline-tabs { gap: 9px; margin-bottom: 21px; }
.pipeline-tabs > button { display: flex; flex-direction: column; align-items: center; gap: 9px; padding: 17px 7px; position: relative; border: 1px solid #2952734f; border-radius: 7px; background: #0a1b2b91; color: #a9c3d9; transition: background .2s, border-color .2s; }
.pipeline-tabs > button:hover { border-color: #458ab8; }
.pipeline-tabs > button > span { position: absolute; left: 9px; top: 8px; font: 8px var(--md-mono); color: #7ba1c1; }
.pipeline-tabs > button > .icon { width: 25px; height: 25px; color: #70b8e9; }
.pipeline-tabs > button > b { font-weight: 500; font-size: 10px; }
.pipeline-tabs > button[aria-selected="true"] { background: linear-gradient(150deg, #134369, #0a2943); border-color: #309ace; box-shadow: 0 0 25px #039feb19, inset 0 1px #cbefff0f; color: #e4f5ff; }
.pipeline-tabs > button[aria-selected="true"] > .icon { color: #89ddff; }
.pipeline-panels { border: 1px solid #38668d63; border-radius: 8px; background: #0d2338; }
.pipeline-panel { padding: 23px; min-height: 240px; }
.pipeline-large-number { font-size: 42px; line-height: 1; letter-spacing: -3px; font-weight: 300; color: #54b4ee; }
.pipeline-panel h3 { font-size: 23px; margin-bottom: 13px; }
.pipeline-panel p { font-size: 13px; line-height: 1.9; }
.pipeline-tags > span { display: inline-flex; gap: 7px; align-items: center; font-size: 10px; color: #bad4e7; }
.pipeline-tags > span > .icon { width: 13px; height: 13px; color: #59bff6; }
.pipeline-note { font-size: 10px; color: #93abc2; text-align: center; line-height: 1.8; margin-top: 23px; }
.usecases-section { background: radial-gradient(ellipse at 70% 60%, #0d314b39, transparent 64%); }
.usecase-tabs > button { display: flex; align-items: center; gap: 13px; padding: 20px 16px; border: 1px solid transparent; border-radius: 7px; text-align: left; transition: background .2s; }
.usecase-tabs > button > .icon:first-child { color: #6bbee9; width: 23px; height: 23px; }
.usecase-tabs > button > .icon:last-child { width: 16px; height: 16px; margin-left: auto; color: #639ec5; }
.usecase-tabs > button > span { font-size: 14px; color: #cfdfec; }
.usecase-tabs > button small { display: block; color: #9bb4ca; font-size: 11px; margin-top: 4px; }
.usecase-tabs > button[aria-selected="true"] { background: linear-gradient(100deg, #143e5c, #0e283e); border-color: #3675a24d; }
.usecase-tabs > button:hover { background: #10283b; }
.usecase-panel { position: relative; overflow: hidden; isolation: isolate; height: 100%; padding: 30px 23px; border: 1px solid #45739a50; border-radius: 10px; background: linear-gradient(120deg, #112e47, #0b2238); }
.usecase-panel .eyebrow { font-size: 8px; letter-spacing: 1.5px; }
.usecase-panel > h3 { font-size: 30px; line-height: 1.2; max-width: 490px; }
.usecase-panel > p { margin-top: 20px; font-size: 13px; line-height: 1.9; max-width: 535px; }
.outcome-row { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-block: 24px 21px; }
.outcome-row > span { display: flex; align-items: center; gap: 7px; font-size: 10px; color: #a9c6db; }
.outcome-row .icon { width: 15px; height: 15px; color: #63bfe9; }
.usecase-panel > .text-link { font-size: 12px; }
.usecase-watermark { z-index: -1; position: absolute; right: -45px; bottom: -45px; color: #29628940; transform: rotate(-14deg); }
.usecase-watermark > .icon { width: 245px; height: 245px; stroke-width: .5; }
.integration-section { background: linear-gradient(115deg, #061421, #081e32 73%, #0b263c); border-block: 1px solid #4a769024; }
.integration-copy > p { margin-top: 23px; margin-bottom: 26px; max-width: 500px; font-size: 15px; line-height: 1.9; }
.integration-option { display: flex; gap: 14px; padding-block: 16px; }
.integration-option > .icon { color: #53b8ed; width: 23px; height: 23px; margin-top: 1px; }
.integration-option h3 { font-size: 16px; margin-bottom: 6px; }
.integration-option p { font-size: 12px; line-height: 1.85; }
.integration-copy > .button { margin-top: 23px; }
.integration-visual { padding-top: 17px; position: relative; }
.integration-visual::before { content: ""; position: absolute; inset: -50px 0; z-index: -1; background: radial-gradient(ellipse, #008ef31f, transparent 63%); }
.code-window { border: 1px solid #4d7c9f70; border-radius: 10px; overflow: hidden; background: #081a2a; box-shadow: 0 25px 80px #0005; }
.code-topbar { display: flex; justify-content: space-between; align-items: center; gap: 9px; padding: 15px 15px; background: #10273d; border-bottom: 1px solid #4b749a3d; color: #9fbed4; font-size: 11px; }
.code-topbar > span:first-child { display: flex; gap: 5px; }
.code-topbar i { width: 6px; height: 6px; border-radius: 50%; background: #658da9; }
.code-topbar i:first-child { background: #4999c6; }
.code-topbar i:last-child { background: #3879a2; }
.code-caption { color: #8eacc3; font-size: 10px; padding: 22px 20px 0; }
.code-example { margin: 0; padding: 25px 20px; font-family: var(--md-mono); font-size: 11px; line-height: 1.9; overflow-x: auto; color: #93b4d0; tab-size: 2; }
.syntax-key { color: #86c5ee; }
.syntax-string { color: #8fddcf; }
.syntax-value { color: #ddc591; }
.syntax-punctuation { color: #d8eaf5; }
.code-footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid #31557252; padding: 12px 18px; background: #0b2033; }
.code-footer > span { color: #98b2c9; font-size: 8px; }
.code-footer > .text-link { font-size: 10px; }
.code-footer .icon { width: 14px; height: 14px; }
.delivery-path { display: flex; justify-content: center; align-items: center; gap: 13px; margin-top: 27px; }
.delivery-path > span { display: inline-flex; gap: 8px; align-items: center; font-size: 10px; color: #a1c2da; }
.delivery-path > span > .icon { width: 18px; height: 18px; color: #44b3ee; }
.delivery-path > i { width: 56px; height: 1px; background: linear-gradient(90deg, #22688f, #8adaff, #22688f); position: relative; }
.delivery-path > i::after { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; border-top: 1px solid #87caef; border-right: 1px solid #87caef; transform: rotate(45deg); }
.wordpress-note { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 18px; border-top: 1px solid #4f779544; margin-top: 48px; padding-top: 29px; }
.wordpress-note > .icon { color: #4cb6ee; width: 24px; height: 24px; margin-top: 2px; }
.wordpress-note > div { flex: 1 1 240px; }
.wordpress-note strong { font-size: 14px; font-weight: 550; }
.wordpress-note p { margin-top: 7px; font-size: 12px; line-height: 1.85; max-width: 850px; }
.wordpress-note > .text-link { align-self: center; font-size: 12px; }
.ecosystem-section { background: radial-gradient(ellipse at 50% 46%, #0b3f6640, transparent 57%); }
.ecosystem-network { max-width: 980px; margin-inline: auto; }
.ecosystem-source { margin-inline: auto; width: fit-content; padding: 22px 33px; border: 1px solid #379be36b; border-radius: 12px; background: linear-gradient(130deg, #10314e, #0a2137); box-shadow: 0 0 50px #008eed1c; text-align: center; }
.ecosystem-source .brand-name { font-size: 31px; }
.ecosystem-source .brand-name > small { display: none; }
.ecosystem-source > small { display: block; margin-top: 16px; font-size: 8px; letter-spacing: 1.9px; color: #8bbfdf; }
.ecosystem-source .brand-mark { width: 30px; height: 34px; }
.ecosystem-branches { width: 1px; height: 37px; margin-inline: auto; background: linear-gradient(#339fdb, #16405d); }
.ecosystem-targets { text-align: center; }
.ecosystem-targets > div { padding: 26px 18px; border-top: 1px solid #3e71984d; }
.ecosystem-target-featured { background: radial-gradient(ellipse at 50% 0%, #123c6140, transparent 76%); }
.sister-brand { display: inline-flex; align-items: center; justify-content: center; gap: 9px; color: #ddedf8; font-size: 23px; font-weight: 600; letter-spacing: -.7px; white-space: nowrap; }
.sister-brand .icon { width: 26px; height: 26px; color: #81aac5; }
.sister-brand sup { color: #49aefd; font-size: 12px; align-self: flex-start; margin-left: -4px; padding-top: 2px; }
.publisher-mark { display: block; background: var(--md-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-size: 31px; font-style: italic; font-weight: 900; line-height: 1; margin-right: 2px; }
.ecosystem-targets h3 { color: #b9d1e3; font-size: 13px; margin-top: 16px; letter-spacing: 0; font-weight: 550; }
.ecosystem-targets p { margin-top: 9px; font-size: 11px; line-height: 1.8; max-width: 280px; margin-inline: auto; }
.ecosystem-note { color: #85a0b8; font-size: 9px; line-height: 1.8; text-align: center; margin-top: 23px; }
.access-section { background: linear-gradient(150deg, #081d2e, #071724 75%); border-block: 1px solid #2c567a33; }
.access-grid { margin-top: 53px; }
.access-card { position: relative; padding: 29px 26px 25px; border: 1px solid #45637e62; border-radius: 11px; background: linear-gradient(145deg, #0d2337, #0a1d2e); display: flex; flex-direction: column; box-shadow: 0 18px 50px #0002; }
.access-eyebrow { display: flex; align-items: center; gap: 8px; color: #8bbde0; font-size: 9px; font-weight: 500; letter-spacing: 1.7px; margin-bottom: 21px; }
.access-eyebrow > .icon { width: 17px; height: 17px; color: #55b5ef; }
.access-card h3 { font-size: 33px; margin-bottom: 12px; }
.access-card > p { font-size: 12px; }
.access-value { color: #def0ff; font-size: 20px; letter-spacing: -.3px; font-weight: 500; margin-block: 25px; padding-block: 21px; border-block: 1px solid #5c86a62d; }
.access-value small { display: block; margin-top: 7px; color: #98b4ca; font-size: 10px; letter-spacing: 0; font-weight: 400; }
.access-card > .check-list { gap: 14px; margin-bottom: 30px; flex: 1; }
.access-card > .check-list li { font-size: 11px; line-height: 1.8; }
.access-card > .button { font-size: 12px; padding-inline: 13px; }
.access-note { font-size: 9px; color: #99b3ca; text-align: center; margin-top: 16px; line-height: 1.8; }
.access-note a { color: #bfdef5; text-decoration: underline; }
.access-featured { border-color: #348dcc91; background: linear-gradient(150deg, #123b5b, #0a2237 83%); box-shadow: 0 15px 55px #0084ff15; }
.featured-ribbon { position: absolute; left: 25px; right: 25px; top: -14px; text-align: center; color: #d4f1ff; background: linear-gradient(90deg, #124f79, #147ab0, #14517a); border: 1px solid #4da5d7; border-radius: 4px; padding: 6px 8px; font-size: 8px; font-weight: 550; letter-spacing: 1.3px; }
.access-bottom { align-items: center; }
.access-bottom > p { font-size: 10px; max-width: 755px; }
.access-bottom strong { color: #bacfe1; font-weight: 400; display: block; }
.access-bottom > .text-link { font-size: 12px; }
.faq-intro > p { font-size: 14px; line-height: 1.85; margin-block: 23px; max-width: 315px; }
.faq-intro > .text-link { font-size: 13px; }
.faq-list { border-top: 1px solid #42648452; }
.faq-item { border-bottom: 1px solid #42648452; }
.faq-item > summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 22px; color: #cfdfec; font-size: 13px; line-height: 1.65; font-weight: 500; }
.faq-item > summary:hover { color: #77d5ff; }
.faq-toggle { flex-shrink: 0; width: 16px; height: 16px; position: relative; }
.faq-toggle::before, .faq-toggle::after { position: absolute; content: ""; background: #74bedf; }
.faq-toggle::before { width: 10px; height: 1px; left: 3px; top: 7px; }
.faq-toggle::after { width: 1px; height: 10px; left: 7px; top: 3px; }
.faq-item[open] > summary { color: #82d5ff; }
.faq-item[open] .faq-toggle::after { display: none; }
.faq-answer { padding: 0 30px 23px 0; }
.faq-answer p { font-size: 12px; line-height: 1.95; }
.closing-section { position: relative; overflow: hidden; isolation: isolate; background: radial-gradient(ellipse at 50% 50%, #14456999, transparent 73%), linear-gradient(90deg, #0a2138, #0d3554 55%, #102c45); padding-block: 77px; border-block: 1px solid #3f79a56b; }
.closing-section::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, #072039b3, #092a4580), url("/media/home/hero-maxdata.webp") 50% 43% / cover no-repeat; opacity: .17; filter: blur(3px); transform: scale(1.05); }
.closing-orbit { position: absolute; z-index: -1; width: 1300px; height: 650px; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-17deg); border: 1px solid #4aa7e768; border-radius: 50%; box-shadow: 0 0 50px #009fff17, 0 0 0 65px #1585c80a, 0 0 0 130px #3bbaf508; }
.closing-content { text-align: center; }
.closing-content > .eyebrow { font-size: 8px; letter-spacing: 1.6px; margin-bottom: 23px; }
.closing-content > h2 { font-size: 33px; line-height: 1.22; }
.closing-content > p { font-size: 14px; line-height: 1.9; color: #b5cce1; margin-block: 23px 29px; }
.closing-actions > .button { min-width: 262px; }
.closing-note { display: block; margin-top: 23px; color: #9bbad2; font-size: 9px; }
.site-footer { padding-top: 54px; padding-bottom: 94px; background: #030d18; }
.footer-grid { padding-bottom: 44px; }
.footer-brand .brand-name { font-size: 28px; }
.footer-brand p { margin-top: 22px; color: #9cb3c8; font-size: 12px; line-height: 1.9; }
.footer-brand > small { display: block; color: #86a0b6; font-size: 10px; margin-top: 16px; }
.footer-mail { display: flex; align-items: center; gap: 9px; color: #8bc5e9; font-size: 11px; margin-top: 19px; }
.footer-mail > .icon { width: 15px; height: 15px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-column > h3 { font-size: 12px; letter-spacing: 0; color: #e0edf7; margin-block: 6px 6px; }
.footer-column > a { font-size: 11px; color: #91aac2; line-height: 1.7; }
.footer-column > a:hover { color: #d4edff; }
.footer-column a > span { display: inline-block; font-size: 8px; color: #92b9d1; margin-left: 3px; }
.footer-link > .icon { display: none; }
.footer-bottom { border-top: 1px solid #5073942e; padding-top: 24px; font-size: 9px; color: #91a8bf; }
.footer-motto { display: none; letter-spacing: 1.4px; font-size: 8px; }
.footer-bottom > a { display: inline-flex; gap: 8px; align-items: center; color: #a3c5df; }
.footer-bottom > a > .icon { width: 14px; height: 14px; }
.mobile-bottom-bar { display: flex; gap: 9px; padding: 11px 16px max(11px,env(safe-area-inset-bottom)); background: #071a2cec; border-top: 1px solid #4686b566; box-shadow: 0 -10px 40px #0003; position: fixed; z-index: 45; bottom: 0; left: 0; right: 0; transform: translateY(120%); transition: transform .25s; backdrop-filter: blur(20px); visibility: hidden; }
.mobile-bottom-bar.is-visible { transform: translateY(0); visibility: visible; }
.mobile-bottom-bar > .button { flex: 1; min-height: 46px; padding: 9px 12px; font-size: 12px; gap: 7px; }
.mobile-bottom-bar .icon { width: 15px; height: 15px; }
.modal-open .mobile-bottom-bar { visibility: hidden; }
.request-dialog { width: calc(100% - 24px); max-width: 680px; max-height: calc(100dvh - 30px); overflow-y: auto; padding: 0; color: var(--md-text); border: 1px solid #527c9b; border-radius: 13px; background: linear-gradient(130deg, #102a41, #081b2c); box-shadow: 0 30px 140px #000b; overscroll-behavior: contain; }
.request-dialog::backdrop { background: #010914c7; backdrop-filter: blur(8px); }
.dialog-shell { padding: 24px 21px; }
.dialog-top { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 24px; }
.dialog-top > .eyebrow { margin-bottom: 0; font-size: 8px; }
.dialog-top > .icon-button { width: 37px; height: 37px; }
.request-dialog h2 { font-size: 31px; }
#request-description { font-size: 13px; line-height: 1.85; margin-block: 18px 26px; }
#request-form > .button { width: 100%; }
.form-privacy { display: flex; align-items: flex-start; gap: 8px; font-size: 10px; line-height: 1.9; margin-top: 18px; color: #a2bdd1; }
.form-privacy > .icon { width: 14px; height: 14px; color: #84b9d8; margin-top: 2px; }
.request-context { font-size: 12px; line-height: 1.8; background: #16426375; border: 1px solid #487497; border-radius: 6px; color: #c7deef; padding: 12px 15px; margin-bottom: 20px; }
.request-result-icon { display: inline-flex; color: #70d8ff; margin-bottom: 22px; }
.request-result-icon > .icon { width: 43px; height: 43px; stroke-width: 1.2; }
.result-intro { font-size: 13px; line-height: 1.9; margin-block: 18px 22px; }
.request-summary { border-top: 1px solid #4772906b; }
.request-summary > div { display: flex; justify-content: space-between; gap: 20px; font-size: 12px; padding: 12px 0; border-bottom: 1px solid #4267865c; }
.request-summary dt { color: #9eb9cc; }
.request-summary dd { color: #d8eaf7; text-align: right; overflow-wrap: anywhere; }
.result-message { white-space: pre-wrap; font-size: 12px; line-height: 1.8; background: #061b2a; padding: 14px; border: 1px solid #294861; border-radius: 6px; color: #bad0e1; margin-top: 19px; overflow-wrap: anywhere; }
.result-actions { margin-top: 24px; }
.result-actions > .button { font-size: 12px; }
.result-edit { margin-top: 17px; font-size: 12px; }
.toast { position: fixed; z-index: 150; left: 50%; bottom: 90px; transform: translateX(-50%); padding: 13px 20px; border: 1px solid #63abd8; background: #143752; border-radius: 7px; box-shadow: 0 10px 40px #0006; color: #e3f4ff; font-size: 12px; max-width: calc(100% - 36px); text-align: center; }
.no-script-note { padding: 20px; background: #183550; color: #d1e7f8; font-size: 13px; text-align: center; }
@media (min-width: 40rem) {
 .header-actions > .button { display: inline-flex; }
 .brand-mark { width: 34px; height: 38px; }
 .brand-name { font-size: 30px; }
 .brand-name > small { font-size: 6.5px; }
 .hero-label { font-size: 10px; letter-spacing: 1.3px; padding: 8px 13px; }
 .hero-label .icon { width: 16px; height: 16px; }
 .hero-lead { font-size: 16px; max-width: 600px; }
 .hero-actions .button { min-height: 55px; font-size: 14px; padding-inline: 23px; }
 .hero-reassurance span { font-size: 12px; }
 .benefit-grid span { font-size: 12px; }
 .benefit-grid small { font-size: 11px; }
 .industry-automotive { display: grid; grid-template-columns: 1fr 1fr; }
 .industry-automotive .industry-photo { height: 100%; min-height: 350px; }
 .industry-automotive .industry-photo::after { background: linear-gradient(90deg, #081b2c00, #081b2c 100%); }
 .industry-automotive .industry-content { padding-top: 33px; margin-top: 0; }
 .workspace-topbar { padding: 19px 24px; }
 .workspace-topbar > span:first-child { font-size: 15px; gap: 8px; }
 .workspace-topbar b { font-size: 12px; }
 .workspace-topbar .icon { width: 20px; height: 20px; }
 .workspace-tabs { padding-inline: 24px; }
 .record-panel { padding: 28px 27px; }
 .record-overline { font-size: 8px; }
 .record-heading h3 { font-size: 27px; }
 .record-heading p { font-size: 12px; }
 .record-object { width: 62px; height: 70px; }
 .identity-chain { gap: 9px; padding: 12px; }
 .identity-chain > span { font-size: 10px; }
 .spec-table > div { font-size: 12px; }
 .record-context > span { font-size: 10px; }
 .workspace-bottom { padding-inline: 24px; }
 .workspace-bottom > span { font-size: 9px; }
 .workspace-bottom > .text-link { font-size: 11px; }
 .quality-art { height: 458px; }
 .quality-orbit, .quality-center { top: 151px; }
 .orbit-outer { width: 385px; }
 .orbit-middle { width: 300px; }
 .orbit-inner { width: 215px; height: 215px; }
 .quality-center { width: 148px; height: 148px; }
 .quality-rule { bottom: 4px; }
 .quality-rule p { font-size: 10px; }
 .pipeline-section .centered > h2 { font-size: 39px; }
 .pipeline-tabs > button { padding-block: 23px; }
 .pipeline-panel { min-height: 218px; padding: 28px; }
 .pipeline-large-number { font-size: 62px; }
 .pipeline-panel h3 { font-size: 24px; }
 .usecase-panel { padding: 36px; min-height: 350px; }
 .usecase-panel > h3 { font-size: 36px; }
 .usecase-panel > p { font-size: 14px; }
 .code-example { font-size: 13px; padding: 27px; }
 .code-caption { padding-inline: 27px; font-size: 11px; }
 .code-footer > span { font-size: 9px; }
 .code-topbar { padding-inline: 22px; }
 .ecosystem-branches { background: none; width: 67%; height: 42px; position: relative; display: flex; justify-content: space-between; }
 .ecosystem-branches::before { content: ""; position: absolute; left: 50%; top: 0; height: 21px; width: 1px; background: #399fd2; }
 .ecosystem-branches::after { content: ""; position: absolute; left: 0; right: 0; top: 21px; height: 1px; background: linear-gradient(90deg,#27516e,#4fbbed,#27516e); }
 .ecosystem-branches > span { margin-top: 21px; height: 21px; width: 1px; background: #3b7eaa; }
 .sister-brand { font-size: 20px; gap: 7px; }
 .sister-brand .icon { width: 23px; height: 23px; }
 .ecosystem-targets > div { border-top: 0; padding: 22px 16px; }
 .ecosystem-targets > div + div { border-left: 1px solid #48759c31; }
 .access-card { padding: 33px 30px 29px; }
 .access-card > .check-list li { font-size: 12px; }
 .closing-content > h2 { font-size: 41px; }
 .closing-content > .eyebrow { font-size: 9px; }
 .closing-content > p { font-size: 16px; }
 .closing-section { padding-block: 85px; }
 .footer-motto { display: inline; }
 .dialog-shell { padding: 30px 35px; }
 .request-dialog h2 { font-size: 36px; }
 .mobile-bottom-bar { padding-inline: 32px; }
}
@media (min-width: 56rem) {
 .industry-photo { height: 208px; }
 .industry-content { padding-inline: 24px; }
 .industry-content .check-list li { font-size: 11px; }
 .industry-automotive { display: block; }
 .industry-automotive .industry-photo { height: 208px; min-height: 0; }
 .industry-automotive .industry-photo::after { background: linear-gradient(0deg, #081b2c, #081b2c00 78%); }
 .industry-automotive .industry-content { padding-top: 0; margin-top: -17px; }
 .data-copy { margin-top: 0; }
 .data-copy > h3 { font-size: 31px; }
 .record-panel { padding-inline: 24px; }
 .record-heading h3 { font-size: 24px; }
 .record-heading p { font-size: 11px; }
 .record-context { gap: 9px; }
 .record-context > span { font-size: 9px; }
 .quality-art { max-width: 430px; }
 .quality-copy > p { font-size: 14px; }
 .usecase-panel { padding: 38px; min-height: 380px; }
 .usecase-tabs > button { padding: 24px 19px; }
 .code-example { font-size: 12px; }
 .wordpress-note { flex-wrap: nowrap; margin-top: 58px; }
 .wordpress-note p { max-width: 900px; }
 .wordpress-note > .text-link { flex-shrink: 0; }
 .sister-brand { font-size: 24px; }
 .access-card { padding: 30px 23px 25px; }
 .access-card h3 { font-size: 30px; }
 .access-card > p { font-size: 11px; min-height: 38px; }
 .access-value { font-size: 19px; }
 .access-card > .check-list li { font-size: 11px; }
 .access-bottom strong { display: inline; }
 .faq-intro { padding-top: 8px; }
 .faq-item > summary { font-size: 13px; padding-block: 23px; }
 .site-footer { padding-bottom: 32px; }
 .mobile-bottom-bar { display: none; }
 .footer-brand .brand-name { font-size: 26px; }
 .footer-brand .brand-mark { width: 29px; height: 33px; }
 .footer-brand .brand-name > small { font-size: 5.5px; letter-spacing: .9px; }
 .footer-column > a { font-size: 10px; }
 .footer-grid { gap: 22px; }
 .toast { bottom: 35px; }
}
@media (min-width: 70rem) {
 .brand { gap: 11px; }
 .brand-name { font-size: 31px; }
 .brand-mark { width: 34px; height: 38px; }
 .brand-name > small { font-size: 6.5px; letter-spacing: 1.1px; }
 .header-actions { gap: 25px; }
 .hero-label { font-size: 9px; letter-spacing: 1.25px; margin-bottom: 26px; }
 .hero-lead { max-width: 490px; font-size: 16px; line-height: 1.9; }
 .hero-visual > img { mask-image: linear-gradient(90deg, transparent, #000 11%, #000 98%, transparent); }
 .hero-visual { mask-image: linear-gradient(0deg, transparent, #000 7%, #000 98%, transparent); }
 .hero-visual > figcaption { bottom: 6px; right: 114px; font-size: 8px; }
 .hero-actions { margin-top: 31px; }
 .hero-reassurance { margin-top: 23px; }
 .hero-reassurance span { font-size: 11px; }
 .benefit-grid > div { gap: 15px; }
 .benefit-grid > div > .icon { width: 29px; height: 29px; }
 .benefit-grid span { font-size: 13px; }
 .benefit-grid small { font-size: 10px; }
 .industry-photo, .industry-automotive .industry-photo { height: 234px; }
 .industry-content { padding-inline: 29px; padding-bottom: 30px; }
 .industry-title > h3 { font-size: 32px; }
 .industry-content .check-list li { font-size: 12px; }
 .industry-content > p { font-size: 13px; }
 .industry-content .text-link { font-size: 12px; }
 .data-copy > h3 { font-size: 35px; }
 .value-row { gap: 16px; padding-block: 18px; }
 .value-row h4 { font-size: 15px; }
 .value-row p { font-size: 12px; }
 .record-panel { padding: 29px 31px; }
 .workspace-topbar { padding-inline: 27px; }
 .record-heading h3 { font-size: 27px; }
 .record-object { width: 65px; height: 71px; }
 .record-context > span { font-size: 9px; }
 .record-context { gap: 18px; }
 .quality-art { max-width: 480px; height: 490px; }
 .quality-orbit, .quality-center { top: 160px; }
 .orbit-outer { width: 420px; }
 .orbit-middle { width: 328px; }
 .orbit-inner { width: 233px; height: 233px; }
 .quality-center { width: 161px; height: 161px; }
 .quality-center > .icon { width: 52px; height: 52px; }
 .orbit-label { font-size: 10px; padding: 10px 13px; }
 .orbit-source { left: 2%; top: 42px; }
 .orbit-identity { right: 0; top: 43px; }
 .orbit-rights { top: 229px; }
 .orbit-evidence { top: 238px; }
 .quality-rule { padding: 20px 22px 16px; bottom: 0; }
 .quality-rule > div { font-size: 13px; }
 .quality-rule p { font-size: 10px; padding-block: 10px; }
 .quality-copy > p { font-size: 15px; }
 .quality-principles p { font-size: 13px; }
 .quality-principles strong { display: inline; }
 .pipeline-section .centered > h2 { font-size: 41px; }
 .pipeline-tabs { gap: 15px; }
 .pipeline-tabs > button { padding-block: 26px; gap: 12px; }
 .pipeline-tabs > button > .icon { width: 29px; height: 29px; }
 .pipeline-tabs > button > b { font-size: 12px; }
 .pipeline-tabs > button > span { left: 12px; top: 10px; font-size: 9px; }
 .pipeline-panel { min-height: 206px; padding: 30px 42px; }
 .pipeline-large-number { font-size: 68px; }
 .pipeline-panel h3 { font-size: 25px; }
 .pipeline-panel p { max-width: 580px; }
 .pipeline-tags { gap: 13px; }
 .pipeline-tags > span { font-size: 11px; }
 .usecase-panel { padding: 43px 47px; min-height: 372px; }
 .usecase-panel .eyebrow { font-size: 9px; }
 .usecase-panel > h3 { font-size: 38px; }
 .usecase-tabs > button > span { font-size: 15px; }
 .usecase-tabs > button > .icon:first-child { width: 26px; height: 26px; }
 .code-example { font-size: 13px; padding-inline: 29px; }
 .code-caption { font-size: 11px; }
 .code-footer { padding: 14px 23px; }
 .integration-copy > p { max-width: 460px; }
 .integration-option { gap: 17px; }
 .integration-option h3 { font-size: 17px; }
 .integration-option p { max-width: 410px; }
 .ecosystem-targets > div { padding: 28px 24px; }
 .ecosystem-targets p { font-size: 12px; }
 .access-card { padding: 34px 29px 28px; }
 .access-card h3 { font-size: 33px; }
 .access-card > p { font-size: 12px; min-height: 20px; }
 .access-value { font-size: 21px; }
 .access-card > .check-list li { font-size: 12px; }
 .access-note { font-size: 9px; }
 .access-card > .button { font-size: 12px; min-height: 52px; }
 .faq-item > summary { font-size: 14px; }
 .faq-answer p { font-size: 13px; }
 .closing-content > h2 { font-size: 46px; }
 .closing-content > .eyebrow { letter-spacing: 2px; font-size: 10px; }
 .closing-section { padding-block: 87px; }
 .footer-grid { gap: 32px; }
 .footer-column > a { font-size: 11px; }
 .footer-brand .brand-name { font-size: 30px; }
 .footer-brand .brand-name > small { font-size: 6px; }
 .footer-brand .brand-mark { width: 33px; height: 37px; }
}
@media (min-width: 70rem) and (max-height: 56rem) {
 .brand-name { font-size: 27px; }
 .brand-mark { width: 30px; height: 34px; }
 .brand-name > small { margin-top: 5px; font-size: 5.7px; }
 .nav-link, .nav-disclosure > summary { padding-block: 22px; }
 .button-small { min-height: 40px; padding: 8px 14px; }
 .hero-label { margin-bottom: 18px; }
 .hero h1 { font-size: clamp(48px, 5.2vw, 64px); line-height: 1.04; max-width: 580px; }
 .hero-lead { margin-top: 18px; font-size: 14px; line-height: 1.75; max-width: 470px; }
 .hero-actions .button { min-height: 48px; padding-inline: 19px; }
 .hero-visual::before { content: ""; position: absolute; inset: 0 0 16px; background: url("/media/home/hero-maxdata.webp") center / contain no-repeat; opacity: .95; mask-image: linear-gradient(90deg, transparent, #000 11%, #000 98%, transparent); }
 .hero-visual > img { opacity: 0; }
 .hero-visual > figcaption { right: 76px; }
}
@media print {
 .site-header, .site-footer, .mobile-bottom-bar, .request-dialog, .toast, .hero-actions, .closing-actions { display: none !important; }
 body.md-frontend { background: #fff; color: #13283c; }
 .container { width: 96%; }
 .section { padding-block: 30px; break-inside: avoid; }
 .hero { background: #fff; }
 .hero-copy { width: 55%; }
 .hero-visual { position: absolute; width: 45%; right: 0; }
 h1, h2, h3, h4 { color: #10293e; }
 p { color: #425c71; }
 .text-gradient { color: #087aa6; -webkit-text-fill-color: #087aa6; }
}
