
:root {
  --dark: #014737;
  --deep: #0A5C4A;
  --tech: #0E7A61;
  --mint: #29B58F;
  --ink: #10211B;
  --muted: #5E6E68;
  --off: #F7FAF8;
  --white: #FFFFFF;
  --border: #DCE9E3;
  --shadow: 0 24px 80px rgba(16, 33, 27, 0.12);
  --shadow-soft: 0 14px 45px rgba(16, 33, 27, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 5%, rgba(41, 181, 143, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 12%, rgba(14, 122, 97, 0.13), transparent 24rem),
    linear-gradient(180deg, #fbfdfc 0%, var(--off) 42%, #ffffff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { background: rgba(41, 181, 143, 0.28); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--dark);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  width: min(1240px, calc(100% - 30px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(220, 233, 227, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 55px rgba(16, 33, 27, 0.08);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 55px rgba(16, 33, 27, 0.12);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
}
.brand span { display: grid; line-height: 1.1; }
.brand strong { font-size: 0.96rem; text-transform: uppercase; letter-spacing: 0.04em; }
.brand em { font-style: normal; color: var(--muted); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.main-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem;
  border-radius: 999px;
}
.main-nav a {
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.84rem;
  transition: color 180ms ease, background 180ms ease;
}
.main-nav a:hover { color: var(--dark); background: rgba(1, 71, 55, 0.06); }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.16rem;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(247, 250, 248, 0.9);
}
.language-switch a {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 900;
  font-size: 0.78rem;
}
.language-switch a.active { background: var(--dark); color: white; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 3rem;
  align-items: center;
  min-height: 780px;
  padding: 78px 0 54px;
}
.network-canvas {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  opacity: 0.48;
  pointer-events: none;
}
.hero-copy, .hero-visual { position: relative; z-index: 1; }
.eyebrow, .section-label, .mini-label {
  margin: 0 0 0.75rem;
  color: var(--deep);
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 6.85rem);
  line-height: 0.93;
  letter-spacing: -0.075em;
  max-width: 12ch;
}
.hero h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 6px;
  margin-top: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--dark), var(--mint));
}
.hero-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.26rem);
  margin: 1.55rem 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
  font-size: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--dark) 0%, var(--deep) 45%, var(--mint) 125%);
  box-shadow: 0 18px 40px rgba(1, 71, 55, 0.22);
}
.btn.secondary {
  color: var(--dark);
  border-color: rgba(1, 71, 55, 0.26);
  background: rgba(255, 255, 255, 0.72);
}
.btn.ghost {
  color: var(--deep);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.55);
}
.btn.light { background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.28); }

.hero-visual {
  min-height: 610px;
  display: grid;
  place-items: center;
}
.portrait-card {
  position: relative;
  width: min(430px, 86vw);
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(180deg, white, #eaf4f0);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.portrait-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 30px;
  z-index: 2;
  pointer-events: none;
}
.portrait-card img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.01);
}
.portrait-glow {
  position: absolute;
  inset: auto -25% -35% -25%;
  height: 48%;
  background: radial-gradient(circle, rgba(41, 181, 143, 0.26), transparent 70%);
  filter: blur(24px);
}
.floating-card {
  position: absolute;
  border-radius: 24px;
  padding: 1.1rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(14px);
}
.contact-card {
  right: 0;
  top: 90px;
  min-width: 230px;
  display: grid;
  gap: 0.55rem;
  color: white;
  background: linear-gradient(135deg, rgba(1, 71, 55, 0.96), rgba(10, 92, 74, 0.9));
}
.contact-card .mini-label { color: rgba(255, 255, 255, 0.76); margin: 0 0 0.3rem; }
.contact-card a { font-weight: 800; }
.contact-card a:hover { text-decoration: underline; }
.story-card {
  left: 0;
  bottom: 76px;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.82);
}
.story-card strong { display: block; color: var(--dark); font-size: 1.15rem; line-height: 1.1; }
.story-card p { margin: 0.55rem 0 0; color: var(--muted); }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -28px;
  position: relative;
  z-index: 3;
}
.stat-card {
  padding: 1.35rem;
  border: 1px solid rgba(220, 233, 227, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}
.stat-card strong {
  display: block;
  color: var(--dark);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-card span { display: block; margin-top: 0.55rem; color: var(--muted); font-weight: 800; }
.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
}
.logo-row span { color: var(--muted); font-size: 0.82rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; }
.logo-row a {
  padding: 0.55rem 0.78rem;
  border-radius: 999px;
  background: rgba(1, 71, 55, 0.055);
  color: var(--dark);
  font-weight: 900;
}

.profile-section, .strength-section, .ecosystem-section, .experience-section, .impact-section, .contact-section { padding: 92px 0 0; }
.section-heading {
  max-width: 730px;
  margin-bottom: 2rem;
}
.section-heading.wide { max-width: 870px; }
.section-heading h2, .community-section h2, .contact-copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.section-heading p:not(.section-label), .community-section p, .contact-copy p { color: var(--muted); font-size: 1.08rem; }
.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 1.2rem;
  align-items: stretch;
}
.profile-copy, .quote-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}
.profile-copy { padding: clamp(1.5rem, 3vw, 2.4rem); }
.profile-copy p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.profile-copy p + p { margin-top: 1.1rem; }
.quote-panel {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  color: white;
  background: linear-gradient(135deg, var(--dark), var(--deep));
}
.quote-panel::after {
  content: "";
  position: absolute;
  inset: auto -15% -25% 20%;
  height: 55%;
  background: radial-gradient(circle, rgba(41, 181, 143, 0.34), transparent 70%);
}
.quote-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.13);
  font-weight: 900;
  letter-spacing: -0.08em;
}
.quote-panel p { margin: 1.2rem 0 0.55rem; font-size: 1.7rem; line-height: 1.05; font-weight: 900; letter-spacing: -0.04em; }
.quote-panel small { color: rgba(255, 255, 255, 0.78); }

