  :root {
    /* ===== TEISENDA CI-Tokens (aus Dev-Referenz) ===== */
    --canvas:        #141020;   /* Seiten-Hintergrund      */
    --sidebar:       #1a1330;
    --card:          #1e1836;
    --card-raised:   #2a2145;
    --border:        #3a3255;
    --border-strong: #4a4168;

    --primary:       #8250e6;   /* Marken-Lila             */
    --primary-hover: #915ff0;
    --lavender:      #d8cbf2;

    --ai:            #eda938;   /* Amber-Akzent            */
    --ai-glow:       #362619;
    --impersonation: #e5595e;
    --impersonation-bg: #3a1f27;

    --gradient-brand: linear-gradient(135deg, #3a2c63 0%, #6a4d9e 100%);

    --text:       #f4f1fa;
    --text-muted: #b3a8cc;
    --text-faint: #7d7498;

    --font-display: 'Space Grotesk', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --maxw: 1200px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--canvas);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }
  a { color: inherit; text-decoration: none; }
  ::selection { background: var(--primary); color: #fff; }

  body::before {
    content: "";
    position: fixed; inset: 0;
    background:
      radial-gradient(55% 45% at 50% 8%, rgba(130,80,230,0.28), transparent 70%),
      radial-gradient(40% 40% at 82% 70%, rgba(216,203,242,0.08), transparent 70%);
    pointer-events: none; z-index: 0;
  }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

  /* ---------------- NAV (zentriert, One-Page) ---------------- */
  header.nav {
    position: fixed; top: 20px; left: 0; right: 0; z-index: 100;
    display: flex; justify-content: center;
    pointer-events: none;
  }
  .nav__pill {
    pointer-events: auto;
    display: inline-flex; align-items: center; gap: 30px;
    padding: 9px 12px 9px 22px;
    border-radius: 100px;
    background: rgba(26,19,48,0.55);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    transition: background .3s, border-color .3s;
  }
  .nav__pill.scrolled { background: rgba(26,19,48,0.85); border-color: var(--border-strong); }
  .nav__logo .icon-svg { height: 32px; width: auto; display: block; }
  .nav__pill > a:not(.btn):not(.nav__logo) { color: var(--text-muted); font-size: 14px; font-weight: 500; transition: color .2s; }
  .nav__pill > a:not(.btn):not(.nav__logo):hover { color: var(--text); }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 22px; border-radius: 100px;
    font-family: var(--font-display); font-weight: 600; font-size: 14px;
    cursor: pointer; border: none; transition: transform .2s, box-shadow .3s, background .2s;
  }
  .btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 26px rgba(130,80,230,0.4); }
  .btn--primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 12px 38px rgba(130,80,230,0.6); }
  .btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
  .btn--ghost:hover { border-color: var(--primary); background: var(--card); }
  @media (max-width: 760px){ header.nav { display: none; } }

  /* ---------------- HERO ---------------- */
  .hero { position: relative; min-height: 100vh; display: flex; align-items: center; z-index: 1; }
  #bg-canvas { position: fixed; inset: 0; width: 100%; height: 100%; z-index: -1; display: block; }
  .hero__inner { max-width: 820px; margin: 0 auto; text-align: center; padding: 120px 24px 0; }
  @media (max-width: 760px){ .hero { min-height: auto; align-items: flex-start; } .hero__inner { padding: 4px 20px 24px; } }
  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; border-radius: 100px;
    background: var(--card); border: 1px solid var(--border);
    font-size: 13px; color: var(--text-muted); margin-bottom: 28px;
  }
  .badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ai); box-shadow: 0 0 12px var(--ai); }
  .hero h1 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(40px, 7vw, 82px); line-height: 1.02; letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .hero h1 .grad {
    background: linear-gradient(120deg, var(--lavender), var(--primary-hover) 45%, var(--primary));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .hero p.lead { font-size: clamp(16px, 2vw, 20px); color: var(--text-muted); max-width: 620px; margin: 0 auto 40px; }
  .hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .hero__hint { margin-top: 60px; font-size: 12px; color: var(--text-faint); letter-spacing: .1em; text-transform: uppercase; }

  /* ---------------- SECTIONS ---------------- */
  section { position: relative; z-index: 1; padding: 96px 0; }
  @media (max-width: 760px){ section { padding: 56px 0; } }
  .eyebrow { font-family: var(--font-display); font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--primary-hover); margin-bottom: 16px; }
  .section-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4.5vw, 52px); letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 20px; }
  .section-sub { color: var(--text-muted); font-size: 18px; max-width: 560px; }
  .center { text-align: center; margin: 0 auto; }

  .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
  @media (max-width: 880px){ .grid { grid-template-columns: 1fr; } }
  .card {
    background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px;
    transition: transform .35s, border-color .35s, box-shadow .35s, background .35s;
  }
  .card:hover { transform: translateY(-6px); background: var(--card-raised); border-color: var(--border-strong); box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
  .card__icon {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: var(--gradient-brand); margin-bottom: 22px;
    font-size: 24px; box-shadow: 0 8px 24px rgba(130,80,230,0.3);
  }
  .card h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 12px; }
  .card p { color: var(--text-muted); font-size: 15px; }

  .stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 40px; }
  @media (max-width: 720px){ .stats { grid-template-columns: repeat(2,1fr); } }
  .stat { text-align: center; padding: 24px; }
  .stat b { font-family: var(--font-display); font-size: clamp(34px,5vw,54px); font-weight: 700; display: block;
    background: linear-gradient(120deg, var(--lavender), var(--primary)); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .stat span { color: var(--text-muted); font-size: 14px; letter-spacing: .05em; }

  .cta-band {
    text-align: center; border-radius: 32px; padding: 72px 40px; margin: 0 auto; max-width: 720px;
    background: linear-gradient(135deg, rgba(58,44,99,0.20) 0%, rgba(106,77,158,0.14) 100%);
    backdrop-filter: blur(2px);
    border: 1px solid var(--border-strong); position: relative; overflow: hidden;
  }
  .cta-band h2 { font-family: var(--font-display); font-size: clamp(30px,4.5vw,52px); font-weight: 700; margin-bottom: 20px; letter-spacing: -.02em; }
  .cta-band p { color: var(--lavender); margin: 0 auto 36px; font-size: 18px; max-width: 560px; }

  /* ---------------- FOOTER (groß, SaaS-Stil) ---------------- */
  footer { position: relative; z-index: 1; border-top: 1px solid var(--border); background: rgba(20,16,32,0.55); backdrop-filter: blur(8px); padding: 84px 0 40px; margin-top: 0; }
  .footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 48px; }
  @media (max-width: 880px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }
  @media (max-width: 520px){ .footer__grid { grid-template-columns: 1fr; } }
  .footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; max-width: 340px; }
  .footer__brand .logo-svg { height: 32px; width: auto; }
  .footer__brand p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
  .footer__mini { display: flex; flex-direction: column; gap: 6px; color: var(--text-faint); font-size: 13px; line-height: 1.6; }
  .footer__col h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
  .footer__col a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 12px; transition: color .2s; }
  .footer__col a:hover { color: var(--primary-hover); }
  .footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--border); color: var(--text-faint); font-size: 13px; }
  .footer__bottom a { color: var(--text-faint); } .footer__bottom a:hover { color: var(--text-muted); }

  /* Hero-Logo + Trust */
  .hero__logo { margin-bottom: 30px; }
  .hero__logo .logo-svg { height: 55px; width: auto; filter: drop-shadow(0 4px 24px rgba(130,80,230,.4)); }
  .trust { margin-top: 34px; font-size: 13px; color: var(--text-faint); }

  /* Prosa / Intro-Blöcke */
  .lead-block { max-width: 780px; margin: 0 auto; }
  .prose { color: var(--text-muted); font-size: 18px; line-height: 1.75; }
  .prose em { color: var(--lavender); font-style: italic; }
  .statement { text-align: center; max-width: 840px; margin: 0 auto; }

  /* Reibungspunkte */
  .points { list-style: none; display: grid; gap: 14px; margin: 40px auto 0; max-width: 780px; text-align: left; }
  .points li { display: flex; gap: 14px; align-items: flex-start; padding: 18px 22px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; color: var(--text-muted); font-size: 16px; }
  .points li::before { content: "✕"; color: var(--impersonation); font-weight: 700; flex-shrink: 0; }

  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  @media (max-width: 880px){ .grid--2 { grid-template-columns: 1fr; } }

  /* Fahrplan / Timeline */
  .timeline { margin: 56px auto 0; display: grid; gap: 18px; max-width: 760px; }
  .tl-item { position: relative; padding: 26px 30px; border-radius: 18px; background: var(--card); border: 1px solid var(--border); }
  .tl-item .tl-tag { font-family: var(--font-display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--primary-hover); display: block; margin-bottom: 10px; }
  .tl-item h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 6px; }
  .tl-item p { color: var(--text-muted); font-size: 15px; }
  .tl-item.is-live { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary) inset, 0 14px 44px rgba(130,80,230,.28); }
  .tl-item.is-live .tl-tag { color: var(--ai); }

  /* Hinweis-Note */
  .note { margin-top: 40px; padding: 14px 20px; border-radius: 12px; background: var(--ai-glow); border: 1px solid var(--border-strong); color: var(--lavender); font-size: 14px; display: inline-flex; gap: 10px; }

  /* Gründer */
  .founder { max-width: 780px; margin: 0 auto; text-align: center; }
  .founder .prose { font-size: 19px; }

  /* Early-Bird-Liste */
  .eb-list { list-style: none; display: grid; gap: 12px; max-width: 520px; margin: 4px auto 0; text-align: left; }
  .eb-list li { display: flex; gap: 12px; color: var(--lavender); font-size: 15px; }
  .eb-list li::before { content: "★"; color: var(--ai); flex-shrink: 0; }

  /* CTA-Box */
  .form-wrap { max-width: 520px; margin: 40px auto 0; }
  .btn--block { width: 100%; justify-content: center; padding: 15px; font-size: 15px; }

  .footer__brand a { color: var(--lavender); } .footer__brand a:hover { color: var(--text); }

  /* DSGVO-Trust-Bar */
  .trustbar { position: relative; z-index: 1; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(20,16,32,0.55); backdrop-filter: blur(8px); }
  .trustbar__inner { display: flex; gap: 18px 44px; justify-content: center; align-items: center; flex-wrap: wrap; padding: 26px 24px; }
  @media (max-width: 760px){ .trustbar__inner { flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 22px 24px; } }
  .trustbar__label { color: var(--text-faint); font-family: var(--font-display); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
  .trustbar__item { display: flex; align-items: center; gap: 10px; color: var(--lavender); font-size: 14px; font-weight: 500; }
  .trustbar__item .ic { font-size: 20px; line-height: 1; color: transparent; text-shadow: 0 0 0 #ffffff; }
  .mono { color: transparent; text-shadow: 0 0 0 #ffffff; }
  .card__icon svg { width: 26px; height: 26px; stroke: #ffffff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .flag { height: 15px; width: auto; border-radius: 2px; display: inline-block; vertical-align: -3px; box-shadow: 0 0 0 1px rgba(255,255,255,0.14); }
  .flag--de { height: 12px; vertical-align: -2px; }

  /* ===================================================
     LOW-POLY / WIREFRAME AUFWERTUNG (Deko-Layer)
     =================================================== */
  .card { position: relative; overflow: hidden; background: linear-gradient(180deg, rgba(130,80,230,0.08), rgba(26,19,48,0.42)); }
  .card > * { position: relative; z-index: 1; }
  .card::before {
    content:""; position:absolute; width:122px; height:122px; pointer-events:none; opacity:.36;
    transition: opacity .4s, transform .5s; background-repeat:no-repeat; background-size:contain;
  }
  .card:nth-child(4n+1)::before { top:-6px; right:-6px; background-position:top right;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23a077ff' stroke-width='1'%3E%3Cpath d='M120 0 74 14 120 46Z'/%3E%3Cpath d='M120 46 74 14 88 62Z'/%3E%3Cpath d='M74 14 40 34 88 62'/%3E%3Cpath d='M120 46 88 62 120 92'/%3E%3C/g%3E%3C/svg%3E"); }
  .card:nth-child(4n+2)::before { bottom:-6px; left:-6px; background-position:bottom left;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23a077ff' stroke-width='1'%3E%3Cpath d='M0 120 46 106 0 74Z'/%3E%3Cpath d='M0 74 46 106 32 58Z'/%3E%3Cpath d='M46 106 80 86 32 58'/%3E%3Cpath d='M0 74 32 58 0 28'/%3E%3C/g%3E%3C/svg%3E"); }
  .card:nth-child(4n+3)::before { top:-6px; left:-6px; background-position:top left;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23c8a4ff' stroke-width='1'%3E%3Cpath d='M0 0 44 14 14 44Z'/%3E%3Cpath d='M44 14 26 56 14 44'/%3E%3Cpath d='M44 14 80 28 26 56'/%3E%3Cpath d='M80 28 50 66 26 56'/%3E%3C/g%3E%3C/svg%3E"); }
  .card:nth-child(4n+4)::before { bottom:-6px; right:-6px; background-position:bottom right;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23c8a4ff' stroke-width='1'%3E%3Cpath d='M120 120 78 106 106 78Z'/%3E%3Cpath d='M78 106 92 64 106 78'/%3E%3Cpath d='M78 106 46 118 92 64'/%3E%3Cpath d='M106 78 120 62 92 64'/%3E%3C/g%3E%3C/svg%3E"); }
  .card::after {
    content:""; position:absolute; inset:0; border-radius:20px; padding:1px; pointer-events:none; opacity:.55; transition: opacity .4s;
    background: linear-gradient(135deg, rgba(160,119,255,.55), transparent 42%, transparent 58%, rgba(160,119,255,.16));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
  }
  .card:hover { border-color: rgba(160,119,255,.42); box-shadow: 0 24px 60px rgba(67,43,120,.5); }
  .card:hover::before { opacity:.72; transform: translate(-3px,3px) rotate(-3deg); }
  .card:hover::after { opacity:1; }
  .card__icon { border-radius:0; box-shadow:none; clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%); filter: drop-shadow(0 8px 20px rgba(130,80,230,0.5)); color: transparent; text-shadow: 0 0 0 #ffffff; }

  .cta-band > * { position: relative; z-index: 1; }
  .cta-band::before {
    content:""; position:absolute; top:0; right:0; width:240px; height:240px; pointer-events:none; opacity:.20;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%23a077ff' stroke-width='1'%3E%3Cpath d='M240 0 148 28 240 92Z'/%3E%3Cpath d='M240 92 148 28 176 124Z'/%3E%3Cpath d='M148 28 80 68 176 124'/%3E%3Cpath d='M240 92 176 124 240 184'/%3E%3Cpath d='M176 124 240 184 240 124'/%3E%3C/g%3E%3C/svg%3E") no-repeat top right;
  }
  .cta-band::after {
    content:""; position:absolute; bottom:0; left:0; width:200px; height:200px; pointer-events:none; opacity:.14;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23c8a4ff' stroke-width='1'%3E%3Cpath d='M0 200 64 168 0 108Z'/%3E%3Cpath d='M0 108 64 168 36 82Z'/%3E%3Cpath d='M64 168 128 136 36 82'/%3E%3C/g%3E%3C/svg%3E") no-repeat bottom left;
  }

  .tl-item { overflow: hidden; }
  .tl-item > * { position: relative; z-index: 1; }
  .tl-item::before {
    content:""; position:absolute; width:98px; height:98px; pointer-events:none; opacity:.26; background-repeat:no-repeat; background-size: contain;
  }
  .tl-item:nth-child(3n+1)::before { top:-4px; right:-4px; background-position:top right;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23a077ff' stroke-width='1'%3E%3Cpath d='M120 0 74 14 120 46Z'/%3E%3Cpath d='M120 46 74 14 88 62Z'/%3E%3Cpath d='M74 14 40 34 88 62'/%3E%3Cpath d='M120 46 88 62 120 92'/%3E%3C/g%3E%3C/svg%3E"); }
  .tl-item:nth-child(3n+2)::before { bottom:-4px; left:-4px; background-position:bottom left;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23c8a4ff' stroke-width='1'%3E%3Cpath d='M0 120 46 106 0 74Z'/%3E%3Cpath d='M0 74 46 106 32 58Z'/%3E%3Cpath d='M46 106 80 86 32 58'/%3E%3C/g%3E%3C/svg%3E"); }
  .tl-item:nth-child(3n+3)::before { top:-4px; left:-4px; background-position:top left;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23a077ff' stroke-width='1'%3E%3Cpath d='M0 0 44 14 14 44Z'/%3E%3Cpath d='M44 14 26 56 14 44'/%3E%3Cpath d='M44 14 80 28 26 56'/%3E%3C/g%3E%3C/svg%3E"); }

  .points li { background: linear-gradient(180deg, rgba(229,89,94,0.06), rgba(26,19,48,0.42)); border-left: 2px solid rgba(229,89,94,.45); }

  /* Facetten-Rauten-Marker vor jeder Sektions-Eyebrow */
  .eyebrow { display: inline-flex; align-items: center; gap: 10px; }
  .eyebrow::before { content:""; width: 11px; height: 11px; border: 1px solid currentColor; transform: rotate(45deg); opacity: .7; flex-shrink: 0; box-shadow: 0 0 8px rgba(160,119,255,.4); }

  /* Dekorative Draht-Formen im Hintergrund einzelner Sektionen */
  .deco-wire { position: absolute; z-index: -1; pointer-events: none; opacity: .18;
    background-repeat: no-repeat; background-size: contain; }
  .deco-wire--r { top: 4%; right: -60px; width: 340px; height: 340px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='340' viewBox='0 0 340 340'%3E%3Cg fill='none' stroke='%23a077ff' stroke-width='1'%3E%3Cpath d='M340 40 210 70 300 150 340 120Z'/%3E%3Cpath d='M210 70 150 160 300 150'/%3E%3Cpath d='M300 150 230 240 150 160'/%3E%3Cpath d='M300 150 340 220 230 240'/%3E%3Cpath d='M230 240 260 320 180 260'/%3E%3C/g%3E%3C/svg%3E"); }
  .deco-wire--l { bottom: 6%; left: -70px; width: 300px; height: 300px; opacity: .13;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg fill='none' stroke='%23c8a4ff' stroke-width='1'%3E%3Cpath d='M0 120 120 90 60 180 0 200Z'/%3E%3Cpath d='M120 90 170 170 60 180'/%3E%3Cpath d='M60 180 130 250 170 170'/%3E%3Cpath d='M0 200 60 180 40 270'/%3E%3C/g%3E%3C/svg%3E"); }
  @media (max-width: 760px){ .deco-wire { display: none; } }

  @media (prefers-reduced-motion: reduce){ .card::before, .card:hover::before { transition: none; } }

  .reveal { opacity: 0; transform: translateY(30px); }

  /* Hilfsklassen – ersetzen die frueheren inline style=""-Attribute */
  .svg-sprite { position: absolute; overflow: hidden; }
  .center--narrow { max-width: 640px; }
  .center--wide   { max-width: 680px; }
  .eyebrow--light { color: var(--lavender); }
  .lnk-light      { color: var(--lavender); }
  .trust--center  { text-align: center; }
