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

  :root {
    --ink: #0A0A0A;
    --lime: #C8F135;
    --lime-dim: #8FAD22;
    --white: #FFFFFF;
    --gray: #666666;
    --muted: #333333;
    --card: #111111;
    --border: #1E1E1E;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--ink);
    color: var(--white);
    font-family: 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    cursor: none;
  }

  /* ── CUSTOM CURSOR ── */
  .cursor {
    position: fixed;
    width: 10px; height: 10px;
    background: var(--lime);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s, width 0.2s, height 0.2s;
    mix-blend-mode: difference;
  }
  .cursor.expand { width: 40px; height: 40px; }

  /* ── PROGRESS BAR ── */
  .progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: var(--lime);
    z-index: 1000;
    width: 0%;
    transition: width 0.1s linear;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 28px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    mix-blend-mode: difference;
  }

  .nav-logo {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-dot {
    width: 8px; height: 8px;
    background: var(--lime);
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
  }

  .nav-contact {
    font-size: 13px;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0.5;
  }

  /* ── SECTIONS ── */
  section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 48px;
    position: relative;
  }

  /* ── ACT 1: HOOK ── */
  #act1 {
    flex-direction: column;
    text-align: center;
    overflow: hidden;
  }

  .hero-name {
    font-size: clamp(120px, 18vw, 260px);
    font-weight: 900;
    letter-spacing: -6px;
    line-height: 0.85;
    color: var(--lime);
    opacity: 0;
    transform: translateY(60px);
    animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  }

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

  .hero-tagline {
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 32px;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
  }

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

  .scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.8s forwards;
  }

  .scroll-hint span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray);
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--lime), transparent);
    animation: scrollDown 1.5s ease infinite;
  }

  @keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ── ACT 2: PROBLEM ── */
  #act2 {
    background: var(--ink);
    flex-direction: column;
    text-align: center;
  }

  .problem-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 48px;
    opacity: 0;
    transition: opacity 0.8s ease;
  }

  .problem-label.visible { opacity: 1; }

  .big-number {
    font-size: clamp(64px, 12vw, 160px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    color: var(--white);
    position: relative;
    display: inline-block;
    opacity: 0;
    transition: opacity 0.8s ease 0.2s;
  }

  .big-number.visible { opacity: 1; }

  .big-number .strike {
    position: absolute;
    top: 50%;
    left: -5%;
    right: -5%;
    height: 6px;
    background: var(--lime);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
  }

  .big-number.visible .strike { transform: scaleX(1); }

  .problem-sub {
    font-size: clamp(16px, 2.5vw, 26px);
    color: var(--gray);
    margin-top: 32px;
    opacity: 0;
    transition: opacity 0.8s ease 1.2s;
  }

  .problem-sub.visible { opacity: 1; }

  .better-way {
    font-size: clamp(28px, 5vw, 64px);
    font-weight: 800;
    color: var(--lime);
    margin-top: 48px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 1.6s, transform 0.8s ease 1.6s;
    letter-spacing: -2px;
  }

  .better-way.visible { opacity: 1; transform: translateY(0); }

  /* ── ACT 3: SOLUTION ── */
  #act3 {
    flex-direction: column;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
  }

  .solution-text { }

  .section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--lime-dim);
    margin-bottom: 28px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .section-label.visible { opacity: 1; transform: translateX(0); }

  .solution-headline {
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  }

  .solution-headline.visible { opacity: 1; transform: translateY(0); }
  .solution-headline em { font-style: normal; color: var(--lime); }

  .solution-body {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 440px;
    opacity: 0;
    transition: opacity 0.8s ease 0.4s;
  }

  .solution-body.visible { opacity: 1; }

  /* Screen mockup */
  .screen-mockup {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    opacity: 0;
    transform: translateX(40px) rotate(2deg);
    transition: opacity 0.9s ease 0.3s, transform 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s;
  }

  .screen-mockup.visible { opacity: 1; transform: translateX(0) rotate(0deg); }

  .screen-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .screen-dot { width: 8px; height: 8px; border-radius: 50%; }
  .screen-dot.live { background: var(--lime); animation: pulse 2s infinite; }
  .screen-dot.off { background: var(--muted); }

  .screen-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    margin-left: 4px;
  }

  .ad-slot {
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .ad-slot.visible { opacity: 1; transform: translateY(0); }
  .ad-slot:nth-child(1) { transition-delay: 0.5s; }
  .ad-slot:nth-child(2) { transition-delay: 0.7s; }

  .ad-slot-1 { background: var(--lime); }
  .ad-slot-2 { background: #1E3A5F; }

  .ad-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    opacity: 0.6;
  }

  .ad-slot-1 .ad-tag { color: var(--ink); }
  .ad-slot-2 .ad-tag { color: #88BBEE; }

  .ad-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
  }

  .ad-slot-1 .ad-name { color: var(--ink); }
  .ad-slot-2 .ad-name { color: var(--white); }

  .ad-loc {
    font-size: 11px;
    margin-top: 4px;
    opacity: 0.5;
  }

  .ad-slot-1 .ad-loc { color: var(--ink); }
  .ad-slot-2 .ad-loc { color: var(--white); }

  .screen-ticker {
    background: var(--lime);
    border-radius: 0 0 16px 16px;
    margin: 20px -24px -24px;
    padding: 10px 24px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
  }

  /* ── ACT 4: TWO AUDIENCES ── */
  #act4 {
    padding: 0;
    min-height: 100vh;
  }

  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    width: 100%;
  }

  .split-half {
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .split-half-left { background: var(--ink); border-right: 1px solid var(--border); }
  .split-half-right { background: #0D0D0D; }

  .audience-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    transition: opacity 0.7s ease;
  }

  .audience-badge.visible { opacity: 1; }
  .badge-lime { background: var(--lime); color: var(--ink); }
  .badge-outline { border: 1px solid var(--lime); color: var(--lime); background: transparent; }

  .audience-headline {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
  }

  .audience-headline.visible { opacity: 1; transform: translateY(0); }
  .audience-headline .lime { color: var(--lime); }

  .benefit-row {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 48px;
  }

  .benefit {
    opacity: 0;
    transform: translateX(-16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .benefit.visible { opacity: 1; transform: translateX(0); }
  .benefit:nth-child(1) { transition-delay: 0.3s; }
  .benefit:nth-child(2) { transition-delay: 0.45s; }
  .benefit:nth-child(3) { transition-delay: 0.6s; }

  .benefit-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .benefit-dash {
    width: 20px;
    height: 3px;
    background: var(--lime);
    border-radius: 2px;
    flex-shrink: 0;
  }

  .benefit-sub {
    font-size: 13px;
    color: var(--gray);
    padding-left: 32px;
  }

  .split-cta {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.7s ease 0.8s;
  }

  .split-cta.visible { opacity: 1; }
  .cta-lime { background: var(--lime); color: var(--ink); }
  .cta-outline { border: 1px solid var(--lime); color: var(--lime); }

  /* ── ACT 5: STATS ── */
  #act5 {
    background: var(--lime);
    flex-direction: column;
    text-align: center;
    padding: 100px 48px;
  }

  #act5 .section-label { color: rgba(0,0,0,0.4); }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 100%;
    max-width: 1100px;
    margin-top: 64px;
  }

  .stat-block {
    padding: 48px 40px;
    background: var(--lime);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .stat-block::after {
    content: '';
    position: absolute;
    right: 0; top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(0,0,0,0.15);
  }

  .stat-block:last-child::after { display: none; }
  .stat-block.visible { opacity: 1; transform: translateY(0); }
  .stat-block:nth-child(1) { transition-delay: 0s; }
  .stat-block:nth-child(2) { transition-delay: 0.15s; }
  .stat-block:nth-child(3) { transition-delay: 0.3s; }

  .stat-num {
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: -3px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 12px;
  }

  .stat-label-text {
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    letter-spacing: 0.5px;
    line-height: 1.4;
  }

  /* ── ACT 6: HOW IT WORKS ── */
  #act6 {
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    gap: 80px;
  }

  .act6-header { text-align: center; width: 100%; }

  .act6-headline {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1.0;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .act6-headline.visible { opacity: 1; transform: translateY(0); }
  .act6-headline .lime { color: var(--lime); }

  .steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
  }

  .step-card {
    background: var(--card);
    padding: 36px 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.2s ease;
  }

  .step-card:hover { background: #161616; }
  .step-card.visible { opacity: 1; transform: translateY(0); }
  .step-card:nth-child(1) { transition-delay: 0s; }
  .step-card:nth-child(2) { transition-delay: 0.1s; }
  .step-card:nth-child(3) { transition-delay: 0.2s; }
  .step-card:nth-child(4) { transition-delay: 0.3s; }

  .step-num {
    font-size: 42px;
    font-weight: 900;
    color: var(--lime);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
  }

  .step-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .step-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
  }

  /* ── ACT 7: FINAL CTA ── */
  #act7 {
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-bg-text {
    position: absolute;
    font-size: clamp(100px, 20vw, 280px);
    font-weight: 900;
    color: var(--lime);
    opacity: 0.03;
    letter-spacing: -10px;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }

  .cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .cta-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray);
    opacity: 0;
    transition: opacity 0.7s ease;
  }

  .cta-eyebrow.visible { opacity: 1; }

  .cta-main {
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -4px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
  }

  .cta-main.visible { opacity: 1; transform: translateY(0); }
  .cta-main .lime { color: var(--lime); }

  .cta-sub {
    font-size: 16px;
    color: var(--gray);
    max-width: 400px;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.7s ease 0.5s;
  }

  .cta-sub.visible { opacity: 1; }

  .cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
  }

  .cta-buttons.visible { opacity: 1; transform: translateY(0); }

  .btn {
    padding: 18px 36px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border: none;
  }

  .btn:hover { transform: translateY(-2px); opacity: 0.9; }
  .btn-lime { background: var(--lime); color: var(--ink); }
  .btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--white); }

  .contact-line {
    font-size: 13px;
    color: var(--gray);
    opacity: 0;
    transition: opacity 0.7s ease 0.9s;
  }

  .contact-line.visible { opacity: 1; }
  .contact-line a { color: var(--lime); text-decoration: none; }

  /* ── FOOTER ── */
  footer {
    padding: 32px 48px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--gray);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { padding: 20px 24px; }
    section { padding: 80px 24px; }
    .solution-grid { grid-template-columns: 1fr; gap: 48px; }
    .split { grid-template-columns: 1fr; }
    .split-half { padding: 80px 24px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-block::after { display: none; }
    .steps-row { grid-template-columns: 1fr 1fr; }
    #act6 { gap: 48px; }
    footer { flex-direction: column; gap: 12px; text-align: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }

  /* ── LEGAL PAGES (Impressum / Datenschutz) ── */
  .legal-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 140px 24px 100px;
    cursor: auto;
  }

  .legal-wrap h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
  }

  .legal-wrap .legal-sub {
    color: var(--gray);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 56px;
  }

  .legal-wrap h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--lime);
    margin: 48px 0 16px;
    letter-spacing: -0.3px;
  }

  .legal-wrap h2:first-of-type { margin-top: 0; }

  .legal-wrap p, .legal-wrap li {
    font-size: 15px;
    line-height: 1.7;
    color: #cfcfcf;
    margin-bottom: 12px;
  }

  .legal-wrap ul {
    margin: 0 0 16px 20px;
  }

  .legal-wrap a {
    color: var(--lime);
    text-decoration: none;
    border-bottom: 1px solid var(--lime-dim);
  }

  .legal-wrap a:hover { color: var(--white); }

  .legal-wrap strong { color: var(--white); }

  .legal-back {
    display: inline-block;
    margin-bottom: 40px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    border-bottom: none;
  }

  .legal-back:hover { color: var(--lime); }

  .legal-wrap section + section { border-top: 1px solid var(--border); padding-top: 8px; }

  .legal-lang {
    display: inline-block;
    float: right;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 40px;
  }
  .legal-lang a { border-bottom: 1px solid var(--lime-dim); color: var(--gray); }
  .legal-lang a:hover { color: var(--lime); }
  .legal-lang span { color: var(--lime); }
