:root {
  --navy: #061a57;
  --navy-2: #0b2f85;
  --ink: #0b1220;
  --muted: #667085;
  --line: rgba(6, 26, 87, 0.12);
  --paper: #ffffff;
  --soft: #f5f7fb;
  --shadow: 0 20px 60px rgba(4, 19, 62, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(22, 66, 154, 0.08), transparent 34rem),
    radial-gradient(circle at 90% 85%, rgba(6, 26, 87, 0.06), transparent 30rem),
    var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 56px 24px 40px;
}

.hero-card {
  width: min(1080px, 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  padding: clamp(32px, 6vw, 76px);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--navy-2), transparent);
}

.logo-wrap {
  max-width: 880px;
  margin: 0 auto;
  animation: rise 700ms ease-out both;
}

.logo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.company-meta {
  margin-top: clamp(38px, 5vw, 58px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.meta-card {
  min-height: 118px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(245, 247, 251, 0.72);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.meta-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 26, 87, .24);
  box-shadow: 0 12px 30px rgba(4, 19, 62, .08);
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
}

.meta-card p,
.meta-card address {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  font-style: normal;
}

.meta-card a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}

.meta-card a:hover { text-decoration: underline; }

.footer {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer nav {
  display: flex;
  gap: 18px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}
.footer a:hover { color: var(--navy); }

.legal-page {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.legal-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.legal-topbar img {
  width: min(260px, 58vw);
  height: auto;
}

.back-link {
  color: var(--navy);
  text-decoration: none;
  font-weight: 650;
  white-space: nowrap;
}

.back-link:hover { text-decoration: underline; }

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 50px rgba(4, 19, 62, .08);
  padding: clamp(26px, 5vw, 54px);
}

.legal-card h1 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 62px);
  font-weight: 500;
  letter-spacing: -.035em;
}

.legal-card h2 {
  margin: 34px 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.legal-card p,
.legal-card li,
.legal-card address {
  color: #344054;
  line-height: 1.75;
  font-size: 15px;
  font-style: normal;
}

.legal-card ul { padding-left: 22px; }
.legal-card a { color: var(--navy); }
.legal-note {
  margin-top: 34px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 760px) {
  .hero { padding: 28px 16px 24px; }
  .hero-card { border-radius: 24px; padding: 34px 22px 28px; }
  .company-meta { grid-template-columns: 1fr; margin-top: 34px; }
  .meta-card { min-height: auto; }
  .footer {
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 22px;
  }
  .legal-page { width: min(100% - 28px, 900px); padding-top: 24px; }
  .legal-topbar { align-items: flex-start; }
}


/* Trianguliertes Marken-Mesh */
#network-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.98;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.865);
  backdrop-filter: blur(3px) saturate(110%);
  -webkit-backdrop-filter: blur(3px) saturate(110%);
  box-shadow:
    0 24px 70px rgba(4, 19, 62, 0.105),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.legal-card {
  position: relative;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.footer,
.legal-topbar {
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  #network-bg { opacity: 0.9; }
  .hero-card { background: rgba(255, 255, 255, 0.91); }
  .legal-card { background: rgba(255, 255, 255, 0.95); }
}

@media (prefers-reduced-motion: reduce) {
  #network-bg { opacity: 0.82; }
}
