/* =========================================================================
   Bust Arts — Mawave-inspired design system
   Growth & Automation Studio · Berlin 2026
   ========================================================================= */

/* -------- Fonts -------- */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
/* Boska (Fontshare) — Display-Headlines, lizenzfrei */
@import url('https://api.fontshare.com/v2/css?f[]=boska@400,500,700,900&display=swap');

/* -------- Tokens -------- */
:root {
  --bg: #FFFFFF;
  --bg-alt: #F7F7F5;
  --surface: #FFFFFF;
  --ink: #0A0A0A;
  --ink-soft: #6B6B6B;
  --border: #E8E8E6;
  --accent: #FFB84D;
  --accent-strong: #FFA726;
  --accent-ink: #0A0A0A;
  --hero-text: #0A0A0A;
  --hero-sub: #FFFFFF;
  --hero-shadow-1: rgba(255,255,255,0.45);
  --hero-shadow-2: rgba(255,255,255,0.35);
  --hero-sub-shadow: rgba(0,0,0,0.55);
  --venn-mark-ring: #FFFFFF;
  --radius-pill: 999px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 10, 10, 0.06);
  --shadow-lg: 0 20px 60px rgba(10, 10, 10, 0.10);
  --container: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === DARK MODE — edel, anthrazit, helle Schrift === */
[data-theme="dark"] {
  --bg: #0B0B0D;
  --bg-alt: #141418;
  --surface: #16161B;
  --ink: #F4F2EE;
  --ink-soft: #A7A5A0;
  --border: #28282E;
  --accent: #FFB84D;
  --accent-strong: #FFC76D;
  --accent-ink: #0A0A0A;
  --hero-text: #FFFFFF;
  --hero-sub: #F4F2EE;
  --hero-shadow-1: rgba(0,0,0,0.65);
  --hero-shadow-2: rgba(0,0,0,0.55);
  --hero-sub-shadow: rgba(0,0,0,0.7);
  --venn-mark-ring: #16161B;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
}

/* Smooth color transitions on theme switch */
html, body { transition: background-color 0.25s ease, color 0.25s ease; }

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

::selection { background: var(--accent); color: var(--ink); }

/* -------- Typography utility -------- */
.display {
  font-family: 'Boska', 'Inter Tight', 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--ink);
}
.mono {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--ink-soft);
}

/* -------- Container -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1180px;
  transition: box-shadow .3s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 10px 8px 16px;
  box-shadow: 0 2px 12px rgba(10,10,10,0.05);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .nav-inner { padding-left: 24px; gap: 16px; }
}
.nav.scrolled .nav-inner {
  box-shadow: 0 8px 30px rgba(10,10,10,0.08);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-brand > span:not(.nav-brand-mark) {
  white-space: nowrap;
}
@media (max-width: 520px) {
  .nav-brand > span:not(.nav-brand-mark) { display: none; }
  .nav-inner { padding-left: 12px; }
  .btn-pill { padding: 10px 6px 10px 14px; font-size: 14px; }
  .btn-pill .arrow { width: 28px; height: 28px; }
  .lang-btn { padding: 8px 8px; }
}
.nav-brand-mark {
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}
.nav-brand-mark svg { display: block; width: 100%; height: 100%; }

.nav-links {
  display: none;
  gap: 6px;
  margin-left: auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: var(--radius-pill);
  transition: background .2s var(--ease);
}
.nav-links a:hover { background: var(--bg-alt); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
@media (min-width: 768px) { .nav-right { gap: 10px; } }
@media (min-width: 960px) {
  .nav-right { margin-left: 0; }
}

.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: var(--radius-pill);
}
.lang-btn:hover { background: var(--bg-alt); }
.lang-btn::after {
  content: '';
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .2s var(--ease);
}
.lang-switcher.open .lang-btn::after { transform: rotate(-135deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 120px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .2s var(--ease);
  list-style: none;
  margin: 0;
}
.lang-switcher.open .lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-menu a {
  display: block;
  padding: 8px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 8px;
}
.lang-menu a:hover { background: var(--bg-alt); }
.lang-menu a.active { font-weight: 700; color: var(--ink); }

/* CTA pill */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 8px 12px 20px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-pill);
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: background .2s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-pill:hover { background: #C8F02A; }
.btn-pill .arrow {
  width: 32px; height: 32px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 50%;
  display: inline-grid; place-items: center;
  transition: transform .25s var(--ease);
}
.btn-pill:hover .arrow { transform: translateX(4px); }
.btn-pill .arrow svg { width: 14px; height: 14px; }

.btn-pill--lg {
  padding: 18px 10px 18px 28px;
  font-size: 18px;
}
.btn-pill--lg .arrow {
  width: 44px; height: 44px;
}
.btn-pill--lg .arrow svg { width: 18px; height: 18px; }

.btn-pill--ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
}
.btn-pill--ghost:hover { background: var(--bg-alt); }
.btn-pill--ghost .arrow {
  background: var(--ink);
  color: #fff;
}

