
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #0a0a0f;
    --bg2: #111118;
    --bg3: #16161f;
    --accent: #c8ff00;
    --accent2: #7b5fff;
    --text: #f0f0e8;
    --muted: #888880;
    --border: rgba(255,255,255,0.08);
    --card-bg: rgba(255,255,255,0.04);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  .cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1px solid rgba(200,255,0,0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.25s ease;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
  }
  nav.scrolled {
    background: rgba(10,10,15,0.9);
    backdrop-filter: blur(20px);
    border-color: var(--border);
  }
  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
  }
  .logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-cta {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.55rem 1.25rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.2s;
    letter-spacing: 0.03em;
  }
  .nav-cta:hover { background: var(--accent); color: var(--bg); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 3rem 5rem;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 30%, rgba(123,95,255,0.15) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 70%, rgba(200,255,0,0.08) 0%, transparent 60%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }

  .hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }

  .hero-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }
  .hero-title .accent { color: var(--accent); }
  .hero-title .outline {
    -webkit-text-stroke: 1px rgba(240,240,232,0.3);
    color: transparent;
  }

  .hero-sub-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }
  .hero-sub {
    max-width: 480px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(240,240,232,0.65);
    font-weight: 300;
  }
  .hero-sub strong { color: var(--text); font-weight: 500; }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--accent);
    color: var(--bg);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200,255,0,0.25); }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border: 1px solid var(--border);
    color: var(--muted);
    border-radius: 100px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-ghost:hover { border-color: var(--text); color: var(--text); }

  .hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
  }
  .scroll-line {
    width: 40px; height: 1px;
    background: var(--muted);
    animation: scrollPulse 2s ease infinite;
  }

  /* SLIDER TICKER */
  .ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    padding: 1rem 0;
    background: var(--bg2);
  }
  .ticker-inner {
    display: flex;
    gap: 0;
    animation: ticker 20s linear infinite;
    width: max-content;
  }
  .ticker-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 3rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
  }
  .ticker-dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }

  /* SECTIONS */
  section { padding: 7rem 3rem; }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
  }

  /* ABOUT */
  .about { background: var(--bg2); }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .about-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
  }
  .about-body {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(240,240,232,0.65);
    font-weight: 300;
  }
  .about-body p { margin-bottom: 1.25rem; }
  .about-body strong { color: var(--text); font-weight: 500; }

  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 1rem;
  }
  .stat {
    background: var(--bg3);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
  }
  .stat-label { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.05em; }

  /* CATEGORIES */
  .categories { background: var(--bg); }
  .cat-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
  }
  .cat-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 600px;
  }
  .cat-intro {
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.7;
    font-weight: 300;
  }

  .cat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .cat-card {
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: none;
  }
  .cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cat-card:hover { border-color: rgba(255,255,255,0.15); transform: translateY(-4px); }
  .cat-card:hover::before { opacity: 1; }

  .cat-card.starter {
    background: linear-gradient(135deg, rgba(123,95,255,0.12) 0%, rgba(10,10,15,0.8) 60%);
  }
  .cat-card.starter::before {
    background: linear-gradient(135deg, rgba(123,95,255,0.18) 0%, transparent 60%);
  }
  .cat-card.profi {
    background: linear-gradient(135deg, rgba(200,255,0,0.08) 0%, rgba(10,10,15,0.8) 60%);
  }
  .cat-card.profi::before {
    background: linear-gradient(135deg, rgba(200,255,0,0.14) 0%, transparent 60%);
  }

  .cat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
  }
  .cat-card-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    font-weight: 500;
  }
  .cat-card.starter .cat-card-label { color: #a08fff; }
  .cat-card.profi .cat-card-label { color: var(--accent); }

  .cat-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.2;
  }
  .cat-card-body {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 2rem;
  }

  .cat-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
  .tag {
    font-size: 0.72rem;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    letter-spacing: 0.03em;
  }
  .cat-card.starter .tag { background: rgba(123,95,255,0.15); color: #c4b8ff; border: 1px solid rgba(123,95,255,0.25); }
  .cat-card.profi .tag { background: rgba(200,255,0,0.08); color: #c8ff00; border: 1px solid rgba(200,255,0,0.2); }

  .cat-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: gap 0.2s;
  }
  .cat-card.starter .cat-arrow { color: #a08fff; }
  .cat-card.profi .cat-arrow { color: var(--accent); }
  .cat-card:hover .cat-arrow { gap: 0.85rem; }

  /* CTA SECTION */
  .cta-section {
    background: var(--bg2);
    text-align: center;
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
  }
  .cta-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(200,255,0,0.06) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
  }
  .cta-inner { position: relative; max-width: 700px; margin: 0 auto; }
  .cta-quote {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .cta-quote .hl { color: var(--accent); }
  .cta-body {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }
  .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* FOOTER */
  footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-copy { font-size: 0.8rem; color: var(--muted); }
  .footer-links { display: flex; gap: 2rem; list-style: none; }
  .footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; }
  .footer-links a:hover { color: var(--text); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.35s; }

  /* ===== BARRIEREFREIHEIT ===== */

  /* Skip Link */
  .skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 1rem; }

  /* Fokus-Styles für Tastaturnavigation */
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* Reduzierte Bewegung für Nutzer die das bevorzugen */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .ticker-inner { animation: none; }
    .hero-eyebrow, .hero-title, .hero-sub-wrapper, .hero-scroll { opacity: 1; transform: none; }
  }

  /* Hoher Kontrast Modus */
  @media (prefers-contrast: high) {
    :root {
      --border: rgba(255,255,255,0.4);
      --muted: #aaaaaa;
    }
    .cat-card, .stat, .park-card { border-width: 2px; }
  }

  /* ===== BARRIEREFREIHEIT ===== */
  /* Skip to main content */
  .skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-md);
    z-index: 9999;
    text-decoration: none;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 1rem; }

  /* Focus styles — sichtbar für Tastaturnutzer */
  a:focus-visible,
  button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* Erhöhter Kontrast für lesbare Texte */
  .about-body, .hero-sub, .cat-card-body, .cta-body {
    color: rgba(240,240,232,0.75);
  }

  /* Reduktion von Bewegung für Nutzer die das bevorzugen */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .ticker-inner { animation: none; }
    .reveal { opacity: 1; transform: none; }
  }

  /* Große Schrift Modus */
  @media (prefers-contrast: high) {
    :root {
      --muted: #bbbbaa;
      --border: rgba(255,255,255,0.2);
    }
  }
  @media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }

    /* NAV */
    nav { padding: 0.9rem 1.25rem; }
    .nav-links { display: none; }
    .nav-cta { display: none; }

    /* HERO */
    .hero { padding: 5.5rem 1.25rem 3rem; min-height: 85vh; justify-content: center; }
    .hero-title { font-size: clamp(2.6rem, 12vw, 3.8rem); margin-bottom: 1.5rem; line-height: 1; }
    .hero-eyebrow { font-size: 0.65rem; margin-bottom: 1rem; }
    .hero-sub-wrapper { flex-direction: column; gap: 1.5rem; }
    .hero-sub { font-size: 0.9rem; max-width: 100%; }
    .hero-actions { flex-direction: column; width: 100%; gap: 0.6rem; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; text-align: center; padding: 0.9rem 1rem; font-size: 0.9rem; }
    .hero-scroll { display: none; }

    /* TICKER */
    .ticker-item { font-size: 0.7rem; padding: 0 1.25rem; gap: 1rem; }

    /* SEO BLOCK */
    section[style*="padding:3rem 3rem 0"] { padding: 2rem 1.25rem 0 !important; }

    /* ABOUT */
    .about { padding: 3.5rem 1.25rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-title { font-size: 1.8rem; }
    .about-stats { grid-template-columns: 1fr 1fr; gap: 1px; }
    .stat { padding: 1.1rem; }
    .stat-num { font-size: 1.8rem; }
    .stat-label { font-size: 0.72rem; }

    /* CATEGORIES */
    .categories { padding: 3.5rem 1.25rem; }
    .cat-header { margin-bottom: 1.75rem; }
    .cat-title { font-size: 1.6rem; }
    .cat-grid { grid-template-columns: 1fr; gap: 0.85rem; }
    .cat-card { padding: 1.75rem 1.25rem; }
    .cat-card-title { font-size: 1.2rem; }
    .cat-card-body { font-size: 0.85rem; }
    .cat-icon { font-size: 2rem; margin-bottom: 1rem; }

    /* NORDDAMPF BLOCK */
    div[style*="grid-template-columns:repeat(3,1fr)"] {
      grid-template-columns: 1fr !important;
      gap: 0.75rem !important;
    }

    /* CTA SECTION */
    .cta-section { padding: 4rem 1.25rem; }
    .cta-quote { font-size: 1.5rem !important; }
    .cta-body { font-size: 0.9rem; }
    .cta-buttons { flex-direction: column; align-items: stretch; gap: 0.75rem; }
    .cta-buttons a { text-align: center; justify-content: center; }

    /* PAKETSHOP */
    section[id="paketshop"] { padding: 3.5rem 1.25rem !important; }
    div[style*="grid-template-columns:repeat(5,1fr)"] {
      display: grid !important;
      grid-template-columns: 1fr 1fr !important;
      gap: 0.65rem !important;
      max-width: 100% !important;
    }

    /* ANFAHRT / PARKING */
    div[style*="grid-template-columns:1fr 1fr"] {
      grid-template-columns: 1fr !important;
      gap: 0.85rem !important;
    }

    /* EINZUGSGEBIET */
    div[style*="display:flex;flex-wrap:wrap;gap:0.75rem"] {
      gap: 0.5rem !important;
    }

    /* FOOTER */
    footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.25rem; gap: 1.25rem; }
    .footer-links { flex-wrap: wrap; gap: 1rem; }

    /* GENERAL */
    section { padding: 3.5rem 1.25rem; }
    .section-label { font-size: 0.65rem; }

    /* INLINE PADDING OVERRIDES */
    div[style*="padding: 6rem 3rem"],
    div[style*="padding:6rem 3rem"] { padding: 3.5rem 1.25rem !important; }
    div[style*="padding: 5rem 3rem"],
    div[style*="padding:5rem 3rem"] { padding: 3rem 1.25rem !important; }
    div[style*="max-width:1200px"],
    div[style*="max-width:1100px"],
    div[style*="max-width:900px"] { padding: 0 !important; }

    /* COOKIE BANNER */
    #cookie-banner { left: 0.75rem !important; right: 0.75rem !important; bottom: 0.75rem !important; padding: 1.25rem !important; border-radius: 16px !important; }
  }

  @media (max-width: 480px) {
    .hero-title { font-size: clamp(2.2rem, 13vw, 3rem); }
    nav { padding: 0.85rem 1rem; }
    .logo { font-size: 1.15rem; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    div[style*="grid-template-columns:repeat(5,1fr)"] {
      grid-template-columns: 1fr 1fr !important;
    }
    div[style*="grid-template-columns:repeat(3,1fr)"] {
      grid-template-columns: 1fr !important;
    }
    .cat-card { padding: 1.5rem 1rem; }
    #cookie-banner { left: 0 !important; right: 0 !important; bottom: 0 !important; border-radius: 16px 16px 0 0 !important; }
  }
