@font-face { font-family:"Ruda"; src:url("../fonts/Ruda-Regular.ttf"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Ruda"; src:url("../fonts/Ruda-Bold.ttf"); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:"Exo2"; src:url("../fonts/Exo2-Regular.ttf"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"MontserratAlternates"; src:url("../fonts/MontserratAlternates-Regular.ttf"); font-weight:500; font-style:normal; font-display:swap; }

:root{
  --dark:#151515;
  --magenta:#C41E7A;
  --cream:#F3EDE4;
  --pink:#c20a75;
  --bwkd-ease:cubic-bezier(.16,1,.3,1);
}

*{box-sizing:border-box;}
html{ scroll-behavior:smooth; cursor:none; }
body{
  margin:0; background:var(--dark); color:var(--cream);
  font-family:"Exo2",sans-serif; font-size:16px; line-height:1.6;
  overflow-x:hidden; -webkit-font-smoothing:antialiased;
}
#bw-page{ background:var(--dark); }
h1,h2,h3,h4{ font-family:"Ruda",sans-serif; font-weight:700; margin:0; line-height:.92; letter-spacing:-0.03em; }
body h1, body h2, body h3, body h4{ color:inherit; }
p{ margin:0; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; cursor:pointer; }
::selection{ background:var(--magenta); color:var(--cream); }

#bwnv-grain{ position:fixed; inset:0; z-index:500; pointer-events:none; opacity:.05; mix-blend-mode:overlay; }

#bwnv-cursor{ position:fixed; top:0; left:0; width:10px; height:10px; background:var(--magenta); border-radius:50%; pointer-events:none; z-index:3500; transform:translate(-50%,-50%); transition:width .25s var(--bwkd-ease), height .25s var(--bwkd-ease), background .25s; mix-blend-mode:difference; }
#bwnv-cursor.big{ width:64px; height:64px; background:var(--magenta); }

#bwnv-progress{ height:5px; width:0%; background:var(--magenta); }

.bwkd-reveal{ opacity:0; transform:translateY(40px) rotate(.3deg); transition:opacity 1s var(--bwkd-ease), transform 1s var(--bwkd-ease); }
.bwkd-reveal.is-visible{ opacity:1; transform:translateY(0) rotate(0); }

.bwkd-wrap{ max-width:1400px; margin:0 auto; padding:0 6vw; }

.bwkd-section{ padding:120px 0; position:relative; }

.bwkd-eyebrow{ font-family:"MontserratAlternates",sans-serif; font-weight:500; font-size:12px; letter-spacing:.25em; text-transform:uppercase; }

/* ---------- Danke-Bereich ---------- */
.bwkd-hero{ min-height:78vh; display:flex; align-items:center; justify-content:center; padding-top:89px; padding-bottom:100px; background:var(--dark); }
.bwkd-hero-inner{ text-align:center; max-width:820px; margin:0 auto; }

.bwkd-check{ width:74px; height:74px; margin:0 auto 34px; border-radius:50%; background:var(--magenta); display:flex; align-items:center; justify-content:center; }
.bwkd-check svg{ width:34px; height:34px; }

.bwkd-title{ font-size:clamp(38px,6vw,84px); text-transform:uppercase; color:var(--cream); }
.bwkd-title .bwkd-hl{ color:var(--magenta); font-style:italic; }

.bwkd-copy{ margin-top:28px; font-size:18px; opacity:.85; max-width:56ch; margin-left:auto; margin-right:auto; }
.bwkd-copy + .bwkd-copy{ margin-top:10px; }

/* ---------- Buttons ---------- */
.bwkd-btn{ display:inline-flex; align-items:center; gap:10px; background:var(--magenta); color:var(--cream); font-weight:700; padding:18px 36px; border-radius:2px; font-family:"MontserratAlternates",sans-serif; font-size:14px; text-transform:uppercase; letter-spacing:.08em; border:none; cursor:pointer; transition:transform .3s var(--bwkd-ease), background .3s; }
.bwkd-btn:hover{ transform:skew(-6deg) scale(1.05); background:var(--cream); color:var(--dark); }
.bwkd-btn svg{ width:18px; height:18px; fill:currentColor; flex-shrink:0; }
.bwkd-btn-outline{ background:transparent; border:1px solid var(--cream); }
.bwkd-btn-outline:hover{ background:var(--cream); color:var(--dark); }
.bwkd-actions{ margin-top:50px; display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap; }
.bwkd-btn-call{ display:none; }
@media (max-width:1024px){
  .bwkd-btn-call{ display:inline-flex; }
}
.bwkd-arrow{ display:inline-flex; animation:bwkdArrowBounce 1.4s ease-in-out infinite; }
@keyframes bwkdArrowBounce{ 0%,100%{ transform:translateX(0);} 50%{ transform:translateX(5px);} }

@media (max-width:900px){
  html{ cursor:auto; }
  #bwnv-cursor{ display:none; }
}
@media (max-width:600px){
  .bwkd-hero{ min-height:70vh; }
  .bwkd-check{ width:60px; height:60px; margin-bottom:24px; }
  .bwkd-check svg{ width:28px; height:28px; }
  .bwkd-copy{ font-size:16px; }
  .bwkd-actions{ flex-direction:column; align-items:stretch; }
  .bwkd-btn{ width:100%; justify-content:center; }
}