/* Mobile nav toggle */
.nav-toggle {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}
.nav-toggle span {
  width: 18px; height: 1.5px; background: var(--ink);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
}

/* Mobile menu */
@media (max-width: 959px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 12px;
    flex-direction: column;
    gap: 2px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a {
    padding: 12px 16px;
    text-align: left;
  }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding: 200px 0 100px; }
}

/* Floating mascot disabled — Hummel ist jetzt der Hero selbst */
.hero-bee { display: none; }

.hero-eyebrow {
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface);
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(217, 255, 58, 0.3);
}


.hero h1 {
  font-family: 'Boska', 'Inter Tight', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 11vw, 148px);
  line-height: 0.93;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 auto;
  max-width: 14ch;
  color: #0A0A0A;
  text-shadow:
    0 0 18px rgba(255,255,255,0.45),
    0 0 60px rgba(255,255,255,0.35);
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal-word 0.9s var(--ease) forwards;
}
.hero h1 .word:nth-child(1) { animation-delay: 0.05s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.18s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.31s; }
.hero h1 .word:nth-child(4) { animation-delay: 0.44s; }

@keyframes reveal-word {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  margin: 32px auto 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  color: #FFFFFF;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 2px 8px rgba(0, 0, 0, 0.75),
    0 4px 24px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: reveal-word 0.8s var(--ease) 0.55s forwards;
}
@media (min-width: 768px) {
  .hero-sub { font-size: 20px; }
}

.hero-cta {
  margin-top: 36px;
  opacity: 0;
  animation: reveal-word 0.8s var(--ease) 0.7s forwards;
}

/* Trust row */
.trust-row {
  margin-top: 64px;
  opacity: 0;
  animation: reveal-word 0.8s var(--ease) 0.85s forwards;
}
.trust-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 44px;
  filter: grayscale(1);
  opacity: 0.55;
}
.trust-logos span {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust-logos .logo-chip {
  padding: 6px 14px;
  border: 1.5px solid currentColor;
  border-radius: var(--radius-pill);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================================
   SECTIONS — generic
   ========================================================================= */
.section {
  padding: 100px 0;
  position: relative;
}
@media (min-width: 768px) {
  .section { padding: 140px 0; }
}
.section--alt { background: var(--bg-alt); }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px; background: var(--ink-soft);
}

.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 72px;
}
.section-title {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-lede {
  margin: 24px auto 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* =========================================================================
   SERVICES
   ========================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  position: relative;
  background: var(--surface);
  padding: 40px 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .25s var(--ease);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--ease);
}
.card:hover { background: #FCFCFA; }
.card:hover::before { transform: scaleY(1); }

.card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}
.card h3 {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  margin-top: auto;
}

/* =========================================================================
   STATS — "THAT'S US"
   ========================================================================= */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}
.stat-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: 'Boska', 'Inter Tight', sans-serif;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.stat-badge:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.section--alt .stat-badge { background: var(--surface); }
.stat-badge .stat-value {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stat-badge .stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.stat-badge .stat-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}

