
    /* ═══════════════════════════════
       FONT: Fraunces (Variable Serif)
       Body + Sub-Headings — humanist, editorial-warm
    ═══════════════════════════════ */
    @font-face {
      font-family: 'Fraunces';
      font-style: normal;
      font-weight: 100 900;
      font-display: swap;
      src: url('/assets/fonts/Fraunces-VF-latin.woff2') format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }
    @font-face {
      font-family: 'Fraunces';
      font-style: normal;
      font-weight: 100 900;
      font-display: swap;
      src: url('/assets/fonts/Fraunces-VF-latin-ext.woff2') format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }

    /* ═══════════════════════════════
       PHANTOM PALETTE
    ═══════════════════════════════ */
    :root {
      --bg:       #1a1a2e;
      --bg2:      #1e1e36;
      --bg3:      #24243e;
      --fg:       #ede9fe;
      --fg2:      #c4b5fd;
      --muted:    rgba(237,233,254,0.62);
      --accent:   #a78bfa;
      --accent2:  #c4b5fd;
      --accent3:  #e879f9;
      --border:   rgba(167,139,250,0.1);
      --border2:  rgba(167,139,250,0.22);
      --glow:     rgba(167,139,250,0.14);
      --radius:   4px;

      --text-xs:   clamp(0.72rem, 1.1vw, 0.82rem);
      --text-sm:   clamp(0.85rem, 1.3vw, 0.97rem);
      --text-base: clamp(1rem, 1.5vw, 1.1rem);
      --text-lg:   clamp(1.2rem, 2vw, 1.5rem);
      --text-xl:   clamp(1.5rem, 3vw, 2.5rem);
      --text-2xl:  clamp(2rem, 5vw, 4rem);
      --text-hero: clamp(3.2rem, 11vw, 9rem);
    }

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

    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

    body {
      background: var(--bg);
      color: var(--fg);
      font-family: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
      font-optical-sizing: auto;
      font-weight: 400;
      line-height: 1.55;
      overflow-x: hidden;
      padding-top: env(safe-area-inset-top);
      padding-bottom: env(safe-area-inset-bottom);
    }

    /* ═══════════════════════════════
       AMBIENT BG
    ═══════════════════════════════ */
    .ambient {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(130px);
    }

    .orb-1 {
      width: 700px; height: 700px;
      top: -250px; left: 50%; transform: translateX(-50%);
      background: radial-gradient(circle, rgba(167,139,250,0.16) 0%, transparent 65%);
      animation: orbDrift1 14s ease-in-out infinite;
    }

    .orb-2 {
      width: 500px; height: 500px;
      bottom: 10%; right: -180px;
      background: radial-gradient(circle, rgba(232,121,249,0.09) 0%, transparent 65%);
      animation: orbDrift2 18s ease-in-out infinite;
    }

    .orb-3 {
      width: 400px; height: 400px;
      top: 45%; left: -130px;
      background: radial-gradient(circle, rgba(167,139,250,0.07) 0%, transparent 65%);
      animation: orbDrift1 11s ease-in-out infinite reverse;
    }

    .ambient-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(167,139,250,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(167,139,250,0.025) 1px, transparent 1px);
      background-size: 64px 64px;
    }

    @keyframes orbDrift1 {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(-28px); }
    }
    @keyframes orbDrift2 {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(22px); }
    }

    /* ═══════════════════════════════
       CURSOR GLOW (desktop only)
    ═══════════════════════════════ */
    @media (hover: hover) {
      body::before {
        content: '';
        position: fixed;
        width: 480px; height: 480px;
        left: calc(var(--mx, 50%) - 240px);
        top:  calc(var(--my, 50%) - 240px);
        background: radial-gradient(circle, rgba(167,139,250,0.055) 0%, transparent 68%);
        pointer-events: none;
        transition: none;
        z-index: 0;
      }
    }

    /* Ensure content is above ambient */
    .nav, main, footer { position: relative; z-index: 1; }

    /* ═══════════════════════════════
       NAVIGATION
    ═══════════════════════════════ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: max(1.25rem, env(safe-area-inset-top)) clamp(1.2rem, 5vw, 4rem);
      display: flex;
      align-items: center;
      justify-content: space-between;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      background: rgba(26,26,46,0.72);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
    }

    .nav-logo-text {
      font-family: 'Unbounded', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #f0e6ff 0%, #c4b5fd 45%, #a78bfa 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* CSS-only hamburger */
    .nav-toggle { display: none; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 7px;
      cursor: pointer;
      padding: 10px;
      min-width: 60px; min-height: 60px;
      align-items: center; justify-content: center;
      background: none; border: none;
    }

    .hamburger span {
      width: 32px; height: 2px;
      background: var(--fg2);
      display: block;
      border-radius: 2px;
      transition: transform 0.3s cubic-bezier(.16,1,.3,1), opacity 0.3s ease;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-link {
      position: relative;
      font-size: clamp(0.78rem, 1.1vw, 0.88rem);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--accent);
      transition: width 0.3s cubic-bezier(.16,1,.3,1);
    }

    .nav-link:hover { color: var(--fg); }
    .nav-link:hover::after { width: 100%; }

    .nav-cta {
      font-family: 'Unbounded', sans-serif;
      font-size: var(--text-xs);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--bg);
      background: linear-gradient(135deg, var(--accent2), var(--accent3));
      padding: 0.65rem 1.4rem;
      text-decoration: none;
      font-weight: 500;
      border-radius: var(--radius);
      min-height: 48px;
      display: flex; align-items: center;
      box-shadow: 0 0 22px rgba(167,139,250,0.28);
      transition: opacity 0.3s ease, transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s ease;
    }

    .nav-cta:hover {
      opacity: 0.9;
      transform: translateY(-1px);
      box-shadow: 0 0 36px rgba(167,139,250,0.5);
    }

    @media (max-width: 767px) {
      .hamburger { display: flex; }

      .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem clamp(1.2rem, 5vw, 4rem) 1.5rem;
        background: rgba(26,26,46,0.97);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--border);
        gap: 0;
      }

      .nav-link {
        padding: 1rem 0;
        min-height: 48px;
        display: flex; align-items: center;
        border-bottom: 1px solid var(--border);
      }

      .nav-link::after { bottom: -1px; }

      .nav-cta {
        margin-top: 0.75rem;
        justify-content: center;
        border-radius: var(--radius);
      }

      .nav-toggle:checked ~ .nav-links { display: flex; }

      .nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
      .nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
      .nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    }

    /* ═══════════════════════════════
       HERO
    ═══════════════════════════════ */
    .hero {
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: clamp(6rem, 12vw, 12rem) clamp(1.2rem, 5vw, 6rem) clamp(3rem, 6vw, 6rem);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Floating ghost particles */
    .ghost-field {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
    }

    .g {
      position: absolute;
      animation: ghostRise var(--d, 9s) ease-in-out var(--delay, 0s) infinite;
      opacity: 0;
    }

    .g:nth-child(1) { left: 7%;   bottom: -8%;  --d: 9s;  --delay: 0s; }
    .g:nth-child(2) { left: 18%;  bottom: -8%;  --d: 12s; --delay: 2.5s; }
    .g:nth-child(3) { left: 48%;  bottom: -8%;  --d: 8s;  --delay: 1s; }
    .g:nth-child(4) { left: 72%;  bottom: -8%;  --d: 11s; --delay: 3.5s; }
    .g:nth-child(5) { left: 87%;  bottom: -8%;  --d: 13s; --delay: 0.8s; }

    @keyframes ghostRise {
      0%   { transform: translateY(0)        translateX(0);    opacity: 0; }
      8%   { opacity: 0.35; }
      45%  { transform: translateY(-48vh)    translateX(18px); opacity: 0.25; }
      75%  { opacity: 0.1; }
      100% { transform: translateY(-108vh)   translateX(-8px); opacity: 0; }
    }

    .hero-eyebrow {
      font-size: var(--text-xs);
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) 0.2s forwards;
    }

    .hero-title {
      font-family: 'Unbounded', sans-serif;
      font-size: var(--text-hero);
      font-weight: 900;
      line-height: 0.92;
      letter-spacing: -0.05em;
      margin-bottom: 2rem;
    }

    .chrome-text {
      display: block;
      background: linear-gradient(
        140deg,
        #f5f0ff 0%,
        #e9d5ff 18%,
        #a78bfa 36%,
        #ddd6fe 52%,
        #f0e6ff 64%,
        #a78bfa 80%,
        #c4b5fd 100%
      );
      background-size: 240% 240%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      /* Enger Glow folgt der Buchstabenform — Gitternetz dahinter bleibt sichtbar */
      filter: drop-shadow(0 0 14px rgba(167,139,250,0.35));
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) 0.35s forwards,
                 chromaShift 7s ease-in-out 1.5s infinite;
    }

    @keyframes chromaShift {
      0%,100% { background-position: 0% 50%; }
      50%      { background-position: 100% 50%; }
    }

    .hero-sub {
      font-size: var(--text-base);
      color: var(--muted);
      max-width: 520px;
      line-height: 1.8;
      margin: 0 auto 2.5rem;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) 0.55s forwards;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) 0.75s forwards;
    }

    .scroll-cue {
      position: absolute;
      bottom: 2rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      opacity: 0;
      animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) 1.1s forwards;
    }

    .scroll-cue span {
      font-size: 0.58rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(167,139,250,0.28);
    }

    .scroll-line {
      width: 1px; height: 42px;
      background: linear-gradient(to bottom, transparent, rgba(167,139,250,0.35));
      animation: scrollPulse 2.2s ease-in-out infinite;
    }

    @keyframes scrollPulse {
      0%,100% { opacity: 0.3; transform: scaleY(0.7); }
      50%      { opacity: 1;   transform: scaleY(1); }
    }

    /* ═══════════════════════════════
       BUTTONS
    ═══════════════════════════════ */
    .btn-primary {
      position: relative;
      overflow: hidden;
      padding: 1rem 2.2rem;
      background: linear-gradient(135deg, var(--accent), var(--accent3));
      color: #09090f;
      font-family: 'DM Mono', monospace;
      font-size: var(--text-xs);
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      min-height: 52px;
      display: inline-flex; align-items: center; justify-content: center;
      box-shadow: 0 0 28px rgba(167,139,250,0.38);
      transition: transform 0.3s cubic-bezier(.16,1,.3,1), box-shadow 0.3s ease;
    }

    .btn-primary::after {
      content: '';
      position: absolute; inset: 0;
      background: rgba(255,255,255,0.14);
      transform: translateY(101%);
      transition: transform 0.4s cubic-bezier(.16,1,.3,1);
    }

    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(167,139,250,0.55); }
    .btn-primary:hover::after { transform: translateY(0); }

    .btn-outline {
      padding: 1rem 2.2rem;
      border: 1px solid var(--border2);
      color: var(--fg2);
      font-family: 'DM Mono', monospace;
      font-size: var(--text-xs);
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: var(--radius);
      min-height: 52px;
      display: inline-flex; align-items: center; justify-content: center;
      transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
    }

    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--fg);
      background: rgba(167,139,250,0.06);
    }

    /* ═══════════════════════════════
       SECTION COMMONS
    ═══════════════════════════════ */
    .section {
      padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 5vw, 6rem);
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .section-title {
      font-family: 'Unbounded', sans-serif;
      font-size: var(--text-2xl);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--fg);
      margin-bottom: 1.25rem;
    }

    .section-sub {
      font-size: var(--text-base);
      color: var(--muted);
      line-height: 1.75;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }

    .divider {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(1.2rem, 5vw, 6rem);
    }

    .divider-line {
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border), transparent);
    }

    /* ═══════════════════════════════
       FEATURES
    ═══════════════════════════════ */
    .features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 3rem;
    }

    @media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
    @media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

    .feature-card {
      position: relative;
      overflow: hidden;
      padding: 2rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: rgba(30,30,54,0.55);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      text-align: center;
      transition: border-color 0.4s ease, transform 0.4s cubic-bezier(.16,1,.3,1);
    }
    .feature-card .feature-icon { margin-left: auto; margin-right: auto; }

    .feature-card::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at top left, rgba(167,139,250,0.07) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .feature-card:hover { border-color: var(--border2); transform: translateY(-5px); }
    .feature-card:hover::before { opacity: 1; }

    .feature-icon {
      width: 48px; height: 48px;
      border-radius: 8px;
      background: rgba(167,139,250,0.08);
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.35rem;
    }

    .feature-title {
      font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
      font-size: clamp(1rem, 1.5vw, 1.2rem);
      font-weight: 600;
      letter-spacing: -0.015em;
      color: var(--fg);
      margin-bottom: 0.7rem;
    }

    .feature-desc {
      font-size: var(--text-sm);
      color: var(--muted);
      line-height: 1.75;
    }

    .feature-tag {
      display: inline-block;
      margin-top: 1.1rem;
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      background: rgba(167,139,250,0.07);
      border: 1px solid rgba(167,139,250,0.14);
      padding: 0.25rem 0.65rem;
      border-radius: 2px;
    }

    /* ═══════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════ */
    .how-wrap {
      padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 5vw, 6rem);
      background: linear-gradient(180deg, transparent 0%, rgba(167,139,250,0.025) 50%, transparent 100%);
    }

    .how-inner { max-width: 1200px; margin: 0 auto; }

    .steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin-top: 3.5rem;
      position: relative;
    }

    @media (min-width: 768px) {
      .steps { grid-template-columns: repeat(3, 1fr); gap: 0; }

      .steps::before {
        content: '';
        position: absolute;
        top: 3.5rem;
        left: calc(16.66% + 1.8rem);
        right: calc(16.66% + 1.8rem);
        height: 1px;
        background: linear-gradient(to right, var(--accent), var(--accent3), var(--accent));
        opacity: 0.18;
      }
    }

    .step { padding: 2rem; text-align: center; position: relative; }

    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      border: 1px solid var(--border2);
      background: rgba(167,139,250,0.06);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: 'Unbounded', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--accent);
      position: relative;
      z-index: 1;
    }

    .step-num::before {
      content: '';
      position: absolute; inset: -5px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(167,139,250,0.12) 0%, transparent 68%);
    }

    .step-title {
      font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
      font-size: clamp(0.95rem, 1.5vw, 1.1rem);
      font-weight: 600;
      letter-spacing: -0.015em;
      color: var(--fg);
      margin-bottom: 0.7rem;
    }

    .step-desc {
      font-size: var(--text-sm);
      color: var(--muted);
      line-height: 1.75;
    }

    /* ═══════════════════════════════
       BRANCHEN
    ═══════════════════════════════ */
    .branchen-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-top: 3rem;
    }

    @media (min-width: 640px)  { .branchen-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1024px) { .branchen-grid { grid-template-columns: repeat(5, 1fr); } }

    .branche-card {
      padding: 1.75rem 1rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: rgba(30,30,54,0.55);
      text-align: center;
      transition: border-color 0.3s ease, transform 0.3s cubic-bezier(.16,1,.3,1), background 0.3s ease;
    }

    .branche-card:hover {
      border-color: var(--accent);
      transform: translateY(-4px);
      background: rgba(167,139,250,0.05);
    }

    .branche-icon { display: flex; justify-content: center; align-items: center; margin-bottom: 0.8rem; height: 2rem; color: var(--fg2); }

    .branche-name {
      font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--fg2);
    }

    /* ═══════════════════════════════
       PRICING
    ═══════════════════════════════ */
    .pricing-wrap {
      padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 5vw, 6rem);
    }

    .pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin-top: 3rem;
    }

    @media (min-width: 720px) {
      .pricing-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 820px;
        margin: 3rem auto 0;
      }
    }

    @media (min-width: 1040px) {
      .pricing-grid {
        grid-template-columns: 1fr 1fr 1fr;
        max-width: 1180px;
        margin-top: 5.5rem;  /* Platz für Pro-Handnote oberhalb */
      }
    }

    /* Billing-Toggle */
    .billing-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0;
      margin: 1.75rem auto 0;
      padding: 4px;
      border: 1px solid var(--border2);
      border-radius: 999px;
      background: rgba(20,20,34,0.6);
      backdrop-filter: blur(20px);
      font-family: 'DM Mono', monospace;
    }
    .billing-toggle button {
      position: relative;
      padding: 0.55rem 1.3rem;
      font-family: inherit;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--muted);
      background: transparent;
      border: 0;
      border-radius: 999px;
      cursor: pointer;
      transition: color 0.2s ease, background 0.2s ease;
    }
    .billing-toggle button.active {
      color: var(--bg);
      background: linear-gradient(135deg, var(--accent), var(--accent3));
    }
    .billing-toggle .save-pill {
      display: inline-block;
      margin-left: 0.5rem;
      padding: 1px 6px;
      border-radius: 999px;
      font-size: 0.62rem;
      background: rgba(167,139,250,0.18);
      color: var(--accent2);
    }
    .billing-toggle button.active .save-pill {
      background: rgba(26,26,46,0.25);
      color: var(--bg);
    }

    /* Deal-Badge oben rechts auf Card — Pulse-Animation für „aufleuchten" */
    .pricing-deal-badge {
      position: absolute;
      top: -0.85rem;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      font-family: 'DM Mono', monospace;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 0.45rem 1.1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(167,139,250,1), rgba(232,121,249,1));
      color: var(--bg);
      border: 1px solid rgba(232,121,249,0.5);
      box-shadow:
        0 0 0 4px rgba(232,121,249,0.08),
        0 0 24px rgba(232,121,249,0.45),
        0 4px 14px rgba(167,139,250,0.35);
      z-index: 2;
      animation: deal-pulse 2.6s ease-in-out infinite;
    }
    @keyframes deal-pulse {
      0%, 100% { box-shadow: 0 0 0 4px rgba(232,121,249,0.08), 0 0 24px rgba(232,121,249,0.45), 0 4px 14px rgba(167,139,250,0.35); }
      50%      { box-shadow: 0 0 0 6px rgba(232,121,249,0.14), 0 0 36px rgba(232,121,249,0.65), 0 4px 18px rgba(167,139,250,0.55); }
    }
    @media (prefers-reduced-motion: reduce) {
      .pricing-deal-badge { animation: none; }
    }
    /* Featured-Card hat zusätzlich „Empfohlen" — den schieben wir tiefer, damit Deal-Badge oben Platz hat */
    .pricing-card.featured .pricing-deal-badge {
      top: -0.85rem;
    }

    /* „Du sparst X€" Mini-Tag unter dem Strike-Preis */
    .pricing-save-tag {
      display: inline-block;
      font-family: 'DM Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(110,231,183,0.95);
      background: rgba(110,231,183,0.08);
      border: 1px solid rgba(110,231,183,0.28);
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      margin-top: 0.4rem;
    }

    /* Strike-through Regulärpreis */
    .pricing-price-row {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 1.25rem 0 0.25rem;
    }
    .pricing-price-strike {
      font-family: 'Unbounded', sans-serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: rgba(237,233,254,0.55);
      text-decoration: line-through;
      text-decoration-color: #ef4444;
      text-decoration-thickness: 3px;
      text-decoration-skip-ink: none;
      letter-spacing: -0.01em;
    }
    .pricing-price-current {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(2rem, 5vw, 2.8rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1;
    }
    .pricing-meta {
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      color: var(--muted);
      letter-spacing: 0.02em;
      min-height: 1.2rem;
      margin-bottom: 1rem;
    }

    /* Hinweis-Block über Cards */
    .pricing-shared {
      margin: 2.5rem auto 0;
      max-width: 760px;
      padding: 1rem 1.4rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: rgba(30,30,54,0.4);
      font-size: var(--text-sm);
      color: var(--muted);
      text-align: center;
      line-height: 1.65;
    }
    .pricing-shared strong { color: var(--fg2); font-weight: 600; }

    /* Feature-Matrix unter den Cards */
    .pricing-matrix-wrap {
      max-width: 1180px;
      margin: 4rem auto 0;
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: rgba(20,20,34,0.5);
      backdrop-filter: blur(20px);
    }
    .pricing-matrix {
      width: 100%;
      min-width: 720px;
      border-collapse: collapse;
      font-size: var(--text-sm);
    }
    .pricing-matrix caption {
      caption-side: top;
      padding: 1.25rem 1.5rem 0.5rem;
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      text-align: left;
    }
    .pricing-matrix th,
    .pricing-matrix td {
      padding: 0.85rem 1.25rem;
      border-bottom: 1px solid var(--border);
      text-align: center;
      color: var(--fg);
    }
    .pricing-matrix thead th {
      font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: -0.005em;
      color: var(--fg2);
      background: rgba(30,30,54,0.6);
    }
    .pricing-matrix thead th.featured {
      color: var(--accent2);
      background: linear-gradient(180deg, rgba(167,139,250,0.16), transparent);
    }
    .pricing-matrix tbody th {
      text-align: left;
      font-family: 'DM Mono', monospace;
      font-weight: 400;
      font-size: 0.82rem;
      color: var(--muted);
      letter-spacing: 0;
    }
    .pricing-matrix tbody tr:last-child td,
    .pricing-matrix tbody tr:last-child th { border-bottom: none; }
    .pricing-matrix td.yes { color: var(--accent2); font-weight: 600; }
    .pricing-matrix td.no  { color: rgba(237,233,254,0.28); }
    .pricing-matrix td.featured { background: rgba(167,139,250,0.05); }

    .pricing-foot {
      max-width: 760px;
      margin: 2rem auto 0;
      font-family: 'DM Mono', monospace;
      font-size: 0.72rem;
      color: var(--muted);
      text-align: center;
      line-height: 1.7;
    }

    .pricing-card {
      position: relative;
      padding: 3.2rem 2.6rem 2.8rem;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: rgba(30,30,54,0.6);
      backdrop-filter: blur(20px);
      text-align: center;
      transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
    }
    .pricing-card .pricing-price-row { justify-content: center; }
    .pricing-card .pricing-features li { justify-content: center; }
    /* Push Demo-Button auf gleiche Bottom-Höhe in allen 3 Cards */
    .pricing-card .pricing-features { margin-bottom: auto; }

    /* Hover-Glow auf allen Cards — beim Drüber „aufleuchten" */
    .pricing-card:hover {
      border-color: rgba(167,139,250,0.55);
      transform: translateY(-4px);
      box-shadow:
        0 0 0 1px rgba(167,139,250,0.35),
        0 24px 48px -16px rgba(167,139,250,0.35),
        0 0 64px -8px rgba(232,121,249,0.22);
    }
    /* Pro/Komplett haben Deal-Badge: stärkerer Glow im Hover */
    .pricing-card[data-tier="pro"]:hover,
    .pricing-card[data-tier="komplett"]:hover {
      border-color: rgba(232,121,249,0.65);
      box-shadow:
        0 0 0 1px rgba(232,121,249,0.45),
        0 28px 60px -18px rgba(232,121,249,0.45),
        0 0 80px -8px rgba(167,139,250,0.32);
    }
    /* Badge im Hover noch intensiver pulsieren */
    .pricing-card:hover .pricing-deal-badge {
      animation: deal-pulse-hover 1.4s ease-in-out infinite;
    }
    @keyframes deal-pulse-hover {
      0%, 100% { box-shadow: 0 0 0 4px rgba(232,121,249,0.14), 0 0 32px rgba(232,121,249,0.6), 0 4px 18px rgba(167,139,250,0.5); }
      50%      { box-shadow: 0 0 0 8px rgba(232,121,249,0.22), 0 0 48px rgba(232,121,249,0.85), 0 4px 24px rgba(167,139,250,0.7); }
    }
    @media (prefers-reduced-motion: reduce) {
      .pricing-card:hover .pricing-deal-badge { animation: none; }
      .pricing-card:hover { transform: none; }
    }

    .pricing-card.featured { border-color: var(--border2); background: rgba(20,20,34,0.8); }

    .pricing-card.featured::before {
      content: '';
      position: absolute; inset: -1px;
      border-radius: 15px;
      background: linear-gradient(140deg, rgba(167,139,250,0.25), rgba(232,121,249,0.12), transparent 58%);
      z-index: -1;
    }

    /* „Empfohlen" handgeschrieben + handgezeichneter Pfeil auf Pro */
    @font-face {
      font-family: 'Caveat';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url('/assets/fonts/Caveat-700-normal-latin.woff2') format('woff2');
    }
    .pro-handnote {
      position: absolute;
      top: -3.5rem;
      right: -1.5rem;
      width: 10rem;
      height: 5.5rem;
      pointer-events: none;
      z-index: 4;
    }
    .pro-handnote-text {
      position: absolute;
      top: 0;
      left: 0;
      font-family: 'Caveat', 'Brush Script MT', cursive;
      font-weight: 700;
      font-size: 2.3rem;
      line-height: 1;
      color: #34d399;
      transform: rotate(-6deg);
      transform-origin: left bottom;
      letter-spacing: 0.01em;
      text-shadow: 0 2px 12px rgba(52,211,153,0.4);
      /* Handschrift-Animation: links nach rechts „schreiben" */
      clip-path: inset(0 100% 0 0);
      animation: handwrite 1.8s 0.4s ease-out forwards;
    }
    @keyframes handwrite {
      0%   { clip-path: inset(0 100% 0 0); }
      100% { clip-path: inset(0 0% 0 0); }
    }
    .pro-handnote-arrow {
      position: absolute;
      bottom: -0.5rem;
      right: 1.2rem;
      width: 5.5rem;
      height: 4.5rem;
      overflow: visible;
    }
    .pro-handnote-arrow path {
      fill: none;
      stroke: #34d399;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 2px 8px rgba(52,211,153,0.5));
    }
    .pro-handnote-arrow .arrow-line {
      stroke-dasharray: 120;
      stroke-dashoffset: 120;
      animation: arrow-draw 1.2s 2.0s ease-out forwards;
    }
    .pro-handnote-arrow .arrow-head {
      stroke-dasharray: 28;
      stroke-dashoffset: 28;
      animation: arrow-draw 0.4s 3.0s ease-out forwards;
    }
    @keyframes arrow-draw {
      to { stroke-dashoffset: 0; }
    }
    /* Nur auf 3-Spalten-Desktop sichtbar (Pro ist Mitte) */
    @media (max-width: 1039px) {
      .pro-handnote { display: none; }
    }
    @media (prefers-reduced-motion: reduce) {
      .pro-handnote-text { clip-path: none; animation: none; }
      .pro-handnote-arrow .arrow-line,
      .pro-handnote-arrow .arrow-head { stroke-dashoffset: 0; animation: none; }
    }

    .pricing-badge {
      display: inline-block;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--bg);
      background: linear-gradient(135deg, var(--accent), var(--accent3));
      padding: 0.3rem 0.85rem;
      border-radius: 2px;
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    .pricing-name {
      font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
      font-size: 1.45rem;
      font-weight: 600;
      letter-spacing: -0.015em;
      color: var(--fg);
      margin-bottom: 0.6rem;
      margin-top: 0.3rem;
    }

    .pricing-price {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(2rem, 5vw, 2.8rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1;
      margin: 1.25rem 0 0.25rem;
    }

    .pricing-period {
      font-family: 'DM Mono', monospace;
      font-size: 0.85rem;
      font-weight: 300;
      color: var(--muted);
      letter-spacing: 0;
    }

    .pricing-desc {
      font-size: var(--text-sm);
      color: var(--muted);
      line-height: 1.7;
      margin: 1rem 0 2.4rem;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 3rem;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: var(--text-sm);
      color: var(--fg);
      padding: 0.65rem 0;
      line-height: 1.5;
      border-bottom: 1px solid var(--border);
    }

    .pricing-features li:last-child { border-bottom: none; }

    .check { flex-shrink: 0; width: 15px; height: 15px; color: var(--accent); }

    /* ═══════════════════════════════
       CTA / FORM
    ═══════════════════════════════ */
    .cta-wrap {
      padding: clamp(4rem, 8vw, 8rem) clamp(1.2rem, 5vw, 6rem);
    }

    .cta-inner { max-width: 700px; margin: 0 auto; text-align: center; }

    .cta-card {
      position: relative;
      overflow: hidden;
      padding: clamp(2rem, 5vw, 3.5rem);
      border: 1px solid var(--border2);
      border-radius: 12px;
      background: rgba(30,30,54,0.8);
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      margin-top: 3rem;
    }

    .cta-card::before {
      content: '';
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 70%; height: 1px;
      background: linear-gradient(to right, transparent, var(--accent), var(--accent3), transparent);
    }

    .cta-card::after {
      content: '';
      position: absolute;
      top: -80px; left: 50%; transform: translateX(-50%);
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(167,139,250,0.07) 0%, transparent 68%);
      pointer-events: none;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin: 2rem 0;
      text-align: left;
    }

    @media (min-width: 640px) {
      .form-grid { grid-template-columns: 1fr 1fr; }
      .form-full { grid-column: 1 / -1; }
    }

    .form-label {
      display: block;
      font-size: var(--text-xs);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }

    .form-input, .form-select {
      width: 100%;
      padding: 0.9rem 1rem;
      background: rgba(26,26,46,0.6);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      color: var(--fg);
      font-family: 'DM Mono', monospace;
      font-size: 16px;
      min-height: 52px;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      -webkit-appearance: none;
      appearance: none;
    }

    .form-input::placeholder { color: rgba(167,139,250,0.22); }
    .form-select option { background: #141422; color: var(--fg); }

    .form-input:focus, .form-select:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 18px rgba(167,139,250,0.09);
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    footer {
      padding: clamp(2.5rem, 5vw, 4rem) clamp(1.2rem, 5vw, 6rem);
      border-top: 1px solid var(--border);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
    }

    .footer-logo { display: flex; align-items: center; gap: 0.7rem; }
    .footer-logo-text {
      font-family: 'Unbounded', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--fg2);
    }

    .footer-tagline {
      font-size: var(--text-xs);
      color: rgba(167,139,250,0.28);
      margin-top: 0.4rem;
      letter-spacing: 0.04em;
    }

    .footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; }

    .footer-links a {
      font-size: var(--text-xs);
      color: rgba(237,233,254,0.28);
      text-decoration: none;
      letter-spacing: 0.05em;
      transition: color 0.3s ease;
    }

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

    .footer-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.6rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(167,139,250,0.28);
      border: 1px solid var(--border);
      padding: 0.4rem 0.85rem;
      border-radius: 2px;
    }

    /* ═══════════════════════════════
       SCROLL REVEAL
    ═══════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
    }

    .reveal.visible { opacity: 1; transform: translateY(0); }

    .stagger > * { opacity: 0; transform: translateY(16px); }

    .stagger.visible > *:nth-child(1) { animation: fadeUp 0.6s cubic-bezier(.16,1,.3,1) 0.05s forwards; }
    .stagger.visible > *:nth-child(2) { animation: fadeUp 0.6s cubic-bezier(.16,1,.3,1) 0.15s forwards; }
    .stagger.visible > *:nth-child(3) { animation: fadeUp 0.6s cubic-bezier(.16,1,.3,1) 0.25s forwards; }
    .stagger.visible > *:nth-child(4) { animation: fadeUp 0.6s cubic-bezier(.16,1,.3,1) 0.35s forwards; }
    .stagger.visible > *:nth-child(5) { animation: fadeUp 0.6s cubic-bezier(.16,1,.3,1) 0.45s forwards; }

    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

    /* ═══════════════════════════════
       REDUCED MOTION
    ═══════════════════════════════ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
      .reveal, .stagger > *, .chrome-text { opacity: 1; transform: none; }
    }

    /* ═══════════════════════════════
       NAV LOGIN LINK
    ═══════════════════════════════ */
    .nav-login {
      position: relative;
      font-family: 'Unbounded', sans-serif;
      font-size: var(--text-xs);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent2);
      text-decoration: none;
      padding: 0.65rem 1.1rem;
      border: 1px solid var(--border2);
      border-radius: var(--radius);
      min-height: 48px;
      display: inline-flex; align-items: center; gap: 0.5rem;
      transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
    }
    .nav-login:hover {
      border-color: var(--accent);
      color: var(--fg);
      background: rgba(167,139,250,0.06);
    }
    .nav-login svg { flex-shrink: 0; }

    @media (max-width: 767px) {
      .nav-login {
        padding: 1rem 0;
        min-height: 48px;
        border: none;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        width: 100%;
      }
      .nav-login:hover { background: transparent; }
    }

    /* ═══════════════════════════════
       NOSCRIPT FALLBACK
    ═══════════════════════════════ */
    @media (scripting: none) {
      .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
      .chrome-text { opacity: 1 !important; }
      .hero-eyebrow, .hero-sub, .hero-actions, .scroll-cue { opacity: 1 !important; }
    }

    /* ═══════════════════════════════
       FOCUS-VISIBLE (A-02)
    ═══════════════════════════════ */
    :focus { outline: none; }
    :focus-visible {
      outline: 2px solid rgba(167,139,250,0.65);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* ═══════════════════════════════
       SCROLLBAR
    ═══════════════════════════════ */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb { background: rgba(167,139,250,0.18); border-radius: 3px; }
    ::-webkit-scrollbar-thumb:hover { background: rgba(167,139,250,0.38); }

    /* ═══════════════════════════════
       MOBILE PERFORMANCE OVERRIDES
       backdrop-filter + großflächige blur() sind auf Mobile-GPUs der teuerste
       Render-Vorgang. Auf Touch/kleinen Viewports komplett deaktivieren —
       Hintergründe etwas opaker, sieht visuell fast identisch aus.
    ═══════════════════════════════ */
    @media (max-width: 900px), (hover: none) and (pointer: coarse) {
      /* Backdrop-Blur überall aus */
      .nav,
      .feature-card,
      .pricing-card,
      .pricing-matrix-wrap,
      .cta-card,
      .billing-toggle {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
      }

      /* Backgrounds opaker machen, damit ohne Blur trotzdem Lesbarkeit bleibt */
      .nav { background: rgba(20,20,34,0.94); }
      .feature-card { background: rgba(25,25,46,0.88); }
      .pricing-card { background: rgba(25,25,46,0.88); }
      .pricing-card.featured { background: rgba(20,20,34,0.94); }
      .pricing-matrix-wrap { background: rgba(20,20,34,0.88); }
      .cta-card { background: rgba(25,25,46,0.92); }
      .billing-toggle { background: rgba(20,20,34,0.85); }

      /* Animierte Orbs: kleiner + geringerer Blur, Animation komplett aus */
      .orb {
        filter: blur(60px);
        animation: none !important;
      }
      .orb-1 { width: 360px; height: 360px; top: -120px; }
      .orb-2 { width: 280px; height: 280px; }
      .orb-3 { display: none; }

      /* Grid-Overlay ausblenden — kleiner Lesbarkeitsgewinn, weniger Paint */
      .ambient-grid { opacity: 0.5; background-size: 80px 80px; }

      /* Cursor-Glow kommt durch @media (hover:hover) schon nicht — sicherheitshalber */
      body::before { display: none !important; }

      /* Sanfte Decoration-Layer auf Pricing-Cards aus — kein sichtbarer Verlust */
      .pricing-card.featured::before { display: none; }
      .cta-card::after { display: none; }

      /* Hero-Ghosts: 5 endlos animierte SVGs ziehen ordentlich GPU.
         Auf Mobile auf 2 reduzieren — bleibt verspielt, halbe Last. */
      .g:nth-child(3),
      .g:nth-child(4),
      .g:nth-child(5) { display: none; }
    }

    /* User-Präferenz respektieren */
    @media (prefers-reduced-motion: reduce) {
      .orb { animation: none !important; }
      .reveal, .stagger > * { transition: none !important; opacity: 1 !important; transform: none !important; }
    }

/* ═══════════════════════════════════════════
   PROBLEM-SEKTION
═══════════════════════════════════════════ */
.problem-section { padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 5vw, 4rem); }
.problem-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 820px) {
  .problem-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.problem-card {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(167,139,250,0.04), rgba(167,139,250,0.01));
  border: 1px solid rgba(167,139,250,0.12);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.problem-card:hover {
  border-color: rgba(167,139,250,0.28);
  transform: translateY(-3px);
}
.problem-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.2rem;
  border-radius: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(167,139,250,0.08);
  border: 1px solid rgba(167,139,250,0.16);
  color: var(--accent2);
}
.problem-icon svg { width: 22px; height: 22px; }
.problem-card-title {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--fg);
  margin-bottom: 0.6rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.problem-card-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   VERGLEICH (3 Szenarien)
