/* ============================================================
   Markt Bot V2 — Coming Soon / In Entwicklung
   Design: "Magic Studio" Stil — dunkel, edel, eine zentrierte Hero
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-2: #0f0f12;
  --surface: #141417;
  --surface-2: #1a1a1f;
  --line: rgba(247, 248, 251, 0.08);
  --line-2: rgba(247, 248, 251, 0.14);
  --cream: #f7f8fb;
  --text: #e8e9f0;
  --muted: #a4a6b2;
  --faint: #8b8d99;
  --gold: #ff2d8e;
  --gold-soft: #ff66ac;
  --gold-glow: rgba(255, 45, 142, 0.22);
  --green: #84d6a4;

  --display: "Bricolage Grotesque", sans-serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;

  --r: 16px;
  --r-sm: 11px;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ============================================================
   Hintergrund-Layer
   ============================================================ */

/* Radialer Pink-Glow oben + zweiter dezenter Glow unten */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      65% 50% at 50% -5%,
      var(--gold-glow) 0%,
      rgba(255, 45, 142, 0.06) 38%,
      transparent 72%
    ),
    radial-gradient(
      55% 45% at 15% 105%,
      rgba(255, 45, 142, 0.1) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

/* Sehr feiner Film-Grain via SVG feTurbulence */
.bg-grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   Layout — eine zentrierte Hero
   ============================================================ */

.page {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 10vw, 80px) 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}

/* ---------- Hero-Card ---------- */
.hero {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(36px, 9vw, 64px) clamp(24px, 6vw, 56px);
  box-shadow:
    0 24px 70px -28px rgba(0, 0, 0, 0.7),
    0 0 60px -18px var(--gold-glow);
}

/* ---------- Brand-Label ---------- */
.brand {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.015);
  margin-bottom: clamp(22px, 5vw, 30px);
}

.brand-accent {
  color: var(--gold-soft);
}

/* ---------- Badge "In Entwicklung" ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
  margin-bottom: clamp(22px, 5vw, 30px);
}

.badge--pink {
  color: var(--gold-soft);
  background: rgba(255, 45, 142, 0.1);
  border: 1px solid rgba(255, 45, 142, 0.22);
}

.badge__dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* Pulse-Animation des Punkts */
.badge__dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70%,
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* ---------- Headline ---------- */
.headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.1rem, 7.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 18px;
  max-width: 14ch;
}

/* ---------- Subtext ---------- */
.subtext {
  font-size: clamp(0.98rem, 2.5vw, 1.12rem);
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto;
}

/* ---------- Feature-Chips ---------- */
.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(28px, 6vw, 38px);
}

.chips li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--faint);
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.015);
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background 0.3s ease;
}

.chips li:hover {
  border-color: rgba(255, 45, 142, 0.22);
  color: var(--gold-soft);
  background: rgba(255, 45, 142, 0.06);
}

/* ============================================================
   Footer
   ============================================================ */

.foot {
  margin-top: clamp(36px, 8vw, 56px);
  font-size: 0.85rem;
  color: var(--faint);
  text-align: center;
}

.foot-accent {
  color: var(--muted);
}

/* ============================================================
   Responsive
   ============================================================ */

/* Tablet ab 768px — etwas mehr Atem */
@media (min-width: 768px) {
  .page {
    max-width: 760px;
  }
}

/* Desktop ab 1200px — Hero bleibt fokussiert, mehr Whitespace */
@media (min-width: 1200px) {
  .page {
    max-width: 800px;
  }
}

/* Reduced motion respektieren */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