/* =========================================================================
   HIGHLIGHTS / CASES
   ========================================================================= */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 320px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.section--alt .case-card { background: var(--surface); }
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.case-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.case-card h3 {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: none;
}
.case-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}
.case-tags {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}
.case-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 12px;
  background: var(--bg-alt);
  border-radius: var(--radius-pill);
}
.case-card:nth-child(1) .case-accent { background: var(--accent); }
.case-accent {
  position: absolute;
  top: 32px; right: 32px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink);
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
  max-width: 960px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  text-align: left;
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 0;
}
.faq-q-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.faq-q-icon::before,
.faq-q-icon::after {
  content: '';
  position: absolute;
  width: 14px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-q-icon { position: relative; }
.faq-q-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-q-icon {
  background: var(--accent);
  border-color: var(--accent);
}
.faq-item.open .faq-q-icon::after { opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), margin-top .35s var(--ease);
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 720px;
}
.faq-item.open .faq-a {
  max-height: 240px;
  margin-top: 18px;
}

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band {
  padding: 120px 0 140px;
  text-align: center;
  position: relative;
}
.cta-band .let-talk {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.15em;
  transition: color .3s var(--ease);
}
.cta-band .let-talk:hover { color: #000; }
.cta-band .let-talk .arrow-inline {
  display: inline-grid; place-items: center;
  width: 1.1em; height: 1.1em;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.6em;
  transition: transform .3s var(--ease);
}
.cta-band .let-talk:hover .arrow-inline { transform: translateX(0.1em) rotate(-45deg); }
.cta-band .let-talk .arrow-inline svg {
  width: 0.45em; height: 0.45em;
}
.cta-band .tagline {
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
}
.footer h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a {
  font-size: 15px;
  color: var(--ink);
  transition: color .15s var(--ease);
}
.footer a:hover { color: var(--ink-soft); }
/* Sprachauswahl horizontal (spart vertikalen Platz) */
.footer-langs { flex-direction: row !important; flex-wrap: wrap; gap: 8px 14px !important; align-items: center; }
.footer-langs li { display: flex; align-items: center; }
.footer-langs li:not(:last-child)::after { content: ""; width: 3px; height: 3px; border-radius: 50%; background: var(--border); margin-left: 14px; }
.footer-langs a { font-size: 14px; }
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.footer-brand-mark {
  width: 36px; height: 36px;
  display: inline-grid; place-items: center;
  color: var(--ink);
  flex-shrink: 0;
}
.footer-brand-mark svg { display: block; width: 100%; height: 100%; }

/* Footer mascot card — large bumblebee photo */
.footer-mascot {
  position: relative;
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  max-width: 340px;
  aspect-ratio: 16 / 11;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.footer-mascot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-mascot-cap {
  position: absolute;
  left: 14px; bottom: 12px;
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #fff;
  background: rgba(10,10,10,0.55);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.footer-note {
  color: var(--ink-soft);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.5;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =========================================================================
   REVEAL — only hidden when JS enabled (progressive enhancement)
   ========================================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero h1 .word { opacity: 1; transform: none; animation: none; }
  .hero-sub, .hero-cta, .trust-row { opacity: 1; animation: none; }
}

/* =========================================================================
   MISC
   ========================================================================= */
.inline-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 0.2em;
}

/* =========================================================================
   MOBILE DEFENSIVE FIXES (2026-04-19)
   Hard guardrails so the nav/arrows never explode on small screens.
   ========================================================================= */
@media (max-width: 640px) {
  /* Nav: make sure inner row wraps cleanly */
  .nav-inner { flex-wrap: nowrap; gap: 8px; }
  .nav-brand { font-size: 16px; }
  .nav-brand-mark { width: 26px; height: 26px; }

  /* Keep CTA pill compact in the nav bar */
  .nav .btn-pill {
    padding: 8px 4px 8px 14px;
    font-size: 13px;
    gap: 6px;
  }
  .nav .btn-pill .arrow {
    width: 26px; height: 26px;
  }
  .nav .btn-pill .arrow svg { width: 12px; height: 12px; }

  /* Lang switcher button — stays a single pill, never a list */
  .lang-btn { padding: 6px 10px; font-size: 11px; }
  .lang-menu {
    min-width: 100px;
    right: 0; left: auto;
  }

  /* Hero CTA arrow — cap size */
  .btn-pill--lg { padding: 14px 8px 14px 22px; font-size: 16px; }
  .btn-pill--lg .arrow { width: 36px; height: 36px; }
  .btn-pill--lg .arrow svg { width: 14px; height: 14px; }

  /* Big "Let's talk" band — the riesige Pfeil killer */
  .cta-band { padding: 80px 0 90px; }
  .cta-band .let-talk {
    font-size: clamp(44px, 13vw, 80px);
    gap: 0.12em;
  }
  .cta-band .let-talk .arrow-inline {
    width: 0.9em; height: 0.9em;
  }
  .cta-band .let-talk .arrow-inline svg { width: 0.38em; height: 0.38em; }

  /* Section paddings tighter */
  .section { padding: 70px 0; }
  .hero { padding: 120px 0 60px; }

  /* Hero headline — safer clamp */
  .hero h1 { font-size: clamp(44px, 13vw, 80px); max-width: 12ch; }
  .hero-sub { font-size: 16px; margin-top: 24px; }
  .trust-logos { gap: 24px; }
  .trust-logos span { font-size: 15px; }

  /* Section titles */
  .section-title { font-size: clamp(32px, 9vw, 56px); }
}

/* Extra-safe: prevent any arrow button from breaking layout */
.btn-pill, .btn-pill .arrow, .arrow-inline { max-width: 100%; }

/* Make sure lang-menu never shows by default (even without JS) */
.lang-menu {
  pointer-events: none;
}
.lang-switcher.open .lang-menu {
  pointer-events: auto;
}

/* Force white background on body — overrides any stale cached dark state */
html, body { background: var(--bg) !important; }

/* =========================================================================
   GRAIN / NOISE OVERLAY (Mawave-style)
   Subtle film grain over the whole page. SVG turbulence → inline data-URI.
   ========================================================================= */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.11;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* On large hero / CTA surfaces we allow the grain to be a touch stronger */
.hero::after,
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.8 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n2)'/></svg>");
  background-size: 180px 180px;
}

