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

    :root {
      --bg:        #0a1628;
      --bg2:       #0f2040;
      --surface:   rgba(91,191,237,.05);
      --surface2:  rgba(91,191,237,.09);
      --border:    rgba(255,255,255,.08);
      --border2:   rgba(255,255,255,.14);
      --blue:      #5bbfed;
      --blue-dim:  rgba(91,191,237,.15);
      --blue-glow: rgba(91,191,237,.35);
      --purple:    #1c3360;
      --text:      #f0f4fa;
      --sub:       #a8bdd4;
      --muted:     #7a99b8;
      --green:     #2ecc71;
      --green-dim: rgba(46,204,113,.12);
      --amber:     #f39c12;
      --amber-dim: rgba(243,156,18,.12);
    }

    html { scroll-behavior: smooth; color-scheme: dark; overflow-x: hidden; }

    :focus-visible { outline: 2px solid #7dd0f5; outline-offset: 2px; border-radius: 4px; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Open Sans', -apple-system, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, .logo-name, .stat .num, .countdown-unit .num, .glimpse-tile-num {
      font-family: 'Oswald', 'Open Sans', -apple-system, sans-serif;
    }

    a { color: var(--blue); text-decoration: none; }
    a:hover { text-decoration: underline; }

    /* ── NOISE ──────────────────────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 0; opacity: .5;
    }

    /* ── NAV ────────────────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      height: 68px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%;
      background: rgba(12,26,52,.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-mark {
      width: 38px; height: 38px; border-radius: 11px;
      background: linear-gradient(135deg, var(--blue), #2f8fc4);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 20px var(--blue-glow); flex-shrink: 0;
    }
    .logo-name { font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -.4px; }
    .nav-links { display: flex; align-items: center; gap: 28px; }
    .nav-links a { color: var(--sub); text-decoration: none; font-size: 14px; font-weight: 600; transition: color .2s ease; }
    .nav-links a:hover, .nav-links a.active { color: var(--text); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .nav-cta {
      background: linear-gradient(135deg, var(--blue), #2f8fc4); color: #fff;
      padding: 9px 18px; border-radius: 100px; font-size: 13px; font-weight: 700;
      text-decoration: none; white-space: nowrap;
      transition: transform .2s cubic-bezier(.16,1,.3,1), box-shadow .2s ease;
    }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--blue-glow); }
    .nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 9px 8px; margin-left: 4px; }
    .nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .2s ease; }
    .nav-burger span + span { margin-top: 5px; }
    nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
    nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-drawer { display: none; }
    @media (max-width: 860px) {
      .nav-links { display: none; }
      .nav-actions .nav-pill { display: none; }
      .nav-burger { display: block; }
      .nav-drawer {
        display: flex; flex-direction: column;
        position: fixed; top: 68px; left: 0; right: 0; z-index: 95;
        background: rgba(13,17,32,.98); backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border); padding: 12px 5% 22px;
        transform: translateY(-14px); opacity: 0; pointer-events: none;
        transition: opacity .25s ease, transform .25s cubic-bezier(.16,1,.3,1);
      }
      nav.nav-open .nav-drawer { transform: translateY(0); opacity: 1; pointer-events: auto; }
      .nav-drawer a { color: var(--text); text-decoration: none; font-size: 16px; font-weight: 600; padding: 13px 4px; border-bottom: 1px solid var(--border); }
      .nav-drawer a.drawer-cta { margin-top: 14px; padding: 14px; border: none; border-radius: 100px; text-align: center; background: linear-gradient(135deg, var(--blue), #2f8fc4); color: #fff; }
    }
    @media (prefers-reduced-motion: reduce) { .nav-burger span, .nav-drawer { transition: none; } }
    .subpage-hero { padding: 132px 5% 20px; }
    .subpage-h1 {
      font-size: clamp(2.1rem, 5vw, 3.5rem); font-weight: 800;
      letter-spacing: -1.6px; line-height: 1.06; margin: 20px 0 18px;
      color: var(--text); text-wrap: balance;
    }
    .subpage-sub {
      font-size: 1.05rem; color: var(--sub); max-width: 620px;
      margin: 0 auto; line-height: 1.7; text-wrap: pretty;
    }
    .trust-row {
      display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 18px;
    }
    .trust-row span {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 13.5px; font-weight: 600; color: var(--sub);
    }
    .nav-pill {
      display: flex; align-items: center; gap: 8px;
      background: var(--blue-dim); border: 1px solid rgba(243,156,18,.3);
      color: #7dd0f5; padding: 7px 16px; border-radius: 100px;
      font-size: 13px; font-weight: 600;
    }
    .nav-pill .dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #7dd0f5; animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.5; transform:scale(.7); }
    }

    /* ── STICKY CTA ─────────────────────────────────────────────────── */
    .sticky-cta {
      position: fixed; top: 68px; left: 0; right: 0; z-index: 90;
      display: flex; align-items: center; justify-content: center; gap: 20px;
      padding: 12px 20px;
      background: rgba(20,18,16,.92); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(243,156,18,.25);
      transform: translateY(-100%); opacity: 0;
      transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .3s ease;
      pointer-events: none;
    }
    .sticky-cta.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .sticky-cta-text { font-size: 13px; color: var(--sub); display: none; }
    .sticky-cta-btn {
      background: linear-gradient(135deg, var(--amber), #c9790f);
      color: #1a1008; font-weight: 700; font-size: 13px;
      padding: 8px 18px; border-radius: 8px; text-decoration: none;
      white-space: nowrap;
    }
    @media (min-width: 640px) { .sticky-cta-text { display: block; } }
    @media (prefers-reduced-motion: reduce) {
      .sticky-cta { transition: opacity .2s ease; transform: none; }
    }

    /* ── HERO ───────────────────────────────────────────────────────── */
    .hero-wrap {
      position: relative; min-height: 100vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      padding: 140px 5% 80px;
      overflow: hidden;
    }
    .hero-inner {
      position: relative; z-index: 1;
      max-width: 1360px; width: 100%; margin: 0 auto;
      display: grid; grid-template-columns: 1.05fr .95fr;
      gap: 40px; align-items: center;
    }
    @media (max-width: 980px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
    }
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(80px); pointer-events: none;
    }
    .orb-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(243,156,18,.3) 0%, transparent 70%);
      top: -100px; left: 50%;
      animation: float-orb-1 8s ease-in-out infinite;
    }
    @keyframes float-orb-1 {
      0%,100% { transform: translateX(-60%) translateY(0); }
      50%      { transform: translateX(-60%) translateY(-40px); }
    }
    .orb-2 {
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(91,191,237,.25) 0%, transparent 70%);
      bottom: 0; right: -100px;
      animation: float-orb2 10s ease-in-out infinite;
    }
    .orb-3 {
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(46,204,113,.12) 0%, transparent 70%);
      top: 30%; left: -80px;
      animation: float-orb2 12s ease-in-out infinite reverse;
    }
    @keyframes float-orb2 {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-30px); }
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    }

    /* ── HERO ILLUSTRATION (custom animated tatami/belt graphic) ─────── */
    .hero-illustration {
      position: absolute; z-index: 0; pointer-events: none;
      top: 50%; right: -6%; width: min(58vw, 780px); aspect-ratio: 1;
      transform: translateY(-50%);
      opacity: .55;
      will-change: transform;
    }
    @media (max-width: 980px) {
      .hero-illustration { right: 50%; transform: translate(50%,-46%); width: min(120vw, 620px); opacity: .5; }
    }
    .hero-illustration .ring { fill: none; stroke-width: 1; transform-origin: 250px 250px; }
    .hero-illustration .ring-1 { stroke: rgba(91,191,237,.32); animation: spin-ring 46s linear infinite; }
    .hero-illustration .ring-2 { stroke: rgba(125,208,245,.22); stroke-dasharray: 2 10; animation: spin-ring 60s linear infinite reverse; }
    .hero-illustration .ring-3 { stroke: rgba(46,204,113,.18); stroke-dasharray: 1 6; animation: spin-ring 38s linear infinite; }
    @keyframes spin-ring { to { transform: rotate(360deg); } }
    /* Zwei Kämpfer gehen aufeinander zu und bilden das MatBuddy-Logo */
    .hero-illustration .fighter {
      fill: none; stroke-width: 9; stroke-linecap: round; stroke-linejoin: round;
      opacity: 0;
    }
    .hero-illustration .fighter-l { stroke: url(#fighterGradL); animation: fighter-approach 2.4s cubic-bezier(.45,.05,.55,.95) .4s forwards; }
    .hero-illustration .fighter-r { stroke: url(#fighterGradR); animation: fighter-approach 2.4s cubic-bezier(.45,.05,.55,.95) .4s forwards; }
    .hero-illustration .fighter .fighter-belt { stroke: #1c3360; stroke-width: 7; }
    .hero-illustration .fighter-l .fighter-belt { stroke: #1c3360; }
    .hero-illustration .fighter-r .fighter-belt { stroke: #7dd0f5; }
    @keyframes fighter-approach {
      0%   { opacity: 0; transform: translateX(0); }
      12%  { opacity: 1; transform: translateX(12px) translateY(-5px); }
      24%  { transform: translateX(26px) translateY(0); }
      38%  { transform: translateX(40px) translateY(-5px); }
      52%  { transform: translateX(54px) translateY(0); }
      66%  { transform: translateX(66px) translateY(-4px); }
      78%  { opacity: 1; transform: translateX(76px) translateY(0); }
      90%  { opacity: 1; transform: translateX(90px) scale(1.02); }
      100% { opacity: 0; transform: translateX(94px) scale(.9); }
    }
    .hero-illustration .shockwave {
      fill: none; stroke: rgba(125,208,245,.7); stroke-width: 3;
      opacity: 0; transform-origin: center;
      animation: shockwave 1s cubic-bezier(.16,1,.3,1) 2.55s forwards;
    }
    @keyframes shockwave {
      0%   { opacity: .9; transform: scale(.2); stroke-width: 6; }
      100% { opacity: 0; transform: scale(6); stroke-width: .5; }
    }
    .hero-illustration .spark {
      fill: #fde68a; opacity: 0; transform-origin: center;
      animation: spark-flash .55s cubic-bezier(.16,1,.3,1) 2.5s forwards;
    }
    @keyframes spark-flash {
      0%   { opacity: 0; transform: scale(.2) rotate(0deg); }
      35%  { opacity: 1; transform: scale(1.25) rotate(18deg); }
      100% { opacity: 0; transform: scale(.6) rotate(35deg); }
    }
    .hero-illustration .logo-final { filter: drop-shadow(0 0 12px rgba(125,208,245,.3)); }
    .hero-illustration .logo-m {
      fill: none; stroke: url(#logoMGrad); stroke-width: 2.2;
      stroke-linecap: round; stroke-linejoin: round;
      stroke-dasharray: 42; stroke-dashoffset: 42; opacity: 0;
      animation: draw-logo 1.1s cubic-bezier(.16,1,.3,1) 2.7s forwards;
    }
    @keyframes draw-logo {
      0%   { opacity: 0; stroke-dashoffset: 42; }
      15%  { opacity: 1; }
      100% { opacity: 1; stroke-dashoffset: 0; }
    }
    .hero-illustration .logo-dot {
      fill: url(#logoMGrad); opacity: 0; transform-origin: 11px 3px;
      animation:
        dot-pop .55s cubic-bezier(.16,1,.3,1) 3.55s forwards,
        dot-pulse 3.2s ease-in-out 4.4s infinite;
    }
    @keyframes dot-pop {
      0%   { opacity: 0; transform: scale(0); }
      60%  { opacity: 1; transform: scale(1.5); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes dot-pulse {
      0%, 100% { transform: scale(1); }
      50%      { transform: scale(1.25); }
    }
    .hero-illustration .dust { fill: #7dd0f5; opacity: 0; animation: dust-float 7s ease-in-out infinite; }
    .hero-illustration .dust:nth-child(odd) { fill: #5bbfed; }
    @keyframes dust-float {
      0%   { opacity: 0; transform: translateY(0); }
      15%  { opacity: .6; }
      50%  { opacity: .3; transform: translateY(-30px); }
      85%  { opacity: .1; }
      100% { opacity: 0; transform: translateY(-60px); }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-illustration .ring-1, .hero-illustration .ring-2, .hero-illustration .ring-3,
      .hero-illustration .dust { animation: none; opacity: .3; }
      .hero-illustration .fighter-l, .hero-illustration .fighter-r { animation: none; opacity: 0; }
      .hero-illustration .shockwave, .hero-illustration .spark { animation: none; opacity: 0; }
      .hero-illustration .logo-m { animation: none; opacity: 1; stroke-dashoffset: 0; }
      .hero-illustration .logo-dot { animation: none; opacity: 1; }
    }

    /* ── SPLASH (erster Besuch: Kämpfer bilden das Logo, weiß/violett) ── */
    .splash { display: none; }
    html.show-splash { overflow: hidden; }
    html.show-splash .splash {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      position: fixed; inset: 0; z-index: 300;
      background: #0a1628;
      cursor: pointer;
      transition: opacity .45s cubic-bezier(.16,1,.3,1);
    }
    .splash.splash-out { opacity: 0; pointer-events: none; }
    .splash-glow {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 70% 55% at 50% 42%, rgba(91,191,237,.16) 0%, transparent 65%),
        radial-gradient(ellipse 40% 30% at 50% 46%, rgba(125,208,245,.10) 0%, transparent 70%);
      opacity: 0;
      animation: splash-glow-in 1s cubic-bezier(.16,1,.3,1) .1s forwards;
    }
    @keyframes splash-glow-in { to { opacity: 1; } }
    .splash-stage {
      width: min(76vw, 460px); height: auto;
      position: relative;
    }
    .splash-stage .sp-fighter {
      fill: none; stroke-width: 9; stroke-linecap: round; stroke-linejoin: round;
      opacity: 0;
    }
    .splash-stage .sp-fighter-l { stroke: url(#spGradL); animation: sp-approach 1.9s cubic-bezier(.45,.05,.55,.95) .35s forwards; }
    .splash-stage .sp-fighter-r { stroke: url(#spGradR); animation: sp-approach 1.9s cubic-bezier(.45,.05,.55,.95) .35s forwards; }
    .splash-stage .sp-fighter-l .sp-belt { stroke: #1c3360; stroke-width: 7; }
    .splash-stage .sp-fighter-r .sp-belt { stroke: #7dd0f5; stroke-width: 7; }
    @keyframes sp-approach {
      0%   { opacity: 0; transform: translateX(0); }
      12%  { opacity: 1; transform: translateX(14px) translateY(-5px); }
      26%  { transform: translateX(30px) translateY(0); }
      40%  { transform: translateX(46px) translateY(-5px); }
      54%  { transform: translateX(62px) translateY(0); }
      68%  { transform: translateX(76px) translateY(-4px); }
      80%  { opacity: 1; transform: translateX(88px) translateY(0); }
      92%  { opacity: 1; transform: translateX(104px) scale(1.02); }
      100% { opacity: 0; transform: translateX(108px) scale(.9); }
    }
    .splash-stage .sp-shockwave {
      fill: none; stroke: rgba(125,208,245,.8); stroke-width: 3;
      opacity: 0; transform-origin: center;
      animation: sp-shockwave .9s cubic-bezier(.16,1,.3,1) 2.1s forwards;
    }
    @keyframes sp-shockwave {
      0%   { opacity: .95; transform: scale(.15); stroke-width: 6; }
      100% { opacity: 0; transform: scale(5.5); stroke-width: .5; }
    }
    .splash-stage .sp-flash {
      fill: #f0f4fa; opacity: 0; transform-origin: center;
      animation: sp-flash .5s cubic-bezier(.16,1,.3,1) 2.05s forwards;
    }
    @keyframes sp-flash {
      0%   { opacity: 0; transform: scale(.2) rotate(0deg); }
      30%  { opacity: 1; transform: scale(1.2) rotate(14deg); }
      100% { opacity: 0; transform: scale(.55) rotate(28deg); }
    }
    .splash-stage .sp-logo { filter: drop-shadow(0 0 18px rgba(91,191,237,.55)); }
    .splash-stage .sp-logo-m {
      fill: none; stroke: url(#spLogoGrad); stroke-width: 2.2;
      stroke-linecap: round; stroke-linejoin: round;
      stroke-dasharray: 42; stroke-dashoffset: 42; opacity: 0;
      animation: sp-draw-logo 1s cubic-bezier(.16,1,.3,1) 2.25s forwards;
    }
    @keyframes sp-draw-logo {
      0%   { opacity: 0; stroke-dashoffset: 42; }
      15%  { opacity: 1; }
      100% { opacity: 1; stroke-dashoffset: 0; }
    }
    .splash-stage .sp-logo-dot {
      fill: url(#spLogoGrad); opacity: 0; transform-origin: 11px 3px;
      animation: sp-dot-pop .5s cubic-bezier(.16,1,.3,1) 3.1s forwards;
    }
    @keyframes sp-dot-pop {
      0%   { opacity: 0; transform: scale(0); }
      55%  { opacity: 1; transform: scale(1.35); }
      100% { opacity: 1; transform: scale(1); }
    }
    .splash-word {
      margin-top: 6px; text-align: center;
      opacity: 0; transform: translateY(14px);
      animation: sp-word-in .7s cubic-bezier(.16,1,.3,1) 3.25s forwards;
    }
    @keyframes sp-word-in { to { opacity: 1; transform: translateY(0); } }
    .splash-name {
      display: block;
      font-family: 'Oswald', 'Open Sans', sans-serif;
      font-size: clamp(1.9rem, 6vw, 2.6rem); font-weight: 800;
      letter-spacing: -.03em; color: #f0f4fa;
    }
    .splash-tag {
      display: block; margin-top: 6px;
      font-size: clamp(.85rem, 2.6vw, 1rem); font-weight: 500;
      color: #5bbfed;
    }
    .splash-skip {
      position: absolute; bottom: max(28px, env(safe-area-inset-bottom, 0px) + 20px); left: 50%; transform: translateX(-50%);
      background: none; border: 1px solid rgba(240,242,250,.18); border-radius: 100px;
      color: #a8bdd4; font-size: .8rem; font-weight: 600; font-family: inherit;
      padding: 8px 18px; cursor: pointer;
      opacity: 0; animation: splash-glow-in .5s ease 1.2s forwards;
      transition: color .2s, border-color .2s;
    }
    .splash-skip:hover { color: #f0f4fa; border-color: rgba(240,242,250,.4); }
    /* Hero-Animation pausiert, solange der Splash läuft — sie startet danach */
    html.show-splash .hero-illustration .fighter-l,
    html.show-splash .hero-illustration .fighter-r,
    html.show-splash .hero-illustration .shockwave,
    html.show-splash .hero-illustration .spark,
    html.show-splash .hero-illustration .logo-m,
    html.show-splash .hero-illustration .logo-dot { animation-play-state: paused; }

    /* ── SCROLL PROGRESS BAR ───────────────────────────────────────────── */
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px; width: 0%;
      background: linear-gradient(90deg, var(--blue), #7dd0f5, var(--purple));
      z-index: 200; transition: width .1s linear;
    }
    @media (prefers-reduced-motion: reduce) { .scroll-progress { transition: none; } }

    /* ── SECTION DIVIDER (belt-stripe rhythm graphic) ─────────────────── */
    .stripe-divider { display: flex; height: 6px; max-width: 240px; margin: 0 auto; gap: 6px; }
    .stripe-divider span { flex: 1; border-radius: 3px; background: var(--border); }
    .stripe-divider span.on { background: linear-gradient(90deg, var(--amber), #fde68a); }
    .stripe-divider.reveal span.on { transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.16,1,.3,1); }
    .stripe-divider.reveal.visible span.on:nth-child(1) { transition-delay: 0s; }
    .stripe-divider.reveal.visible span.on:nth-child(2) { transition-delay: .1s; }
    .stripe-divider.reveal.visible span.on:nth-child(3) { transition-delay: .2s; }
    .stripe-divider.reveal.visible span { transform: scaleX(1); }
    .hero-content { position: relative; z-index: 1; min-width: 0; }
    @media (min-width: 981px) { .hero-content { text-align: left; } }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--surface2); border: 1px solid var(--border2);
      padding: 7px 18px; border-radius: 100px;
      font-size: 13px; font-weight: 600; color: #7dd0f5;
      margin-bottom: 32px; backdrop-filter: blur(10px);
    }
    h1 {
      font-size: clamp(2.8rem, 5.6vw, 5.6rem);
      font-weight: 900; letter-spacing: -3px;
      line-height: 1.0; margin-bottom: 28px;
      overflow-wrap: break-word; word-break: break-word;
    }
    .grad {
      background: linear-gradient(135deg, #7dd0f5 0%, #5bbfed 50%, #7dd0f5 100%);
      background-size: 200% auto;
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; animation: shimmer 4s linear infinite;
    }
    @keyframes shimmer {
      0%   { background-position: 0% center; }
      100% { background-position: 200% center; }
    }
    .hero-sub {
      font-size: 1.2rem; color: var(--sub);
      max-width: 500px; margin: 0 auto 44px; line-height: 1.7;
    }
    @media (min-width: 981px) { .hero-sub { margin: 0 0 44px; } }
    .hero-cta-group { margin-bottom: 28px; }
    .btn-hero-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: linear-gradient(135deg, var(--amber), #c9790f);
      color: #1a1008; font-weight: 800; font-size: 16px;
      padding: 16px 32px; border-radius: 12px;
      text-decoration: none; white-space: nowrap;
      box-shadow: 0 8px 32px rgba(243,156,18,.35);
      transition: opacity .2s, transform .15s;
    }
    @media (hover: hover) and (pointer: fine) {
      .btn-hero-primary:hover { opacity: .9; transform: translateY(-2px); text-decoration: none; }
    }
    .hero-cta-sub {
      margin-top: 14px; font-size: 13px; color: var(--sub);
    }
    .hero-cta-sub strong { color: var(--amber); }
    .hero-waitlist-secondary { margin-top: 36px; opacity: .8; }
    .hero-secondary-label { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
    .waitlist-wrap { max-width: 480px; margin: 0 auto; }
    @media (min-width: 981px) { .hero-waitlist-secondary.waitlist-wrap { margin: 0; } }
    .waitlist {
      display: flex; gap: 8px;
      background: rgba(255,255,255,.06);
      border: 1px solid var(--border2); border-radius: 14px;
      padding: 6px 6px 6px 18px; backdrop-filter: blur(10px);
    }
    .waitlist input {
      flex: 1; background: transparent; border: none; outline: none;
      color: var(--text); font-size: 15px; font-family: inherit;
    }
    .waitlist input::placeholder { color: var(--muted); }
    .waitlist:has(input:focus-visible) { outline: 2px solid #7dd0f5; outline-offset: 2px; }
    .btn-primary {
      background: linear-gradient(135deg, var(--blue), #2f8fc4);
      color: #fff; padding: 11px 24px; border-radius: 10px;
      font-weight: 700; font-size: 14px; border: none; cursor: pointer;
      white-space: nowrap; transition: opacity .2s, transform .15s;
      box-shadow: 0 4px 20px var(--blue-glow);
    }
    @media (hover: hover) and (pointer: fine) {
      .btn-primary:hover { opacity: .88; transform: translateY(-1px); }
    }
    .btn-primary:active { transform: translateY(0); }
    .waitlist-note { margin-top: 14px; font-size: 13px; color: var(--muted); text-align: center; }
    .success-msg {
      display: none;
      background: var(--green-dim); border: 1px solid rgba(46,204,113,.25);
      border-radius: 12px; padding: 14px 20px;
      color: var(--green); font-size: 14px; font-weight: 600; text-align: center;
    }
    .stats-row {
      display: flex; justify-content: center;
      gap: 48px; flex-wrap: wrap;
      margin-top: 72px; padding-top: 48px;
      border-top: 1px solid var(--border);
    }
    @media (min-width: 981px) { .stats-row { justify-content: flex-start; } }
    .stat { text-align: center; }
    .stat .num { font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; }
    .stat .num span { color: #7dd0f5; }
    .stat .lbl { font-size: 13px; color: var(--sub); margin-top: 4px; }

    /* ── HERO VISUAL (Produkt-Mockup neben dem Hero-Text) ────────────── */
    .hero-visual { position: relative; }
    .hero-glimpse {
      position: relative;
      transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
      transition: transform .5s cubic-bezier(.16,1,.3,1);
    }
    @media (hover: hover) and (pointer: fine) {
      .hero-visual:hover .hero-glimpse { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
    }
    .glimpse-browser {
      background: #0b1830; border: 1px solid var(--border2);
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 40px 100px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.04);
    }
    .glimpse-browser-bar {
      display: flex; align-items: center; gap: 6px;
      padding: 12px 16px; background: rgba(255,255,255,.03);
      border-bottom: 1px solid var(--border);
    }
    .glimpse-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
    .glimpse-url {
      margin: 0 auto; font-size: 11px; color: var(--muted);
      font-family: 'SF Mono', monospace;
    }
    .glimpse-body {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
      background: var(--border);
    }
    .glimpse-tile { background: #0f2040; padding: 22px; text-align: left; }
    .glimpse-tile-wide { grid-column: 1 / -1; }
    .glimpse-tile-label {
      font-size: 11px; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
    }
    .glimpse-tile-num { font-size: 1.9rem; font-weight: 800; color: var(--text); margin-bottom: 10px; }
    .glimpse-tile-sub { font-size: 11px; color: var(--muted); margin-top: 8px; }
    .glimpse-bar { height: 6px; border-radius: 3px; background: var(--surface2); overflow: hidden; }
    .glimpse-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--blue), #2f8fc4); }
    .glimpse-body-img { background: #0f2040; line-height: 0; }
    .glimpse-body-img img { display: block; width: 100%; height: auto; }
    .glimpse-glow {
      position: absolute; inset: -60px; z-index: -1;
      background: radial-gradient(ellipse 70% 70% at 50% 40%, rgba(243,156,18,.22) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-visual-card {
      position: absolute; left: -32px; bottom: -28px; z-index: 2;
      display: flex; align-items: center; gap: 12px;
      background: rgba(28,23,18,.9); backdrop-filter: blur(16px);
      border: 1px solid var(--border2); border-radius: 14px;
      padding: 14px 18px; max-width: 260px;
      box-shadow: 0 20px 50px rgba(0,0,0,.5);
    }
    .hvc-avatar {
      width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg,#0d9488,#14b8a6);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 14px; color: #fff;
    }
    .hvc-name { font-size: 13px; font-weight: 700; color: var(--text); }
    .hvc-quote { font-size: 12px; color: var(--sub); font-style: italic; }
    @media (max-width: 980px) {
      .hero-glimpse { transform: none; }
      @media (hover: hover) and (pointer: fine) {
        .hero-visual:hover .hero-glimpse { transform: none; }
      }
      .hero-visual-card { left: 50%; transform: translateX(-50%); bottom: -24px; }
    }
    @media (max-width: 640px) {
      .glimpse-body { grid-template-columns: 1fr; }
      .glimpse-tile-wide { grid-column: 1; }
      .hero-visual { margin-top: 44px; }
      .hero-visual-card { display: none; }
    }

    /* ── COUNTDOWN ──────────────────────────────────────────────────── */
    .countdown-section { text-align: center; padding: 80px 5% 100px; position: relative; overflow: hidden; }
    .countdown-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 700px 300px at 50% 20%, rgba(91,191,237,.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .countdown-label {
      position: relative; font-size: clamp(9px,2.2vw,13px); font-weight: 700; letter-spacing: .12em;
      color: var(--blue); text-transform: uppercase; margin-bottom: 20px;
    }
    .countdown {
      position: relative;
      display: flex; gap: clamp(4px,1.6vw,12px);
      justify-content: center; align-items: center; flex-wrap: nowrap;
    }
    .countdown-unit {
      position: relative;
      background: rgba(16,34,66,.6); border: 1px solid var(--border2);
      border-radius: 10px; padding: clamp(6px,1.8vw,18px) clamp(8px,2.6vw,24px); min-width: 0;
      backdrop-filter: blur(20px) saturate(1.6); overflow: hidden;
    }
    .countdown-unit .num {
      position: relative;
      font-size: clamp(.95rem,4vw,2.2rem); font-weight: 700; color: #fff;
      line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -1px; white-space: nowrap;
    }
    .countdown-unit .lbl {
      position: relative;
      font-size: clamp(7px,1.6vw,10px); color: var(--muted); margin-top: 6px;
      text-transform: uppercase; letter-spacing: .08em; font-weight: 600; white-space: nowrap;
    }
    .cd-sep {
      font-size: clamp(.85rem,3vw,1.6rem); font-weight: 700; color: var(--muted);
      align-self: center; flex-shrink: 0;
    }

    /* ── U-BOOT (ersetzt Rakete): volle Breite, Seitenansicht ─────────── */
    .sub-full-wrap { position: relative; width: 100%; max-width: 1160px; margin: 36px auto 0; }
    .sub-full-svg { display: block; width: 100%; height: auto; filter: drop-shadow(0 0 22px rgba(91,191,237,.22)); }
    .sub-bob { animation: sub-bob 5s ease-in-out infinite; }
    @keyframes sub-bob { 0%,100% { transform: translateY(-1px) rotate(-.6deg); } 50% { transform: translateY(-13px) rotate(.6deg); } }
    .sub-hull-outline { fill: #1c3360; stroke: #5bbfed; stroke-width: 2.2; stroke-opacity: .6; stroke-linejoin: round; }
    .sub-tail-fin { fill: #1c3360; stroke: #5bbfed; stroke-width: 2; stroke-linejoin: round; }
    .sub-prop-hub { fill: #1c3360; stroke: #5bbfed; stroke-width: 1.6; }
    .sub-prop-blade { fill: #5bbfed; opacity: .85; }
    .sub-prop-spin { transform-origin: 88px 215px; animation: prop-spin 1.2s linear infinite; }
    @keyframes prop-spin { to { transform: rotate(360deg); } }
    .sub-wake-bubble {
      position: absolute; border-radius: 50%; z-index: 1;
      background: radial-gradient(circle, rgba(255,255,255,.75) 0%, rgba(125,208,245,.4) 70%, transparent 100%);
      opacity: 0; animation: wake-bubble-rise 2.6s ease-in infinite;
    }
    @keyframes wake-bubble-rise { 0% { opacity: 0; transform: translate(0,0) scale(.8); } 12% { opacity: .8; } 80% { opacity: .2; } 100% { opacity: 0; transform: translate(-14px,-46px) scale(1.2); } }
    .sub-wake-streak { fill: #7dd0f5; animation: streak-flow 1.6s linear infinite; opacity: 0; }
    @keyframes streak-flow { 0% { opacity: 0; transform: translateX(0) scaleX(.4); } 15% { opacity: .9; transform: translateX(-6px) scaleX(1); } 70% { opacity: .5; } 100% { opacity: 0; transform: translateX(-90px) scaleX(1.6); } }
    .sub-tower-body { fill: #1c3360; stroke: #5bbfed; stroke-width: 2.2; stroke-linejoin: round; }
    .sub-window { fill: #0f2040; stroke: #7dd0f5; stroke-width: 1.4; opacity: .8; }
    .sub-tower-hatch { fill: #7dd0f5; opacity: .5; }
    .sub-mast { fill: #7dd0f5; }
    .sub-periscope { transform-origin: 650px 75px; animation: periscope-extend 9s ease-in-out infinite; }
    @keyframes periscope-extend {
      0% { transform: scaleY(.3); }
      15% { transform: scaleY(1); }
      65% { transform: scaleY(1); }
      80% { transform: scaleY(.3); }
      100% { transform: scaleY(.3); }
    }
    .sub-peri-head-spin { transform-origin: 650px 35.5px; animation: head-pan 9s ease-in-out infinite; }
    @keyframes head-pan {
      0% { transform: scaleX(1); }
      15% { transform: scaleX(1); }
      30% { transform: scaleX(0); }
      45% { transform: scaleX(-1); }
      55% { transform: scaleX(0); }
      65% { transform: scaleX(1); }
      100% { transform: scaleX(1); }
    }
    .sub-bubble {
      position: absolute; border-radius: 50%; z-index: 1;
      background: radial-gradient(circle, rgba(255,255,255,.7) 0%, rgba(125,208,245,.35) 70%, transparent 100%);
      opacity: 0; animation: bubble-rise 4s ease-in infinite;
    }
    @keyframes bubble-rise { 0% { opacity: 0; transform: translateY(0) scale(1); } 15% { opacity: .75; } 75% { opacity: .25; } 100% { opacity: 0; transform: translateY(-16%) scale(1.3); } }
    .water-overlay-full {
      position: absolute; left: 0; right: 0; top: 35.7%; bottom: 0; z-index: 3; pointer-events: none;
      background: linear-gradient(180deg, rgba(91,191,237,.22) 0%, rgba(14,30,55,.4) 100%);
      border-radius: 0 0 18px 18px;
    }
    .water-wave-svg-full { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 4; overflow: visible; pointer-events: none; }
    .wave-back { fill: none; stroke: rgba(91,191,237,.6); stroke-width: 2.6; stroke-linecap: round; animation: wave-scroll-a 5s linear infinite; }
    .wave-front { fill: none; stroke: rgba(255,255,255,.7); stroke-width: 1.8; stroke-linecap: round; animation: wave-scroll-b 3.6s linear infinite; }
    @keyframes wave-scroll-a { to { transform: translateX(-80px); } }
    @keyframes wave-scroll-b { to { transform: translateX(80px); } }
    .sub-foam {
      position: absolute; top: 35.7%; left: 68.2%; transform: translate(-50%,-50%); width: 9%; height: 3.5%; z-index: 4; pointer-events: none;
      background: radial-gradient(ellipse, rgba(255,255,255,.5) 0%, transparent 75%); filter: blur(1.5px);
    }
    .sub-ripple {
      position: absolute; left: 68.2%; top: 35.7%; width: 18px; height: 18px; z-index: 4;
      border: 2px solid rgba(255,255,255,.5); border-radius: 50%;
      transform: translate(-50%,-50%); animation: ripple-expand 3.4s ease-out infinite; pointer-events: none;
    }
    @keyframes ripple-expand { 0% { opacity: .7; transform: translate(-50%,-50%) scale(.3); } 100% { opacity: 0; transform: translate(-50%,-50%) scale(4.2); } }
    @media (prefers-reduced-motion: reduce) {
      .sub-bob, .sub-prop-spin, .sub-periscope, .sub-peri-head-spin,
      .sub-wake-bubble, .sub-wake-streak, .sub-bubble,
      .wave-back, .wave-front, .sub-ripple { animation: none; }
    }

    /* ── SECTION LAYOUT ─────────────────────────────────────────────── */
    section { padding: 128px 5%; position: relative; }
    .section-inner { max-width: 1160px; margin: 0 auto; }
    .section-eyebrow {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; margin-bottom: 16px;
    }
    .eyebrow-line {
      height: 1px; width: 32px;
      background: linear-gradient(90deg, transparent, #5bbfed);
    }
    .eyebrow-line.right { background: linear-gradient(90deg, #5bbfed, transparent); }
    .eyebrow-text {
      font-size: 12px; font-weight: 700; letter-spacing: .12em;
      color: #7dd0f5; text-transform: uppercase;
    }
    h2 {
      text-align: center;
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-weight: 900; letter-spacing: -1.5px;
      margin-bottom: 20px; line-height: 1.08;
    }
    .section-sub {
      text-align: center; color: var(--sub);
      font-size: 1.1rem; max-width: 560px;
      margin: 0 auto 56px; line-height: 1.7;
    }

    /* ── FEATURES ───────────────────────────────────────────────────── */
    .features-section { background: var(--bg2); }
    .features-section::before {
      content: ''; position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(243,156,18,.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(91,191,237,.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: minmax(160px, auto);
      gap: 16px;
    }
    @media (max-width: 900px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .bento-grid { grid-template-columns: 1fr; } }
    .feature-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 20px; padding: 32px;
      position: relative; overflow: hidden;
      transition: background .25s, border-color .25s, transform .25s;
    }
    .feature-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(243,156,18,.06) 0%, transparent 50%);
      opacity: 0; transition: opacity .3s;
    }
    @media (hover: hover) and (pointer: fine) {
      .feature-card:hover { background: rgba(243,156,18,.05); border-color: rgba(243,156,18,.3); transform: translateY(-3px); }
      .feature-card:hover::before { opacity: 1; }
    }
    .feature-card-hero {
      grid-column: 1 / 3; grid-row: 1 / 3;
      display: flex; flex-direction: column; justify-content: flex-end;
      background: linear-gradient(160deg, rgba(243,156,18,.1), var(--surface) 60%);
    }
    .feature-card-hero h3 { font-size: 1.5rem; margin-bottom: 14px; }
    .feature-card-hero p { font-size: 1rem; max-width: 420px; }
    .feature-card-hero .feat-icon { width: 64px; height: 64px; margin-bottom: 28px; }
    .feature-card-hero .feat-icon svg { width: 32px; height: 32px; }
    @media (max-width: 900px) { .feature-card-hero { grid-column: 1 / 3; grid-row: auto; } }
    @media (max-width: 640px) { .feature-card-hero { grid-column: 1; } }

    .feature-card-wide {
      grid-column: 1 / -1;
      display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
      background: linear-gradient(120deg, rgba(46,204,113,.07), var(--surface) 55%);
    }
    @media (max-width: 900px) { .feature-card-wide { grid-column: 1 / 3; grid-template-columns: 1fr; } }
    @media (max-width: 640px) { .feature-card-wide { grid-column: 1; grid-template-columns: 1fr; } }
    .feature-card-wide h3 { font-size: 1.4rem; margin-bottom: 12px; }
    .feature-card-wide .fcw-text p { font-size: 1rem; max-width: 480px; }
    .fcw-visual { display: flex; justify-content: center; }
    .fcw-belt-card {
      width: 100%; max-width: 300px;
      background: #0f2040; border: 1px solid var(--border2);
      border-radius: 18px; padding: 22px;
      box-shadow: 0 20px 50px rgba(0,0,0,.4);
    }
    .fcw-belt-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
    .fcw-avatar {
      width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg,#14294d,#1c3360);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 14px; color: #fff;
    }
    .fcw-name { font-size: .95rem; font-weight: 700; color: var(--text); }
    .fcw-streak { font-size: .8rem; color: var(--amber); margin-top: 2px; }
    .fcw-belt-label {
      font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 10px;
    }
    .fcw-stripes { display: flex; gap: 6px; margin-bottom: 16px; }
    .fcw-stripe { flex: 1; height: 16px; border-radius: 4px; background: var(--surface2); }
    .fcw-stripe.filled { background: linear-gradient(90deg, var(--amber), #fde68a); }
    .fcw-next {
      font-size: .85rem; color: var(--text); font-weight: 600;
      background: var(--green-dim); border-radius: 10px; padding: 10px 12px;
    }

    /* SVG icon containers */
    .feat-icon {
      width: 48px; height: 48px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; flex-shrink: 0;
    }
    .feat-icon svg { width: 24px; height: 24px; }
    .fi-blue   { background: rgba(243,156,18,.15);  box-shadow: 0 0 0 1px rgba(243,156,18,.2); }
    .fi-green  { background: rgba(46,204,113,.12);   box-shadow: 0 0 0 1px rgba(46,204,113,.2); }
    .fi-purple { background: rgba(91,191,237,.14);  box-shadow: 0 0 0 1px rgba(91,191,237,.2); }
    .fi-amber  { background: rgba(243,156,18,.12);  box-shadow: 0 0 0 1px rgba(243,156,18,.2); }
    .fi-teal   { background: rgba(91,191,237,.12);  box-shadow: 0 0 0 1px rgba(91,191,237,.2); }
    .fi-rose   { background: rgba(224,90,58,.10);   box-shadow: 0 0 0 1px rgba(224,90,58,.2); }

    .feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
    .feature-card p  { font-size: .9rem; color: var(--sub); line-height: 1.65; }

    /* ── COMPARE (Vorher/Nachher) ─────────────────────────────────────── */
    .compare-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
      max-width: 900px; margin: 0 auto;
    }
    @media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }
    .compare-col { border-radius: 16px; padding: 28px; }
    .compare-before {
      background: rgba(224,90,58,.05); border: 1px solid rgba(224,90,58,.18);
    }
    .compare-after {
      background: var(--blue-dim); border: 1px solid rgba(243,156,18,.25);
    }
    .compare-col-label {
      display: flex; align-items: center; gap: 10px;
      font-size: 1rem; font-weight: 700; color: var(--text);
      margin-bottom: 20px;
    }
    .compare-icon {
      width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 800;
    }
    .compare-icon-x     { background: rgba(244,63,94,.15); color: #f43f5e; }
    .compare-icon-check { background: var(--green-dim); color: var(--green); }
    .compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .compare-list li {
      font-size: .9rem; color: var(--sub); line-height: 1.5;
      padding-left: 20px; position: relative;
    }
    .compare-before .compare-list li::before {
      content: '–'; position: absolute; left: 0; color: #f43f5e; font-weight: 700;
    }
    .compare-after .compare-list li {
      color: var(--text);
    }
    .compare-after .compare-list li::before {
      content: '+'; position: absolute; left: 0; color: var(--green); font-weight: 700;
    }

    /* ── SEGMENTE (Analoge / Umsteiger) ─────────────────────────────── */
    .segments-section { background: var(--bg2); }
    .segment-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
      max-width: 980px; margin: 0 auto;
    }
    @media (max-width: 760px) { .segment-grid { grid-template-columns: 1fr; } }
    .segment-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 20px; padding: 36px 32px;
      display: flex; flex-direction: column;
      transition: border-color .25s, transform .25s;
    }
    @media (hover: hover) and (pointer: fine) {
      .segment-card:hover { border-color: rgba(243,156,18,.3); transform: translateY(-3px); }
    }
    .segment-kicker {
      font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      color: var(--amber); margin-bottom: 14px;
    }
    .segment-card h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.5px; }
    .segment-card > p { font-size: .95rem; color: var(--sub); line-height: 1.7; margin-bottom: 18px; }
    .segment-pains { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
    .segment-pains li {
      font-size: .88rem; color: var(--sub); line-height: 1.5;
      padding-left: 20px; position: relative;
    }
    .segment-pains li::before { content: '–'; position: absolute; left: 0; color: #f43f5e; font-weight: 700; }
    .segment-promise {
      margin-top: auto;
      background: var(--blue-dim); border: 1px solid rgba(125,208,245,.25);
      border-radius: 12px; padding: 14px 16px;
      font-size: .92rem; font-weight: 600; color: var(--text); line-height: 1.55;
      margin-bottom: 18px;
    }
    .segment-cta { font-size: .92rem; font-weight: 700; color: #7dd0f5; }

    /* ── VERGLEICHSTABELLE ──────────────────────────────────────────── */
    .vs-table-wrap {
      max-width: 980px; margin: 0 auto;
      background: #0b1830; border: 1px solid var(--border2); border-radius: 18px;
      overflow-x: auto; box-shadow: 0 30px 80px rgba(0,0,0,.4);
    }
    .vs-table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: .88rem; }
    .vs-table th, .vs-table td {
      padding: 14px 18px; text-align: center;
      border-bottom: 1px solid var(--border);
    }
    .vs-table tr:last-child th, .vs-table tr:last-child td { border-bottom: none; }
    .vs-table th { font-weight: 700; color: var(--text); }
    .vs-table thead th { font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--sub); padding: 18px; }
    .vs-table tbody th[scope="row"] { text-align: left; font-weight: 600; color: var(--text); line-height: 1.4; }
    .vs-table .vs-col-mb { background: rgba(53,102,232,.10); }
    .vs-table thead .vs-col-mb { color: #7dd0f5; font-weight: 800; }
    .vs-x { color: #f43f5e; font-weight: 700; }
    .vs-part { color: var(--amber); font-weight: 600; font-size: .8rem; }
    .vs-check { color: var(--green); font-weight: 800; }
    .vs-price-anchor {
      max-width: 720px; margin: 36px auto 0; text-align: center;
      font-size: 1.05rem; color: var(--text); line-height: 1.7;
    }
    .vs-price-anchor strong { color: var(--amber); }
    .vs-footnote { max-width: 720px; margin: 14px auto 0; text-align: center; font-size: .78rem; color: var(--muted); }

    /* ── WECHSEL-PAKET ──────────────────────────────────────────────── */
    .switch-section { background: var(--bg2); }
    .switch-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
      max-width: 1060px; margin: 0 auto;
    }
    @media (max-width: 900px) { .switch-grid { grid-template-columns: 1fr; max-width: 560px; } }
    .switch-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 20px; padding: 32px;
      position: relative; overflow: hidden;
      transition: border-color .25s, transform .25s;
    }
    @media (hover: hover) and (pointer: fine) {
      .switch-card:hover { border-color: rgba(243,156,18,.3); transform: translateY(-3px); }
    }
    .switch-risk {
      display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: #f43f5e;
      background: rgba(244,63,94,.1); border: 1px solid rgba(244,63,94,.25);
      border-radius: 100px; padding: 4px 12px; margin-bottom: 18px;
    }
    .switch-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -.4px; }
    .switch-card p { font-size: .9rem; color: var(--sub); line-height: 1.65; }
    .switch-card p strong { color: var(--text); }
    .switch-onboarding {
      max-width: 1060px; margin: 20px auto 0;
      background: var(--blue-dim); border: 1px solid rgba(125,208,245,.25);
      border-radius: 20px; padding: 28px 32px;
      display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    }
    .switch-onboarding p { font-size: .95rem; color: var(--text); line-height: 1.65; flex: 1; min-width: 260px; margin: 0; }
    .switch-cta-row { text-align: center; margin-top: 40px; }

    /* ── PREVIEW STRIP ──────────────────────────────────────────────── */
    .preview-section { padding: 96px 5%; text-align: center; overflow: hidden; }
    .preview-browser {
      max-width: 980px; margin: 52px auto 0; text-align: left;
      background: #0b1830; border: 1px solid var(--border2);
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,.5);
    }
    .preview-browser .preview-strip { margin-top: 0; padding: 24px 24px 24px; }
    .preview-strip {
      display: flex; gap: 16px; margin-top: 52px;
      overflow-x: auto; padding-bottom: 16px;
      scrollbar-width: none; justify-content: center;
      justify-content: safe center;
      scroll-snap-type: x proximity;
      -webkit-mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
      mask-image: linear-gradient(to right, transparent 0, black 32px, black calc(100% - 32px), transparent 100%);
    }
    .preview-strip::-webkit-scrollbar { display: none; }
    .preview-strip-img { line-height: 0; }
    .preview-strip-img img { display: block; width: 100%; height: auto; }

    /* ── SCREENS-KARUSSELL ──────────────────────────────────────────── */
    .screens-carousel { max-width: 1040px; margin: 52px auto 0; position: relative; }
    .screens-carousel .preview-browser { max-width: none; margin: 0; }
    .carousel-viewport { overflow: hidden; line-height: 0; }
    .carousel-track { display: flex; transition: transform .55s cubic-bezier(.16,1,.3,1); will-change: transform; }
    .carousel-slide { min-width: 100%; line-height: 0; }
    .carousel-slide img { display: block; width: 100%; height: auto; }
    .carousel-arrow {
      position: absolute; top: calc(50% + 18px); transform: translateY(-50%);
      width: 46px; height: 46px; border-radius: 50%;
      background: rgba(13,17,32,.82); border: 1px solid var(--border2); color: var(--text);
      font-size: 24px; line-height: 1; cursor: pointer; z-index: 3;
      display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(8px); transition: background .2s ease, transform .2s ease, border-color .2s ease;
    }
    .carousel-arrow:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-50%) scale(1.06); }
    .carousel-arrow.prev { left: -14px; }
    .carousel-arrow.next { right: -14px; }
    .carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
    .cdot {
      padding: 9px 20px; border-radius: 100px; border: 1px solid var(--border2);
      background: transparent; color: var(--sub); font-family: inherit; font-size: 13px; font-weight: 600;
      cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease;
    }
    .cdot:hover { color: var(--text); }
    .cdot.active { background: var(--blue-dim); border-color: var(--blue); color: #7dd0f5; }
    @media (max-width: 640px) { .carousel-arrow { display: none; } }
    @media (prefers-reduced-motion: reduce) { .carousel-track { transition: none; } }
    .preview-card {
      flex-shrink: 0; width: 220px; scroll-snap-align: center;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 16px; padding: 20px; text-align: left;
      transition: transform .25s, border-color .25s;
    }
    .preview-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
    .preview-dot-btn {
      width: 6px; height: 6px; border-radius: 50%; padding: 0; border: none;
      background: var(--border2); cursor: pointer;
      transition: background .25s, transform .25s;
    }
    .preview-dot-btn.active { background: #7dd0f5; transform: scale(1.4); }
    @media (hover: hover) and (pointer: fine) {
      .preview-card:hover { transform: translateY(-4px); border-color: rgba(243,156,18,.35); }
    }
    .pc-head {
      font-size: 11px; font-weight: 700; letter-spacing: .06em;
      color: var(--muted); text-transform: uppercase; margin-bottom: 14px;
    }
    .preview-bar { height: 8px; border-radius: 4px; background: var(--surface2); margin-bottom: 8px; overflow: hidden; }
    .preview-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--blue), #2f8fc4); }
    .preview-number { font-size: 1.8rem; font-weight: 800; color: var(--text); line-height: 1; margin-top: 10px; }
    .preview-label  { font-size: 12px; color: var(--sub); margin-top: 4px; }
    .preview-list { list-style: none; }
    .preview-list li {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; color: var(--sub);
      padding: 4px 0; border-bottom: 1px solid var(--border);
    }
    .preview-list li:last-child { border: none; }
    .preview-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
    .avatar-row { display: flex; margin-top: 12px; }
    .avatar {
      width: 32px; height: 32px; border-radius: 50%;
      border: 2px solid var(--bg2);
      display: flex; align-items: center; justify-content: center;
      font-size: 13px; font-weight: 700; color: #fff;
      margin-left: -6px;
    }
    .avatar:first-child { margin-left: 0; }

    /* ── STORY ──────────────────────────────────────────────────────── */
    /* ── Dual Story ──────────────────────────────────────────────────── */
    .story-section { background: var(--bg2); padding: 96px 5%; position: relative; overflow: hidden; }
    .story-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(243,156,18,.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .story-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 64px; align-items: start;
      max-width: 1100px; margin: 0 auto;
    }
    @media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 48px; } }

    .story-block {
      display: flex; gap: 20px; align-items: flex-start;
      padding-bottom: 32px; margin-bottom: 32px;
      border-bottom: 1px solid var(--border);
    }
    .story-icon {
      width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
      background: var(--surface2); box-shadow: 0 0 0 1px var(--border);
      display: flex; align-items: center; justify-content: center;
      margin-top: 2px;
    }
    .story-icon svg { width: 22px; height: 22px; }
    .story-block h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
    .story-block p  { font-size: .9rem; color: var(--sub); line-height: 1.7; }
    .story-block em { color: var(--text); font-style: italic; }
    .story-block strong { color: var(--text); }

    .story-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }

    .story-quote {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 18px; padding: 28px;
      position: relative; overflow: hidden;
    }
    .story-quote::before {
      content: ''; position: absolute; inset: -1px; border-radius: 19px; padding: 1px;
      background: linear-gradient(135deg, rgba(243,156,18,.3), rgba(91,191,237,.2), transparent 60%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
    }
    .quote-mark {
      font-size: 4rem; line-height: .8; color: var(--blue);
      font-family: Georgia, serif; margin-bottom: 12px; opacity: .6;
    }
    .story-quote p { font-size: 1rem; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
    .quote-author { display: flex; align-items: center; gap: 12px; }
    .quote-avatar {
      width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--blue), #2f8fc4);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 800; color: #fff;
    }
    .quote-author strong { display: block; font-size: .9rem; color: var(--text); }
    .quote-author span   { font-size: .8rem; color: var(--muted); }

    .story-stats {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px; padding: 24px;
    }
    .sstats-item { padding: 12px 0; }
    .sstats-divider { height: 1px; background: var(--border); }
    .sstat-num {
      font-size: 1.6rem; font-weight: 800; color: var(--text); line-height: 1;
    }
    .sstat-num span { font-size: 1rem; color: var(--sub); font-weight: 600; }
    .sstat-lbl { font-size: .8rem; color: var(--sub); margin-top: 4px; }

    .story-team {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px; padding: 24px;
    }
    .team-label {
      font-size: 11px; font-weight: 700; letter-spacing: .08em;
      color: var(--muted); text-transform: uppercase; margin-bottom: 18px;
    }
    .team-member {
      display: flex; align-items: center; gap: 12px;
      padding: 10px 8px; margin: 0 -8px; border-radius: 10px;
      border-bottom: 1px solid var(--border);
      transition: background .25s, transform .25s;
    }
    .team-member:last-child { border-bottom: none; padding-bottom: 0; }
    @media (hover: hover) and (pointer: fine) {
      .team-member:hover { background: rgba(255,255,255,.03); transform: translateX(3px); }
    }
    .team-avatar {
      width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 15px; font-weight: 800; color: #fff;
    }
    .team-member strong { display: block; font-size: .9rem; color: var(--text); }
    .team-member span   { font-size: .78rem; color: var(--muted); }

    .story-club {
      background: var(--blue-dim);
      border: 1px solid rgba(243,156,18,.2);
      border-radius: 14px; padding: 18px 20px;
      display: flex; align-items: center; gap: 14px;
    }
    .club-logo {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      background: rgba(243,156,18,.2);
      display: flex; align-items: center; justify-content: center;
    }
    .club-logo svg { width: 20px; height: 20px; }
    .club-name { font-size: .9rem; font-weight: 700; color: var(--text); }
    .club-sub  { font-size: .8rem; color: #7dd0f5; margin-top: 2px; }

    /* ── Dual-column story ────────────────────────────────────────────── */
    .dual-header {
      display: grid; grid-template-columns: 1fr 40px 1fr;
      align-items: center; gap: 0; margin-bottom: 12px;
    }
    .dual-col-label {
      display: flex; align-items: center; gap: 12px;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 12px; padding: 14px 18px;
    }
    .dual-col-label.right { justify-content: flex-end; }
    .dual-col-label strong { display: block; font-size: .95rem; color: var(--text); }
    .dual-col-label span   { font-size: .78rem; color: var(--muted); }
    .dual-header-div { /* center gap */ }

    .dual-beat { margin-bottom: 4px; }
    .beat-label {
      text-align: center; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--muted); padding: 20px 0 10px;
    }
    .dual-row {
      display: grid; grid-template-columns: 1fr 40px 1fr; align-items: stretch; gap: 0;
    }
    .dual-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 12px; padding: 20px 22px;
      font-size: .9rem; color: var(--sub); line-height: 1.7;
    }
    .dual-card strong { color: var(--text); }
    .dual-card em     { color: var(--text); font-style: italic; }
    .matze-card {
      border-left: 3px solid rgba(91,191,237,.6);
      opacity: 0; transform: translateX(-16px);
      transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1);
      transition-delay: .05s;
    }
    .daniel-card {
      border-left: 3px solid rgba(243,156,18,.6);
      opacity: 0; transform: translateX(16px);
      transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1);
      transition-delay: .15s;
    }
    .reveal.visible .matze-card, .reveal.visible .daniel-card { opacity: 1; transform: translateX(0); }
    .dual-connector {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .connector-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--border2); border: 2px solid var(--muted);
      flex-shrink: 0;
      opacity: 0; transform: scale(.4);
      transition: opacity .4s ease, transform .4s cubic-bezier(.34,1.56,.64,1);
      transition-delay: .25s;
    }
    .reveal.visible .connector-dot { opacity: 1; transform: scale(1); }
    .connector-line {
      flex: 1; width: 1px; background: var(--border);
    }

    /* Convergence — Nilesh */
    .dual-convergence { padding: 36px 0 20px; }
    .convergence-lines {
      display: flex; align-items: center; gap: 0; margin-bottom: 28px;
    }
    .conv-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--border)); }
    .conv-line:last-child { background: linear-gradient(90deg, var(--border), transparent); }
    .conv-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--blue); box-shadow: 0 0 12px var(--blue-glow);
      flex-shrink: 0; margin: 0 12px;
    }
    .nilesh-quote {
      margin: 0 auto; max-width: 680px; text-align: center;
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: 16px; padding: 32px 36px;
      position: relative;
      transform: scale(.97);
      transition: transform .5s cubic-bezier(.16,1,.3,1);
    }
    .reveal.visible .nilesh-quote { transform: scale(1); }
    .nilesh-quote::before {
      content: ''; position: absolute; inset: -1px; border-radius: 16px;
      background: linear-gradient(135deg, rgba(243,156,18,.2), rgba(91,191,237,.2));
      z-index: -1;
    }
    .nilesh-quote .quote-mark {
      font-size: 4rem; line-height: .8; color: var(--blue); margin-bottom: 12px;
      font-family: Georgia, serif; display: block;
    }
    .nilesh-quote p {
      font-size: 1.1rem; color: var(--text); line-height: 1.65;
      font-style: italic; margin-bottom: 24px;
    }
    .nilesh-quote footer {
      display: flex; align-items: center; justify-content: center; gap: 12px;
      background: none; border: none; padding: 0;
    }
    .nilesh-quote footer strong { display: block; font-size: .9rem; color: var(--text); }
    .nilesh-quote footer span   { font-size: .78rem; color: var(--muted); }
    .story-nudge { text-align: center; margin-top: 24px; }
    .story-nudge-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: .9rem; font-weight: 600; color: var(--amber);
      text-decoration: none; border-bottom: 1px dashed rgba(243,156,18,.4);
      padding-bottom: 2px;
    }
    .story-nudge-link:hover { text-decoration: none; border-bottom-style: solid; }

    /* Bottom row: team + stats */
    .story-bottom {
      display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px;
    }
    @media (max-width: 700px) { .story-bottom { grid-template-columns: 1fr; } }

    /* Hero claim */
    .story-claim {
      text-align: center; padding: 72px 20px 20px; max-width: 700px; margin: 0 auto;
    }
    .claim-eyebrow {
      font-size: .75rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
    }
    .story-claim h2 {
      font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900;
      line-height: 1.1; letter-spacing: -.03em; color: var(--text);
      margin-bottom: 20px;
    }
    .claim-sub {
      font-size: 1rem; color: var(--sub); line-height: 1.7; max-width: 520px; margin: 0 auto 32px;
    }
    .story-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--blue); color: #fff; font-weight: 600; font-size: .95rem;
      padding: 14px 28px; border-radius: 10px; text-decoration: none;
      transition: opacity .2s, transform .2s;
    }
    @media (hover: hover) and (pointer: fine) {
      .story-cta:hover { opacity: .85; transform: translateY(-1px); text-decoration: none; }
    }

    /* ── App Preview Band ────────────────────────────────────────────── */
    .app-preview-band {
      background: var(--bg); padding: 80px 0 80px;
      position: relative; overflow: hidden;
    }
    .app-preview-band::before {
      content: ''; position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 500px 350px at 20% 60%, rgba(243,156,18,.13) 0%, transparent 65%),
        radial-gradient(ellipse 400px 400px at 50% 50%, rgba(91,191,237,.09) 0%, transparent 65%),
        radial-gradient(ellipse 500px 350px at 80% 60%, rgba(46,138,150,.1) 0%, transparent 65%);
    }
    .app-preview-inner {
      display: flex; align-items: flex-end; justify-content: center;
      gap: 24px; padding: 0 4%;
      perspective: 1400px;
      position: relative; z-index: 1;
    }
    .phone-wrap { flex-shrink: 0; position: relative; transition: z-index .01s; }
    .phone-left  { transform: rotateY(22deg) rotateX(5deg) scale(.82); transform-origin: right center; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
    .phone-right { transform: rotateY(-22deg) rotateX(5deg) scale(.82); transform-origin: left center; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
    .phone-center { transform: rotateX(2deg) translateY(-28px); z-index: 2; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
    @media (hover: hover) and (pointer: fine) {
      .phone-wrap:hover { z-index: 5; }
      .phone-left:hover  { transform: rotateY(12deg) rotateX(2deg) scale(.87) translateY(-12px); }
      .phone-right:hover { transform: rotateY(-12deg) rotateX(2deg) scale(.87) translateY(-12px); }
      .phone-center:hover { transform: rotateX(0deg) translateY(-40px) scale(1.03); }
    }

    /* Glow under each phone */
    .phone-glow {
      position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
      width: 80%; height: 40px; border-radius: 50%; filter: blur(20px);
      pointer-events: none;
    }
    .phone-left  .phone-glow { background: rgba(243,156,18,.5); }
    .phone-center .phone-glow { background: rgba(91,191,237,.5); }
    .phone-right  .phone-glow { background: rgba(46,138,150,.45); }

    .phone-frame {
      width: 210px; height: 400px;
      background: #081328;
      border-radius: 34px;
      padding: 14px 10px 10px;
      position: relative; overflow: hidden;
    }
    /* Gradient border via box-shadow */
    .phone-left .phone-frame  { box-shadow: 0 0 0 1.5px rgba(243,156,18,.5), 0 28px 70px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.08); }
    .phone-center .phone-frame{ box-shadow: 0 0 0 1.5px rgba(91,191,237,.5), 0 40px 90px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.1); }
    .phone-right .phone-frame { box-shadow: 0 0 0 1.5px rgba(46,138,150,.4), 0 28px 70px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,255,255,.08); }

    .phone-notch {
      width: 56px; height: 7px; border-radius: 4px;
      background: rgba(255,255,255,.1); margin: 0 auto 8px;
    }
    .phone-screen { height: calc(100% - 25px); overflow: hidden; }
    .phone-screen img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
    .phone-label {
      text-align: center; margin-top: 16px;
      font-size: .7rem; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase; color: var(--muted);
    }

    /* ── Bärenspiel ───────────────────────────────────────────────────── */
    .bear-section { background: var(--bg2); }
    .bear-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
    .bear-text .section-eyebrow { justify-content: flex-start; }
    .bear-text h2, .bear-text .section-sub { text-align: left; margin-left: 0; }
    .bear-points { list-style: none; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
    .bear-points li { display: flex; gap: 10px; color: var(--text); font-size: .98rem; align-items: flex-start; }
    .bear-points svg { flex-shrink: 0; margin-top: 3px; color: var(--green); }
    .bear-visual { display: flex; justify-content: center; }
    .phone-bear .phone-frame {
      width: 240px; height: 460px;
      box-shadow: 0 0 0 1.5px rgba(34,197,94,.5), 0 40px 90px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.1);
    }
    .phone-bear .phone-glow { background: rgba(34,197,94,.5); }
    @media (max-width: 860px) {
      .bear-grid { grid-template-columns: 1fr; gap: 40px; }
      .bear-text .section-eyebrow { justify-content: center; }
      .bear-text h2, .bear-text .section-sub { text-align: center; }
      .bear-points { align-items: center; }
    }

    /* Shared UI atoms */
    .pm-bar { height: 1px; background: rgba(255,255,255,.07); margin: 6px 0; }
    .pm-title { font-size: .75rem; font-weight: 800; color: #f0f4fa; letter-spacing: -.01em; }
    .pm-sub   { font-size: .55rem; color: #7a99b8; margin-top: 1px; }
    .pm-label { font-size: .52rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #5bbfed; margin: 7px 0 4px; }

    /* Belt badge */
    .belt-tag {
      display: inline-flex; align-items: center; gap: 4px;
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13);
      border-radius: 20px; padding: 2px 7px 2px 6px;
      font-size: .5rem; color: #f0f4fa; font-weight: 700; white-space: nowrap;
    }
    .belt-stripes { display: flex; gap: 2px; align-items: center; }
    .bs { width: 4px; height: 9px; border-radius: 1px; background: rgba(255,255,255,.15); }
    .bs.y { background: #f39c12; }
    .bs.g { background: #2ecc71; }

    /* Attendance screen */
    .att-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3px; }
    .att-date { font-size: .55rem; color: #5bbfed; font-weight: 700; }
    .att-tabs { display: flex; gap: 0; margin-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.07); }
    .att-tab { font-size: .48rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 6px; color: #7a99b8; }
    .att-tab.active { color: #5bbfed; border-bottom: 2px solid #5bbfed; margin-bottom: -1px; }
    .att-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 8px; padding: 7px 7px 5px; margin-bottom: 5px; }
    .att-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
    .att-name { font-size: .62rem; font-weight: 800; color: #5bbfed; }
    .att-actions { display: flex; gap: 3px; }
    .att-btn { width: 20px; height: 20px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: .6rem; border: none; cursor: default; }
    .att-btn.ok { background: rgba(46,204,113,.25); color: #2ecc71; }
    .att-btn.no { background: rgba(239,68,68,.25); color: #ef4444; }
    .att-btn.late{ background: rgba(255,255,255,.1); color: #a8bdd4; }
    .att-progress { height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; margin-top: 4px; }
    .att-fill { height: 100%; border-radius: 2px; }
    .att-count { font-size: .45rem; color: #7a99b8; margin-top: 2px; }

    /* Members screen */
    .mem-tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 7px; }
    .mem-tab { font-size: .45rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 5px; color: #7a99b8; flex-shrink: 0; }
    .mem-tab.active { color: #5bbfed; border-bottom: 2px solid #5bbfed; margin-bottom: -1px; }
    .mem-search { height: 20px; border-radius: 6px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); margin-bottom: 7px; }
    .mem-row { display: flex; align-items: center; gap: 6px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
    .mem-av { width: 22px; height: 22px; border-radius: 50%; font-size: .55rem; font-weight: 800; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .mem-info { flex: 1; min-width: 0; }
    .mem-name { font-size: .6rem; font-weight: 700; color: #f0f4fa; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .mem-detail { font-size: .48rem; color: #7a99b8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* Grading screen */
    .grade-hero { display: flex; align-items: center; gap: 8px; padding-bottom: 7px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 7px; }
    .grade-av { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.12); font-size: .85rem; font-weight: 800; color: #f0f4fa; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .grade-name { font-size: .75rem; font-weight: 800; color: #f0f4fa; letter-spacing: .02em; text-transform: uppercase; }
    .grade-sub { font-size: .52rem; color: #7a99b8; }
    .grade-tabs { display: flex; gap: 0; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 8px; }
    .grade-tab { font-size: .5rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 8px; color: #7a99b8; }
    .grade-tab.active { color: #5bbfed; border-bottom: 2px solid #5bbfed; margin-bottom: -1px; }
    .grade-belt-box { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 8px 10px; margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; }
    .grade-belt-name { font-size: .7rem; font-weight: 700; color: #f0f4fa; }
    .grade-belt-stripes { display: flex; gap: 3px; }
    .gbs { width: 6px; height: 14px; border-radius: 2px; background: rgba(255,255,255,.12); }
    .gbs.y { background: #f39c12; }
    .grade-stripe-label { font-size: .5rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #7a99b8; margin-bottom: 5px; }
    .grade-stripe-btns { display: flex; gap: 4px; margin-bottom: 8px; }
    .gsb { width: 26px; height: 24px; border-radius: 6px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); font-size: .6rem; font-weight: 700; color: #7a99b8; display: flex; align-items: center; justify-content: center; }
    .gsb.active { background: rgba(245,158,11,.35); border-color: #f39c12; color: #fde68a; }
    .grade-len-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
    .gls { height: 22px; border-radius: 5px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); font-size: .55rem; font-weight: 700; color: #a8bdd4; display: flex; align-items: center; justify-content: center; }

    /* Kid progress screen (Fortschritt fürs Kind) */
    .kid-header { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
    .kid-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg,#14294d,#1c3360); display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 800; color: #fff; flex-shrink: 0; }
    .kid-name { font-size: .68rem; font-weight: 800; color: #f0f4fa; }
    .kid-streak { font-size: .52rem; color: #f39c12; margin-top: 1px; }
    .kid-belt-hero { background: rgba(243,156,18,.08); border: 1px solid rgba(243,156,18,.2); border-radius: 10px; padding: 10px; margin-bottom: 6px; }
    .kid-belt-name { font-size: .68rem; font-weight: 800; color: #f0f4fa; margin-bottom: 6px; }
    .kid-belt-stripes { display: flex; gap: 4px; margin-bottom: 6px; }
    .kid-belt-stripes .gbs { width: 100%; height: 12px; }
    .kid-belt-sub { font-size: .52rem; color: #a8bdd4; }
    .kid-goal { font-size: .55rem; font-weight: 700; color: #2ecc71; background: rgba(46,204,113,.1); border-radius: 8px; padding: 7px 9px; margin-bottom: 6px; }
    .kid-week { display: flex; gap: 5px; margin-bottom: 6px; }
    .kid-day { flex: 1; text-align: center; font-size: .5rem; font-weight: 700; color: #7a99b8; background: rgba(255,255,255,.05); border-radius: 6px; padding: 5px 0; }
    .kid-day.done { color: #2ecc71; background: rgba(46,204,113,.14); }
    .kid-badges { display: flex; gap: 6px; }
    .kid-badge { flex: 1; aspect-ratio: 1; border-radius: 8px; background: rgba(243,156,18,.12); border: 1px solid rgba(243,156,18,.25); display: flex; align-items: center; justify-content: center; font-size: .85rem; }
    .kid-badge.locked { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); opacity: .5; }

    @media (max-width: 640px) {
      .app-preview-inner { gap: 10px; }
      .phone-frame { width: 150px; height: 290px; border-radius: 24px; }
      .phone-left, .phone-right { transform: rotateY(14deg) rotateX(4deg) scale(.8); }
    }

    /* Mobile: stack columns */
    @media (max-width: 760px) {
      .dual-header, .dual-row { grid-template-columns: 1fr; }
      .dual-col-label.right   { justify-content: flex-start; }
      .dual-header-div, .dual-connector { display: none; }
      .dual-card { margin-bottom: 8px; }
      .nilesh-quote { padding: 24px 20px; }
      .nilesh-quote p { font-size: .95rem; }
    }

    /* ── EARLY ADOPTER ──────────────────────────────────────────────── */
    .early-section {
      padding: 96px 5%;
      background: var(--bg2);
      position: relative; overflow: hidden;
    }
    .early-section::before {
      content: ''; position: absolute;
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(243,156,18,.08) 0%, transparent 65%);
      left: 50%; top: 50%; transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .early-inner {
      max-width: 860px; margin: 0 auto;
      position: relative;
    }
    .early-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--amber-dim); border: 1px solid rgba(243,156,18,.3);
      color: var(--amber); padding: 6px 16px; border-radius: 100px;
      font-size: 12px; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase; margin-bottom: 24px;
    }
    .early-section h2 { text-align: center; margin-bottom: 16px; }
    .early-sub {
      text-align: center; color: var(--sub);
      font-size: 1rem; max-width: 580px;
      margin: 0 auto 52px; line-height: 1.7;
    }

    /* Spots counter */
    .spots-row {
      display: flex; align-items: center; justify-content: center;
      gap: 16px; margin-bottom: 40px;
    }
    .spots-dots {
      display: flex; gap: 8px;
    }
    .spot-dot {
      width: 12px; height: 12px; border-radius: 50%;
      background: var(--amber); box-shadow: 0 0 8px rgba(243,156,18,.5);
    }
    .spot-dot.taken {
      background: var(--surface2); box-shadow: none;
      border: 1px solid var(--border);
    }
    .spots-label {
      font-size: 14px; color: var(--sub);
    }
    .spots-label strong { color: var(--amber); }

    /* Benefits grid */
    .early-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px; margin-bottom: 48px;
    }
    .early-benefit {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px; padding: 28px;
      display: flex; gap: 18px; align-items: flex-start;
      transition: border-color .25s, transform .25s, background .25s;
    }
    @media (hover: hover) and (pointer: fine) {
      .early-benefit:hover { border-color: rgba(243,156,18,.35); transform: translateY(-3px); background: rgba(243,156,18,.04); }
    }
    .benefit-icon {
      width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
      background: var(--amber-dim); box-shadow: 0 0 0 1px rgba(243,156,18,.2);
      display: flex; align-items: center; justify-content: center;
    }
    .benefit-icon svg { width: 24px; height: 24px; }
    .benefit-text h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
    .benefit-text p  { font-size: .85rem; color: var(--sub); line-height: 1.5; }

    /* Early adopter form */
    .early-form-box {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: 20px; padding: 36px;
      position: relative; overflow: hidden;
    }
    .early-form-box::before {
      content: ''; position: absolute;
      inset: -1px; border-radius: 21px; padding: 1px;
      background: linear-gradient(135deg, rgba(243,156,18,.3), rgba(243,156,18,.2), transparent 60%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude;
      pointer-events: none;
    }
    .early-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    @media (max-width: 580px) { .early-form { grid-template-columns: 1fr; } }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group.full { grid-column: 1 / -1; }
    .form-group label {
      font-size: 12px; font-weight: 600; color: var(--sub);
      text-transform: uppercase; letter-spacing: .06em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: rgba(255,255,255,.05);
      border: 1px solid var(--border);
      border-radius: 10px;
      color: var(--text);
      font-size: 14px; font-family: inherit;
      padding: 12px 14px; outline: none;
      transition: border-color .2s;
      width: 100%;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--amber); }
    .form-group input:focus-visible,
    .form-group select:focus-visible,
    .form-group textarea:focus-visible { outline: 2px solid var(--amber); outline-offset: 1px; }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--muted); }
    .form-group select option { background: #16284a; color: var(--text); }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .btn-amber {
      grid-column: 1 / -1;
      background: linear-gradient(135deg, var(--amber), #c9790f);
      color: #1a1008; font-weight: 800; font-size: 15px;
      padding: 14px 32px; border-radius: 12px;
      border: none; cursor: pointer;
      box-shadow: 0 4px 24px rgba(243,156,18,.35);
      transition: opacity .2s, transform .15s;
    }
    .btn-amber:hover { opacity: .88; transform: translateY(-1px); }
    .btn-amber:disabled { opacity: .5; cursor: not-allowed; transform: none; }
    .early-note {
      text-align: center; margin-top: 16px;
      font-size: 12px; color: var(--muted);
    }

    /* ── ROADMAP ────────────────────────────────────────────────────── */
    .roadmap-section { }
    .roadmap-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 60% at 50% 100%, rgba(243,156,18,.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .timeline { max-width: 680px; margin: 0 auto; }
    .tl-item { display: flex; gap: 28px; position: relative; }
    .tl-item:not(:last-child)::before {
      content: ''; position: absolute;
      left: 23px; top: 48px;
      width: 2px; height: calc(100% - 10px);
      background: linear-gradient(to bottom, var(--border2), transparent);
    }
    .tl-left { flex-shrink: 0; }
    .tl-dot {
      width: 48px; height: 48px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 800; z-index: 1; flex-shrink: 0;
    }
    .tl-dot.done   { background: var(--green-dim);  border: 1px solid rgba(46,204,113,.3);     color: var(--green); }
    .tl-dot.active { background: var(--blue-dim);   border: 1px solid rgba(53,102,232,.4);    color: #7dd0f5; box-shadow: 0 0 16px var(--blue-glow); }
    .tl-dot.soon   { background: var(--surface);    border: 1px solid var(--border);           color: var(--muted); }
    .tl-body { padding: 8px 0 48px; }
    .tl-tag {
      display: inline-block; font-size: 11px; font-weight: 700;
      padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; letter-spacing: .04em;
    }
    .tag-done   { background: var(--green-dim);  color: var(--green); border: 1px solid rgba(46,204,113,.2); }
    .tag-active { background: var(--blue-dim);   color: #7dd0f5;      border: 1px solid rgba(53,102,232,.25); }
    .tag-soon   { background: var(--surface);    color: var(--muted); border: 1px solid var(--border); }
    .tl-body h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
    .tl-body p  { font-size: .95rem; color: var(--sub); line-height: 1.65; }

    /* ── CTA ────────────────────────────────────────────────────────── */
    .cta-section { padding: 120px 5%; text-align: center; position: relative; overflow: hidden; }
    .cta-section::before {
      content: ''; position: absolute;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(243,156,18,.18) 0%, transparent 65%);
      left: 50%; top: 50%; transform: translate(-50%, -50%);
      pointer-events: none;
    }
    .cta-box {
      position: relative; max-width: 640px; margin: 0 auto;
      background: var(--surface); border: 1px solid var(--border2);
      border-radius: 24px; padding: 60px 48px; backdrop-filter: blur(20px);
    }
    .cta-box::before {
      content: ''; position: absolute; inset: -1px; border-radius: 25px; padding: 1px;
      background: linear-gradient(135deg, rgba(243,156,18,.4), rgba(91,191,237,.3), transparent 60%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
    }
    .cta-box h2 { margin-bottom: 12px; }
    .cta-box p  { color: var(--sub); margin-bottom: 36px; }

    /* ── FAQ ────────────────────────────────────────────────────────── */
    .faq-section { padding: 96px 5%; background: var(--bg2); }
    .faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
    .faq-item {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 14px; overflow: hidden;
    }
    .faq-q {
      width: 100%; background: none; border: none; color: var(--text);
      font-family: inherit; font-size: .95rem; font-weight: 600;
      padding: 20px 24px; text-align: left; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      transition: color .2s;
    }
    .faq-q:hover { color: #7dd0f5; }
    .faq-chevron { flex-shrink: 0; transition: transform .3s; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }
    .faq-a {
      display: grid; grid-template-rows: 0fr;
      transition: grid-template-rows .35s cubic-bezier(.16,1,.3,1);
      color: var(--sub); font-size: .9rem; line-height: 1.7;
    }
    .faq-a > div { overflow: hidden; padding: 0 24px; }
    .faq-item.open .faq-a { grid-template-rows: 1fr; }
    .faq-item.open .faq-a > div { padding-bottom: 20px; }

    /* ── FOOTER ─────────────────────────────────────────────────────── */
    footer { background: #071223; border-top: 1px solid var(--border); padding: 64px 5% 40px; }
    .footer-grid {
      display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
      gap: 48px; max-width: 1140px; margin: 0 auto 48px;
    }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
    .footer-desc { font-size: .9rem; color: var(--sub); line-height: 1.7; margin-top: 16px; max-width: 280px; }
    .footer-col h4 {
      font-size: 11px; font-weight: 700; letter-spacing: .1em;
      color: var(--muted); text-transform: uppercase; margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { color: var(--sub); font-size: .9rem; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--text); text-decoration: none; }
    .footer-col p { color: var(--sub); font-size: .875rem; line-height: 1.7; }
    .footer-bottom {
      max-width: 1140px; margin: 0 auto;
      border-top: 1px solid var(--border); padding-top: 28px;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { color: var(--muted); font-size: .825rem; }

    /* ── IMPRESSUM ──────────────────────────────────────────────────── */
    #impressum { background: #071223; border-top: 1px solid var(--border); padding: 80px 5%; }
    .impressum-box {
      max-width: 700px; margin: 0 auto;
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 18px; padding: 40px;
    }
    .impressum-box h2 { text-align: left; margin-bottom: 24px; font-size: 1.5rem; font-weight: 800; }
    .impressum-box p  { color: var(--sub); font-size: .9rem; margin-bottom: 6px; }
    .impressum-box strong { color: var(--text); }
    .impressum-spacer { margin-top: 20px; }

    /* ── REVEAL ─────────────────────────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-scale { transform: translateY(16px) scale(.94); }
    .reveal-scale.visible { transform: translateY(0) scale(1); }
    .reveal-left  { transform: translateX(-32px); }
    .reveal-left.visible  { transform: translateX(0); }
    .reveal-right { transform: translateX(32px); }
    .reveal-right.visible { transform: translateX(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }
    .reveal-delay-5 { transition-delay: .5s; }

    /* ── REDUCED MOTION ─────────────────────────────────────────────── */
    @media (prefers-reduced-motion: reduce) {
      .orb-1, .orb-2, .orb-3, .grad, .nav-pill .dot { animation: none; }
      .reveal, .reveal-scale, .reveal-left, .reveal-right { transition: opacity .3s ease; transform: none; }
      .stripe-divider span { transition: none; transform: none; }
      .phone-wrap, .phone-left, .phone-right, .phone-center { transition: none; }
      .phone-left:hover, .phone-right:hover, .phone-center:hover { transform: none; }
      .preview-card:hover { transform: none; }
      .matze-card, .daniel-card, .connector-dot, .nilesh-quote { transition: opacity .3s ease; transform: none; }
      html { scroll-behavior: auto; }
    }

    /* ── RESPONSIVE ─────────────────────────────────────────────────── */
    @media (max-width: 640px) {
      nav { padding: 0 20px; }
      section { padding: 72px 20px; }
      .hero-wrap { padding: 100px 20px 60px; }
      .waitlist { flex-direction: column; padding: 12px; }
      .btn-primary { width: 100%; text-align: center; }
      .stats-row { gap: 28px; }
      .countdown-unit { padding: 18px 20px; min-width: 72px; }
      .countdown-unit .num { font-size: 1.8rem; }
      .cd-sep { display: none; }
      .cta-box { padding: 36px 24px; }
      h1 { letter-spacing: -1px; }
      .early-form-box { padding: 24px; }

      /* ── Mindest-Touch-Target-Größe (WCAG/Mobile-UX, 44px) ──────────── */
      .waitlist input, .btn-primary, .btn-hero-primary,
      .segment-cta, footer a, nav a, .faq-q {
        min-height: 44px;
      }
      .waitlist input { display: flex; align-items: center; }
      .segment-cta, footer a, nav a { display: inline-flex; align-items: center; }
    }
