:root {
  --color-bg: #05070b;
  --color-bg-elevated: #0c0f18;
  --color-bg-soft: #101420;
  --color-primary: #ff7a1a; /* Orange */
  --color-primary-soft: rgba(255, 122, 26, 0.15);
  --color-accent: #29a3ff; /* Blau */
  --color-text: #f4f5f9;
  --color-text-soft: #b2b7c5;
  --color-border: #202535;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.6);
  --shadow-subtle: 0 10px 40px rgba(0, 0, 0, 0.4);
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #161b2b 0, #05070b 40%, #020308 100%);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 7, 11, 0.95), rgba(5, 7, 11, 0.85), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 20% 0%, var(--color-primary) 0, #f3470c 40%, #15192b 100%);
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(255, 122, 26, 0.5), 0 10px 25px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 25%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotate(-18deg);
  border-top-color: transparent;
}

.logo-text-main {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.logo-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.nav a:hover {
  color: var(--color-text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn {
  appearance: none;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #ffb14a);
  color: #080707;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.8);
}

.btn-ghost {
  background: rgba(16, 20, 32, 0.9);
  color: var(--color-text-soft);
  border-color: rgba(104, 112, 140, 0.4);
}

.btn-ghost:hover {
  background: rgba(25, 32, 52, 0.95);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-text);
}

.btn-pill-soft {
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  background: rgba(17, 24, 39, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

.btn-pill-soft span.badge {
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 122, 26, 0.18), rgba(41, 163, 255, 0.18));
  color: var(--color-primary);
  border: 1px solid rgba(255, 122, 26, 0.7);
  font-weight: 600;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--color-text);
  padding: 0.2rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
  margin: 4px 0;
}

/* Hero */
.hero {
  padding: 3rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

/* Unscharfer Hallen-Hintergrund mit markierten Zonen */
.hero::before {
  content: "";
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 18% 30%, rgba(41, 163, 255, 0.28), transparent 55%),
    radial-gradient(circle at 80% 40%, rgba(255, 122, 26, 0.28), transparent 55%),
    radial-gradient(circle at 25% 80%, rgba(34, 197, 94, 0.22), transparent 60%),
    linear-gradient(to bottom right, rgba(15, 23, 42, 0.9), rgba(3, 7, 18, 0.98)),
    url("deine-halle-unscharf.jpg") center/cover no-repeat;
  filter: blur(3px);
  opacity: 0.55;
  z-index: -2;
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.72),
      rgba(15, 23, 42, 0.72) 1px,
      rgba(15, 23, 42, 0.32) 1px,
      rgba(15, 23, 42, 0.32) 16px
    );
  mix-blend-mode: soft-light;
  opacity: 0.9;
  z-index: -1;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  margin-bottom: 0.9rem;
}

.hero-title {
  font-size: clamp(2.3rem, 3vw + 1rem, 3.1rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
  letter-spacing: -0.03em;
}

.hero-title span.highlight {
  background: linear-gradient(135deg, #ffffff, #b0c2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0 0 1.4rem;
  font-size: 0.98rem;
  color: var(--color-text-soft);
  max-width: 34rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.6rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0%, #22c55e, #15803d);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 1.1rem;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.hero-screen {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top left, #1f2937 0, #05070b 55%, #020308 100%);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.3rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 161, 90, 0.25), transparent 55%),
    radial-gradient(circle at 110% 40%, rgba(41, 163, 255, 0.25), transparent 55%),
    radial-gradient(circle at -10% 100%, rgba(17, 24, 39, 0.8), transparent 60%);
  opacity: 0.9;
  z-index: -1;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.hero-card-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-soft);
}

.chip {
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
}

.chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(41, 163, 255, 0.33);
}

.hero-card-main {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: var(--shadow-subtle);
}

.hall-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.hall-name {
  font-weight: 600;
}

.hall-status-pill {
  font-size: 0.7rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.6);
  color: #bbf7d0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hall-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.65rem;
}

.stat-card {
  border-radius: 0.9rem;
  padding: 0.55rem 0.6rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.8);
  font-size: 0.68rem;
}

.stat-label {
  color: var(--color-text-soft);
  margin-bottom: 0.15rem;
}

.stat-value {
  font-weight: 600;
  font-size: 0.85rem;
}

.stat-pill {
  border-radius: 999px;
  padding: 0.06rem 0.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
}

.stat-pill.orange {
  background: rgba(248, 113, 113, 0.12);
  color: #fed7aa;
  border: 1px solid rgba(248, 113, 113, 0.7);
}

.stat-pill.green {
  background: rgba(22, 163, 74, 0.12);
  color: #bbf7d0;
  border: 1px solid rgba(22, 163, 74, 0.7);
}

.zones-list {
  margin-top: 0.85rem;
  border-radius: 0.9rem;
  border: 1px dashed rgba(148, 163, 184, 0.5);
  padding: 0.65rem 0.65rem 0.55rem;
  background: rgba(15, 23, 42, 0.85);
  font-size: 0.75rem;
}

