/* CompanyDrive — Landingpage
   Systemschriften, keine externen Abhängigkeiten, kein Tracking. */

:root {
  --bg: #0a0e0f;
  --bg-soft: #0f1516;
  --surface: #131a1b;
  --surface-2: #182122;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #e8eeee;
  --text-muted: #9aa8a8;
  --text-dim: #74807f;
  --accent: #2dd4bf;
  --accent-soft: rgba(45, 212, 191, 0.12);
  --accent-line: rgba(45, 212, 191, 0.3);
  --radius: 14px;
  --radius-lg: 22px;
  --wrap: 1080px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Dezenter Farbverlauf am oberen Rand — der einzige Effekt auf der Seite. */
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 520px;
  background: radial-gradient(
    900px 420px at 72% -12%,
    rgba(45, 212, 191, 0.13),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

main { position: relative; z-index: 1; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; margin: 0; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #04211f;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  z-index: 100;
}
.skip:focus { left: 0; }

/* ---------- Kopfzeile ---------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 14, 15, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 650;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.brand:hover { text-decoration: none; }
.brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid var(--line-strong);
}

.site-nav { display: flex; gap: 22px; font-size: 15px; }
.site-nav a { color: var(--text-muted); }
.site-nav a:hover { color: var(--text); text-decoration: none; }

@media (max-width: 640px) {
  .site-nav { gap: 16px; font-size: 14px; }
  .site-nav .hide-s { display: none; }
}

@media (max-width: 400px) {
  .brand { font-size: 16px; gap: 9px; }
  .site-nav { gap: 14px; }
  .site-nav .hide-xs { display: none; }
}

/* ---------- Hero ---------- */

.hero { padding: 72px 0 24px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.3rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.lede {
  font-size: clamp(1.02rem, 2.1vw, 1.18rem);
  color: var(--text-muted);
  max-width: 34em;
  margin: 0 0 26px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}
.hero-facts li {
  font-size: 14px;
  color: var(--text-muted);
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 6px 14px;
}

.hero-note {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
  max-width: 40em;
}

.hero-shot { justify-self: center; }

/* ---------- Bildschirmfotos ---------- */

.shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid var(--line-strong);
  background: #f2f2f7;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

/* ---------- Abschnitte ---------- */

section { padding: 74px 0; position: relative; }
section + section { border-top: 1px solid var(--line); }

.sec-head { max-width: 40em; margin-bottom: 40px; }
.sec-head h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 680;
  margin-bottom: 14px;
}
.sec-head p { color: var(--text-muted); margin: 0; }

/* ---------- Zielgruppe ---------- */

.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
}
.audience h3 { font-size: 1rem; font-weight: 650; margin-bottom: 8px; }
.audience p { margin: 0; font-size: 15px; color: var(--text-muted); }

/* ---------- Funktionen ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature { background: var(--bg-soft); padding: 30px 28px; }

.feature .ic {
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

.feature h3 { font-size: 1.06rem; font-weight: 650; margin-bottom: 10px; }
.feature p { margin: 0; color: var(--text-muted); font-size: 15.5px; }
.feature p + p { margin-top: 10px; }

/* ---------- Galerie ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  align-items: start;
}

.gallery figure { margin: 0; }
.gallery figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}
.gallery figcaption b {
  display: block;
  color: var(--text);
  font-weight: 620;
  font-size: 15px;
  margin-bottom: 3px;
}

/* ---------- Datenschutz-Block ---------- */

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.privacy-list li {
  background: var(--surface);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  align-items: start;
}
.privacy-list svg { width: 22px; height: 22px; color: var(--accent); margin-top: 3px; }
.privacy-list b { display: block; font-weight: 620; margin-bottom: 4px; }
.privacy-list span { color: var(--text-muted); font-size: 15.5px; }

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: start;
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}
.card h3 { font-size: 1.06rem; font-weight: 650; margin-bottom: 10px; }
.card p { margin: 0 0 10px; color: var(--text-muted); font-size: 15.5px; }
.card p:last-child { margin-bottom: 0; }
.mail {
  font-size: 1.05rem;
  font-weight: 620;
  word-break: break-all;
}

/* ---------- Fußzeile ---------- */

.site-foot {
  border-top: 1px solid var(--line);
  padding: 40px 0 56px;
  position: relative;
  z-index: 1;
}
.site-foot .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: space-between;
  align-items: baseline;
}
.site-foot p { margin: 0; color: var(--text-dim); font-size: 14px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; }
.foot-links a { color: var(--text-muted); }

/* ---------- Rechtstexte ---------- */

.legal { padding: 56px 0 80px; max-width: 44em; }
.legal h1 {
  font-size: clamp(1.8rem, 4.4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.legal .stand {
  color: var(--text-dim);
  font-size: 14px;
  margin: 0 0 40px;
}
.legal h2 {
  font-size: 1.22rem;
  font-weight: 650;
  margin: 44px 0 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal h3 {
  font-size: 1.02rem;
  font-weight: 650;
  margin: 28px 0 10px;
  color: var(--text);
}
.legal p { margin: 0 0 16px; color: #cfd8d8; }
.legal ul { margin: 0 0 16px; padding-left: 22px; color: #cfd8d8; }
.legal li { margin-bottom: 9px; }
.legal strong { color: var(--text); font-weight: 620; }
.legal address {
  font-style: normal;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 0 0 22px;
  line-height: 1.8;
  color: #cfd8d8;
}
.legal .back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 15px;
}

/* ---------- Schmale Bildschirme ---------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-shot { max-width: 280px; }
  .audience { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .gallery {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 210px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 18px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
  }
  .gallery figure { scroll-snap-align: start; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 48px 0 8px; }
  section { padding: 56px 0; }
  .feature { padding: 26px 22px; }
  .privacy-list li { padding: 20px; }
}
