/* ====== Base ====== */
:root{
  /* ====== Base ====== */
  --bg: #07080d;
  --bg-alt: #0b0e1a;
  --text: #e9ecff;
  --muted: #9aa3c7;
  --line: rgba(255,255,255,0.08);

  /* ====== Brand / Retrowave ====== */
  --brand: #000000;        /* Neon Cyan */
  --brand-2: #ff4fd8;     /* Magenta Accent */

  --cta: linear-gradient(135deg, #00f0ff, #7c6cff);
  --cta-ink: #02040a;

  --shadow: 0 20px 60px rgba(0,240,255,0.08);
  --radius: 18px;
  --radius-sm: 14px;

  --max: 1120px;
}


*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(124,108,255,0.08), transparent 40%),
    radial-gradient(800px 400px at 90% 10%, rgba(0,240,255,0.06), transparent 40%),
    var(--bg);
}
h1, h2, h3{
  letter-spacing: 0.3px;
}

.lead{
  color: #cfd6ff;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width:100%; height:auto; }

.container{
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.small{ font-size: 0.92rem; }
.muted{ color: var(--muted); }
.lead{ font-size: 1.1rem; color: var(--muted); }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

/* ====== Topbar ====== */
.topbar{
  background: var(--brand);
  color: #ffffff;
  font-size: 0.95rem;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  gap: 16px;
}
.topbar__cta{
  background: rgba(255,255,255,0.15);
  padding: 8px 12px;
  border-radius: 999px;
}
.topbar__cta:hover{ text-decoration:none; background: rgba(255,255,255,0.22); }

/* ====== Header / Nav ====== */
.header{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,8,13,0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand__logo{
  width: 42px; height: 42px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #00f0ff, #7c6cff);
  color: #02040a;
  box-shadow: 0 0 0 transparent;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.brand__name{ display:block; font-weight: 800; }
.brand__tag{ display:block; font-size: 0.9rem; color: var(--muted); }

.nav{
  display:flex;
  align-items:center;
  gap: 12px;
}
.nav__link{
  padding: 10px 10px;
  border-radius: 10px;
  color: var(--muted);
  white-space: nowrap;
}
.nav__link:hover{ text-decoration:none; background: var(--bg-alt); color: var(--text); }
.nav__link.is-active{ color: var(--text); font-weight: 600; }

.nav__btn{ margin-left: 6px; }

.nav-toggle{
  display:none;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 10px 12px;
  border-radius: 12px;
}

/* ====== Buttons ====== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 650;
  cursor: pointer;
  text-decoration: none !important;
}
.btn--primary{
  background: var(--cta);
  color: var(--cta-ink);
  border: none;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.btn--primary:hover{
  filter: brightness(1.05);
  box-shadow:
    0 0 20px rgba(0,240,255,0.6),
    0 0 60px rgba(124,108,255,0.35);
}

.btn--ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}

.btn--ghost:hover{
  border-color: var(--brand);
  box-shadow: 0 0 24px rgba(0,240,255,0.25);
}

.btn--full{ width:100%; }

/* ====== Sections ====== */
.section{ padding: 64px 0; }
.section--alt{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head{ margin-bottom: 22px; }
.section__head h2{ margin: 0 0 6px; }

.section__cta{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ====== Hero ====== */
.hero{
  padding: 64px 0 12px;
  background: linear-gradient(180deg, rgba(10,61,98,0.06), rgba(255,255,255,0));
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 26px;
  align-items: start;
}
.hero h1{
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin: 0 0 14px;
}
.hero__actions{ display:flex; gap: 12px; flex-wrap: wrap; margin: 18px 0; }
.hero__bullets{ margin: 18px 0 0; padding-left: 18px; color: var(--muted); }
.hero__bullets li{ margin: 8px 0; }

.hero__title {
  width: 100%;
  text-align: center;
  margin-bottom: 0.75rem;
}

.hero__content {
  max-width: var(--container-width, 1140px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding, 1.5rem);
  padding-right: var(--container-padding, 1.5rem);
 }

.hero__content {
  margin-bottom: 0.5rem;
}

.hero__content > * {
  margin-bottom: 0.5rem;
}

.hero + .section{ padding-top: 1px; }

.hero .hero{
  padding: 0;
  background: none;
}

.hero__full {
  width: 100%;
  padding-left: clamp(20px, 6vw, 80px);
  padding-right: clamp(20px, 6vw, 80px);
}

.hero__content {
  max-width: none;   /* ganz wichtig */
}

.hero h1 {
  max-width: none;
}

.hero__inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* links/rechts Verhältnis */
  gap: 28px;
  align-items: start;
}

/* Headline/Lead über beide Spalten -> volle Container-Breite */
.hero__head{
  grid-column: 1 / -1;
}

/* Linke Spalte */
.hero__content{
  grid-column: 1 / 2;
}

/* Rechte Spalte (falls genutzt) */
.hero__side{
  grid-column: 2 / 3;
}

/* Mobile: alles untereinander */
@media (max-width: 900px){
  .hero__inner{
    grid-template-columns: 1fr;
  }
  .hero__content, .hero__side{
    grid-column: 1 / -1;
  }
}


/* ====== Cards / Grid ====== */
.grid{
  display:grid;
  gap: 16px;
}
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.card{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.card:hover{
  border-color: rgba(0,240,255,0.35);
  box-shadow:
    0 0 0 1px rgba(0,240,255,0.15),
    0 40px 120px rgba(0,240,255,0.12);
}

.card h1,
.card h2,
.card h3{
  margin-top: 0;
}

.checklist{
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--muted);
}
.checklist li{ margin: 6px 0; }

.link{
  display:inline-block;
  margin-top: 12px;
  color: var(--brand-2);
  font-weight: 650;
}
.link:hover{
  color: var(--cta);
  text-decoration: none;
  transform: translateX(2px);
}


/* ====== Split ====== */
.split{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.list-cards{ display:flex; flex-direction:column; gap: 10px; margin-top: 16px; }
.list-card{
  display:flex; gap: 12px; align-items:flex-start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.6);
}
.list-card__icon{
  width: 28px; height: 28px;
  border-radius: 10px;
  display:grid; place-items:center;
  background: rgba(10,61,98,0.12);
  color: var(--brand);
  font-weight: 900;
}

.steps{ margin: 12px 0 0; padding-left: 18px; color: var(--muted); }
.steps li{ margin: 10px 0; }

/* ====== Visual placeholder ====== */
.visual{ display:flex; flex-direction:column; gap: 14px; min-height: 320px; }
.visual__row{ display:flex; gap: 8px; }
.visual__pill{ height: 12px; width: 36px; border-radius: 999px; background: rgba(10,61,98,0.18); }
.visual__chart{
  height: 150px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(10,61,98,0.18), rgba(243,156,18,0.18));
  border: 1px dashed rgba(11,18,32,0.15);
}
.visual__stats{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.visual__stat{ padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.7); }
.visual__statLabel{ color: var(--muted); font-size: 0.92rem; }
.visual__statValue{ font-weight: 850; font-size: 1.1rem; }

/* ====== Quote ====== */
.quote{
  margin: 14px 0 0;
  padding: 12px 14px;
  border-left: 4px solid rgba(10,61,98,0.25);
  background: rgba(10,61,98,0.06);
  border-radius: 12px;
  color: var(--muted);
}

/* ====== Newsletter ====== */
.newsletter{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.7);
}
.form-inline{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}
input[type="email"], input[type="text"], textarea{
  font: inherit;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  min-width: 240px;
  outline: none;
}
textarea{ width:100%; min-height: 140px; }

/* ====== CTA panel ====== */
.cta-panel{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(10,61,98,0.08), rgba(243,156,18,0.10));
}
.cta-panel__actions{ display:flex; gap: 12px; flex-wrap: wrap; }

/* ====== Footer ====== */
.footer{
  border-top: 1px solid var(--line);
  padding: 34px 0 18px;
  background: rgba(255,255,255,0.02);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 16px;
}
.footer__brand{ font-weight: 850; font-size: 1.05rem; }
.footer__cols{
  display:grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 22px;
}
.footer__cols a{
  display:block;
  color: var(--muted);
  margin-top: 8px;
}
.footer__cols a:hover{ color: var(--text); text-decoration:none; }
.footer__bottom{ margin-top: 18px; }

/* ====== Responsive ====== */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .newsletter{ flex-direction: column; align-items: stretch; }
  .form-inline{ justify-content: flex-start; }
  input[type="email"]{ min-width: 0; width: 100%; }
}

@media (max-width: 860px){
  .nav-toggle{ display:inline-flex; }
  .nav{
    position: absolute;
    right: 16px;
    top: 64px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 10px;
    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: min(92vw, 340px);
  }
  .nav.is-open{ display:flex; }
  .nav__btn{ margin-left: 0; }
  .header__inner{ position: relative; }
}
/* ====== One-Page Scroll Reveal (Apple-like) ====== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
  will-change: opacity, transform, filter;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Sticky header offset for anchor jumps */
.section{ scroll-margin-top: 96px; }
/* List-Cards links: dunkles Glass statt hellgrau */
.list-card{
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: var(--text) !important;
}

.list-card strong{
  color: var(--text) !important;
}

.list-card .muted{
  color: rgba(233, 253, 255, 0.78) !important; /* besser lesbar als default muted */
}

/* Icon-Badge: weniger “milchig”, mehr Tech */
.list-card__icon{
  background: rgba(0,240,255,0.14) !important;
  color: #00f0ff !important;
}

/* Rechts: Nummern/Marker sollen IN der Card bleiben */
.steps{
  list-style-position: inside;     /* Marker innerhalb */
  padding-left: 0 !important;      /* kein extra Left-Padding nötig */
  margin-left: 0 !important;
}

.steps li{
  padding-left: 0.25rem;           /* minimaler Abstand nach der Nummer */
}

/* Optional: Card darf nichts “rauslaufen” lassen */
.card{
  overflow: hidden;
}

/* ===== Spacing & Typo Fix: mehr Luft ===== */

/* Cards allgemein: mehr Innenabstand */
.card{
  padding: 28px 30px;       /* vorher ~18px → deutlich luftiger */
}

/* Card Headings */
.card h2,
.card h3{
  margin-bottom: 14px;
  line-height: 1.25;
}

/* Fließtext in Cards */
.card p{
  line-height: 1.65;
  margin-bottom: 14px;
}

/* Checklisten & Aufzählungen */
.card ul{
  margin-top: 16px;
  margin-bottom: 0;
}

/* Listenpunkte: mehr Abstand zueinander */
.checklist li,
.steps li{
  margin: 10px 0;           /* vorher ~6px */
  line-height: 1.6;
}

/* Bullet-Listen etwas einrücken, aber nicht drücken */
.checklist{
  padding-left: 18px;
}

/* Typische Ergebnisse (rechte untere Card) etwas luftiger */
.card aside,
.card .muted{
  margin-top: 10px;
}

/* Grid: mehr Abstand zwischen Cards */
.grid{
  gap: 22px;                /* vorher 16px */
}

/* Section-Abstände leicht erhöhen */
.section{
  padding: 80px 0;          /* vorher 64px */
}

/* Hero darf etwas kompakter bleiben */
.hero{
  padding-bottom: 24px;
}

.card ul li{
  color: #ffffff; /* heller, präsenter */
}

html {
  scroll-behavior: smooth;
}