:root {
  --bg: #07090d;
  --bg-soft: #0c1017;
  --surface: #111720;
  --surface-strong: #171d27;
  --line: #263040;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f4f6f8;
  --muted: #a1acba;
  --subtle: #6f7a8b;
  --accent: #d9b86a;
  --accent-soft: rgba(217, 184, 106, 0.16);
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(217, 184, 106, 0.13), transparent 32rem),
    linear-gradient(180deg, #080b10 0%, var(--bg) 42%, #090b10 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: var(--max);
  min-height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  background: rgba(7, 9, 13, 0.76);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(217, 184, 106, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.nav a,
.header-actions a,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav a:hover,
.header-actions a:hover,
.site-footer a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  gap: 10px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.header-actions a {
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
}

.header-actions a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-only,
.nav-toggle {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 10px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 70px;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  min-height: 680px;
  margin: 0 auto;
  padding: 96px 24px 110px;
  overflow: hidden;
}

.hero-content,
.section-head > *,
.lab-copy,
.feature-panel,
.about-section {
  min-width: 0;
}

.hero::after {
  position: absolute;
  right: 26%;
  bottom: 92px;
  width: 220px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 184, 106, 0.72), transparent);
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 850px;
  margin-top: 18px;
  font-size: clamp(58px, 10vw, 132px);
  letter-spacing: -0.055em;
}

h1 span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(24px, 3vw, 40px);
  letter-spacing: -0.025em;
}

h2 {
  color: var(--text);
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 18px;
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-copy span {
  display: block;
  margin-top: 8px;
  color: var(--subtle);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #090b10;
  background: var(--text);
  border-color: var(--text);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

a[data-placeholder="true"] {
  cursor: not-allowed;
}

a[data-placeholder="true"]::after {
  content: " · folgt";
  display: inline-block;
  margin-left: 2px;
  color: var(--subtle);
  font-size: 0.82em;
  font-weight: 600;
}

.btn[data-placeholder="true"]::after {
  content: "";
  margin: 0;
}

.hero-visual {
  position: relative;
  width: min(390px, 100%);
  justify-self: end;
}

.logo-showcase {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(217, 184, 106, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 24%, rgba(217, 184, 106, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.logo-showcase::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  pointer-events: none;
}

.logo-showcase img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.section {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 24px;
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 48px;
  align-items: end;
}

.section-head h2,
.lab-copy h2,
.about-section h2 {
  margin-top: 14px;
}

.section-head p,
.lab-copy p,
.feature-panel p,
.about-section p {
  color: var(--muted);
}

.section-head > p,
.lab-copy p,
.about-section p {
  max-width: 640px;
  margin: 0;
}

.categories {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 54px;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 174px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
    var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 184, 106, 0.52);
  background:
    linear-gradient(145deg, rgba(217, 184, 106, 0.12), transparent),
    var(--surface);
}

.category-card span {
  font-size: 30px;
}

.sports-mark {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 15px);
  grid-template-rows: repeat(2, 15px);
  gap: 5px;
  width: 35px;
  height: 35px;
}

.sports-mark i {
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(217, 184, 106, 0.8);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(217, 184, 106, 0.36), rgba(255, 255, 255, 0.06));
}

.sports-mark i:nth-child(2) {
  transform: translateY(10px);
}

.sports-mark i:nth-child(3) {
  grid-column: 1 / 3;
  justify-self: center;
  transform: translateY(-2px);
}

.lab-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pill-grid span {
  min-height: 64px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 800;
}

.pill-grid .future {
  color: var(--muted);
  border-style: dashed;
  background: rgba(255, 255, 255, 0.03);
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-panel {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-panel h2 {
  margin-top: 14px;
}

.feature-panel p {
  margin: 20px 0 0;
}

.feature-panel .btn {
  margin-top: 26px;
}

.feature-panel-social {
  background:
    radial-gradient(circle at 100% 0, var(--accent-soft), transparent 19rem),
    var(--surface);
}

.about-section {
  text-align: center;
}

.about-section p {
  margin: 24px auto 0;
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 24px 58px;
  border-top: 1px solid var(--line);
}

.site-footer p,
.site-footer small {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.site-footer small {
  grid-column: 1 / -1;
}

.legal {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 88px 24px 130px;
}

.legal h1 {
  margin: 18px 0 34px;
  font-size: clamp(42px, 7vw, 76px);
  letter-spacing: -0.045em;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--muted);
  font-weight: 700;
}

.notice {
  padding: 24px;
  color: #e8d39a;
  background: rgba(217, 184, 106, 0.08);
  border: 1px dashed rgba(217, 184, 106, 0.62);
  border-radius: var(--radius);
}

.notice p {
  margin: 10px 0 0;
  color: var(--muted);
}

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 24px;
  letter-spacing: 0;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
}

.legal-section p + p {
  margin-top: 14px;
}

.legal-section a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(217, 184, 106, 0.55);
  text-underline-offset: 4px;
}

@media (max-width: 1100px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 10px;
    background: rgba(12, 16, 23, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
    border-radius: 6px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-only {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 86px;
    gap: 46px;
  }

  .hero-visual {
    width: min(320px, 70vw);
    justify-self: center;
  }

  .section-head,
  .lab-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .lab-section {
    gap: 38px;
  }

  .categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer small {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0 18px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .hero,
  .section,
  .site-footer,
  .legal {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: clamp(50px, 17vw, 72px);
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .categories {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 128px;
    padding: 20px;
  }

  .pill-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    padding: 32px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
