/* =============================================
   NAME MINING FARM – style.css
   Dark Trading Theme | Cinzel + Outfit
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --bg-deep:       #080c14;
  --bg-card:       #0d1423;
  --bg-card-hover: #111b2e;
  --bg-border:     rgba(0, 212, 255, 0.12);
  --accent:        #00d4ff;
  --accent-glow:   rgba(0, 212, 255, 0.25);
  --accent-2:      #0aefff;
  --green:         #00ff88;
  --red:           #ff4466;
  --text-primary:  #f0f4ff;
  --text-secondary:#8fa0b8;
  --text-muted:    #4a5568;
  --font-display:  'Cinzel', serif;
  --font-body:     'Outfit', sans-serif;
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow:   0 0 40px rgba(0, 212, 255, 0.15);
  --shadow-card:   0 4px 32px rgba(0, 0, 0, 0.5);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Scroll Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 0 35px rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,212,255,0.05);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--bg-border);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(0,212,255,0.06);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Section Labels & Titles ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-primary);
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 12, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--bg-border);
  padding: 12px 0;
}
/* Globaler Fix: hidden-Attribut wirklich respektieren (war bei Flex-Elementen sonst sichtbar) */
[hidden] { display: none !important; }

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { display: flex; align-items: center; }
.logo-text { display: flex; flex-direction: column; }
.logo-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 12, 20, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; text-align: center; }
.mobile-menu a { font-size: 1.2rem; color: var(--text-primary); font-weight: 500; }
.mobile-menu a:hover { color: var(--accent); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: rgba(0,212,255,0.08); top: -100px; right: -100px; }
.orb-2 { width: 350px; height: 350px; background: rgba(0,255,136,0.06); bottom: 0; left: -50px; }
.orb-3 { width: 200px; height: 200px; background: rgba(0,212,255,0.06); top: 40%; left: 40%; }

.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,212,255,0.08);
  border: 1px solid var(--bg-border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,212,255,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,212,255,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Wizard Orb Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wizard-orb-wrapper {
  position: relative;
  width: 620px;
  height: 620px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wizard-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.15);
  animation: spin-slow linear infinite;
}
.ring-1 { width: 600px; height: 600px; animation-duration: 30s; border-style: dashed; }
.ring-2 { width: 500px; height: 500px; animation-duration: 20s; animation-direction: reverse; }
.ring-3 { width: 400px; height: 400px; animation-duration: 15s; border-color: rgba(0,255,136,0.1); }
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.wizard-orb {
  width: 480px;
  height: 480px;
  max-width: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(0,212,255,0.15), rgba(0,0,0,0.8));
  border: 1.5px solid rgba(0,212,255,0.3);
  box-shadow: 0 0 80px rgba(0,212,255,0.25), inset 0 0 50px rgba(0,212,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.chart-preview {
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chart-svg { width: 100%; height: auto; }
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02), transparent);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: rgba(0,212,255,0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,212,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.feature-card p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  padding: 100px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 80px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), rgba(0,212,255,0.2), var(--accent));
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.step-connector { display: none; }
.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(0,212,255,0.06);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 240px;
}

/* Feature Highlight */
.feature-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  overflow: hidden;
}
.highlight-visual { position: relative; }
.chart-mockup {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--bg-border);
  background: #060b14;
}
.chart-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--bg-border);
}
.chart-dots { display: flex; gap: 5px; }
.chart-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--text-muted);
}
.chart-title-text { font-size: 0.72rem; color: var(--text-muted); font-family: monospace; }
.chart-body { padding: 12px; }
.highlight-content .section-label { text-align: left; }
.highlight-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}
.highlight-content p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02), transparent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(0,212,255,0.06), var(--bg-card));
  box-shadow: 0 0 40px rgba(0,212,255,0.12);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}
.price-currency { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); }
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}
.price-period { font-size: 0.85rem; color: var(--text-muted); margin-left: 4px; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-secondary);
}
.pricing-card--guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0,212,255,0.04);
  border-color: rgba(0,212,255,0.2);
  padding: 40px 24px;
}
.guarantee-icon { margin-bottom: 16px; }
.pricing-card--guarantee h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.pricing-card--guarantee p {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: 100px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[data-open="true"] { border-color: rgba(0,212,255,0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--accent);
}
.faq-item[data-open="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item[data-open="true"] .faq-answer { max-height: 200px; padding-bottom: 4px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02), transparent);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: #ffd700;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), rgba(0,212,255,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg-deep);
  flex-shrink: 0;
}
.author-avatar--pink { background: linear-gradient(135deg, #ff6eb4, #ff4466); color: #fff; }
.author-avatar--green { background: linear-gradient(135deg, #00ff88, #00cc66); color: var(--bg-deep); }
.author-name { display: block; font-weight: 600; font-size: 0.9rem; }
.author-role { display: block; font-size: 0.78rem; color: var(--text-muted); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 { width: 400px; height: 400px; background: rgba(0,212,255,0.07); top: -100px; left: 20%; filter: blur(80px); border-radius: 50%; position: absolute; }
.orb-cta-2 { width: 300px; height: 300px; background: rgba(0,255,136,0.05); bottom: -80px; right: 20%; filter: blur(80px); border-radius: 50%; position: absolute; }
.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  max-width: 800px;
  margin: 0 auto;
}
.contact-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}
.contact-detail a { color: var(--accent); transition: opacity var(--transition); }
.contact-detail a:hover { opacity: 0.75; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; }
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-success {
  display: none;
  text-align: center;
  color: var(--green);
  font-size: 0.9rem;
  padding: 10px;
  background: rgba(0,255,136,0.07);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,255,136,0.2);
}
.form-success.visible { display: block; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--bg-border);
  background: rgba(0,0,0,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.87rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,212,255,0.05);
}
.footer-bottom {
  border-top: 1px solid var(--bg-border);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  /* Wizard-Bild auf Mobile sichtbar – kompakter */
  .hero-visual {
    display: flex;
    order: 2;                 /* Bild kommt UNTER den Text */
    margin: 0 auto;
  }
  .wizard-orb-wrapper {
    width: 320px;
    height: 320px;
  }
  .ring-1 { width: 310px; height: 310px; }
  .ring-2 { width: 260px; height: 260px; }
  .ring-3 { width: 210px; height: 210px; }
  .wizard-orb {
    width: 240px;
    height: 240px;
  }
  .hero-scroll { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }

  .feature-highlight { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
  .highlight-content .section-label { text-align: center; }
  .highlight-content h2 { text-align: center; }
  .highlight-content p { text-align: center; }
  .check-list { align-items: center; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  /* Bild auf sehr schmalen Geräten noch etwas kleiner */
  .wizard-orb-wrapper { width: 260px; height: 260px; }
  .ring-1 { width: 250px; height: 250px; }
  .ring-2 { width: 210px; height: 210px; }
  .ring-3 { width: 170px; height: 170px; }
  .wizard-orb { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

.howitworks-cta {
  text-align: center;
  max-width: 720px;
  margin: 48px auto 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  padding: 18px 24px;
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

/* ============================================ */
/* ====== ANLEITUNG / GUIDE SECTION =========== */
/* ============================================ */
.guide-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.025), transparent);
  position: relative;
}
.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.65;
}
.guide-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}
.guide-block:last-child { margin-bottom: 0; }
.guide-block--reverse { grid-template-columns: 1fr 1.1fr; }
.guide-block--reverse .guide-image,
.guide-block--reverse .guide-filter-visual,
.guide-block--reverse .guide-prognose-visual { order: 2; }
.guide-block--reverse .guide-content { order: 1; }

.guide-image {
  position: relative;
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: 0 30px 80px rgba(0,212,255,0.08), 0 0 0 1px rgba(0,212,255,0.05);
}
.guide-image img {
  width: 100%;
  height: auto;
  display: block;
}
.guide-image-caption {
  padding: 12px 18px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--bg-border);
  background: rgba(0,0,0,0.3);
  font-family: var(--font-body);
}

.guide-content { padding: 8px 0; }
.guide-step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 6px 14px;
  border: 1px solid rgba(0,212,255,0.3);
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(0,212,255,0.06);
}
.guide-content h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.guide-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}
.guide-note {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-tertiary, #8a8a8a);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.guide-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.guide-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.tag-green { background: rgba(0,255,136,0.12); color: #00ff88; }
.tag-yellow { background: rgba(255,200,40,0.12); color: #ffc828; }
.tag-red { background: rgba(255,68,102,0.12); color: #ff4466; }

.guide-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.guide-stat {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  padding: 14px 16px;
}
.guide-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.guide-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.guide-stat-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Filter visual */
.guide-filter-visual { display: flex; justify-content: center; }
.filter-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,212,255,0.08);
}
.filter-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bg-border);
}
.filter-dot {
  width: 8px; height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.filter-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}
.filter-row:last-of-type { border-bottom: none; }
.filter-label {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.filter-pill {
  background: rgba(0,212,255,0.1);
  color: var(--accent);
  border: 1px solid rgba(0,212,255,0.25);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
}
.filter-result {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--bg-border);
  font-size: 0.92rem;
  color: #00ff88;
  font-weight: 500;
}

/* Prognose visual */
.guide-prognose-visual { display: flex; justify-content: center; }
.prognose-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0,212,255,0.08);
}
.prognose-header {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bg-border);
}
.prognose-grid { display: flex; flex-direction: column; gap: 8px; }
.prognose-row {
  display: grid;
  grid-template-columns: 28px 1fr 64px;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
}
.prognose-row > span:first-child {
  font-family: var(--font-display);
  color: var(--text-secondary);
  font-weight: 600;
}
.bar-track {
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  transition: width 0.6s ease;
}
.bar-up {
  background: linear-gradient(90deg, rgba(0,212,255,0.6), #00ff88);
  box-shadow: 0 0 10px rgba(0,255,136,0.3);
}
.prognose-row .tag-green {
  text-align: right;
  font-size: 0.82rem;
}
.prognose-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--bg-border);
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
}

/* ============================================ */
/* ====== UPDATED PRICING (4 TIERS) =========== */
/* ============================================ */
.pricing-grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pricing-tagline {
  font-size: 0.88rem;
  color: var(--accent);
  margin: -8px 0 18px;
  font-weight: 500;
}
.pricing-finePrint {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 14px;
  line-height: 1.5;
  font-style: italic;
}
.pricing-badge--alt {
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  color: #001a1a;
}

/* Guarantee banner (replaces guarantee card) */
.guarantee-banner {
  margin-top: 48px;
  padding: 28px 32px;
  background: linear-gradient(120deg, rgba(0,212,255,0.06), rgba(0,255,136,0.04));
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.guarantee-banner .guarantee-icon { margin-bottom: 0; flex-shrink: 0; }
.guarantee-banner .guarantee-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.guarantee-banner .guarantee-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ============================================ */
/* ====== RESPONSIVE FOR NEW SECTIONS ========= */
/* ============================================ */
@media (max-width: 1024px) {
  .pricing-grid--four { grid-template-columns: repeat(2, 1fr); }
  .guide-block,
  .guide-block--reverse { grid-template-columns: 1fr; gap: 32px; }
  .guide-block--reverse .guide-image,
  .guide-block--reverse .guide-filter-visual,
  .guide-block--reverse .guide-prognose-visual { order: 0; }
  .guide-block--reverse .guide-content { order: 0; }
}
@media (max-width: 768px) {
  .pricing-grid--four { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .guide-stats { grid-template-columns: 1fr; }
  .guide-content h3 { font-size: 1.5rem; }
  .guarantee-banner { flex-direction: column; text-align: center; padding: 22px; }
  .guide-section { padding: 64px 0; }
}

/* ============================================ */
/* ====== STEP-LINKS &amp; NAV LOGIN =========== */
/* ============================================ */
.step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s ease;
}
.step-link:hover { gap: 10px; }
.step-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  justify-content: center;
}
.pay-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-login:hover { color: var(--accent); background: rgba(0,212,255,0.06); }
.nav-login--partner {
  color: #ffc828;
}
.nav-login--partner:hover {
  color: #ffd84d;
  background: rgba(255,200,40,0.08);
}
.nav-login--admin {
  color: #ff4466;
  border: 1px solid rgba(255,68,102,0.3);
}
.nav-login--admin:hover {
  color: #ff6680;
  background: rgba(255,68,102,0.08);
  border-color: rgba(255,68,102,0.5);
}

/* Eingeloggt: schlanke Konto-Pill mit Avatar + Name */
.nav-account-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-account-pill:hover {
  background: rgba(0,212,255,0.12);
  border-color: rgba(0,212,255,0.4);
}
.nav-account-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #00ff88);
  color: #001a1a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
}
.nav-user-name {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .nav-actions .nav-login,
  .nav-actions .nav-cta { display: none; }
}

/* Mobile-Menü-Divider */
.mobile-menu-divider {
  height: 1px;
  background: var(--bg-border);
  margin: 8px 0;
  list-style: none;
  padding: 0;
}

/* ============================================ */
/* ====== AUTH (login.html) =========== */
/* ============================================ */
.auth-body {
  background: var(--bg-primary, #06070a);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.auth-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.auth-topbar {
  position: relative;
  z-index: 2;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--bg-border);
  background: rgba(6,7,10,0.7);
  backdrop-filter: blur(10px);
}
.auth-back {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.auth-back:hover { color: var(--accent); }

.auth-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}
.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,212,255,0.12);
  position: relative;
}

.auth-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.auth-tab.is-active {
  background: var(--accent);
  color: #001a1a;
  box-shadow: 0 4px 14px rgba(0,212,255,0.3);
}

.auth-panel { display: none; }
.auth-panel.is-active { display: block; }

.auth-title {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}
.auth-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.55;
}

.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.auth-label > span:first-child {
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}
.auth-hint {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 400;
  opacity: 0.7;
}
.auth-hint em { font-style: normal; color: var(--accent); }
.auth-label input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bg-border);
  color: #fff;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.auth-label input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,212,255,0.04);
}

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  margin: 4px 0;
}
.auth-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  cursor: pointer;
}
.auth-checkbox input { accent-color: var(--accent); }
.auth-checkbox--block {
  display: flex;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 4px;
}
.auth-checkbox a { color: var(--accent); text-decoration: underline; }
.auth-link-small {
  color: var(--accent);
  font-size: 0.85rem;
  text-decoration: none;
}
.auth-link-small:hover { text-decoration: underline; }

.auth-divider {
  text-align: center;
  margin: 22px 0;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.82rem;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 38%;
  height: 1px;
  background: var(--bg-border);
}
.auth-divider::before { left: 0; }
.auth-divider::after { right: 0; }

.auth-google {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.auth-tv-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  padding: 12px 14px;
  border-radius: 9px;
  margin: 4px 0;
}
.auth-tv-note a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
}
.auth-tv-note a:hover { text-decoration: underline; }

.auth-finePrint {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 18px;
  line-height: 1.5;
}

.auth-msg {
  font-size: 0.88rem;
  padding: 10px 12px;
  border-radius: 8px;
  display: none;
}
.auth-msg--info {
  display: block;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  color: var(--accent);
}
.auth-msg--error {
  display: block;
  background: rgba(255,68,102,0.08);
  border: 1px solid rgba(255,68,102,0.3);
  color: #ff4466;
}

.auth-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  border-top: 1px solid var(--bg-border);
}
.auth-footer a {
  color: var(--text-secondary);
  text-decoration: none;
  margin: 0 4px;
}
.auth-footer a:hover { color: var(--accent); }

