/* ============================================================
   ensolex — v2 (light, immersive)
   Light chrome · dark tech hero · amber accent
   ============================================================ */

/* ─── SELF-HOSTED FONTS (lokal, kein Google-CDN) ─────────────
   Sora (Headings/Wordmark) + Manrope (Body), latin-Subset.    */
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/sora-500.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/sora-600.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/sora-700.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/sora-800.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/manrope-400.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/manrope-500.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/manrope-600.woff2') format('woff2'); }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/manrope-700.woff2') format('woff2'); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #FFFFFF;
  --bg-2:      #F3F4F7;
  --bg-3:      #ECEEF2;
  --ink:       #131722;
  --ink-2:     #586173;
  --muted:     #899; /* fallback */
  --muted:     #6B7280;
  --accent:    #ECB210;
  --accent-d:  #C8950C;
  --accent-ink:#8A6B00; /* dunkles Amber für kleine Texte auf Hell (WCAG AA) */
  --accent-soft: rgba(236,178,16,0.14);
  --accent-line: rgba(236,178,16,0.40);
  --dark:      #0C111A;
  --dark-2:    #111A28;
  --line:      rgba(19,23,34,0.10);
  --line-2:    rgba(19,23,34,0.16);
  --card:      #FFFFFF;
  --shadow:    0 14px 40px rgba(19,23,34,0.09);
  --shadow-sm: 0 6px 20px rgba(19,23,34,0.07);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: var(--bg); color: var(--ink);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--accent); color: #1a1300; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; overflow-wrap: break-word; hyphens: auto; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; font-weight: 700; }
