:root {
  --bg: #05070b;
  --panel: rgba(255, 255, 255, 0.065);
  --strong: rgba(255, 255, 255, 0.11);
  --cyan: #0ce7fd;
  --lime: #c0f700;
  --gold: #e0b243;
  --text: #ffffff;
  --muted: #bac3d2;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.44);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    linear-gradient(rgba(12, 231, 253, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 231, 253, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 10% 10%, rgba(224, 178, 67, 0.20), transparent 28%),
    radial-gradient(circle at 75% 30%, rgba(12, 231, 253, 0.16), transparent 35%),
    radial-gradient(circle at 48% 74%, rgba(192, 247, 0, 0.10), transparent 36%),
    linear-gradient(145deg, #101827 0%, #070b12 50%, #020305 100%);
  background-size: 64px 64px, 64px 64px, auto, auto, auto, auto;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(1500px, calc(100vw - 32px));
  margin: auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.brand span {
  padding: 8px 12px;
  border: 1px solid rgba(224, 178, 67, 0.8);
  border-radius: 10px;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 0 24px rgba(224, 178, 67, 0.25);
}

nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(12, 231, 253, 0.12);
  font-weight: 800;
}

nav a:hover {
  color: #ffffff;
  border-color: rgba(12, 231, 253, 0.45);
}

main,
footer {
  width: min(1500px, calc(100vw - 32px));
  margin: auto;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
  padding: 32px 0 18px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--cyan);
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(12, 231, 253, 0.4);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(56px, 8vw, 130px);
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 0 35px rgba(12, 231, 253, 0.25);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.versus {
  display: inline-flex;
  padding: 12px 22px;
  border: 1px solid rgba(12, 231, 253, 0.5);
  border-radius: 999px;
  color: var(--lime);
  font-size: clamp(28px, 3.5vw, 58px);
  font-weight: 950;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.34);
  box-shadow: 0 0 26px rgba(12, 231, 253, 0.18);
}

.lead,
.panel p,
.timeline p,
.team p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.meta div,
.panel,
.team,
.timeline,
.examples .grid div,
.accordion details,
.streams a {
  border: 1px solid rgba(12, 231, 253, 0.20);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
}

.meta div {
  padding: 16px;
}

.meta span {
  display: block;
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.meta b {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #061018;
  font-weight: 950;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 28px rgba(12, 231, 253, 0.25);
}

.btn:not(.primary) {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(224, 178, 67, 0.4);
}

.btn.small {
  min-height: 42px;
  font-size: 15px;
}

.hero-image {
  margin: 0;
  padding: 10px;
  border-radius: 26px;
  border: 1px solid rgba(224, 178, 67, 0.48);
  background: linear-gradient(135deg, rgba(12, 231, 253, 0.12), rgba(224, 178, 67, 0.12));
  box-shadow: var(--shadow), 0 0 60px rgba(12, 231, 253, 0.18);
}

.hero-image img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.panel {
  padding: 28px;
}

.countdown-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin: 34px 0;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 12px;
}

.countdown div {
  min-width: 110px;
  padding: 18px 16px;
  text-align: center;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(192, 247, 0, 0.25);
}

.countdown b {
  display: block;
  color: var(--lime);
  font-size: clamp(34px, 4vw, 66px);
  line-height: 1;
  text-shadow: 0 0 22px rgba(192, 247, 0, 0.45);
}

.countdown span {
  color: var(--muted);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.grid {
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}

.two {
  grid-template-columns: repeat(2, 1fr);
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.five {
  grid-template-columns: repeat(5, 1fr);
}

.textlink {
  color: var(--lime);
  font-weight: 900;
  text-decoration: none;
}

.section-head {
  margin: 54px 0 22px;
}

.team {
  padding: 28px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.team img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.18));
}

.team h3 {
  font-size: 44px;
  text-transform: uppercase;
}

.team p {
  flex: 1;
}

.axa {
  border-color: rgba(224, 178, 67, 0.45);
}

.cry {
  border-color: rgba(192, 247, 0, 0.38);
}

.ky {
  border-color: rgba(12, 231, 253, 0.38);
}

/* Schlanker Ablauf-Bereich */

.timeline {
  padding: 10px 14px;
  margin-bottom: 34px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.timeline-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #061018;
  background: linear-gradient(135deg, var(--gold), var(--lime));
  font-weight: 950;
  font-size: 14px;
  white-space: nowrap;
}

.timeline-item h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.1;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  max-width: 900px;
}

.examples .grid div {
  min-height: 150px;
  padding: 20px;
}

.examples b {
  display: block;
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 12px;
}

.examples span {
  color: var(--muted);
  line-height: 1.45;
}

.accordion {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.accordion details {
  overflow: hidden;
}

.accordion summary {
  cursor: pointer;
  padding: 20px 24px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion details[open] summary {
  color: var(--lime);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.accordion p,
.accordion ul {
  margin: 0;
  padding: 20px 24px 24px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 17px;
}

.accordion ul {
  padding-top: 0;
  padding-left: 48px;
}

.streams {
  grid-template-columns: repeat(4, 1fr);
}

.streams a {
  min-height: 140px;
  padding: 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.streams b {
  font-size: 28px;
}

.streams span {
  color: var(--cyan);
  font-weight: 900;
}

.streams .mod {
  border-color: rgba(224, 178, 67, 0.55);
  background: linear-gradient(145deg, rgba(224, 178, 67, 0.14), rgba(12, 231, 253, 0.06));
}

footer {
  padding: 30px 0 48px;
  color: var(--muted);
  border-top: 1px solid rgba(12, 231, 253, 0.2);
}

@media (max-width: 1050px) {
  .hero,
  .two {
    grid-template-columns: 1fr;
  }

  .three,
  .five,
  .streams {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .countdown {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .meta,
  .three,
  .five,
  .streams,
  .countdown {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 6px;
  }

  .timeline-item span {
    justify-self: start;
  }

  .timeline-item h3 {
    font-size: 22px;
  }

  .timeline-item p {
    font-size: 15px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 36px;
  }
}