/* Respect reduced-motion / performance preference */
@media (prefers-reduced-motion: reduce) {
  body::before, .hero::after, .cta-band::after { opacity: 0.06; }
}

/* =========================================================================
   VENN — two-circle overlap with scroll-driven collapse (Mawave-style)
   ========================================================================= */
.venn {
  position: relative;
  background: var(--bg);
  /* No overflow:hidden here — it breaks position:sticky on .venn-stage */
}

/* Tall scroll container drives the sticky animation */
.venn-track {
  position: relative;
  height: 260vh;           /* long scroll distance */
}
.venn-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  display: block;
  overflow: hidden;
}

/* ===== Pixel-Hummel (Negativ, scroll-gesteuert, performant) =====
   Eigener Code, Lama-Lama-inspiriert.
   - Steuerung ueber --p (0 = oben/Anfang, 1 = runtergescrollt). Wird per JS gesetzt.
   - OBEN: komplett unsichtbar. Beim RUNTERSCROLLEN bauen sich die Pixel LANGSAM auf.
   - PIXEL bleiben KONSTANT gross (9px Punktraster, kein Skalieren).
   - Hummel als NEGATIV (invert). Organisch-unebener, weicher Rand.
   - PERFORMANCE: invert/grayscale/contrast werden in den Pixeln EINMAL gerastert.
     Beim Scrollen aendert sich NUR opacity -> rein GPU-Compositing, kein Repaint.
     Kein mix-blend-mode, keine opacity-transition (sonst Ruckeln beim Scroll). */
.venn-pixelhummel {
  --p: 0;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* eigener Compositing-Kontext fuer die Kinder */
  contain: layout paint;
}
.venn-hummel-defs { position: absolute; width: 0; height: 0; }