═══════════════════════════════════════════ */
.compare-section { padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 5vw, 4rem); }
.compare-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 900px) {
  .compare-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.compare-col {
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(237,233,254,0.08);
  display: flex; flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.compare-col:hover { transform: translateY(-2px); }
.compare-col.featured {
  background: linear-gradient(160deg, rgba(167,139,250,0.08), rgba(167,139,250,0.02));
  border-color: rgba(167,139,250,0.32);
  box-shadow: 0 0 0 1px rgba(167,139,250,0.12), 0 24px 60px -28px rgba(167,139,250,0.45);
}
.compare-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.compare-col.featured .compare-tag { color: var(--accent2); }
.compare-col-title {
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--fg);
  margin-bottom: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.compare-list {
  list-style: none;
  padding: 0; margin: 0 0 1.5rem 0;
  display: flex; flex-direction: column; gap: 0.6rem;
  flex: 1;
}
.compare-list li {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  padding-left: 1.4rem;
  position: relative;
}
.compare-list li::before {
  position: absolute;
  left: 0; top: 0.1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.9rem;
  line-height: 1;
}
.compare-neg::before { content: '✕'; color: rgba(248,113,113,0.65); }
.compare-neutral::before { content: '○'; color: rgba(237,233,254,0.4); }
.compare-pos::before { content: '✓'; color: rgba(110,231,183,0.85); }
.compare-outcome {
  margin-top: auto;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.9rem;
  border-radius: 0.5rem;
  text-align: center;
}
.compare-outcome.neg { background: rgba(248,113,113,0.08); color: rgba(248,113,113,0.85); border: 1px solid rgba(248,113,113,0.18); }
.compare-outcome.neutral { background: rgba(237,233,254,0.04); color: rgba(237,233,254,0.55); border: 1px solid rgba(237,233,254,0.1); }
.compare-outcome.pos { background: rgba(110,231,183,0.1); color: rgba(110,231,183,0.95); border: 1px solid rgba(110,231,183,0.25); }

/* ═══════════════════════════════════════════
   TRUST-STRIPE
═══════════════════════════════════════════ */
.trust-strip {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 5vw, 4rem);
  border-top: 1px solid rgba(237,233,254,0.06);
  border-bottom: 1px solid rgba(237,233,254,0.06);
  background: linear-gradient(180deg, rgba(167,139,250,0.025), transparent);
}
.trust-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
}
@media (min-width: 720px) { .trust-strip-inner { grid-template-columns: repeat(5, 1fr); } }
.trust-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.trust-item-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.trust-item-text {
  font-size: 0.8rem;
  color: var(--fg2);
  line-height: 1.4;
}
.trust-item-text small { color: var(--muted); font-size: 0.7rem; display: block; margin-top: 0.15rem; }