.zones-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
  color: var(--color-text-soft);
  font-size: 0.72rem;
}

.zone-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.zone-pill {
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  font-size: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: rgba(15, 23, 42, 0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.zone-dot-1,
.zone-dot-2,
.zone-dot-3,
.zone-dot-4 {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.zone-dot-1 {
  background: #f97316;
}

.zone-dot-2 {
  background: #22c55e;
}

.zone-dot-3 {
  background: #3b82f6;
}

.zone-dot-4 {
  background: #eab308;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.7rem;
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

.hero-card-footer strong {
  color: #fee2e2;
}

.hero-badge-floating {
  position: absolute;
  right: -0.3rem;
  bottom: -0.3rem;
  background: radial-gradient(circle at 0 0, rgba(41, 163, 255, 0.8), rgba(5, 7, 11, 1));
  border-radius: 18px;
  padding: 0.45rem 0.7rem;
  font-size: 0.7rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(191, 219, 254, 0.6);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e0f2fe;
}

.hero-badge-floating span.icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.9rem;
}

/* Sections */
section {
  padding: 2.5rem 0 1.5rem;
}

.section-header {
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}

.section-subtitle {
  font-size: 0.92rem;
  color: var(--color-text-soft);
  margin: 0;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), #05070b);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 1px solid rgba(75, 85, 99, 0.8);
  box-shadow: var(--shadow-subtle);
  font-size: 0.88rem;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.9rem;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.feature-text {
  color: var(--color-text-soft);
}

/* How It Works */
.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: start;
}

.steps-list {
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: flex-start;
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--color-primary), #f97316);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.step-title {
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.step-text {
  color: var(--color-text-soft);
  font-size: 0.88rem;
}

.steps-highlight-card {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.2), transparent 60%),
    linear-gradient(145deg, rgba(15, 23, 42, 0.96), #020617);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: var(--shadow-subtle);
  font-size: 0.86rem;
  color: var(--color-text-soft);
}

.steps-highlight-card strong {
  color: #e0f2fe;
}

.steps-highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.mini-tag {
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.72rem;
  background: rgba(15, 23, 42, 0.85);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.4rem;
}

.pricing-card {
  border-radius: var(--radius-md);
  padding: 1.1rem 1.1rem 1.2rem;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.96), #020617);
  border: 1px solid rgba(75, 85, 99, 0.85);
  box-shadow: var(--shadow-subtle);
  font-size: 0.9rem;
}

.pricing-card.highlight {
  border-color: rgba(249, 115, 22, 0.9);
  box-shadow: 0 20px 40px rgba(248, 113, 22, 0.35);
  position: relative;
  overflow: hidden;
}

.pricing-card.highlight::before {
  content: "Beliebt";
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(249, 115, 22, 0.18);
  border-radius: 999px;
  padding: 0.18rem 0.6rem;
  border: 1px solid rgba(249, 115, 22, 0.9);
}

.pricing-name {
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.pricing-hint {
  font-size: 0.8rem;
  color: var(--color-text-soft);
  margin-bottom: 0.2rem;
}

.pricing-price {
  font-size: 1.1rem;
  margin: 0.2rem 0 0.6rem;
}

.pricing-price span {
  font-size: 0.85rem;
  color: var(--color-text-soft);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.pricing-features li {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
  align-items: flex-start;
}

.pricing-bullet {
  margin-top: 0.2rem;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-accent);
}

.pricing-footer {
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

/* FAQ & CTA */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.7rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.faq-item {
  border-radius: 0.95rem;
  border: 1px solid rgba(55, 65, 81, 0.8);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.75rem 0.9rem;
}

.faq-q {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.faq-a {
  color: var(--color-text-soft);
  font-size: 0.88rem;
}

.cta-box {
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.1rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.08), transparent 60%), #020617;
  border: 1px solid rgba(148, 163, 184, 0.7);
  box-shadow: var(--shadow-subtle);
  font-size: 0.9rem;
}

.cta-title {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.cta-text {
  color: var(--color-text-soft);
  margin-bottom: 0.7rem;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.cta-input {
  flex: 1;
  min-width: 180px;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.9);
  color: var(--color-text);
  font-size: 0.85rem;
  outline: none;
}

.cta-input::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.cta-note {
  font-size: 0.75rem;
  color: var(--color-text-soft);
}

/* Footer */
.footer {
  padding: 1.8rem 0 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), transparent 55%);
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--color-text-soft);
}

.footer-links a:hover {
  color: var(--color-text);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .steps-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-screen {
    order: -1;
  }

  .hero {
    padding-top: 2.2rem;
  }
}

@media (max-width: 780px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

@media (max-width: 520px) {
  .hero-title {
    font-size: 2.05rem;
  }

  .hero-card {
    padding: 1.05rem;
  }

  .hero-card-main {
    padding: 0.7rem;
  }

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

  .hero-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }
}