/* ============================================ */
/* ====== ACCOUNT (account.html) =========== */
/* ============================================ */
.auth-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.auth-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.account-main {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 56px 0 80px;
}
.account-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-border);
}
.account-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}
.account-subtitle {
  color: var(--text-secondary);
  margin: 0;
}
.account-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.3);
  color: #00ff88;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.acct-stat {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 18px 20px;
}
.acct-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.acct-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.acct-stat-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.account-section { margin-bottom: 40px; }
.account-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.account-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.account-plan {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.account-plan-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.account-plan-row p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.account-plan--danger {
  border-color: rgba(255,68,102,0.25);
  background: linear-gradient(160deg, rgba(255,68,102,0.04), var(--bg-card));
}
.btn-danger {
  background: rgba(255,68,102,0.08);
  color: #ff6680;
  border: 1px solid rgba(255,68,102,0.4);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}
.btn-danger:hover {
  background: rgba(255,68,102,0.15);
  border-color: rgba(255,68,102,0.7);
}

.account-tv {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.account-tv strong {
  font-family: var(--font-display);
  font-size: 1rem;
}
.account-mute {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 460px;
}

.account-table {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  overflow: hidden;
}
.account-table-row {
  display: grid;
  grid-template-columns: 130px 1fr 100px 100px 90px;
  gap: 12px;
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--bg-border);
  align-items: center;
}
.account-table-row:last-child { border-bottom: none; }
.account-table-head {
  background: rgba(255,255,255,0.025);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  font-weight: 500;
}
.account-link-small {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
}
.account-link-small:hover { text-decoration: underline; }

.account-help {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.account-help a { color: var(--accent); text-decoration: none; }
.account-help a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .account-stats { grid-template-columns: repeat(2, 1fr); }
  .account-plan-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .auth-card { padding: 26px; }
  .account-table-row { grid-template-columns: 1fr 1fr; gap: 6px; padding: 12px 16px; }
  .account-table-head { display: none; }
  .account-table-row > span:nth-child(2) { grid-column: 1 / -1; font-weight: 500; }
  .account-stats { grid-template-columns: 1fr; }
  .auth-topbar { flex-direction: column; gap: 12px; padding: 14px 18px; }
}

/* ============================================ */
/* ====== REVIEWS / RATINGS =================== */
/* ============================================ */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 28px;
  background: linear-gradient(120deg, rgba(0,212,255,0.05), rgba(0,255,136,0.03));
  border: 1px solid rgba(0,212,255,0.18);
  border-radius: 14px;
  margin-bottom: 28px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.reviews-avg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.reviews-avg-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.reviews-avg-stars {
  color: #ffc828;
  font-size: 1rem;
  letter-spacing: 0.08em;
}
.reviews-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  flex: 1;
  min-width: 140px;
}
.reviews-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Eligibility Gate */
.reviews-gate {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  margin: 0 auto 28px;
  max-width: 720px;
  background: rgba(255,200,40,0.05);
  border: 1px solid rgba(255,200,40,0.25);
  border-radius: 12px;
  flex-wrap: wrap;
}
.reviews-gate-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,200,40,0.1);
  border-radius: 50%;
  color: #ffc828;
  flex-shrink: 0;
}
.reviews-gate-text {
  flex: 1;
  min-width: 220px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}
.reviews-gate-actions { flex-shrink: 0; }

/* Review Form */
.review-form {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  padding: 24px;
  max-width: 720px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-form-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}
.review-stars-picker {
  display: inline-flex;
  gap: 4px;
}
.review-stars-picker button {
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.15);
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.15s ease, transform 0.15s ease;
  line-height: 1;
}
.review-stars-picker button:hover { transform: scale(1.1); }
.review-stars-picker button.is-active { color: #ffc828; }

.review-form textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bg-border);
  color: #fff;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.review-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,212,255,0.04);
}

.review-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.review-form-charcount {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.review-form-actions {
  display: flex;
  gap: 10px;
}
.review-form-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

/* Delete button on cards */
.review-delete {
  margin-left: auto;
  background: rgba(255,68,102,0.08);
  border: 1px solid rgba(255,68,102,0.25);
  color: #ff6680;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.review-delete:hover {
  background: rgba(255,68,102,0.18);
  border-color: rgba(255,68,102,0.6);
}
.testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .author-info { flex: 1; min-width: 0; }

/* Empty state */
.reviews-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-secondary);
  font-style: italic;
  border: 1px dashed var(--bg-border);
  border-radius: 12px;
}

/* Demo Toggle */
.reviews-demo {
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
}
.reviews-demo details {
  display: inline-block;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  padding: 10px 16px;
  text-align: left;
  max-width: 100%;
}
.reviews-demo summary {
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 500;
  list-style: none;
  user-select: none;
}
.reviews-demo summary::-webkit-details-marker { display: none; }
.reviews-demo summary::before {
  content: '⚙ ';
  margin-right: 6px;
}
.reviews-demo-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.reviews-demo-buttons button {
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent);
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: var(--font-body);
}
.reviews-demo-buttons button:hover {
  background: rgba(0,212,255,0.15);
  border-color: rgba(0,212,255,0.45);
}
.reviews-demo-note {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .reviews-summary { padding: 18px 20px; gap: 14px; flex-direction: column; text-align: center; }
  .reviews-meta { text-align: center; }
  .review-form-row { flex-direction: column; align-items: stretch; }
  .review-form-actions { justify-content: stretch; }
  .review-form-actions .btn { flex: 1; }
}

/* ============================================ */
/* ====== LEGAL PAGES (Impressum, AGB, etc.) == */
/* ============================================ */
.legal-main {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 56px 24px 80px;
}
.legal-container {
  max-width: 760px;
  margin: 0 auto;
}
.legal-header {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--bg-border);
}
.legal-header .section-label {
  margin-bottom: 14px;
}
.legal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.2;
}
.legal-subtitle {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

.legal-disclaimer {
  background: rgba(255,200,40,0.06);
  border: 1px solid rgba(255,200,40,0.25);
  border-left: 4px solid #ffc828;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.legal-disclaimer strong { color: #ffc828; }

.legal-toc {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 32px;
}
.legal-toc-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 12px;
}
.legal-toc ol {
  margin: 0;
  padding-left: 20px;
  color: var(--text-secondary);
}
.legal-toc li { padding: 3px 0; font-size: 0.9rem; }
.legal-toc a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}
.legal-toc a:hover { color: var(--accent); }

.legal-content {
  color: var(--text-primary, #ddd);
  line-height: 1.7;
  font-size: 0.97rem;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 14px;
  scroll-margin-top: 100px;
  color: #fff;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 10px;
  color: #fff;
}
.legal-content p {
  margin: 0 0 14px;
  color: var(--text-secondary);
}
.legal-content ul, .legal-content ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
  color: var(--text-secondary);
}
.legal-content li { padding: 4px 0; line-height: 1.6; }
.legal-content strong { color: #fff; font-weight: 600; }
.legal-content a {
  color: var(--accent);
  text-decoration: none;
}
.legal-content a:hover { text-decoration: underline; }
.legal-content code,
.legal-placeholder {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent);
  padding: 1px 7px;
  border-radius: 4px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.85em;
}
.legal-content blockquote {
  margin: 18px 0;
  padding: 14px 20px;
  background: rgba(255,255,255,0.025);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.93rem;
}
.legal-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--bg-border);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 768px) {
  .legal-title { font-size: 1.6rem; }
  .legal-content h2 { font-size: 1.2rem; }
  .legal-main { padding: 36px 18px 60px; }
}

/* ============================================ */
/* ====== PARTNERS PUBLIC PAGE ================ */
/* ============================================ */
.partner-container { max-width: 920px; }

.dev-card {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, rgba(0,212,255,0.04), var(--bg-card) 60%);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
/* Subtiler Glow-Hauch hinten */
.dev-card::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0,212,255,0.10), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.dev-card > * { position: relative; z-index: 1; }

.dev-photo {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-card);
  position: relative;
  /* Eleganter Doppel-Glow statt dicker Border */
  box-shadow:
    0 0 0 1px rgba(0,212,255,0.35),
    0 0 0 6px rgba(0,212,255,0.06),
    0 12px 36px rgba(0,212,255,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.dev-photo:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(0,212,255,0.5),
    0 0 0 8px rgba(0,212,255,0.08),
    0 16px 44px rgba(0,212,255,0.25);
}
.dev-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.2);
  transition: transform 0.5s ease;
  filter: contrast(1.05) saturate(1.05);
}
.dev-photo:hover img { transform: scale(1.28); }

.dev-info { flex: 1; min-width: 0; }
.dev-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 999px;
}
.dev-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin: 8px 0 2px;
  line-height: 1.2;
  color: #fff;
}
.dev-role {
  color: var(--text-secondary);
  margin: 0 0 10px;
  font-size: 0.88rem;
}
.dev-bio {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.92rem;
  margin: 0 0 12px;
  max-width: 540px;
}
.dev-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dev-socials a {
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
  border: 1px solid rgba(0,212,255,0.25);
  padding: 4px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.dev-socials a:hover {
  background: rgba(0,212,255,0.1);
}

.partners-section {
  margin-bottom: 48px;
}
.partners-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}
.partners-sub {
  color: var(--text-secondary);
  margin: 0 0 24px;
  font-size: 0.95rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.partner-card:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,212,255,0.1);
}
.partner-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
}
.partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.partner-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.partner-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}
.partner-subs {
  font-size: 0.78rem;
  color: var(--accent);
  background: rgba(0,212,255,0.08);
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 500;
}
.partner-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 6px;
}
.partner-bio {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;
}
.partner-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 8px;
  transition: background 0.2s ease;
}
.partner-link:hover {
  background: rgba(0,212,255,0.08);
}

.partners-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 24px;
  color: var(--text-secondary);
  font-style: italic;
  border: 1px dashed var(--bg-border);
  border-radius: 12px;
}

/* Partner CTA */
.partner-cta {
  background: linear-gradient(160deg, rgba(0,212,255,0.06), rgba(0,255,136,0.03));
  border: 1px solid rgba(0,212,255,0.25);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
}
.partner-cta-inner { max-width: 600px; margin: 0 auto; }
.partner-cta h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}
.partner-cta p {
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 16px;
}
.partner-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  text-align: left;
}
.partner-cta-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.partner-cta-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #00ff88;
  font-weight: 700;
}
.partner-cta-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.partner-cta-login {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.partner-cta-login a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

/* ============================================ */
/* ====== PARTNER LOGIN / DASHBOARD =========== */
/* ============================================ */
.partner-badge-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255,200,40,0.08);
  color: #ffc828;
  border: 1px solid rgba(255,200,40,0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

/* Reflink Box */
.reflink-box {
  display: flex;
  gap: 10px;
  align-items: stretch;
  flex-wrap: wrap;
}
.reflink-input {
  flex: 1;
  min-width: 240px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  color: var(--accent);
  padding: 12px 14px;
  border-radius: 9px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.92rem;
}
.reflink-hint {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.acct-stat--highlight {
  background: linear-gradient(160deg, rgba(0,212,255,0.06), var(--bg-card));
  border-color: rgba(0,212,255,0.3);
}

/* Admin */
.admin-pill {
  background: linear-gradient(90deg, #00ff88, #00d4ff);
  color: #001a1a;
  border: none;
}
.admin-partners-table .account-table-row,
.admin-table-head {
  grid-template-columns: 1.6fr 1fr 70px 70px 90px 1.2fr 90px;
}
.admin-pending-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.admin-pending-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.admin-pending-card a {
  color: var(--accent);
  text-decoration: none;
}
.admin-pending-actions {
  display: flex;
  gap: 8px;
}

@media (max-width: 768px) {
  .dev-card {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 22px;
  }
  .dev-photo {
    margin: 0 auto;
    width: 120px;
    height: 120px;
  }
  .dev-socials { justify-content: center; }
  .dev-bio { margin-left: auto; margin-right: auto; }
  .partner-cta-list { grid-template-columns: 1fr; }
  .admin-partners-table .account-table-row,
  .admin-table-head {
    grid-template-columns: 1fr 1fr;
  }
  .admin-table-head { display: none; }
  .admin-pending-card { flex-direction: column; align-items: stretch; }
}

/* ============================================ */
/* ====== GOOGLE SIGN-IN ====================== */
/* ============================================ */
.google-signin-container {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.google-signin-container > div { max-width: 100% !important; }
.auth-google-note {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  background: rgba(255,200,40,0.06);
  border: 1px solid rgba(255,200,40,0.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 6px 0 0;
  line-height: 1.55;
}

/* ============================================ */
/* ====== ADMIN CUSTOMERS TABLE =============== */
/* ============================================ */
.admin-customers-table .account-table-row,
.admin-customers-table .admin-table-head {
  grid-template-columns: 1.6fr 1.4fr 0.9fr 1fr 1.4fr 0.8fr;
}
@media (max-width: 768px) {
  .admin-customers-table .account-table-row,
  .admin-customers-table .admin-table-head {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================ */
/* ====== ADMIN DEMO BANNER, STORAGE, TOAST === */
/* ============================================ */
.admin-demo-banner {
  background: rgba(255,68,102,0.06);
  border: 1px solid rgba(255,68,102,0.3);
  border-left: 4px solid #ff4466;
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 32px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.admin-demo-banner strong { color: #ff6680; }
.admin-demo-banner code {
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

.admin-storage-info {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  padding: 22px;
}
.admin-storage-warn {
  background: rgba(255,200,40,0.04);
  border: 1px solid rgba(255,200,40,0.25);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.admin-storage-warn strong { color: #ffc828; }
.admin-storage-warn p { margin: 8px 0; }
.admin-storage-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.admin-storage-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.admin-storage-keys {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.admin-storage-keys summary {
  cursor: pointer;
  user-select: none;
  font-weight: 500;
  padding: 4px 0;
}
.admin-storage-keys summary::-webkit-details-marker { display: none; }
.admin-storage-keys summary::before { content: '▸ '; color: var(--accent); }
.admin-storage-keys[open] summary::before { content: '▾ '; }
.admin-storage-keys ul { margin: 8px 0 4px; padding-left: 20px; }
.admin-storage-keys li { padding: 4px 0; font-size: 0.88rem; }

.admin-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.4);
  color: #00ff88;
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  z-index: 9999;
  box-shadow: 0 20px 50px rgba(0,255,136,0.2);
  animation: toast-in 0.3s ease;
  max-width: 90vw;
}
.admin-toast strong { color: #fff; }
.admin-toast code {
  background: rgba(0,255,136,0.15);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
  color: #fff;
}
@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* ============================================ */
/* ====== PARTNER PROFILE EDIT ================ */
/* ============================================ */
.partner-profile-edit {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 14px;
  padding: 26px;
}

.profile-avatar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.profile-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0,212,255,0.05);
  border: 2px dashed rgba(0,212,255,0.25);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.profile-avatar.has-photo {
  border-style: solid;
  border-color: rgba(0,212,255,0.5);
  box-shadow: 0 0 30px rgba(0,212,255,0.2);
}
.profile-avatar-initial {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(0,212,255,0.5);
}
.profile-upload-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}
.profile-photo-hint {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.profile-form .auth-label { gap: 4px; }
.profile-form textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bg-border);
  color: #fff;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  resize: vertical;
  min-height: 80px;
}
.profile-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,212,255,0.04);
}

.profile-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.profile-form-status {
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex: 1;
  min-width: 200px;
}
.profile-form-status.is-ok { color: #00ff88; }
.profile-form-status.is-error { color: #ff6680; }
.profile-form-status.is-info { color: var(--accent); }

.profile-form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 8px 0 0;
  line-height: 1.55;
}
.profile-form-note svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .partner-profile-edit {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 18px;
  }
  .profile-avatar { width: 140px; height: 140px; }
  .profile-avatar-initial { font-size: 3rem; }
}

/* ============================================ */
/* ====== LANGUAGE SWITCHER =================== */
/* ============================================ */
.lang-switcher {
  position: relative;
  margin-right: 4px;
}
.lang-current {
  background: transparent;
  border: 1px solid var(--bg-border);
  color: var(--text-secondary);
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}
.lang-current:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,212,255,0.05);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  min-width: 160px;
  z-index: 1000;
}
.lang-menu.is-open { display: flex; }
.lang-menu button {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 6px;
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: background 0.15s ease, color 0.15s ease;
}
.lang-menu button:hover {
  background: rgba(0,212,255,0.08);
  color: var(--accent);
}
.lang-menu button.is-active {
  background: rgba(0,212,255,0.12);
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-actions .lang-switcher { display: none; }
}

/* ============================================ */
/* ====== REVIEW ADMIN OVERRIDE FIELDS ======== */
/* ============================================ */
.review-admin-fields {
  background: rgba(255,68,102,0.04);
  border: 1px solid rgba(255,68,102,0.2);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-admin-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #ff6680;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.review-admin-fields input {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bg-border);
  color: #fff;
  padding: 9px 12px;
  border-radius: 7px;
  font-size: 0.9rem;
  font-family: var(--font-body);
}
.review-admin-fields input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,212,255,0.04);
}

/* ============================================ */
/* ====== ADMIN REVIEWS ======================= */
/* ============================================ */
.admin-reviews-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(0,212,255,0.04);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.admin-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.admin-review-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-border);
  border-radius: 10px;
  padding: 16px 18px;
}
.admin-review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.admin-review-stars {
  color: #ffc828;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.admin-review-text {
  color: var(--text-secondary);
  margin: 0 0 12px;
  font-size: 0.93rem;
  line-height: 1.55;
}
.admin-review-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.admin-review-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 0.82rem;
}

