.elementor-3740 .elementor-element.elementor-element-499b21f{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */:root {
      --bg: #080b12;
      --panel: rgba(255,255,255,0.06);
      --panel-strong: rgba(255,255,255,0.12);
      --line: rgba(255,255,255,0.14);
      --text: #f5f7fb;
      --muted: #aeb7c8;
      --accent: #5BE1E6;
      --accent-2: #65ffa3;
      --radius: 28px;
      --shadow: 0 24px 80px rgba(0,0,0,0.45);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      font-family: Inter, system-ui, sans-serif;
      background:
        radial-gradient(circle at 10% 10%, rgba(91,225,230,0.18), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(101,255,163,0.14), transparent 30%),
        var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, black, transparent 78%);
      pointer-events: none;
      z-index: -1;
    }

    .container {
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
    }

    .nav {
      position: sticky;
      top: 16px;
      z-index: 50;
      margin: 16px auto 0;
      width: min(1220px, calc(100% - 36px));
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(8,11,18,0.65);
      backdrop-filter: blur(18px);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .brand-dot {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: conic-gradient(from 180deg, var(--accent), var(--accent-2), var(--accent));
      box-shadow: 0 0 30px rgba(91,225,230,0.45);
    }

    .nav-links {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .nav-links a {
      padding: 8px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      transition: 0.25s ease;
      text-decoration: none;
    }

    .nav-links a:hover {
      background: var(--panel-strong);
      color: var(--text);
    }

    .hero {
      padding: 120px 0 80px;
    }

    .eyebrow {
      width: fit-content;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.05);
      color: var(--muted);
      margin-bottom: 24px;
      font-size: 14px;
    }

    h1 {
      font-size: clamp(48px, 8vw, 98px) !important;
      line-height: 0.92;
      letter-spacing: -0.08em;
      margin-bottom: 26px;
      max-width: 980px;
    }

    h2 {
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1;
      letter-spacing: -0.06em;
      margin-bottom: 18px;
    }

    h3 {
      font-size: 24px;
      letter-spacing: -0.04em;
      margin-bottom: 12px;
    }

    p {
      color: var(--muted);
      line-height: 1.7;
    }

    .lead {
      max-width: 760px;
      font-size: clamp(18px, 2vw, 22px);
      margin-bottom: 36px;
    }

    .search-box {
      position: relative;
      max-width: 520px;
    }

    .search-box input {
      width: 100%;
      padding: 18px 22px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.06);
      color: var(--text);
      font-size: 16px;
      outline: none;
      backdrop-filter: blur(14px);
    }

    .search-box input::placeholder {
      color: var(--muted);
    }

    section {
      padding: 80px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 34px;
    }

    .section-head p {
      max-width: 520px;
    }

    .glossar-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .term-card {
      position: relative;
      padding: 28px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.055);
      overflow: hidden;
      transition: 0.3s ease;
      box-shadow: 0 14px 60px rgba(0,0,0,0.22);
    }

    .term-card:hover {
      transform: translateY(-8px);
      border-color: rgba(91,225,230,0.4);
      background: rgba(255,255,255,0.08);
    }

    .term-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(91,225,230,0.18), transparent 40%);
      opacity: 0;
      transition: 0.3s ease;
    }

    .term-card:hover::before {
      opacity: 1;
    }

    .term-card > * {
      position: relative;
      z-index: 1;
    }

    .term-badge {
      width: fit-content;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(91,225,230,0.12);
      border: 1px solid rgba(91,225,230,0.22);
      color: var(--accent);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 16px;
    }

    .alphabet {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .alphabet a {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.06);
      color: var(--muted);
      text-decoration: none;
      transition: 0.25s ease;
      font-weight: 700;
    }

    .alphabet a:hover {
      background: var(--accent);
      color: #081018;
      border-color: transparent;
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      padding: clamp(30px, 7vw, 70px);
      border-radius: 44px;
      border: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(91,225,230,0.16), rgba(101,255,163,0.08), rgba(255,255,255,0.05));
      box-shadow: var(--shadow);
    }

    .cta-box::after {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      right: -120px;
      top: -120px;
      border-radius: 50%;
      background: var(--accent);
      opacity: 0.2;
      filter: blur(10px);
    }

    .cta-box > * {
      position: relative;
      z-index: 1;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 15px 22px;
      border-radius: 999px;
      background: var(--accent);
      color: #081018;
      text-decoration: none;
      font-weight: 800;
      margin-top: 26px;
      transition: 0.25s ease;
      box-shadow: 0 18px 50px rgba(91,225,230,0.25);
    }

    .btn:hover {
      transform: translateY(-4px);
    }

    footer {
      padding: 60px 0 80px;
      text-align: center;
      color: var(--muted);
    }

    @media (max-width: 980px) {
      .glossar-grid {
        grid-template-columns: 1fr;
      }

      .section-head {
        flex-direction: column;
        align-items: start;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 620px) {
      h1 {
        font-size: clamp(42px, 14vw, 64px);
      }

      .container,
      .nav {
        width: min(100% - 24px, 1220px);
      }
    }
  </style>/* End custom CSS */