  :root{
    --bg:#0B0A0D;
    --bg-alt:#131017;
    --bg-alt-2:#0f0e13;
    --card:#17151c;
    --card-border:rgba(255,255,255,0.07);
    --text:#F6F3EE;
    --text-dim:#a29fac;
    --text-dimmer:#716e7c;
    --orange:#F2762E;
    --pink:#E63888;
    --purple:#8B5CF6;
    --blue:#3E7BFA;
    --teal:#2FD1C5;
    --gold:#D9A441;
    --grad: linear-gradient(90deg, var(--orange), var(--pink), var(--purple), var(--blue));
    --grad-soft: linear-gradient(120deg, rgba(242,118,46,0.18), rgba(230,56,136,0.14), rgba(139,92,246,0.14), rgba(62,123,250,0.18));
    --radius: 20px;
    --maxw: 1180px;
  }

  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:'Inter',system-ui,-apple-system,sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3{
    font-family:'Anton',sans-serif;
    font-weight:400;
    text-transform:uppercase;
    letter-spacing:0.01em;
    line-height:0.98;
    margin:0;
  }
  p{margin:0; color:var(--text-dim); line-height:1.65;}
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .mono{
    font-family:'Space Mono',monospace;
  }
  .wrap{
    max-width:var(--maxw);
    margin:0 auto;
    padding:0 28px;
  }
  section{position:relative;}

  ::selection{background:var(--pink); color:#fff;}

  /* focus visibility */
  a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible{
    outline:2px solid var(--teal);
    outline-offset:3px;
    border-radius:6px;
  }

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }

  /* ---------- utility ---------- */
  .eyebrow{
    font-family:'Space Mono',monospace;
    font-size:12.5px;
    letter-spacing:0.18em;
    text-transform:uppercase;
    color:var(--text-dim);
    display:inline-flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:7px;height:7px;border-radius:50%;
    background:var(--grad);
    flex-shrink:0;
  }
  .grad-text{
    background:var(--grad);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 28px;
    border-radius:100px;
    font-family:'Inter',sans-serif;
    font-weight:700;
    font-size:15.5px;
    cursor:pointer;
    border:none;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .btn-primary{
    background:var(--grad);
    color:#0B0A0D;
    box-shadow:0 8px 30px -6px rgba(230,56,136,0.45);
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 40px -8px rgba(230,56,136,0.6);}
  .btn-ghost{
    background:transparent;
    color:var(--text);
    border:1px solid var(--card-border);
  }
  .btn-ghost:hover{ border-color:rgba(255,255,255,0.25); }

  /* ---------- reveal on scroll ---------- */
  .reveal{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ---------- waveform signature ---------- */
  .waveform{
    display:flex;
    align-items:flex-end;
    gap:4px;
    height:34px;
  }
  .waveform span{
    width:3px;
    border-radius:2px;
    background:var(--grad);
    display:block;
    animation:bar 2.4s ease-in-out infinite;
  }
  @keyframes bar{
    0%,100%{ transform:scaleY(0.35); }
    50%{ transform:scaleY(1); }
  }

  .divider-wave{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:3px;
    height:22px;
    opacity:0.5;
    margin: 0 auto;
  }
  .divider-wave span{
    width:2px;
    border-radius:2px;
    background:var(--grad);
    animation:bar 3s ease-in-out infinite;
  }

  /* ================= NAV ================= */
  header{
    position:fixed;
    top:0; left:0; right:0;
    z-index:100;
    backdrop-filter:blur(14px);
    background:rgba(11,10,13,0.72);
    border-bottom:1px solid rgba(255,255,255,0.06);
  }
  .nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 28px;
    max-width:var(--maxw);
    margin:0 auto;
  }
  .nav-brand{
    display:flex;
    align-items:center;
    gap:11px;
    font-family:'Anton',sans-serif;
    text-transform:uppercase;
    font-size:16px;
    letter-spacing:0.02em;
  }
  .nav-brand img{ width:34px; height:34px; border-radius:9px; }
  .nav-links{
    display:flex;
    gap:32px;
    align-items:center;
    font-size:14.5px;
    font-weight:500;
    color:var(--text-dim);
  }
  .nav-links a:hover{ color:var(--text); }
  .nav-cta{ display:flex; }
  .nav .btn-primary{ padding:11px 20px; font-size:14px; }
  @media (max-width:760px){
    .nav-links{ display:none; }
  }

  /* ================= HERO ================= */
  .hero{
    padding:168px 0 110px;
    position:relative;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-220px; left:50%;
    transform:translateX(-50%);
    width:1100px; height:700px;
    background:radial-gradient(ellipse at center, rgba(139,92,246,0.30), rgba(230,56,136,0.16) 40%, transparent 70%);
    filter:blur(10px);
    pointer-events:none;
  }
  .hero-inner{
    position:relative;
    z-index:2;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .hero-logo{
    width:180px; height:180px;
    border-radius:38px;
    margin-bottom:34px;
    box-shadow:0 30px 80px -14px rgba(230,56,136,0.45);
  }
  @media (max-width:600px){
    .hero-logo{ width:128px; height:128px; border-radius:28px; }
  }
  .hero h1{
    font-size:clamp(40px, 7vw, 84px);
    max-width:920px;
    letter-spacing:0.005em;
  }
  .hero h1 span.line2{ display:block; }
  .hero-sub{
    max-width:560px;
    margin-top:26px;
    font-size:18.5px;
    color:var(--text-dim);
  }
  .hero-cta-row{
    margin-top:42px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
  }
  .hero-note{
    font-size:13px;
    color:var(--text-dimmer);
    font-family:'Space Mono',monospace;
    letter-spacing:0.02em;
  }
  .hero-wave{
    margin-top:64px;
    justify-content:center;
  }
  .hero-wave span:nth-child(1){height:12px; animation-delay:0.1s;}
  .hero-wave span:nth-child(2){height:22px; animation-delay:0.3s;}
  .hero-wave span:nth-child(3){height:34px; animation-delay:0.05s;}
  .hero-wave span:nth-child(4){height:18px; animation-delay:0.4s;}
  .hero-wave span:nth-child(5){height:28px; animation-delay:0.2s;}
  .hero-wave span:nth-child(6){height:34px; animation-delay:0s;}
  .hero-wave span:nth-child(7){height:16px; animation-delay:0.35s;}
  .hero-wave span:nth-child(8){height:26px; animation-delay:0.15s;}
  .hero-wave span:nth-child(9){height:20px; animation-delay:0.25s;}
  .hero-wave span:nth-child(10){height:12px; animation-delay:0.45s;}
  .hero-wave span:nth-child(11){height:30px; animation-delay:0.1s;}
  .hero-wave span:nth-child(12){height:18px; animation-delay:0.3s;}

  /* ================= SECTION HEADS ================= */
  .section-pad{ padding:110px 0; }
  .section-head{
    max-width:640px;
    margin-bottom:56px;
  }
  .section-head h2{
    font-size:clamp(30px,4.4vw,48px);
    margin-top:16px;
  }
  .section-head p{
    margin-top:18px;
    font-size:17px;
  }
  .bg-alt{ background:var(--bg-alt); }

  /* ================= WARUM (problem) ================= */
  .why-grid{
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap:64px;
    align-items:center;
  }
  .why-text p{ font-size:17px; margin-top:16px; }
  .why-text p + p{ margin-top:14px; }
  .why-card{
    background:var(--card);
    border:1px solid var(--card-border);
    border-radius:var(--radius);
    padding:36px;
    position:relative;
    overflow:hidden;
  }
  .why-card::before{
    content:"";
    position:absolute; inset:0;
    background:var(--grad-soft);
    opacity:0.5;
    pointer-events:none;
  }
  .why-stat{
    position:relative;
    font-family:'Anton',sans-serif;
    font-size:64px;
    line-height:1;
  }
  .why-card p{ position:relative; margin-top:14px; font-size:15.5px; }
  .why-card + .why-card{ margin-top:20px; }
  @media (max-width:900px){
    .why-grid{ grid-template-columns:1fr; gap:36px; }
  }

  /* ================= FEATURE CARDS ================= */
  .feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
  }
  .feature-card{
    background:var(--card);
    border:1px solid var(--card-border);
    border-radius:var(--radius);
    padding:32px 28px;
    transition:transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s ease, background .35s ease;
  }
  .feature-card:hover{
    transform:translateY(-6px);
    border-color:rgba(255,255,255,0.16);
    background:#1b1922;
  }
  .feature-icon{
    width:46px; height:46px;
    border-radius:13px;
    display:flex; align-items:center; justify-content:center;
    margin-bottom:22px;
    background:var(--grad);
  }
  .feature-icon svg{ width:22px; height:22px; stroke:#0B0A0D; }
  .feature-card h3{
    font-family:'Inter',sans-serif;
    text-transform:none;
    font-weight:700;
    font-size:18.5px;
    letter-spacing:0;
  }
  .feature-card p{ margin-top:10px; font-size:15px; }
  @media (max-width:900px){
    .feature-grid{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width:620px){
    .feature-grid{ grid-template-columns:1fr; }
  }

  /* ================= FÜR WEN ================= */
  .who-wrap{
    display:grid;
    grid-template-columns:0.85fr 1.15fr;
    gap:64px;
    align-items:start;
  }
  .who-visual{
    background:var(--card);
    border:1px solid var(--card-border);
    border-radius:var(--radius);
    padding:40px 30px;
    text-align:center;
  }
  .who-visual .badge-circle{
    width:120px; height:120px;
    margin:0 auto 22px;
    border-radius:50%;
    background:var(--grad);
    display:flex; align-items:center; justify-content:center;
  }
  .who-visual .badge-circle span{
    font-family:'Anton',sans-serif;
    font-size:34px;
    color:#0B0A0D;
  }
  .who-visual p{ font-size:14.5px; }
  .who-list{ display:flex; flex-direction:column; gap:18px; }
  .who-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:20px 0;
    border-bottom:1px solid var(--card-border);
  }
  .who-item:last-child{ border-bottom:none; }
  .who-check{
    flex-shrink:0;
    width:26px; height:26px;
    border-radius:50%;
    background:rgba(47,209,197,0.15);
    display:flex; align-items:center; justify-content:center;
    margin-top:2px;
  }
  .who-check svg{ width:13px; height:13px; stroke:var(--teal); }
  .who-item h3{
    font-family:'Inter',sans-serif;
    text-transform:none;
    font-weight:700;
    font-size:16.5px;
    letter-spacing:0;
    margin-bottom:5px;
  }
  .who-item p{ font-size:15px; }
  @media (max-width:900px){
    .who-wrap{ grid-template-columns:1fr; gap:40px; }
  }

  /* ================= ABLAUF / TIMELINE ================= */
  .timeline-days{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:48px;
  }
  .day-card h3.day-title{
    font-family:'Anton',sans-serif;
    font-size:26px;
    margin-bottom:6px;
  }
  .day-sub{
    font-family:'Space Mono',monospace;
    font-size:12.5px;
    color:var(--text-dimmer);
    letter-spacing:0.05em;
    margin-bottom:30px;
    display:block;
  }
  .tl-item{
    display:grid;
    grid-template-columns:64px 1fr;
    gap:18px;
    position:relative;
    padding-bottom:30px;
  }
  .tl-item::before{
    content:"";
    position:absolute;
    left:75px;
    top:20px;
    bottom:-4px;
    width:1px;
    background:linear-gradient(var(--card-border), var(--card-border));
  }
  .tl-item:last-child::before{ display:none; }
  .tl-time{
    font-family:'Space Mono',monospace;
    font-size:13px;
    color:var(--text-dim);
    padding-top:2px;
  }
  .tl-dot-col{ position:relative; display:flex; justify-content:flex-end; padding-right:0; }
  .tl-body h4{
    font-family:'Inter',sans-serif;
    font-weight:700;
    font-size:15.5px;
    margin:0 0 5px;
  }
  .tl-body p{ font-size:14.5px; }
  .tl-marker{
    width:9px; height:9px; border-radius:50%;
    background:var(--grad);
    position:absolute; left:71px; top:5px;
  }
  @media (max-width:900px){
    .timeline-days{ grid-template-columns:1fr; gap:56px; }
  }

  /* ================= FAQ ================= */
  .faq-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    max-width:760px;
  }
  details{
    background:var(--card);
    border:1px solid var(--card-border);
    border-radius:16px;
    padding:6px 26px;
  }
  summary{
    cursor:pointer;
    list-style:none;
    padding:20px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:700;
    font-size:16px;
    gap:20px;
  }
  summary::-webkit-details-marker{ display:none; }
  summary .plus{
    flex-shrink:0;
    width:26px; height:26px;
    border-radius:50%;
    border:1px solid var(--card-border);
    display:flex; align-items:center; justify-content:center;
    position:relative;
    transition:transform .3s ease;
  }
  summary .plus::before, summary .plus::after{
    content:"";
    position:absolute;
    background:var(--text-dim);
  }
  summary .plus::before{ width:10px; height:1.4px; }
  summary .plus::after{ width:1.4px; height:10px; }
  details[open] summary .plus{ transform:rotate(45deg); }
  .faq-a{ padding:0 0 22px; font-size:15.5px; color:var(--text-dim); }

  /* ================= FINAL CTA ================= */
  .final-cta{
    border-radius:32px;
    padding:80px 40px;
    text-align:center;
    position:relative;
    overflow:hidden;
    background:var(--bg-alt-2);
    border:1px solid var(--card-border);
  }
  .final-cta::before{
    content:"";
    position:absolute;
    top:-40%; left:50%;
    transform:translateX(-50%);
    width:900px; height:600px;
    background:radial-gradient(ellipse at center, rgba(242,118,46,0.22), rgba(139,92,246,0.16) 45%, transparent 72%);
  }
  .final-cta > *{ position:relative; z-index:2; }
  .final-cta h2{ font-size:clamp(30px,5vw,52px); max-width:620px; margin:14px auto 0; }
  .final-cta p.lead{ max-width:480px; margin:20px auto 0; font-size:17px; }

  .signup-form{
    margin-top:38px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
    max-width:560px;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
  }
  .signup-form .field-full{ grid-column:1 / -1; }
  .signup-form label{
    display:block;
    font-family:'Space Mono',monospace;
    font-size:12.5px;
    letter-spacing:0.03em;
    color:var(--text-dimmer);
    margin-bottom:8px;
  }
  .signup-form input[type=text],
  .signup-form input[type=email],
  .signup-form input[type=number]{
    width:100%;
    background:#0f0d13;
    border:1px solid var(--card-border);
    border-radius:14px;
    padding:14px 16px;
    color:var(--text);
    font-family:'Inter',sans-serif;
    font-size:15px;
    transition:border-color .2s ease;
  }
  .signup-form input:focus{ border-color:rgba(255,255,255,0.28); }
  .signup-form input::placeholder{ color:var(--text-dimmer); }
  .radio-pills{
    display:flex;
    gap:10px;
  }
  .radio-pills input{
    position:absolute;
    opacity:0;
    width:1px; height:1px;
    pointer-events:none;
  }
  .radio-pills label{
    flex:1;
    text-align:center;
    margin-bottom:0;
    padding:13px 16px;
    border-radius:14px;
    border:1px solid var(--card-border);
    background:#0f0d13;
    color:var(--text-dim);
    font-family:'Inter',sans-serif;
    font-size:14.5px;
    font-weight:700;
    cursor:pointer;
    transition:all .2s ease;
  }
  .radio-pills input:checked + label{
    background:var(--grad);
    color:#0B0A0D;
    border-color:transparent;
  }
  .radio-pills input:focus-visible + label{
    outline:2px solid var(--teal);
    outline-offset:2px;
  }
  .signup-form button[type=submit]{
    grid-column:1 / -1;
    justify-content:center;
    width:100%;
    margin-top:4px;
  }
  @media (max-width:560px){
    .signup-form{ grid-template-columns:1fr; }
  }
  .signup-note{
    margin-top:20px;
    font-size:13px;
    color:var(--text-dimmer);
    font-family:'Space Mono',monospace;
  }
  .form-msg{
    margin-top:18px;
    font-size:14.5px;
    color:var(--teal);
    font-weight:600;
    display:none;
  }
  .form-msg.show{ display:block; }

  /* ================= FOOTER ================= */
  footer{
    padding:60px 0 40px;
    border-top:1px solid var(--card-border);
  }
  .footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:40px;
    padding-bottom:40px;
  }
  .footer-brand{ display:flex; align-items:center; gap:12px; }
  .footer-brand img{ width:40px; height:40px; border-radius:11px; }
  .footer-brand-text{ font-family:'Anton',sans-serif; text-transform:uppercase; font-size:17px; }
  .footer-brand-sub{ font-size:13.5px; color:var(--text-dimmer); margin-top:4px; font-family:'Inter',sans-serif;}
  .footer-cols{ display:flex; gap:70px; flex-wrap:wrap; }
  .footer-col h4{
    font-family:'Space Mono',monospace;
    font-size:12px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color:var(--text-dimmer);
    margin-bottom:14px;
    font-weight:400;
  }
  .footer-col a, .footer-col span{
    display:block;
    font-size:14.5px;
    color:var(--text-dim);
    margin-bottom:10px;
  }
  .footer-col a:hover{ color:var(--text); }
  .footer-bottom{
    padding-top:30px;
    border-top:1px solid var(--card-border);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    font-size:13px;
    color:var(--text-dimmer);
  }

  @media (max-width:600px){
    .hero{ padding:140px 0 80px; }
    .section-pad{ padding:76px 0; }
    .final-cta{ padding:56px 24px; border-radius:24px; }
  }

  /* ================= LEGAL PAGE ================= */
  .legal-hero{
    padding:150px 0 50px;
  }
  .legal-hero .eyebrow{ margin-bottom:16px; display:inline-flex; }
  .legal-hero h1{
    font-size:clamp(32px,5vw,54px);
  }
  .legal-updated{
    font-family:'Space Mono',monospace;
    font-size:12.5px;
    color:var(--text-dimmer);
    margin-top:16px;
    display:block;
  }
  .legal-body{
    max-width:760px;
    padding-bottom:100px;
  }
  .legal-body h2{
    font-family:'Inter',sans-serif;
    text-transform:none;
    font-weight:700;
    font-size:22px;
    letter-spacing:0;
    margin-top:46px;
    margin-bottom:14px;
    color:var(--text);
  }
  .legal-body h2:first-child{ margin-top:0; }
  .legal-body h3{
    font-family:'Inter',sans-serif;
    text-transform:none;
    font-weight:700;
    font-size:16.5px;
    letter-spacing:0;
    margin-top:28px;
    margin-bottom:10px;
    color:var(--text);
  }
  .legal-body p{
    font-size:15.5px;
    margin-top:12px;
  }
  .legal-body ul{
    margin:14px 0;
    padding-left:20px;
  }
  .legal-body li{
    font-size:15.5px;
    color:var(--text-dim);
    line-height:1.65;
    margin-bottom:6px;
  }
  .legal-body a{
    color:var(--teal);
    text-decoration:underline;
    text-underline-offset:2px;
  }
  .legal-body a:hover{ color:var(--text); }
  .legal-note{
    background:var(--card);
    border:1px solid var(--card-border);
    border-radius:16px;
    padding:22px 24px;
    margin-bottom:42px;
    font-size:14.5px;
  }
  .legal-note strong{ color:var(--text); }
  .legal-back{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    color:var(--text-dim);
    margin-bottom:26px;
  }
  .legal-back:hover{ color:var(--text); }

  /* ================= COOKIE CONSENT ================= */
  #consentOverlay{
    position:fixed;
    inset:0;
    background:rgba(6,6,8,0.72);
    backdrop-filter:blur(6px);
    z-index:1000;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding:20px;
  }
  #consentOverlay.hidden{ display:none; }
  .consent-box{
    max-width:640px;
    width:100%;
    background:var(--bg-alt-2);
    border:1px solid var(--card-border);
    border-radius:22px;
    padding:32px 32px 28px;
    box-shadow:0 30px 90px -20px rgba(0,0,0,0.6);
    margin-bottom:8px;
  }
  .consent-box .eyebrow{ margin-bottom:12px; }
  .consent-box h2{
    font-family:'Anton',sans-serif;
    text-transform:uppercase;
    font-size:22px;
    margin-bottom:12px;
    letter-spacing:0.01em;
  }
  .consent-box p{
    font-size:14.5px;
    color:var(--text-dim);
  }
  .consent-box a{
    color:var(--teal);
    text-decoration:underline;
  }
  .consent-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:22px;
  }
  .consent-actions .btn{ padding:13px 22px; font-size:14px; }
  .consent-manage-btn{
    position:fixed;
    left:20px;
    bottom:20px;
    z-index:60;
    background:var(--card);
    border:1px solid var(--card-border);
    color:var(--text-dim);
    font-family:'Space Mono',monospace;
    font-size:12px;
    padding:9px 14px;
    border-radius:100px;
    cursor:pointer;
    display:none;
    align-items:center;
    gap:8px;
  }
  .consent-manage-btn.show{ display:inline-flex; }
  .consent-manage-btn:hover{ border-color:rgba(255,255,255,0.2); color:var(--text); }

  @media (max-width:600px){
    .consent-box{ padding:26px 22px 24px; border-radius:18px; }
  }