.venn-pixelhummel__layer {
  position: absolute;
  inset: -6%;
  background-image: url('../img/hummel-hero.jpg');
  background-size: cover;
  background-position: center 42%;
  /* NEGATIV + dunkler Tint. Wird zusammen mit der Maske EINMAL in eine GPU-Schicht gerastert. */
  filter: invert(1) grayscale(0.65) contrast(1.55) brightness(0.72);
  /* eigene GPU-Schicht: opacity-Aenderung => nur Re-Composite, kein Re-Paint des Filters/Maske */
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* Maske: konstantes 9px-Punktraster  x  organische Wolken-Form (weicher, unebener Rand).
   intersect -> Pixel nur in der weichen Wolke; Punktgroesse bleibt fix. */
.venn-pixelhummel__layer {
  -webkit-mask-image:
    radial-gradient(circle at center, #000 40%, transparent 52%),
    radial-gradient(58% 70% at 50% 48%, #000 30%, rgba(0,0,0,0.45) 60%, transparent 86%);
  mask-image:
    radial-gradient(circle at center, #000 40%, transparent 52%),
    radial-gradient(58% 70% at 50% 48%, #000 30%, rgba(0,0,0,0.45) 60%, transparent 86%);
  -webkit-mask-repeat: repeat, no-repeat;
  mask-repeat: repeat, no-repeat;
  -webkit-mask-size: 9px 9px, 120% 120%;
  mask-size: 9px 9px, 120% 120%;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
/* Scroll-Opacity: bis ~16% Scroll unsichtbar, dann sanft hoch. NUR opacity (GPU). */
.venn-pixelhummel__layer--a {
  opacity: clamp(0, calc((var(--p) - 0.16) * 1.9), 0.5);
}
/* Layer B: Pixel-Phase + Form leicht versetzt -> lebendiger, unebener Rand.
   KEIN mix-blend-mode (zu teuer beim Scrollen) -> nur leicht versetzte zweite Pixel-Lage. */
.venn-pixelhummel__layer--b {
  -webkit-mask-position: 4px 5px, 6px -4px;
  mask-position: 4px 5px, 6px -4px;
  opacity: clamp(0, calc((var(--p) - 0.24) * 1.4), 0.28);
}
/* Dark Mode: Negativ-Hummel darf staerker leuchten */
[data-theme="dark"] .venn-pixelhummel__layer {
  filter: invert(1) grayscale(0.35) contrast(1.4) brightness(1.05) sepia(0.3) saturate(1.4) hue-rotate(-10deg);
}
@media (prefers-reduced-motion: reduce) {
  /* statisch dezent, keine scrollgekoppelte Bewegung noetig */
  .venn-pixelhummel__layer--a { opacity: 0.22; }
  .venn-pixelhummel__layer--b { opacity: 0; }
}
@media (max-width: 640px) {
  .venn-pixelhummel__layer {
    -webkit-mask-size: 8px 8px, 130% 130%;
    mask-size: 8px 8px, 130% 130%;
  }
  /* Mobil: nur eine Pixel-Lage -> deutlich leichter fuer schwache GPUs */
  .venn-pixelhummel__layer--b { display: none; }
}

/* Each circle */
.venn-circle {
  position: absolute;
  left: 50%;
  width: min(78vw, 560px);
  max-height: 78vh;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(10, 10, 10, 0.05);
  display: grid;
  place-items: center;
  text-align: center;
  transform: translate(-50%, 0);
  /* CSS var --t goes from 0 (start: apart) → 1 (middle: overlapping) */
  --t: 0;
  will-change: transform;
  transition: none;
}

/* Both circles centered. translateY moves them apart (t=0) or together (t=1). */
.venn-circle--top {
  top: 50%;
  /* t=0: circles barely touching; t=1: deep overlap (but text still readable) */
  transform: translate(-50%, calc(-50% - (48% - 22% * var(--t))));
}
.venn-circle--bottom {
  top: 50%;
  transform: translate(-50%, calc(-50% + (48% - 22% * var(--t))));
}

/* Inner content */
.venn-circle .venn-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.venn-circle h2 {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 5.2vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0;
  padding: 0 4%;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.venn-circle--top h2 { color: var(--ink); }
.venn-circle--bottom h2 { color: var(--ink); }
.venn-circle h2 .hl {
  color: #0A0A0A;
  background: var(--accent);
  padding: 0 .15em;
  display: inline-block;
  line-height: 1.05;
}

/* The center brand mark (real Hummel photo) that appears in the intersection */
.venn-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(calc(0.3 + 0.7 * var(--t)));
  opacity: var(--t);
  width: clamp(96px, 16vw, 180px);
  height: clamp(96px, 16vw, 180px);
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 24px 60px rgba(10, 10, 10, 0.35),
    0 0 0 5px var(--venn-mark-ring),
    0 0 0 9px rgba(255,184,77,0.6);
  transition: none;
  will-change: transform, opacity;
}
.venn-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Caption below, shown when overlap is high */
.venn-caption {
  position: absolute;
  bottom: 6vh;
  left: 0; right: 0;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: calc(var(--t) * 0.9);
  transition: none;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .venn-track { height: 220vh; }
  .venn-circle { width: 82vw; max-height: 50vh; }
  .venn-circle--top {
    top: 50%;
    transform: translate(-50%, calc(-50% - (50% - 22% * var(--t))));
  }
  .venn-circle--bottom {
    top: 50%;
    transform: translate(-50%, calc(-50% + (50% - 22% * var(--t))));
  }
  .venn-circle h2 { font-size: clamp(28px, 9vw, 48px); }
  .venn-mark { width: 96px; height: 96px; }
  .venn-caption { bottom: 4vh; }
}

/* Reduced motion — show both circles static, side-by-side */
@media (prefers-reduced-motion: reduce) {
  .venn-track { height: auto; }
  .venn-stage { position: static; height: auto; padding: 80px 0; gap: 40px; grid-auto-flow: row; }
  .venn-circle { position: relative; top: auto; left: auto; transform: none; margin: 20px auto; }
  .venn-mark { position: relative; transform: none; opacity: 1; margin: 20px auto; }
}

/* =========================================================================
   HERO RAYS — Silent-Beams / Sunbeam sunburst behind hero
   White light rays fanning out from a single vanishing point.
   ========================================================================= */
.hero {
  /* enable stacking for rays + photo behind content */
  position: relative;
  isolation: isolate;
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
/* Hero photo — Bust Arts Hummel landet auf Knospe */
.hero .hero-bg__photo {
  position: absolute;
  inset: 0;
  background-image: url('../img/hummel-hero.jpg');
  background-size: cover;
  background-position: center center;
  filter: saturate(1.08) contrast(1.04) brightness(0.98);
  opacity: 0.95;
  mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, transparent 100%);
}
/* Warm sunlight rays — conic overlay, origin = sun (centered on horizon) */
.hero .hero-bg__rays {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 200vmax;
  height: 200vmax;
  transform: translate(-50%, -50%);
  background:
    conic-gradient(from 180deg at 50% 50%,
      rgba(255, 214, 140, 0) 0deg,
      rgba(255, 220, 150, 0.85) 3deg,
      rgba(255, 214, 140, 0) 6deg,
      rgba(255, 214, 140, 0) 14deg,
      rgba(255, 200, 120, 0.65) 17deg,
      rgba(255, 214, 140, 0) 20deg,
      rgba(255, 214, 140, 0) 32deg,
      rgba(255, 230, 160, 0.80) 35deg,
      rgba(255, 214, 140, 0) 38deg,
      rgba(255, 214, 140, 0) 48deg,
      rgba(255, 195, 110, 0.55) 51deg,
      rgba(255, 214, 140, 0) 54deg,
      rgba(255, 214, 140, 0) 68deg,
      rgba(255, 225, 155, 0.75) 71deg,
      rgba(255, 214, 140, 0) 74deg,
      rgba(255, 214, 140, 0) 88deg,
      rgba(255, 200, 120, 0.50) 91deg,
      rgba(255, 214, 140, 0) 94deg,
      rgba(255, 214, 140, 0) 110deg,
      rgba(255, 230, 160, 0.80) 113deg,
      rgba(255, 214, 140, 0) 116deg,
      rgba(255, 214, 140, 0) 132deg,
      rgba(255, 200, 120, 0.60) 135deg,
      rgba(255, 214, 140, 0) 138deg,
      rgba(255, 214, 140, 0) 150deg,
      rgba(255, 225, 155, 0.85) 153deg,
      rgba(255, 214, 140, 0) 156deg,
      rgba(255, 214, 140, 0) 360deg);
  opacity: 0.12;
  mix-blend-mode: screen;
  animation: rays-rotate 240s linear infinite;
}
/* Warm sun glow centered at ray origin (the actual sun) */
.hero .hero-bg__glow {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 90vmax;
  height: 90vmax;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side,
    rgba(255, 240, 190, 0.55) 0%,
    rgba(255, 200, 120, 0.25) 20%,
    rgba(255, 180, 100, 0.10) 45%,
    rgba(255, 180, 100, 0) 70%);
  opacity: 0.8;
  mix-blend-mode: screen;
}
/* Bottom soft fade to page bg so next section blends */
.hero .hero-bg__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, var(--bg) 85%);
}

/* Ensure hero content sits ABOVE the backdrop */
.hero .container { position: relative; z-index: 1; }

@keyframes rays-rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero .hero-bg__rays { animation: none; }
}

/* =========================================================================
   FOUNDERS — minimal replacement for the old stats block
   ========================================================================= */
.founders {
  padding: 100px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .founders { padding: 140px 0; }
}
.founders-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.founders-title {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 48px;
}
.founders-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  max-width: 860px;
  margin: 0 auto;
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-size: clamp(18px, 2.4vw, 24px);
  color: var(--ink);
}
.founders-list .founder {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1.4;
}
.founders-list .founder-name { font-weight: 800; letter-spacing: -0.01em; }
.founders-list .founder-role {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.9em;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.founders-list .sep {
  color: var(--border);
  font-weight: 300;
}
.founders-tag {
  margin-top: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.founders-tag::before,
.founders-tag::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--border);
}

@media (max-width: 640px) {
  .founders { padding: 70px 0; }
  .founders-list {
    flex-direction: column;
    gap: 20px;
    font-size: 18px;
  }
  .founders-list .founder {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .founders-list .sep { display: none; }
  .founders-list .founder-role { font-size: 11px; }
}

/* =========================================================================
   CTA CONTACT BUTTONS — in the "Let's talk" band
   ========================================================================= */
.cta-contacts {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px 14px 16px;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.03);
}
.cta-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.10);
}
.cta-contact .ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-grid; place-items: center;
  flex-shrink: 0;
  color: #fff;
}
.cta-contact .ico svg { width: 18px; height: 18px; }
.cta-contact--whatsapp .ico { background: #25D366; }
.cta-contact--telegram .ico { background: #229ED9; }
.cta-contact--email    .ico { background: var(--ink); color: var(--accent); }

.cta-contact--whatsapp:hover { border-color: #25D366; }
.cta-contact--telegram:hover { border-color: #229ED9; }
.cta-contact--email:hover    { border-color: var(--ink); background: var(--accent); }

.cta-contact .label-small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
  line-height: 1;
}
.cta-contact .label-main {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* Mobile: stack */
@media (max-width: 640px) {
  .cta-contacts {
    flex-direction: column;
    margin-top: 40px;
    gap: 10px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-contact {
    width: 100%;
    padding: 12px 20px 12px 14px;
  }
  .cta-contact .label-main { font-size: 15px; }
}

/* ==========================================================================
   THEME TOGGLE — Sun/Moon switch in nav
   ========================================================================== */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--ink);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  margin: 0 4px;
  padding: 0;
  transition: background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--accent); color: var(--accent-ink); transform: rotate(15deg); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: none; }

@media (max-width: 640px) {
  .theme-toggle { width: 32px; height: 32px; margin: 0 2px; }
  .theme-toggle svg { width: 16px; height: 16px; }
}

/* =========================================================================
   SERVICES ACCORDION — Lamalama-style expandable rows
   ========================================================================= */
.services-accordion {
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.svc-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.svc-header {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  align-items: center;
  gap: 16px 24px;
  padding: 28px 0;
  cursor: pointer;
  background: none;
  border: 0;
  text-align: left;
  transition: opacity .2s var(--ease);
}
.svc-header:hover { opacity: 0.75; }
@media (min-width: 768px) {
  .svc-header { grid-template-columns: 56px 1fr auto auto; padding: 36px 0; gap: 16px 32px; }
}
.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  line-height: 1;
}
.svc-name {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.svc-item.open .svc-name { color: var(--ink); }
.svc-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
  display: none;
}
@media (min-width: 640px) { .svc-cat { display: block; } }
.svc-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .3s var(--ease);
  color: var(--ink);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  font-family: 'Boska', 'Inter Tight', sans-serif;
}
.svc-item.open .svc-toggle {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}
/* Body */
.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-body-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 0 0 40px 0;
  padding-left: calc(48px + 24px);
}
@media (min-width: 768px) {
  .svc-body-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 80px;
    padding-left: calc(56px + 32px);
    padding-bottom: 52px;
  }
}
.svc-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
}
.svc-sublist {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-sublist li {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-sublist li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Dark mode: header bar and trust row text contrast tweaks */
[data-theme="dark"] .nav { background: rgba(22,22,27,0.85); border-color: var(--border); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
[data-theme="dark"] .nav-brand-mark { color: var(--accent); }
[data-theme="dark"] .footer-brand-mark { color: var(--accent); }

/* Dark mode: trust row + section backgrounds get the dark surface */
[data-theme="dark"] .trust-row { background: var(--bg-alt); border-color: var(--border); }
[data-theme="dark"] .footer-mascot-cap { background: rgba(255,255,255,0.12); color: #FFF; }

/* Dark mode: "AUTOMATION" / "GROWTH" highlight blocks already use --accent */
[data-theme="dark"] .venn-circle h2 { color: var(--ink); }

/* Dark mode hero glow gets warmer, less bright */
[data-theme="dark"] .hero .hero-bg__glow { opacity: 0.5; }

/* Dark mode: explicitly invert hero headline + ensure word spans inherit */
[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero h1 .word {
  color: #FFFFFF;
  text-shadow:
    0 2px 6px rgba(0,0,0,0.7),
    0 6px 28px rgba(0,0,0,0.55);
}

/* Dark mode: trust row + section text colors */
[data-theme="dark"] .trust-label,
[data-theme="dark"] .trust-row strong { color: var(--ink); }
[data-theme="dark"] .trust-row { color: var(--ink-soft); }

/* Dark mode: faq + sections inherit dark surfaces (most do already via tokens) */
[data-theme="dark"] .section { background: var(--bg); color: var(--ink); }
[data-theme="dark"] .section + .section { background: var(--bg-alt); }

/* Dark mode: faq separators */
[data-theme="dark"] .faq-item { border-color: var(--border); }

/* =========================================================================
   NAV BRAND — Bodenova.Agency styling
   ========================================================================= */
.nav-brand-text { white-space: nowrap; }
.nav-brand-tld {
  color: var(--accent-strong);
  font-weight: 600;
}
.footer-tld {
  color: var(--ink-soft);
  font-weight: 500;
}

/* =========================================================================
   HERO EYEBROW — live dot pulse
   ========================================================================= */
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.25);
  animation: pulse-live 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.1); }
}

/* Hero: two CTA buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.btn-pill--ghost {
  background: transparent;
  border: 1.5px solid rgba(10,10,10,0.25);
  color: var(--ink);
}
[data-theme="dark"] .btn-pill--ghost {
  border-color: rgba(244,242,238,0.25);
  color: var(--ink);
}
.btn-pill--ghost:hover { background: rgba(10,10,10,0.06); }
.btn-pill--ghost .arrow {
  background: var(--ink);
  color: #fff;
}

/* =========================================================================
   MARQUEE TICKER
   ========================================================================= */
.marquee-strip {
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .marquee-strip {
  background: #0B0B0D;
  border-color: var(--border);
}
.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
  flex-shrink: 0;
}
.marquee-content span {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0 24px;
}
[data-theme="dark"] .marquee-content span { color: var(--ink); }
.marquee-dot {
  color: var(--accent) !important;
  padding: 0 4px !important;
  font-weight: 900 !important;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-content { animation: none; }
}

/* =========================================================================
   STATS NUMBERS — large figure grid
   ========================================================================= */
.stats-section { background: var(--bg); }
.stats-numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .stats-numbers { grid-template-columns: repeat(4, 1fr); }
}
.stat-num-item {
  background: var(--surface);
  padding: 48px 36px;
  text-align: center;
  transition: background .2s var(--ease);
}
.stat-num-item:hover { background: var(--bg-alt); }
.stat-num-value {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}
.stat-num-sup {
  font-size: 0.45em;
  font-weight: 700;
  color: var(--accent-strong);
  margin-top: 0.15em;
  letter-spacing: 0;
}
.stat-num-label {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 16px;
}
.stat-num-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
@media (max-width: 640px) {
  .stat-num-item { padding: 32px 20px; }
  .stat-num-value { font-size: clamp(40px, 11vw, 60px); }
}

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.testimonials-section { background: var(--bg-alt); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 760px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: -0.04em;
}
.testimonial-quote {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  font-style: italic;
  padding-top: 32px;
  flex: 1;
}
.testimonial-meta {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testimonial-author {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.testimonial-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* Services grid: 7th card highlight */
.card--accent {
  background: var(--ink) !important;
}
.card--accent .card-num { color: var(--accent); }
.card--accent h3 { color: #fff; }
.card--accent p { color: rgba(244,242,238,0.65); }
.card--accent::before { background: var(--accent); transform: scaleY(1); }
[data-theme="dark"] .card--accent {
  background: var(--surface) !important;
  border: 1px solid var(--accent);
}
[data-theme="dark"] .card--accent h3 { color: var(--ink); }
[data-theme="dark"] .card--accent p { color: var(--ink-soft); }

/* ── CINEMATIC DARK SECTION ────────────────────────────────────────────────── */
.cinematic-section {
  position: relative;
  height: 90vh;
  min-height: 540px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.cinematic-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cinematic-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.4) brightness(0.35) contrast(1.15);
  transform: scale(1.04);
  transition: transform 8s ease;
}
.cinematic-section:hover .cinematic-photo img {
  transform: scale(1.0);
}
.cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,11,0.75) 0%, rgba(10,10,11,0.3) 60%, rgba(255,184,77,0.06) 100%);
}
.cinematic-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
  color: #fff;
}
.cinematic-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.cinematic-headline {
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 32px;
}
.cinematic-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 900;
}
.cinematic-body {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 44px;
}
.cinematic-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Boska', 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.cinematic-cta:hover {
  color: var(--accent);
}