.strength-grid, .company-grid, .proof-grid {
  display: grid;
  gap: 1rem;
}
.strength-grid { grid-template-columns: repeat(5, 1fr); }
.company-grid { grid-template-columns: repeat(5, 1fr); }
.proof-grid { grid-template-columns: repeat(4, 1fr); }
.strength-card, .company-card, .proof-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.strength-card:hover, .company-card:hover, .proof-card:hover {
  transform: translateY(-5px);
  border-color: rgba(41, 181, 143, 0.42);
  box-shadow: 0 20px 58px rgba(16, 33, 27, 0.13);
}
.card-icon, .company-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--dark);
  background: linear-gradient(135deg, rgba(1, 71, 55, 0.1), rgba(41, 181, 143, 0.18));
}
.card-icon.small { width: 42px; height: 42px; }
.card-icon svg, .company-icon svg { width: 26px; height: 26px; fill: currentColor; }
.strength-card h3, .company-card h3, .proof-card h3 { margin: 1rem 0 0.55rem; line-height: 1.1; font-size: 1.04rem; }
.strength-card p, .company-card p, .proof-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.company-top { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  color: var(--deep);
  background: rgba(41, 181, 143, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}
.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--deep);
  font-weight: 900;
}
.text-link:hover { color: var(--mint); }

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  max-width: 930px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 116px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--dark), var(--mint));
  opacity: 0.32;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  align-items: start;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 109px;
  top: 0.9rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  border: 4px solid white;
  box-shadow: 0 0 0 1px rgba(1, 71, 55, 0.15);
}
.timeline-year {
  color: var(--dark);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.timeline-item div {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}
.timeline-item h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.timeline-item p { margin: 0; color: var(--muted); }
.proof-card { min-height: 245px; }
.proof-num {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  color: rgba(1, 71, 55, 0.1);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.community-section {
  margin-top: 92px;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 40%, rgba(41, 181, 143, 0.36), transparent 20rem),
    linear-gradient(135deg, var(--dark), #012b22 100%);
  box-shadow: 0 24px 76px rgba(1, 71, 55, 0.22);
}
.community-section .section-label, .community-section p { color: rgba(255, 255, 255, 0.78); }
.community-section h2 { max-width: 680px; }
.community-section p { max-width: 760px; margin: 1rem 0 0; }

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: 88px;
}
.contact-copy { padding-top: 1rem; }
.contact-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.contact-links a {
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  color: var(--dark);
  background: rgba(1, 71, 55, 0.07);
  font-weight: 900;
}
.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 0.4rem; color: var(--dark); font-weight: 900; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: white;
  outline: none;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(41, 181, 143, 0.13);
}
.site-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 32px;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
}
.site-footer p { margin: 0.6rem 0 0.25rem; font-weight: 800; }
.site-footer small { color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.55rem; align-content: start; }
.footer-links a { padding: 0.5rem 0.7rem; border-radius: 999px; background: rgba(1, 71, 55, 0.06); color: var(--deep); font-weight: 900; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero h1 { max-width: 14ch; }
  .hero-visual { min-height: 560px; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .strength-grid, .company-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-header { grid-template-columns: auto auto; border-radius: 26px; }
  .brand em { display: none; }
  .main-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem;
    background: rgba(247, 250, 248, 0.92);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { text-align: center; }
  .language-switch { justify-self: end; }
  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
  }
  .nav-toggle span { display: block; width: 18px; height: 2px; background: var(--dark); border-radius: 999px; }
  .hero { padding-top: 54px; }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; }
  .hero-visual { min-height: 520px; }
  .contact-card, .story-card { position: relative; inset: auto; width: min(430px, 100%); margin-top: -28px; }
  .hero-visual { display: flex; flex-direction: column; }
  .profile-grid, .contact-section, .community-section { grid-template-columns: 1fr; }
  .community-section .btn { width: auto; justify-self: start; }
  .timeline::before { left: 8px; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.4rem; padding-left: 2rem; }
  .timeline-item::before { left: 1px; }
}

