:root {
  --bg: #080b12;
  --bg2: #0d1320;
  --panel: rgba(255,255,255,.07);
  --panel2: rgba(255,255,255,.105);
  --text: #f6f7fb;
  --muted: #aeb7c8;
  --line: rgba(255,255,255,.12);
  --pink: #ff4f93;
  --pink2: #d92b73;
  --cyan: #26f0e2;
  --green: #28e6a8;
  --blue: #6a5cff;
  --yellow: #ffd166;
  --shadow: 0 34px 100px rgba(0,0,0,.5);
  --max: 1220px;
  --radius: 30px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,79,147,.24), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(38,240,226,.18), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(106,92,255,.18), transparent 38%),
    linear-gradient(180deg, #080b12 0%, #0a0f1b 55%, #070911 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,11,18,.72);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  position: relative;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.95) 0 6%, transparent 7%),
    conic-gradient(from 120deg, var(--pink), var(--cyan), var(--pink));
  box-shadow: 0 18px 48px rgba(255,79,147,.33);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 999px;
}

.brand-mark::before { inset: 10px; }
.brand-mark::after { inset: 18px; opacity: .75; }

.brand-text {
  display: grid;
  gap: 3px;
}

.brand-text strong {
  font-size: 1.18rem;
  letter-spacing: .04em;
}

.brand-text small {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  font-size: .74rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
}

.main-nav a,
.inline-form button {
  border: 0;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(246,247,251,.8);
  background: transparent;
  font-size: .92rem;
}

.main-nav a:hover,
.inline-form button:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.nav-strong {
  background: #fff !important;
  color: #080b12 !important;
  font-weight: 900;
}

.inline-form { margin: 0; }

.flash {
  position: relative;
  z-index: 80;
  width: min(var(--max), calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(20px);
}

.flash-error {
  background: rgba(255,79,147,.13);
  color: #ffdbe9;
}

.flash-success {
  background: rgba(40,230,168,.13);
  color: #dffff3;
}

.hero {
  padding: 76px 0 90px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(246,247,251,.86);
  font-size: .9rem;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(40,230,168,.8);
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  line-height: .88;
  letter-spacing: -.085em;
}

.hero h1 em {
  font-style: normal;
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #fff 0%, #ffd4e5 30%, var(--pink) 62%, var(--cyan) 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero p {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  padding: 0 23px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), #aa47ff);
  box-shadow: 0 20px 64px rgba(255,79,147,.36);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.075);
}

.full { width: 100%; }

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin-top: 38px;
  max-width: 720px;
}

.trust-row div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.trust-row strong {
  display: block;
  font-size: 1.25rem;
}

.trust-row span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: .9rem;
}

.phone-stage {
  display: flex;
  justify-content: center;
}

.phone {
  width: 390px;
  min-height: 720px;
  border-radius: 48px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 38px;
  background: rgba(3,8,15,.78);
  border: 1px solid rgba(255,255,255,.1);
}

.phone > * {
  position: relative;
  z-index: 2;
}

.phone-top {
  min-height: 62px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-top span {
  color: rgba(246,247,251,.78);
  font-size: .82rem;
}

.phone-top strong {
  font-size: 1.1rem;
}

.radar-map {
  height: 410px;
  margin: 10px 0 18px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at center, rgba(255,79,147,.18), transparent 15%),
    radial-gradient(circle at center, rgba(38,240,226,.12), transparent 45%),
    linear-gradient(135deg, rgba(38,240,226,.07), rgba(255,79,147,.055));
  border: 1px solid rgba(255,255,255,.1);
}

.radar-map::before {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: 999px;
  border: 2px solid rgba(38,240,226,.7);
  box-shadow:
    0 0 0 52px rgba(38,240,226,.12),
    0 0 0 104px rgba(38,240,226,.06),
    0 0 40px rgba(38,240,226,.18);
}

