/* Farbvariante: Hellblau / ruhig / vertrauensvoll */
    :root {
      --bg: #eaf6ff;
      --card: rgba(255, 255, 255, 0.88);
      --text: #102033;
      --muted: #5f7082;
      --line: rgba(15, 42, 68, 0.12);
      --navy: #0f2a44;
      --gold: #7ec8f2;
      --green: #20bd57;
      --shadow: 0 22px 60px rgba(15, 42, 68, 0.14);
      --radius: 30px;
    }

    * { box-sizing: border-box; }

    html {
      margin: 0;
      padding: 0;
      width: 100%;
      min-height: 100%;
      overflow-x: hidden;
      overflow-y: scroll;
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      margin: 0;
      padding: 0;
      width: 100%;
      min-height: 100%;
      overflow-x: hidden;
      overflow-y: visible;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.92), transparent 34%),
        radial-gradient(circle at bottom right, rgba(126,200,242,0.30), transparent 36%),
        linear-gradient(180deg, #f7fbff 0%, var(--bg) 100%);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .24;
      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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.33'/%3E%3C/svg%3E");
      mix-blend-mode: multiply;
    }

    a { color: inherit; }

    .app {
      width: min(100%, 620px);
      margin: 0 auto;
      padding: 0 22px max(34px, env(safe-area-inset-bottom));
      position: relative;
      z-index: 1;
    }

    section {
      scroll-margin-top: 18px;
    }

    .intro-page {
      min-height: 100svh;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
      padding: max(28px, env(safe-area-inset-top)) 0 28px;
    }

    .detail-page,
    .legal-page {
      display: block;
      min-height: auto;
      height: auto;
      overflow: visible;
      padding: max(28px, env(safe-area-inset-top)) 0 36px;
    }

    .eyebrow {
      text-align: center;
      letter-spacing: .34em;
      text-transform: uppercase;
      color: #6f7480;
      font-size: 13px;
      font-weight: 800;
      margin: 0 0 2px;
    }

    .intro-card,
    .text-card,
    .legal-card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
    }

    .intro-card {
      text-align: center;
      padding: 38px 24px 34px;
    }

    .avatar-wrap {
      width: 126px;
      height: 126px;
      margin: -10px auto 25px;
      border-radius: 999px;
      padding: 7px;
      background: linear-gradient(135deg, #0f2a44, #f7fbff 48%, var(--gold));
      box-shadow: 0 18px 42px rgba(17,24,39,.22);
    }

    .avatar-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: inherit;
      border: 5px solid #ffffff;
      filter: grayscale(1);
      display: block;
    }

    h1, h2, h3, p { margin-top: 0; }

    .intro-title {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(42px, 11vw, 58px);
      line-height: .96;
      letter-spacing: -.045em;
      margin: 0 0 22px;
      color: #0f2a44;
      font-weight: 500;
    }

    .intro-copy {
      font-size: 21px;
      line-height: 1.45;
      color: #374151;
      margin: 0 auto;
      max-width: 440px;
    }

    .primary-btn,
    .whatsapp-btn,
    .back-btn {
      border: 0;
      cursor: pointer;
      text-decoration: none;
      font-weight: 850;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: transparent;
    }

    .primary-btn {
      width: 100%;
      min-height: 66px;
      border-radius: 999px;
      color: #fff;
      background: var(--navy);
      font-size: 20px;
      box-shadow: 0 18px 42px rgba(16, 24, 39, .24);
    }

    .micro {
      text-align: center;
      color: #6b7280;
      line-height: 1.4;
      margin: 0 auto;
      max-width: 390px;
      font-size: 16px;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin: 8px 2px 20px;
    }

    .brand {
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .back-btn {
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      background: rgba(255,255,255,.46);
      border: 1px solid var(--line);
      color: #202938;
      font-size: 16px;
    }

    .hero {
      position: relative;
      min-height: 500px;
      border-radius: 34px;
      overflow: hidden;
      background: #0f2a44;
      box-shadow: var(--shadow);
      margin-bottom: 22px;
    }

    .hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1) contrast(1.05) brightness(.78);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15,42,68,.02) 0%, rgba(15,42,68,.20) 42%, rgba(15,42,68,.86) 100%);
    }

    .hero-content {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 30px;
      z-index: 1;
      color: #fff;
    }

    .hero-kicker {
      display: block;
      letter-spacing: .33em;
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 14px;
      color: rgba(255,255,255,.78);
    }

    .hero-title {
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(38px, 10vw, 54px);
      line-height: .96;
      letter-spacing: -.045em;
      font-weight: 500;
      margin: 0;
    }

    .text-card,
    .legal-card {
      padding: 25px;
      margin-bottom: 22px;
    }

    .text-card h2,
    .legal-card h2 {
      font-size: 22px;
      line-height: 1.15;
      margin-bottom: 14px;
      letter-spacing: -.035em;
    }

    .text-card p,
    .legal-card p,
    .legal-card li {
      color: #374151;
      font-size: 18px;
      line-height: 1.55;
      margin-bottom: 12px;
    }

    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .chip {
      padding: 10px 15px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.52);
      font-weight: 800;
      color: #374151;
    }

    .video-box {
      border-radius: 30px;
      background: #101827;
      box-shadow: var(--shadow);
      margin-bottom: 22px;
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.10);
    }

    .video-box video {
      display: block;
      width: 100%;
      height: auto;
      max-height: 72vh;
      background: #101827;
    }

    .whatsapp-area {
      position: relative;
      z-index: 2;
      padding: 0;
      margin: 8px 0 22px;
    }

    .whatsapp-btn {
      width: 100%;
      min-height: 74px;
      border-radius: 999px;
      color: #fff;
      background: linear-gradient(180deg, #24c95f 0%, #17a84d 100%);
      font-size: 21px;
      box-shadow: 0 20px 44px rgba(32,189,87,.34);
      gap: 12px;
    }

    .hint {
      text-align: center;
      color: #6b7280;
      margin: 10px 0 0;
      font-size: 14px;
      line-height: 1.35;
    }

    .email-alt {
      text-align: center;
      color: #6b7280;
      margin: 8px 0 0;
      font-size: 13px;
      line-height: 1.35;
    }

    .email-alt a {
      color: #374151;
      text-decoration: underline;
      text-underline-offset: 4px;
      font-weight: 800;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px 18px;
      padding: 18px 0 30px;
      color: #6b7280;
      font-size: 14px;
    }

    .footer-links a {
      color: #374151;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .legal-card ul { padding-left: 22px; }

    .legal-placeholder {
      border: 1px dashed rgba(15,42,68,.28);
      background: rgba(255,255,255,.42);
      padding: 14px;
      border-radius: 18px;
      color: #111827 !important;
      font-weight: 700;
    }

    @media (max-width: 430px) {
      .app { padding-left: 18px; padding-right: 18px; }
      .intro-card { padding: 34px 22px 30px; }
      .avatar-wrap { width: 118px; height: 118px; }
      .intro-copy { font-size: 20px; }
      .hero { min-height: 500px; }
      .hero-content { left: 26px; right: 26px; bottom: 28px; }
      .text-card, .legal-card { padding: 24px; }
    }