@media (max-width: 620px) {
  .section-shell { width: min(100% - 26px, var(--max)); }
  .site-header { width: calc(100% - 20px); margin-top: 10px; }
  .brand strong { font-size: 0.82rem; }
  .language-switch a { width: 2rem; height: 2rem; }
  .hero h1 { font-size: clamp(2.75rem, 15vw, 4.3rem); }
  .hero-lead { font-size: 1rem; }
  .portrait-card { border-radius: 28px; }
  .stats-strip, .strength-grid, .company-grid, .proof-grid { grid-template-columns: 1fr; }
  .logo-row { align-items: stretch; }
  .logo-row a { width: 100%; }
  .profile-section, .strength-section, .ecosystem-section, .experience-section, .impact-section, .contact-section { padding-top: 70px; }
  .site-footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .network-canvas { display: none; }
}



/* Webdesign Anpassungen 2 */
.hero h1 {
  font-size: clamp(3.1rem, 6.4vw, 6rem);
  max-width: 11.5ch;
  overflow-wrap: anywhere;
}
.hero-lead,
.ai-copy p,
.profile-copy p,
.proof-card p,
.community-section > div > p:not(.section-label),
.contact-copy > p:not(.section-label) {
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.stat-card,
.strength-card,
.company-card {
  text-align: center;
}
.strength-card .card-icon,
.company-card .company-icon {
  margin-left: auto;
  margin-right: auto;
}
.company-grid {
  grid-template-columns: repeat(3, 1fr);
}
.company-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.company-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
}
.company-card .pill {
  color: #fff;
  background: var(--dark);
  white-space: normal;
  text-align: center;
  line-height: 1.2;
  padding: 0.42rem 0.72rem;
}
.company-card .text-link {
  justify-content: center;
  margin-top: auto;
  padding-top: 1rem;
}
.floating-card {
  z-index: 5;
  backdrop-filter: none;
}
.contact-card {
  top: auto;
  right: 0;
  bottom: 116px;
  background: linear-gradient(135deg, var(--dark), var(--deep));
  border-color: rgba(255, 255, 255, 0.82);
}
.story-card {
  left: 0;
  bottom: 38px;
  background: #fff;
  border-color: var(--border);
}
.portrait-card img {
  object-position: center center;
}
.ai-section {
  margin-top: 2rem;
  padding: clamp(1.45rem, 4vw, 2.65rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.92fr);
  gap: clamp(1.2rem, 4vw, 2.5rem);
  align-items: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 80% 24%, rgba(41, 181, 143, 0.32), transparent 18rem),
    linear-gradient(135deg, var(--dark), #012b22 100%);
  box-shadow: 0 24px 76px rgba(1, 71, 55, 0.22);
}
.ai-copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.1rem, 4vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.ai-copy p:not(.section-label) {
  max-width: 700px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}
.ai-section .section-label {
  color: var(--mint);
}
.ai-badge-panel {
  margin: 0;
  padding: 0.85rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), var(--shadow-soft);
}
.ai-badge-panel picture,
.ai-badge-panel img {
  display: block;
  width: 100%;
}
.ai-badge-panel img {
  border-radius: 20px;
  background: #ffd600;
}
.timeline {
  --timeline-axis: 116px;
}
.timeline::before {
  left: var(--timeline-axis);
  transform: translateX(-50%);
}
.timeline-item::before {
  left: var(--timeline-axis);
  width: 22px;
  height: 22px;
  border-width: 5px;
  transform: translateX(-50%);
}
@media (max-width: 1120px) {
  .company-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-section { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .hero h1 { max-width: 12ch; }
  .hero-visual {
    min-height: auto;
    gap: 1rem;
  }
  .contact-card,
  .story-card {
    position: relative;
    inset: auto;
    width: min(430px, 100%);
    margin-top: 0;
  }
  .contact-card { order: 2; }
  .story-card { order: 3; }
  .timeline { --timeline-axis: 9px; }
  .timeline-item::before { transform: translateX(-50%); }
}
@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.75rem);
    line-height: 0.96;
  }
  .company-grid { grid-template-columns: 1fr; }
  .ai-section { margin-top: 1.2rem; }
  .ai-copy h2 { font-size: clamp(2rem, 11vw, 3.25rem); }
}