.accent { color: var(--accent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow.on-dark { color: var(--accent); }

/* layout */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.section { padding: 112px 0; position: relative; }
.section-sm { padding: 70px 0; position: relative; }
.section.gray { background: var(--bg-2); }
.section.dark { background: var(--dark); color: #EAEEF5; }
.section-head { max-width: 660px; margin-bottom: 3.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 0.9rem 0 1rem; }
.section-head p { color: var(--ink-2); font-size: 1.12rem; }
.section.dark .section-head p { color: #9FB0C6; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: 'Sora', sans-serif; font-size: 0.98rem; font-weight: 600;
  padding: 0.95rem 1.7rem; border-radius: 10px; cursor: pointer;
  text-decoration: none; border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.25s var(--ease); }
.btn-primary { background: var(--accent); color: #1a1300; box-shadow: 0 8px 22px rgba(236,178,16,0.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(236,178,16,0.42); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.25); }
.btn-ghost.on-dark:hover { border-color: #fff; }

/* ─── NAV (light) ───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 0.7rem 0;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(19,23,34,0.06); }
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 70px; width: auto; transition: height 0.3s var(--ease); }
.nav.scrolled .brand-logo { height: 56px; }
.nav-menu { display: flex; align-items: center; gap: 2.2rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-link {
  font-family: 'Sora', sans-serif; font-size: 0.96rem; font-weight: 500;
  color: var(--ink-2); text-decoration: none; transition: color 0.2s; position: relative; padding: 0.3rem 0;
}
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--ink); }
.nav-link[aria-current="page"]::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--accent); border-radius: 2px; }
.nav-side { display: flex; align-items: center; gap: 1.3rem; }
.lang { display: flex; align-items: center; gap: 0.35rem; font-family: 'Sora',sans-serif; font-size: 0.82rem; font-weight: 600; }
.lang a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.lang a.active { color: var(--accent); }
.lang span { color: var(--line-2); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 30px; height: 22px; position: relative; }
.nav-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s; }
.nav-toggle span:nth-child(1){ top: 0; } .nav-toggle span:nth-child(2){ top: 10px; } .nav-toggle span:nth-child(3){ top: 20px; }
.nav-toggle.open span:nth-child(1){ transform: translateY(10px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-10px) rotate(-45deg); }

/* ─── LOGO LOCKUP (SVG cube + Sora wordmark) ────────────── */
.logo { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; line-height: 1; }
.logo-cube { display: block; width: auto; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; justify-content: center; }
.logo-word { font-family: 'Sora', sans-serif; font-weight: 700; letter-spacing: -0.035em; color: var(--ink); line-height: 0.92; }
.logo-claim { font-family: 'Manrope', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--muted); white-space: nowrap; }
.logo.on-dark .logo-word { color: #fff; }
.logo.on-dark .logo-claim { color: #8FA0B8; }

/* nav: cube + wordmark, claim hidden */
.nav .logo-cube { height: 46px; transition: height 0.3s var(--ease); }
.nav.scrolled .logo-cube { height: 38px; }
.nav .logo-word { font-size: 2.05rem; transition: font-size 0.3s var(--ease); }
.nav.scrolled .logo-word { font-size: 1.75rem; }
.nav .logo-claim { display: none; }

/* footer: cube + wordmark + readable claim */
.footer .logo { display: inline-flex; padding: 0; }
.footer .logo-cube { height: 52px; }
.footer .logo-word { font-size: 2.15rem; }
.footer .logo-claim { font-size: 0.6rem; margin-top: 0.5em; }

@media (max-width: 560px) {
  .nav .logo-cube { height: 38px; }
  .nav .logo-word { font-size: 1.6rem; }
}

/* ─── HERO (dark, animated circuit) ─────────────────────── */
.hero { position: relative; background: var(--dark); color: #EAEEF5; overflow: hidden; padding: 200px 0 130px; }
.hero-circuit { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.9; }
.hero-glow { position: absolute; top: -10%; right: -5%; width: 900px; height: 760px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(236,178,16,0.16) 0%, transparent 60%); }
.hero-glow.two { left: -10%; right: auto; top: 30%; width: 700px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(45,120,220,0.12) 0%, transparent 62%); }
.hero .container { position: relative; z-index: 3; }
.hero-inner { max-width: 760px; }
.hero h1 { margin: 1.3rem 0 1.4rem; }
.hero h1 .accent { color: var(--accent); }
.hero-sub { font-size: 1.25rem; color: #AEBDD0; max-width: 600px; line-height: 1.6; margin-bottom: 2.4rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 2.5rem; margin-top: 4rem; padding-top: 2.2rem; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.trust-item .n { font-family: 'Sora',sans-serif; font-weight: 800; font-size: 2rem; color: var(--accent); line-height: 1; }
.trust-item .l { font-size: 0.9rem; color: #9FB0C6; margin-top: 0.3rem; max-width: 170px; }

/* circuit animation */
.trace { fill: none; stroke-linecap: round; }
.trace-base { stroke: rgba(255,255,255,0.10); stroke-width: 1.5; }
.pulse { stroke: var(--accent); stroke-width: 2; stroke-linecap: round; filter: drop-shadow(0 0 5px rgba(236,178,16,0.8));
  stroke-dasharray: 26 360; animation: dash 4.5s linear infinite; }
.pulse.cyan { stroke: #46B0E6; filter: drop-shadow(0 0 5px rgba(70,176,230,0.8)); }
@keyframes dash { to { stroke-dashoffset: -386; } }
.node { fill: #0C111A; stroke: rgba(255,255,255,0.18); stroke-width: 1.5; }
.node-live { fill: var(--accent); animation: nodepulse 2.8s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.node-live.cyan { fill: #46B0E6; }
@keyframes nodepulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ─── REVEAL / MOTION ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.left { transform: translateX(-40px); } .reveal.left.in { transform: none; }
.reveal.scale { transform: scale(0.94); } .reveal.scale.in { transform: none; }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}.d4{transition-delay:.32s}.d5{transition-delay:.4s}
.parallax { will-change: transform; }

/* ─── PILLARS / SERVICES (light cards) ──────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.feature {
  position: relative;
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 2.3rem 2rem;
  box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.feature .fnum { position: absolute; top: 1.7rem; right: 1.9rem; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--bg-3); letter-spacing: 0.02em; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent-line); }
.feature .ic { width: 56px; height: 56px; border-radius: 14px; background: var(--accent-soft); color: var(--accent-d);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; }
.feature .ic svg { width: 27px; height: 27px; }
.feature h3 { margin-bottom: 0.6rem; }
.feature p { color: var(--ink-2); font-size: 0.97rem; }
.feature .list { list-style: none; margin-top: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.feature .list li { font-size: 0.9rem; color: var(--ink-2); padding-left: 1.2rem; position: relative; }
.feature .list li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 6px; height: 6px; border-radius: 2px; background: var(--accent); }
.feature .no { font-family: 'Sora',sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--bg-3); }

/* ─── STEPS ─────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.step { position: relative; padding: 2.2rem 1.9rem; background: var(--card); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.step .num { font-family: 'Sora',sans-serif; font-weight: 800; font-size: 2.6rem; color: var(--bg-3); line-height: 1; }
.step .badge { display: inline-block; font-family: 'Sora',sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-d); background: var(--accent-soft); padding: 0.25rem 0.6rem; border-radius: 6px; margin: 0.8rem 0 0.9rem; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { color: var(--ink-2); font-size: 0.95rem; }
.step .out { margin-top: 1.2rem; padding: 0.7rem 0.9rem; background: var(--bg-2); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; font-size: 0.9rem; }
.step .out b { font-family:'Sora',sans-serif; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-d); display: block; margin-bottom: 0.15rem; }

/* ─── PROJECT CARDS ─────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.pcard { background: var(--card); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard .pv { aspect-ratio: 16/8; background: var(--dark); position: relative; overflow: hidden; }
.pcard .pv svg { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform 0.5s var(--ease); }
.pcard:hover .pv svg { transform: scale(1.05); }
.pcard .body { padding: 1.5rem 1.6rem; flex: 1; }
.pcard .tagrow { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.8rem; }
.pcard .tag { font-family:'Sora',sans-serif; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.status { font-family:'Sora',sans-serif; font-size: 0.64rem; font-weight: 700; text-transform: uppercase; padding: 0.22rem 0.55rem; border-radius: 6px; }
.status.live { color: #166B3D; background: rgba(39,174,96,0.14); }
.status.dev { color: var(--accent-d); background: var(--accent-soft); }
.status.research { color: var(--ink-2); background: var(--bg-3); }
.pcard h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.pcard p { color: var(--ink-2); font-size: 0.92rem; }
.pcard .foot { padding: 1rem 1.6rem; border-top: 1px solid var(--line); background: var(--bg-2); font-size: 0.88rem; color: var(--accent-d); font-weight: 600; }

/* ─── WHY (comparison) ──────────────────────────────────── */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.why-col { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); }
.why-col.hl { border-color: var(--accent); box-shadow: 0 16px 44px rgba(236,178,16,0.20); position: relative; }
.why-col.hl::before { content: 'ensolex'; position: absolute; top: -12px; left: 1.8rem; background: var(--accent); color: #1a1300; font-family:'Sora',sans-serif; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 6px; }
.why-col .h { font-family:'Sora',sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem; }
.why-col h4 { font-size: 1.15rem; margin-bottom: 1.1rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.why-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.92rem; color: var(--ink-2); }
.why-list li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.why-list li.no svg { color: #C0392B; } .why-list li.yes svg { color: var(--accent-d); }

/* ─── CTA BAND ──────────────────────────────────────────── */
.cta { background: var(--dark); color: #fff; border-radius: 24px; padding: 3.5rem; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta .glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(236,178,16,0.18), transparent 55%); pointer-events: none; }
.cta-text { position: relative; z-index: 2; max-width: 600px; }
.cta-text h2 { margin-bottom: 0.6rem; } .cta-text p { color: #AEBDD0; }
.cta .btn { position: relative; z-index: 2; }

/* ─── FOOTER (dark) ─────────────────────────────────────── */
.footer { background: var(--dark); color: #AEBDD0; padding: 4rem 0 2.4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.6rem; }
.footer-logo { height: 64px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.93rem; max-width: 320px; color: #8395AC; }
.footer h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; font-family:'Sora',sans-serif; }
.footer a { color: #AEBDD0; text-decoration: none; display: block; padding: 0.3rem 0; font-size: 0.93rem; transition: color 0.2s; }
.footer a:hover { color: var(--accent); }
.footer-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: #7C8AA0; }
.footer-bar .legal { display: flex; gap: 1.4rem; }
.footer-bar .legal a { display: inline; padding: 0; }

/* ─── FORM / LEGAL / etc (reused later) ─────────────────── */
.page-hero { padding: 170px 0 60px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.4rem,5vw,3.8rem); margin: 0.8rem 0 0.8rem; }
.page-hero p { color: var(--ink-2); font-size: 1.15rem; max-width: 640px; }
.page-hero .eyebrow { margin-bottom: 0.4rem; }

/* ─── DIVIDER ───────────────────────────────────────────── */
.divider { height: 1px; background: var(--line); }

/* ─── PROOF STRIP ───────────────────────────────────────── */
.proof-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.proof-strip .item { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 1.7rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.proof-strip .item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.proof-strip .mono { font-family: 'Sora', sans-serif; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; color: var(--accent-d); margin-bottom: 0.6rem; }
.proof-strip .item h4 { margin-bottom: 0.4rem; }
.proof-strip .item p { color: var(--ink-2); font-size: 0.92rem; }

/* ─── "DEIN PILOT?" ADD CARD ────────────────────────────── */
.pcard.add { align-items: center; justify-content: center; text-align: center; text-decoration: none; border-style: dashed; border-color: var(--line-2); background: var(--bg-2); padding: 2.4rem 1.6rem; box-shadow: none; }
.pcard.add:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.pcard.add .plus { font-family: 'Sora', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--accent); line-height: 1; display: block; margin-bottom: 0.3rem; }
.pcard.add h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.pcard.add p { color: var(--ink-2); font-size: 0.92rem; margin: 0 0 0.9rem; }
.pcard.add .chip { font-family: 'Sora', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--accent-d); }

/* ─── SPLIT (text + aside) ──────────────────────────────── */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.5rem; align-items: start; }
.split .lead { font-size: 1.12rem; color: var(--ink-2); line-height: 1.75; }
.split .lead strong { color: var(--ink); font-weight: 700; }
.aside-card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 2rem; box-shadow: var(--shadow-sm); }
.aside-card h4 { margin-bottom: 1.1rem; font-size: 1.1rem; }
.aside-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.aside-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.96rem; color: var(--ink-2); }
.aside-list li svg { width: 18px; height: 18px; color: var(--accent-d); flex-shrink: 0; margin-top: 2px; }

/* ─── TEAM ──────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 760px; margin: 0 auto; }
.team-card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 2rem; box-shadow: var(--shadow-sm); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar { width: 62px; height: 62px; border-radius: 14px; margin-bottom: 1.3rem; background: var(--accent-soft); color: var(--accent-d); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.5rem; }
.team-card h3 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.team-role { font-family: 'Sora', sans-serif; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-d); margin-bottom: 1rem; }
.team-card p { font-size: 0.95rem; color: var(--ink-2); }

/* ─── CONTACT ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; align-items: start; }
.contact-info .ci-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-info .ci-row:first-child { padding-top: 0; }
.ci-ic { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid var(--line-2); border-radius: 11px; display: flex; align-items: center; justify-content: center; color: var(--accent-d); }
.ci-ic svg { width: 19px; height: 19px; }
.ci-row .k { font-family: 'Sora', sans-serif; font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }
.ci-row .v { color: var(--ink); font-size: 1rem; }
.ci-row .v a { color: var(--ink); text-decoration: none; }
.ci-row .v a:hover { color: var(--accent-d); }
.legal-note { background: var(--bg-2); border-left: 3px solid var(--accent); border-radius: 0 10px 10px 0; padding: 1.1rem 1.3rem; font-size: 0.93rem; color: var(--ink-2); }
.legal-note a { color: var(--accent-d); }

/* ─── FORM ──────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-family: 'Sora', sans-serif; font-size: 0.7rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 0.4rem; font-weight: 600; }
.form input, .form textarea { width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px; color: var(--ink); font-family: 'Manrope', sans-serif; font-size: 0.97rem; padding: 0.85rem 1rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form input::placeholder, .form textarea::placeholder { color: var(--muted); }
.form input:focus, .form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.form textarea { resize: vertical; min-height: 130px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note { font-size: 0.83rem; color: var(--muted); }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.88rem; color: var(--ink-2); }
.consent input { width: auto; margin-top: 0.2rem; accent-color: var(--accent); }
.consent a { color: var(--accent-d); }

/* ─── LEGAL / PROSE ─────────────────────────────────────── */
.prose { max-width: 840px; }
.prose .updated { font-family: 'Sora', sans-serif; font-size: 0.78rem; color: var(--muted); margin-bottom: 2.5rem; }
.prose h2 { font-size: 1.45rem; margin: 2.6rem 0 0.8rem; }
.prose h3 { font-size: 1.1rem; margin: 1.6rem 0 0.5rem; }
.prose p, .prose li { color: var(--ink-2); font-size: 1rem; margin-bottom: 0.9rem; }
.prose ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { color: var(--accent-d); text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--ink); }
.prose address { font-style: normal; color: var(--ink-2); line-height: 1.8; }

@media (max-width: 880px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .team-grid, .proof-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 980px) {
  .grid-3, .steps, .cards, .why { grid-template-columns: 1fr; }
  /* Mobile: backdrop-filter auf .nav entfernen, sonst wird .nav zum Containing Block
     für das fixed .nav-menu und das Slide-in-Panel kollabiert auf die Navbar-Höhe. */
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .nav-menu { position: fixed; inset: 0 0 0 auto; width: min(330px,84vw); flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 1.6rem; padding: 6.5rem 2rem 2rem; background: #fff; border-left: 1px solid var(--line); box-shadow: -10px 0 40px rgba(19,23,34,0.12); transform: translateX(100%); transition: transform 0.35s var(--ease); }
  .nav-menu.open { transform: none; }
  .nav-links, .nav-side { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .nav-toggle { display: block; z-index: 110; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta { padding: 2.5rem; }
}
@media (max-width: 560px) {
  .container { padding: 0 1.3rem; }
  .section { padding: 76px 0; }
  .hero { padding: 150px 0 90px; }
  .hero-trust { gap: 1.6rem; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .pulse, .node-live { animation: none !important; }
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ─── A11y & State-of-the-art Ergänzungen ───────────────────── */
main { display: block; }

/* Skip-Link (Tastatur: zum Inhalt springen) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--dark); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: 0 0 8px 0; font-family: 'Sora', sans-serif; font-size: 0.9rem; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* Dunkleres Amber für kleine Texte/Links auf hellem Grund (WCAG AA ≥ 4.5:1).
   Brand-Amber bleibt für Buttons, dunklen Hero, Deko und große Headlines. */
.eyebrow { color: var(--accent-ink); }
.eyebrow.on-dark { color: var(--accent); }
.step .badge, .step .out b, .status.dev, .pcard .foot,
.proof-strip .mono, .pcard.add .chip, .team-role, .lang a.active,
.legal-note a, .consent a, .prose a, .ci-row .v a:hover { color: var(--accent-ink); }

/* Formular-Validierung erst nach Interaktion sichtbar */
.form input:user-invalid, .form textarea:user-invalid { border-color: #C0392B; }
.form input:user-invalid:focus, .form textarea:user-invalid:focus { box-shadow: 0 0 0 3px rgba(192,57,43,0.14); }
.form-status { font-size: 0.92rem; margin-top: 0.4rem; }
.form-status.err { color: #C0392B; }
.form-status.ok  { color: #1B7F4B; }
