:root {
    --bg: #0b0b0f;
    --ink: #e9f2ff;
    --cyan: #15d0e8;
    /* passend zum Logo */
    --magenta: #ff1e9c;
    --muted: #8b94a3;
    --card: #12131a;
  }

  /* Reset / base */
  *,
  *:before,
  *:after {
    box-sizing: border-box
  }

  html,
  body {
    height: 100%
  }

  body {
    margin: 0;
    font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

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

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

  .wrap {
    width: min(1100px, 92vw);
    margin-inline: auto
  }

  /* Fullscreen canvas background */
  #bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: block;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(1200px 800px at 80% -10%, #1a0f1a 0%, rgba(26, 15, 26, 0) 60%), var(--bg);
  }

  /* Header */
  header {
    position: fixed;
    inset: 0 0 auto 0;
    height: 68px;
    z-index: 50;
    backdrop-filter: saturate(140%) blur(8px);
    background: linear-gradient(180deg, rgba(12, 12, 18, .85), rgba(12, 12, 18, .55));
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }

  .brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 700;
    letter-spacing: .5px
  }

  .brand .dot {
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--magenta), #7a0a57 60%);
    box-shadow: 0 0 10px var(--magenta), 0 0 26px rgba(255, 30, 156, .4)
  }

  .brand span {
    opacity: .9
  }

  .nav a.btn {
    margin-left: 1rem
  }

  /* Buttons */
  .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    background: linear-gradient(90deg, var(--magenta), var(--cyan));
    color: #07070b;
    box-shadow: 0 6px 22px rgba(21, 208, 232, .18), 0 0 0 1px rgba(255, 255, 255, .05) inset;
    transition: transform .15s ease, filter .2s ease;
    overflow: hidden;
    isolation: isolate;
  }

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

  .btn:active {
    transform: translateY(0)
  }

  .btn::after {
    content: "";
    position: absolute;
    inset: auto 50% 50% auto;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    transform: translate(-50%, -50%) scale(0);
    transition: transform .6s ease;
    pointer-events: none;
    mix-blend: overlay;
  }

  .btn.rippling::after {
    transform: translate(-50%, -50%) scale(120)
  }

  /* Hero */
  .hero {
    position: relative;
    padding-top: clamp(92px, 12vh, 140px);
    padding-bottom: 80px;
    min-height: 92vh;
    display: grid;
    place-items: center;
  }

  .hero-grid {
    display: grid;
    gap: 30px;
    text-align: center
  }

  .logo {
    width: min(520px, 72vw);
    margin-inline: auto;
    filter: drop-shadow(0 0 12px rgba(21, 208, 232, .35)) drop-shadow(0 0 18px rgba(255, 30, 156, .25));
    animation: pop-in .8s ease both .1s;
  }

  @keyframes pop-in {
    from {
      transform: translateY(12px) scale(.98);
      opacity: 0
    }

    to {
      transform: translateY(0) scale(1);
      opacity: 1
    }
  }

  h1 {
    margin: 0;
    font-size: clamp(32px, 5.4vw, 64px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: .5px;
    background: linear-gradient(90deg, var(--cyan), var(--magenta));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 24px rgba(21, 208, 232, .15);
  }

  .motto {
    color: var(--muted);
    font-size: clamp(16px, 2.5vw, 20px)
  }

  .cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: .5rem
  }

  /* Sections */
  section {
    padding: 84px 0;
    position: relative
  }

  section .kicker {
    color: var(--magenta);
    letter-spacing: .15em;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px
  }

  section h2 {
    font-size: clamp(26px, 4.2vw, 40px);
    margin: .35rem 0 1rem;
    line-height: 1.2
  }

  .muted {
    color: var(--muted)
  }

  /* Cards */
  .cards {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px
  }

  .card {
    grid-column: span 12;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
    position: relative;
    overflow: hidden;
    transform: translateY(6px);
    opacity: 0;
    transition: transform .6s cubic-bezier(.2, .75, .2, 1), opacity .6s;
  }

  .card.revealed {
    transform: translateY(0);
    opacity: 1
  }

  .card::after {
    content: "";
    position: absolute;
    inset: auto -30% -30% auto;
    width: 60%;
    height: 60%;
    background: radial-gradient(closest-side, rgba(21, 208, 232, .12), rgba(0, 0, 0, 0));
    filter: blur(20px);
    pointer-events: none
  }

  .card h3 {
    margin: .2rem 0 .25rem
  }

  .tag {
    display: inline-block;
    padding: .25rem .55rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999rem;
    font-size: 12px;
    color: var(--muted)
  }

  @media (min-width:760px) {
    .card.span-4 {
      grid-column: span 4
    }

    .card.span-6 {
      grid-column: span 6
    }
  }

  /* Marquee */
  .marquee {
    width: 100%;
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, .06);
    background: linear-gradient(180deg, #0d0e15, #0b0b0f);
  }

  .marquee .track {
    display: flex;
    gap: 36px;
    padding: 12px 0;
    white-space: nowrap;
    will-change: transform;
    animation: scroll 28s linear infinite;
  }

  @keyframes scroll {
    from {
      transform: translateX(0)
    }

    to {
      transform: translateX(-50%)
    }
  }

  .pill {
    line-height: 40px;
    padding: .3rem .8rem;
    border-radius: 999rem;
    border: 1px solid rgba(255, 255, 255, .12)
  }

  .pill.c {
    border-color: rgba(21, 208, 232, .5);
    color: var(--cyan)
  }

  .pill.m {
    border-color: rgba(255, 30, 156, .5);
    color: var(--magenta)
  }
 .tag.m {
    border-color: rgba(255, 30, 156, .5);
    color: var(--magenta)
  }
  /* Footer */
  footer {
    padding: 60px 0;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, .06)
  }

  .footgrid {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap
  }

  .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-right: 8px;
    background: #12131a;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: transform .15s ease
  }

  .social a:hover {
    transform: translateY(-2px)
  }

  /* A11y */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
  }



  /* Hamburger: default verstecken (Desktop) */
  .hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: #12131a;
    color: var(--ink);
    cursor: pointer;
  }

  /* Menü-Layout Desktop */
  .menu {
    display: flex;
    align-items: center;
    gap: .6rem;
  }

  .menu a.btn {
    margin-left: 1rem
  }

  /* Mobile Drawer */
  @media (max-width: 760px) {
    .hamburger {
      display: inline-flex
    }

    /* Header-Rechtsausrichtung: links Brand, rechts Burger */
    .nav {
      gap: .5rem
    }

    /* Drawer-Styles */
    .menu {
      position: fixed;
      left: 0;
      right: 0;
      top: 68px;
      z-index: 49;
      display: flex;
      flex-direction: column;
      gap: .6rem;
      padding: 12px 4.5vw 16px;
      background: linear-gradient(180deg, rgba(12, 12, 18, .98), rgba(12, 12, 18, .9));
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-8px);
      transition: max-height .28s ease, opacity .22s ease, transform .22s ease;
      pointer-events: none;
    }

    .menu.open {
      max-height: 240px;
      opacity: 1;
      transform: none;
      pointer-events: auto;
    }

    .menu a {
      padding: 10px 0;
      font-size: 20px;
      width: 50%;
      text-align: center
    }

    .menu a.btn {
      margin-left: 0
    }

    /* Body lock optional */
    body.menu-open {
      overflow: hidden
    }
  }