
:root{
  --bg:#06080f;
  --panel:rgba(255,255,255,.045);
  --panel2:rgba(255,255,255,.065);
  --border:rgba(255,255,255,.10);
  --text:#fff;
  --muted:#94a3b8;
  --soft:#cbd5e1;
  --cyan:#67e8f9;
  --violet:#c4b5fd;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  overflow-x:hidden;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% -12%, rgba(34,211,238,.22), transparent 34rem),
    radial-gradient(circle at 100% 90%, rgba(124,58,237,.16), transparent 30rem),
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:auto,auto,64px 64px,64px 64px;
  mask-image:radial-gradient(ellipse at top, black 10%, transparent 75%);
}
a{text-decoration:none;color:inherit}
.wrap{
  width:min(1220px, calc(100% - 48px));
  margin-inline:auto;
  position:relative;
  z-index:1;
}
.site-header{position:relative;z-index:5}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:26px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:13px;
}
.brand-mark{
  width:40px;height:40px;
  display:grid;
  place-items:center;
  border-radius:16px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.08);
  color:var(--cyan);
}
.brand-mark svg,
.round-icon svg,
.service-icon svg{
  display:block;
}
.brand strong{display:block;font-size:14px}
.brand small{display:block;color:var(--muted);font-size:12px;margin-top:2px}
.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  color:#d1d5db;
}
.main-nav a:hover{color:white}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  padding:13px 22px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:.22s;
}
.btn:hover{transform:translateY(-1px)}
.btn-light{background:white;color:#071018}
.btn-cyan{background:var(--cyan);color:#071018}
.btn-outline{
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.12);
  color:white;
}
.panel{
  border:1px solid var(--border);
  background:var(--panel);
  border-radius:32px;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
  backdrop-filter:blur(14px);
}
.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
  padding:76px 0 92px;
}
.pill{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(103,232,249,.22);
  background:rgba(103,232,249,.10);
  color:#cffafe;
  font-size:14px;
  margin-bottom:25px;
}
h1{
  margin:0;
  max-width:720px;
  font-size:clamp(48px,6.2vw,74px);
  line-height:1.05;
  letter-spacing:-.055em;
}
h2{
  margin:0;
  font-size:clamp(30px,4vw,42px);
  line-height:1.15;
  letter-spacing:-.035em;
}
h3{margin:0;font-size:20px}
h4{margin:0 0 12px;font-size:17px}
p{
  color:var(--soft);
  line-height:1.75;
  margin:0;
}
.hero-copy p{
  max-width:680px;
  margin-top:23px;
  font-size:18px;
}
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:31px;
}
.assistant-panel{padding:22px}
.assistant-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:17px;
}
.round-icon{
  width:42px;height:42px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:rgba(103,232,249,.14);
  color:var(--cyan);
}
.round-icon.violet{
  background:rgba(196,181,253,.14);
  color:var(--violet);
}
.assistant-head strong{display:block;font-size:14px}
.assistant-head small{display:block;font-size:12px;color:var(--muted);margin-top:2px}
.assistant-output{
  min-height:112px;
  border:1px solid var(--border);
  border-radius:22px;
  background:rgba(0,0,0,.28);
  padding:18px;
  color:#e2e8f0;
  font-size:14px;
  line-height:1.7;
}
.input-row{
  display:flex;
  gap:10px;
  margin-top:14px;
}
input,textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  color:white;
  border-radius:16px;
  padding:14px 16px;
  outline:none;
  font:inherit;
}
input:focus,textarea:focus{border-color:rgba(103,232,249,.55)}
.input-row button{
  min-width:48px;
  border-radius:16px;
  border:0;
  background:var(--cyan);
  color:#071018;
  font-weight:800;
}
.section{padding:64px 0}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:32px;
  margin-bottom:34px;
}
.section-head p{max-width:560px;color:var(--muted)}
.kicker,
small{
  color:var(--cyan);
  text-transform:uppercase;
  letter-spacing:.25em;
  font-size:12px;
  font-weight:800;
}
.kicker{margin-bottom:12px}
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-card{
  padding:26px;
  transition:.2s;
}
.service-card:hover{
  transform:translateY(-4px);
  background:var(--panel2);
}
.service-icon{
  color:var(--cyan);
  width:28px;
  height:28px;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.service-card p{
  margin-top:12px;
  color:var(--muted);
  font-size:14px;
}
.tools-panel{padding:34px}
.tools-title{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:26px;
}
.tools-title small{
  display:block;
  color:var(--violet);
  letter-spacing:0;
  text-transform:none;
  font-size:14px;
}
.tools-title h2{font-size:26px}
.tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}
.tab{
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  color:#cbd5e1;
  border-radius:999px;
  padding:10px 15px;
  cursor:pointer;
  font-weight:650;
}
.tab.active{
  background:var(--cyan);
  color:#071018;
  border-color:rgba(103,232,249,.45);
}
.tool-box{
  border:1px solid var(--border);
  background:rgba(0,0,0,.22);
  border-radius:30px;
  padding:26px;
}
.hidden{display:none}
.tool-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:start;
}
.tool-head p,
.tool-box>p{
  max-width:720px;
  margin-top:8px;
  font-size:14px;
  color:var(--muted);
}
.badge{
  white-space:nowrap;
  border:1px solid rgba(103,232,249,.22);
  background:rgba(103,232,249,.10);
  color:#cffafe;
  padding:8px 13px;
  border-radius:999px;
  font-size:13px;
}
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.035);
  border-radius:22px;
  padding:14px;
  margin:20px 0;
}
.steps span{
  display:block;
  color:#cbd5e1;
  font-size:14px;
}
.tool-input{
  display:flex;
  gap:12px;
}
.tool-input .btn{
  border-radius:18px;
  min-width:150px;
}
.status{
  display:none;
  margin-top:16px;
  border:1px solid rgba(103,232,249,.22);
  background:rgba(103,232,249,.10);
  color:#cffafe;
  border-radius:18px;
  padding:14px 16px;
  font-size:14px;
}
.result{display:none;margin-top:24px}
.result-top{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:18px;
}
.score-panel{padding:25px}
.score-panel>p{font-size:14px;color:var(--muted)}
.score-panel>strong{
  color:var(--cyan);
  font-size:14px;
  word-break:break-all;
}
.score{
  margin-top:18px;
  color:white;
  font-size:62px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.05em;
}
.score span{
  font-size:16px;
  color:var(--muted);
  font-weight:500;
}
.progress{
  height:12px;
  overflow:hidden;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  margin-top:18px;
}
.progress i{
  display:block;
  width:84%;
  height:100%;
  border-radius:inherit;
  background:var(--cyan);
}
.status-pill{
  margin-top:18px;
  text-align:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  padding:8px 12px;
  font-size:14px;
}
.metric-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.metric{padding:20px}
.metric span{font-size:14px;color:var(--muted)}
.metric strong{
  display:block;
  font-size:32px;
  color:white;
  margin-top:7px;
}
.metric p{font-size:13px;color:var(--muted);margin-top:7px}
.report-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:18px;
}
.report-card{padding:22px}
.report-card p,
.report-card li{
  color:#cbd5e1;
  font-size:14px;
  line-height:1.7;
}
.report-card ul{margin:0;padding-left:20px}
.seo-basics{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.seo-basics span{
  display:block;
  border-radius:16px;
  background:rgba(0,0,0,.20);
  padding:12px;
  color:var(--muted);
  font-size:13px;
}
.seo-basics b{color:white}
.generated{
  display:none;
  padding:20px;
  margin-top:18px;
}
.cyan-text{color:var(--cyan)}
.project-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:34px;
}
.project-card{overflow:hidden}
.mini{
  height:160px;
  overflow:hidden;
  padding:20px;
  background:linear-gradient(135deg,#1e293b,#0f172a,#083344);
}
.mini-top{
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:12px;
  margin-bottom:14px;
}
.bars{
  height:72px;
  display:flex;
  align-items:end;
  gap:8px;
}
.bars span{
  flex:1;
  border-radius:10px 10px 0 0;
  background:rgba(103,232,249,.85);
  transform-origin:bottom;
  animation:barFloat 2.6s ease-in-out infinite alternate;
}
.bars span:nth-child(1){height:45%}
.bars span:nth-child(2){height:72%;animation-delay:.1s}
.bars span:nth-child(3){height:56%;animation-delay:.2s}
.bars span:nth-child(4){height:88%;animation-delay:.3s}
.bars span:nth-child(5){height:67%;animation-delay:.4s}
.bars span:nth-child(6){height:94%;animation-delay:.5s}
@keyframes barFloat{
  0%{transform:scaleY(.78);opacity:.72}
  100%{transform:scaleY(1.08);opacity:1}
}
.mini p{
  margin-top:14px;
  color:white;
  font-size:14px;
}
.mini b{color:var(--cyan)}
.assistant-mini{
  background:linear-gradient(135deg,#1e293b,#0f172a,#3b0764);
}
.bubble{
  border-radius:18px;
  padding:11px 14px;
  margin-bottom:10px;
  font-size:12px;
  line-height:1.5;
  animation:bubble 2.8s ease-in-out infinite alternate;
}
.bubble.user{
  margin-left:auto;
  max-width:78%;
  background:rgba(196,181,253,.20);
  color:#ede9fe;
}
.bubble.bot{
  max-width:86%;
  background:rgba(255,255,255,.10);
  color:#e2e8f0;
  animation-delay:.4s;
}
@keyframes bubble{to{transform:translateY(-5px)}}
.seo-mini{
  background:linear-gradient(135deg,#1e293b,#0f172a,#064e3b);
}
.seo-mini svg{
  width:100%;
  height:84px;
}
.seo-mini path{
  fill:none;
  stroke:var(--cyan);
  stroke-width:4;
  stroke-linecap:round;
  stroke-dasharray:500;
  animation:line 3.6s linear infinite;
}
@keyframes line{from{stroke-dashoffset:500}to{stroke-dashoffset:0}}
.project-body{padding:24px}
.project-body small{
  display:block;
  color:var(--muted);
  margin-bottom:12px;
}
.project-body p{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}
.about-panel{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:34px;
  padding:40px;
  align-items:center;
}
.dashboard{
  min-height:310px;
  border-radius:28px;
  border:1px solid var(--border);
  background:linear-gradient(135deg,#0f172a,#020617,#083344);
  padding:24px;
}
.dashboard-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-bottom:20px;
}
.dashboard-head small{
  display:block;
  color:var(--cyan);
  margin-bottom:8px;
}
.dashboard-head span{
  align-self:start;
  color:#bbf7d0;
  background:rgba(74,222,128,.14);
  padding:5px 11px;
  border-radius:999px;
  font-size:12px;
}
.dash-box{
  border:1px solid var(--border);
  background:rgba(255,255,255,.055);
  border-radius:20px;
  padding:16px;
}
.dash-box p{
  font-size:14px;
  color:#cbd5e1;
}
.dash-box b{
  float:right;
  color:var(--cyan);
}
.dash-box small{
  display:block;
  letter-spacing:0;
  text-transform:none;
  color:var(--muted);
  margin-top:6px;
  font-size:12px;
}
.dash-stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin:14px 0;
}
.dash-stats div{
  border:1px solid var(--border);
  background:rgba(255,255,255,.055);
  border-radius:20px;
  padding:16px;
  color:var(--muted);
  animation:bubble 3s ease-in-out infinite alternate;
}
.dash-stats div:nth-child(2){animation-delay:.45s}
.dash-stats strong{
  display:block;
  margin-top:8px;
  color:white;
  font-size:26px;
}
.about-copy p{
  margin-top:20px;
  max-width:690px;
}
.contact-panel{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  padding:40px;
}
.contact-panel>div>p{
  max-width:560px;
  margin-top:18px;
}
.direct-contact{
  margin-top:30px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.20);
  border-radius:26px;
  padding:20px;
}
.direct-contact span,
.direct-contact small{
  display:block;
  color:var(--muted);
  font-size:13px;
  letter-spacing:0;
  text-transform:none;
}
.direct-contact a{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--cyan);
  font-weight:700;
  font-size:18px;
  margin:7px 0 12px;
}
.direct-contact a svg{
  flex:0 0 auto;
}
.contact-form{
  border:1px solid var(--border);
  background:rgba(0,0,0,.20);
  border-radius:28px;
  padding:24px;
  display:grid;
  gap:14px;
}
.contact-form label{
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:14px;
}
.contact-form textarea{
  min-height:130px;
  resize:vertical;
}
.contact-form .btn{
  border-radius:18px;
  margin-top:4px;
}
.footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--border);
  padding:28px 0 46px;
  color:var(--muted);
  font-size:14px;
}
.footer strong{color:#cbd5e1}
.footer p{font-size:14px;color:var(--muted);margin-top:5px}
.footer div:last-child{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.footer a{color:var(--muted)}
.footer a:hover{color:white}
.legal-wrap{
  width:min(900px, calc(100% - 48px));
  margin:0 auto;
  padding:80px 0;
  position:relative;
  z-index:1;
}
.legal-box{padding:42px}
.legal-box h1{
  font-size:48px;
  margin-top:14px;
}
.placeholder{
  border:1px dashed rgba(255,255,255,.16);
  background:rgba(0,0,0,.20);
  border-radius:22px;
  padding:26px;
  color:var(--muted);
  margin-top:30px;
  line-height:1.8;
}

@media(max-width: 900px){
  .main-nav{display:none}
  .header-cta{display:none}
  .hero,
  .service-grid,
  .result-top,
  .report-grid,
  .project-grid,
  .about-panel,
  .contact-panel{
    grid-template-columns:1fr;
  }
  .section-head{display:block}
  .section-head p{margin-top:15px}
  .metric-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:repeat(2,1fr)}
  .hero{padding-top:44px}
}
@media(max-width: 560px){
  .wrap{width:min(100% - 28px, 1220px)}
  h1{font-size:42px}
  h2{font-size:31px}
  .tools-panel,
  .about-panel,
  .contact-panel,
  .tool-box{
    border-radius:24px;
    padding:22px;
  }
  .steps,
  .tool-input,
  .input-row,
  .seo-basics{
    grid-template-columns:1fr;
    flex-direction:column;
  }
  .tool-input{display:grid}
  .tool-input .btn{width:100%}
  .footer{display:block}
  .footer div:last-child{margin-top:18px}
}

.tools-title .round-icon{
  background:rgba(196,181,253,.18);
}


/* Branding oben links bewusst dezenter als globale Small-Labels */
.brand small{
  text-transform:none;
  letter-spacing:0;
  font-weight:500;
  color:#94a3b8;
  font-size:12px;
}

/* Rechtliche Seiten: Footer wie Startseite */
.legal-footer{
  width:min(900px, calc(100% - 48px));
  margin:0 auto 46px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--border);
  padding-top:28px;
  color:var(--muted);
  font-size:14px;
  position:relative;
  z-index:1;
}
.legal-footer strong{color:#cbd5e1}
.legal-footer p{font-size:14px;color:var(--muted);margin-top:5px}
.legal-footer div:last-child{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}
.legal-footer a{color:var(--muted)}
.legal-footer a:hover{color:white}

@media(max-width:560px){
  .legal-footer{display:block;width:min(100% - 28px, 900px)}
  .legal-footer div:last-child{margin-top:18px}
}


/* Preview-artiges Logo */
.brand{
  gap:14px;
}

.brand-mark{
  width:46px;
  height:46px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 30px rgba(0,0,0,.28);
}

.logo-svg{
  color:#67e8f9;
  filter:drop-shadow(0 0 10px rgba(103,232,249,.22));
}

.brand strong{
  font-size:15px;
  letter-spacing:-0.02em;
}

.brand small{
  margin-top:4px;
  font-size:12px;
  color:#a5b4c7;
}


.turnstile-wrap{
  margin-top:14px;
  display:flex;
  justify-content:flex-start;
}

.contact-form .turnstile-wrap{
  margin-top:2px;
}

@media(max-width:560px){
  .turnstile-wrap{
    transform:scale(.92);
    transform-origin:left center;
  }
}
body::after{
  content:"";
  position:fixed;
  right:-250px;
  bottom:-250px;
  width:700px;
  height:700px;
  border-radius:50%;
  background:
    radial-gradient(circle,
      rgba(116,58,255,.18) 0%,
      rgba(0,212,255,.10) 35%,
      rgba(0,0,0,0) 72%);
  pointer-events:none;
  z-index:0;
  filter:blur(40px);
}