/* ==========================================================================
   BIIT-Systems: v5 „Bänder"
   Dunkler Kino-Hero, helle Premium-Bänder mit großen Radien, wieder dunkel.
   Jede Illustration erklärt genau eine Sache. Keine gepinnte Story, keine
   Demos: nur klare Aussagen und Handwerk.
   ========================================================================== */

/* Schriften: lokal gehostet, keine externen Anfragen */
@font-face { font-family: 'Geist Mono'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('assets/fonts/geist-mono-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Geist Mono'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('assets/fonts/geist-mono-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('assets/fonts/inter-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap; src: url('assets/fonts/inter-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 200 800; font-display: swap; src: url('assets/fonts/manrope-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 200 800; font-display: swap; src: url('assets/fonts/manrope-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  /* dunkle Bühne */
  --d-bg: #050507; --d-bg2: #0A0B0F; --d-surface: #0F1117; --d-surface2: #151821;
  --d-line: rgba(255,255,255,.08); --d-line2: rgba(255,255,255,.14); --d-line3: rgba(255,255,255,.24);
  --d-fg: #F5F5F7; --d-fg2: #A3A7B1; --d-fg3: #6F737D; --d-fg4: #4A4E58;
  /* helles Band */
  --l-bg: #F4F4F6; --l-bg2: #EDEEF1; --l-surface: #FFFFFF; --l-surface2: #F7F7F9;
  --l-line: #E4E5EA; --l-line2: #D3D5DC; --l-line3: #B8BBC5;
  --l-fg: #0B0C10; --l-fg2: #5D616B; --l-fg3: #8A8E98; --l-fg4: #B0B3BC;
  /* Marke */
  --azure: #4B7BFF; --cyan: #3DD3EE; --violet: #A79CFF;
  --grad: linear-gradient(92deg, #6F92FF 8%, #4DD5EF 52%, #A9A0FF 96%);
  --ok: #3FD68F; --warn: #F2B84B; --err: #F26D6D;
  --display: "Manrope", "Inter", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --wrap: 1180px;
  --gut: clamp(20px, 4vw, 48px);
  --nav-h: 60px;
  --r-band: 44px;
  --ease: cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}
/* Themen pro Band: alle Komponenten hängen an diesen Variablen */
.band-dark, .nav { --bg: var(--d-bg); --bg2: var(--d-bg2); --surface: var(--d-surface); --surface2: var(--d-surface2); --line: var(--d-line); --line2: var(--d-line2); --line3: var(--d-line3); --fg: var(--d-fg); --fg2: var(--d-fg2); --fg3: var(--d-fg3); --fg4: var(--d-fg4); --shadow: 0 40px 100px -40px rgba(0,0,0,.9); }
.band-light, .nav.on-light { --bg: var(--l-bg); --bg2: var(--l-bg2); --surface: var(--l-surface); --surface2: var(--l-surface2); --line: var(--l-line); --line2: var(--l-line2); --line3: var(--l-line3); --fg: var(--l-fg); --fg2: var(--l-fg2); --fg3: var(--l-fg3); --fg4: var(--l-fg4); --shadow: 0 34px 90px -34px rgba(23,32,71,.16); }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0; background: var(--d-bg); color: var(--d-fg);
  font: 400 17px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote, pre { margin: 0; }
ul, ol { padding: 0; list-style: none; }
::selection { background: rgba(75,123,255,.35); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 200; padding: 10px 14px; background: #fff; color: #000; border-radius: 8px; font-weight: 500; }
.skip:focus { top: 12px; }

/* ---------- Bausteine ---------- */
.wrap { width: min(var(--wrap), 100% - var(--gut) * 2); margin-inline: auto; }
.wrap-narrow { max-width: 820px; }
.band { position: relative; color: var(--fg); }
.band-light { background: var(--bg); border-radius: var(--r-band); position: relative; z-index: 1; }
.band-dark { background: transparent; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--fg3); }
.index { display: inline-flex; align-items: center; gap: 14px; font: 500 12px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--fg3); }
.index b { font: 500 12px var(--mono); color: var(--fg4); }
.h2 { font: 600 clamp(38px, 5vw, 74px)/.98 var(--display); letter-spacing: -.055em; text-wrap: balance; }
.lead { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.65; color: var(--fg2); max-width: 60ch; text-wrap: pretty; }
.sec { padding: clamp(88px, 11vw, 168px) 0; position: relative; }
.sec-head { display: grid; gap: 22px; margin-bottom: clamp(44px, 6vw, 80px); }
.sec-head .index { margin-bottom: 18px; }
.sec-head-split { grid-template-columns: 1.35fr .65fr; align-items: end; gap: 48px; }
.sec-head-split .lead { max-width: 44ch; padding-bottom: 8px; font-size: 16px; }
.sec-head-left { justify-items: start; }
.tag { font: 500 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--fg3); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 500; font-size: 15px; white-space: nowrap; transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), filter .25s; }
.btn:active { transform: scale(.97); }
.btn .arr { font-style: normal; font-size: 15px; transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translate(2px, -2px); }
.btn-primary, .btn-dark { background: var(--fg); color: var(--bg); box-shadow: 0 10px 30px -14px rgba(0,0,0,.6); }
.band-light .btn-primary, .band-light .btn-dark { background: var(--l-fg); color: #fff; }
.btn-primary:hover, .btn-dark:hover { filter: brightness(1.1); }
.btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }
.btn[disabled] { opacity: .6; pointer-events: none; }
.btn[hidden] { display: none; }
.textlink { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 15px; color: var(--fg2); transition: color .25s; }
.textlink:hover { color: var(--fg); }
.textlink .arr { font-style: normal; transition: transform .3s var(--ease); }
.textlink:hover .arr { transform: translateY(3px); }

/* ---------- Reveals & Enter ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); transition-delay: var(--d, 0s); }
.js [data-reveal].in { opacity: 1; transform: none; }
.enter { animation: enterUp 1.1s var(--ease-out) both; }
.hero-inner .enter:nth-child(1) { animation-delay: .05s; } .hero-inner .enter:nth-child(2) { animation-delay: .15s; } .hero-inner .enter:nth-child(3) { animation-delay: .3s; } .hero-inner .enter:nth-child(4) { animation-delay: .42s; }
.scene-wrap.enter { animation-delay: .5s; }
@keyframes enterUp { from { opacity: 0; transform: translateY(26px); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }

/* ==========================================================================
   NAV: Marke links, Menü mittig, Sprache + Aktion rechts
   ========================================================================== */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 12px var(--gut) 0; pointer-events: none; color: var(--fg); }
.nav-bar { pointer-events: auto; width: min(var(--wrap), 100%); margin-inline: auto; height: var(--nav-h); padding: 0 6px 0 16px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-radius: 999px; background: rgba(10,11,15,.55); box-shadow: inset 0 0 0 1px var(--d-line); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); transition: background .4s var(--ease), box-shadow .4s var(--ease); }
.nav-bar-legal { grid-template-columns: 1fr auto; }
.nav.is-scrolled .nav-bar { background: rgba(10,11,15,.78); box-shadow: inset 0 0 0 1px var(--d-line2), 0 20px 50px -30px rgba(0,0,0,.9); }
.nav.on-light .nav-bar { background: rgba(255,255,255,.74); box-shadow: inset 0 0 0 1px rgba(11,12,16,.08), 0 20px 50px -30px rgba(23,32,71,.25); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; letter-spacing: .01em; justify-self: start; white-space: nowrap; }
.brand img { width: 26px; height: auto; }
.nav-links { display: flex; gap: 2px; padding: 4px; border-radius: 999px; }
.nav-links a { padding: 7px 13px; border-radius: 999px; font-size: 14px; color: var(--fg2); transition: color .25s, background .25s; }
.nav-links a:hover { color: var(--fg); }
.nav-links a.is-active { color: var(--fg); background: rgba(127,127,127,.14); }
.nav-right { display: flex; align-items: center; gap: 8px; justify-self: end; }
.nav .btn-primary { background: var(--fg); color: var(--bg); box-shadow: none; }
.lang { display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 12px 0 10px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line2); font: 500 12px/1 var(--sans); letter-spacing: .06em; color: var(--fg2); transition: color .25s, background .25s, box-shadow .25s; }
.lang svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.lang:hover { color: var(--fg); background: rgba(127,127,127,.12); }
.burger { display: none; width: 40px; height: 40px; border-radius: 50%; position: relative; }
.burger span { position: absolute; left: 12px; width: 16px; height: 1.5px; background: var(--fg); transition: .35s var(--ease); }
.burger span:first-child { top: 16px; } .burger span:last-child { top: 22px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }
.mobile-menu { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { min-height: 100svh; padding: calc(var(--nav-h) + 96px) 0 0; text-align: center; overflow: hidden; }
.hero-light { position: absolute; left: 50%; top: -20%; width: 140vmax; height: 90vmax; transform: translateX(-50%); pointer-events: none; background: radial-gradient(ellipse at 50% 22%, rgba(52,72,140,.55) 0%, rgba(20,26,50,.55) 28%, rgba(5,5,7,0) 60%); }
.hero-inner { position: relative; display: grid; justify-items: center; gap: 24px; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(63,214,143,.15); } 50% { box-shadow: 0 0 0 7px rgba(63,214,143,.05); } }
.hero-h1 { font: 600 clamp(56px, 9vw, 132px)/.92 var(--display); letter-spacing: -.062em; display: grid; margin-top: 4px; }
.hero-h1 .grad { padding-bottom: .06em; }
.hero-sub { max-width: 64ch; color: var(--fg2); font-size: clamp(16px, 1.45vw, 20px); line-height: 1.6; text-wrap: pretty; }
.hero-cta { display: flex; align-items: center; gap: 26px; margin-top: 8px; }

