@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #050a08;
  --bg-soft: #08120e;
  --surface: rgba(12, 25, 19, 0.78);
  --surface-strong: #0b1712;
  --border: rgba(137, 255, 177, 0.14);
  --border-strong: rgba(86, 232, 135, 0.34);
  --text: #f3f7f4;
  --muted: #a5b2aa;
  --green: #52e082;
  --green-light: #8bf2ab;
  --red: #f12c2c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(27, 109, 57, 0.17), transparent 30rem),
    radial-gradient(circle at 12% 22%, rgba(15, 75, 40, 0.13), transparent 28rem),
    var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

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

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  padding: .8rem 1rem;
  background: var(--green);
  color: #021007;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 10, 8, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand-logo {
  width: 52px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.brand strong,
.footer-brand span {
  color: var(--red);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .94rem;
  padding: .7rem .85rem;
  border-radius: 10px;
  transition: .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,.04);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  padding: .5rem;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text);
  margin: 5px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 64px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 700;
  font-size: .75rem;
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.3vw, 4.9rem);
  line-height: 1.03;
  letter-spacing: -.055em;
  margin: 0 0 24px;
}

.hero h1 span { color: var(--green); }

.lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #041107;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  box-shadow: 0 12px 35px rgba(82, 224, 130, .22);
}

.button-secondary {
  border: 1px solid var(--border-strong);
  background: rgba(255,255,255,.025);
}

.official-note {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .8rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 11px;
  background: rgba(8, 22, 15, .5);
  font-size: .9rem;
}

.official-note span {
  color: var(--green);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  height: 470px;
  min-width: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  background: rgba(42, 202, 96, .09);
  right: 4%;
  top: 6%;
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  background: rgba(235, 42, 42, .04);
  right: -5%;
  bottom: -5%;
}

.brand-orbit {
  position: absolute;
  inset: 28px 15px 40px 90px;
  border: 1px solid rgba(88, 230, 137, .08);
  border-radius: 45% 55% 60% 40%;
  transform: rotate(-8deg);
}

.dashboard-card {
  position: absolute;
  right: 5px;
  top: 46px;
  width: 390px;
  height: 320px;
  padding: 22px;
  border: 1px solid var(--border-strong);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(14, 31, 23, .98), rgba(4, 12, 8, .96));
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-6deg);
}

.dashboard-top,
.dashboard-metrics,
.dashboard-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-top {
  font-weight: 700;
  margin-bottom: 20px;
}

.status-dot {
  color: var(--green);
  font-size: .75rem;
}

.dashboard-metrics {
  gap: 12px;
}

.dashboard-metrics > div {
  width: 50%;
  padding: 13px;
  border-radius: 13px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border);
}

.dashboard-metrics small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 2px;
  font-size: .9rem;
}

.chart {
  height: 90px;
  margin: 20px 0;
  padding: 12px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  border-radius: 13px;
  background: rgba(255,255,255,.025);
}

.chart span {
  flex: 1;
  min-height: 7px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(var(--green-light), rgba(82,224,130,.18));
}

.dashboard-list {
  display: grid;
  gap: 7px;
}

.dashboard-list div {
  font-size: .75rem;
  color: var(--muted);
}

.dashboard-list b {
  color: var(--green);
  font-size: .68rem;
}