.sweep {
  position: absolute;
  width: 190px;
  height: 190px;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  background: conic-gradient(from 0deg, rgba(38,240,226,.5), transparent 60%);
  border-radius: 999px;
  animation: sweep 4.8s linear infinite;
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

.me {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink);
  box-shadow: 0 0 0 10px rgba(255,79,147,.13), 0 0 42px rgba(255,79,147,.55);
  font-size: 1.5rem;
}

.dot {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff, #ffd9e9);
  color: #111;
  font-size: 0;
  box-shadow: 0 18px 38px rgba(0,0,0,.35);
}

.dot::after {
  content: attr(class);
}

.dot.d1 { left: 25%; top: 22%; }
.dot.d2 { right: 12%; top: 34%; }
.dot.d3 { left: 18%; bottom: 22%; }
.dot.d4 { right: 22%; bottom: 16%; }

.dot::before {
  content: attr(data-distance);
}

.phone-card {
  display: grid;
  grid-template-columns: 62px 1fr 48px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
}

.avatar,
.mini-profile .avatar {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #a7f7ff);
}

.phone-card strong,
.phone-card span {
  display: block;
}

.phone-card span {
  color: var(--muted);
  margin-top: 3px;
  font-size: .86rem;
}

.phone-card button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  color: #fff;
  background: var(--pink);
  font-size: 1.25rem;
}

.section {
  padding: 78px 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  color: var(--cyan);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .15em;
  font-size: .8rem;
  margin-bottom: 12px;
}

.section h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.5rem);
  letter-spacing: -.07em;
  line-height: .98;
}

.section-head p,
.page-hero p,
.section-copy p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.split-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.section-copy,
.auth-box {
  padding: 34px;
}

.section-copy {
  background:
    radial-gradient(circle at 15% 10%, rgba(255,79,147,.16), transparent 30%),
    rgba(255,255,255,.035);
  border-right: 1px solid rgba(255,255,255,.1);
}

.section-copy h2,
.auth-box h3,
.panel h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -.055em;
  line-height: 1.05;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.clean-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(246,247,251,.86);
}

.clean-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 950;
  margin-right: 9px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.form-grid label {
  display: grid;
  gap: 7px;
}

.form-grid label span {
  font-size: .9rem;
  color: rgba(246,247,251,.86);
  font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.login-line input,
.admin-row select {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(3,8,15,.55);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.form-grid textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 13px;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.login-line input:focus {
  border-color: rgba(38,240,226,.55);
  box-shadow: 0 0 0 4px rgba(38,240,226,.10);
}

.form-grid .wide {
  grid-column: 1 / -1;
}

.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px !important;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.login-line {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.login-line form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 9px;
  margin-top: 10px;
}

.login-line button,
.admin-row button,
.mini-profile button,
.mini-action {
  min-height: 44px;
  border-radius: 999px;
  border: 0;
  padding: 0 14px;
  background: #fff;
  color: #080b12;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dark-band {
  background: rgba(255,255,255,.035);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.feature-grid,
.cards-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card,
.ad-card,
.price-card,
.panel {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 22px 70px rgba(0,0,0,.24);
}

.feature-card span,
.pill,
.price-card span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,79,147,.14);
  color: #ff93bd;
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 14px;
}

.feature-card h3,
.ad-card h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: -.04em;
}

.feature-card p,
.ad-card p,
.price-card p {
  color: var(--muted);
  line-height: 1.6;
}

.ad-card footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 14px;
  margin-top: 18px;
}

.ad-card footer a {
  color: #fff;
  font-weight: 900;
}

.page-hero {
  padding: 78px 0 34px;
}

.page-hero.compact {
  padding-top: 54px;
}

.radar-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 18px;
}

.big-radar {
  min-height: 620px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at center, rgba(255,79,147,.18), transparent 15%),
    radial-gradient(circle at center, rgba(38,240,226,.14), transparent 43%),
    rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.big-radar::before {
  content: "";
  position: absolute;
  inset: 80px;
  border-radius: 999px;
  border: 2px solid rgba(38,240,226,.64);
  box-shadow:
    0 0 0 62px rgba(38,240,226,.08),
    0 0 0 124px rgba(38,240,226,.045),
    0 0 0 186px rgba(38,240,226,.025);
}