/* Webdesign Anpassungen 3: kleinere Headlines und sauber skalierte AI-Zertifizierung */
.hero h1 {
  font-size: clamp(2.55rem, 4.8vw, 4.6rem);
  line-height: 0.99;
  letter-spacing: -0.058em;
  max-width: 12.4ch;
}
.section-heading h2,
.community-section h2,
.contact-copy h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.042em;
}
.section-heading {
  max-width: 680px;
  margin-bottom: 1.55rem;
}
.section-heading.wide {
  max-width: 780px;
}
.profile-section,
.strength-section,
.ecosystem-section,
.experience-section,
.impact-section,
.contact-section {
  padding-top: 74px;
}
.ai-section {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: clamp(1rem, 2.7vw, 1.9rem);
  padding: clamp(1.25rem, 2.9vw, 2.1rem);
}
.ai-copy h2 {
  max-width: 590px;
  font-size: clamp(1.75rem, 2.85vw, 2.95rem);
  line-height: 1.08;
  letter-spacing: -0.042em;
}
.ai-copy p:not(.section-label) {
  max-width: 590px;
  font-size: 1rem;
}
.ai-badge-panel {
  width: min(100%, 460px);
  justify-self: center;
  padding: clamp(0.55rem, 1vw, 0.75rem);
  border-radius: 24px;
}
.ai-badge-panel picture {
  display: block;
  width: 100%;
}
.ai-badge-panel img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 230px;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 17px;
  background: #ffd600;
}
@media (max-width: 1120px) {
  .hero h1 {
    font-size: clamp(2.35rem, 6.2vw, 3.95rem);
    max-width: 12.5ch;
  }
  .section-heading h2,
  .community-section h2,
  .contact-copy h2 {
    font-size: clamp(1.6rem, 4.4vw, 2.55rem);
  }
  .ai-section {
    grid-template-columns: 1fr;
  }
  .ai-badge-panel {
    justify-self: start;
    width: min(100%, 500px);
  }
  .ai-badge-panel img {
    max-height: 250px;
  }
}
@media (max-width: 860px) {
  .site-header {
    padding: 9px 10px;
    gap: 0.75rem;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .hero {
    padding-top: 42px;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 7.8vw, 3.15rem);
    line-height: 1.02;
  }
  .ai-copy h2 {
    font-size: clamp(1.55rem, 5.8vw, 2.35rem);
  }
}
@media (max-width: 620px) {
  .site-header {
    padding: 7px 8px;
    border-radius: 22px;
  }
  .brand {
    gap: 0.55rem;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .language-switch a {
    width: 1.85rem;
    height: 1.85rem;
  }
  .nav-toggle {
    width: 38px;
    height: 38px;
  }
  .hero h1 {
    font-size: clamp(1.95rem, 9.4vw, 2.7rem);
    line-height: 1.04;
    letter-spacing: -0.048em;
    max-width: 12.2ch;
  }
  .hero h1::after {
    width: 70px;
    height: 4px;
    margin-top: 0.8rem;
  }
  .section-heading h2,
  .community-section h2,
  .contact-copy h2 {
    font-size: clamp(1.45rem, 7vw, 2.05rem);
    line-height: 1.1;
  }
  .ai-section {
    margin-top: 1rem;
    padding: 1rem;
    gap: 0.9rem;
    border-radius: 24px;
  }
  .ai-copy h2 {
    font-size: clamp(1.45rem, 7.3vw, 2.05rem);
    line-height: 1.1;
  }
  .ai-copy p:not(.section-label) {
    font-size: 0.95rem;
  }
  .ai-badge-panel {
    width: 100%;
    max-width: 360px;
    padding: 0.45rem;
    border-radius: 20px;
  }
  .ai-badge-panel img {
    max-height: 180px;
    border-radius: 14px;
  }
  .profile-section,
  .strength-section,
  .ecosystem-section,
  .experience-section,
  .impact-section,
  .contact-section {
    padding-top: 56px;
  }
}
@media print {
  body { background: white; }
  .site-header, .hero-actions, .network-canvas, .contact-form, .site-footer { display: none !important; }
  .section-shell { width: 100%; }
  .hero { display: block; min-height: auto; padding: 0; }
  .hero h1 { font-size: 42px; max-width: none; }
  .hero-visual, .portrait-card, .floating-card { display: none; }
  .stats-strip, .strength-grid, .company-grid, .proof-grid, .profile-grid, .contact-section { display: block; }
  .stat-card, .strength-card, .company-card, .proof-card, .profile-copy, .quote-panel, .timeline-item div { box-shadow: none; break-inside: avoid; margin: 0 0 12px; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 10px; color: #555; }
}