.phone {
  position: absolute;
  left: 55px;
  top: 84px;
  width: 180px;
  height: 360px;
  padding: 9px;
  z-index: 3;
  border-radius: 31px;
  background: linear-gradient(145deg, #222, #050505);
  border: 1px solid #3c5546;
  box-shadow: 0 30px 65px rgba(0,0,0,.58);
  transform: rotate(-2deg);
}

.phone-speaker {
  width: 54px;
  height: 5px;
  margin: 3px auto 6px;
  border-radius: 5px;
  background: #010101;
}

.phone-screen {
  height: calc(100% - 14px);
  padding: 12px;
  border-radius: 23px;
  background:
    radial-gradient(circle at 50% 20%, rgba(78,221,128,.12), transparent 34%),
    #07100c;
  border: 1px solid rgba(255,255,255,.04);
  text-align: center;
}

.phone-title {
  text-align: left;
  font-size: .72rem;
  font-weight: 700;
  color: #dce8e0;
}

.dartboard {
  position: relative;
  width: 105px;
  height: 105px;
  margin: 15px auto 10px;
  border-radius: 50%;
  background:
    conic-gradient(#111 0 9deg, #e5e5dc 9deg 18deg, #111 18deg 27deg, #e5e5dc 27deg 36deg,
    #111 36deg 45deg, #e5e5dc 45deg 54deg, #111 54deg 63deg, #e5e5dc 63deg 72deg,
    #111 72deg 81deg, #e5e5dc 81deg 90deg, #111 90deg 99deg, #e5e5dc 99deg 108deg,
    #111 108deg 117deg, #e5e5dc 117deg 126deg, #111 126deg 135deg, #e5e5dc 135deg 144deg,
    #111 144deg 153deg, #e5e5dc 153deg 162deg, #111 162deg 171deg, #e5e5dc 171deg 180deg,
    #111 180deg 189deg, #e5e5dc 189deg 198deg, #111 198deg 207deg, #e5e5dc 207deg 216deg,
    #111 216deg 225deg, #e5e5dc 225deg 234deg, #111 234deg 243deg, #e5e5dc 243deg 252deg,
    #111 252deg 261deg, #e5e5dc 261deg 270deg, #111 270deg 279deg, #e5e5dc 279deg 288deg,
    #111 288deg 297deg, #e5e5dc 297deg 306deg, #111 306deg 315deg, #e5e5dc 315deg 324deg,
    #111 324deg 333deg, #e5e5dc 333deg 342deg, #111 342deg 351deg, #e5e5dc 351deg);
  border: 8px solid #242b27;
  box-shadow: inset 0 0 0 5px #238c4a, inset 0 0 0 11px #1e1e1e, inset 0 0 0 17px #b92a2a;
}

.dartboard-center {
  position: absolute;
  width: 18px;
  height: 18px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #47cc75;
  border: 6px solid #bb2929;
}

.score {
  color: var(--green);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
}

.score-label {
  color: var(--muted);
  font-size: .65rem;
  margin-top: 3px;
}

.keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 12px;
}

.keypad span {
  display: grid;
  place-items: center;
  height: 25px;
  border-radius: 6px;
  background: rgba(255,255,255,.055);
  font-size: .65rem;
}

.keypad .key-green {
  color: #061208;
  background: var(--green);
  font-weight: 800;
}

.keypad .key-muted { color: var(--muted); }

.hero-logo {
  position: absolute;
  right: -35px;
  bottom: -8px;
  width: 235px;
  opacity: .2;
  filter: saturate(1.1) contrast(1.1);
  mix-blend-mode: screen;
}

.section {
  padding: 82px 0;
  scroll-margin-top: 78px;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(13,31,21,.27));
  border-block: 1px solid var(--border);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.section-heading h2,
.section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  letter-spacing: -.035em;
  line-height: 1.1;
}

.section-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.app-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}

.app-card,
.info-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15,31,23,.82), rgba(7,15,11,.86));
  box-shadow: 0 20px 55px rgba(0,0,0,.16);
}

.app-card {
  display: flex;
  gap: 18px;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}

.app-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.app-card.featured {
  border-color: rgba(82,224,130,.28);
}

.app-icon {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border-strong);
  font-size: 2.3rem;
}

.money-icon {
  color: var(--green);
  font-weight: 800;
  border-radius: 50%;
  box-shadow: inset 0 0 0 8px rgba(82,224,130,.08);
}

.future-icon {
  color: var(--green);
  font-size: 3rem;
}

.app-card-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-title-row h3 {
  margin: 0;
  font-size: 1.25rem;
}

.app-card p,
.value-grid p,
.info-card p {
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 15px;
}

.tags span,
.badge {
  padding: .35rem .55rem;
  font-size: .7rem;
  color: #c2d0c6;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.025);
  border-radius: 999px;
}

.badge-live {
  color: var(--green-light);
  border-color: var(--border-strong);
  background: rgba(82,224,130,.08);
}

