:root {
  --bg: #0f172a;
  --bg-alt: #111c34;
  --card: #17233f;
  --border: #223055;
  --text: #e6ebf5;
  --text-dim: #94a3c4;
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.brand span { color: var(--accent); }

nav a {
  color: var(--text-dim);
  margin-left: 1.75rem;
  font-size: 0.92rem;
}
nav a:hover { color: var(--text); text-decoration: none; }

.hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem 3.5rem;
  text-align: center;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 1.1rem;
  letter-spacing: -0.01em;
}

.hero p.lead {
  color: var(--text-dim);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 2.2rem;
}

.cta-row {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #14140c;
}
.btn-primary:hover { text-decoration: none; opacity: 0.92; }

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { text-decoration: none; border-color: var(--accent); }

section.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}
.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 2.6rem;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
}

.card .step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

.card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--text-dim); font-size: 0.92rem; }

.divisions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.division {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  background: linear-gradient(180deg, var(--bg-alt), var(--card));
}
.division .role { color: var(--accent); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.3rem; }
.division h3 { margin: 0.1rem 0 0.5rem; }
.division p { margin: 0; color: var(--text-dim); font-size: 0.92rem; }

.status-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.status-panel .dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #f0b429;
  margin-right: 0.5rem;
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.18);
}

form.notify {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}
form.notify input[type="email"] {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  min-width: 260px;
  font-size: 0.95rem;
}
form.notify input[type="email"]:focus { outline: 2px solid var(--accent); }

footer {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}
footer a { margin: 0 0.6rem; }

@media (prefers-color-scheme: light) {
  /* Bewusst dark-only Design fuer diese Marke */
}

/* ---------------------------------------------------------------------- */
/* Responsive: Tablet & Mobile                                            */
/* ---------------------------------------------------------------------- */
@media (max-width: 720px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem 1.2rem;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.1rem;
    width: 100%;
  }
  nav a { margin-left: 0; }

  .hero { padding: 3.2rem 1.2rem 2.4rem; }
  section.section { padding: 2.4rem 1.2rem; }

  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; text-align: center; }

  form.notify { flex-direction: column; align-items: stretch; }
  form.notify input[type="email"] { min-width: 0; width: 100%; }

  .status-panel { padding: 1.4rem 1.2rem; }
}

@media (max-width: 420px) {
  h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.4rem; }
  .card, .division { padding: 1.2rem 1.1rem; }
}

/* Any table on the site (admin panel) should scroll horizontally rather
   than force the page to scroll sideways on narrow screens. */
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
