:root {
  --ink: #0b255d;
  --ink-soft: #42536d;
  --blue: #2d9be6;
  --blue-light: #eaf5fc;
  --pink: #ed4f8f;
  --pink-light: #fff0f6;
  --yellow: #f2c51b;
  --yellow-light: #fff9df;
  --green: #4eaa70;
  --green-light: #eef9f0;
  --paper: #fff;
  --line: #dce5ef;
  --muted: #69798e;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --motion-fast: 180ms;
  --motion-state: 220ms;
  --motion-ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 1rem; line-height: 1.6; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }
a { transition: color var(--motion-fast) ease; }
a:hover { color: var(--blue); }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 3rem)); margin: 0 auto; }
.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .7rem .9rem; background: var(--ink); color: #fff; transform: translateY(-180%); transition: transform var(--motion-state) var(--motion-ease); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Navigation and wordmark */
.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 86px; }
.brand { display: inline-flex; color: var(--ink); text-decoration: none; }
.brand-logo { display: block; width: 255px; height: auto; }.brand-logo text { font-family: Arial, Helvetica, sans-serif; font-size: 43px; font-weight: 800; letter-spacing: 1.3px; }
.desktop-nav { display: flex; align-items: center; gap: 1.5rem; font-size: .85rem; font-weight: 650; }.desktop-nav a { color: var(--ink); text-decoration: none; }.desktop-nav a:hover { color: var(--blue); }
.menu-toggle { display: none; border: 0; border-radius: 4px; background: transparent; color: var(--ink); cursor: pointer; transition: color var(--motion-fast) ease, background-color var(--motion-fast) ease; }.menu-toggle-label { margin-right: .55rem; font: 700 .7rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }.menu-toggle-lines { display: inline-flex; flex-direction: column; gap: 4px; vertical-align: middle; }.menu-toggle-lines i { display: block; width: 1.5rem; height: 2px; background: currentColor; }
.mobile-nav { border-top: 1px solid var(--line); background: #fff; }.mobile-nav-inner { display: grid; }.mobile-nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 650; }

/* Typography and controls */
h1, h2, h3, p { margin-top: 0; } h1, h2, h3 { letter-spacing: -.035em; }
h1 { margin-bottom: 0; font-size: clamp(2.2rem, 4vw, 4.4rem); line-height: 1; }.hero-message h2, .section-heading h2, .contact-copy h2 { margin-bottom: .8rem; font-size: clamp(2rem, 4.2vw, 4rem); line-height: 1.03; }
.eyebrow { margin: 0 0 .75rem; color: var(--blue); font: 700 .72rem/1.2 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; border: 1px solid transparent; border-radius: 4px; cursor: pointer; font-weight: 750; text-decoration: none; transition: transform var(--motion-fast) var(--motion-ease), background-color var(--motion-fast) ease, border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease, color var(--motion-fast) ease; }.button-primary { padding: .78rem 1rem; background: var(--ink); color: #fff; }.button-primary:hover { background: var(--blue); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 14px rgba(11,37,93,.14); }.button-primary:active { transform: translateY(0); box-shadow: none; }
.text-link { display: inline-flex; align-items: center; gap: .5rem; padding-bottom: .25rem; border-bottom: 1px solid var(--ink); color: var(--ink); font-weight: 750; text-decoration: none; transition: color var(--motion-fast) ease, border-color var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease); }.text-link:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-1px); }