.big-radar .me {
  z-index: 4;
}

.radar-person {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  gap: 6px;
}

.radar-person span {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(0,0,0,.38);
}

.radar-person small {
  color: #fff;
  background: rgba(3,8,15,.62);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 8px;
  border-radius: 999px;
}

.pos-1 { left: 18%; top: 22%; }
.pos-2 { right: 18%; top: 24%; }
.pos-3 { left: 22%; bottom: 22%; }
.pos-4 { right: 24%; bottom: 18%; }
.pos-5 { left: 44%; top: 14%; }
.pos-6 { right: 12%; top: 52%; }
.pos-7 { left: 11%; top: 52%; }
.pos-8 { left: 46%; bottom: 12%; }

.profile-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.mini-profile {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
}

.mini-profile h3 {
  margin: 0;
}

.mini-profile p {
  margin: 5px 0 0;
  color: var(--muted);
}

.mini-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 9px;
}

.mini-tags span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(246,247,251,.78);
  font-size: .8rem;
}

.dashboard-grid,
.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.stack-card {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
}

.stack-card strong,
.stack-card span {
  display: block;
}

.stack-card span {
  color: var(--muted);
  margin-top: 4px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card h2 {
  font-size: 2.2rem;
  margin: 0;
}

.price-card.highlighted {
  background:
    radial-gradient(circle at 80% 0%, rgba(255,79,147,.17), transparent 30%),
    rgba(255,255,255,.085);
  border-color: rgba(255,79,147,.28);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.price-card li::before {
  content: "✓";
  color: var(--green);
  margin-right: 8px;
  font-weight: 950;
}

.admin-table {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
}

.admin-row span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.admin-row form {
  display: flex;
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  padding: 38px 0 48px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(174,183,200,.86);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

@media (max-width: 1100px) {
  .hero-grid,
  .split-card,
  .radar-layout,
  .dashboard-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

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

  .phone {
    width: min(390px, 100%);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 5.3rem);
  }

  .trust-row,
  .form-grid,
  .feature-grid,
  .cards-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .login-line form,
  .mini-profile,
  .admin-row,
  .admin-row form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .phone {
    min-height: 630px;
    border-radius: 38px;
  }

  .radar-map {
    height: 345px;
  }

  .big-radar {
    min-height: 520px;
  }

  .brand-text small {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-copy,
  .auth-box,
  .panel,
  .feature-card,
  .ad-card,
  .price-card {
    padding: 20px;
  }

  .phone {
    padding: 12px;
  }

  .phone::before {
    inset: 8px;
    border-radius: 30px;
  }

  .phone-card {
    grid-template-columns: 52px 1fr;
  }

  .phone-card button {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 999px;
  }

  .footer-inner {
    flex-direction: column;
  }
}


/* Clean V9: Profilbilder & echte Profilkarten */
.avatar,
.mini-profile .avatar,
.phone-card .avatar {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #111;
  font-weight: 950;
}

.avatar img,
.mini-profile .avatar img,
.phone-card .avatar img,
.profile-avatar-preview img,
.radar-person span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback remains premium gradient when no image exists */
.profile-avatar-editor {
  display: grid !important;
  grid-template-columns: 96px 1fr;
  gap: 16px !important;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.055);
}

.profile-avatar-preview {
  width: 96px;
  height: 96px;
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff, #a7f7ff);
  color: #10131f;
  font-size: 2.4rem;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(0,0,0,.32);
}

.profile-avatar-editor strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.profile-avatar-editor p {
  margin: 5px 0 10px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}

.profile-avatar-editor input[type="file"] {
  padding: 12px;
  min-height: auto;
  cursor: pointer;
}

.radar-person span {
  overflow: hidden;
  background: linear-gradient(135deg, #fff, #ffd9e9);
}

.ad-card-profile {
  display: flex;
  flex-direction: column;
}

.ad-author {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.ad-author .avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #ffd8ef);
}

.ad-author strong {
  display: block;
  letter-spacing: -.025em;
}

.ad-author span {
  display: block;
  color: var(--muted);
  font-size: .88rem;
  margin-top: 3px;
}

@media (max-width: 560px) {
  .profile-avatar-editor {
    grid-template-columns: 1fr;
  }

  .profile-avatar-preview {
    width: 88px;
    height: 88px;
  }
}


/* Clean V10: Mobile UX, Navigation, Logout, App-Optimierung */
.mobile-header-actions {
  display: none;
}

.mobile-bottom-nav {
  display: none;
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    flex: 0 0 auto;
  }

  .brand-text strong {
    font-size: 1.02rem;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .mobile-header-actions a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    background: #fff;
    color: #080b12;
    font-weight: 900;
    font-size: .88rem;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    border-radius: 26px;
    background: rgba(8, 11, 18, .88);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 24px 70px rgba(0,0,0,.55);
    backdrop-filter: blur(24px);
  }

  .mobile-nav-item,
  .mobile-nav-logout button {
    min-width: 0;
    min-height: 52px;
    border: 0;
    border-radius: 19px;
    background: transparent;
    color: rgba(246,247,251,.78);
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2px;
    font-size: .68rem;
    line-height: 1;
    padding: 5px 2px;
  }

  .mobile-nav-main {
    background: linear-gradient(135deg, var(--pink), #a94cff);
    color: #fff;
    box-shadow: 0 10px 28px rgba(255,79,147,.28);
  }

  .mobile-nav-icon {
    display: block;
    font-size: 1.08rem;
    line-height: 1;
    font-weight: 950;
  }

  .mobile-nav-logout {
    margin: 0;
    min-width: 0;
  }

  .mobile-nav-logout button {
    width: 100%;
    font-size: .68rem;
    font-weight: 700;
    font-family: inherit;
  }

  .hero {
    padding: 34px 0 46px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero h1 {
    letter-spacing: -.078em;
    line-height: .9;
  }

  .hero p {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: .82rem;
    padding: 8px 11px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .trust-row {
    margin-top: 22px;
    gap: 10px;
  }

  .trust-row div {
    padding: 14px;
    border-radius: 19px;
  }

  .trust-row strong {
    font-size: 1.04rem;
  }

  .trust-row span {
    font-size: .82rem;
  }

  .phone-stage {
    display: none;
  }

  .split-card {
    border-radius: 26px;
  }

  .section-copy,
  .auth-box {
    padding: 22px;
  }

  .section-copy h2,
  .auth-box h3,
  .panel h2 {
    font-size: 1.55rem;
  }

  .form-grid {
    gap: 12px;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .page-hero.compact {
    padding-top: 36px;
  }

  .page-hero h1,
  .section h2 {
    font-size: clamp(2.05rem, 10vw, 3.25rem);
  }

  .radar-layout {
    gap: 14px;
  }

  .big-radar {
    min-height: 410px;
    border-radius: 26px;
  }

  .big-radar::before {
    inset: 72px;
  }

  .radar-person span {
    width: 48px;
    height: 48px;
    border-radius: 17px;
  }

  .radar-person small {
    font-size: .72rem;
  }

  .mini-profile {
    padding: 14px;
    border-radius: 22px;
  }

  .mini-profile .avatar,
  .avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .mini-tags span {
    font-size: .76rem;
  }

  .dashboard-grid,
  .admin-grid {
    gap: 14px;
  }

  .panel {
    border-radius: 24px;
  }

  .profile-avatar-editor {
    padding: 14px;
    border-radius: 20px;
  }

  .cards-grid,
  .feature-grid,
  .pricing-grid {
    gap: 12px;
  }

  .ad-card,
  .feature-card,
  .price-card {
    border-radius: 23px;
  }

  .ad-card footer {
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .mobile-bottom-nav {
    left: 6px;
    right: 6px;
    bottom: calc(6px + env(safe-area-inset-bottom));
    gap: 4px;
    padding: 6px;
    border-radius: 22px;
  }

  .mobile-nav-item,
  .mobile-nav-logout button {
    min-height: 49px;
    border-radius: 16px;
    font-size: .62rem;
  }

  .mobile-nav-icon {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 16vw, 4.7rem);
  }

  .container {
    width: min(var(--max), calc(100% - 22px));
  }

  .section-copy,
  .auth-box,
  .panel,
  .feature-card,
  .ad-card,
  .price-card {
    padding: 18px;
  }

  .big-radar {
    min-height: 360px;
  }

  .big-radar::before {
    inset: 58px;
  }

  .radar-person span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .pos-1 { left: 14%; top: 22%; }
  .pos-2 { right: 13%; top: 24%; }
  .pos-3 { left: 16%; bottom: 22%; }
  .pos-4 { right: 18%; bottom: 17%; }
  .pos-5 { left: 42%; top: 12%; }
  .pos-6 { right: 8%; top: 52%; }
  .pos-7 { left: 8%; top: 52%; }
  .pos-8 { left: 43%; bottom: 10%; }
}


/* Clean V11: Live Core, Swipe, Matches, Chat */
.swipe-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .75fr);
  gap: 18px;
  align-items: start;
}

.swipe-card-live {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow);
}

.swipe-photo {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,79,147,.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(38,240,226,.08));
  color: #fff;
  font-size: 7rem;
  font-weight: 950;
}

.swipe-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.swipe-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,11,18,.74), transparent 45%);
}

