  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --orange: #FF6805;
    --orange-600: #EA5C00;
    --orange-700: #C44E00;
    --tint: #FFF1E7;
    --ink: #15171C;
    --ink-900: #101218;
    --ink-800: #1B1E25;
    --ink-700: #2C313B;
    --slate: #4A5260;
    --muted: #767E8C;
    --line: #E7E3DC;
    --line-2: #ECE9E3;
    --bg: #FBFAF7;
    --bg-warm: #F4F1EA;
    --blue: #2563EB;
    --blue-600: #1D5FD4;
    --teal: #14B8A6;
    --slate-900: #0F172A;
    --paper: #F7F4ED;
    --white: #ffffff;
    --r-sm: 10px;
    --r: 16px;
    --r-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(20,23,28,.05);
    --shadow: 0 18px 50px -16px rgba(20,23,28,.22);
    --shadow-orange: 0 24px 60px -20px rgba(255,104,5,.5);
    --maxw: 1240px;
    --mono: 'IBM Plex Mono', ui-monospace, monospace;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Archivo', system-ui, sans-serif;
    color: var(--ink); background: var(--bg);
    line-height: 1.6; -webkit-font-smoothing: antialiased;
    font-size: 17px; overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  h1, h2, h3, .display { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

  .mono { font-family: var(--mono); }
  .kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 12.5px; font-weight: 500;
    letter-spacing: .12em; text-transform: uppercase; color: var(--orange-700);
  }
  .kicker .sq { width: 7px; height: 7px; background: var(--orange); display: inline-block; transform: rotate(45deg); }
  .kicker .ln { width: 30px; height: 1px; background: var(--orange); opacity: .5; }

  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: 'Archivo', sans-serif; font-weight: 600; font-size: 16px;
    border-radius: var(--r-sm); padding: 14px 26px; cursor: pointer;
    border: 1.5px solid transparent; transition: transform .15s ease, background .15s, box-shadow .2s, border-color .15s;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px -8px rgba(255,104,5,.6); }
  .btn-primary:hover { background: var(--orange-600); box-shadow: 0 12px 30px -8px rgba(255,104,5,.7); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { border-color: var(--ink); }
  .btn-dark { background: var(--ink); color: #fff; }
  .btn-dark:hover { background: var(--ink-700); }
  .btn-light { background: #fff; color: var(--ink); }
  .btn-light:hover { background: #f3f1ec; }
  .btn-lg { padding: 17px 32px; font-size: 17px; }

  /* ============ NAV ============ */
  header.nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251,250,247,.85); -webkit-backdrop-filter: blur(14px) saturate(1.4); backdrop-filter: blur(14px) saturate(1.4);
    border-bottom: 1px solid var(--line);
  }
  .nav-in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
  .brand { display: flex; align-items: center; gap: 13px; }
  .brand img { height: 23px; width: auto; display: block; }
  .brand .divider { width: 1px; height: 22px; background: var(--line); }
  .brand .product { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
  .brand .product b { color: var(--orange); font-weight: 600; }
  .nav-links { display: flex; align-items: center; gap: 32px; }
  .nav-links a { font-size: 15px; font-weight: 500; color: var(--slate); transition: color .15s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-actions { display: flex; align-items: center; gap: 14px; }
  .nav-live { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: .02em; white-space: nowrap; }
  .nav-live .dot { width: 7px; height: 7px; border-radius: 50%; background: #29c267; box-shadow: 0 0 0 3px rgba(41,194,103,.18); animation: pulse 1.8s infinite; }
  .nav-actions .btn { padding: 10px 20px; font-size: 15px; }
  .nav-toggle { display: none; }
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

  /* ---- Mobile menu drawer ---- */
  .nav-toggle .ico-close { display: none; }
  .nav-toggle[aria-expanded="true"] .ico-open { display: none; }
  .nav-toggle[aria-expanded="true"] .ico-close { display: block; }
  .m-scrim {
    position: fixed; inset: 0; z-index: 90; background: rgba(16,18,24,.42);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
  }
  .m-scrim.open { opacity: 1; visibility: visible; }
  .m-menu {
    position: fixed; top: 0; right: 0; z-index: 95;
    width: min(86vw, 360px); height: 100%; height: 100dvh;
    background: var(--bg); border-left: 1px solid var(--line);
    box-shadow: -24px 0 60px -20px rgba(20,23,28,.4);
    padding: 22px 24px calc(28px + env(safe-area-inset-bottom));
    display: flex; flex-direction: column; gap: 6px;
    transform: translateX(100%); transition: transform .3s cubic-bezier(.5,0,.2,1);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .m-menu.open { transform: translateX(0); }
  .m-menu .m-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; height: 30px; }
  .m-menu .m-top .product { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 17px; }
  .m-menu .m-top .product b { color: var(--orange); }
  .m-menu a.m-link {
    font-family: 'Space Grotesk', sans-serif; font-size: 19px; font-weight: 600; color: var(--ink);
    padding: 14px 4px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between;
  }
  .m-menu a.m-link:active { color: var(--orange); }
  .m-menu .m-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
  .m-menu .m-cta .btn { width: 100%; }
  .m-menu .m-live { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 20px; }
  .m-menu .m-live .dot { width: 7px; height: 7px; border-radius: 50%; background: #29c267; box-shadow: 0 0 0 3px rgba(41,194,103,.18); animation: pulse 1.8s infinite; }
  body.menu-open { overflow: hidden; }

  /* ============ HERO ============ */
  .hero { position: relative; overflow: hidden; background: var(--bg); }
  .hero-in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; padding-top: 80px; padding-bottom: 84px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid var(--line); border-radius: 100px;
    padding: 7px 15px 7px 8px; font-size: 13px; font-weight: 600; color: var(--slate);
    box-shadow: var(--shadow-sm); margin-bottom: 28px; white-space: nowrap;
  }
  .hero-badge .pill { background: var(--ink); color: #fff; font-weight: 600; padding: 3px 10px; border-radius: 100px; font-size: 11px; letter-spacing: .04em; font-family: var(--mono); text-transform: uppercase; }
  .hero h1 { font-size: clamp(40px, 4.4vw, 64px); font-weight: 700; line-height: 1.03; margin-bottom: 26px; letter-spacing: -0.035em; text-wrap: balance; }
  .hero h1 em { font-style: normal; color: var(--orange); }
  .hero h1 .out { -webkit-text-stroke: 1.5px var(--ink); color: transparent; }
  .hero-lead { font-size: 19px; color: var(--slate); line-height: 1.6; max-width: 500px; margin-bottom: 34px; }
  .hero-lead b { color: var(--ink); font-weight: 600; }
  .hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 30px; }
  .hero-ticker { display: flex; align-items: center; gap: 12px; font-family: var(--mono); font-size: 12.5px; color: var(--muted); border-top: 1px dashed var(--line); padding-top: 20px; max-width: 500px; }
  .hero-ticker .tk { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
  .hero-ticker .tk b { color: var(--ink); font-weight: 600; }
  .hero-ticker .live { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 3px rgba(255,104,5,.18); animation: pulse 1.6s infinite; }

  /* hero full-bleed swarm + floating hub */
  .hero { min-height: 600px; }
  #heroSwarm { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
  .hero-stage { position: relative; height: 460px; }
  .hub {
    position: absolute; top: 50%; right: 4%; transform: translateY(-50%); z-index: 5;
    width: 312px; background: var(--ink); color: #fff; border-radius: 16px; padding: 16px;
    box-shadow: 0 30px 70px -18px rgba(20,23,28,.55); border: 1px solid rgba(255,255,255,.08);
    transition: box-shadow .2s;
  }
  .hub.ping { box-shadow: 0 0 0 6px rgba(255,104,5,.2), 0 30px 70px -18px rgba(20,23,28,.6); }
  .hub .hub-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 11px; }
  .hub .hub-h .t { font-family: var(--mono); font-size: 9.5px; letter-spacing: .08em; color: #aeb4bf; text-transform: uppercase; }
  .hub .hub-h .rad { width: 22px; height: 22px; border-radius: 7px; background: rgba(255,104,5,.18); display: flex; align-items: center; justify-content: center; }
  /* captured ad creative inside the hub */
  .hub-shot { border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); margin-bottom: 12px; }
  .hub-shot-img { height: 112px; position: relative; padding: 11px 12px; display: flex; flex-direction: column; justify-content: flex-end; gap: 7px; }
  .hub-shot-img .ad-brand { position: absolute; top: 11px; left: 12px; font-size: 13px; letter-spacing: .3em; }
  .hub-shot-img b { color: #fff; font-size: 13px; font-weight: 700; line-height: 1.08; font-family: 'Space Grotesk'; max-width: 150px; }
  .hub-shot-img .cta { align-self: flex-start; background: #fff; color: #15110e; font-size: 9px; font-weight: 700; padding: 4px 9px; border-radius: 4px; font-family: var(--mono); letter-spacing: .03em; white-space: nowrap; }
  .hub-shot-img .badge-ok { position: absolute; top: 9px; right: 9px; z-index: 2; background: rgba(255,255,255,.94); color: #039855; font-size: 8px; font-weight: 700; padding: 2px 6px; border-radius: 4px; font-family: var(--mono); display: flex; align-items: center; gap: 3px; }
  .hub-shot-meta { background: rgba(255,255,255,.05); font-family: var(--mono); font-size: 9px; color: #aeb4bf; padding: 6px 10px; letter-spacing: .02em; }
  .hub-foot { display: flex; align-items: flex-end; gap: 10px; white-space: nowrap; }
  .hub .big { font-family: 'Space Grotesk'; font-size: 30px; font-weight: 700; line-height: .9; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
  .hub .sub { font-family: var(--mono); font-size: 9.5px; color: #99a0ab; line-height: 1.3; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
  /* cycling captured creative: varied formats + QA states */
  .hub-shot { transition: opacity .36s ease; }
  .hub-shot-img { transition: height .42s cubic-bezier(.5,0,.2,1); }
  .hub-shot-img.s-rect { height: 142px; }
  .hub-shot-img.s-sky  { height: 180px; }
  .hub-shot-img.s-half { height: 170px; }
  .hub-shot-img.s-bill { height: 98px; }
  .hub-shot-img.s-lead { height: 74px; }
  .hub-shot-img b { max-width: 200px; font-size: 14px; }
  .hub-shot-img .badge-err { position: absolute; top: 9px; right: 9px; z-index: 2; background: rgba(255,255,255,.96); color: #d92d20; font-size: 8px; font-weight: 700; padding: 2px 6px; border-radius: 4px; font-family: var(--mono); display: flex; align-items: center; gap: 3px; }
  .hub-shot-meta { display: flex; align-items: center; gap: 7px; }
  .hub-shot-meta .m-iss { color: #ff8a6b; font-weight: 600; margin-left: auto; white-space: nowrap; }

  /* ===== AVELINE — fictional fashion brand: shared ad-creative styling ===== */
  .photo-ad { background-size: cover; background-position: center; position: relative; color: #fff; }
  .photo-ad::before { content: ''; position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(172deg, rgba(20,17,15,.10) 28%, rgba(20,17,15,.74) 100%); }
  .photo-ad > * { position: relative; z-index: 1; }
  .brandmark { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: #fff; line-height: 1; }

  /* ============ MARQUEE / TRUST ============ */
  .trust { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); overflow: hidden; }
  .trust-in { display: flex; align-items: center; gap: 28px; }
  .trust-lbl { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; flex-shrink: 0; }
  .marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
  .marquee-track { display: flex; gap: 48px; width: max-content; animation: scroll 32s linear infinite; }
  .marquee-track .lg { font-family: 'Space Grotesk'; font-weight: 700; font-size: 20px; color: #aab0ba; letter-spacing: -.01em; display: flex; align-items: center; gap: 7px; }
  @keyframes scroll { to { transform: translateX(-50%); } }

  /* ============ SWARM SECTION ============ */
  .swarm { background: var(--ink); color: #fff; position: relative; overflow: hidden; padding: 104px 0; }
  #swarmField { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .9; }
  .swarm-in { position: relative; z-index: 2; }
  /* over-the-shoulder photo + concept */
  .swarm-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: start; }
  .swarm .kicker { color: var(--orange); margin-bottom: 4px; }
  .swarm h2 { font-size: clamp(32px, 3.8vw, 50px); font-weight: 700; line-height: 1.04; margin: 18px 0 26px; letter-spacing: -0.03em; text-wrap: balance; }
  .shoulder { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 40px 90px -30px rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.08); }
  .shoulder image-slot { display: block; width: 100%; height: 600px; }
  .shoulder-scrim { position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(16,18,24,0) 40%, rgba(16,18,24,.55) 100%),
                linear-gradient(90deg, rgba(16,18,24,.35), transparent 45%); }
  .shoulder .pin { position: absolute; top: 34%; left: 44%; pointer-events: none; }
  .shoulder .pin::before { content: ''; position: absolute; inset: -52px -66px; border: 2px solid var(--orange); border-radius: 10px; box-shadow: 0 0 0 9999px rgba(16,18,24,.32); }
  .shoulder .pin-tag { position: absolute; top: -74px; left: -66px; white-space: nowrap; background: var(--orange); color: #fff; font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .03em; padding: 5px 11px; border-radius: 7px; display: inline-flex; align-items: center; gap: 7px; box-shadow: 0 10px 24px -8px rgba(0,0,0,.6); }
  .shoulder .pin-tag .live { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.3); animation: pulse 1.6s infinite; }
  .shoulder-cap { position: absolute; bottom: 14px; left: 16px; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.85); letter-spacing: .03em; }
  .found-card { position: absolute; right: 16px; bottom: 16px; width: 132px; background: #fff; border-radius: 10px; box-shadow: 0 18px 40px -14px rgba(0,0,0,.6); overflow: hidden; }
  .found-card .fc-img { height: 96px; display: flex; align-items: flex-end; padding: 9px; }
  .found-card .fc-img .brandmark { font-size: 12px; letter-spacing: .26em; }
  .found-card .fc-meta { display: flex; align-items: center; gap: 6px; padding: 7px 9px; font-family: var(--mono); font-size: 9px; color: var(--muted); }
  .found-card .fc-meta .ok { background: #d1fadf; color: #039855; font-weight: 600; padding: 1px 5px; border-radius: 4px; }
  .swarm-steps { margin-top: 30px; display: flex; flex-direction: column; gap: 2px; }
  .sstep { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.1); }
  .sstep:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
  .sstep .si { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--orange); padding-top: 2px; }
  .sstep b { font-family: 'Space Grotesk'; font-size: 17px; font-weight: 600; display: block; margin-bottom: 3px; }
  .sstep span { font-size: 14px; color: #99a0ab; line-height: 1.55; }
  .swarm h2 em { font-style: normal; color: var(--orange); }
  .swarm h2 .out { -webkit-text-stroke: 1.4px rgba(255,255,255,.85); color: transparent; }
  .swarm-lead { font-size: 18px; color: #aeb4bf; line-height: 1.62; padding-bottom: 8px; }
  .swarm-lead b { color: #fff; font-weight: 600; }
  .swarm-flow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); overflow: hidden; }
  .flow-step { padding: 34px 30px; position: relative; }
  .flow-step + .flow-step { border-left: 1px solid rgba(255,255,255,.1); }
  .flow-step .idx { font-family: var(--mono); font-size: 12px; color: var(--orange); letter-spacing: .1em; margin-bottom: 18px; }
  .flow-step .fh { font-family: 'Space Grotesk'; font-size: 22px; font-weight: 600; margin-bottom: 10px; }
  .flow-step p { font-size: 14.5px; color: #99a0ab; line-height: 1.6; }
  .flow-step .vis { height: 80px; margin-bottom: 22px; position: relative; }
  /* dots cluster */
  .dots-many span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); }
  .dots-many span:nth-child(1){left:6%;top:20%} .dots-many span:nth-child(2){left:24%;top:60%} .dots-many span:nth-child(3){left:40%;top:14%}
  .dots-many span:nth-child(4){left:55%;top:70%} .dots-many span:nth-child(5){left:70%;top:30%} .dots-many span:nth-child(6){left:86%;top:55%}
  .dots-many span:nth-child(7){left:16%;top:84%} .dots-many span:nth-child(8){left:64%;top:6%}
  .dots-conv span { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); opacity: .5; }
  .dots-conv span:nth-child(odd){background:rgba(255,104,5,.45)}
  .dots-conv .c { left: 50%; top: 50%; width: 16px; height: 16px; transform: translate(-50%,-50%); background: var(--orange); opacity: 1; box-shadow: 0 0 0 5px rgba(255,104,5,.2); }
  .dots-conv span:nth-child(2){left:10%;top:18%} .dots-conv span:nth-child(3){left:82%;top:24%}
  .dots-conv span:nth-child(4){left:20%;top:78%} .dots-conv span:nth-child(5){left:78%;top:74%}
  .dots-conv span:nth-child(6){left:46%;top:8%}
  .one-truth { display: flex; align-items: center; justify-content: center; height: 100%; }
  .one-truth .rec { background: rgba(255,104,5,.12); border: 1px solid rgba(255,104,5,.4); border-radius: 10px; padding: 10px 14px; font-family: var(--mono); font-size: 11px; color: #fff; text-align: center; }
  .one-truth .rec b { color: var(--orange); display: block; font-size: 18px; font-family: 'Space Grotesk'; margin-top: 2px; }

  /* ============ VANTAGE POINTS ============ */
  .vantage { padding: 104px 0; background: var(--paper); position: relative; overflow: hidden; }
  .vantage-in { display: grid; grid-template-columns: .82fr 1.18fr; gap: 56px; align-items: center; }
  .vantage h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; line-height: 1.06; margin: 18px 0 26px; }
  .vantage h2 em { font-style: normal; color: var(--orange); }
  .vantage > .vantage-in > .vcopy > p { font-size: 18px; color: var(--slate); line-height: 1.62; margin-bottom: 26px; }
  .vlist { display: flex; flex-direction: column; gap: 4px; }
  .vlist .vi { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-top: 1px solid var(--line); font-family: var(--mono); font-size: 13px; color: var(--slate); }
  .vlist .vi:last-child { border-bottom: 1px solid var(--line); }
  .vlist .vi .k { color: var(--orange-700); font-weight: 600; width: 92px; flex-shrink: 0; }
  .vlist .vi .v { color: var(--ink); }
  /* scatter board — real ad formats wired to the central point */
  .scatter { position: relative; height: 440px; }
  .scatter .links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; }
  .scatter .conv-dot { position: absolute; left: 57%; top: 48%; transform: translate(-50%,-50%); z-index: 4; display: inline-flex; align-items: center; gap: 8px; background: var(--ink); color: #fff; border-radius: 11px; padding: 9px 14px 9px 11px; box-shadow: 0 18px 40px -14px rgba(20,23,28,.55); border: 1px solid rgba(255,255,255,.1); }
  .scatter .conv-dot .cd-core { width: 26px; height: 26px; border-radius: 7px; background: rgba(255,104,5,.16); display: flex; align-items: center; justify-content: center; }
  .scatter .conv-dot .cd-lbl { font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: .04em; }
  .scatter .conv-dot::after { content: 'KI-Auswertung'; position: absolute; bottom: -19px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; color: var(--muted); white-space: nowrap; }
  .sight {
    position: absolute; z-index: 3; background: #fff; border: 1px solid var(--line); border-radius: 10px;
    box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s; cursor: default;
  }
  .sight:hover { transform: translateY(-4px) rotate(0deg) !important; box-shadow: 0 24px 50px -16px rgba(20,23,28,.3); z-index: 9; }
  .sight .sb { flex: 1; min-height: 0; position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 5px; padding: 11px; color: #fff; }
  .sight .sb .fmt { position: absolute; top: 6px; right: 7px; z-index: 2; font-family: var(--mono); font-size: 8px; color: rgba(255,255,255,.9); background: rgba(0,0,0,.32); padding: 1px 5px; border-radius: 4px; letter-spacing: .02em; }
  .sight .sb .brand { position: absolute; top: 9px; left: 10px; font-size: 10.5px; letter-spacing: .24em; }
  .sight .sb .hl { font-family: 'Space Grotesk'; font-weight: 700; font-size: 13px; line-height: 1.08; }
  .sight .sb .cta { font-family: var(--mono); font-size: 8px; font-weight: 700; background: #fff; color: #15110e; padding: 3px 7px; border-radius: 4px; letter-spacing: .02em; white-space: nowrap; }
  .sight .sf { display: flex; align-items: center; justify-content: space-between; gap: 6px; padding: 6px 9px; border-top: 1px solid var(--line-2); font-family: var(--mono); font-size: 9px; color: var(--muted); background: #fff; }
  .sight .sf .badge { display: inline-flex; align-items: center; gap: 3px; padding: 2px 6px; border-radius: 5px; font-weight: 600; }
  .sight .sf .ok { background: #d1fadf; color: #039855; }
  .sight .sf .err { background: #fee4e2; color: #d92d20; }
  /* formats (scaled, aspect-aware) */
  .fmt-half { width: 98px; height: 192px; }
  .fmt-rect { width: 144px; height: 122px; }
  .fmt-bill { width: 224px; height: 74px; }
  .fmt-bill .sb { justify-content: center; }
  .fmt-bill .hl { font-size: 12px; }
  .fmt-sky  { width: 56px; height: 190px; }
  .fmt-sky .hl { font-size: 14px; }
  .fmt-sky .cta { display: none; }

  /* ============ SECTION SHELL ============ */
  section.band { padding: 104px 0; }
  .sec-head { max-width: 680px; margin-bottom: 56px; }
  .sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .sec-head .kicker { margin-bottom: 18px; }
  .sec-head h2 { font-size: clamp(32px, 3.8vw, 48px); font-weight: 700; line-height: 1.04; margin-bottom: 26px; letter-spacing: -0.025em; }
  .sec-head h2 em { font-style: normal; color: var(--orange); }
  .sec-head p { font-size: 19px; color: var(--slate); line-height: 1.6; }

  /* audience — editorial offset rows */
  .aud-list { display: flex; flex-direction: column; }
  .aud {
    display: grid; grid-template-columns: 80px 1fr auto; gap: 30px; align-items: center;
    padding: 32px 0; border-top: 1px solid var(--line); transition: padding-left .2s;
  }
  .aud:last-child { border-bottom: 1px solid var(--line); }
  .aud:hover { padding-left: 14px; }
  .aud .ix { font-family: var(--mono); font-size: 14px; color: var(--muted); }
  .aud .ac { max-width: 620px; }
  .aud h3 { font-size: 26px; font-weight: 600; margin-bottom: 8px; }
  .aud h3 .ic { display: inline-flex; vertical-align: middle; margin-right: 12px; color: var(--orange); }
  .aud p { font-size: 16px; color: var(--slate); line-height: 1.6; }
  .aud .tags { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; max-width: 220px; }
  .aud .tags span { font-family: var(--mono); font-size: 11px; color: var(--slate); border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px; white-space: nowrap; }

  /* engine — diagonal stagger */
  .engine { background: var(--bg-warm); }
  .eng-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .eng {
    background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px 26px;
    transition: box-shadow .2s, transform .2s; position: relative;
  }
  .eng:nth-child(2){ transform: translateY(26px); } .eng:nth-child(3){ transform: translateY(52px); } .eng:nth-child(4){ transform: translateY(78px); }
  .eng:hover { box-shadow: var(--shadow); }
  .eng .num { font-family: var(--mono); font-size: 12px; color: var(--orange); letter-spacing: .08em; margin-bottom: 60px; display: block; }
  .eng .ec-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--tint); color: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
  .eng h3 { font-size: 19px; font-weight: 600; margin-bottom: 9px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
  .eng h3 .tag { font-family: var(--mono); font-size: 10px; font-weight: 500; color: var(--orange-700); background: var(--tint); padding: 2px 7px; border-radius: 5px; letter-spacing: .02em; }
  .eng p { font-size: 14.5px; color: var(--slate); line-height: 1.58; }

  /* ============ QUALITY / ERROR DETECTION ============ */
  .quality { background: var(--orange); color: #fff; position: relative; overflow: hidden; }
  .quality::before { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 90% at 88% 8%, rgba(255,255,255,.16), transparent 50%); }
  .qual-in { display: grid; grid-template-columns: .92fr 1.08fr; gap: 60px; align-items: center; position: relative; }
  .qual-copy .kicker { color: #fff; }
  .qual-copy .kicker .sq, .qual-copy .kicker .ln { background: #fff; }
  .qual-copy h2 { font-size: clamp(32px, 3.8vw, 48px); font-weight: 700; line-height: 1.04; margin: 18px 0 26px; letter-spacing: -0.025em; }
  .qual-copy > p { font-size: 19px; color: rgba(255,255,255,.92); line-height: 1.6; margin-bottom: 30px; max-width: 480px; }
  .qual-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
  .qual-list .row { display: flex; gap: 13px; align-items: flex-start; }
  .qual-list .ck { width: 26px; height: 26px; border-radius: 8px; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .qual-list b { font-weight: 700; font-size: 15.5px; }
  .qual-list span { display: block; color: rgba(255,255,255,.85); font-size: 13.5px; line-height: 1.5; }

  .report { background: #fff; color: var(--ink); border-radius: var(--r-lg); box-shadow: 0 40px 80px -24px rgba(120,40,0,.5); overflow: hidden; }
  .report-top { display: flex; align-items: center; justify-content: space-between; padding: 16px 22px; border-bottom: 1px solid var(--line-2); }
  .report-top .t { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 14px; }
  .report-top .t .ai { width: 30px; height: 30px; border-radius: 8px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; }
  .report-top .grade { font-family: var(--mono); font-weight: 600; font-size: 12px; color: #b42318; background: #fef3f2; padding: 5px 12px; border-radius: 100px; display: flex; align-items: center; gap: 6px; }
  .report-prev { padding: 18px 22px; }
  .report-meta { font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: .03em; margin-bottom: 10px; display: flex; gap: 14px; flex-wrap: wrap; }
  .report-meta b { color: var(--ink); font-weight: 600; }
  .report-img { height: 152px; border-radius: 12px; background: #15110e; position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 5px; padding: 15px; }
  .report-img .ad-brand { position: absolute; top: 14px; right: -32px; font-size: 16px; letter-spacing: .28em; white-space: nowrap; }
  .report-img .typo { position: relative; z-index: 3; outline: 2px solid #ff3b30; border-radius: 4px; padding: 0 3px; }
  .report-img b { color: #fff; font-size: 18px; font-weight: 700; font-family: 'Space Grotesk'; }
  .report-img small { color: rgba(255,255,255,.8); font-size: 11px; }
  .report-img .ad-cta { font-family: var(--mono); font-size: 9px; font-weight: 700; background: #fff; color: #15110e; padding: 4px 9px; border-radius: 4px; margin-top: 3px; }
  .report-img .flag { position: absolute; border: 2px solid #ff3b30; border-radius: 6px; }
  .report-img .flag.f1 { top: 12px; right: 10px; width: 88px; height: 30px; z-index: 2; }
  .report-img .flag.f1::after { display: none; }
  .report-issues { padding: 4px 22px 20px; display: flex; flex-direction: column; gap: 10px; }
  .issue { display: flex; gap: 11px; align-items: flex-start; padding: 11px 14px; border-radius: 11px; background: var(--bg); border: 1px solid var(--line-2); }
  .issue .sev { width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
  .issue.err .sev { background: #fee4e2; color: #d92d20; }
  .issue.warn .sev { background: #fef0c7; color: #dc6803; }
  .issue.ok .sev { background: #d1fadf; color: #039855; }
  .issue b { font-size: 13.5px; font-weight: 700; display: block; }
  .issue span { font-size: 12.5px; color: var(--muted); }

  /* ============ HOW — vertical timeline ============ */
  .how-in { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; }
  .how-steps { display: flex; flex-direction: column; }
  .hstep { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding-bottom: 38px; position: relative; }
  .hstep:not(:last-child)::before { content: ''; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: repeating-linear-gradient(var(--line) 0 6px, transparent 6px 12px); }
  .hstep .num { width: 56px; height: 56px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--orange); font-family: 'Space Grotesk'; font-weight: 700; font-size: 22px; display: flex; align-items: center; justify-content: center; }
  .hstep h3 { font-size: 21px; font-weight: 600; margin: 10px 0 8px; }
  .hstep p { font-size: 15px; color: var(--slate); line-height: 1.6; }
  .how-aside { background: var(--ink); border-radius: var(--r-lg); padding: 32px; color: #fff; align-self: start; position: sticky; top: 100px; }
  .how-aside .ha-lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
  .how-aside h4 { font-family: 'Space Grotesk'; font-size: 24px; font-weight: 600; line-height: 1.18; margin-bottom: 14px; }
  .how-aside p { font-size: 14.5px; color: #99a0ab; line-height: 1.6; margin-bottom: 24px; }
  .how-aside .terminal { background: var(--ink-900); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 16px; font-family: var(--mono); font-size: 11.5px; line-height: 1.9; }
  .how-aside .terminal .c { color: #5b6472; }
  .how-aside .terminal .o { color: var(--orange); }
  .how-aside .terminal .g { color: #5dd28b; }
  .how-aside .terminal .w { color: #e6e9ee; }

  /* ============ INTEGRATIONS ============ */
  .integ { background: var(--bg-warm); }
  .integ-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
  .chip { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 11px; text-align: center; transition: transform .18s, box-shadow .18s, border-color .18s; }
  .chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
  .chip .mono-ic { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 16px; color: #fff; }
  .chip .name { font-size: 13.5px; font-weight: 600; color: var(--slate); }
  .integ-note { text-align: center; margin-top: 30px; font-size: 15px; color: var(--muted); }
  .integ-note b { color: var(--orange-700); font-weight: 700; }

  /* ============ SECURITY ============ */
  .security { background: var(--ink); color: #fff; }
  .sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .security .kicker { color: var(--orange); }
  .security h2 { font-size: clamp(32px, 3.6vw, 46px); font-weight: 700; line-height: 1.05; margin: 18px 0 26px; letter-spacing: -0.025em; }
  .security > .sec-grid > div > p { font-size: 18px; color: #aeb4bf; line-height: 1.6; margin-bottom: 30px; }
  .trustwall { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
  .tw-col { display: flex; flex-direction: column; gap: 16px; will-change: transform; }
  .tw-col.b { margin-top: 52px; }
  .tw-card { background: var(--ink-800); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; padding: 22px; height: 200px; display: flex; flex-direction: column; }
  .tw-card .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,104,5,.16); color: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
  .tw-card h4 { font-family: 'Space Grotesk'; font-size: 16px; font-weight: 600; margin-bottom: 7px; }
  .tw-card p { font-size: 13.5px; color: #99a0ab; line-height: 1.55; margin: 0; }
  .sec-feat .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,104,5,.16); color: var(--orange); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
  .sec-feat h4 { font-family: 'Space Grotesk'; font-size: 16px; font-weight: 600; margin-bottom: 6px; }
  .sec-feat p { font-size: 13.5px; color: #99a0ab; line-height: 1.55; margin: 0; }
  .badges { display: flex; gap: 14px; flex-wrap: wrap; }
  .badge-cert { display: flex; align-items: center; gap: 12px; background: var(--ink-800); border: 1px solid rgba(255,255,255,.07); border-radius: 14px; padding: 16px 20px; }
  .badge-cert .seal { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--orange); color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-weight: 600; font-size: 11px; flex-shrink: 0; }
  .badge-cert b { font-family: 'Space Grotesk'; font-size: 15px; display: block; }
  .badge-cert span { font-size: 12.5px; color: #99a0ab; }

  /* ============ TESTIMONIAL ============ */
  .quote-band { padding: 104px 0; background: var(--paper); }
  .quote-card { max-width: 940px; margin: 0 auto; }
  .quote-card .mono { color: var(--orange-700); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; display: block; }
  .quote-card blockquote { font-family: 'Space Grotesk'; font-size: clamp(26px, 3.4vw, 42px); font-weight: 500; line-height: 1.22; letter-spacing: -0.025em; margin-bottom: 34px; text-wrap: balance; }
  .quote-card blockquote em { font-style: normal; color: var(--orange); }
  .quote-author { display: flex; align-items: center; gap: 14px; }
  .quote-author .av { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-700)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk'; font-weight: 700; font-size: 18px; }
  .quote-author .meta b { font-weight: 700; font-size: 16px; display: block; }
  .quote-author .meta span { color: var(--muted); font-size: 14px; }

  /* ============ PRICING ============ */
  .pricing { background: var(--bg); }
  .toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 50px; }
  .toggle-wrap .lab { font-size: 15px; font-weight: 600; color: var(--muted); transition: color .15s; cursor: pointer; }
  .toggle-wrap .lab.active { color: var(--ink); }
  .toggle { width: 56px; height: 30px; border-radius: 100px; background: var(--ink); position: relative; cursor: pointer; border: none; padding: 0; flex-shrink: 0; }
  .toggle .knob { position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; transition: transform .2s ease; }
  .toggle.year .knob { transform: translateX(26px); }
  .save-pill { background: var(--tint); color: var(--orange-700); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 100px; font-family: var(--mono); }

  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
  .plan { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; display: flex; flex-direction: column; position: relative; }
  .plan.feat { border: 2px solid var(--orange); box-shadow: var(--shadow-orange); }
  .plan .pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; padding: 5px 16px; border-radius: 100px; white-space: nowrap; font-family: var(--mono); text-transform: uppercase; }
  .plan .pname { font-family: var(--mono); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
  .plan .pdesc { font-size: 14px; color: var(--muted); margin-bottom: 22px; min-height: 42px; }
  .plan .price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
  .plan .price .cur { font-family: 'Space Grotesk'; font-size: 24px; font-weight: 600; align-self: flex-start; margin-top: 8px; }
  .plan .price .amt { font-family: 'Space Grotesk'; font-size: 52px; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
  .plan .price .per { font-size: 15px; color: var(--muted); font-weight: 500; }
  .plan .billed { font-size: 13px; color: var(--muted); margin-bottom: 24px; min-height: 18px; font-family: var(--mono); }
  .plan .btn { width: 100%; margin-bottom: 26px; }
  .plan ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
  .plan ul li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--slate); line-height: 1.45; }
  .plan ul li svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
  .plan ul li b { color: var(--ink); font-weight: 700; }
  .plan ul .head { font-weight: 700; color: var(--ink); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; font-family: var(--mono); }

  .compare { padding-top: 30px; }
  .compare-toggle { text-align: center; margin-bottom: 8px; }
  .compare-toggle button { background: none; border: none; cursor: pointer; font-family: 'Archivo'; font-weight: 600; font-size: 15px; color: var(--orange-700); display: inline-flex; align-items: center; gap: 8px; padding: 10px; }
  .compare-toggle svg { transition: transform .2s; }
  .compare-toggle.open svg { transform: rotate(180deg); }
  .ctable-wrap { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
  .ctable-wrap.open { max-height: 2600px; }
  .ctable { width: 100%; border-collapse: collapse; margin-top: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
  .ctable th, .ctable td { padding: 16px 22px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line-2); }
  .ctable thead th { background: var(--ink); color: #fff; font-family: 'Space Grotesk'; font-weight: 600; font-size: 15px; }
  .ctable thead th:not(:first-child) { text-align: center; width: 17%; }
  .ctable thead th.hl { background: var(--orange); }
  .ctable td:not(:first-child) { text-align: center; }
  .ctable tr.group td { background: var(--bg-warm); font-family: var(--mono); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--slate); }
  .ctable td .yes { color: var(--orange); font-weight: 700; }
  .ctable td .no { color: #cfd3da; }
  .ctable td.val { font-weight: 600; color: var(--ink); }
  .ctable tbody tr:hover td { background: #fffaf6; }
  .ctable tbody tr.group:hover td { background: var(--bg-warm); }

  /* ============ CTA ============ */
  .cta-band { padding: 104px 0; background: var(--bg); }
  .cta-box { position: relative; background: var(--ink); border-radius: var(--r-lg); padding: 72px 64px; overflow: hidden; display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
  #ctaSwarm { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .8; }
  .cta-box .c { position: relative; z-index: 2; }
  .cta-box h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 700; color: #fff; line-height: 1.06; margin-bottom: 16px; letter-spacing: -0.025em; }
  .cta-box p { font-size: 18px; color: #aeb4bf; line-height: 1.55; max-width: 480px; }
  .cta-box .actions { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; }
  .cta-box .actions .btn { width: 100%; }
  .cta-box .actions small { color: #767e8c; font-size: 13px; text-align: center; font-family: var(--mono); }

  /* ============ FOOTER ============ */
  footer.site { background: var(--ink); color: #fff; padding: 48px 0 32px; border-top: 1px solid rgba(255,255,255,.08); }
  .foot-wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
  .foot-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .foot-top img { height: 24px; }
  .foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
  .foot-links a { color: #c2c7cf; font-size: 14.5px; transition: color .15s; }
  .foot-links a:hover { color: var(--orange); }
  .foot-bottom { padding-top: 22px; color: #767e8c; font-size: 13.5px; font-family: var(--mono); }

  /* ====== back-to-top button ====== */
  .to-top {
    position: fixed; right: 24px; bottom: 24px; z-index: 80;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--orange); color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px -8px rgba(255,104,5,.6);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s, background .15s;
  }
  .to-top.show { opacity: 1; visibility: visible; transform: none; }
  .to-top:hover { background: var(--orange-600); }
  .to-top:active { transform: translateY(1px); }
  @media (max-width: 680px) { .to-top { right: 16px; bottom: 16px; } }

  /* ====== section accents (subtle, straight seams) ====== */
  #audience, .pricing { position: relative; isolation: isolate; }
  #audience::before, .pricing::before {
    content: ''; position: absolute; z-index: -1; pointer-events: none;
    width: 540px; height: 540px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,104,5,.07), transparent 66%);
  }
  #audience::before { top: -180px; right: -150px; }
  .pricing::before { bottom: -190px; left: -170px; }

  /* a11y + touch */
  a, button { -webkit-tap-highlight-color: rgba(255,104,5,.18); }
  :focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
  .btn { touch-action: manipulation; }
  img { max-width: 100%; height: auto; }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
  }

  /* ============ v3 ENTERPRISE ADDITIONS ============ */
  .scatter .conv-dot::after { content: 'Zentrale Auswertung'; }
  .pstats { display: flex; flex-direction: column; margin-top: 28px; }
  .pstat { display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: center; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1); }
  .pstat:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
  .pstat .pn { font-family: 'Space Grotesk'; font-weight: 700; font-size: 34px; color: #fff; letter-spacing: -.03em; line-height: 1; }
  .pstat.alarm .pn { color: var(--orange); }
  .pstat .pl { font-size: 14.5px; color: #aeb4bf; line-height: 1.45; }
  .pstat .pl b { color: #fff; font-weight: 600; }

  .pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .pain { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 28px; display: flex; gap: 18px; align-items: flex-start; transition: box-shadow .2s, transform .2s; }
  .pain:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .pain .pic { width: 48px; height: 48px; border-radius: 13px; background: var(--tint); color: var(--orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .pain h3 { font-size: 19px; font-weight: 600; margin-bottom: 7px; }
  .pain p { font-size: 14.5px; color: var(--slate); line-height: 1.58; }

  .steps4 { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
  .step4 { padding: 32px 28px; position: relative; }
  .step4 + .step4 { border-left: 1px solid var(--line); }
  .step4 .s-ix { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--orange); letter-spacing: .08em; display: block; margin-bottom: 18px; }
  .step4 h3 { font-size: 18px; font-weight: 600; margin-bottom: 9px; letter-spacing: -.01em; }
  .step4 p { font-size: 14px; color: var(--slate); line-height: 1.55; }
  .step4:not(:last-child)::after { content: ''; position: absolute; top: 36px; right: -7px; width: 12px; height: 12px; border-top: 2px solid var(--line); border-right: 2px solid var(--line); transform: rotate(45deg); background: #fff; z-index: 3; }

  .benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .benefit { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px; transition: box-shadow .2s, transform .2s; }
  .benefit:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .benefit .bic { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
  .benefit.b-o .bic { background: var(--tint); color: var(--orange); }
  .benefit.b-b .bic { background: rgba(37,99,235,.12); color: var(--blue); }
  .benefit.b-t .bic { background: rgba(20,184,166,.14); color: #0E9F8B; }
  .benefit h3 { font-size: 17px; font-weight: 600; margin-bottom: 7px; }
  .benefit p { font-size: 14px; color: var(--slate); line-height: 1.55; }

  .roi { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .roi-col { border-radius: var(--r-lg); padding: 36px 34px; }
  .roi-col.without { background: #fff; border: 1px solid var(--line); }
  .roi-col.with { background: var(--ink); color: #fff; }
  .roi-h { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 22px; }
  .roi-col.without .roi-h { color: var(--muted); }
  .roi-col.with .roi-h { color: var(--orange); }
  .roi-col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .roi-col li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; line-height: 1.45; }
  .roi-col.without li { color: var(--slate); }
  .roi-col.with li { color: #e6e9ee; }
  .roi-col li .mk { width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
  .roi-col.without li .mk { background: #f1f0ec; color: var(--muted); }
  .roi-col.with li .mk { background: rgba(20,184,166,.2); color: #3fd6c0; }

  .nots { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 26px; }
  .not.not-wide { grid-column: 1 / -1; }
  .not { display: flex; gap: 12px; align-items: flex-start; background: var(--ink-800); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 15px 16px; }
  .not .x { width: 26px; height: 26px; border-radius: 7px; background: rgba(37,99,235,.18); color: #7aa7ff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .not span { font-size: 14px; color: #cdd2da; line-height: 1.4; }
  .not span b { color: #fff; font-weight: 600; }
  .not.do .x { background: rgba(20,184,166,.2); color: #3fd6c0; }
  .not.do span { color: #fff; }

  .proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .proof-tile { border: 1.5px dashed var(--line); border-radius: var(--r); padding: 32px 26px; background: rgba(255,255,255,.5); position: relative; text-align: center; }
  .proof-tile .soon-tag { position: absolute; top: 14px; right: 14px; font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--orange-700); background: var(--tint); padding: 3px 9px; border-radius: 100px; }
  .proof-tile .pic-ph { width: 56px; height: 56px; border-radius: 14px; background: var(--paper); color: var(--muted); display: flex; align-items: center; justify-content: center; margin: 6px auto 16px; }
  .proof-tile b { font-family: 'Space Grotesk'; font-size: 18px; display: block; margin-bottom: 6px; }
  .proof-tile p { font-size: 14px; color: var(--muted); line-height: 1.5; }

  .trust .lg.slot { width: 132px; height: 32px; border: 1px dashed var(--line); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--muted); }

  @media (max-width: 1000px) {
    .pain-grid, .benefits, .roi, .nots, .proof-grid { grid-template-columns: 1fr 1fr; }
    .steps4 { grid-template-columns: 1fr 1fr; }
    .step4::after { display: none; }
    .step4:nth-child(odd) { border-left: none; }
    .step4 { border-top: 1px solid var(--line); }
    .step4:nth-child(1), .step4:nth-child(2) { border-top: none; }
    .pstat { grid-template-columns: 120px 1fr; }
  }
  @media (max-width: 680px) {
    .pain-grid, .benefits, .roi, .nots, .proof-grid, .steps4 { grid-template-columns: 1fr; }
    .step4 { border-left: none; }
    .pstat { grid-template-columns: 1fr; gap: 4px; }
  }

  /* ============ DASHBOARD PREVIEW ============ */
  .dashprev { background: var(--bg-warm); }
  .dp-frame { border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: 0 44px 100px -38px rgba(20,23,28,.45); }
  .dp-chrome { height: 46px; background: #EDEFF2; border-bottom: 1px solid #DCE0E6; display: flex; align-items: center; gap: 16px; padding: 0 16px; }
  .dp-lights { display: flex; gap: 7px; }
  .dp-lights i { width: 11px; height: 11px; border-radius: 50%; display: block; }
  .dp-lights i:nth-child(1){ background:#FF5F57; } .dp-lights i:nth-child(2){ background:#FEBC2E; } .dp-lights i:nth-child(3){ background:#28C840; }
  .dp-url { flex: 1; max-width: 380px; height: 28px; background: #fff; border: 1px solid #DDE2E8; border-radius: 8px; display: flex; align-items: center; gap: 8px; padding: 0 12px; font-family: var(--mono); font-size: 12px; color: #6b7280; }
  .dp-url svg { flex-shrink: 0; color: #9aa3af; }
  .dp-body { display: grid; grid-template-columns: 66px 1fr; }
  .dp-rail { background: var(--ink); padding: 18px 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .dp-rail .logo { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,104,5,.18); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
  .dp-rail .nv { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #5b6472; }
  .dp-rail .nv.on { background: rgba(255,104,5,.16); color: var(--orange); }
  .dp-main { padding: 22px 24px 0; background: var(--bg); min-width: 0; }
  .dp-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .dp-top h4 { font-family: 'Space Grotesk'; font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
  .dp-top .live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: var(--muted); }
  .dp-top .live .d { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(14,159,110,.18); animation: pulse 1.8s infinite; }
  .dp-top .search { margin-left: auto; height: 32px; border: 1px solid var(--line); background: #fff; border-radius: 9px; display: flex; align-items: center; gap: 8px; padding: 0 12px; font-size: 12.5px; color: var(--faint, #9aa1ad); }
  .dp-top .search svg { color: var(--muted); }
  .dp-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 18px; }
  .dp-kpi { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; }
  .dp-kpi .l { font-size: 11.5px; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 7px; }
  .dp-kpi .l .ic { width: 9px; height: 9px; border-radius: 3px; }
  .dp-kpi .v { font-family: 'Space Grotesk'; font-size: 25px; font-weight: 700; letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; }
  .dp-kpi .v small { font-size: 14px; color: var(--muted); font-weight: 600; }
  .dp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-height: 206px; overflow: hidden; }
  .dp-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; transition: box-shadow .18s, transform .18s; }
  .dp-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .dp-card.flag { border-color: #f1cfa8; }
  .dp-shot { height: 104px; position: relative; }
  .dp-shot::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,18,24,.05) 35%, rgba(12,18,24,.5)); }
  .dp-shot .fmt { position: absolute; top: 7px; left: 7px; z-index: 2; font-family: var(--mono); font-size: 8px; color: #fff; background: rgba(16,20,26,.55); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); padding: 2px 6px; border-radius: 4px; }
  .dp-shot .brandmark { position: absolute; bottom: 9px; left: 10px; z-index: 2; font-size: 11px; letter-spacing: .22em; text-shadow: 0 1px 3px rgba(0,0,0,.5); }
  .dp-cardmeta { display: flex; align-items: center; justify-content: space-between; gap: 6px; padding: 8px 10px; font-family: var(--mono); font-size: 9px; color: var(--muted); }
  .dp-cardmeta .b { display: inline-flex; align-items: center; gap: 4px; padding: 2px 6px; border-radius: 5px; font-weight: 600; }
  .dp-cardmeta .ok { background: #d1fadf; color: #039855; }
  .dp-cardmeta .err { background: #fee4e2; color: #d92d20; }
  .dp-caption { display: flex; justify-content: center; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
  .dp-caption .ci { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--slate); }
  .dp-caption .ci svg { color: var(--orange); flex-shrink: 0; }
  @media (max-width: 680px) {
    .dp-body { grid-template-columns: 1fr; }
    .dp-rail { display: none; }
    .dp-grid { grid-template-columns: 1fr; }
    .dp-top .search { display: none; }
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1000px) {
    .dp-kpis { grid-template-columns: 1fr 1fr; }
    .dp-grid { grid-template-columns: 1fr 1fr; }
    .dp-caption { gap: 16px 28px; }
    .hero-in { grid-template-columns: 1fr; gap: 40px; padding-top: 52px; padding-bottom: 52px; }
    .hero-stage { height: 400px; max-width: 460px; margin: 0 auto; width: 100%; }
    .swarm-grid, .vantage-in, .qual-in, .sec-grid, .how-in, .cta-box { grid-template-columns: 1fr; gap: 40px; }
    .shoulder image-slot { height: 440px; }
    .eng-rail { grid-template-columns: 1fr 1fr; }
    .eng:nth-child(2),.eng:nth-child(3),.eng:nth-child(4){ transform: none; }
    .integ-grid { grid-template-columns: repeat(3, 1fr); }
    .price-grid { grid-template-columns: 1fr; }
    .price-grid .plan.feat { order: -1; }
    .scatter { height: 400px; }
    .how-aside { position: static; }
    .nav-links, .nav-actions .btn-ghost:not(.nav-toggle), .nav-live { display: none; }
    .nav-toggle { display: inline-flex; }
  }
  /* Tablets (z. B. iPad quer 1024px) -> Burger statt enger Desktop-Nav */
  @media (max-width: 1100px) {
    .nav-links, .nav-actions .btn-ghost:not(.nav-toggle), .nav-live { display: none; }
    .nav-toggle { display: inline-flex; }
  }
  @media (max-width: 680px) {
    body { font-size: 16px; }
    .wrap, .foot-wrap { padding: 0 22px; }
    /* Header-CTA auf Mobile entfernen (liegt im Burger-Menü) */
    .nav-actions .btn-primary { display: none; }
    /* Lange dt. Wörter in allen Überschriften umbrechen statt anschneiden */
    h1, h2, h3, .display, blockquote, .cta-box h2, .swarm h2 { overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
    .cta-box h2 { font-size: clamp(24px, 7.5vw, 34px); }
    /* Hero-Texte sauber umbrechen statt anschneiden */
    .hero h1 { font-size: clamp(30px, 8.5vw, 42px); overflow-wrap: break-word; hyphens: auto; }
    .hero-lead { overflow-wrap: break-word; }
    .hero-in { padding-top: 40px; }
    /* Mobile: nur die schwarze Pille, weiße Kapsel + Zusatztext entfernen, linksbündig */
    .hero-badge { background: none; border: none; box-shadow: none; padding: 0; margin: 0 0 22px; font-size: 0; gap: 0; }
    .hero-badge .pill { font-size: 11px; }
    section.band, .swarm, .vantage, .quote-band { padding: 64px 0; }
    .qual-list { grid-template-columns: 1fr; }
    .eng-rail, .sec-feats, .aud .tags { grid-template-columns: 1fr; }
    .trustwall { grid-template-columns: 1fr; }
    .tw-col.b { margin-top: 0; }
    .tw-col { transform: none !important; }
    .tw-card { height: auto; min-height: 0; }
    .aud { grid-template-columns: 1fr; gap: 12px; }
    .aud .tags { flex-direction: row; max-width: none; justify-content: flex-start; }
    .integ-grid { grid-template-columns: repeat(2, 1fr); }
    .ctable-wrap { overflow-x: auto; }
    .ctable { min-width: 580px; }
    .cta-box { padding: 44px 26px; }
    .trust-in { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-ticker { flex-wrap: wrap; gap: 10px 16px; }
    .scatter { height: 360px; }
    .sight { width: 150px; }
  }