/* Robot hero */
.robot-hero { padding: clamp(2.8rem, 6vw, 5.6rem) 0 clamp(2.1rem, 3.4vw, 3rem); background: #fff; }
.robot-hero > .container { max-width: 1280px; }
.robot-hero .eyebrow { text-align: center; }
.robot-stage { position: relative; width: 100%; margin: .5rem auto 0; overflow: hidden; }
.robot-layers { position: relative; width: 100%; aspect-ratio: 2056 / 765; overflow: visible; }
.robot-layer { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: fill; pointer-events: none; transform: translateY(0) scale(1); transition: transform var(--motion-fast) var(--motion-ease); }
.robot-layer-marketing { transform-origin: 17% 61%; }
.robot-layer-accounting { transform-origin: 31% 61%; }
.robot-layer-it { transform-origin: 50% 61%; }
.robot-layer-communication { transform-origin: 70% 61%; }
.robot-layer-research { transform-origin: 90% 61%; }
.robot-layer.is-selected { z-index: 2; transform: translateY(-4px) scale(1.014); }
.robot-layer.is-hovered { z-index: 3; transform: translateY(-2px) scale(1.008); }
.robot-layer.is-selected.is-hovered { transform: translateY(-4px) scale(1.014); }
.robot-hotspots { position: absolute; inset: 0; z-index: 10; }
.robot-hotspot { position: absolute; top: 2%; height: 96%; padding: 0; border: 0; background: transparent; cursor: pointer; touch-action: manipulation; }
.robot-detail { max-width: 930px; margin: 1rem auto 0; padding: 1.15rem 1.3rem 1.35rem; border: 1px solid var(--line); border-top: 4px solid var(--blue); background: #fff; }.robot-detail-label { margin-bottom: .55rem; color: var(--muted); font: 700 .68rem/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }.robot-detail-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }.robot-detail h1 { margin-bottom: .35rem; font-size: clamp(1.5rem, 3vw, 2.3rem); }.robot-detail p { max-width: 520px; margin: 0; color: var(--ink-soft); }.robot-detail ul { display: grid; gap: .45rem; padding: 0; margin: 0; list-style: none; }.robot-detail li { color: var(--ink-soft); }.robot-detail li::before { content: "✓"; display: inline-block; margin-right: .55rem; color: var(--green); font-weight: 800; }
.hero-message { max-width: 690px; margin: 4.5rem auto 0; text-align: center; }.hero-message h2 { color: var(--ink); }.hero-message p { max-width: 640px; margin: 0 auto 1.2rem; color: var(--ink-soft); font-size: 1.08rem; }

/* Problem / solution */
.problem-solution { padding: 5.8rem 0 6.6rem; background: #fbfdff; border-top: 1px solid var(--line); }.section-heading { max-width: 760px; margin-bottom: 2.5rem; }.section-heading > p:last-child { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }.problem-solution-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.4rem; align-items: center; }.info-panel { padding: 2rem; border: 1px solid var(--line); }.problem-panel { background: var(--pink-light); border-top: 5px solid var(--pink); }.solution-panel { background: var(--blue-light); border-top: 5px solid var(--blue); }.panel-label { margin-bottom: 1.2rem; color: var(--muted); font: 700 .68rem/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }.info-panel h3 { max-width: 430px; margin-bottom: 1rem; font-size: 1.6rem; }.info-panel ul { display: grid; gap: .8rem; padding: 0; margin: 0; list-style: none; }.info-panel li { padding-left: 1rem; color: var(--ink-soft); }.info-panel li::before { content: ""; display: inline-block; width: .45rem; height: .45rem; margin-left: -1rem; margin-right: .55rem; border-radius: 50%; background: var(--pink); vertical-align: .08em; }.solution-panel li::before { background: var(--blue); }.panel-arrow { color: var(--blue); font-size: 2rem; font-weight: 300; }

/* Process */
.process-section { padding: 5.8rem 0; background: #fff; }.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 2.3rem; }.process-grid article { padding-top: 1rem; border-top: 2px solid var(--ink); }.process-grid span { display: block; margin-bottom: 1.2rem; color: var(--blue); font: 700 .78rem/1 var(--mono); }.process-grid h3 { margin-bottom: .45rem; font-size: 1.25rem; }.process-grid p { margin: 0; color: var(--ink-soft); }

/* Contact and form */
.contact-section { padding: 6rem 0; background: var(--blue-light); border-top: 1px solid var(--line); }.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }.contact-copy { max-width: 530px; }.contact-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.05rem; }.contact-links { display: grid; gap: .9rem; margin-top: 2rem; font-style: normal; }.contact-links a { display: flex; align-items: center; gap: .7rem; color: var(--ink); text-decoration: none; }.contact-links a > span { display: grid; place-items: center; width: 2rem; height: 2rem; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue); font: 700 .75rem/1 var(--mono); }.contact-links small { display: block; margin-bottom: .1rem; color: var(--muted); font: 700 .63rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }.contact-links a:hover { color: var(--blue); }.form-card { padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--line); background: #fff; box-shadow: 0 15px 35px rgba(11,37,93,.08); }.form-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }.form-heading h3 { margin: 0; font-size: 1.45rem; }.form-heading p { max-width: 260px; margin: 0; color: var(--muted); font-size: .75rem; }.contact-form { padding-top: 1.3rem; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }.form-field { display: grid; gap: .35rem; margin-bottom: .95rem; }.form-field label { color: var(--ink-soft); font-size: .75rem; font-weight: 700; }.form-field input, .form-field textarea { width: 100%; padding: .55rem 0; border: 0; border-bottom: 1px solid #9fb0c4; border-radius: 0; background: transparent; color: var(--ink); }.form-field textarea { min-height: 7rem; padding: .65rem; border: 1px solid #9fb0c4; resize: vertical; }.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--blue); outline-offset: 2px; border-color: var(--blue); }.consent { display: flex; gap: .6rem; align-items: flex-start; margin: .5rem 0 1.25rem; color: var(--muted); font-size: .72rem; }.consent input { flex: 0 0 auto; margin-top: .2rem; accent-color: var(--blue); }.consent a { color: var(--ink); }.form-submit { width: 100%; }.form-note, .form-status { margin: .8rem 0 0; color: var(--muted); font-size: .72rem; }.form-status:empty { display: none; }.honeypot { position: absolute; left: -9999px; }

/* Footer and legal pages */
.site-footer { background: #fff; border-top: 1px solid var(--line); color: var(--ink); }.footer-top { display: flex; justify-content: space-between; gap: 2rem; align-items: center; padding: 2rem 0; border-bottom: 1px solid var(--line); }.brand-footer .brand-logo { width: 220px; }.footer-top p { margin: 0; color: var(--muted); font-size: .86rem; }.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0 1.3rem; color: var(--muted); font-size: .72rem; }.footer-bottom div { display: flex; gap: 1rem; }.footer-bottom a { color: var(--ink-soft); }.subpage-body { min-height: 100vh; background: #fff; }.subpage-main { padding: clamp(4rem, 8vw, 7rem) 0; }.subpage-intro { max-width: 780px; margin-bottom: 2.8rem; }.subpage-intro h1 { max-width: 800px; color: var(--ink); }.legal-card, .thank-you-card { max-width: 820px; padding: clamp(1.4rem, 3vw, 2.4rem); border: 1px solid var(--line); background: #fff; }.legal-card h2 { margin-top: 2.2rem; font-size: 1.8rem; }.legal-card h2:first-child { margin-top: 0; }.legal-card p, .legal-card li { color: var(--ink-soft); font-size: .92rem; }.draft-notice { margin-bottom: 1.4rem; padding: .8rem 1rem; border-left: 3px solid var(--pink); background: var(--pink-light); color: #7f3153; }.placeholder-field { padding: .2rem .4rem; background: var(--pink-light); color: #7f3153; }.back-link { display: inline-block; margin-bottom: 1.2rem; color: var(--muted); font-size: .8rem; }.thank-you-card h1 { font-size: clamp(2.6rem, 6vw, 5rem); }.thank-you-icon { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; margin-bottom: 1rem; background: var(--blue); color: #fff; }

@media (max-width: 900px) { .desktop-nav { gap: .85rem; font-size: .78rem; }.robot-detail-content { gap: 1.2rem; }.contact-grid { gap: 3rem; } }
@media (max-width: 760px) { .container { width: min(100% - 2rem, 620px); }.desktop-nav { display: none; }.menu-toggle { display: block; }.header-inner { min-height: 72px; }.brand-logo { width: 210px; }.robot-hero { padding-top: 2.5rem; }.robot-stage { margin-top: 1rem; }.robot-detail-content { grid-template-columns: 1fr; gap: 1rem; }.hero-message { margin-top: 3.5rem; }.problem-solution-grid { grid-template-columns: 1fr; }.panel-arrow { justify-self: center; transform: rotate(90deg); }.process-grid { grid-template-columns: 1fr; gap: 1.4rem; }.contact-grid { grid-template-columns: 1fr; }.form-row { grid-template-columns: 1fr; gap: 0; }.form-heading { display: block; }.form-heading p { max-width: none; margin-top: .4rem; }.footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; } }
@media (max-width: 430px) { .container { width: calc(100% - 1.5rem); }.brand-logo { width: 180px; }.robot-hotspot { top: 0; height: 100%; }.robot-detail { padding: 1rem; }.robot-detail h1 { font-size: 1.55rem; }.hero-message h2, .section-heading h2, .contact-copy h2 { font-size: 2.25rem; }.info-panel { padding: 1.25rem; }.problem-solution, .process-section, .contact-section { padding: 4.4rem 0; }.footer-top p { font-size: .8rem; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; } }
@media (prefers-reduced-motion: reduce) { .robot-layer.is-selected, .robot-layer.is-hovered, .robot-layer.is-selected.is-hovered { transform: none; }.robot-hotspot::after { transition: none; } }

/* Content refinement */
.brand-lockup { display: inline-flex; flex-direction: column; gap: .15rem; }.brand-tagline { color: var(--ink-soft); font-size: .72rem; letter-spacing: .01em; }.hero-promise { max-width: 760px; margin: .5rem auto .45rem; text-align: center; font-size: clamp(2.1rem, 4.5vw, 4rem); }.hero-intro { max-width: 720px; margin: 0 auto 1.5rem; color: var(--ink-soft); font-size: 1.08rem; text-align: center; }.robot-detail h2 { margin: 0 0 .35rem; font-size: clamp(1.5rem, 3vw, 2.3rem); }.info-panel li strong { display: block; margin-bottom: .15rem; color: var(--ink); font-weight: 750; }.hero-message p { margin-bottom: 1rem; color: var(--ink-soft); font-size: 1rem; }
.robot-detail h2 { line-height: 1.08; }
.hero-intro { margin-bottom: 0; }
.robot-interaction-hint { position: relative; z-index: 12; display: flex; align-items: center; justify-content: center; gap: .45rem; width: fit-content; max-width: 100%; margin: clamp(-2.5rem, -2.8vw, -.55rem) auto .15rem; padding: .3rem .65rem .34rem .55rem; border: 1px solid rgba(45,155,230,.16); border-radius: 999px; background: rgba(234,245,252,.55); color: var(--ink-soft); font-size: clamp(.9375rem, 1vw, 1rem); font-weight: 500; line-height: 1.35; text-align: left; pointer-events: none; }
.robot-interaction-hint svg { flex: 0 0 auto; width: 1.05rem; height: 1.05rem; fill: rgba(45,155,230,.12); stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.robot-stage { margin-top: .15rem; }
@media (max-width: 760px) { .robot-interaction-hint { max-width: 22rem; padding: .35rem .6rem; border-radius: .65rem; font-size: .9375rem; }.robot-stage { margin-top: .1rem; } }
.robot-detail { position: relative; z-index: 12; margin-top: .35rem; }
.automation-path { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; padding-top: .9rem; border-top: 1px solid rgba(45,155,230,.28); color: var(--ink); font: 700 .72rem/1 var(--mono); }.automation-path span { padding: .35rem .45rem; background: #fff; border: 1px solid rgba(45,155,230,.45); }.automation-path b { color: var(--blue); font-weight: 700; }
#team, #leistungen, #arbeitsweise, #ablauf, #kontakt { scroll-margin-top: 6.5rem; }

/* Schaltzentrale / vertical problem-to-solution story */
.control-center-section { padding: clamp(2.6rem, 4.4vw, 4rem) 0 clamp(3.2rem, 5.5vw, 4.5rem); background: #fff; border-top: 1px solid var(--line); }
.control-center-copy { max-width: 780px; text-align: center; }
.control-center-copy .eyebrow { margin-bottom: .9rem; }
.control-center-copy h2 { margin: 0 0 .7rem; font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.05; }
.control-center-subline { margin: 0 auto .5rem; color: var(--ink); font-size: clamp(1.08rem, 1.8vw, 1.35rem); }
.control-center-explanation { max-width: 660px; margin: 0 auto; color: var(--ink-soft); font-size: 1rem; }
.control-center-visual { max-width: 1240px; }
.control-center-figure { width: min(92%, 820px); margin: clamp(1.8rem, 3vw, 2.5rem) auto 0; }
.control-center-figure img { display: block; width: 100%; height: auto; object-fit: contain; }
.capability-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; width: min(100%, 900px); padding: .85rem 0; margin: .85rem auto 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; color: var(--ink-soft); font: 700 .72rem/1.2 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.capability-strip li { display: inline-flex; align-items: center; white-space: nowrap; }
.capability-strip li + li::before { content: "·"; margin: 0 .85rem; color: var(--blue); font-size: 1.1rem; }

.problem-solution { padding: clamp(4.8rem, 8vw, 7rem) 0 clamp(5rem, 8vw, 7.5rem); background: #fbfdff; }
.problem-solution .section-heading { margin-bottom: clamp(2.8rem, 5vw, 4.7rem); }
.problem-solution .section-heading > p:last-child { max-width: 700px; }
.vertical-story { display: grid; gap: clamp(3.3rem, 6vw, 5.7rem); }
.story-problem { max-width: 930px; padding: .25rem 0 .25rem clamp(1.25rem, 3vw, 2.3rem); border-left: 4px solid var(--pink); }
.story-problem .panel-label, .story-solution .panel-label, .story-result .panel-label { margin-bottom: .9rem; }
.story-problem h3, .story-solution h3, .story-result h3 { max-width: 760px; margin: 0 0 1.35rem; font-size: clamp(1.65rem, 3vw, 2.45rem); line-height: 1.08; }
.story-problem ul { display: grid; gap: .7rem; max-width: 850px; padding: 0; margin: 0; list-style: none; }
.story-problem li { position: relative; padding-left: 1.25rem; color: var(--ink-soft); }
.story-problem li::before { content: ""; position: absolute; top: .72em; left: 0; width: .5rem; height: .5rem; border-radius: 50%; background: var(--pink); }

.workflow-map { display: grid; justify-items: center; gap: 0; padding: .2rem 0; text-align: center; }
.workflow-node { position: relative; display: inline-flex; align-items: center; justify-content: center; min-height: 2.8rem; padding: .45rem 1rem; border-bottom: 1px solid rgba(45,155,230,.55); color: var(--ink); font-weight: 700; }
.workflow-source { font-size: clamp(1.08rem, 2vw, 1.35rem); }
.workflow-hub { margin-top: .15rem; padding: .55rem 1.35rem; border: 1px solid rgba(45,155,230,.55); border-radius: 999px; background: rgba(234,245,252,.58); font-size: clamp(1.1rem, 2.1vw, 1.45rem); }
.workflow-result { margin-top: .05rem; border-bottom-color: var(--green); color: var(--green); font-size: 1.05rem; }
.workflow-connector { display: block; width: 1px; background: linear-gradient(var(--blue), rgba(45,155,230,.25)); }
.workflow-connector-down { height: 2rem; }
.workflow-connector-branch { height: 1.45rem; }
.workflow-connector-result { height: 1.45rem; background: linear-gradient(rgba(45,155,230,.25), var(--green)); }
.workflow-branches { position: relative; display: grid; grid-template-columns: repeat(2, minmax(150px, 1fr)); gap: clamp(2.5rem, 9vw, 7rem); width: min(100%, 590px); padding-top: 1.15rem; }
.workflow-branches::before { content: ""; position: absolute; top: 0; left: 25%; right: 25%; height: 1px; background: rgba(45,155,230,.45); }
.workflow-branch { position: relative; display: flex; align-items: center; justify-content: center; gap: .45rem; color: var(--ink-soft); font: 700 .8rem/1.25 var(--mono); letter-spacing: .04em; text-transform: uppercase; }
.workflow-branch::before { content: ""; position: absolute; top: -1.15rem; left: 50%; width: 1px; height: 1.15rem; background: rgba(45,155,230,.45); }
.workflow-dot { width: .48rem; height: .48rem; border: 1px solid var(--blue); border-radius: 50%; background: #fff; }

.story-solution { padding-top: clamp(1.7rem, 3vw, 2.6rem); border-top: 2px solid var(--blue); }
.story-result { max-width: 900px; padding-top: clamp(1.7rem, 3vw, 2.6rem); border-top: 1px solid var(--line); }
.story-result h3 { margin-bottom: .7rem; }
.story-result > p { margin: 0; color: var(--muted); font: 700 .72rem/1.4 var(--mono); letter-spacing: .07em; text-transform: uppercase; }

@media (max-width: 760px) {
  .control-center-section { padding: 2.8rem 0 3.2rem; }
  .control-center-copy h2 { font-size: clamp(1.95rem, 8vw, 2.7rem); }
  .control-center-figure { width: min(100%, 620px); margin-top: 1.75rem; }
  .capability-strip { justify-content: flex-start; row-gap: .55rem; padding: .75rem .2rem; }
  .capability-strip li { white-space: normal; }
  .capability-strip li + li::before { margin: 0 .55rem; }
  .problem-solution .section-heading { margin-bottom: 2.8rem; }
  .story-problem { padding-left: 1rem; }
  .workflow-map { margin: -.2rem 0; }
  .workflow-branches { gap: 1rem; width: 100%; }
  .workflow-branch { font-size: .68rem; }
  .story-result > p { line-height: 1.7; }
}

@media (max-width: 430px) {
  .control-center-explanation { font-size: .95rem; }
  .capability-strip { font-size: .65rem; }
  .capability-strip li + li::before { margin: 0 .42rem; }
  .workflow-source { max-width: 260px; }
  .workflow-hub { font-size: 1rem; }
  .workflow-branch { gap: .3rem; font-size: .61rem; }
}

/* Clean horizontal selection marker for the selected robot workspace. */
.robot-layer.is-selected { transform: translateY(-4px) scale(1.014); filter: none; }
.robot-layer.is-hovered { transform: translateY(-2px) scale(1.008); filter: none; }
.robot-layer.is-selected.is-hovered { transform: translateY(-4px) scale(1.014); }
.robot-hotspot::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 90%;
  left: 50%;
  width: clamp(3.5rem, 5.5vw, 5.5rem);
  height: 3px;
  transform: translate(-50%, -50%) scaleX(.9);
  transform-origin: center;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease), box-shadow var(--motion-fast) ease;
}
.robot-hotspot.is-selected::after {
  opacity: 1;
  transform: translate(-50%, -50%) scaleX(1);
}
.robot-hotspot:focus-visible {
  outline: 0;
  box-shadow: none;
}
.robot-hotspot:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, -50%) scaleX(1.08);
  box-shadow: 0 0 0 2px rgba(255,255,255,.98), 0 0 0 4px var(--ink);
}
@media (hover: hover) and (pointer: fine) {
  .robot-hotspot:not(.is-selected):hover::after {
    width: clamp(2.8rem, 4.6vw, 4.6rem);
    opacity: .42;
    transform: translate(-50%, -50%) scaleX(1);
  }
}
@media (hover: none) {
  .robot-hotspot:not(.is-selected):not(:focus-visible)::after { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .robot-layer.is-selected,
  .robot-layer.is-hovered,
  .robot-layer.is-selected.is-hovered { transform: none; }
  .robot-hotspot::after { transition: none; }
}

/* Connected next-step process */
.process-section { padding: clamp(5rem, 8vw, 7rem) 0; background: #fff; }
.process-section .section-heading { margin-bottom: clamp(2.8rem, 5vw, 4.6rem); }
.process-flow { display: grid; grid-template-columns: minmax(0, 1fr) clamp(2.5rem, 5vw, 5.5rem) minmax(0, 1fr) minmax(12rem, 1.35fr) minmax(0, 1fr); align-items: start; max-width: 1120px; margin: 0 auto 2.8rem; }
.process-step { min-width: 0; }
.process-step-marker { display: flex; align-items: center; min-height: 2.4rem; }
.process-step-marker span { display: inline-grid; place-items: center; width: 2.35rem; height: 2.35rem; border: 1px solid var(--blue); border-radius: 50%; background: #fff; color: var(--blue); font: 700 .72rem/1 var(--mono); letter-spacing: .04em; transition: transform var(--motion-fast) var(--motion-ease); }
.process-step-copy { padding-top: 1.1rem; }
.process-step-copy h3 { margin: 0 0 .45rem; font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.15; }
.process-step-copy p { max-width: 280px; margin: 0; color: var(--ink-soft); font-size: .98rem; line-height: 1.55; }
.process-connector { display: flex; align-items: flex-start; min-height: 2.4rem; padding-top: 1.17rem; }
.process-connector span { display: block; width: 100%; height: 1px; background: rgba(45,155,230,.7); }
.process-cta { display: inline-flex; margin-left: max(0px, calc((100% - 1120px) / 2)); }

@media (max-width: 900px) {
  .process-flow { grid-template-columns: minmax(0, 1fr); gap: 0; max-width: 680px; margin-bottom: 2.4rem; }
  .process-step-copy { padding-top: .85rem; padding-left: 3.35rem; }
  .process-step-copy p { max-width: 560px; }
  .process-connector { width: 1px; min-height: 2rem; height: 2rem; margin-left: 1.15rem; padding: 0; background: rgba(45,155,230,.7); }
  .process-connector span { display: none; }
  .process-cta { margin-left: 0; }
}

@media (max-width: 430px) {
  .process-section { padding: 4.5rem 0; }
  .process-section .section-heading { margin-bottom: 2.8rem; }
  .process-step-copy { padding-left: 3.1rem; }
  .process-step-copy h3 { font-size: 1.2rem; }
  .process-step-copy p { font-size: .98rem; }
}

@media (prefers-reduced-motion: reduce) {
  .process-step-marker span { transition: none; }
}

/* Re-composed control-center and story axis */
.control-center-caption { width: min(100%, 960px); margin: 1.05rem auto 0; }
.control-center-caption .control-center-explanation { max-width: 700px; margin: 0 auto 1.35rem; text-align: center; }
.capability-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: stretch; width: 100%; padding: 0; margin: 0 auto; border: 1px solid rgba(45,155,230,.32); background: rgba(234,245,252,.32); list-style: none; }
.capability-strip li { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .42rem; min-height: 5.2rem; padding: .75rem .45rem; color: var(--ink); font: 750 .8rem/1.25 var(--sans); letter-spacing: .01em; text-align: center; white-space: normal; }
.capability-strip li + li { border-left: 1px solid rgba(45,155,230,.22); }
.capability-strip li::before, .capability-strip li + li::before { content: ""; width: .55rem; height: .55rem; margin: 0; border: 1.5px solid var(--blue); border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(45,155,230,.08); }

.story-axis { --story-gap: clamp(4.4rem, 7vw, 6rem); position: relative; display: grid; gap: var(--story-gap); max-width: 930px; padding-bottom: 1rem; }
.story-stage { position: relative; display: grid; justify-items: center; gap: 1.35rem; min-width: 0; text-align: center; }
.story-stage + .story-stage::before { content: ""; position: absolute; z-index: 0; top: calc(-1 * var(--story-gap)); left: 50%; width: 1px; height: calc(var(--story-gap) + 1.3rem); background: rgba(45,155,230,.48); }
.story-stage-marker { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .6rem; padding: .2rem .8rem; background: #fbfdff; }
.story-stage-number { display: inline-grid; place-items: center; width: 2.55rem; height: 2.55rem; border: 1px solid var(--blue); border-radius: 50%; background: #fff; color: var(--blue); font: 700 .75rem/1 var(--mono); letter-spacing: .04em; transition: none; }
.story-stage-kicker { color: var(--muted); font: 700 .72rem/1.2 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
.story-stage-content { position: relative; z-index: 1; width: 100%; min-width: 0; padding: 0 .85rem; background: #fbfdff; }
.story-stage-content h3 { max-width: 800px; margin: 0 auto 1.45rem; font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1.08; }
.story-stage-problem .story-stage-content { max-width: 900px; }
.story-problem-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem 2.5rem; max-width: 860px; padding: 0; margin: 0 auto; list-style: none; text-align: left; }
.story-problem-list li { position: relative; padding-left: 1.15rem; color: var(--ink-soft); }
.story-problem-list li::before { content: ""; position: absolute; top: .72em; left: 0; width: .46rem; height: .46rem; border-radius: 50%; background: var(--pink); }

.story-stage-solution .story-stage-content > h3 { max-width: 780px; margin-bottom: clamp(2rem, 3.5vw, 2.8rem); }
.solution-flow { display: grid; justify-items: center; width: min(100%, 820px); margin: 0 auto; text-align: center; }
.solution-flow-source { display: inline-flex; align-items: center; gap: .65rem; color: var(--ink); font-size: clamp(1.08rem, 2vw, 1.3rem); font-weight: 800; letter-spacing: -.02em; }
.solution-flow-source::before { content: ""; width: .62rem; height: .62rem; border: 2px solid var(--blue); border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(45,155,230,.09); }
.solution-flow-line { display: block; width: 1px; background: rgba(45,155,230,.58); }
.solution-flow-line-in { height: 1.25rem; margin: .75rem 0; }
.solution-flow-hub { display: inline-flex; align-items: center; justify-content: center; min-height: 2.55rem; padding: .45rem 1.1rem; border: 1px solid rgba(45,155,230,.62); border-radius: 999px; background: rgba(234,245,252,.7); color: var(--ink); font-size: .95rem; font-weight: 800; }
.solution-flow-paths { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; width: 100%; padding-top: 2.5rem; }
.solution-flow-paths::before { content: ""; position: absolute; top: 1.15rem; left: 25%; right: 25%; height: 1px; background: rgba(45,155,230,.52); }
.solution-flow-paths::after { content: ""; position: absolute; top: 0; left: 50%; width: 1px; height: 1.15rem; background: rgba(45,155,230,.52); }
.solution-path { position: relative; min-width: 0; padding-inline: clamp(1.5rem, 4vw, 3.5rem); }
.solution-path::before { content: ""; position: absolute; top: -1.35rem; left: 50%; width: 1px; height: 1.35rem; background: rgba(45,155,230,.52); }
.solution-path-node { position: relative; z-index: 1; display: block; width: .68rem; height: .68rem; margin: 0 auto .85rem; border: 2px solid var(--blue); border-radius: 50%; background: #fbfdff; box-shadow: 0 0 0 4px rgba(45,155,230,.08); }
.solution-path h4 { margin: 0 0 .55rem; color: var(--ink); font-size: 1.12rem; line-height: 1.25; letter-spacing: -.02em; }
.solution-path p { max-width: 350px; margin: 0 auto; color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }

.story-stage-result .story-stage-content h3 { margin-bottom: clamp(2rem, 3.5vw, 2.6rem); }
.result-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; max-width: 900px; margin: 0 auto; text-align: center; }
.result-point { display: flex; flex-direction: column; align-items: center; min-width: 0; padding-inline: clamp(.8rem, 2.2vw, 1.8rem); }
.result-point-accent { display: block; width: .62rem; height: .62rem; margin: 0 auto .85rem; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(45,155,230,.09); }
.result-point h4 { margin: 0 0 .4rem; color: var(--ink); font-size: 1.05rem; line-height: 1.25; letter-spacing: -.02em; }
.story-stage-result .result-point p { max-width: 250px; margin: 0 auto; color: var(--ink-soft); font: 400 1rem/1.55 var(--sans); letter-spacing: normal; text-transform: none; }

@media (max-width: 760px) {
  .control-center-caption { margin-top: .85rem; }
  .capability-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-strip li + li { border-left: 0; }
  .capability-strip li:nth-child(n + 3) { border-top: 1px solid rgba(45,155,230,.22); }
  .story-axis { --story-gap: 3.8rem; padding-left: 3.2rem; }
  .story-stage + .story-stage::before { left: -1.925rem; }
  .story-stage { justify-items: start; gap: .95rem; text-align: left; }
  .story-stage-marker { margin-left: -3.2rem; padding: .15rem .6rem .15rem 0; }
  .story-stage-content { text-align: left; }
  .story-stage-content h3 { margin-left: 0; margin-right: 0; }
  .story-problem-list { grid-template-columns: 1fr; gap: .7rem; margin-left: 0; }
  .story-stage-solution .story-stage-content > h3 { margin-bottom: 1.7rem; }
  .solution-flow { justify-items: start; text-align: left; }
  .solution-flow-source { font-size: 1.05rem; }
  .solution-flow-line-in { justify-self: start; height: 1rem; margin: .65rem 0 .65rem .3rem; }
  .solution-flow-hub { min-height: 2.35rem; padding: .4rem .9rem; font-size: .9rem; }
  .solution-flow-paths { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 1.55rem; }
  .solution-flow-paths::before, .solution-flow-paths::after, .solution-path::before { display: none; }
  .solution-path { display: grid; grid-template-columns: .75rem minmax(0, 1fr); column-gap: .75rem; padding-inline: 0; text-align: left; }
  .solution-path-node { grid-column: 1; grid-row: 1 / span 2; width: .62rem; height: .62rem; margin: .35rem 0 0; }
  .solution-path h4, .solution-path p { grid-column: 2; margin-left: 0; }
  .story-stage-result .story-stage-content h3 { margin-bottom: 1.6rem; }
  .result-points { grid-template-columns: 1fr; gap: 1.45rem; max-width: 560px; margin-left: 0; }
  .result-point { display: grid; grid-template-columns: .75rem minmax(0, 1fr); column-gap: .75rem; align-items: start; padding-inline: 0; text-align: left; }
  .result-point-accent { grid-column: 1; grid-row: 1 / span 2; width: .62rem; height: .62rem; margin: .35rem 0 0; }
  .result-point h4, .story-stage-result .result-point p { grid-column: 2; max-width: none; }
}

@media (max-width: 430px) {
  .capability-strip li { min-height: 4.8rem; font-size: .78rem; }
  .story-axis { padding-left: 2.9rem; }
  .story-stage + .story-stage::before { left: -1.75rem; }
  .story-stage-marker { margin-left: -2.9rem; }
  .story-stage-number { width: 2.3rem; height: 2.3rem; }
  .story-stage-kicker { font-size: .68rem; }
}

/* Process section refinement: keep the primary timeline dominant. */
.process-section .section-heading { margin-bottom: clamp(2.1rem, 3.4vw, 3rem); }
.process-flow { padding-bottom: 0; margin-bottom: 0; }
.process-step-two .process-step-marker span { background: var(--blue); color: #fff; box-shadow: 0 0 0 5px rgba(45,155,230,.1); }
.process-step-two .process-step-copy h3 { font-weight: 800; }
.process-cta { display: flex; width: fit-content; margin: 2.1rem auto 0; }
@media (max-width: 900px) {
  .process-flow { margin-bottom: 0; }
  .process-cta { margin-top: 1.9rem; }
}
@media (max-width: 430px) {
  .process-cta { margin-top: 1.7rem; }
}

@media (min-width: 761px) {
  .robot-detail-content { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
  .robot-detail h2 { white-space: nowrap; font-size: clamp(1.45rem, 2.6vw, 2.05rem); letter-spacing: -.045em; }
}

/* Slightly tighter transition from the control center into the next story. */
.control-center-caption .control-center-explanation { margin-bottom: 1rem; }
.problem-solution { padding-top: clamp(4.2rem, 6.5vw, 5.5rem); }
@media (max-width: 760px) {
  .control-center-caption .control-center-explanation { margin-bottom: .8rem; }
  .problem-solution { padding-top: 4.2rem; }
}

@media (prefers-reduced-motion: reduce) {
.story-stage-number { transition: none; }
}

/* Give the robot description a little more room beside its example list. */
.robot-detail-content { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 1rem; }
.robot-detail-content > div { min-width: 0; }
.robot-detail-content > div > p { max-width: none; }
@media (max-width: 760px) {
  .robot-detail-content { grid-template-columns: 1fr; gap: 1rem; }
}

/* Process timeline */
.process-flow { position: relative; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 0; max-width: 1120px; padding-bottom: 1.25rem; }
.process-flow::before { content: ""; position: absolute; z-index: 0; top: 1.17rem; left: 16.666%; right: 16.666%; height: 1px; background: rgba(45,155,230,.7); }
.process-step { position: relative; z-index: 1; padding-inline: clamp(1rem, 3vw, 3rem); text-align: center; }
.process-step-one { grid-column: 1; grid-row: 1; }
.process-step-two { grid-column: 2; grid-row: 1; }
.process-step-three { grid-column: 3; grid-row: 1; }
.process-step-marker { justify-content: center; }
.process-step-copy { padding-top: 1.1rem; }
.process-step-copy h3, .process-step-copy p { margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .process-flow { grid-template-columns: minmax(0, 1fr); row-gap: 2rem; column-gap: 0; padding-bottom: 0; }
  .process-flow::before { top: 1.17rem; right: auto; bottom: 1.17rem; left: 1.175rem; width: 1px; height: auto; }
  .process-step-one, .process-step-two, .process-step-three { grid-column: 1; grid-row: auto; padding-inline: 0; text-align: left; }
  .process-step-marker { justify-content: flex-start; }
}

@media (max-width: 430px) {
  .process-flow { row-gap: 1.65rem; }
}

/* Final contact composition: a quiet, direct closing section. */
.contact-section { padding: clamp(4.5rem, 7vw, 6.5rem) 0 clamp(4.8rem, 8vw, 7rem); background: var(--blue-light); }
.contact-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(3rem, 7vw, 7rem); }
.contact-copy { max-width: 540px; padding-top: .4rem; }
.contact-copy h2 { max-width: 520px; margin-bottom: 1rem; font-size: clamp(2.35rem, 4.2vw, 3.9rem); line-height: 1.02; }
.contact-copy > p:not(.eyebrow) { max-width: 450px; font-size: 1.05rem; line-height: 1.6; }
.contact-links { gap: 1rem; margin-top: 2.2rem; }
.contact-links a { min-height: 2.6rem; }
.contact-links a > span { width: 2.35rem; height: 2.35rem; background: #fff; }
.contact-links small { font-size: .68rem; letter-spacing: .1em; }
.form-card { padding: clamp(1.35rem, 2.6vw, 2rem); border-color: rgba(45,155,230,.25); box-shadow: 0 18px 40px rgba(11,37,93,.06); }
.form-heading { display: block; padding-bottom: .85rem; }
.form-heading h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); }
.contact-form { padding-top: 1.05rem; }
.form-row { gap: .9rem; }
.form-field { gap: .35rem; margin-bottom: .75rem; }
.form-field label { font-size: .82rem; line-height: 1.2; }
.form-field input { padding: .5rem 0; }
.form-field textarea { min-height: 5.2rem; padding: .6rem .65rem; line-height: 1.45; }
.consent { margin: .35rem 0 1rem; font-size: .8rem; line-height: 1.45; }
.form-submit { width: fit-content; min-width: 11rem; padding: .82rem 1rem; }

@media (max-width: 760px) {
  .contact-section { padding: 4.5rem 0 5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .contact-copy { max-width: 600px; padding-top: 0; }
  .contact-copy h2 { max-width: 560px; font-size: clamp(2.35rem, 9vw, 3.25rem); }
  .contact-links { margin-top: 1.8rem; }
  .form-card { padding: 1.35rem 1rem; }
  .form-submit { width: 100%; }
}

@media (max-width: 430px) {
  .contact-section { padding: 4.2rem 0 4.6rem; }
  .contact-copy h2 { font-size: clamp(2.25rem, 10vw, 2.9rem); }
  .contact-grid { gap: 2.25rem; }
}

/* Final visual story: tasks gather, the KI-Büro sorts them, relief remains. */
.problem-solution {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.25rem) 0 clamp(5.5rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
  background: #fff;
}
.problem-solution .section-heading {
  max-width: 900px;
  margin-bottom: clamp(2.5rem, 5vw, 4.2rem);
  text-align: center;
}
.problem-solution .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.15rem);
  line-height: 1.02;
}
.story-axis {
  --story-gap: clamp(4.8rem, 8vw, 7.2rem);
  position: relative;
  z-index: 0;
  display: grid;
  gap: var(--story-gap);
  max-width: 980px;
  padding-bottom: 0;
}
.story-stage {
  position: relative;
  z-index: 0;
  display: grid;
  justify-items: center;
  gap: 1.35rem;
  min-width: 0;
  text-align: center;
}
.story-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(-1 * var(--story-gap) / 2);
  bottom: calc(-1 * var(--story-gap) / 2);
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}
.story-stage-problem::after { background: #f5f9fc; }
.story-stage-solution::after { background: #fff; }
.story-stage-result::after { background: #eef7fd; }
.story-stage + .story-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: calc(-1 * var(--story-gap) + 1rem);
  left: 50%;
  width: 1px;
  height: calc(var(--story-gap) - 1rem);
  background: rgba(45,155,230,.48);
}
.story-stage-marker {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .2rem .8rem;
  background: transparent;
}
.story-stage-number {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font: 700 .75rem/1 var(--mono);
  letter-spacing: .04em;
  transition: none;
}
.story-stage-kicker {
  color: var(--muted);
  font: 700 .72rem/1.2 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.story-stage-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  padding: 0 .85rem;
  background: transparent;
}

/* Problem: a calm cloud of real-world tasks around one central statement. */
.story-stage-problem .story-stage-content { max-width: 950px; }
.problem-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 920px);
  min-height: 15rem;
  margin: 0 auto 1.8rem;
}
.problem-task-cloud {
  position: absolute;
  inset: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}
.problem-task {
  position: absolute;
  padding: .38rem .7rem;
  border: 1px solid rgba(45,155,230,.3);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--ink-soft);
  font: 650 .74rem/1.2 var(--mono);
  letter-spacing: .035em;
  box-shadow: 0 5px 16px rgba(11,37,93,.04);
}
.problem-task::before {
  content: "";
  display: inline-block;
  width: .38rem;
  height: .38rem;
  margin: 0 .42rem .05rem 0;
  border: 1px solid var(--blue);
  border-radius: 50%;
  background: #fff;
}
.problem-task-email { top: 10%; left: 12%; }
.problem-task-invoice { top: 45%; left: 1%; }
.problem-task-shift { bottom: 8%; left: 16%; }
.problem-task-website { top: 8%; right: 12%; }
.problem-task-customer { top: 45%; right: 0; }
.problem-task-marketing { bottom: 8%; right: 14%; }
.problem-task-data { top: 0; left: 43%; }
.problem-task-research { right: 42%; bottom: 0; }
.problem-core {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(100%, 480px);
  padding: 1rem;
  background: radial-gradient(circle, rgba(255,255,255,.96) 0%, rgba(255,255,255,.75) 60%, rgba(255,255,255,0) 100%);
}
.problem-core-dot {
  display: block;
  width: .75rem;
  height: .75rem;
  margin-bottom: .9rem;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(45,155,230,.1);
}
.problem-core h3 {
  max-width: 540px;
  margin: 0;
  font-size: clamp(1.65rem, 3.1vw, 2.55rem);
  line-height: 1.08;
}
.story-problem-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 900px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}
.story-problem-list li {
  position: relative;
  padding-top: 1rem;
  border-top: 1px solid rgba(45,155,230,.28);
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.45;
  text-align: center;
}
.story-problem-list li::before {
  content: "";
  position: absolute;
  top: -.28rem;
  left: 50%;
  width: .5rem;
  height: .5rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--pink);
}

/* Solution: one source, one hub, two equal paths. */
.story-stage-solution .story-stage-content > h3 {
  max-width: 780px;
  margin: 0 auto clamp(2.1rem, 4vw, 3rem);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  line-height: 1.06;
}
.solution-flow {
  display: grid;
  justify-items: center;
  width: min(100%, 820px);
  margin: 0 auto;
  text-align: center;
}
.solution-flow-source { font-size: clamp(1.08rem, 2vw, 1.3rem); }
.solution-flow-line-in { height: 1.15rem; margin: .7rem 0; }
.solution-flow-hub { min-height: 2.6rem; }
.solution-flow-paths {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  padding-top: 2.45rem;
}
.solution-flow-paths::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 25%;
  right: 25%;
  height: 1px;
  background: rgba(45,155,230,.52);
}
.solution-flow-paths::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 1.1rem;
  background: rgba(45,155,230,.52);
}
.solution-path {
  position: relative;
  min-width: 0;
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
}
.solution-path::before {
  content: "";
  position: absolute;
  top: -1.3rem;
  left: 50%;
  width: 1px;
  height: 1.3rem;
  background: rgba(45,155,230,.52);
}
.solution-path-node {
  position: relative;
  z-index: 1;
  display: block;
  width: .68rem;
  height: .68rem;
  margin: 0 auto .85rem;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(45,155,230,.08);
}
.solution-path h4 { margin: 0 0 .55rem; font-size: 1.12rem; line-height: 1.25; }
.solution-path p { max-width: 350px; margin: 0 auto; color: var(--ink-soft); font-size: 1rem; line-height: 1.55; }