.text-link {
  color: var(--green-light);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

.disabled-link {
  color: var(--muted);
  cursor: not-allowed;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.value-grid article {
  padding: 24px;
  border-left: 1px solid var(--border);
}

.value-grid article:first-child { border-left: 0; }

.value-grid h3 {
  margin: 10px 0 2px;
}

.value-grid p { margin: 0; }

.value-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green);
  border-radius: 14px;
  background: rgba(82,224,130,.07);
  border: 1px solid var(--border-strong);
  font-size: 1.2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card { padding: 30px; }

.info-card h2 { font-size: 2rem; }

.swiss-note {
  display: inline-flex;
  margin-top: 8px;
  padding: .7rem .8rem;
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border);
}

.link-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.link-list a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 15px;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,.022);
  transition: border-color .2s ease, transform .2s ease;
}

.link-list a:hover {
  transform: translateX(3px);
  border-color: var(--border-strong);
}

.link-list span { font-weight: 700; }
.link-list small { color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(2,7,4,.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: .86rem;
}

.footer-grid > a {
  text-decoration: none;
  text-align: center;
}

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

.footer-brand img {
  width: 48px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong { color: var(--text); }

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a { text-decoration: none; }

:focus-visible {
  outline: 3px solid rgba(82,224,130,.7);
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-grid article:nth-child(3) { border-left: 0; }
}

@media (max-width: 720px) {
  .nav-wrap { min-height: 68px; }

  .menu-button {
    display: block;
    z-index: 1002;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 67px;
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--border-strong);
    border-radius: 15px;
    background: rgba(5, 14, 9, .98);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open { display: flex; }

  .main-nav a { padding: .9rem 1rem; }

  .hero {
    padding-top: 58px;
  }

  .hero-visual {
    height: 390px;
  }

  .dashboard-card {
    width: calc(100% - 50px);
    right: 0;
    height: 280px;
  }

  .phone {
    left: 0;
    width: 155px;
    height: 310px;
  }

  .dartboard {
    width: 85px;
    height: 85px;
  }

  .hero-logo {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p { margin-top: 12px; }

  .app-card {
    flex-direction: column;
  }

  .value-grid,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .value-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .value-grid article:first-child { border-top: 0; }

  .footer-grid > a { text-align: left; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 430px) {
  .brand span { font-size: .9rem; }
  .brand-logo { width: 43px; height: 34px; }
  .hero-visual { height: 350px; }
  .dashboard-card { opacity: .72; }
  .official-note { font-size: .78rem; }
}


/* ===== Version 1.4: Hero-Logo-Showcase ===== */
.hero-visual {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.hero-logo-card {
  position: relative;
  width: min(100%, 500px);
  min-height: 440px;
  padding: 36px 28px 28px;
  border-radius: 34px;
  border: 1px solid rgba(99, 235, 145, .18);
  background:
    radial-gradient(circle at 50% 22%, rgba(82,224,130,.16), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(241,44,44,.10), transparent 22%),
    linear-gradient(145deg, rgba(12,24,18,.96), rgba(4,10,7,.98));
  box-shadow:
    0 34px 90px rgba(0, 0, 0, .48),
    inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.hero-logo-shine {
  position: absolute;
  inset: -20% auto auto -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,.08), transparent 62%);
  filter: blur(25px);
  pointer-events: none;
}

.hero-logo-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(82,224,130,.12);
  box-shadow: inset 0 0 0 30px rgba(82,224,130,.025);
}

.hero-logo-large {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.45));
}

.hero-logo-caption {
  position: relative;
  z-index: 2;
  max-width: 360px;
  text-align: center;
}

.hero-caption-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 700;
}