/* ---- Bühne: Ein System ---- */
.scene-wrap { position: relative; width: min(1180px, 100% - var(--gut) * 2); margin: 72px auto 0; height: calc(640px * var(--ss, 1)); padding-bottom: 0; }
.hero { padding-bottom: 96px; }
.scene { position: absolute; left: 50%; top: 0; width: 1180px; height: 640px; transform-origin: 50% 0; transform: translateX(-50%) scale(var(--ss, 1)); perspective: 1800px; }
.scene-glow { position: absolute; left: 50%; top: 40%; width: 1400px; height: 900px; transform: translate(-50%, -50%); background: radial-gradient(closest-side, rgba(75,123,255,.22), rgba(61,211,238,.06) 40%, transparent 70%); filter: blur(30px); pointer-events: none; }
/* Fenster: die Zentrale */
.wn { position: absolute; left: 236px; top: 0; width: 944px; height: 560px; border-radius: 18px; background: rgba(15,17,23,.92); box-shadow: inset 0 0 0 1px var(--d-line2), inset 0 1px 0 rgba(255,255,255,.08), 0 70px 130px -40px rgba(0,0,0,.95); overflow: hidden; transform: rotateX(calc(var(--tilt, 1) * 7deg)) rotateY(calc(var(--tilt, 1) * -4deg)); transform-origin: 50% 100%; will-change: transform; }
.wn-bar { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--d-line); font: 500 11px var(--mono); color: var(--d-fg3); letter-spacing: .06em; }
.wn-bar i { width: 10px; height: 10px; border-radius: 50%; background: #2a2e38; }
.wn-bar i:nth-child(1) { background: #ff5f57; } .wn-bar i:nth-child(2) { background: #febc2e; } .wn-bar i:nth-child(3) { background: #28c840; }
.wn-bar span { margin: 0 auto; } .wn-bar b { color: var(--ok); font-weight: 500; }
.dash { position: absolute; left: 0; right: 0; top: 42px; bottom: 0; display: grid; grid-template-columns: 62px 1fr; text-align: left; }
.dash-side { border-right: 1px solid var(--d-line); display: grid; align-content: start; justify-items: center; gap: 14px; padding: 18px 0; }
.dash-side img { width: 24px; margin-bottom: 8px; }
.dash-side i { width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,.05); }
.dash-side i.on { background: rgba(75,123,255,.22); box-shadow: inset 0 0 0 1px rgba(75,123,255,.45); }
.dash-main { padding: 22px 26px; display: grid; grid-template-rows: auto auto 1fr; gap: 18px; min-width: 0; }
.dash-head { display: flex; align-items: center; justify-content: space-between; }
.dash-head small { display: block; font-size: 12px; color: var(--d-fg3); margin-bottom: 4px; }
.dash-head h3 { font: 600 20px/1.1 var(--display); letter-spacing: -.02em; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--d-fg2); padding: 8px 12px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--d-line2); }
.pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 12px var(--ok); }
.kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.kpis article { background: rgba(255,255,255,.035); border-radius: 12px; padding: 14px 16px; box-shadow: inset 0 0 0 1px var(--d-line); }
.kpis small { display: block; font-size: 11px; color: var(--d-fg3); margin-bottom: 8px; }
.kpis strong { font: 600 24px/1 var(--display); letter-spacing: -.03em; font-variant-numeric: tabular-nums; display: inline-block; }
.kpis strong.bump { animation: bump .7s var(--ease); }
@keyframes bump { 30% { color: var(--cyan); transform: translateY(-2px); } }
.kpis em { font: 500 11px var(--mono); color: var(--ok); font-style: normal; margin-left: 8px; }
.dash-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; min-height: 0; }
.chart, .feed { background: rgba(255,255,255,.035); border-radius: 12px; box-shadow: inset 0 0 0 1px var(--d-line); padding: 14px 16px; display: grid; grid-template-rows: auto 1fr; gap: 12px; min-height: 0; }
.chart-head { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--d-fg2); }
.chart-head small { color: var(--d-fg3); font-size: 11px; }
.bars { display: flex; align-items: flex-end; gap: 6px; height: 100%; min-height: 120px; padding-top: 6px; }
.bars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, rgba(111,146,255,.9), rgba(77,213,239,.28)); height: var(--h, 40%); transform-origin: bottom; animation: bar 4.2s var(--ease) infinite alternate; animation-delay: calc(var(--n) * -.37s); }
.bars i:nth-child(1){--h:34%;--n:1}.bars i:nth-child(2){--h:48%;--n:2}.bars i:nth-child(3){--h:42%;--n:3}.bars i:nth-child(4){--h:62%;--n:4}.bars i:nth-child(5){--h:55%;--n:5}.bars i:nth-child(6){--h:74%;--n:6}.bars i:nth-child(7){--h:66%;--n:7}.bars i:nth-child(8){--h:82%;--n:8}.bars i:nth-child(9){--h:60%;--n:9}.bars i:nth-child(10){--h:88%;--n:10}.bars i:nth-child(11){--h:72%;--n:11}.bars i:nth-child(12){--h:94%;--n:12}.bars i:nth-child(13){--h:80%;--n:13}.bars i:nth-child(14){--h:100%;--n:14}
@keyframes bar { from { transform: scaleY(.76); } to { transform: scaleY(1); } }
.feed ul { display: grid; gap: 4px; align-content: start; overflow: hidden; }
.feed li { display: grid; grid-template-columns: 8px 1fr auto; gap: 12px; align-items: center; padding: 9px 8px; border-radius: 8px; font-size: 12px; }
.feed li i { width: 8px; height: 8px; border-radius: 50%; }
.feed li i.c-blue { background: var(--azure); } .feed li i.c-vio { background: var(--violet); } .feed li i.c-gray { background: #5b606b; } .feed li i.c-ok { background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.feed li b { display: block; font-weight: 500; }
.feed li small { color: var(--d-fg3); font-size: 11px; }
.feed li em { font: 500 11px var(--mono); color: var(--d-fg3); font-style: normal; }
.feed li.new { animation: feedIn .7s var(--ease-out) both; background: rgba(75,123,255,.12); box-shadow: inset 0 0 0 1px rgba(75,123,255,.35); }
@keyframes feedIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; } }
/* Telefon in der Bühne */
.ph-wrap { position: absolute; left: 0; bottom: 20px; width: 236px; height: 501px; z-index: 3; }
.ph-wrap .ph { transform: scale(.5619); transform-origin: 0 0; }
/* Infrastruktur-Leiste unter dem Fenster: App → API → Daten → Betrieb */
.infra { position: absolute; left: 262px; right: 8px; bottom: 6px; height: 40px; display: flex; align-items: center; justify-content: space-between; padding: 0 12px; }
.infra::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.14) 60%, transparent); }
.infra span { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 10px; border-radius: 999px; background: rgba(15,17,23,.95); box-shadow: inset 0 0 0 1px var(--d-line2); font-size: 12px; color: var(--d-fg2); transition: box-shadow .3s, color .3s; }
.infra span i { width: 6px; height: 6px; border-radius: 50%; background: var(--d-fg3); transition: background .3s, box-shadow .3s; }
.infra span b { font-weight: 500; color: var(--d-fg); }
.infra span small { font: 500 11px var(--mono); color: var(--d-fg3); }
.infra span.hit { box-shadow: inset 0 0 0 1px rgba(77,213,239,.6); }
.infra span.hit i { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.infra .pulse { position: absolute; left: 0; top: 50%; width: 8px; height: 8px; border-radius: 50%; margin: -4px 0 0 -4px; background: var(--cyan); box-shadow: 0 0 14px var(--cyan), 0 0 0 3px rgba(77,213,239,.2); opacity: 0; }
.infra .pulse.run { animation: pulseRun 2.4s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes pulseRun { 0% { left: 0; opacity: 0; } 6% { opacity: 1; } 94% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
/* Bühne auf schmalen Viewports: nur Telefon + Infrastruktur */
@media (max-width: 760px) {
  .scene-wrap { height: auto; margin-top: 44px; }
  .scene { position: relative; left: 0; width: 100%; height: auto; transform: none; display: grid; justify-items: center; gap: 22px; }
  .scene-glow { width: 120vw; height: 120vw; top: 30%; }
  .wn { display: none; }
  .ph-wrap { position: relative; left: auto; bottom: auto; }
  .infra { position: relative; left: auto; right: auto; bottom: auto; width: 100%; height: auto; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .infra::before, .infra .pulse { display: none; }
}

/* ==========================================================================
   GERÄT: iPhone (1 px = 1 pt), aufgebaut in app.js
   ========================================================================== */
.ph { position: relative; width: 420px; height: 892px; border-radius: 71px; background: linear-gradient(155deg, #34373d 0%, #1b1d22 28%, #101216 60%, #1a1c21 100%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), inset 0 0 0 2.5px rgba(0,0,0,.6), 0 0 0 1px rgba(0,0,0,.7), 0 60px 120px -40px rgba(0,0,0,.9); }
.ph::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(140deg, rgba(255,255,255,.28), transparent 26%, transparent 70%, rgba(255,255,255,.08)); -webkit-mask: linear-gradient(#000,#000) content-box, linear-gradient(#000,#000); -webkit-mask-composite: xor; mask-composite: exclude; padding: 1.5px; }
.ph-btn { position: absolute; background: linear-gradient(90deg,#3a3d44,#1a1c21); border-radius: 2px; }
.ph-btn.act { left: -3px; top: 176px; width: 3px; height: 34px; } .ph-btn.vu { left: -3px; top: 240px; width: 3px; height: 62px; } .ph-btn.vd { left: -3px; top: 314px; width: 3px; height: 62px; }
.ph-btn.pw { right: -3px; top: 260px; width: 3px; height: 98px; background: linear-gradient(270deg,#3a3d44,#1a1c21); } .ph-btn.cc { right: -3px; top: 400px; width: 3px; height: 50px; background: linear-gradient(270deg,#3a3d44,#1a1c21); }
.ph-scr { position: absolute; left: 9px; top: 9px; width: 402px; height: 874px; border-radius: 62px; background: #F2F3F6; overflow: hidden; isolation: isolate; color: #0B0C10; font-family: var(--sans); }
.ph-island { position: absolute; left: 50%; top: 11px; transform: translateX(-50%); width: 126px; height: 37.5px; border-radius: 20px; background: #000; z-index: 20; }
.ph-island::after { content: ""; position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle at 40% 40%, #1c2333, #05070c 60%); }
.ph-home { position: absolute; left: 50%; bottom: 8px; transform: translateX(-50%); width: 144px; height: 5px; border-radius: 3px; background: rgba(0,0,0,.85); z-index: 20; }
.ph-sb { position: absolute; left: 0; right: 0; top: 0; height: 58px; z-index: 19; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 38px 12px 44px; font: 600 16px/1 var(--sans); }
.ph-sb svg { width: 74px; height: 14px; }
/* generische Team-App auf dem Telefon: Aufgaben des Tages */
.pa { position: absolute; inset: 0; padding: 78px 24px 0; text-align: left; }
.pa-hello { font-size: 15px; color: #6B7280; }
.pa-title { font: 600 34px/1.05 var(--display); letter-spacing: -.035em; margin: 4px 0 22px; }
.pa-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; background: #fff; border-radius: 18px; padding: 16px 18px; margin-bottom: 10px; box-shadow: 0 1px 2px rgba(10,12,16,.06), 0 10px 26px -20px rgba(10,12,16,.3); }
.pa-row b { display: block; font-size: 16px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 3px; }
.pa-row small { font-size: 13px; color: #6B7280; }
.pa-row .st { position: relative; width: 30px; height: 30px; border-radius: 50%; box-shadow: inset 0 0 0 1.6px #CDD2DC; display: grid; place-items: center; transition: background .3s, box-shadow .3s; }
.pa-row .st svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 20; stroke-dashoffset: 20; transition: stroke-dashoffset .4s var(--ease) .1s; }
.pa-row .st.sync { box-shadow: none; background: conic-gradient(var(--azure) 0 25%, #E4E7EE 25% 100%); animation: spin 1s linear infinite; }
.pa-row .st.sync::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: #fff; }
.pa-row .st.sync svg { display: none; }
.pa-row .st.done { background: #178A56; box-shadow: none; }
.pa-row .st.done svg { stroke-dashoffset: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.pa-cta { position: absolute; left: 24px; right: 24px; bottom: 44px; height: 56px; border-radius: 16px; background: #0B0C10; color: #fff; display: grid; place-items: center; font-weight: 600; font-size: 16px; transition: background .4s; }
.pa-cta.sent { background: #178A56; }

/* ==========================================================================
   HELLES BAND 1: Was wir bauen (Bento) · Wie wir arbeiten
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { position: relative; overflow: hidden; border-radius: 28px; background: var(--surface); box-shadow: var(--shadow), inset 0 0 0 1px var(--line); display: grid; grid-template-rows: auto 1fr; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: 0 44px 100px -34px rgba(23,32,71,.24), inset 0 0 0 1px var(--line2); }
.card-tall { grid-row: span 2; grid-template-rows: 1fr auto; }
.card-text { padding: 26px 28px 30px; display: grid; gap: 10px; align-content: start; }
.card-text .tag { margin-bottom: 4px; }
.card-text h3 { font: 600 clamp(24px, 2vw, 30px)/1.05 var(--display); letter-spacing: -.035em; }
.card-text p { color: var(--fg2); font-size: 15px; line-height: 1.6; text-wrap: pretty; }
/* Illustrations-Bühne in Karten */
.il { position: relative; overflow: hidden; height: 240px; background: linear-gradient(180deg, #F7F7F9, #EDEEF2); box-shadow: inset 0 -1px 0 var(--line); }
.card-tall .il { height: 100%; min-height: 420px; }

/* Mobile: eine Codebasis → zwei Plattformen */
.il-mobile { display: grid; place-items: center; }
.il-phone { position: absolute; top: calc(50% - 196px); width: 118px; height: 236px; border-radius: 26px; background: #16181d; box-shadow: 0 30px 60px -28px rgba(11,12,16,.7), inset 0 0 0 1px rgba(255,255,255,.14); padding: 30px 12px 0; display: grid; align-content: start; gap: 8px; }
.il-phone::before { content: ""; position: absolute; inset: 4px; border-radius: 23px; background: #F6F7FA; z-index: 0; }
.il-phone > * { position: relative; z-index: 1; }
.il-phone .isl { position: absolute; left: 50%; top: 10px; transform: translateX(-50%); width: 34px; height: 10px; border-radius: 6px; background: #16181d; z-index: 2; }
.il-phone .os { font: 500 9px var(--mono); letter-spacing: .16em; text-transform: uppercase; color: #8A8E98; }
.il-phone b { display: block; height: 30px; border-radius: 9px; background: #fff; box-shadow: 0 1px 2px rgba(11,12,16,.06), inset 0 0 0 1px #E8E9EE; }
.il-phone b:first-of-type { height: 46px; background: var(--grad); box-shadow: none; opacity: .92; }
.il-phone-l { left: calc(50% - 138px); transform: rotate(-4deg); }
.il-phone .home { position: absolute; left: 50%; bottom: 7px; transform: translateX(-50%); width: 40px; height: 4px; border-radius: 2px; background: #16181d; }
/* Android: Punch-Hole-Kamera, schmalerer Rahmen, eckigere Karten, FAB, Gestenleiste */
.il-phone-r { left: calc(50% + 20px); transform: rotate(4deg); border-radius: 18px; padding: 26px 11px 0; }
.il-phone-r::before { inset: 3px; border-radius: 15px; }
.il-phone-r .cam { position: absolute; left: 50%; top: 9px; transform: translateX(-50%); width: 8px; height: 8px; border-radius: 50%; background: #16181d; box-shadow: inset 0 0 0 1.5px #3a3e47; z-index: 2; }
.il-phone-r b { border-radius: 6px; }
.il-phone-r b:first-of-type { height: 34px; border-radius: 8px; }
.il-phone-r .fab { position: absolute; right: 12px; bottom: 20px; width: 30px; height: 30px; border-radius: 10px; background: var(--azure); box-shadow: 0 10px 20px -8px rgba(75,123,255,.9); }
.il-phone-r .fab::before, .il-phone-r .fab::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; background: #fff; transform: translate(-50%,-50%); }
.il-phone-r .fab::after { transform: translate(-50%,-50%) rotate(90deg); }
.il-phone-r .gest { position: absolute; left: 50%; bottom: 6px; transform: translateX(-50%); width: 34px; height: 3px; border-radius: 2px; background: #9AA0AB; }
.il-lines { position: absolute; left: 50%; top: calc(50% + 40px); width: 300px; height: 100px; transform: translateX(-50%); }
.il-lines path { fill: none; stroke: #C6CAD5; stroke-width: 1.5; stroke-dasharray: 4 5; }
.il-code { position: absolute; left: 50%; top: calc(50% + 146px); transform: translateX(-50%); display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px 9px 12px; border-radius: 12px; background: #0F1117; color: #F5F5F7; box-shadow: 0 20px 40px -22px rgba(11,12,16,.8); font: 500 12px var(--mono); white-space: nowrap; }
.il-code i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.il-code small { font: 400 11px var(--sans); color: #A3A7B1; }

/* Web: die Zentrale */
.il-web { display: grid; place-items: end center; }
.il-win { width: 84%; height: 86%; border-radius: 14px 14px 0 0; background: #fff; box-shadow: 0 30px 60px -30px rgba(23,32,71,.35), inset 0 0 0 1px var(--line); overflow: hidden; display: grid; grid-template-rows: 26px 1fr; }
.il-win-bar { display: flex; align-items: center; gap: 5px; padding: 0 10px; border-bottom: 1px solid var(--line); }
.il-win-bar i { width: 7px; height: 7px; border-radius: 50%; background: #E1E3E9; }
.il-win-body { display: grid; grid-template-columns: 34px 1fr; min-height: 0; }
.il-side { border-right: 1px solid var(--line); display: grid; align-content: start; justify-items: center; gap: 8px; padding-top: 12px; }
.il-side i { width: 16px; height: 16px; border-radius: 5px; background: #EDEEF2; }
.il-side i.on { background: rgba(75,123,255,.18); box-shadow: inset 0 0 0 1px rgba(75,123,255,.5); }
.il-main { padding: 12px; display: grid; grid-template-rows: auto 1fr; gap: 10px; min-height: 0; }
.il-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.il-kpis span { border-radius: 8px; background: #F5F6F8; box-shadow: inset 0 0 0 1px var(--line); padding: 8px 10px; }
.il-kpis small { display: block; font-size: 9px; color: var(--l-fg3); margin-bottom: 3px; }
.il-kpis b { font: 600 15px/1 var(--display); letter-spacing: -.02em; }
.il-bars { display: flex; align-items: flex-end; gap: 5px; height: 100%; min-height: 60px; }
.il-bars i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(180deg, #6F92FF, rgba(77,213,239,.5)); height: var(--h); transform-origin: bottom; animation: bar 4s var(--ease) infinite alternate; animation-delay: calc(var(--n) * -.4s); }
.il-bars i:nth-child(1){--h:38%;--n:1}.il-bars i:nth-child(2){--h:52%;--n:2}.il-bars i:nth-child(3){--h:44%;--n:3}.il-bars i:nth-child(4){--h:66%;--n:4}.il-bars i:nth-child(5){--h:58%;--n:5}.il-bars i:nth-child(6){--h:80%;--n:6}.il-bars i:nth-child(7){--h:70%;--n:7}.il-bars i:nth-child(8){--h:88%;--n:8}.il-bars i:nth-child(9){--h:76%;--n:9}.il-bars i:nth-child(10){--h:100%;--n:10}

/* API: das Rückgrat */
.il-api { display: grid; place-items: center; }
.il-term { width: 86%; border-radius: 14px; background: #0F1117; color: #F5F5F7; box-shadow: 0 30px 60px -28px rgba(11,12,16,.8), inset 0 0 0 1px rgba(255,255,255,.1); overflow: hidden; }
.il-term-bar { display: flex; align-items: center; justify-content: space-between; padding: 9px 14px; border-bottom: 1px solid rgba(255,255,255,.08); font: 500 10px var(--mono); color: #6F737D; letter-spacing: .06em; }
.il-term-bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.il-term pre { padding: 12px 14px 8px; display: grid; gap: 7px; font: 400 11px/1.4 var(--mono); color: #A3A7B1; white-space: pre; overflow: hidden; }
.il-term pre span { animation: logIn 7s var(--ease) infinite; }
.il-term pre span:nth-child(1){animation-delay:0s}.il-term pre span:nth-child(2){animation-delay:.5s}.il-term pre span:nth-child(3){animation-delay:1s}.il-term pre span:nth-child(4){animation-delay:1.5s}
.il-term .m { color: #C9CDD6; font-weight: 500; } .il-term .ok { color: var(--ok); font-weight: 500; }
@keyframes logIn { 0% { opacity: 0; transform: translateX(-6px); } 6%, 82% { opacity: 1; transform: none; } 92%, 100% { opacity: 0; } }
.il-term-foot { display: flex; gap: 6px; padding: 8px 14px 12px; }
.il-term-foot span { font: 500 10px var(--mono); padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,.06); color: #A3A7B1; }

/* Automatisierung: Dokument → Daten */
.il-auto { display: grid; grid-template-columns: 96px 60px 1fr; align-items: center; padding: 0 22px 0 26px; }
.il-doc { width: 96px; height: 124px; border-radius: 8px; background: #fff; box-shadow: 0 24px 40px -24px rgba(23,32,71,.4), inset 0 0 0 1px var(--line); padding: 16px 12px; display: grid; align-content: start; gap: 8px; position: relative; }
.il-doc::before { content: ""; position: absolute; right: -1px; top: -1px; width: 22px; height: 22px; background: linear-gradient(225deg, #F7F7F9 50%, #E4E5EA 50%); border-radius: 0 8px 0 6px; }
.il-doc i { display: block; height: 6px; border-radius: 3px; background: #E4E5EA; }
.il-doc i:first-child { width: 60%; background: #C9CDD6; }
.il-doc i.short { width: 46%; }
.il-flow { position: relative; height: 1px; background: #C6CAD5; margin: 0 6px; }
.il-flow::after { content: ""; position: absolute; right: -1px; top: -3px; width: 7px; height: 7px; border-right: 1.5px solid #B8BBC5; border-bottom: 1.5px solid #B8BBC5; transform: rotate(-45deg); }
.il-flow i { position: absolute; left: 0; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--azure); box-shadow: 0 0 10px var(--azure); animation: flowDot 2.6s var(--ease) infinite; }
@keyframes flowDot { 0% { left: 0; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: calc(100% - 7px); opacity: 0; } }
.il-rows { display: grid; gap: 8px; }
.il-rows span { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; align-items: center; padding: 8px 12px; border-radius: 10px; background: #fff; box-shadow: inset 0 0 0 1px var(--line); }
.il-rows small { font: 500 9px var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--l-fg3); }
.il-rows b { grid-row: 2; font-size: 12px; font-weight: 600; letter-spacing: -.01em; }
.il-rows i { grid-row: 1 / span 2; width: 18px; height: 18px; border-radius: 50%; position: relative; }
.il-rows i.ok { background: #E7FAF1; box-shadow: inset 0 0 0 1px #9ADFBD; }
.il-rows i.ok::after { content: ""; position: absolute; left: 6px; top: 4px; width: 5px; height: 8px; border-right: 1.6px solid #178A56; border-bottom: 1.6px solid #178A56; transform: rotate(45deg); }
.il-rows i.chk { background: #FFF5DF; box-shadow: inset 0 0 0 1px #F2D18F; }
.il-rows i.chk::after { content: "?"; position: absolute; inset: 0; display: grid; place-items: center; font: 600 10px var(--sans); color: #B7791F; }

/* Betrieb: Status */
.il-ops { display: grid; place-items: center; }
.il-status { width: 86%; border-radius: 14px; background: #fff; box-shadow: 0 30px 60px -30px rgba(23,32,71,.35), inset 0 0 0 1px var(--line); padding: 14px 16px 12px; display: grid; gap: 12px; }
.il-status-head { display: flex; justify-content: space-between; align-items: center; }
.il-status-head span { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; }
.il-status-head i { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(63,214,143,.18); animation: pulse 2.4s infinite; }
.il-status-head small { font: 500 12px var(--mono); color: var(--l-fg3); }
.il-days { display: grid; grid-template-columns: repeat(30, 1fr); gap: 3px; }
.il-days i { height: 26px; border-radius: 3px; background: #3FD68F; opacity: .55; }
.il-days i:nth-child(6n) { opacity: .8; }
.il-days i:last-child { opacity: 1; box-shadow: 0 0 10px rgba(63,214,143,.6); }
.il-status-foot { display: flex; justify-content: space-between; gap: 8px; font: 500 10px var(--mono); color: var(--l-fg3); letter-spacing: .04em; flex-wrap: wrap; }

/* ---- Wie wir arbeiten: Verstehen · Bauen · Betreiben ---- */
.sec-how { padding-top: 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { border-radius: 28px; background: var(--surface); box-shadow: var(--shadow), inset 0 0 0 1px var(--line); overflow: hidden; display: grid; grid-template-rows: auto 1fr; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.step:hover { transform: translateY(-4px); }
.step .il { height: 280px; display: grid; place-items: center; }
.step-text { padding: 26px 28px 30px; display: grid; gap: 10px; align-content: start; }
.step-n { font: 500 11px var(--mono); letter-spacing: .18em; color: var(--fg3); }
.step-text h3 { font: 600 32px/1 var(--display); letter-spacing: -.04em; }
.step-text p { color: var(--fg2); font-size: 15px; line-height: 1.6; text-wrap: pretty; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chips li { font: 500 10px var(--mono); letter-spacing: .06em; padding: 6px 10px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line2); color: var(--fg2); }
.steps-note { margin-top: 44px; display: flex; justify-content: center; align-items: center; gap: 18px; font: 500 11px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--fg3); }
.steps-note i { width: 4px; height: 4px; border-radius: 50%; background: var(--fg4); }
/* Verstehen: Skizzen-Scheiben */
.il-shape .pane { position: absolute; width: 150px; height: 118px; border-radius: 16px; background: rgba(255,255,255,.55); box-shadow: 0 30px 60px -28px rgba(23,32,71,.35), inset 0 0 0 1px rgba(255,255,255,.9), inset 0 0 0 2px rgba(220,222,232,.5); backdrop-filter: blur(6px); }
.il-shape .p1 { left: calc(50% - 112px); top: 62px; transform: rotate(-9deg); opacity: .7; }
.il-shape .p2 { left: calc(50% - 60px); top: 52px; transform: rotate(-3deg); opacity: .85; }
.il-shape .p3 { left: calc(50% - 6px); top: 100px; transform: rotate(4deg); background: linear-gradient(160deg, rgba(232,235,255,.95), rgba(214,220,255,.9)); box-shadow: 0 34px 60px -26px rgba(75,123,255,.45), inset 0 0 0 1px rgba(255,255,255,.9); padding: 18px 16px; display: grid; align-content: start; gap: 8px; }
.il-shape .p3 i { display: block; height: 7px; border-radius: 4px; background: rgba(75,123,255,.35); }
.il-shape .p3 i:last-child { width: 60%; }
.il-shape .spark { position: absolute; left: calc(50% + 34px); top: 46px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); animation: pulse 2.4s infinite; }
/* Bauen: Code-Karte */
.il-build .code { position: relative; width: 236px; height: 156px; border-radius: 16px; background: #0F1117; box-shadow: 0 40px 70px -30px rgba(11,12,16,.8), inset 0 0 0 1px rgba(255,255,255,.1); padding: 26px 24px; display: grid; align-content: start; gap: 12px; }
.il-build .code i { position: absolute; left: 0; top: 0; width: 24px; height: 24px; background: linear-gradient(135deg, #F4F4F6 50%, #1a1d24 50%); border-radius: 16px 0 6px 0; }
.il-build .code b { display: block; height: 7px; border-radius: 4px; background: rgba(167,156,255,.55); transform-origin: left; animation: codeLine 5s var(--ease) infinite; }
.il-build .code .l1 { width: 42%; background: rgba(77,213,239,.55); animation-delay: 0s; }
.il-build .code .l2 { width: 78%; animation-delay: .25s; }
.il-build .code .l3 { width: 64%; background: rgba(111,146,255,.55); animation-delay: .5s; }
.il-build .code .l4 { width: 88%; animation-delay: .75s; }
.il-build .code .l5 { width: 30%; background: rgba(77,213,239,.55); animation-delay: 1s; }
@keyframes codeLine { 0% { transform: scaleX(0); } 12%, 84% { transform: scaleX(1); } 96%, 100% { transform: scaleX(0); } }
.il-build .caret { position: absolute; left: 24px; bottom: 22px; width: 8px; height: 12px; background: var(--cyan); animation: caret .9s steps(2) infinite; }
@keyframes caret { 50% { opacity: 0; } }
/* Betreiben: Ringe */
.il-run .ring { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid rgba(75,123,255,.22); }
.il-run .r1 { width: 120px; height: 120px; } .il-run .r2 { width: 176px; height: 176px; border-color: rgba(75,123,255,.16); } .il-run .r3 { width: 232px; height: 232px; border-color: rgba(75,123,255,.1); }
.il-run .ring::after { content: ""; position: absolute; inset: -1px; border-radius: 50%; border: 1px solid rgba(75,123,255,.6); animation: ringOut 3s ease-out infinite; }
.il-run .r2::after { animation-delay: .5s; } .il-run .r3::after { animation-delay: 1s; }
@keyframes ringOut { from { transform: scale(.7); opacity: .8; } to { transform: scale(1.15); opacity: 0; } }
.il-run .core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 84px; height: 84px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #A8BEFF, #6F92FF 55%, #4B7BFF); box-shadow: 0 30px 60px -20px rgba(75,123,255,.7), inset 0 0 0 1px rgba(255,255,255,.4); display: grid; place-content: center; text-align: center; color: #fff; }
.il-run .core b { font: 600 20px/1 var(--display); letter-spacing: -.03em; }
.il-run .core small { font: 500 9px var(--mono); letter-spacing: .1em; }

/* ==========================================================================
   DUNKLES BAND: Das System
   ========================================================================== */
.sec-system { padding-top: clamp(120px, 14vw, 200px); }
.sys-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.iso-wrap { position: relative; height: 480px; display: grid; place-items: center; perspective: 1400px; }
.iso-wrap::before { content: ""; position: absolute; left: 50%; top: 50%; width: 560px; height: 420px; transform: translate(-50%,-50%); background: radial-gradient(closest-side, rgba(75,123,255,.22), transparent 70%); filter: blur(30px); pointer-events: none; }
.iso { position: relative; width: 320px; height: 210px; transform-style: preserve-3d; transform: rotateX(58deg) rotateZ(-38deg); animation: isoFloat 9s ease-in-out infinite; }
@keyframes isoFloat { 0%, 100% { transform: rotateX(58deg) rotateZ(-38deg) translateZ(0); } 50% { transform: rotateX(58deg) rotateZ(-38deg) translateZ(-16px); } }
.layer { position: absolute; inset: 0; border-radius: 22px; background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.035)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 30px 60px -30px rgba(0,0,0,.9); transform: translateZ(calc(var(--i) * 54px)); transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .5s, opacity .5s; display: grid; place-items: center; }
.layer.hl { box-shadow: inset 0 0 0 1px rgba(77,213,239,.8), 0 0 60px -10px rgba(77,213,239,.5); background: linear-gradient(135deg, rgba(77,213,239,.16), rgba(75,123,255,.08)); transform: translateZ(calc(var(--i) * 54px + 18px)); }
.iso.has-hl .layer:not(.hl) { opacity: .5; }
.lc { display: grid; gap: 8px; }
.lc-app i { width: 64px; height: 118px; border-radius: 16px; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); }
.lc-web { width: 200px; }
.lc-web i { height: 10px; border-radius: 5px; background: rgba(255,255,255,.14); }
.lc-web i:first-child { height: 26px; border-radius: 8px; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.lc-web i:nth-child(3) { width: 60%; }
.lc-api { width: 200px; }
.lc-api i { height: 8px; border-radius: 4px; background: rgba(167,156,255,.5); }
.lc-api i:nth-child(1) { width: 40%; background: rgba(77,213,239,.5); } .lc-api i:nth-child(2) { width: 80%; } .lc-api i:nth-child(3) { width: 60%; background: rgba(111,146,255,.5); }
.lc-data { width: 200px; gap: 6px; }
.lc-data i { height: 12px; border-radius: 3px; background: rgba(255,255,255,.07); box-shadow: inset 0 0 0 1px rgba(255,255,255,.14); }
.lc-ops { grid-auto-flow: column; gap: 14px; }
.lc-ops i { width: 14px; height: 14px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 14px var(--ok); opacity: .85; }
.layers { display: grid; }
.layers li { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 12px; border-top: 1px solid var(--line); border-radius: 12px; transition: background .3s; cursor: default; }
.layers li:last-child { border-bottom: 1px solid var(--line); }
.layers li:hover { background: rgba(255,255,255,.035); }
.layers .ln { font: 500 12px var(--mono); color: var(--fg3); padding-top: 4px; }
.layers h3 { font: 600 18px/1.2 var(--display); letter-spacing: -.02em; margin-bottom: 4px; }
.layers p { color: var(--fg2); font-size: 14px; line-height: 1.55; }
.sys-foot { margin-top: clamp(80px, 10vw, 140px); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.sys-copy h3 { font: 600 clamp(28px, 3vw, 40px)/1.05 var(--display); letter-spacing: -.04em; margin-bottom: 14px; }
.sys-copy p { color: var(--fg2); text-wrap: pretty; }
.ops-map { position: relative; display: grid; justify-items: center; }
.ops-map svg { width: min(360px, 100%); height: auto; overflow: visible; }
.ops-map .land { fill: rgba(255,255,255,.035); stroke: rgba(255,255,255,.22); stroke-width: 1; stroke-linejoin: round; }
.ops-map .land-glow { fill: none; stroke: rgba(75,123,255,.25); stroke-width: 6; filter: blur(8px); }
.ops-map .dc-dot { fill: var(--azure); }
.ops-map .dc-ring { fill: none; stroke: var(--azure); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: ring 2.6s ease-out infinite; }
@keyframes ring { from { transform: scale(.4); opacity: .7; } to { transform: scale(2.2); opacity: 0; } }
.ops-map .hq-dot { fill: #fff; } .ops-map .hq-ring { fill: none; stroke: #fff; stroke-width: 1; opacity: .5; }
.ops-map .link { fill: none; stroke: rgba(255,255,255,.25); stroke-width: 1; stroke-dasharray: 3 5; }
.ops-map .pk { fill: none; stroke: var(--cyan); stroke-width: 1.5; stroke-dasharray: 8 200; animation: pk 3s linear infinite; }
@keyframes pk { to { stroke-dashoffset: -208; } }
.ops-map text { font: 500 11px var(--mono); fill: var(--fg2); letter-spacing: .06em; }
.map-legend { display: flex; gap: 20px; margin-top: 18px; font: 500 11px var(--mono); letter-spacing: .08em; text-transform: uppercase; color: var(--fg3); }
.map-legend > span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend i { width: 8px; height: 8px; border-radius: 50%; }
.map-legend .lg-hq { background: #fff; } .map-legend .lg-dc { background: var(--azure); }
.stack-line { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.stack-line ul { display: flex; flex-wrap: wrap; gap: 8px; }
.stack-line li { font-size: 13px; padding: 7px 12px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--line2); color: var(--fg2); }

/* ==========================================================================
   HELLES BAND 2: Modell · Team · FAQ
   ========================================================================== */
.model { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.model-copy { display: grid; gap: 20px; justify-items: start; }
.model-copy .index { margin-bottom: 4px; }
.model-list { display: grid; }
.model-list li { padding: 15px 0 15px 32px; border-top: 1px solid var(--line2); font-size: 16px; position: relative; }
.model-list li:last-child { border-bottom: 1px solid var(--line2); }
.model-list li::before { content: ""; position: absolute; left: 4px; top: 23px; width: 10px; height: 6px; border-left: 1.6px solid var(--azure); border-bottom: 1.6px solid var(--azure); transform: rotate(-45deg); }
.stats { margin-top: clamp(64px, 8vw, 110px); display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line2); }
.stats li { padding: 36px 24px 36px 0; border-right: 1px solid var(--line2); }
.stats li + li { padding-left: 24px; }
.stats li:last-child { border-right: 0; }
.stats strong { display: block; font: 600 clamp(40px, 4.6vw, 64px)/1 var(--display); letter-spacing: -.05em; }
.stats span { display: block; color: var(--fg2); font-size: 14px; line-height: 1.5; margin-top: 16px; max-width: 22ch; }
.team { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.person { border-radius: 28px; padding: 32px 32px 26px; background: var(--surface); box-shadow: var(--shadow), inset 0 0 0 1px var(--line); display: grid; gap: 16px; }
.person blockquote { font: 600 clamp(22px, 2.2vw, 30px)/1.15 var(--display); letter-spacing: -.035em; }
.person > p { color: var(--fg2); font-size: 15px; }
.person footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; margin-top: 8px; padding-top: 18px; border-top: 1px solid var(--line); }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font: 500 13px var(--mono); background: var(--surface2); box-shadow: inset 0 0 0 1px var(--line2); }
.person footer strong { display: block; font-weight: 600; font-size: 15px; }
.person footer div span { font-size: 13px; color: var(--fg3); }
.avail { font: 500 11px var(--mono); color: var(--fg2); display: inline-flex; align-items: center; gap: 7px; letter-spacing: .06em; }
.avail i { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); animation: pulse 2.4s infinite; }
.sec-faq { padding-bottom: clamp(100px, 12vw, 180px); }
.faq details { border-top: 1px solid var(--line2); }
.faq details:last-child { border-bottom: 1px solid var(--line2); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font: 600 18px/1.3 var(--display); letter-spacing: -.02em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { flex: none; width: 28px; height: 28px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line2); position: relative; transition: background .3s; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1.4px; background: var(--fg); transform: translate(-50%,-50%); }
.faq summary i::after { transform: translate(-50%,-50%) rotate(90deg); transition: transform .35s var(--ease); }
.faq details[open] summary i { background: var(--surface2); }
.faq details[open] summary i::after { transform: translate(-50%,-50%) rotate(0); }
.faq details p { color: var(--fg2); padding: 0 48px 24px 0; max-width: 70ch; }

/* ==========================================================================
   PROJEKT STARTEN (dunkel): vier Fragen, ein Panel
   ========================================================================== */
.sec-contact { padding-top: clamp(120px, 14vw, 200px); overflow: hidden; }
.contact-light { position: absolute; left: 60%; top: 30%; width: 900px; height: 700px; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(75,123,255,.16), transparent 70%); filter: blur(30px); pointer-events: none; }
.start { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 96px); align-items: start; position: relative; }
.start-copy { display: grid; gap: 20px; position: sticky; top: 110px; }
.start-copy .index { margin-bottom: 4px; }
.start-copy .h2 { font-size: clamp(36px, 4.4vw, 64px); }
.start-sum { display: grid; gap: 8px; min-height: 1.6em; }
.start-sum:empty::before { content: attr(data-empty); color: var(--fg3); font-size: 15px; }
.start-sum div { display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: baseline; padding: 10px 0; border-top: 1px solid var(--line); animation: sumIn .5s var(--ease-out); }
.start-sum div:last-child { border-bottom: 1px solid var(--line); }
.start-sum dt { font: 500 11px var(--mono); letter-spacing: .1em; text-transform: uppercase; color: var(--fg3); }
.start-sum dd { font-size: 15px; font-weight: 500; color: var(--fg); }
@keyframes sumIn { from { opacity: 0; transform: translateY(6px); } }
.start-alt { font-size: 14px; color: var(--fg3); }
.start-alt a { color: var(--fg2); border-bottom: 1px solid var(--line3); }
.start-alt a:hover { color: var(--fg); }
.start-panel { position: relative; display: grid; gap: 22px; padding: clamp(22px, 3vw, 34px); border-radius: 28px; background: rgba(255,255,255,.035); box-shadow: inset 0 0 0 1px var(--line2), 0 60px 120px -60px rgba(0,0,0,.9); backdrop-filter: blur(10px); overflow: hidden; }
.start-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.start-step-label { font-size: 13px; color: var(--fg3); }
.start-step-label b { color: var(--fg); font-weight: 600; }
.start-progress { display: flex; gap: 6px; }
.start-progress i { width: 34px; height: 3px; border-radius: 2px; background: rgba(255,255,255,.12); transition: background .4s var(--ease); }
.start-progress i.on { background: var(--grad); }
.start-steps { display: grid; }
.st-step { grid-area: 1 / 1; margin: 0; padding: 0; border: 0; min-width: 0; opacity: 0; visibility: hidden; transform: translateX(28px); transition: opacity .45s var(--ease-out), transform .45s var(--ease-out), visibility 0s linear .45s; }
.st-step.is-active { opacity: 1; visibility: visible; transform: none; transition: opacity .5s var(--ease-out) .08s, transform .5s var(--ease-out) .08s, visibility 0s; }
.st-step.is-left { transform: translateX(-28px); }
html:not(.js) .st-step { opacity: 1; visibility: visible; transform: none; position: static; margin-bottom: 24px; }
.st-step legend { display: grid; gap: 4px; padding: 0; margin-bottom: 18px; font: 600 clamp(20px, 2vw, 26px)/1.15 var(--display); letter-spacing: -.03em; }
.st-step legend small { font: 400 13px var(--sans); color: var(--fg3); }
.opts { display: grid; gap: 10px; }
.opts-3 { grid-template-columns: repeat(3, 1fr); }
.opts-2 { grid-template-columns: repeat(2, 1fr); }
.opt { position: relative; display: block; }
.opt input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.opt > span { display: grid; gap: 4px; padding: 16px 16px 14px; border-radius: 16px; background: rgba(255,255,255,.03); box-shadow: inset 0 0 0 1px var(--line2); cursor: pointer; transition: background .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); min-height: 100%; }
.opt > span:hover { background: rgba(255,255,255,.06); }
.opt > span i { width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; margin-bottom: 8px; transition: background .25s; }
.opt > span i svg { width: 18px; height: 18px; stroke: var(--fg); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.opt > span b { font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.opt > span small { font-size: 13px; color: var(--fg3); line-height: 1.4; }
.opt input:checked + span { background: rgba(75,123,255,.12); box-shadow: inset 0 0 0 1.5px rgba(111,146,255,.85); }
.opt input:checked + span i { background: var(--grad); }
.opt input:checked + span i svg { stroke: #fff; }
.opt input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }
.opt-row > span { padding: 14px 16px; }
.opt input:checked + span::after { content: ""; position: absolute; right: 14px; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.opt-row input:checked + span::after { top: 50%; transform: translateY(-50%); }
.st-sub { margin: 20px 0 10px; font-size: 13px; color: var(--fg2); font-weight: 500; }
.st-sub em { font-style: normal; color: var(--fg4); font-weight: 400; margin-left: 4px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.st-step .row { margin-bottom: 14px; }
.st-step .field + .field { margin-top: 14px; }
.field { display: grid; gap: 8px; border: 0; padding: 0; margin: 0; min-width: 0; }
.field label { font-size: 13px; color: var(--fg2); font-weight: 500; }
.field em { font-style: normal; color: var(--fg4); font-weight: 400; margin-left: 4px; }
.field input, .field textarea { width: 100%; min-width: 0; height: 48px; padding: 0 14px; border-radius: 12px; border: 0; background: rgba(0,0,0,.4); box-shadow: inset 0 0 0 1px var(--line2); color: var(--fg); font: inherit; font-size: 15px; transition: box-shadow .25s, background .25s; }
.field textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 96px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg4); }
.field input:focus, .field textarea:focus { outline: 0; box-shadow: inset 0 0 0 1px var(--line3), 0 0 0 4px rgba(75,123,255,.2); background: rgba(0,0,0,.55); }
.field input.is-bad { box-shadow: inset 0 0 0 1px var(--err); }
.chips-select { display: flex; flex-wrap: wrap; gap: 8px; }
.chips-select label { position: relative; }
.chips-select input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.chips-select span { display: inline-block; padding: 8px 14px; border-radius: 999px; font-size: 14px; color: var(--fg2); box-shadow: inset 0 0 0 1px var(--line2); cursor: pointer; transition: .25s; user-select: none; }
.chips-select span:hover { color: var(--fg); }
.chips-select input:checked + span { background: var(--fg); color: var(--bg); box-shadow: none; }
.chips-select input:focus-visible + span { outline: 2px solid var(--cyan); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; overflow: hidden; }
.start-hint { font-size: 14px; color: var(--warn); min-height: 1.4em; margin: -6px 0 -8px; }
.start-hint.ok { color: var(--ok); } .start-hint.err { color: var(--err); }
.start-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.st-back { font-size: 14px; color: var(--fg2); padding: 10px 4px; transition: color .25s; }
.st-back:hover { color: var(--fg); }
.st-back[hidden] { display: none; }
.st-next, .st-send { margin-left: auto; }
.st-send[hidden] { display: none; }
.start-panel.is-shake { animation: shake .4s var(--ease); }
@keyframes shake { 20% { transform: translateX(-6px); } 40% { transform: translateX(6px); } 60% { transform: translateX(-4px); } 80% { transform: translateX(4px); } }
.start-done { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; text-align: center; gap: 12px; padding: 30px; background: #0C0D12; border-radius: 28px; animation: fadeIn .5s var(--ease-out); }
.start-done[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; } }
.done-mark { width: 84px; height: 84px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin-bottom: 8px; box-shadow: 0 30px 70px -30px rgba(75,123,255,.8); animation: pop .6s var(--ease-out); }
@keyframes pop { from { transform: scale(.6); opacity: 0; } }
.done-mark svg { width: 40px; height: 40px; stroke: #fff; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .6s var(--ease-out) .35s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.start-done h3 { font: 600 30px/1.1 var(--display); letter-spacing: -.035em; }
.start-done p { color: var(--fg2); max-width: 40ch; }
.start-done .textlink { margin-top: 10px; }

/* Rechtsseiten */
.legal { padding: calc(var(--nav-h) + 96px) 0 120px; min-height: 100svh; }
.legal .index { margin-bottom: 20px; }
.legal h1 { font: 600 clamp(38px, 5vw, 64px)/1 var(--display); letter-spacing: -.05em; margin-bottom: 36px; }
.legal h2 { font: 600 17px/1.3 var(--display); letter-spacing: -.01em; margin: 30px 0 8px; }
.legal p { color: var(--fg2); font-size: 15px; margin-bottom: 10px; text-wrap: pretty; }
.legal a { color: var(--fg); border-bottom: 1px solid var(--line3); }
.legal-more { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); }
.footer-legal { padding: 30px 0; }
.footer-legal .foot-base { margin-top: 0; padding-top: 0; border-top: 0; }
html[lang="de"] .l-en, html[lang="en"] .l-de { display: none; }

.footer { padding: 72px 0 36px; border-top: 1px solid var(--d-line); color: var(--d-fg); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 32px; }
.foot-brand { display: grid; gap: 14px; justify-items: start; align-content: start; }
.foot-brand p { color: var(--d-fg2); font-size: 15px; }
.foot-mail { font: 500 13px var(--mono); border-bottom: 1px solid var(--d-line3); }
.foot-col { display: grid; gap: 10px; align-content: start; justify-items: start; }
.foot-col > span { font: 500 11px var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--d-fg3); margin-bottom: 6px; }
.foot-col a { font-size: 14px; color: var(--d-fg2); transition: color .25s; }
.foot-col a:hover { color: var(--d-fg); }
.foot-meta p { font-size: 13px; color: var(--d-fg3); line-height: 1.6; }
.foot-base { margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--d-line); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 13px; color: var(--d-fg3); flex-wrap: wrap; }
.foot-status { display: inline-flex; align-items: center; gap: 8px; }
.foot-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); animation: pulse 2.4s infinite; }
.totop { display: inline-flex; align-items: center; gap: 8px; color: var(--d-fg2); }
.totop svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
  .sec-head-split { grid-template-columns: 1fr; align-items: start; gap: 22px; }
  .sys-grid { grid-template-columns: 1fr; }
  .iso-wrap { height: 400px; }
  .sys-foot { grid-template-columns: 1fr; }
  .ops-map { order: 2; }
}
@media (max-width: 960px) {
  .nav-bar { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .burger { display: block; }
  .nav .btn-primary { display: none; }
  .mobile-menu { display: grid; gap: 4px; margin: 10px auto 0; width: min(var(--wrap), 100%); padding: 10px; border-radius: 22px; background: rgba(10,11,15,.94); box-shadow: inset 0 0 0 1px var(--d-line2); backdrop-filter: blur(20px); pointer-events: auto; animation: menuIn .3s var(--ease-out); color: var(--d-fg); }
  @keyframes menuIn { from { opacity: 0; transform: translateY(-6px); } }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a { padding: 12px 14px; border-radius: 12px; font-size: 16px; color: var(--d-fg2); }
  .mobile-menu a:hover { color: var(--d-fg); background: rgba(255,255,255,.05); }
  .mobile-menu a.btn { color: #0B0C10; background: #fff; margin-top: 6px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .card-tall { grid-row: auto; grid-column: span 2; grid-template-rows: auto auto; }
  .card-tall .il { min-height: 430px; }
  .steps { grid-template-columns: 1fr; }
  .model { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats li:nth-child(2) { border-right: 0; }
  .stats li:nth-child(n+3) { border-top: 1px solid var(--line2); }
  .stats li:nth-child(odd) { padding-left: 0; } .stats li:nth-child(even) { padding-left: 24px; }
  .team { grid-template-columns: 1fr; }
  .start { grid-template-columns: 1fr; }
  .start-copy { position: static; }
  .opts-3 { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --r-band: 32px; }
  .hero { padding-top: calc(var(--nav-h) + 72px); }
  .hero-h1 { font-size: clamp(48px, 15vw, 72px); }
  .hero-cta { flex-direction: column; gap: 16px; }
  .bento { grid-template-columns: 1fr; }
  .card-tall { grid-column: auto; }
  .card-tall .il { min-height: 430px; }
  .il { height: 220px; }
  .il-auto { grid-template-columns: 76px 40px 1fr; padding: 0 16px; }
  .il-doc { width: 76px; height: 104px; }
  .stats { grid-template-columns: 1fr; }
  .stats li { border-right: 0; padding-left: 0 !important; }
  .stats li:nth-child(n+2) { border-top: 1px solid var(--line2); }
  .row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-base { flex-direction: column; align-items: flex-start; }
  .opts-3 { grid-template-columns: 1fr 1fr; }
  .opts-2 { grid-template-columns: 1fr; }
  .opt > span { padding: 14px 12px 12px; }
  .start-nav { flex-wrap: wrap; }
  .person { padding: 24px 22px; }
  .faq summary { font-size: 16px; }
  .field input, .field textarea { font-size: 16px; }
  .steps-note { flex-direction: column; gap: 10px; }
  .iso { width: 240px; height: 158px; }
  .layer { transform: translateZ(calc(var(--i) * 36px)); }
}

html.no-anim *, html.no-anim *::before, html.no-anim *::after { transition: none !important; animation: none !important; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
