/* -------------------------
   Vokaba Dark UI (Accent: #230420)
   ------------------------- */

:root{
  --bg: #0b0a10;
  --bg2: #0f0d18;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --border: rgba(255,255,255,.10);

  /* Requested accent direction */
  --accent-dark: #230420;
  --accent: #b445ff;      /* bright purple glow */
  --accent2: #ff4bd8;     /* pink edge */
  --good: #2dd4bf;

  --radius: 18px;
  --radius2: 26px;

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --shadow2: 0 10px 30px rgba(0,0,0,.35);

  --container: 1100px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(180,69,255,.16), transparent 60%),
    radial-gradient(900px 520px at 90% 30%, rgba(255,75,216,.10), transparent 58%),
    radial-gradient(800px 480px at 40% 90%, rgba(35,4,32,.55), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  overflow-x: hidden;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }

img{ max-width:100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip{
  position:absolute;
  left:-999px;
  top: 10px;
  padding: 10px 14px;
  background: rgba(0,0,0,.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 9999;
}
.skip:focus{ left: 12px; }

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10,9,16,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand__logo{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  padding: 6px;
}
.brand__name{
  font-weight: 800;
  letter-spacing: .2px;
}
.brand__badge{
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: linear-gradient(90deg, rgba(35,4,32,.9), rgba(180,69,255,.25));
  border: 1px solid rgba(180,69,255,.22);
}

.nav{
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:center;
  flex: 1;
}
.nav__link{
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.nav__link:hover{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}
.nav__link--active{
  color: rgba(255,255,255,.92);
  background: rgba(180,69,255,.09);
  border-color: rgba(180,69,255,.18);
}

.topbar__actions{
  display:flex;
  gap: 10px;
  align-items:center;
}

.chip{
  font-size: 13px;
  color: rgba(255,255,255,.86);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.chip:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(180,69,255,.25);
}
.chip--strong{
  background: rgba(180,69,255,.10);
  border-color: rgba(180,69,255,.22);
}

/* Hero */
.hero{
  padding: 56px 0 22px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}
.hero__title{
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  margin: 0 0 14px;
  letter-spacing: -.6px;
}
.accent{
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 62ch;
}

.hero__cta{
  display:flex;
  gap: 12px;
  align-items:center;
  margin: 18px 0 14px;
  flex-wrap: wrap;
}

.cta{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(255,255,255,.96);
  background:
    radial-gradient(120px 60px at 20% 20%, rgba(255,255,255,.18), transparent 60%),
    linear-gradient(90deg, rgba(35,4,32,.95), rgba(180,69,255,.40));
  border: 1px solid rgba(180,69,255,.28);
  box-shadow: 0 14px 50px rgba(180,69,255,.16), 0 10px 35px rgba(0,0,0,.35);
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
  overflow: hidden;
}
.cta:hover{
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(255,75,216,.30);
  box-shadow: 0 18px 70px rgba(255,75,216,.14), 0 18px 50px rgba(180,69,255,.18);
  filter: saturate(1.1);
}
.cta:active{ transform: translateY(0) scale(.99); }

.cta__spark{
  position:absolute;
  inset: -60% -40%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 40%, transparent 70%);
  transform: rotate(12deg) translateX(-40%);
  animation: none;
  pointer-events:none;
}
.cta:hover .cta__spark{
  animation: shimmer .9s ease;
}
@keyframes shimmer{
  from{ transform: rotate(12deg) translateX(-40%); }
  to{ transform: rotate(12deg) translateX(70%); }
}

.cta--small{ padding: 12px 16px; border-radius: 15px; }

.ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 16px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.ghost:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(180,69,255,.20);
}
.ghost--strong{
  font-weight: 800;
  background: rgba(255,255,255,.05);
}

.hero__meta{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.pill{
  font-size: 12px;
  color: rgba(255,255,255,.84);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}

/* Panel mock */
.hero__panel{ position: relative; }
.panel{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel__top{
  display:flex;
  align-items:center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.dot{ width:10px; height:10px; border-radius: 50%; opacity: .9; }
.dot--red{ background: #ff5c7a; }
.dot--yellow{ background: #ffcc4a; }
.dot--green{ background: #37d67a; }
.panel__title{
  margin-left: 6px;
  font-size: 13px;
  color: var(--muted);
}

.panel__body{ padding: 18px; }
.mock{
  border-radius: 18px;
  background:
    radial-gradient(500px 260px at 40% 20%, rgba(180,69,255,.14), transparent 60%),
    rgba(0,0,0,.18);
  border: 1px solid rgba(180,69,255,.18);
  padding: 18px;
}
.mock__kicker{
  font-size: 12px;
  color: var(--muted2);
}
.mock__word{
  margin: 12px 0 6px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.3px;
}
.mock__hint{
  color: var(--muted);
  font-size: 14px;
}
.mock__row{
  display:flex;
  gap: 10px;
  margin-top: 14px;
}
.mock__btn{
  flex: 1;
  text-align:center;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  font-weight: 700;
}
.mock__btn--accent{
  background: linear-gradient(90deg, rgba(35,4,32,.95), rgba(180,69,255,.38));
  border-color: rgba(180,69,255,.25);
}
.mock__progress{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  margin-top: 16px;
  overflow: hidden;
}
.mock__bar{
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(180,69,255,.28);
}
.mock__small{
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted2);
}

.hero__glow{
  position:absolute;
  inset: -20%;
  background:
    radial-gradient(360px 260px at 30% 30%, rgba(180,69,255,.24), transparent 55%),
    radial-gradient(340px 240px at 70% 60%, rgba(255,75,216,.18), transparent 60%);
  filter: blur(20px);
  z-index: -1;
  opacity: .9;
}

/* Sections */
.section{
  padding: 44px 0;
}
.section--alt{
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.02) 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__title{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -.2px;
}
.section__lead{
  margin: 0 0 20px;
  color: var(--muted);
  max-width: 72ch;
  line-height: 1.6;
}

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

.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow2);
  padding: 16px 16px 14px;
}
.card__title{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -.1px;
}
.card__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Notice */
.notice{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(35,4,32,.55), rgba(180,69,255,.08));
  border: 1px solid rgba(180,69,255,.18);
}
.notice__icon{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.notice__text{
  color: rgba(255,255,255,.86);
  line-height: 1.6;
  font-size: 14px;
}
.notice a{
  color: rgba(255,255,255,.94);
  text-decoration: underline;
  text-decoration-color: rgba(180,69,255,.45);
  text-underline-offset: 3px;
}

/* Callout */
.callout{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.callout__icon{
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(180,69,255,.18), rgba(255,75,216,.10));
  border: 1px solid rgba(180,69,255,.22);
}
.callout__title{
  font-weight: 900;
  margin-bottom: 2px;
}
.callout__text{
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}
.callout a{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
  text-decoration-color: rgba(255,75,216,.45);
  text-underline-offset: 3px;
}

/* Screenshots */
.screens{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.shot{
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  outline: none;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .16s ease, border-color .16s ease, filter .16s ease;
}
.shot:hover{
  transform: translateY(-2px);
  border-color: rgba(180,69,255,.25);
  filter: saturate(1.06);
}
.shot img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: rgba(255,255,255,.04);
}
.shot__label{
  position:absolute;
  left: 12px;
  bottom: 12px;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.screens__cta{
  margin-top: 16px;
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display:none;
  z-index: 100;
}
.lightbox.is-open{ display:block; }
.lightbox__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
}
.lightbox__content{
  position: relative;
  width: min(920px, calc(100% - 28px));
  margin: 5vh auto;
  border-radius: 20px;
  background: rgba(18,16,28,.88);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lightbox__close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.9);
  cursor: pointer;
}
.lightbox__close:hover{
  border-color: rgba(180,69,255,.28);
}
.lightbox__img{
  width:100%;
  max-height: 70vh;
  object-fit: contain;
  background: rgba(0,0,0,.25);
}
.lightbox__caption{
  padding: 12px 14px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Download cards */
.card--dl .card__title{
  font-size: 18px;
}
.dl{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(35,4,32,.88), rgba(180,69,255,.18));
  border: 1px solid rgba(180,69,255,.22);
  font-weight: 850;
  color: rgba(255,255,255,.95);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.dl:hover{
  transform: translateY(-2px);
  border-color: rgba(255,75,216,.28);
  box-shadow: 0 18px 60px rgba(180,69,255,.14);
}
.dl--alt{
  background: linear-gradient(90deg, rgba(255,75,216,.14), rgba(180,69,255,.18));
}
.dl__icon{ opacity: .9; }
.dl__stack{ display:flex; flex-direction: column; gap: 10px; }

/* Toast */
.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 26px));
  z-index: 120;
}
.toast__inner{
  display:flex;
  gap: 12px;
  align-items:center;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(18,16,28,.92);
  border: 1px solid rgba(180,69,255,.20);
  box-shadow: var(--shadow);
}
.toast__title{ font-weight: 900; }
.toast__text{ color: var(--muted); font-size: 13px; margin-top: 2px; }

.spinner{
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.22);
  border-top-color: rgba(180,69,255,.9);
  animation: spin 1s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* Danke */
.thanks{
  padding: 10px 0 4px;
}
.thanks__badge{
  width: 56px;
  height: 56px;
  border-radius: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(180deg, rgba(45,212,191,.20), rgba(180,69,255,.14));
  border: 1px solid rgba(45,212,191,.25);
  box-shadow: 0 20px 60px rgba(45,212,191,.08);
  margin-bottom: 12px;
}
.thanks__title{
  margin: 0 0 8px;
  font-size: 34px;
  letter-spacing: -.4px;
}
.thanks__text{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

.actions-row{
  margin-top: 16px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items:center;
}

/* Footer */
.footer{
  margin-top: 34px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(10,9,16,.35);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  align-items:center;
}
.footer__name{
  font-weight: 900;
}
.footer__muted{
  color: var(--muted2);
  font-size: 13px;
  margin-top: 4px;
}
.footer__links{
  display:flex;
  gap: 10px;
  justify-content:flex-end;
  flex-wrap: wrap;
  color: rgba(255,255,255,.86);
}
.footer__links a{
  text-decoration: underline;
  text-decoration-color: rgba(180,69,255,.35);
  text-underline-offset: 3px;
}
.sep{ color: rgba(255,255,255,.25); }
.footer__note{
  grid-column: 1 / -1;
  color: var(--muted2);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 960px){
  .hero__grid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .footer__grid{ grid-template-columns: 1fr; }
  .footer__links{ justify-content:flex-start; }
  .screens{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .shot img{ height: 240px; }
}

/* --- Icons (SVG) --- */
.icon{
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -3px;
  color: rgba(255,255,255,.92);
}
.icon--lg{
  width: 20px;
  height: 20px;
  vertical-align: -4px;
}

/* Chip: Icon + Text schön ausrichten */
.chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Hero ohne Preview */
.hero__grid--single{
  grid-template-columns: 1fr !important;
}

/* --- Icons (SVG) --- */
.icon{
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: -3px;
  color: rgba(255,255,255,.92);
}
.icon--lg{
  width: 20px;
  height: 20px;
  vertical-align: -4px;
}

/* Chip: Icon + Text schön ausrichten */
.chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Hero ohne Preview */
.hero__grid--single{
  grid-template-columns: 1fr !important;
}

.footer__links a:hover{
  text-decoration-color: rgba(255,75,216,.55);
}

.doc-mono{
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  line-height: 1.35;
  color: white;
  white-space: pre-wrap;   /* WICHTIG: übernimmt \n als Zeilenumbruch */
  word-break: break-word;
  margin: 0;
}