.hero-logo-caption strong {
  display: block;
  font-size: 1.25rem;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.hero-logo-caption small {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .hero-visual {
    min-height: 420px;
  }
  .hero-logo-card {
    min-height: 390px;
  }
  .hero-logo-ring {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 720px) {
  .hero-visual {
    height: auto;
    min-height: 0;
  }
  .hero-logo-card {
    width: 100%;
    min-height: 340px;
    padding: 28px 20px 24px;
    border-radius: 26px;
  }
  .hero-logo-large {
    width: min(100%, 260px);
  }
  .hero-logo-ring {
    width: 220px;
    height: 220px;
  }
  .hero-logo-caption strong {
    font-size: 1.05rem;
  }
  .hero-logo-caption small {
    font-size: .86rem;
  }
}


/* ===== Version 1.5: Hero nur Logo + Schriftzug ===== */
.hero-logo-card-simple {
  min-height: 450px;
  padding: 20px;
  gap: 0;
  justify-content: center;
}

.hero-logo-large-simple {
  width: min(100%, 420px);
  max-width: 420px;
}

.hero-logo-card-simple .hero-logo-ring {
  width: 360px;
  height: 360px;
  opacity: .9;
}

.hero-logo-card-simple .hero-logo-shine {
  inset: -10% auto auto -4%;
  width: 80%;
  height: 80%;
}

@media (max-width: 960px) {
  .hero-logo-card-simple {
    min-height: 400px;
  }
  .hero-logo-large-simple {
    width: min(100%, 360px);
    max-width: 360px;
  }
  .hero-logo-card-simple .hero-logo-ring {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 720px) {
  .hero-logo-card-simple {
    min-height: 320px;
    padding: 18px;
  }
  .hero-logo-large-simple {
    width: min(100%, 290px);
    max-width: 290px;
  }
  .hero-logo-card-simple .hero-logo-ring {
    width: 235px;
    height: 235px;
  }
}


/* ===== Version 1.6: Offener Hero-Logo-Bereich ===== */
.hero-visual-open {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero-logo-open {
  position: relative;
  width: 100%;
  min-height: 470px;
  display: grid;
  place-items: center;
}

.hero-logo-open-image {
  position: relative;
  z-index: 3;
  width: min(100%, 520px);
  max-width: 520px;
  object-fit: contain;
  filter:
    drop-shadow(0 24px 55px rgba(0,0,0,.55))
    drop-shadow(0 0 32px rgba(82,224,130,.13));
}

.hero-open-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(82,224,130,.18) 0%, rgba(31,128,65,.08) 38%, transparent 72%);
  filter: blur(18px);
}

.hero-open-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(82,224,130,.08);
}

.hero-open-ring-one {
  width: 410px;
  height: 410px;
}

.hero-open-ring-two {
  width: 520px;
  height: 520px;
  opacity: .55;
}

/* Alte Hero-Karte vollständig deaktivieren */
.hero-logo-card,
.hero-logo-card-simple {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* ===== Datenschutz-Untermenü ===== */
.privacy-page {
  max-width: 980px;
  margin-inline: auto;
}

.privacy-nav {
  position: sticky;
  top: 92px;
  z-index: 20;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(5, 14, 9, .92);
  backdrop-filter: blur(14px);
}

.privacy-nav-link {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 44px;
  padding: .65rem .9rem;
  border-radius: 11px;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid transparent;
  transition: .2s ease;
}

.privacy-nav-link:hover,
.privacy-nav-link:focus-visible {
  color: var(--text);
  border-color: var(--border-strong);
  background: rgba(82,224,130,.06);
}

.privacy-nav-link.app-link {
  color: var(--text);
  border-color: var(--border);
}

.privacy-nav-link small {
  color: var(--muted);
  font-size: .68rem;
}

.privacy-section {
  scroll-margin-top: 170px;
  padding: 24px 0 8px;
}

.privacy-section + .privacy-section {
  margin-top: 28px;
  border-top: 1px solid var(--border);
}

.app-privacy-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}

.app-privacy-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  background: rgba(255,255,255,.022);
  transition: transform .2s ease, border-color .2s ease;
}

.app-privacy-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.app-privacy-card > span:nth-child(2) {
  flex: 1;
}

.app-privacy-card strong,
.app-privacy-card small {
  display: block;
}

.app-privacy-card small {
  margin-top: 3px;
  color: var(--muted);
}

.app-privacy-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  background: rgba(82,224,130,.07);
  font-size: 1.4rem;
}