/* === ported: hero scrim (legibility) === */
/* Soft scrim behind the headline for legibility over the photo.
   Light mode: brighten center so dark text reads. Dark mode: darken. */
.hero .hero-bg__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 46%,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.30) 35%,
    rgba(255,255,255,0.08) 60%,
    rgba(255,255,255,0) 80%);
  mix-blend-mode: screen;
  pointer-events: none;
}
html[data-theme="dark"] .hero .hero-bg__scrim {
  background: radial-gradient(ellipse 75% 60% at 50% 46%,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.42) 38%,
    rgba(0,0,0,0.15) 64%,
    rgba(0,0,0,0) 82%);
  mix-blend-mode: multiply;
}

/* =========================================================================
   WORK GRID
   ========================================================================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 8px;
}
@media (min-width: 880px) {
  /* Three equal cards in one row — compact photos */
  .work-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  .work-card--feature { grid-column: auto; grid-row: auto; }
}
@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; }
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s, border-color 0.4s;
  isolation: isolate;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 22px 50px -24px rgba(0,0,0,0.35);
}
.work-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.work-card--feature .work-media { aspect-ratio: 16 / 10; }
.work-media img,
.work-media .work-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.5s;
  filter: saturate(1.05);
}
.work-card:hover .work-media img,
.work-card:hover .work-media .work-video { transform: scale(1.06); }
/* Subtle gradient veil at bottom of media for legibility into body */
.work-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, var(--surface) 4%, transparent 100%);
  pointer-events: none;
}