/* ═══════════════════════════════════════════
   FOUNDER / ÜBER UNS
═══════════════════════════════════════════ */
.founder-section { padding: clamp(3rem, 6vw, 6rem) clamp(1.2rem, 5vw, 4rem); }
.founder-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .founder-grid { grid-template-columns: 1.4fr 1fr; gap: 4rem; } }
.founder-lead {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--fg2);
  margin-bottom: 1.2rem;
}
.founder-lead strong { color: var(--fg); font-weight: 500; }
.founder-meta {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(237,233,254,0.08);
  display: grid; gap: 0.9rem;
}
.founder-meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.founder-meta-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.founder-meta-value { font-size: 0.88rem; color: var(--fg2); }
.founder-meta-value a { color: var(--accent2); text-decoration: none; }
.founder-meta-value a:hover { text-decoration: underline; }

.founder-portrait { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.founder-portrait-ring {
  width: clamp(160px, 22vw, 220px);
  height: clamp(160px, 22vw, 220px);
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 0deg, var(--accent2), var(--accent3), var(--accent2));
  position: relative;
}
.founder-portrait-ring::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167,139,250,0.25), transparent 70%);
  filter: blur(20px); z-index: -1;
}
.founder-portrait-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.founder-portrait-initials {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--accent2), var(--accent3));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.02em;
}
.founder-portrait-caption {
  text-align: center;
  font-family: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.founder-portrait-caption small {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}
