/* ═══════════════════════════════════════════════════════════════════════════
   COMING SOON PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Page Layout ── */
.cs-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header mit Logo ── */
.cs-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  position: relative;
  z-index: 10;
}

.cs-logo {
  height: 64px;
  width: auto;
}

/* ── Hero Section ── */
.cs-hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  overflow: hidden;
}

.cs-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cs-gradient-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.08) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.cs-gradient-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.cs-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* ── Badge ── */
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(33, 150, 243, 0.05));
  border: 1px solid rgba(33, 150, 243, 0.2);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.cs-badge-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* ── Headline ── */
.cs-headline {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
}

.cs-highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cs-subheadline {
  margin: 0 0 2rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Features Quick ── */
.cs-features-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cs-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(33, 150, 243, 0.05);
  border: 1px solid rgba(33, 150, 243, 0.1);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
}

.cs-feature:hover {
  background: rgba(33, 150, 243, 0.08);
  border-color: rgba(33, 150, 243, 0.2);
}

.cs-feature svg {
  color: var(--primary);
}

/* ── CTA ── */
.cs-cta {
  margin-bottom: 2rem;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ── Trust ── */
.cs-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cs-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cs-trust-item svg {
  color: var(--success);
}

/* ── Footer ── */
.cs-footer {
  padding: 2rem 0;
  background: var(--surface);
  border-top: 1px solid rgba(33, 150, 243, 0.1);
}

.cs-footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.cs-footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.cs-footer-nav a:hover {
  color: var(--primary);
}

.cs-footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cs-hero {
    padding: 3rem 0;
  }
  
  .cs-features-quick {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cs-feature {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .cs-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .cs-footer-nav {
    flex-direction: column;
    gap: 0.75rem;
  }
}