/* ============================================ */
/* ====== NAME MINING — HERO + RAIN =========== */
/* ============================================ */

/* Globale Cold-Wallet-Akzentfarbe (überschreibt Cyan da wo gebraucht) */
:root {
  --gold: #f4d03f;
  --gold-soft: #d4a72c;
  --rain-green: #4ee84e;
  --rain-red: #ff5050;
}

.hero--rain {
  background: #050505;
  position: relative;
  overflow: hidden;
  min-height: 720px;
  padding: 120px 0 80px;
}

/* Adressen-Regen Container */
.address-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.rain-col {
  position: absolute;
  top: -100%;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--rain-green);
  white-space: pre;
  line-height: 1.7;
  text-shadow: 0 0 8px rgba(78, 232, 78, 0.25);
  animation: rain-fall linear infinite;
}
.rain-col span.hit {
  color: var(--rain-red);
}
@keyframes rain-fall {
  0%   { transform: translateY(0); }
  100% { transform: translateY(220vh); }
}

/* Vignette für Lesbarkeit der Hero-Mitte */
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(5,5,5,0) 0%, rgba(5,5,5,0.55) 35%, rgba(5,5,5,0.92) 75%, rgba(5,5,5,1) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0) 25%, rgba(5,5,5,0) 75%, rgba(5,5,5,0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-container--center {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-content--center { display: flex; flex-direction: column; align-items: center; gap: 28px; }

.hero-logo {
  width: clamp(280px, 60vw, 480px);
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(244,208,63,0.25));
  animation: logo-float 5s ease-in-out infinite;
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.hero-title--rain {
  font-family: var(--font-display, 'Cinzel', Georgia, serif);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(244,208,63,0.18);
}
.hero-title--rain .gradient-text,
.hero-title--rain span:last-child {
  color: var(--gold);
}

.hero-desc--rain {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d4cdb8;
  max-width: 600px;
  margin: 0 auto;
}

.hero-actions--center { justify-content: center; }
.hero-badges--center { justify-content: center; flex-wrap: wrap; }

/* Buttons im Cold-Wallet-Stil */
.hero--rain .btn-primary {
  background: var(--gold);
  color: #050505;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(244,208,63,0.4);
}
.hero--rain .btn-primary:hover {
  background: #ffd84d;
  box-shadow: 0 8px 32px rgba(244,208,63,0.6);
  transform: translateY(-2px);
}
.hero--rain .btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(244,208,63,0.35);
}
.hero--rain .btn-ghost:hover {
  background: rgba(244,208,63,0.08);
  border-color: var(--gold);
}

/* Trust-Badges im Hero */
.hero--rain .trust-badge {
  background: rgba(244,208,63,0.06);
  border: 1px solid rgba(244,208,63,0.2);
  color: #d4cdb8;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Mobile-Anpassungen */
@media (max-width: 768px) {
  .hero--rain { min-height: 600px; padding: 90px 0 60px; }
  .rain-col { font-size: 11px; }
  .hero-actions--center { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-actions--center .btn { justify-content: center; }
}

/* ============================================================
   ============================================================
      NAME MINING FARM — THEME OVERRIDE
      (überschreibt das Sphere-Trade-Cyber-Theme komplett)
   ============================================================
   ============================================================ */

/* Google Fonts: Cinzel für Premium-Headlines + Outfit für Fließtext (Variante A — elegant) */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Cold-Wallet Farb-Palette (von der App) */
  --bg-primary:    #050505;
  --bg-secondary:  #0d0d0d;
  --bg-card:       #111111;
  --bg-border:     rgba(244, 208, 63, 0.12);

  --text-primary:   #ffffff;
  --text-secondary: #c0bda0;
  --text-tertiary:  #6a6855;

  /* Akzente — alle aus der App */
  --gold:        #f4d03f;
  --gold-bright: #ffd84d;
  --gold-soft:   #d4a72c;
  --orange:      #ff8c1a;
  --orange-soft: #ffa540;
  --rain-green:  #4ee84e;
  --rain-red:    #ff5050;
  --btc-blue:    #00b8e6;
  --warn-red:    #d63131;

  /* Override Sphere-Trade Cyan */
  --accent: var(--gold);

  /* Typography — Variante A: elegant, premium */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body:    'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'SF Mono', Menlo, Consolas, monospace;
}

body {
  background: var(--bg-primary) !important;
  color: var(--text-primary);
  font-family: var(--font-body);
}

/* === NAVBAR === */
.navbar {
  background: rgba(5, 5, 5, 0.75) !important;
  border-bottom: 1px solid rgba(244, 208, 63, 0.15);
  backdrop-filter: blur(14px);
}
.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95) !important;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  height: 48px;
}
.nav-logo .logo-icon { display: none; }  /* altes SVG-Polygon ausblenden */
.nav-logo .logo-text { display: none; }  /* altes Text-Layout ausblenden */
.nav-logo img.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(244, 208, 63, 0.3));
}
.nav-links a { color: var(--text-secondary) !important; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--gold) !important; }

/* === BUTTONS — knallig, cartoony === */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-primary {
  background: var(--gold) !important;
  color: #050505 !important;
  border: 2px solid var(--gold) !important;
  box-shadow: 0 4px 0 var(--gold-soft), 0 8px 24px rgba(244, 208, 63, 0.3) !important;
  text-transform: none;
}
.btn-primary:hover {
  background: var(--gold-bright) !important;
  border-color: var(--gold-bright) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--gold-soft), 0 12px 32px rgba(244, 208, 63, 0.5) !important;
}
.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 0 0 var(--gold-soft), 0 4px 12px rgba(244, 208, 63, 0.4) !important;
}
.btn-outline, .btn-ghost {
  background: transparent !important;
  color: var(--gold) !important;
  border: 2px solid rgba(244, 208, 63, 0.4) !important;
}
.btn-outline:hover, .btn-ghost:hover {
  background: rgba(244, 208, 63, 0.08) !important;
  border-color: var(--gold) !important;
}
.btn-danger {
  background: rgba(255, 80, 80, 0.1) !important;
  color: #ff7a7a !important;
  border: 2px solid rgba(255, 80, 80, 0.4) !important;
}
.btn-danger:hover {
  background: rgba(255, 80, 80, 0.2) !important;
  border-color: var(--rain-red) !important;
}

/* === SECTIONS — schwarzer Hintergrund mit dezenten Akzenten === */
.features-strip,
.how-it-works,
.guide-section,
.pricing,
.faq-section,
.testimonials,
.contact-section {
  background: var(--bg-primary) !important;
  border-top: 1px solid rgba(244, 208, 63, 0.08);
}

.section-label {
  font-family: var(--font-display);
  color: var(--gold) !important;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-display);
  color: #ffffff !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;  /* Bubblegum Sans hat nur weight 400 */
  letter-spacing: 0.02em;
}

/* === FEATURE CARDS — bunt + cartoony === */
.feature-card {
  background: var(--bg-card) !important;
  border: 2px solid rgba(244, 208, 63, 0.15) !important;
  border-radius: 16px !important;
  padding: 28px !important;
  transition: all 0.3s ease;
}
.feature-card:hover {
  border-color: var(--gold) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(244, 208, 63, 0.2);
}
.feature-icon {
  background: rgba(244, 208, 63, 0.08);
  border: 2px solid rgba(244, 208, 63, 0.3);
  border-radius: 12px;
  padding: 14px;
  display: inline-flex;
}
.feature-icon svg path,
.feature-icon svg circle,
.feature-icon svg rect,
.feature-icon svg line { stroke: var(--gold) !important; }
.feature-card h3 {
  font-family: var(--font-display);
  color: var(--gold) !important;
  font-size: 1.35rem;
}
.feature-card p { color: var(--text-secondary) !important; }

/* === PRICING CARDS === */
.pricing-card {
  background: var(--bg-card) !important;
  border: 2px solid rgba(244, 208, 63, 0.18) !important;
  border-radius: 18px !important;
}
.pricing-card:hover { border-color: var(--gold) !important; }
.pricing-card--featured {
  background: linear-gradient(160deg, rgba(244, 208, 63, 0.08), var(--bg-card)) !important;
  border-color: var(--gold) !important;
}
.pricing-tier {
  font-family: var(--font-display);
  color: var(--gold) !important;
  font-size: 1.4rem;
}
.price-amount { color: #ffffff !important; }
.price-currency, .price-period { color: var(--text-secondary) !important; }
.pricing-features li { color: var(--text-secondary) !important; }
.pricing-features svg path { stroke: var(--gold) !important; }
.pricing-badge {
  background: var(--gold) !important;
  color: #050505 !important;
  font-weight: 600;
  font-family: var(--font-body);
}

/* === FAQ === */
.faq-item {
  background: var(--bg-card) !important;
  border: 2px solid rgba(244, 208, 63, 0.12) !important;
  border-radius: 12px !important;
}
.faq-item[data-open="true"] { border-color: var(--gold) !important; }
.faq-question { color: var(--text-primary) !important; }
.faq-question:hover { color: var(--gold) !important; }
.faq-answer p { color: var(--text-secondary) !important; }

/* === REVIEWS === */
.testimonial-card {
  background: var(--bg-card) !important;
  border: 2px solid rgba(244, 208, 63, 0.12) !important;
  border-radius: 14px !important;
}
.testimonial-stars { color: var(--gold) !important; }
.testimonial-text { color: var(--text-secondary) !important; font-style: italic; }
.author-avatar {
  background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
  color: #050505 !important;
  font-weight: 600;
}
.author-name { color: var(--text-primary) !important; }
.author-role { color: var(--text-tertiary) !important; }

/* === REVIEW FORM === */
.review-form {
  background: var(--bg-card) !important;
  border: 2px solid rgba(244, 208, 63, 0.15) !important;
}
.review-form textarea,
.review-stars-picker button { color: var(--text-primary) !important; }
.review-form textarea:focus { border-color: var(--gold) !important; background: rgba(244,208,63,0.04) !important; }
.review-stars-picker button.is-active { color: var(--gold) !important; }

/* === STEPS === */
.step {
  background: var(--bg-card) !important;
  border: 2px solid rgba(244, 208, 63, 0.15) !important;
  border-radius: 18px !important;
}
.step-number {
  background: var(--gold) !important;
  color: #050505 !important;
  font-family: var(--font-display);
}
.step h3 { color: var(--gold) !important; font-family: var(--font-display); }
.step p { color: var(--text-secondary) !important; }
.step-link { color: var(--gold) !important; }
.step-icon svg path,
.step-icon svg circle,
.step-icon svg rect,
.step-icon svg line { stroke: var(--gold) !important; }

/* === CONTACT FORM === */
.contact-form input,
.contact-form textarea {
  background: var(--bg-card) !important;
  border: 2px solid rgba(244, 208, 63, 0.2) !important;
  color: var(--text-primary) !important;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold) !important;
  background: rgba(244, 208, 63, 0.04) !important;
}
.contact-detail svg rect,
.contact-detail svg path { stroke: var(--gold) !important; }
.contact-detail a { color: var(--gold) !important; }

/* === FOOTER === */
.footer {
  background: #000000 !important;
  border-top: 2px solid rgba(244, 208, 63, 0.2);
}
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--gold) !important;
  font-size: 1.1rem;
}
.footer-col a { color: var(--text-secondary) !important; }
.footer-col a:hover { color: var(--gold) !important; }
.footer-brand p { color: var(--text-tertiary) !important; }

/* === GUIDE / ANLEITUNG === */
.guide-card,
.guide-step,
.guide-image-card {
  background: var(--bg-card) !important;
  border: 2px solid rgba(244, 208, 63, 0.15) !important;
  border-radius: 16px !important;
}
.guide-step-num {
  background: var(--gold) !important;
  color: #050505 !important;
  font-family: var(--font-display);
}

/* === LANGUAGE SWITCHER === */
.lang-current {
  background: rgba(244, 208, 63, 0.08) !important;
  color: var(--gold) !important;
  border: 1px solid rgba(244, 208, 63, 0.25) !important;
}
.lang-menu {
  background: var(--bg-card) !important;
  border: 2px solid rgba(244, 208, 63, 0.2) !important;
}
.lang-menu button:hover { background: rgba(244, 208, 63, 0.1) !important; color: var(--gold) !important; }
.lang-menu button.is-active { background: rgba(244, 208, 63, 0.15) !important; color: var(--gold) !important; }

/* === ACCOUNT-PILL / NAV-LOGIN === */
.nav-account-pill {
  background: rgba(244, 208, 63, 0.08) !important;
  border: 1px solid rgba(244, 208, 63, 0.3) !important;
}
.nav-account-pill:hover {
  background: rgba(244, 208, 63, 0.15) !important;
  border-color: var(--gold) !important;
}
.nav-account-avatar {
  background: linear-gradient(135deg, var(--gold), var(--orange)) !important;
  color: #050505 !important;
}
.nav-user-name { color: var(--gold) !important; }
.nav-login { color: var(--text-secondary) !important; }
.nav-login:hover { color: var(--gold) !important; background: rgba(244, 208, 63, 0.06) !important; }
.nav-login--partner { color: var(--orange) !important; }
.nav-login--partner:hover {
  color: var(--orange-soft) !important;
  background: rgba(255, 140, 26, 0.08) !important;
}