.work-body { padding: 20px 22px 24px; }
.work-card--feature .work-body { padding: 20px 22px 24px; }
.work-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.work-body h3 {
  font-family: 'Boska', 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.work-card--feature .work-body h3 { font-size: 21px; }
.work-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.work-note {
  margin: 26px 0 0;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

/* =========================================================================
   LEGAL PAGES — Impressum & Datenschutz (designkonform)
   ========================================================================= */
.legal-page { padding: 140px 0 80px; }
.legal-page .container { max-width: 820px; }
.legal-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-strong); margin-bottom: 14px;
}
.legal-page h1 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800; font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 12px;
}
.legal-intro { color: var(--ink-soft); font-size: 17px; line-height: 1.6; margin-bottom: 40px; }
.legal-page h2 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700; font-size: 22px; letter-spacing: -0.01em;
  color: var(--ink); margin: 40px 0 12px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.legal-page h2:first-of-type { border-top: none; padding-top: 0; }
.legal-page h3 {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600; font-size: 17px; color: var(--ink);
  margin: 24px 0 8px;
}
.legal-page p, .legal-page li {
  font-size: 16px; line-height: 1.7; color: var(--ink);
}
.legal-page p { margin: 0 0 14px; }
.legal-page ul { margin: 0 0 16px; padding-left: 22px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 2px; }
.legal-page a:hover { color: var(--ink); }
.legal-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px 28px; margin: 0 0 24px;
}
.legal-card p { margin: 0 0 6px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-muted { color: var(--ink-soft); font-size: 14px; }
.legal-updated {
  margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  letter-spacing: 0.04em; color: var(--ink-soft);
}
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