/* Result: open, equal columns without card chrome. */
.story-stage-result .story-stage-content h3 {
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.05;
}
.result-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.result-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  padding-inline: clamp(.8rem, 2.2vw, 1.8rem);
}
.result-point-accent {
  display: block;
  width: .62rem;
  height: .62rem;
  margin: 0 auto .85rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(45,155,230,.09);
}
.result-point h4 { margin: 0 0 .4rem; font-size: 1.08rem; line-height: 1.25; }
.story-stage-result .result-point p { max-width: 250px; margin: 0 auto; color: var(--ink-soft); font: 400 1rem/1.55 var(--sans); letter-spacing: normal; text-transform: none; }

@media (max-width: 760px) {
  .problem-solution { padding-top: 4.5rem; }
  .problem-solution .section-heading { margin-bottom: 2.8rem; text-align: left; }
  .problem-solution .section-heading h2 { font-size: clamp(2.2rem, 9vw, 3.25rem); }
  .story-axis { --story-gap: 4rem; padding-left: 3.2rem; }
  .story-stage + .story-stage::before { left: -1.925rem; }
  .story-stage { justify-items: start; gap: .95rem; text-align: left; }
  .story-stage-marker { margin-left: -3.2rem; padding: .15rem .6rem .15rem 0; }
  .story-stage-content { text-align: left; }
  .problem-orbit { display: block; min-height: 0; margin-bottom: 1.35rem; }
  .problem-task-cloud { position: relative; display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 1.45rem; }
  .problem-task { position: static; }
  .problem-core { width: 100%; padding: .65rem 0; justify-items: start; background: none; }
  .problem-core-dot { margin-bottom: .75rem; }
  .problem-core h3 { font-size: clamp(1.6rem, 5.2vw, 2.2rem); }
  .story-problem-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem 1.2rem; margin-left: 0; }
  .story-problem-list li { text-align: left; }
  .story-problem-list li::before { left: .15rem; transform: none; }
  .story-stage-solution .story-stage-content > h3 { margin-left: 0; margin-bottom: 1.8rem; }
  .solution-flow { justify-items: start; text-align: left; }
  .solution-flow-source { font-size: 1.05rem; }
  .solution-flow-line-in { justify-self: start; height: 1rem; margin: .65rem 0 .65rem .3rem; }
  .solution-flow-hub { min-height: 2.35rem; padding: .4rem .9rem; font-size: .9rem; }
  .solution-flow-paths { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 1.55rem; }
  .solution-flow-paths::before, .solution-flow-paths::after, .solution-path::before { display: none; }
  .solution-path { display: grid; grid-template-columns: .75rem minmax(0, 1fr); column-gap: .75rem; padding-inline: 0; text-align: left; }
  .solution-path-node { grid-column: 1; grid-row: 1 / span 2; width: .62rem; height: .62rem; margin: .35rem 0 0; }
  .solution-path h4, .solution-path p { grid-column: 2; margin-left: 0; }
  .story-stage-result .story-stage-content h3 { margin-left: 0; margin-bottom: 1.8rem; }
  .result-points { grid-template-columns: 1fr; gap: 1.35rem; max-width: 560px; margin-left: 0; }
  .result-point { display: grid; grid-template-columns: .75rem minmax(0, 1fr); column-gap: .75rem; align-items: start; padding-inline: 0; text-align: left; }
  .result-point-accent { grid-column: 1; grid-row: 1 / span 2; width: .62rem; height: .62rem; margin: .35rem 0 0; }
  .result-point h4, .story-stage-result .result-point p { grid-column: 2; max-width: none; }
}