/* === GRADIENT TEXT (für Hero-Highlight) === */
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
}

/* === MOBILE MENU === */
.mobile-menu {
  background: rgba(5, 5, 5, 0.97) !important;
}
.mobile-menu a { color: var(--text-secondary) !important; }
.mobile-menu a:hover { color: var(--gold) !important; }
.mobile-menu-divider { background: rgba(244, 208, 63, 0.2) !important; }
.hamburger span { background: var(--gold) !important; }

/* === HERO TITLE — angepasst für die neue Schrift === */
.hero-title--rain {
  font-family: var(--font-display) !important;
  font-weight: 400 !important;  /* Bubblegum Sans hat nur 400 */
  letter-spacing: 0.02em;
}

/* === AUSBLENDEN: alte Sphere-Trade-Elemente die wir nicht mehr brauchen === */
.hero-bg .orb,
.hero-bg .hero-grid,
.hero-bg .particles { display: none !important; }

/* === FOR-IMAGES MIT GOLDENEM GLOW === */
.guide-image img,
.feature-screenshot img {
  border: 2px solid rgba(244, 208, 63, 0.25);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(244, 208, 63, 0.15);
}


/* ===================================================================
   ===== NAME MINING FARM — Sektionen für Cold Wallet (Variante A) =====
   =================================================================== */

/* Hero-Title eleganter machen — kein Bubblegum mehr */
.hero-title--rain {
  font-family: 'Cinzel', Georgia, serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

/* === SECTION-LABEL als Filigree-Pill === */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.45rem 1.2rem;
  border: 1px solid rgba(244, 208, 63, 0.35);
  border-radius: 999px;
  background: rgba(244, 208, 63, 0.04);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 2.5rem;
  font-size: 1.08rem;
  line-height: 1.55;
  text-align: center;
}

/* === DAS PROBLEM === */
.problem-section {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255, 80, 80, 0.06), transparent 70%),
    var(--bg-primary);
  text-align: center;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin: 2.5rem 0;
}
.problem-card {
  background: linear-gradient(180deg, #131313, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.8rem 1.4rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, #ff5050, #d63131);
  opacity: 0.6;
}
.problem-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.problem-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}
.problem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
}
.problem-conclusion {
  max-width: 780px;
  margin: 2rem auto 0;
  padding: 1.6rem 2rem;
  border: 1px solid rgba(244, 208, 63, 0.3);
  border-radius: 14px;
  background: rgba(244, 208, 63, 0.04);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-primary);
}
.problem-conclusion strong { color: var(--gold); }

/* === DIE LÖSUNG === */
.solution-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}
.solution-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 900px) {
  .solution-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.solution-content .section-label { margin-bottom: 1rem; }
.solution-content .section-title { text-align: left; margin-bottom: 1.2rem; }
.solution-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.6rem;
}
.solution-lead strong { color: var(--gold); }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.check-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-primary);
}
.check-list li svg { flex-shrink: 0; margin-top: 2px; }
.check-list li strong { color: var(--gold); }

.solution-visual img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(244, 208, 63, 0.2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(244, 208, 63, 0.08) inset;
}

