/* Activicity Landing-Page — Dark & Glow */

:root {
  --bg: #0a0f0b;
  --bg-card: #111813;
  --bg-card-hover: #152018;
  --border: #1f2a22;
  --green: #34C759;
  --green-bright: #4ade80;
  --green-deep: #0f3d1e;
  --text: #eef5f0;
  --text-dim: #9fb3a4;
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Atmosphäre: Lichtkegel + Karten-Punktraster */
  background-image:
    radial-gradient(ellipse 900px 600px at 75% -5%, rgba(52, 199, 89, 0.14), transparent 60%),
    radial-gradient(ellipse 700px 500px at 10% 35%, rgba(52, 199, 89, 0.06), transparent 65%),
    radial-gradient(circle, rgba(159, 179, 164, 0.055) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
}

img { display: block; max-width: 100%; height: auto; }

::selection { background: var(--green); color: #04150a; }

/* ---------- Nav ---------- */

.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand img { border-radius: 9px; }

.nav-links { display: flex; gap: 26px; }

.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--green-bright); }

/* ---------- Hero ---------- */

.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px 96px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 800px) {
  .hero { grid-template-columns: 1.2fr 1fr; padding-top: 64px; }
}

.eyebrow {
  display: inline-block;
  color: var(--green-bright);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border: 1px solid rgba(52, 199, 89, 0.35);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 22px;
  background: rgba(52, 199, 89, 0.07);
  animation: rise 0.7s 0.05s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  animation: rise 0.7s 0.15s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.hero h1 em {
  font-style: normal;
  color: var(--green-bright);
  text-shadow: 0 0 36px rgba(52, 199, 89, 0.45);
}

.hero .sub {
  color: var(--text-dim);
  font-size: 1.12rem;
  max-width: 30rem;
  margin: 22px 0 30px;
  animation: rise 0.7s 0.25s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.badge-row { animation: rise 0.7s 0.35s cubic-bezier(0.2, 0.7, 0.3, 1) both; }

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
  animation: rise 0.7s 0.45s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.chips li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 0.88rem;
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.chips li:hover {
  border-color: var(--green);
  color: var(--text);
  transform: translateY(-2px);
}

/* ---------- Store-Badge ---------- */

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #060a07;
  border: 1px solid #2a3a2e;
  border-radius: 13px;
  padding: 9px 20px 9px 16px;
  color: var(--text);
  cursor: default;
  user-select: none;
}

.store-badge svg { opacity: 0.95; }

.store-badge-text { display: flex; flex-direction: column; line-height: 1.15; }

.store-badge-text small { font-size: 0.66rem; color: var(--text-dim); }

.store-badge-text strong { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }

/* ---------- Phone-Mockup ---------- */

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

.phone {
  width: min(290px, 72vw);
  border-radius: 42px;
  border: 7px solid #1c241e;
  background: #04150a;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(74, 222, 128, 0.12),
    0 0 90px rgba(52, 199, 89, 0.28),
    0 36px 70px rgba(0, 0, 0, 0.55);
}

.hero-phone .phone {
  transform: rotate(2.5deg);
  animation: phoneIn 0.9s 0.3s cubic-bezier(0.2, 0.7, 0.3, 1) both, float 7s 1.3s ease-in-out infinite;
}

@keyframes phoneIn {
  from { opacity: 0; transform: rotate(2.5deg) translateY(46px); }
  to   { opacity: 1; transform: rotate(2.5deg) translateY(0); }
}

@keyframes float {
  0%, 100% { transform: rotate(2.5deg) translateY(0); }
  50%      { transform: rotate(2.5deg) translateY(-12px); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Sektionen allgemein ---------- */

section { padding: 0 24px; }

.features, .steps, .cities, .gallery {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 50px;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 38px;
}

/* ---------- Features ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 199, 89, 0.45);
  background: var(--bg-card-hover);
}

.card-icon {
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.22);
  border-radius: 14px;
  margin-bottom: 16px;
}

.card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 7px; letter-spacing: -0.01em; }

.card p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Steps ---------- */

.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: #04150a;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
  box-shadow: 0 0 28px rgba(52, 199, 89, 0.4);
}

.steps-list h3 { font-size: 1.1rem; margin-bottom: 6px; letter-spacing: -0.01em; }

.steps-list p { color: var(--text-dim); font-size: 0.95rem; max-width: 22rem; }

/* ---------- Städte ---------- */

.cities { text-align: center; }

.cities h2 { margin-bottom: 28px; }

.city-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.city-chips li {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.93rem;
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s;
}

.city-chips li:hover { border-color: var(--green); color: var(--green-bright); }

/* ---------- Galerie ---------- */

.shots {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  padding: 18px 4px 28px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.shots::-webkit-scrollbar { height: 8px; }
.shots::-webkit-scrollbar-track { background: var(--bg-card); border-radius: 4px; }
.shots::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.shots::-webkit-scrollbar-thumb:hover { background: var(--green-deep); }

.phone-small {
  flex: 0 0 auto;
  width: 230px;
  scroll-snap-align: center;
  border-radius: 34px;
  border-width: 6px;
  box-shadow:
    0 0 0 1px rgba(74, 222, 128, 0.1),
    0 0 44px rgba(52, 199, 89, 0.14),
    0 22px 44px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s;
}

.phone-small:hover { transform: translateY(-8px); }

/* ---------- CTA ---------- */

.cta {
  max-width: 720px;
  margin: 30px auto 0;
  padding: 64px 24px 88px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta img { border-radius: 15px; box-shadow: 0 0 48px rgba(52, 199, 89, 0.35); }

.cta h2 { margin-bottom: 0; }

.cta p { color: var(--text-dim); margin-bottom: 14px; }

/* ---------- Footer ---------- */

footer { border-top: 1px solid var(--border); background: rgba(6, 10, 7, 0.6); }

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-inner nav { display: flex; flex-wrap: wrap; gap: 20px; }

.footer-inner a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }

.footer-inner a:hover { color: var(--green-bright); }

/* ---------- Scroll-Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

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

/* Gestaffelte Cards */
.grid .card:nth-child(2) { transition-delay: 0.07s; }
.grid .card:nth-child(3) { transition-delay: 0.14s; }
.grid .card:nth-child(4) { transition-delay: 0.07s; }
.grid .card:nth-child(5) { transition-delay: 0.14s; }
.grid .card:nth-child(6) { transition-delay: 0.21s; }
.steps-list li:nth-child(2) { transition-delay: 0.1s; }
.steps-list li:nth-child(3) { transition-delay: 0.2s; }

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .eyebrow, .hero h1, .hero .sub, .badge-row, .chips, .hero-phone .phone { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-phone .phone { transform: rotate(2.5deg); }
}

/* ---------- Mobile-Feinschliff ---------- */

@media (max-width: 799px) {
  .nav-links { display: none; }
  .hero { padding-bottom: 64px; gap: 44px; }
  .hero-copy { text-align: left; }
}