@media (max-width: 430px) {
  .story-axis { --story-gap: 3.6rem; padding-left: 2.9rem; }
  .story-stage + .story-stage::before { left: -1.75rem; }
  .story-stage-marker { margin-left: -2.9rem; }
  .story-stage-number { width: 2.3rem; height: 2.3rem; }
  .story-stage-kicker { font-size: .68rem; }
  .story-problem-list { grid-template-columns: 1fr; }
  .problem-task { font-size: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  .story-stage-number { transition: none; }
}

/* Unified motion and interaction layer. */
.menu-toggle:hover { color: var(--blue); background-color: rgba(234,245,252,.8); }
.mobile-nav a { transition: color var(--motion-fast) ease, background-color var(--motion-fast) ease; }
.mobile-nav a:hover { background-color: rgba(234,245,252,.55); }
.contact-links a { transition: color var(--motion-fast) ease, transform var(--motion-fast) var(--motion-ease); }
.contact-links a > span { transition: background-color var(--motion-fast) ease, color var(--motion-fast) ease, border-color var(--motion-fast) ease; }
.contact-links a:hover { transform: translateY(-1px); }
.contact-links a:hover > span { border-color: var(--blue); background: var(--blue); color: #fff; }
.form-field input, .form-field textarea { transition: border-color var(--motion-fast) ease; }
.form-field input:hover, .form-field textarea:hover { border-color: var(--blue); }

/* Process steps are informational, not buttons: keep step 02 as the only filled marker. */
.process-step { transition: transform var(--motion-fast) var(--motion-ease); }
.process-step-marker span { transition: transform var(--motion-fast) var(--motion-ease); }
.process-step:not(.process-step-two):hover .process-step-marker span,
.process-step:not(.process-step-two):focus-within .process-step-marker span {
  border-color: var(--blue);
  background: #fff;
  color: var(--blue);
  transform: none;
}
.process-step-two:hover .process-step-marker span,
.process-step-two:focus-within .process-step-marker span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .process-step:hover { transform: translateY(-2px); }
}

/* Story markers and diagrams use one restrained hover language: lift/scale only. */
.story-stage-number { transition: transform var(--motion-fast) var(--motion-ease); }
.story-stage:hover .story-stage-number,
.story-stage:focus-within .story-stage-number {
  border-color: var(--blue);
  background: #fff;
  color: var(--blue);
}
.problem-task,
.problem-core,
.story-problem-list li,
.solution-flow-source,
.solution-flow-hub,
.solution-path,
.solution-path-node,
.result-point,
.result-point-accent {
  transition: transform var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease, color var(--motion-fast) ease;
}

@media (hover: hover) and (pointer: fine) {
  .story-stage-marker:hover .story-stage-number {
    transform: scale(1.06);
  }
  .problem-task:hover {
    border-color: rgba(45,155,230,.72);
    box-shadow: 0 8px 20px rgba(11,37,93,.09);
    transform: translateY(-3px) scale(1.025);
  }
  .problem-core:hover {
    box-shadow: 0 8px 24px rgba(11,37,93,.06);
    transform: translateY(-2px) scale(1.012);
  }
  .story-problem-list li:hover {
    color: var(--ink);
    transform: translateY(-2px);
  }
  .solution-flow-source:hover {
    transform: translateY(-2px) scale(1.018);
  }
  .solution-flow-hub:hover {
    box-shadow: 0 7px 18px rgba(45,155,230,.14);
    transform: translateY(-2px) scale(1.035);
  }
  .solution-path:hover {
    transform: translateY(-3px) scale(1.012);
  }
  .solution-path:hover .solution-path-node {
    box-shadow: 0 0 0 5px rgba(45,155,230,.13);
    transform: scale(1.14);
  }
  .result-point:hover {
    transform: translateY(-3px) scale(1.018);
  }
  .result-point:hover .result-point-accent {
    box-shadow: 0 0 0 5px rgba(45,155,230,.13);
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  a,
  button,
  input,
  textarea {
    transition: none !important;
  }
  .button-primary:hover,
  .button-primary:active,
  .text-link:hover,
  .contact-links a:hover,
  .process-step:hover,
  .robot-layer.is-selected,
  .robot-layer.is-hovered,
  .robot-layer.is-selected.is-hovered { transform: none !important; }
  .menu-toggle,
  .mobile-nav a,
  .contact-links a,
  .contact-links a > span,
  .form-field input,
  .form-field textarea,
  .process-step,
  .process-step-marker span,
  .robot-hotspot::after,
  .story-stage-number,
  .problem-task,
  .problem-core,
  .story-problem-list li,
  .solution-flow-source,
  .solution-flow-hub,
  .solution-path,
  .solution-path-node,
  .result-point,
  .result-point-accent { transition: none !important; }
  .story-stage-number,
  .problem-task,
  .problem-core,
  .story-problem-list li,
  .solution-flow-source,
  .solution-flow-hub,
  .solution-path,
  .solution-path-node,
  .result-point,
  .result-point-accent { transform: none !important; }
}

/* Site-wide content motion: quiet lift and scale for visual, non-clickable groups. */
.control-center-figure img {
  transform-origin: center center;
  transition: transform var(--motion-state) var(--motion-ease);
}
.capability-strip li,
.capability-strip li::before {
  transition: transform var(--motion-fast) var(--motion-ease), color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

@media (hover: hover) and (pointer: fine) {
  .control-center-figure:hover img {
    transform: translateY(-2px) scale(1.012);
  }
  .capability-strip li:hover {
    color: var(--ink);
    transform: translateY(-3px) scale(1.025);
  }
  .capability-strip li:hover::before {
    box-shadow: 0 0 0 4px rgba(45,155,230,.13);
    transform: scale(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .control-center-figure img,
  .capability-strip li,
  .capability-strip li::before {
    transition: none !important;
    transform: none !important;
  }
}

/* Final mobile composition: compact capabilities, aligned problem core,
   and a clear vertical solution path. */
@media (max-width: 760px) {
  .capability-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .capability-strip li {
    min-height: 4.4rem;
    padding: .6rem .3rem;
    font-size: .72rem;
    line-height: 1.2;
  }

  .capability-strip li + li {
    border-left: 0;
  }

  .capability-strip li:nth-child(3) {
    border-top: 0;
  }

  .capability-strip li:nth-child(n + 4) {
    border-top: 1px solid rgba(45,155,230,.22);
  }

  .problem-core {
    display: grid;
    grid-template-columns: .75rem minmax(0, 1fr);
    column-gap: .8rem;
    align-items: start;
    justify-items: start;
    width: 100%;
    max-width: none;
    padding: .65rem 0;
  }

  .problem-core-dot {
    grid-column: 1;
    grid-row: 1;
    margin: .42rem 0 0;
  }

  .problem-core h3 {
    grid-column: 2;
    max-width: none;
  }

  .solution-flow {
    width: 100%;
    justify-items: start;
    text-align: left;
  }

  .solution-flow-source {
    min-height: 2.25rem;
    font-size: 1.05rem;
  }

  .solution-flow-line-in {
    justify-self: start;
    height: .9rem;
    margin: .55rem 0 .55rem .31rem;
  }

  .solution-flow-hub {
    min-height: 2.35rem;
    padding: .4rem .9rem;
    font-size: .9rem;
  }

  .solution-flow-paths {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
    padding: 1.25rem 0 .1rem;
  }

  .solution-flow-paths::before {
    display: block;
    top: .35rem;
    right: auto;
    bottom: .35rem;
    left: .31rem;
    width: 1px;
    height: auto;
  }

  .solution-flow-paths::after,
  .solution-path::before {
    display: none;
  }

  .solution-path {
    display: grid;
    grid-template-columns: .75rem minmax(0, 1fr);
    column-gap: .75rem;
    padding-inline: 0;
    text-align: left;
  }

  .solution-path-node {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: .62rem;
    height: .62rem;
    margin: .35rem 0 0;
  }

  .solution-path h4,
  .solution-path p {
    grid-column: 2;
    margin-left: 0;
  }
}

@media (max-width: 430px) {
  .capability-strip li {
    min-height: 4rem;
    padding: .52rem .2rem;
    font-size: .68rem;
  }

  .problem-core {
    column-gap: .72rem;
  }

  .solution-flow-paths {
    gap: 1.15rem;
  }
}