.swipe-trust {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #081018;
  background: var(--green);
  font-size: .82rem;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0,0,0,.25);
}

.swipe-content {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.swipe-content h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.swipe-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.swipe-bio {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
}

.swipe-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.swipe-btn {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 950;
}

.swipe-btn.nope {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
}

.swipe-btn.favorite {
  background: linear-gradient(135deg, #ffd166, #ff9f1c);
  color: #15100a;
}

.swipe-btn.like {
  background: linear-gradient(135deg, var(--pink), #a94cff);
  box-shadow: 0 16px 40px rgba(255,79,147,.28);
}

.next-stack {
  display: grid;
  gap: 12px;
}

.next-stack h2 {
  margin: 0 0 4px;
  font-size: 1.4rem;
  letter-spacing: -.04em;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: var(--shadow);
}

.empty-state h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -.065em;
}

.empty-state p {
  color: var(--muted);
  line-height: 1.65;
}

.matches-grid {
  display: grid;
  gap: 14px;
}

.match-card {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 58px rgba(0,0,0,.22);
}

.match-card .avatar {
  width: 74px;
  height: 74px;
  border-radius: 24px;
}

.match-card h2 {
  margin: 0;
  font-size: 1.28rem;
  letter-spacing: -.04em;
}

.match-card p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.chat-shell {
  display: grid;
  gap: 16px;
}

.chat-messages {
  min-height: 420px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  align-content: end;
  gap: 12px;
}

.chat-bubble {
  max-width: 76%;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.1);
}

.chat-bubble.mine {
  justify-self: end;
  background: linear-gradient(135deg, rgba(255,79,147,.33), rgba(169,76,255,.25));
}

.chat-bubble.theirs {
  justify-self: start;
}

.chat-bubble strong,
.chat-bubble span {
  display: block;
}

.chat-bubble p {
  margin: 6px 0;
  line-height: 1.55;
}

.chat-bubble span {
  color: var(--muted);
  font-size: .78rem;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.12);
}