/* === HOW IT WORKS — 4 Spalten === */
.steps-grid--four {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 1100px) {
  .steps-grid--four { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .steps-grid--four { grid-template-columns: 1fr !important; }
}

/* === COINS-Sektion === */
.coins-section {
  padding: 5rem 0;
  background:
    radial-gradient(900px 350px at 50% 0%, rgba(244, 208, 63, 0.06), transparent 70%),
    var(--bg-primary);
  text-align: center;
}
.coins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1rem;
  margin: 2.5rem 0;
}
.coin-card {
  background: linear-gradient(180deg, #131313, #0a0a0a);
  border: 1px solid rgba(244, 208, 63, 0.18);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.coin-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 208, 63, 0.45);
  box-shadow: 0 14px 36px rgba(244, 208, 63, 0.12);
}
.coin-symbol {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 0.8rem;
  color: #050505;
}
.coin-btc   { background: linear-gradient(135deg, #f7931a, #ffb347); }
.coin-eth   { background: linear-gradient(135deg, #627eea, #8a9efe); }
.coin-bnb   { background: linear-gradient(135deg, #f3ba2f, #ffd84d); }
.coin-matic { background: linear-gradient(135deg, #8247e5, #b48cff); }
.coin-avax  { background: linear-gradient(135deg, #e84142, #ff7a7b); color: #fff; }
.coin-tron  { background: linear-gradient(135deg, #ff060a, #ff4d52); color: #fff; }
.coin-doge  { background: linear-gradient(135deg, #c2a633, #ffd84d); }
.coin-ltc   { background: linear-gradient(135deg, #345d9d, #5e8be8); color: #fff; }
.coin-bch   { background: linear-gradient(135deg, #0ac18e, #4ed4a3); color: #fff; }
.coin-sol   { background: linear-gradient(135deg, #14f195, #9945ff); color: #fff; }
.coin-xrp   { background: linear-gradient(135deg, #00aae4, #00d3ff); color: #fff; }
.coin-xlm   { background: linear-gradient(135deg, #2c2c2c, #5a5a5a); color: #fff; }
.coin-atom  { background: linear-gradient(135deg, #2e3148, #5064fb); color: #fff; }
.coin-evm   {
  background: linear-gradient(135deg, rgba(95,182,255,.2), rgba(167,139,250,.25));
  color: #5fb6ff;
  border: 1px dashed rgba(95,182,255,.6);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.coin-card--evm {
  border: 1px dashed rgba(95,182,255,.35);
  background: linear-gradient(180deg, rgba(95,182,255,.03), rgba(167,139,250,.02));
}
.coin-card--evm h4 { color: #5fb6ff; }

/* === EVM-Box (sub-section unter Coins-Grid) === */
.evm-box {
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
  background: linear-gradient(180deg, rgba(95,182,255,.03), rgba(167,139,250,.02));
  border: 1px solid rgba(95,182,255,.18);
  border-radius: 16px;
}
.evm-head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #5fb6ff;
  margin: 0 0 0.4rem;
  letter-spacing: 0.02em;
}
.evm-head p {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.evm-head p code {
  background: rgba(244,208,63,.08);
  color: #f4d03f;
  padding: 0 0.35rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85em;
}
.evm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem 1rem;
}
.evm-list li {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.2rem;
}
.evm-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #34d399;
  font-weight: 700;
}
@media (max-width: 600px) {
  .evm-box { padding: 1.4rem 1.2rem; }
  .evm-list { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
}
.coin-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.25rem;
}
.coin-meta {
  font-size: 0.78rem;
  color: var(--text-tertiary);
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.coin-addr {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: rgba(244, 208, 63, 0.05);
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  border: 1px dashed rgba(244, 208, 63, 0.2);
  word-break: break-all;
}
.coin-addr strong {
  color: var(--gold);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(244, 208, 63, 0.4);
}
.coins-note {
  max-width: 780px;
  margin: 1.5rem auto 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}
.coins-note strong { color: var(--gold); }

/* === SICHERHEIT === */
.security-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
  text-align: center;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .security-grid { grid-template-columns: 1fr; }
}
.security-card {
  position: relative;
  background: linear-gradient(180deg, #141414, #0b0b0b);
  border: 1px solid rgba(244, 208, 63, 0.18);
  border-radius: 16px;
  padding: 2.4rem 1.8rem 1.8rem;
  text-align: left;
}
.security-num {
  position: absolute;
  top: -18px;
  left: 1.6rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #050505;
  background: linear-gradient(135deg, #ffe89a, #f4d03f);
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
.security-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.6rem;
}
.security-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.97rem;
}

/* === LIVE-DEMO / SCREENSHOTS === */
.demo-section {
  padding: 5rem 0;
  background: var(--bg-primary);
  text-align: center;
}
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .demo-grid { grid-template-columns: 1fr; }
}
.demo-shot {
  background: linear-gradient(180deg, #141414, #0a0a0a);
  border: 1px solid rgba(244, 208, 63, 0.2);
  border-radius: 14px;
  padding: 0.6rem;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.demo-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(244, 208, 63, 0.12);
}
.demo-shot img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
.demo-shot-cap {
  margin-top: 0.7rem;
  padding: 0 0.4rem 0.4rem;
  font-size: 0.86rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* === PRICING — 2 Spalten === */
.pricing-grid--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .pricing-grid--two { grid-template-columns: 1fr; }
}

/* === VERGLEICHS-TABELLE === */
.compare-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}
.compare-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(180deg, #131313, #0a0a0a);
  border-radius: 14px;
  overflow: hidden;
  font-size: 0.95rem;
  border: 1px solid rgba(244, 208, 63, 0.18);
}
.compare-table th, .compare-table td {
  padding: 1rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.compare-table th {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  background: rgba(244, 208, 63, 0.04);
  text-transform: uppercase;
  font-size: 0.78rem;
}
.compare-table td:first-child {
  color: var(--text-secondary);
  font-weight: 500;
}
.th-highlight {
  background: linear-gradient(135deg, rgba(244, 208, 63, 0.18), rgba(255, 140, 26, 0.12)) !important;
  color: var(--gold) !important;
  font-size: 0.86rem !important;
}
.th-pill {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-bright));
  color: #050505;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.td-good { color: #4ee84e; font-weight: 600; }
.td-bad  { color: #ff5050; font-weight: 600; }
.td-mid  { color: #ffb84d; font-weight: 600; }

.compare-table tbody tr:hover {
  background: rgba(244, 208, 63, 0.03);
}

/* === FOOTER & CONTACT — Goldene Akzente statt Cyan === */
.footer {
  background: var(--bg-secondary) !important;
  border-top: 1px solid rgba(244, 208, 63, 0.12) !important;
}
.footer h4 { color: var(--gold) !important; font-family: var(--font-display); }
.footer-bottom { border-top: 1px solid rgba(244, 208, 63, 0.08) !important; }
.footer-socials a:hover { color: var(--gold) !important; }
.contact-detail svg path,
.contact-detail svg rect { stroke: var(--gold) !important; }

/* === REVEAL-Animation falls noch nicht da === */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.reveal.is-visible, .reveal:not(.reveal) { opacity: 1; transform: none; }

/* === FAQ-Akzente in Gold === */
.faq-question { color: #fff !important; font-family: var(--font-display); letter-spacing: 0.02em; }
.faq-question:hover { color: var(--gold) !important; }
.faq-item[data-open="true"] .faq-question { color: var(--gold) !important; }
.faq-icon { color: var(--gold) !important; }

/* === HOWITWORKS-CTA === */
.howitworks-cta {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.howitworks-cta strong { color: var(--gold); }

/* === PAY-PILLS (in Step 1) === */
.pay-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}
.pay-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  background: rgba(244, 208, 63, 0.08);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  border: 1px solid rgba(244, 208, 63, 0.25);
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* === TRUST-Badge in Hero === */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: rgba(244, 208, 63, 0.08);
  border: 1px solid rgba(244, 208, 63, 0.22);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.hero-badges--center {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 1.5rem;
}


/* ===================================================================
   =====   ICE COLD WALLET — finales Theme (Lock-Blau aus Logo)   =====
   ===================================================================
   Überschreibt das Gold-Theme komplett.  Cool, klar, modern.
   =================================================================== */

:root {
  /* Lock-Blau-Palette aus dem Cartoon-Logo */
  --bg-primary:    #060912;
  --bg-secondary:  #0b1120;
  --bg-card:       #0f172a;
  --bg-border:     rgba(93, 196, 237, 0.16);

  --text-primary:   #ffffff;
  --text-secondary: #a8b5cc;
  --text-tertiary:  #5d6b85;

  /* Akzente — Eiskristall-Blau */
  --ice:         #5dc4ed;   /* Hauptblau aus dem Schloss */
  --ice-bright:  #7fdcfa;   /* Highlight-Blau */
  --ice-deep:    #2e8fc4;   /* dunkler Akzent */
  --electric:    #00e5ff;   /* Glow / Neon */
  --warm:        #ff9747;   /* warmer Kontrast (sparsam) */
  --hit-red:     #ff5b6c;   /* für Highlights / Vanity */
  --ok-green:    #4ed8a0;   /* Erfolg */

  /* Override Sphere-Trade Cyan-Variable */
  --accent: var(--ice) !important;
  --gold: var(--ice) !important;
  --gold-bright: var(--ice-bright) !important;
  --gold-soft: var(--ice-deep) !important;
  --orange: var(--electric) !important;

  /* Typography — Outfit für Body, Cinzel nur als seltener Akzent */
  --font-display: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  --font-body:    'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

body { background: var(--bg-primary) !important; color: var(--text-primary); }

/* ---------- HERO — clean & klein, KEIN Regen mehr ---------- */
.hero,
.hero--rain,
.hero--ice {
  background: var(--bg-primary) !important;
  position: relative;
  overflow: hidden;
  min-height: auto !important;
  padding: clamp(80px, 12vh, 130px) 0 clamp(50px, 8vh, 80px) !important;
}

/* Adressen-Regen komplett ausblenden, falls noch irgendwo */
.address-rain, .rain-col { display: none !important; }
.hero-vignette { display: none !important; }

/* Sanfter blauer Hintergrund-Glow — viel ruhiger als Regen */
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 500px at 50% 30%, rgba(93, 196, 237, 0.18), transparent 60%),
    radial-gradient(900px 400px at 50% 100%, rgba(0, 229, 255, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* feines Grid für Tiefe */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 196, 237, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 196, 237, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.hero-container--center {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hero-content--center {
  display: flex; flex-direction: column; align-items: center;
  gap: clamp(18px, 3vh, 28px);
}

/* Logo deutlich kleiner und subtiler */
.hero-logo {
  width: clamp(180px, 32vw, 280px) !important;
  height: auto;
  filter: drop-shadow(0 10px 35px rgba(93, 196, 237, 0.35)) !important;
  animation: logo-float 6s ease-in-out infinite;
}

/* Hero-Titel — sauber, mixed-case, Outfit Bold */
.hero-title,
.hero-title--rain,
.hero-title--ice {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem) !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  margin: 0 !important;
  color: var(--text-primary);
  text-shadow: none !important;
  max-width: 820px;
}
.hero-title-line1 {
  display: block;
  color: var(--text-primary);
}
.hero-title-line2 {
  display: block;
  margin-top: 0.4rem;
  background: linear-gradient(135deg, var(--ice-bright), var(--ice));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc,
.hero-desc--rain,
.hero-desc--ice {
  font-size: clamp(0.98rem, 1.4vw, 1.08rem) !important;
  line-height: 1.6 !important;
  color: var(--text-secondary) !important;
  max-width: 640px;
  margin: 0 auto !important;
}
.hero-desc strong { color: var(--text-primary); font-weight: 600; }

/* Buttons — Eis-Blau-Gradient */
.btn-primary,
.hero--rain .btn-primary,
.hero--ice .btn-primary {
  background: linear-gradient(135deg, var(--ice), var(--ice-deep)) !important;
  color: #061522 !important;
  border: none !important;
  font-weight: 600 !important;
  font-family: var(--font-body) !important;
  letter-spacing: 0 !important;
  box-shadow: 0 8px 24px rgba(93, 196, 237, 0.35) !important;
  transition: transform .2s, box-shadow .2s !important;
  text-transform: none !important;
}
.btn-primary:hover,
.hero--rain .btn-primary:hover,
.hero--ice .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(93, 196, 237, 0.55) !important;
  background: linear-gradient(135deg, var(--ice-bright), var(--ice)) !important;
}
.btn-ghost,
.hero--rain .btn-ghost,
.hero--ice .btn-ghost {
  background: transparent !important;
  color: var(--ice-bright) !important;
  border: 1px solid rgba(93, 196, 237, 0.4) !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.btn-ghost:hover,
.hero--rain .btn-ghost:hover,
.hero--ice .btn-ghost:hover {
  background: rgba(93, 196, 237, 0.08) !important;
  border-color: var(--ice-bright) !important;
}

/* Trust-Badges */
.trust-badge,
.hero--rain .trust-badge {
  background: rgba(93, 196, 237, 0.06) !important;
  border: 1px solid rgba(93, 196, 237, 0.2) !important;
  color: var(--text-secondary) !important;
  font-size: 0.86rem !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: 999px !important;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500;
}
.trust-badge svg path,
.trust-badge svg rect,
.trust-badge svg circle { stroke: var(--ice) !important; }

/* Section-Labels — ohne Cinzel-Drama */
.section-label {
  font-family: var(--font-body) !important;
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--ice) !important;
  padding: 0.4rem 1rem !important;
  border: 1px solid rgba(93, 196, 237, 0.3) !important;
  background: rgba(93, 196, 237, 0.04) !important;
}
.section-title {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  font-size: clamp(1.6rem, 3vw, 2.4rem) !important;
  text-transform: none !important;
}

/* Karten / Feature-Cards / Step-Cards / FAQ etc. — Blau statt Gold */
.feature-card, .step, .pricing-card, .problem-card, .security-card,
.coin-card, .demo-shot, .faq-item, .compare-table {
  border-color: rgba(93, 196, 237, 0.14) !important;
}
.feature-card:hover, .coin-card:hover {
  border-color: rgba(93, 196, 237, 0.4) !important;
  box-shadow: 0 14px 38px rgba(93, 196, 237, 0.10) !important;
}
.feature-card svg path,
.feature-card svg rect,
.feature-card svg circle,
.step-icon svg path,
.step-icon svg rect,
.step-icon svg circle,
.pricing-features svg path,
.solution-content svg path,
.solution-content svg circle,
.contact-detail svg path,
.contact-detail svg rect {
  stroke: var(--ice) !important;
}
.solution-content svg circle[fill] { fill: rgba(93, 196, 237, 0.18) !important; }

/* Adress-Coin-Karten: Highlight-Vanity in Eis-Blau */
.coin-addr strong {
  color: var(--ice-bright) !important;
  text-shadow: 0 0 12px rgba(93, 196, 237, 0.5) !important;
}
.coin-addr {
  background: rgba(93, 196, 237, 0.05) !important;
  border-color: rgba(93, 196, 237, 0.22) !important;
}

/* Pricing-Featured-Card */
.pricing-card--featured {
  border-color: rgba(93, 196, 237, 0.55) !important;
  box-shadow: 0 0 0 1px rgba(93, 196, 237, 0.25), 0 30px 60px rgba(93, 196, 237, 0.18) !important;
}
.pricing-badge {
  background: linear-gradient(135deg, var(--ice), var(--ice-deep)) !important;
  color: #061522 !important;
  font-weight: 600 !important;
}

/* Vergleichs-Tabelle — Blau-Highlights */
.th-pill {
  background: linear-gradient(135deg, var(--ice-bright), var(--ice)) !important;
  color: #061522 !important;
}
.th-highlight {
  background: linear-gradient(135deg, rgba(93, 196, 237, 0.18), rgba(0, 229, 255, 0.08)) !important;
  color: var(--ice-bright) !important;
}
.td-good { color: var(--ok-green) !important; }
.td-bad  { color: var(--hit-red) !important; }
.td-mid  { color: #ffb84d !important; }
.compare-table tbody tr:hover { background: rgba(93, 196, 237, 0.04) !important; }

/* Garantie-Banner */
.guarantee-banner {
  border-color: rgba(93, 196, 237, 0.3) !important;
  background: linear-gradient(135deg, rgba(93, 196, 237, 0.06), rgba(0, 229, 255, 0.03)) !important;
}
.guarantee-icon svg path { stroke: var(--ice) !important; }
.guarantee-icon svg text { fill: var(--ice) !important; font-family: 'Outfit' !important; }

/* CTA-Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(93, 196, 237, 0.10), rgba(0, 229, 255, 0.05), var(--bg-primary)) !important;
}
.cta-content h2 {
  background: linear-gradient(135deg, #fff 30%, var(--ice-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar / Footer Links → Blau-Hover */
.nav-links a:hover, .footer a:hover, .mobile-menu a:hover { color: var(--ice-bright) !important; }
.nav-cta { /* erbt Button-Stil */ }
.footer h4 { color: var(--ice-bright) !important; font-family: var(--font-body) !important; }
.nav-account-avatar { background: linear-gradient(135deg, var(--ice), var(--ice-deep)) !important; color: #061522 !important; }
.nav-user-name { color: var(--ice-bright) !important; }

/* FAQ */
.faq-question { font-family: var(--font-body) !important; letter-spacing: 0 !important; }
.faq-question:hover { color: var(--ice-bright) !important; }
.faq-item[data-open="true"] .faq-question { color: var(--ice-bright) !important; }
.faq-icon { color: var(--ice) !important; }

/* Pay-Pills */
.pay-pill {
  background: rgba(93, 196, 237, 0.08) !important;
  color: var(--ice-bright) !important;
  border-color: rgba(93, 196, 237, 0.28) !important;
}

/* Coin-Karten — Symbol-Hintergründe in Brand-Farben behalten, aber Bordüre Eis */
.coin-symbol { box-shadow: 0 0 0 1px rgba(93, 196, 237, 0.15); }

/* Lang-Switcher in Eis-Blau */
.lang-current {
  background: rgba(93, 196, 237, 0.06) !important;
  border-color: rgba(93, 196, 237, 0.25) !important;
  color: var(--ice-bright) !important;
}

/* Mobile-Anpassungen */
@media (max-width: 768px) {
  .hero { padding: 80px 0 40px !important; }
  .hero-logo { width: 160px !important; }
  .hero-title { font-size: clamp(1.5rem, 6vw, 1.9rem) !important; }
  .hero-actions {
    flex-direction: column; align-items: stretch;
    width: 100%; max-width: 320px; margin: 0 auto;
  }
  .hero-actions .btn { justify-content: center; }
}

/* Reveal-Animation: nicht mehr unsichtbar default */
.reveal { opacity: 1 !important; transform: none !important; }


/* ===== HERO — auf volle Desktop-Breite, größere Schrift, sauber gewrappt ===== */
.hero,
.hero--rain,
.hero--ice {
  padding: clamp(60px, 8vh, 110px) 0 clamp(40px, 6vh, 70px) !important;
  min-height: clamp(560px, 78vh, 820px) !important;
  display: flex;
  align-items: center;
}
.hero-container--center {
  max-width: 1200px !important;   /* echte Desktop-Breite */
  width: 100%;
  padding: 0 clamp(20px, 4vw, 60px) !important;
}
.hero-content--center {
  gap: clamp(20px, 3vh, 36px) !important;
}

/* Logo wieder etwas größer, aber nicht erschlagend */
.hero-logo {
  width: clamp(200px, 22vw, 320px) !important;
  margin: 0 auto;
}

/* Hero-Titel: groß auf Desktop, sauber wrap-balanced */
.hero-title,
.hero-title--rain,
.hero-title--ice {
  font-size: clamp(2rem, 5.2vw, 4.4rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.025em !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  text-wrap: balance;
  -webkit-text-wrap: balance;
}
.hero-title-line1 { display: block; }
.hero-title-line2 {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.92em;
  font-weight: 600;
}

.hero-desc,
.hero-desc--rain,
.hero-desc--ice {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem) !important;
  line-height: 1.65 !important;
  max-width: 720px !important;
  text-wrap: pretty;
  -webkit-text-wrap: pretty;
}

/* Button-Reihe auf Desktop nebeneinander */
.hero-actions--center {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-actions--center .btn { padding: 0.85rem 1.6rem !important; font-size: 1.02rem !important; }

/* Trust-Badges-Zeile mit echtem Spacing */
.hero-badges--center {
  margin-top: 0.5rem !important;
  gap: 0.7rem !important;
}

/* Mobile-Anpassung — nur sehr klein extra */
@media (max-width: 640px) {
  .hero { min-height: auto !important; padding: 70px 0 50px !important; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  .hero-logo { width: 160px !important; }
  .hero-actions--center { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-actions--center .btn { width: 100%; justify-content: center; }
}


/* ===================================================================
   ====== HERO 2-Spalten + Wordmark + Adress-Showcase  ======
   =================================================================== */

/* Hero-Container — Split-Layout */
.hero--split {
  padding: clamp(70px, 10vh, 130px) 0 clamp(50px, 7vh, 90px) !important;
  align-items: stretch !important;
}
.hero-container--split {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
@media (max-width: 980px) {
  .hero-container--split { grid-template-columns: 1fr; gap: 40px; }
}

.hero-left  { display: flex; flex-direction: column; gap: clamp(18px, 2.5vh, 26px); align-items: flex-start; text-align: left; }
.hero-right { position: relative; }

@media (max-width: 980px) {
  .hero-left { align-items: center; text-align: center; }
}

/* ====== BRAND-MARK — Cartoon-Wordmark (Fredoka, orange Gradient) ====== */
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 0.95;
  user-select: none;
  cursor: pointer;
}
.brand-mark__main {
  font-family: 'Fredoka', 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #ffd17a 0%, #ff9a2e 35%, #ff6f0a 65%, #d24400 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  /* dicker, dunkler Cartoon-Outline + Drop-Shadow */
  filter:
    drop-shadow(2px 2px 0 #1a0a04)
    drop-shadow(0 6px 12px rgba(255, 124, 26, 0.45));
}
.brand-mark__sub {
  font-family: 'Fredoka', 'Baloo 2', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.3rem);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
  display: inline-block;
}
.brand-mark__sub::first-letter { color: #ff5050; }   /* "C" rot */
/* alternative: rot/blau split — wir lassen "Cold" rot, "Wallet" blau */
.brand-mark__sub {
  background: linear-gradient(90deg, #ff5050 0% 36%, #5dc4ed 36% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(1px 1px 0 #1a0a04);
}
@media (max-width: 980px) {
  .brand-mark { align-items: center; }
}

/* Hero-Titel im Split — kleiner als vorher, weil Wordmark schon präsent ist */
.hero--split .hero-title {
  font-size: clamp(1.7rem, 3.4vw, 2.7rem) !important;
  text-align: left;
  max-width: 580px !important;
  margin: 0 !important;
}
@media (max-width: 980px) {
  .hero--split .hero-title { text-align: center; margin: 0 auto !important; }
}
.hero--split .hero-desc {
  text-align: left;
  margin: 0 !important;
  max-width: 580px;
}
@media (max-width: 980px) {
  .hero--split .hero-desc { text-align: center; margin: 0 auto !important; }
}

.hero--split .hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: flex-start;
}
@media (max-width: 980px) {
  .hero--split .hero-actions { justify-content: center; }
}

.hero--split .hero-badges {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  justify-content: flex-start;
}
@media (max-width: 980px) {
  .hero--split .hero-badges { justify-content: center; }
}

/* ====== ADDRESS SHOWCASE — rechte Spalte ====== */
.hero-right { overflow: hidden; }

.addr-showcase {
  position: relative;
  background: linear-gradient(180deg, #060912 0%, #0b1120 100%);
  border: 1px solid rgba(78, 232, 78, 0.18);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  height: clamp(420px, 64vh, 600px);
  overflow: hidden;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.55),
    inset 0 0 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(93, 196, 237, 0.08);
}
.addr-showcase::before,
.addr-showcase::after {
  content: "";
  position: absolute; left: 0; right: 0; height: 80px;
  pointer-events: none; z-index: 2;
}
.addr-showcase::before {
  top: 0;
  background: linear-gradient(180deg, #060912 0%, transparent 100%);
}
.addr-showcase::after {
  bottom: 0;
  background: linear-gradient(0deg, #060912 0%, transparent 100%);
}

.addr-showcase__label {
  position: absolute; top: 12px; right: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  z-index: 3;
  background: rgba(6, 9, 18, 0.7);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(93, 196, 237, 0.15);
}

/* erste Adresse: kein extra Abstand mehr (Label ist weg) */
.addr-showcase .addr-line:first-of-type {
  margin-top: 0;
}

.addr-line {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  line-height: 1.45;
  color: #4ee84e;
  font-weight: 700;
  background: rgba(78, 232, 78, 0.05);
  border: 1px solid rgba(78, 232, 78, 0.15);
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  margin-bottom: 0.45rem;
  word-break: break-all;
  text-shadow: 0 0 10px rgba(78, 232, 78, 0.4);
  transition: transform .25s, border-color .25s, background .25s;
}
.addr-line strong {
  color: #ff5050;
  font-weight: 800;
  text-shadow: 0 0 14px rgba(255, 80, 80, 0.55);
  letter-spacing: 0.03em;
}
.addr-line:hover {
  transform: translateX(-4px);
  border-color: rgba(78, 232, 78, 0.4);
  background: rgba(78, 232, 78, 0.08);
}

/* SEQUENTIELLES REINFALLEN — jede Adresse fällt von oben in Reihenfolge */
.addr-line {
  opacity: 0;
  transform: translateY(-180px);
  animation: addr-drop 0.65s cubic-bezier(0.18, 0.85, 0.32, 1.15) forwards;
}
/* Reihenfolge: Melanie, Marie, Dominic, Nikita, Nina, Katharina, Family, Danke, Marina, dann Rest */
.addr-line:nth-child(2)  { animation-delay: 0.30s; }   /* Melanie */
.addr-line:nth-child(3)  { animation-delay: 0.65s; }   /* Marie */
.addr-line:nth-child(4)  { animation-delay: 1.00s; }   /* Dominic */
.addr-line:nth-child(5)  { animation-delay: 1.35s; }   /* Nikita */
.addr-line:nth-child(6)  { animation-delay: 1.70s; }   /* Nina */
.addr-line:nth-child(7)  { animation-delay: 2.05s; }   /* Katharina */
.addr-line:nth-child(8)  { animation-delay: 2.40s; }   /* Family */
.addr-line:nth-child(9)  { animation-delay: 2.75s; }   /* Danke */
.addr-line:nth-child(10) { animation-delay: 3.10s; }   /* Marina */
.addr-line:nth-child(11) { animation-delay: 3.45s; }   /* Amelie */
.addr-line:nth-child(12) { animation-delay: 3.75s; }   /* 7777777 */
.addr-line:nth-child(13) { animation-delay: 4.05s; }   /* Money */
.addr-line:nth-child(14) { animation-delay: 4.30s; }   /* SpaceX */
.addr-line:nth-child(15) { animation-delay: 4.55s; }   /* Mining */
.addr-line:nth-child(16) { animation-delay: 4.80s; }   /* Makcim */
.addr-line:nth-child(17) { animation-delay: 5.05s; }   /* Luisa */
.addr-line:nth-child(18) { animation-delay: 5.25s; }   /* Disney */
.addr-line:nth-child(19) { animation-delay: 5.45s; }   /* Binance */
.addr-line:nth-child(20) { animation-delay: 5.65s; }   /* Robyn */
.addr-line:nth-child(21) { animation-delay: 5.85s; }   /* Deutsch */
.addr-line:nth-child(22) { animation-delay: 6.05s; }   /* Amazon */

@keyframes addr-drop {
  0%   { opacity: 0; transform: translateY(-180px) scale(0.92); }
  60%  { opacity: 1; transform: translateY(8px) scale(1.02); }
  85%  { transform: translateY(-3px) scale(1); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Showcase-Höhe an Inhalt anpassen — alle 21 sollen Platz finden */
.addr-showcase {
  height: auto !important;
  min-height: clamp(420px, 64vh, 640px);
  max-height: none;
}

/* Mobile — Showcase kleiner */
@media (max-width: 980px) {
  .addr-showcase { height: 320px; max-width: 540px; margin: 0 auto; }
}
@media (max-width: 540px) {
  .addr-showcase { height: 260px; padding: 1rem 0.8rem; }
}

/* Navbar-Logo darf auch das Cartoon-Logo bleiben oder Wordmark werden — wir lassen Logo.png hier */



/* ===== HERO-Spalten oben gleich anfangen, beide gleich hoch ===== */
.hero-container--split {
  align-items: stretch !important;        /* beide Spalten gleich hoch */
}
.hero-left {
  justify-content: flex-start !important; /* Inhalt oben starten */
  padding-top: 0 !important;
}
.hero-right {
  display: flex;
  align-items: stretch;
}
.hero-right > .addr-showcase {
  width: 100%;
  flex: 1;
  /* gleiche Höhe wie linke Spalte */
}

/* Auf Desktop: Showcase füllt die linke Spalten-Höhe */
@media (min-width: 981px) {
  .addr-showcase {
    min-height: 0 !important;
    height: 100% !important;
  }
}

/* ===== NAVBAR-Logo: Schloss-Icon + Wordmark (statt Logo.png) ===== */
.nav-logo--mark {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}
.nav-lock {
  display: inline-flex;
  filter: drop-shadow(0 2px 6px rgba(93,196,237,0.4));
  flex-shrink: 0;
}
.nav-lock svg { display: block; }

.nav-brand-text {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.nav-brand-text__main {
  font-family: 'Fredoka', 'Baloo 2', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: -0.005em;
  background: linear-gradient(180deg, #ffd17a 0%, #ff9a2e 40%, #ff6f0a 80%, #d24400 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1px 1px 0 #1a0a04) drop-shadow(0 2px 6px rgba(255,124,26,0.35));
}
.nav-brand-text__sub {
  font-family: 'Fredoka', 'Baloo 2', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-top: 3px;
  background: linear-gradient(90deg, #ff5050 0% 38%, #5dc4ed 38% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0.5px 0.5px 0 #1a0a04);
}

@media (max-width: 720px) {
  .nav-brand-text__sub { display: none; }     /* Mobile: nur Hauptzeile */
  .nav-brand-text__main { font-size: 1rem; }
  .nav-lock svg { width: 28px; height: 30px; }
}

/* Footer-Variante etwas größer, da mehr Platz */
.nav-logo--footer .nav-brand-text__main { font-size: 1.25rem; }
.nav-logo--footer .nav-brand-text__sub  { font-size: 0.78rem; }

/* Alte brand-logo image-Klasse — ausblenden falls noch irgendwo */
.brand-logo { display: none !important; }


/* ===================================================================
   ===== APP-PREVIEW — Mac-Window mit Live-Mining-Screenshot =====
   =================================================================== */

.app-preview {
  position: relative;
  padding: clamp(50px, 7vh, 90px) 0 clamp(60px, 8vh, 110px);
  background: var(--bg-primary);
  overflow: hidden;
}
.app-preview-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 360px at 75% 50%, rgba(93, 196, 237, 0.14), transparent 65%),
    radial-gradient(600px 300px at 25% 100%, rgba(0, 229, 255, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.app-preview .container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
}

.app-preview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 980px) {
  .app-preview-grid { grid-template-columns: 1fr; gap: 40px; }
}

.app-preview-text { text-align: left; }
@media (max-width: 980px) { .app-preview-text { text-align: center; } }

.app-preview-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem) !important;
  text-align: left !important;
  margin: 0.6rem 0 1.1rem !important;
  letter-spacing: -0.015em;
}
@media (max-width: 980px) { .app-preview-title { text-align: center !important; } }

.ice-text {
  background: linear-gradient(135deg, var(--ice-bright), var(--ice));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.app-preview-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  max-width: 520px;
}
@media (max-width: 980px) { .app-preview-lead { margin-left: auto; margin-right: auto; } }
.app-preview-lead em {
  font-style: normal;
  color: var(--ice-bright);
  font-weight: 600;
}

.app-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .app-feat-list { grid-template-columns: 1fr; } }
.app-feat-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: linear-gradient(180deg, rgba(93,196,237,0.06), rgba(93,196,237,0.02));
  border: 1px solid rgba(93, 196, 237, 0.18);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  transition: transform .2s, border-color .2s, background .2s;
}
.app-feat-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(93, 196, 237, 0.4);
  background: linear-gradient(180deg, rgba(93,196,237,0.10), rgba(93,196,237,0.03));
}
.app-feat-stat {
  font-family: 'Fredoka', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--ice-bright), var(--ice));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.app-feat-cap {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ====== MAC-WINDOW — der schicke Frame ====== */
.app-preview-visual {
  position: relative;
  perspective: 1200px;
}
.mac-window {
  position: relative;
  background: linear-gradient(180deg, #1a1f2e 0%, #0c1220 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(93, 196, 237, 0.18),
    0 0 60px rgba(93, 196, 237, 0.08);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.mac-window:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
}
.mac-window__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: linear-gradient(180deg, #232838 0%, #1a1f2e 100%);
  border-bottom: 1px solid rgba(93, 196, 237, 0.12);
  position: relative;
}
.mac-dot {
  width: 12px; height: 12px; border-radius: 50%;
  display: inline-block;
  box-shadow: inset 0 -1px 1px rgba(0,0,0,0.25);
}
.mac-dot--red    { background: #ff5f56; }
.mac-dot--yellow { background: #ffbd2e; }
.mac-dot--green  { background: #27c93f; }
.mac-window__title {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
}
.mac-window__img {
  display: block;
  width: 100%;
  height: auto;
}

.app-preview-shadow {
  position: absolute;
  bottom: -28px; left: 8%; right: 8%;
  height: 24px;
  background: radial-gradient(ellipse at center, rgba(93, 196, 237, 0.22), transparent 70%);
  filter: blur(14px);
  z-index: -1;
}

/* leichte Floating-Animation */
.mac-window {
  animation: mac-float 6s ease-in-out infinite;
}
@keyframes mac-float {
  0%, 100% { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(0); }
  50%      { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-6px); }
}
.mac-window:hover { animation-play-state: paused; }

@media (max-width: 980px) {
  .mac-window { transform: none !important; animation: none; }
}

/* ===== Demo-Grid 2-Spalten-Variante (ohne APP.png) ===== */
.demo-grid--two { grid-template-columns: 1fr 1fr !important; max-width: 980px; margin: 2.5rem auto 0; }
@media (max-width: 720px) { .demo-grid--two { grid-template-columns: 1fr !important; } }


/* ===== Demo-Shot-Tags: rote „privat"-Pille und grüne „öffentlich"-Pille ===== */
.demo-shot { position: relative; }
.demo-shot-tag {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.demo-shot-tag--private {
  background: rgba(255, 80, 80, 0.15);
  border: 1px solid rgba(255, 80, 80, 0.45);
  color: #ff8a8a;
}
.demo-shot-tag--public {
  background: rgba(78, 216, 160, 0.13);
  border: 1px solid rgba(78, 216, 160, 0.45);
  color: #6ee9b8;
}
.demo-shot-tag svg { stroke: currentColor; }

.demo-shot--locked img,
.demo-shot--public img {
  border-radius: 8px;
  display: block;
  width: 100%;
}
.demo-shot--locked {
  border: 1px solid rgba(255, 80, 80, 0.18);
}
.demo-shot--public {
  border: 1px solid rgba(78, 216, 160, 0.18);
}
.demo-shot--locked:hover {
  border-color: rgba(255, 80, 80, 0.4);
  box-shadow: 0 18px 50px rgba(255, 80, 80, 0.10);
}
.demo-shot--public:hover {
  border-color: rgba(78, 216, 160, 0.45);
  box-shadow: 0 18px 50px rgba(78, 216, 160, 0.10);
}

.demo-shot-cap strong {
  color: var(--text-primary);
  font-weight: 600;
}

.section-subtitle strong {
  color: var(--ice-bright);
  font-weight: 600;
}


/* ===== Demo-Shot-Karten — Header oben mit Überschrift, Bild unten ===== */
.demo-shot {
  display: flex !important;
  flex-direction: column;
  background: linear-gradient(180deg, #131727, #080b16);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(93, 196, 237, 0.15);
}

.demo-shot-head {
  padding: 1.4rem 1.5rem 1.2rem;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}
.demo-shot-head--private {
  border-bottom: 1px solid rgba(255, 80, 80, 0.18);
  background: linear-gradient(180deg, rgba(255,80,80,0.06) 0%, transparent 100%);
}
.demo-shot-head--public {
  border-bottom: 1px solid rgba(78, 216, 160, 0.18);
  background: linear-gradient(180deg, rgba(78,216,160,0.06) 0%, transparent 100%);
}

/* Tag bleibt jetzt im Header-Flow statt absolute */
.demo-shot-head .demo-shot-tag {
  position: static;
  margin-bottom: 0.7rem;
  top: auto; left: auto;
}

.demo-shot-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.demo-shot-sub {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.demo-shot--locked .demo-shot-sub strong { color: #ff8a8a; font-weight: 600; }
.demo-shot--public .demo-shot-sub strong { color: #6ee9b8; font-weight: 600; }

/* Bild im Frame — Padding drumherum, sauberes Border-Inset */
.demo-shot-frame {
  padding: 0.9rem;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: stretch;
}
.demo-shot-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

/* Hover-Highlights pro Karte */
.demo-shot--locked:hover {
  border-color: rgba(255, 80, 80, 0.45);
  box-shadow: 0 24px 60px rgba(255, 80, 80, 0.12);
  transform: translateY(-3px);
}
.demo-shot--public:hover {
  border-color: rgba(78, 216, 160, 0.5);
  box-shadow: 0 24px 60px rgba(78, 216, 160, 0.12);
  transform: translateY(-3px);
}
.demo-shot { transition: transform .3s, border-color .3s, box-shadow .3s; }



/* ===== Echtes Schloss-Logo aus Logo.png als Navbar/Footer-Icon ===== */
.nav-lock-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(93, 196, 237, 0.45));
  transition: transform 0.3s;
}
.nav-logo:hover .nav-lock-img {
  transform: scale(1.05) rotate(-3deg);
}
.nav-logo--footer .nav-lock-img {
  height: 46px;
}
@media (max-width: 720px) {
  .nav-lock-img { height: 34px; }
}


/* ===================================================================
   ===== APP-TOUR — 3-Spalten mit Pfeilen rund um Screenshot =====
   =================================================================== */

.app-tour {
  position: relative;
  padding: clamp(60px, 8vh, 110px) 0 clamp(70px, 9vh, 130px);
  background: var(--bg-primary);
  overflow: hidden;
}
.app-tour .container {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  text-align: center;
}
.app-tour .section-label,
.app-tour .section-title,
.app-tour .section-subtitle { margin-left: auto; margin-right: auto; }

.tour-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(520px, 760px) minmax(220px, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  align-items: center;
  margin-top: clamp(30px, 5vh, 60px);
}
@media (max-width: 1100px) {
  .tour-grid { grid-template-columns: 1fr; gap: 20px; }
}

.tour-col { display: flex; flex-direction: column; gap: clamp(14px, 2.2vh, 22px); }

/* Callout — Karte mit Nummer + Text + Pfeil */
.tour-callout {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(93,196,237,0.07), rgba(93,196,237,0.02));
  border: 1px solid rgba(93, 196, 237, 0.22);
  border-radius: 14px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  text-align: left;
}
.tour-callout:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 196, 237, 0.5);
  box-shadow: 0 18px 40px rgba(93, 196, 237, 0.14);
}

.tour-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--ice-bright), var(--ice));
  color: #061522;
  box-shadow: 0 4px 12px rgba(93, 196, 237, 0.4), inset 0 -2px 4px rgba(0,0,0,0.15);
}

.tour-callout__body { flex: 1; min-width: 0; }
.tour-callout__body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text-primary);
  margin: 0 0 0.3rem;
  line-height: 1.25;
}
.tour-callout__body p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.tour-callout__body em {
  font-style: normal;
  color: var(--ice-bright);
  font-weight: 600;
  background: rgba(93,196,237,0.1);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

/* Pfeil-Indikator — zeigt Richtung Screenshot */
.tour-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 14px;
  color: var(--ice);
  filter: drop-shadow(0 0 6px rgba(93, 196, 237, 0.6));
  pointer-events: none;
}
.tour-arrow svg { display: block; }
.tour-arrow--right { right: -42px; animation: arrow-pulse-r 2s ease-in-out infinite; }
.tour-arrow--left  { left:  -42px; animation: arrow-pulse-l 2s ease-in-out infinite; }

@keyframes arrow-pulse-r {
  0%, 100% { transform: translate(0, -50%); opacity: 0.7; }
  50%      { transform: translate(6px, -50%); opacity: 1; }
}
@keyframes arrow-pulse-l {
  0%, 100% { transform: translate(0, -50%); opacity: 0.7; }
  50%      { transform: translate(-6px, -50%); opacity: 1; }
}

@media (max-width: 1100px) {
  .tour-arrow { display: none; }
  .tour-callout { max-width: 600px; margin: 0 auto; width: 100%; }
}

/* Mac-Window in der Mitte — leicht schräg + organisches Wackeln (User-Wunsch) */
.tour-screen {
  position: relative;
  perspective: 1400px;
}
.tour-screen .mac-window {
  width: 100%;
  transform-origin: center center;
  animation: tour-wobble 7s ease-in-out infinite;
}
.tour-screen .mac-window:hover {
  animation-play-state: paused;
}

@keyframes tour-wobble {
  0%   { transform: perspective(1400px) rotateY(-3deg)   rotateX(2deg)   rotateZ(0deg)    translateY(0); }
  25%  { transform: perspective(1400px) rotateY(-2.2deg) rotateX(2.4deg) rotateZ(-0.4deg) translateY(-5px); }
  50%  { transform: perspective(1400px) rotateY(-3.7deg) rotateX(1.5deg) rotateZ(0.5deg)  translateY(-8px); }
  75%  { transform: perspective(1400px) rotateY(-2.4deg) rotateX(2.2deg) rotateZ(0.25deg) translateY(-3px); }
  100% { transform: perspective(1400px) rotateY(-3deg)   rotateX(2deg)   rotateZ(0deg)    translateY(0); }
}

@media (max-width: 1100px) {
  .tour-screen .mac-window { animation-duration: 8s; }
  @keyframes tour-wobble {
    0%, 100% { transform: perspective(1400px) rotateY(-1.5deg) rotateX(1deg); }
    50%      { transform: perspective(1400px) rotateY(-2deg)   rotateX(0.6deg) translateY(-4px); }
  }
}



/* ===== HOTSPOTS auf dem App-Screenshot ===== */
.mac-window__inner {
  position: relative;
  display: block;
  line-height: 0;     /* eliminiert kleinen Inline-Abstand unter dem Bild */
}
.mac-window__inner .mac-window__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 0 14px 14px;
}

.hotspot {
  position: absolute;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #061522;
  background: linear-gradient(135deg, var(--ice-bright), var(--ice));
  border: 2px solid #ffffff;
  box-shadow:
    0 0 0 3px rgba(93, 196, 237, 0.28),
    0 3px 10px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  z-index: 5;
  transform: translate(-50%, -50%);
  animation: hotspot-pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hotspot::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--ice);
  border-radius: 50%;
  opacity: 0;
  animation: hotspot-ring 2.4s ease-out infinite;
}

.hotspot:hover {
  transform: translate(-50%, -50%) scale(1.18);
  box-shadow:
    0 0 0 6px rgba(93, 196, 237, 0.4),
    0 6px 20px rgba(93, 196, 237, 0.55);
  z-index: 6;
}

/* Versetzte Animationen pro Hotspot, damit nicht alle gleichzeitig pulsieren */
.hotspot--1 { animation-delay: 0s; }
.hotspot--2 { animation-delay: 0.4s; }
.hotspot--3 { animation-delay: 0.8s; }
.hotspot--4 { animation-delay: 1.2s; }
.hotspot--5 { animation-delay: 1.6s; }
.hotspot--6 { animation-delay: 2.0s; }
.hotspot--1::before { animation-delay: 0s; }
.hotspot--2::before { animation-delay: 0.4s; }
.hotspot--3::before { animation-delay: 0.8s; }
.hotspot--4::before { animation-delay: 1.2s; }
.hotspot--5::before { animation-delay: 1.6s; }
.hotspot--6::before { animation-delay: 2.0s; }

@keyframes hotspot-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes hotspot-ring {
  0%   { transform: scale(0.8); opacity: 0.7; }
  80%  { opacity: 0; }
  100% { transform: scale(2);   opacity: 0; }
}

/* Verbindung Callout ↔ Hotspot: durch passenden Tour-Number Hover */
.tour-callout {
  cursor: default;
}
.tour-callout:hover .tour-num {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 6px 18px rgba(93, 196, 237, 0.6);
}
.tour-num { transition: transform 0.25s, box-shadow 0.25s; }

/* Linker / rechter Callout — Pfeil-Tail visuell zur Mitte */
.tour-col--left .tour-callout {
  border-right: 3px solid rgba(93, 196, 237, 0.4);
  position: relative;
}
.tour-col--left .tour-callout::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 13px; height: 13px;
  background: linear-gradient(135deg, var(--ice-bright), var(--ice));
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  filter: drop-shadow(0 0 4px rgba(93,196,237,0.5));
  animation: arrow-pulse-r-mini 2s ease-in-out infinite;
}
.tour-col--right .tour-callout {
  border-left: 3px solid rgba(93, 196, 237, 0.4);
  position: relative;
}
.tour-col--right .tour-callout::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  width: 13px; height: 13px;
  background: linear-gradient(135deg, var(--ice-bright), var(--ice));
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  filter: drop-shadow(0 0 4px rgba(93,196,237,0.5));
  animation: arrow-pulse-l-mini 2s ease-in-out infinite;
}
@keyframes arrow-pulse-r-mini {
  0%, 100% { transform: translate(0, -50%); opacity: 0.85; }
  50%      { transform: translate(4px, -50%); opacity: 1; }
}
@keyframes arrow-pulse-l-mini {
  0%, 100% { transform: translate(0, -50%); opacity: 0.85; }
  50%      { transform: translate(-4px, -50%); opacity: 1; }
}

/* Mobile: Callout-Pfeile aus */
@media (max-width: 1100px) {
  .tour-col--left .tour-callout::after,
  .tour-col--right .tour-callout::after { display: none; }
  .tour-col--left .tour-callout,
  .tour-col--right .tour-callout { border-left: none; border-right: none; }
  .hotspot { width: 20px; height: 20px; font-size: 0.7rem; border-width: 1.5px; }
}
@media (max-width: 540px) {
  .hotspot { width: 16px; height: 16px; font-size: 0.6rem; border-width: 1.2px; }
  .hotspot::before { inset: -3px; }
}

/* Alte Tour-Arrow-Klassen entfernen, falls noch im DOM (Backwards-Compat) */
.tour-arrow { display: none !important; }


/* ===================================================================
   ===== TOUR-PFEILE — animierte SVG-Linien zwischen Callout & Target
   =================================================================== */

/* Alte Hotspot-Dots ausblenden, jetzt nur als unsichtbare Position-Marker nutzen */
.hotspot { display: none !important; }
.tour-target {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: #7fdcfa;
  box-shadow:
    0 0 0 3px rgba(127, 220, 250, 0.25),
    0 0 12px rgba(127, 220, 250, 0.7);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  animation: target-fade-in 0.5s ease-out forwards;
}
@keyframes target-fade-in {
  to { opacity: 1; }
}
.tour-target::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1.5px solid #7fdcfa;
  border-radius: 50%;
  opacity: 0;
  animation: target-ring 2.4s ease-out infinite;
}
@keyframes target-ring {
  0%   { transform: scale(0.7); opacity: 0.7; }
  80%  { opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* SVG-Overlay für Pfeil-Linien */
.tour-grid { position: relative; }
.tour-arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  overflow: visible;
}
.tour-arrow-path {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 2;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(93, 196, 237, 0.6));
  /* Animation: Linie zeichnet sich langsam */
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  pathLength: 1;
}
.tour-arrow-path.is-drawn {
  animation: draw-line 1.6s cubic-bezier(.4, 0, .2, 1) forwards;
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

/* Alte CSS-Pfeil-Tails an Callouts entfernen, da wir jetzt SVG nutzen */
.tour-col--left .tour-callout::after,
.tour-col--right .tour-callout::after {
  display: none;
}
.tour-col--left .tour-callout,
.tour-col--right .tour-callout {
  border-left: none;
  border-right: none;
}

/* Wobble dämpfen, damit die Linien-Endpunkte nicht zu sehr wandern */
.tour-screen .mac-window {
  animation-duration: 9s;
}
@keyframes tour-wobble {
  0%   { transform: perspective(1400px) rotateY(-2deg)   rotateX(1.5deg) translateY(0); }
  50%  { transform: perspective(1400px) rotateY(-2.4deg) rotateX(1.2deg) translateY(-3px); }
  100% { transform: perspective(1400px) rotateY(-2deg)   rotateX(1.5deg) translateY(0); }
}

/* Mobile: Pfeile + Targets aus, da Layout collapsed */
@media (max-width: 1100px) {
  .tour-arrows, .tour-target { display: none !important; }
}


/* ===== NEON-GRÜN aus der App — kräftiger und glühender ===== */
:root {
  --neon-green:  #39ff14;
  --neon-green-glow: rgba(57, 255, 20, 0.55);
  --neon-red:    #ff2424;
  --neon-red-glow: rgba(255, 36, 36, 0.6);
}

.addr-line {
  color: var(--neon-green) !important;
  background: rgba(57, 255, 20, 0.04) !important;
  border-color: rgba(57, 255, 20, 0.20) !important;
  text-shadow:
    0 0 4px var(--neon-green-glow),
    0 0 10px rgba(57, 255, 20, 0.35) !important;
  font-weight: 700 !important;
}
.addr-line strong {
  color: var(--neon-red) !important;
  text-shadow:
    0 0 4px var(--neon-red-glow),
    0 0 12px rgba(255, 36, 36, 0.4) !important;
  font-weight: 800 !important;
}
.addr-line:hover {
  border-color: rgba(57, 255, 20, 0.5) !important;
  background: rgba(57, 255, 20, 0.07) !important;
}

/* Showcase-Border passt sich an */
.addr-showcase {
  border-color: rgba(57, 255, 20, 0.18) !important;
}


/* ===== Saftiges Neon-Grün und knalliges Rot — exakt wie in der App ===== */
:root {
  --neon-green:  #1eff1e;     /* sattes Terminal-Grün */
  --neon-green-glow: rgba(30, 255, 30, 0.7);
  --neon-red:    #ff1414;     /* knalliges Pure-Rot */
  --neon-red-glow: rgba(255, 20, 20, 0.7);
}

.addr-line {
  color: var(--neon-green) !important;
  background: rgba(30, 255, 30, 0.05) !important;
  border-color: rgba(30, 255, 30, 0.25) !important;
  text-shadow:
    0 0 5px var(--neon-green-glow),
    0 0 14px rgba(30, 255, 30, 0.4),
    0 0 22px rgba(30, 255, 30, 0.15) !important;
  font-weight: 700 !important;
}
.addr-line strong {
  color: var(--neon-red) !important;
  text-shadow:
    0 0 5px var(--neon-red-glow),
    0 0 14px rgba(255, 20, 20, 0.45),
    0 0 22px rgba(255, 20, 20, 0.18) !important;
  font-weight: 800 !important;
}
.addr-line:hover {
  border-color: rgba(30, 255, 30, 0.55) !important;
  background: rgba(30, 255, 30, 0.09) !important;
}

.addr-showcase {
  border-color: rgba(30, 255, 30, 0.22) !important;
}

/* falls die App-Tour Pfeile auch auf Adressen verweisen, auch dort knalliger */
.tour-arrow-path {
  filter: drop-shadow(0 0 6px rgba(127, 220, 250, 0.7)) !important;
}


/* ===== Hero-Wordmark: schärfer + mehr Abstand zur Navbar ===== */
.hero,
.hero--rain,
.hero--ice,
.hero--split {
  padding-top: clamp(120px, 16vh, 180px) !important;   /* ca. 1cm mehr Luft nach oben */
}

.brand-mark__main {
  /* schärferer Outline-Stil — kein weicher Blur mehr */
  filter:
    drop-shadow(1.5px 1.5px 0 #1a0a04)
    drop-shadow(0 1px 0 #1a0a04)
    drop-shadow(0 2px 4px rgba(0,0,0,0.55)) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.brand-mark__sub {
  filter: drop-shadow(1px 1px 0 #1a0a04) !important;
  -webkit-font-smoothing: antialiased;
}

/* Auch in der Navbar das Wordmark crisper */
.nav-brand-text__main {
  filter:
    drop-shadow(1px 1px 0 #1a0a04)
    drop-shadow(0 1px 2px rgba(0,0,0,0.4)) !important;
  -webkit-font-smoothing: antialiased;
}
.nav-brand-text__sub {
  filter: drop-shadow(0.5px 0.5px 0 #1a0a04) !important;
}


/* ===================================================================
   ===== BRAND-WORDMARK — neuer Font (Bagel Fat One) =====
   =================================================================== */

/* Hero-Wordmark groß */
.brand-mark__main {
  font-family: 'Bagel Fat One', 'Lilita One', system-ui, sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(2.4rem, 5vw, 4.2rem) !important;
  letter-spacing: -0.005em !important;
  line-height: 1 !important;
  /* Reichere Orange-Range mit mehr Sättigung */
  background: linear-gradient(180deg,
    #fff3a8 0%,
    #ffd456 18%,
    #ffa322 50%,
    #ff6b00 78%,
    #c94000 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  /* Sehr schmaler harter Outline statt weicher Schatten */
  filter:
    drop-shadow(2px 0 0 #1a0a04)
    drop-shadow(-1px 0 0 #1a0a04)
    drop-shadow(0 2px 0 #1a0a04)
    drop-shadow(0 -1px 0 #1a0a04)
    drop-shadow(0 4px 0 rgba(70, 20, 0, 0.7)) !important;
}

.brand-mark__sub {
  font-family: 'Bagel Fat One', 'Lilita One', system-ui, sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(1.05rem, 1.7vw, 1.5rem) !important;
  letter-spacing: 0.04em !important;
  margin-top: 0.4rem !important;
  background: linear-gradient(90deg, #ff2b2b 0% 36%, #5dc4ed 36% 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter:
    drop-shadow(1px 0 0 #1a0a04)
    drop-shadow(-1px 0 0 #1a0a04)
    drop-shadow(0 1px 0 #1a0a04)
    drop-shadow(0 2px 0 rgba(70, 20, 0, 0.6)) !important;
}

/* Navbar-Wordmark — gleicher Stil, kleiner */
.nav-brand-text__main {
  font-family: 'Bagel Fat One', 'Lilita One', system-ui, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.32rem !important;
  letter-spacing: 0 !important;
  background: linear-gradient(180deg, #fff3a8 0%, #ffd456 25%, #ffa322 60%, #ff6b00 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter:
    drop-shadow(1px 0 0 #1a0a04)
    drop-shadow(-1px 0 0 #1a0a04)
    drop-shadow(0 1px 0 #1a0a04)
    drop-shadow(0 2px 0 rgba(70, 20, 0, 0.5)) !important;
}
.nav-brand-text__sub {
  font-family: 'Bagel Fat One', 'Lilita One', system-ui, sans-serif !important;
  font-weight: 400 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em !important;
  margin-top: 4px !important;
  background: linear-gradient(90deg, #ff2b2b 0% 38%, #5dc4ed 38% 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter:
    drop-shadow(0.5px 0 0 #1a0a04)
    drop-shadow(-0.5px 0 0 #1a0a04)
    drop-shadow(0 1px 0 #1a0a04) !important;
}

/* ===== Lock-Icon: KEIN CSS-Glow mehr drumherum ===== */
.nav-lock-img {
  filter: none !important;
}
.nav-logo:hover .nav-lock-img {
  transform: scale(1.06);
  filter: brightness(1.1) !important;
}
@media (max-width: 720px) {
  .nav-brand-text__main { font-size: 1.05rem !important; }
}


/* ===== Hero-Wordmark mit Schloss-Icon links daneben ===== */
.brand-mark--with-lock {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  text-decoration: none;
}
.brand-mark__lock {
  height: clamp(70px, 9vw, 110px);
  width: auto;
  flex-shrink: 0;
  display: block;
  /* Kein extra Glow — Bild bringt schon was mit */
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1);
}
.brand-mark--with-lock:hover .brand-mark__lock {
  transform: scale(1.06) rotate(-4deg);
}
.brand-mark__text {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.95;
}
@media (max-width: 980px) {
  .brand-mark--with-lock { justify-content: center; }
}
@media (max-width: 540px) {
  .brand-mark--with-lock { gap: 10px; }
  .brand-mark__lock { height: 60px; }
}

/* ===== FONT-PICKER ===== */
.font-picker {
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  padding: clamp(60px, 8vh, 100px) 0;
  border-top: 1px solid rgba(93, 196, 237, 0.1);
  border-bottom: 1px solid rgba(93, 196, 237, 0.1);
}
.font-picker__head { text-align: center; margin-bottom: 2.5rem; }
.font-picker__head .section-label,
.font-picker__head .section-title { margin-left: auto; margin-right: auto; }

.font-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.font-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  background: linear-gradient(180deg, #131727, #0a0e1a);
  border: 1px solid rgba(93, 196, 237, 0.18);
  border-radius: 16px;
  padding: 1.4rem 1.4rem 1.6rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  cursor: pointer;
  overflow: hidden;
}
.font-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 154, 46, 0.55);
  box-shadow: 0 18px 50px rgba(255, 154, 46, 0.15);
}

.font-card__num {
  position: absolute;
  top: 12px; right: 14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #061522;
  background: linear-gradient(135deg, #ffe89a, #ffa322);
  box-shadow: 0 3px 8px rgba(255, 154, 46, 0.35);
}

.font-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a8b5cc;
  margin-bottom: 0.4rem;
}
.font-card__name em {
  font-style: normal;
  color: #ffd456;
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
}

.font-card__main {
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.005em;
  background: linear-gradient(180deg, #fff3a8, #ffd456 25%, #ffa322 60%, #ff6b00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(1.5px 0 0 #1a0a04)
    drop-shadow(-1px 0 0 #1a0a04)
    drop-shadow(0 1.5px 0 #1a0a04)
    drop-shadow(0 3px 0 rgba(70,20,0,0.65));
}
.font-card__sub {
  font-size: clamp(0.78rem, 1.1vw, 1rem);
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
  background: linear-gradient(90deg, #ff2b2b 0% 38%, #5dc4ed 38% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0.5px 0 0 #1a0a04)
    drop-shadow(0 1px 0 #1a0a04);
}


/* ===== Hero-Wordmark: Schloss LINKS neben dem Text (Override flex-direction) ===== */
.brand-mark--with-lock {
  display: inline-flex !important;
  flex-direction: row !important;          /* horizontal, nicht column */
  align-items: center !important;
  gap: clamp(14px, 1.8vw, 24px) !important;
}
.brand-mark--with-lock .brand-mark__text {
  display: inline-flex !important;
  flex-direction: column !important;       /* Text-Block bleibt vertikal */
  align-items: flex-start !important;
  gap: 0 !important;
  line-height: 0.95 !important;
}
@media (max-width: 980px) {
  .brand-mark--with-lock .brand-mark__text { align-items: center; }
}

/* Lock-Bild: zusätzliche CSS-Maske als Sicherheit, falls noch Reste da sind */
.brand-mark__lock,
.nav-lock-img {
  -webkit-mask-image: radial-gradient(ellipse at center, #000 65%, transparent 88%);
  mask-image: radial-gradient(ellipse at center, #000 65%, transparent 88%);
}


/* ===== Schloss komplett unverarbeitet — keine Mask, keine Filter ===== */
.brand-mark__lock,
.nav-lock-img {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  filter: none !important;
}


/* ===== FINAL FONT: Lilita One (User-Wahl) — überschreibt alles davor ===== */
.brand-mark__main,
.brand-mark__sub,
.nav-brand-text__main,
.nav-brand-text__sub {
  font-family: 'Lilita One', system-ui, sans-serif !important;
  font-weight: 400 !important;
}


/* ===== FINAL: Logo-Struktur exakt wie Original — Cold blau, Wallet rot, einzeilig ===== */

/* Hero-Wordmark: einzeilig, leicht kleiner damit's nicht umbricht */
.brand-mark__main {
  font-size: clamp(1.9rem, 3.8vw, 3.3rem) !important;
  white-space: nowrap !important;
  line-height: 1 !important;
}
.brand-mark__sub {
  white-space: nowrap !important;
}

/* Cold (blau) | Wallet (rot) — wie im Original-Logo */
.brand-mark__sub {
  background: linear-gradient(90deg,
    #5dc4ed 0%,
    #5dc4ed 38%,
    #ff2b2b 38%,
    #ff2b2b 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Navbar-Sub (gleicher Split) */
.nav-brand-text__sub {
  background: linear-gradient(90deg,
    #5dc4ed 0%,
    #5dc4ed 38%,
    #ff2b2b 38%,
    #ff2b2b 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  white-space: nowrap !important;
}

/* Navbar-Main auch nicht umbrechen */
.nav-brand-text__main {
  white-space: nowrap !important;
}


/* ===== Adress-Showcase: SCHARF, kein Glow mehr ===== */
.addr-line {
  text-shadow: none !important;
  filter: none !important;
}
.addr-line strong {
  text-shadow: none !important;
  filter: none !important;
}

/* Auch das Hintergrund-Tinting der einzelnen Zeilen wegnehmen — saubere transparente Linien */
.addr-line {
  background: transparent !important;
  border-color: rgba(30, 255, 30, 0.18) !important;
}
.addr-line:hover {
  background: rgba(30, 255, 30, 0.06) !important;
  border-color: rgba(30, 255, 30, 0.4) !important;
}

/* Schrift-Rendering optimieren für maximale Schärfe */
.addr-showcase, .addr-line {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}


/* ===== Cold/Wallet-Gradient: Breakpoint nach 'Cold' verschoben ===== */
.brand-mark__sub,
.nav-brand-text__sub {
  background: linear-gradient(90deg,
    #5dc4ed 0%,
    #5dc4ed 45%,
    #ff2b2b 45%,
    #ff2b2b 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Navbar nicht abschneiden lassen — Container darf wachsen */
.nav-logo,
.nav-logo--mark,
.nav-brand-text,
.nav-brand-text__main,
.nav-brand-text__sub {
  overflow: visible !important;
  max-width: none !important;
  text-overflow: clip !important;
}
.nav-brand-text {
  flex-shrink: 0 !important;
}

/* Falls Navbar zu eng wird, Hauptzeile leicht verkleinern */
@media (max-width: 1280px) {
  .nav-brand-text__main { font-size: 1.18rem !important; }
  .nav-brand-text__sub  { font-size: 0.72rem !important; }
}
@media (max-width: 1080px) {
  .nav-brand-text__main { font-size: 1.05rem !important; }
  .nav-brand-text__sub  { font-size: 0.66rem !important; }
}


/* ===== FINAL Cold/Wallet — separate Spans, explizite Farben (kein Gradient mehr) ===== */
.brand-mark__sub,
.nav-brand-text__sub {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: inherit !important;
}

.brand-cold {
  color: #5dc4ed !important;          /* Eis-Blau — wie das Schloss */
  -webkit-text-fill-color: #5dc4ed !important;
  background: none !important;
}
.brand-wallet {
  color: #ff2b2b !important;          /* knalliges Rot */
  -webkit-text-fill-color: #ff2b2b !important;
  background: none !important;
  margin-left: 0.05em;
}


/* ===== Tour-Screenshot: keine Wobble-Animation mehr (Pfeile blieben sonst nicht aligned) ===== */
.tour-screen .mac-window {
  animation: none !important;
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg) !important;
}
.tour-screen .mac-window:hover {
  transform: perspective(1400px) rotateY(-1deg) rotateX(0.5deg) translateY(-3px) !important;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}


/* ===== Tour-Screenshot komplett flach — keine Rotation, keine Bewegung ===== */
.tour-screen .mac-window {
  animation: none !important;
  transform: none !important;
}
.tour-screen .mac-window:hover {
  transform: translateY(-3px) !important;
  transition: transform 0.4s ease;
}


/* ===== Navbar Download-Pill (3. Anlauf — komplett ohne Flexbox) ===== */
nav.navbar .nav-links li.nav-download-li a.nav-download {
  display: inline-block !important;
  color: #7fdcfa !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  padding: 8px 16px !important;
  border: 1px solid rgba(127, 220, 250, 0.4) !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  vertical-align: middle !important;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s !important;
  position: relative !important;
}
nav.navbar .nav-links li.nav-download-li a.nav-download::before,
nav.navbar .nav-links li.nav-download-li a.nav-download::after {
  display: none !important;
  content: none !important;
}
nav.navbar .nav-links li.nav-download-li a.nav-download .nav-dl-icon {
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  vertical-align: -2px !important;
  margin-right: 6px !important;
  stroke: currentColor !important;
}
nav.navbar .nav-links li.nav-download-li a.nav-download:hover {
  background: rgba(127, 220, 250, 0.12) !important;
  border-color: #7fdcfa !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(127, 220, 250, 0.25) !important;
  color: #7fdcfa !important;
}


/* ===== Navbar ABSOLUT OPAK + alle Links nowrap ===== */
nav.navbar {
  background: #050505 !important;          /* komplett opak — Hero-Grid scheint nicht mehr durch */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(93, 196, 237, 0.12) !important;
  z-index: 1000 !important;
  position: fixed !important;
  top: 0; left: 0; right: 0;
}

nav.navbar .nav-links a,
nav.navbar .nav-links li a {
  white-space: nowrap !important;          /* "So funktioniert's" soll nicht umbrechen */
}

/* === Download-Pill: simpel und robust === */
nav.navbar .nav-links li.nav-download-li {
  display: inline-block !important;
}
nav.navbar .nav-links li.nav-download-li a.nav-download {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #7fdcfa !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  padding: 7px 16px !important;
  border: 1px solid rgba(127, 220, 250, 0.4) !important;
  border-radius: 999px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
nav.navbar .nav-links li.nav-download-li a.nav-download::before,
nav.navbar .nav-links li.nav-download-li a.nav-download::after {
  display: none !important;
  content: none !important;
}
nav.navbar .nav-links li.nav-download-li a.nav-download svg.nav-dl-icon {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
  stroke: currentColor !important;
}
nav.navbar .nav-links li.nav-download-li a.nav-download:hover {
  background: rgba(127, 220, 250, 0.12) !important;
  border-color: #7fdcfa !important;
  color: #7fdcfa !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(127, 220, 250, 0.25) !important;
}

/* =========================================================
   ADMIN-DASHBOARD — Voll-CRUD UI (Suche, Modal, Aktionen)
   ========================================================= */
.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 6px;
  flex-wrap: wrap;
}
.btn.btn-sm {
  padding: 6px 12px;
  font-size: 0.82rem;
  line-height: 1.2;
}

.admin-search-section {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  margin-bottom: 18px !important;
}
.admin-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.admin-search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
}
.admin-search-input-wrap svg {
  position: absolute;
  left: 12px;
  color: var(--text-secondary);
  pointer-events: none;
}
.admin-search-input-wrap input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(127,220,250,0.20);
  border-radius: 999px;
  padding: 10px 38px 10px 38px;
  color: var(--text-primary, #fff);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.admin-search-input-wrap input:focus {
  border-color: rgba(127,220,250,0.55);
  background: rgba(127,220,250,0.06);
}
.admin-search-clear {
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  border: 0;
  background: rgba(127,220,250,0.15);
  color: #fff;
  border-radius: 50%;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-search-clear:hover { background: rgba(127,220,250,0.30); }
.admin-search-hint {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Action-Cell: dichte Inline-Buttons */
.admin-action-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.admin-action-cell .account-link-small {
  white-space: nowrap;
  font-size: 0.78rem;
  padding: 4px 8px;
}
.admin-action-cell .admin-danger {
  color: #ff7d7d;
  border-color: rgba(255,125,125,0.4);
}
.admin-action-cell .admin-danger:hover {
  background: rgba(255,125,125,0.12);
  color: #ff5050;
}

/* Customer-Tabelle V2 — neue Spalten-Aufteilung */
.admin-customers-table-v2 .account-table-row {
  grid-template-columns:
    minmax(180px, 1.4fr)   /* Kunde */
    minmax(160px, 1.2fr)   /* Device-IDs */
    minmax(90px, 0.7fr)    /* Plan */
    minmax(100px, 0.8fr)   /* Gekauft */
    minmax(120px, 1fr)     /* Status */
    minmax(220px, 1.5fr);  /* Aktionen */
}
.admin-customers-table-v2 code.legal-placeholder {
  font-family: 'Courier New', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  display: inline-block;
}

/* Modal */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-modal[hidden] { display: none !important; }
.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}
.admin-modal-card {
  position: relative;
  background: #0a0d12;
  border: 1px solid rgba(127,220,250,0.25);
  border-radius: 14px;
  width: min(640px, 100%);
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(127,220,250,0.08);
}
.admin-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(127,220,250,0.15);
}
.admin-modal-head h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #fff;
}
.admin-modal-close {
  background: transparent;
  border: 0;
  color: var(--text-secondary);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
}
.admin-modal-close:hover { color: #fff; }
.admin-modal-form {
  padding: 22px;
}
.admin-modal-form .auth-label { margin-bottom: 14px; }
.admin-modal-form .auth-label > span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.85rem;
}
.admin-modal-form input,
.admin-modal-form textarea,
.admin-modal-form select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(127,220,250,0.20);
  border-radius: 8px;
  padding: 9px 12px;
  color: #fff;
  font-size: 0.92rem;
  outline: none;
  font-family: inherit;
}
.admin-modal-form input:focus,
.admin-modal-form textarea:focus,
.admin-modal-form select:focus {
  border-color: rgba(127,220,250,0.55);
  background: rgba(127,220,250,0.06);
}
.admin-modal-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(127,220,250,0.10);
}

/* Mobile Responsiveness */
@media (max-width: 720px) {
  .admin-customers-table-v2 .account-table-row {
    grid-template-columns: 1fr !important;
    row-gap: 4px;
    padding: 12px;
  }
  .admin-customers-table-v2 .admin-table-head { display: none; }
  .admin-action-cell { gap: 6px; padding-top: 8px; }
}

/* ============================================================
   ROADMAP-SEKTION — fehlende Chains nach Stages
   ============================================================ */
.roadmap-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(7,16,30,1), rgba(13,26,46,.96));
  position: relative;
}
.roadmap-section .section-subtitle { max-width: 760px; margin: 8px auto 28px; }

.roadmap-stage {
  margin: 28px 0;
  padding: 22px 24px;
  background: rgba(15,23,42,.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}
.roadmap-stage-head {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.roadmap-stage-num {
  display: inline-block; padding: 4px 10px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #34d399;
  background: rgba(52,211,153,.1);
  border: 1px solid rgba(52,211,153,.4);
  border-radius: 4px;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
.roadmap-stage-num--soon {
  color: #5fb6ff;
  background: rgba(95,182,255,.1);
  border-color: rgba(95,182,255,.4);
}
.roadmap-stage-num--evm {
  color: #a78bfa;
  background: rgba(167,139,250,.1);
  border-color: rgba(167,139,250,.4);
}
.roadmap-stage-num--later {
  color: #f4d03f;
  background: rgba(244,208,63,.08);
  border-color: rgba(244,208,63,.35);
}
.roadmap-stage-title {
  font-family: Georgia, serif; font-weight: 700;
  font-size: 22px; line-height: 1.2;
  margin: 0; color: #f4f7fb;
  flex: 1 1 auto;
}
.roadmap-stage-desc {
  width: 100%; margin: 0;
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,.6);
}
.roadmap-chips {
  display: flex; flex-wrap: wrap; gap: 6px 8px;
}
.chip {
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  font-size: 12px; font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.75);
  transition: all .15s ease;
}
.chip:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.18);
}
.chip-live {
  color: #34d399;
  background: rgba(52,211,153,.06);
  border-color: rgba(52,211,153,.3);
}
.chip-live::before {
  content: "✓ ";
  color: #34d399;
  font-weight: 800;
  margin-right: 2px;
}
.chip-soon {
  color: #5fb6ff;
  background: rgba(95,182,255,.06);
  border-color: rgba(95,182,255,.28);
}
.chip-evm {
  color: #a78bfa;
  background: rgba(167,139,250,.06);
  border-color: rgba(167,139,250,.28);
}
.chip-later {
  color: rgba(244,208,63,.85);
  background: rgba(244,208,63,.05);
  border-color: rgba(244,208,63,.22);
}
.roadmap-foot {
  margin-top: 28px; text-align: center;
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,.55);
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.roadmap-foot a { color: #5fb6ff; text-decoration: none; font-weight: 600; }
.roadmap-foot a:hover { color: #a78bfa; text-decoration: underline; }

@media (max-width: 720px) {
  .roadmap-section { padding: 56px 0; }
  .roadmap-stage { padding: 18px 16px; }
  .roadmap-stage-title { font-size: 18px; }
  .roadmap-stage-desc { font-size: 13px; }
  .chip { font-size: 11px; padding: 5px 10px; }
}