.app-privacy-placeholder {
  opacity: .55;
  cursor: default;
}

.app-privacy-detail {
  padding: 32px;
  border: 1px solid var(--border-strong) !important;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 4%, rgba(82,224,130,.08), transparent 18rem),
    rgba(8, 20, 14, .55);
}

.app-privacy-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.app-privacy-icon-large {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid var(--border-strong);
  background: rgba(82,224,130,.08);
  font-size: 2rem;
}

.app-privacy-heading .eyebrow {
  margin-bottom: 5px;
}

.app-privacy-heading h2 {
  margin: 0;
}

.legal-page h3 {
  margin-top: 30px;
  font-size: 1.25rem;
}

@media (max-width: 960px) {
  .hero-visual-open {
    min-height: 430px;
  }

  .hero-logo-open {
    min-height: 410px;
  }

  .hero-logo-open-image {
    width: min(100%, 440px);
  }

  .hero-open-ring-one {
    width: 340px;
    height: 340px;
  }

  .hero-open-ring-two {
    width: 430px;
    height: 430px;
  }
}

@media (max-width: 720px) {
  .hero-visual-open {
    min-height: 360px;
  }

  .hero-logo-open {
    min-height: 340px;
  }

  .hero-logo-open-image {
    width: min(100%, 330px);
  }

  .hero-open-glow {
    width: 320px;
    height: 320px;
  }

  .hero-open-ring-one {
    width: 250px;
    height: 250px;
  }

  .hero-open-ring-two {
    width: 320px;
    height: 320px;
  }

  .privacy-nav {
    position: static;
  }

  .privacy-nav-link {
    width: 100%;
  }

  .app-privacy-menu {
    grid-template-columns: 1fr;
  }

  .app-privacy-detail {
    padding: 22px 18px;
  }

  .app-privacy-heading {
    align-items: flex-start;
  }
}


/* ===== Version 1.6.1: Logo-Position und Glow korrigiert ===== */
@media (min-width: 961px) {
  .hero-logo-open {
    transform: translate(110px, -70px) !important;
  }

  .hero-logo-open::before,
  .hero-logo-open::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-logo-open::before {
    width: 600px;
    height: 600px;
    background:
      radial-gradient(
        circle,
        rgba(82, 255, 145, .34) 0%,
        rgba(45, 190, 98, .20) 30%,
        rgba(16, 86, 46, .11) 56%,
        transparent 78%
      );
    filter: blur(30px);
    opacity: 1;
    z-index: 0;
  }

  .hero-logo-open::after {
    width: 760px;
    height: 760px;
    background:
      radial-gradient(
        circle at 62% 38%,
        rgba(22, 126, 66, .18) 0%,
        rgba(12, 64, 35, .10) 34%,
        transparent 70%
      );
    filter: blur(48px);
    opacity: .9;
    z-index: 0;
  }

  .hero-open-glow {
    width: 500px !important;
    height: 500px !important;
    background:
      radial-gradient(
        circle,
        rgba(88, 255, 150, .40) 0%,
        rgba(51, 191, 100, .22) 34%,
        rgba(19, 92, 49, .12) 58%,
        transparent 78%
      ) !important;
    filter: blur(18px) !important;
    opacity: 1 !important;
    z-index: 1 !important;
  }

  .hero-logo-open-image {
    width: min(100%, 580px) !important;
    max-width: 580px !important;
    filter:
      drop-shadow(0 28px 65px rgba(0, 0, 0, .58))
      drop-shadow(0 0 48px rgba(82, 224, 130, .26)) !important;
  }

  .hero-open-ring-one {
    width: 410px !important;
    height: 410px !important;
  }

  .hero-open-ring-two {
    width: 560px !important;
    height: 560px !important;
    opacity: .62 !important;
  }
}

@media (min-width: 721px) and (max-width: 960px) {
  .hero-logo-open {
    transform: translate(55px, -35px) !important;
  }

  .hero-open-glow {
    width: 380px !important;
    height: 380px !important;
    opacity: 1 !important;
  }

  .hero-logo-open-image {
    width: min(100%, 470px) !important;
    max-width: 470px !important;
  }
}