.chat-form textarea {
  min-height: 58px;
  max-height: 180px;
  resize: vertical;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  color: #fff;
  padding: 14px;
  outline: none;
}

.compact-empty {
  box-shadow: none;
}

.dashboard-quick-actions {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.quick-action {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.quick-action:first-child {
  background: linear-gradient(135deg, var(--pink), #a94cff);
  color: #fff;
  border-color: transparent;
}

@media (max-width: 900px) {
  .swipe-layout,
  .match-card {
    grid-template-columns: 1fr;
  }

  .swipe-photo {
    min-height: 430px;
  }

  .swipe-actions,
  .dashboard-quick-actions {
    grid-template-columns: 1fr 1fr;
  }

  .match-card .btn {
    width: 100%;
  }

  .chat-form {
    grid-template-columns: 1fr;
  }

  .chat-bubble {
    max-width: 92%;
  }
}

@media (max-width: 520px) {
  .swipe-photo {
    min-height: 360px;
    border-radius: 0;
  }

  .swipe-content {
    padding: 18px;
  }

  .swipe-actions,
  .dashboard-quick-actions {
    grid-template-columns: 1fr;
  }

  .match-card {
    padding: 16px;
    border-radius: 23px;
  }

  .chat-messages {
    min-height: 360px;
    padding: 12px;
    border-radius: 24px;
  }
}


/* Clean V12 Ultimate Core: Premium Swipe, Radius, Founding Offer */
.founding-offer {
  max-width: 720px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,209,102,.2), transparent 36%),
    rgba(255,255,255,.07);
  border: 1px solid rgba(255,209,102,.22);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.founding-offer strong,
.founding-offer span {
  display: block;
}

.founding-offer strong {
  color: #fff;
  letter-spacing: -.025em;
  font-size: 1.05rem;
}

.founding-offer span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.discover-hero p {
  max-width: 760px;
}

.radius-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.radius-filter label {
  padding-left: 10px;
  color: var(--muted);
  font-weight: 850;
  font-size: .9rem;
}

.radius-filter select,
.radius-filter button {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.24);
  color: #fff;
  padding: 0 14px;
  font-weight: 850;
}

.radius-filter button {
  background: #fff;
  color: #080b12;
  border: 0;
}

.ultimate-swipe-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}

