
:root {
  --bg: #000000;
  --panel: #0a0a0a;
  --card: #0f0f0f;
  --card-hover: #141414;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --dim: #737373;
  --accent: #7c9cff;
  --accent-2: #5865f2;
  --ok: #4ade80;
  --danger: #f87171;
  --radius: 16px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.hidden { display: none !important; }

.bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(88, 101, 242, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(124, 156, 255, 0.06), transparent 50%),
    #000;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 10%, transparent 65%);
  opacity: 0.55;
}


.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px 28px;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 36px; height: 36px; border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-text strong { font-size: 13px; font-weight: 800; letter-spacing: 0.04em; }
.brand-text span { font-size: 11px; color: var(--dim); }
.links { display: flex; align-items: center; gap: 2px; }
.links a {
  font-size: 13px; font-weight: 600; color: var(--muted);
  padding: 8px 12px; border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.btn-nav {
  background: #f5f5f5 !important; color: #0a0a0a !important;
  margin-left: 8px !important; padding: 8px 16px !important;
}
.btn-nav:hover { background: #fff !important; }

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 12px;
  font-weight: 700; font-size: 14px; border: none; cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, opacity 0.2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn.primary {
  background: #f5f5f5; color: #0a0a0a;
  box-shadow: 0 8px 32px rgba(255,255,255,0.06);
}
.btn.primary:hover { background: #fff; }
.btn.ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn.ghost:hover { background: rgba(255,255,255,0.04); }
.btn.large { padding: 14px 28px; font-size: 15px; }
.btn.full { width: 100%; }

.hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px 72px;
  text-align: center;
}
.hero-logo {
  width: 120px; height: 120px;
  margin: 0 auto 28px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 64px rgba(88, 101, 242, 0.18);
  animation: logoFloat 6s ease-in-out infinite;
}
.hero-logo img { width: 100%; height: 100%; object-fit: cover; }
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.badge {
  display: inline-block;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--muted); font-size: 12px; font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.3rem, 6vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.08;
  margin-bottom: 16px;
}
.hero h1 .accent {
  background: linear-gradient(105deg, #fff 0%, #a5b4fc 40%, #5865f2 70%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 8s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.lead {
  max-width: 540px; margin: 0 auto 28px;
  color: var(--muted); font-size: 1.05rem;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  margin-bottom: 40px;
}
.stats {
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.stats strong { display: block; font-size: 1.35rem; font-weight: 800; }
.stats span { font-size: 12px; color: var(--dim); }
.sep { width: 1px; height: 28px; background: var(--line); }

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 72px 24px;
}
.section-head {
  text-align: center; margin-bottom: 40px;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--accent); margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px;
}
.sub, .muted { color: var(--muted); font-size: 0.95rem; }
.tiny { font-size: 12px; color: var(--dim); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.card:hover {
  background: var(--card-hover);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.card-icon {
  font-size: 1.35rem; margin-bottom: 12px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
}
.card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.card p { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}
.ba-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.ba-card.after {
  border-color: rgba(74, 222, 128, 0.25);
  background: linear-gradient(180deg, rgba(74,222,128,0.04), var(--card));
}
.ba-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 16px;
}
.ba-label.before {
  background: rgba(248,113,113,0.12);
  color: #fca5a5;
}
.ba-label.after {
  background: rgba(74,222,128,0.12);
  color: #86efac;
}
.ba-card ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.ba-card li {
  font-size: 14px; color: var(--muted);
  padding-left: 18px; position: relative;
}
.ba-card li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--dim);
}
.ba-card.after li::before { background: var(--ok); }
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--accent); font-weight: 700;
}
.ba-note {
  text-align: center; margin-top: 28px;
  font-size: 13px; color: var(--dim);
}

.pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 26px 30px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}
.pricing-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 20px;
}
.pricing-header h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.price { text-align: right; flex-shrink: 0; }
.price .amount {
  display: block; font-size: 1.75rem; font-weight: 800;
  letter-spacing: -0.03em;
}
.price .once { font-size: 12px; color: var(--dim); }
.pricing-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.pricing-list li {
  font-size: 13.5px; color: var(--muted);
  padding-left: 22px; position: relative;
}
.pricing-list li::before {
  content: "✓";
  position: absolute; left: 0; color: var(--ok); font-weight: 700;
}