.ultimate-swipe-stage {
  min-width: 0;
}

.ultimate-swipe-form {
  display: grid;
  gap: 16px;
}

.ultimate-swipe-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  touch-action: pan-y;
  will-change: transform;
  transition: transform .22s ease, opacity .22s ease;
}

.ultimate-swipe-card.is-dragging {
  transition: none;
}

.ultimate-swipe-card.swipe-left {
  transform: translateX(-120vw) rotate(-18deg);
  opacity: .25;
}

.ultimate-swipe-card.swipe-right {
  transform: translateX(120vw) rotate(18deg);
  opacity: .25;
}

.ultimate-swipe-image {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 24%, rgba(255,79,147,.26), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(38,240,226,.08));
  color: #fff;
  font-size: 7rem;
  font-weight: 950;
}

.ultimate-swipe-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ultimate-swipe-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,11,18,.88), rgba(8,11,18,.15) 52%, rgba(8,11,18,.18));
}

.ultimate-distance,
.ultimate-trust {
  position: absolute;
  z-index: 3;
  top: 20px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}

.ultimate-distance {
  left: 20px;
  color: #fff;
  background: rgba(8,11,18,.58);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
}

.ultimate-trust {
  right: 20px;
  color: #081018;
  background: var(--green);
}

.ultimate-swipe-info {
  position: relative;
  z-index: 4;
  margin-top: -152px;
  padding: 0 24px 24px;
  display: grid;
  gap: 15px;
}

.ultimate-swipe-info h2 {
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 22px rgba(0,0,0,.45);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: .94;
  letter-spacing: -.075em;
}

.ultimate-swipe-info > div:first-child p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.86);
  line-height: 1.5;
}

.ultimate-bio {
  margin: 0;
  color: rgba(246,247,251,.86);
  line-height: 1.65;
  padding: 16px;
  border-radius: 22px;
  background: rgba(8,11,18,.62);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.swipe-watermark {
  position: absolute;
  z-index: 8;
  top: 40px;
  padding: 12px 18px;
  border-radius: 18px;
  border: 3px solid currentColor;
  font-size: 1.35rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: 0;
  pointer-events: none;
}

.swipe-watermark.like {
  left: 28px;
  color: var(--green);
  transform: rotate(-12deg);
}

.swipe-watermark.nope {
  right: 28px;
  color: #ff6b8d;
  transform: rotate(12deg);
}

.ultimate-swipe-card.show-like .swipe-watermark.like,
.ultimate-swipe-card.show-nope .swipe-watermark.nope {
  opacity: .96;
}

.ultimate-swipe-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 12px;
}

.ultimate-action {
  min-height: 62px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-weight: 950;
  font-size: 1rem;
  box-shadow: 0 16px 44px rgba(0,0,0,.24);
}

.ultimate-action span {
  font-size: 1.3rem;
  line-height: 1;
}

.ultimate-action.nope {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
}

.ultimate-action.favorite {
  color: #15100a;
  background: linear-gradient(135deg, #ffd166, #ff9f1c);
}

.ultimate-action.like {
  background: linear-gradient(135deg, var(--pink), #a94cff);
  box-shadow: 0 18px 48px rgba(255,79,147,.32);
}

.ultimate-side-panel {
  display: grid;
  gap: 14px;
}

.side-card {
  padding: 20px;
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}

.side-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -.045em;
}

.side-card p {
  color: var(--muted);
  line-height: 1.55;
}

.next-profile {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 11px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.next-profile:first-of-type {
  border-top: 0;
}

.next-profile .avatar {
  width: 52px;
  height: 52px;
  border-radius: 18px;
}

.next-profile strong,
.next-profile span {
  display: block;
}

.next-profile span {
  color: var(--muted);
  margin-top: 3px;
  font-size: .86rem;
}

.empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .ultimate-swipe-grid {
    grid-template-columns: 1fr;
  }

  .ultimate-side-panel {
    order: 2;
  }

  .ultimate-swipe-stage {
    order: 1;
  }

  .ultimate-swipe-image {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .radius-filter {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    padding: 12px;
  }

  .radius-filter label {
    grid-column: 1 / -1;
    padding-left: 0;
  }

  .radius-filter select,
  .radius-filter button {
    width: 100%;
  }

  .ultimate-swipe-card {
    border-radius: 30px;
  }

  .ultimate-swipe-image {
    min-height: 470px;
  }

  .ultimate-swipe-info {
    margin-top: -138px;
    padding: 0 16px 18px;
  }

  .ultimate-swipe-info h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .ultimate-swipe-actions {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .ultimate-action {
    min-height: 56px;
    font-size: .78rem;
    flex-direction: column;
    gap: 3px;
  }

  .ultimate-action span {
    font-size: 1.15rem;
  }

  .side-card {
    border-radius: 24px;
  }
}

@media (max-width: 420px) {
  .ultimate-swipe-image {
    min-height: 430px;
  }

  .ultimate-distance,
  .ultimate-trust {
    top: 14px;
    font-size: .72rem;
    padding: 7px 9px;
  }

  .ultimate-distance {
    left: 14px;
  }

  .ultimate-trust {
    right: 14px;
  }
}


/* Clean V13 Full Live MVP */
.legal-page {
  max-width: 980px;
}

.legal-card {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 26px 0 8px;
  font-size: 1.35rem;
  letter-spacing: -.04em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--muted);
  line-height: 1.72;
}

.legal-note,
.panel-muted {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,209,102,.1);
  border: 1px solid rgba(255,209,102,.18);
  color: rgba(255,245,220,.92) !important;
}

.geo-box {
  padding: 16px;
  border-radius: 22px;
  background: rgba(38,240,226,.08);
  border: 1px solid rgba(38,240,226,.18);
}

.geo-box strong,
.geo-box p {
  display: block;
}

.geo-box p {
  margin: 6px 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.trust-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  margin: 14px 0;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.founding-offer {
  border-color: rgba(255,209,102,.25);
}

@media (max-width: 720px) {
  .legal-card {
    padding: 22px;
    border-radius: 24px;
  }

  .footer-links {
    gap: 10px;
  }
}


/* Clean V14: Impressum */
.imprint-card a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.35);
  text-underline-offset: 3px;
}

.imprint-card strong {
  color: #fff;
}

@media (max-width: 620px) {
  .imprint-card p {
    word-break: break-word;
  }
}