/* Form */
.order-form, .key-form { display: flex; flex-direction: column; gap: 18px; }
.form-group label, .key-form label {
  display: block; font-size: 13px; font-weight: 600;
  margin-bottom: 8px; color: var(--text);
}
.req { color: var(--danger); }
.order-form input[type="text"],
.key-form input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.45);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.order-form input:focus,
.key-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124, 156, 255, 0.15);
}
.hint { font-size: 12px; color: var(--dim); margin-top: 6px; }
.hint.error { color: var(--danger); }
.hint.ok { color: var(--ok); }

.pay-methods {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pay-option {
  cursor: pointer;
  user-select: none;
}
.pay-option input { position: absolute; opacity: 0; pointer-events: none; }
.pay-option span {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  font-size: 13px; font-weight: 600; color: var(--muted);
  transition: all 0.2s;
}
.pay-option input:checked + span {
  border-color: var(--accent);
  background: rgba(124, 156, 255, 0.12);
  color: var(--text);
}
.pay-option:hover span {
  border-color: var(--line-strong);
  color: var(--text);
}

/* Key panel */
.key-panel { margin-top: 8px; }
.key-status { text-align: center; margin-bottom: 22px; }
.key-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700;
  background: rgba(124, 156, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(124, 156, 255, 0.25);
}
.key-icon.ok {
  background: rgba(74, 222, 128, 0.12);
  color: var(--ok);
  border-color: rgba(74, 222, 128, 0.3);
}
.key-status h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
.key-form input {
  letter-spacing: 0.12em;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-align: center;
  font-size: 16px;
}
.key-success {
  text-align: center;
  padding: 12px 0 4px;
}
.key-success h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.step span {
  display: block;
  font-size: 12px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 10px;
}
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--muted); }

.shots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.shot { cursor: pointer; }
.shot-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  aspect-ratio: 16/10;
}
.shot-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.35s var(--ease);
}
.shot:hover .shot-frame img { transform: scale(1.03); }
.shot figcaption {
  margin-top: 8px; font-size: 12px; color: var(--dim); text-align: center;
}
.shot.missing .shot-frame {
  display: flex; align-items: center; justify-content: center;
  color: var(--dim); font-size: 12px;
}
.shot.missing .shot-frame::after { content: "Screenshot fehlt"; }

.faq { display: flex; flex-direction: column; gap: 10px; max-width: 720px; margin: 0 auto; }
.faq details.card { padding: 0; overflow: hidden; }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 600; font-size: 14.5px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.1rem; color: var(--dim); font-weight: 400;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  padding: 0 18px 16px;
  font-size: 14px; color: var(--muted);
  border-top: 1px solid transparent;
}

.download-panel {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 28px;
  max-width: 480px;
  margin: 0 auto;
}
.download-panel img {
  margin: 0 auto 18px;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}
.download-panel h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; }
.download-panel .btn { margin: 18px 0 10px; }

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 24px;
  margin-top: 20px;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.brand.mini { display: flex; align-items: center; gap: 10px; }
.brand.mini img { border-radius: 8px; }
.brand.mini span { font-size: 13px; font-weight: 700; }
.footer p { font-size: 12px; color: var(--dim); }

.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
#lightboxClose {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; line-height: 1;
  opacity: 0.7;
}
#lightboxClose:hover { opacity: 1; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); padding: 4px 0; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { padding: 12px 16px; }
  .links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: rgba(0,0,0,0.95);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 16px;
  }
  .links.open { display: flex; }
  .links a { padding: 12px 14px; }
  .btn-nav { margin-left: 0 !important; margin-top: 8px; text-align: center; }
  .nav-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .hero { padding: 48px 20px 56px; }
  .section { padding: 56px 20px; }
  .pricing-header { flex-direction: column; }
  .price { text-align: left; }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 3px;
}
.lang-switch button {
  background: transparent;
  border: none;
  color: var(--dim);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 9px;
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button.active {
  background: rgba(255,255,255,0.1);
  color: var(--text);
}
@media (max-width: 720px) {
  .lang-switch { margin-left: auto; margin-right: 4px; }
}

.updates-feed {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.update-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.update-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.update-card .ver {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.update-card .date {
  font-size: 12px;
  color: var(--dim);
}
.update-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.update-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
