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

:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --card: #222222;
  --border: #333333;
  --accent: #38bdf8;
  --accent-dim: #0ea5e9;
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted2: #64748b;
  --cat-live: #38bdf8;
  --cat-vibe: #a78bfa;
  --cat-hilfe: #2dd4bf;
  --cat-event: #fbbf24;
  --cat-eil: #f97316;
  --cat-jobs: #84cc16;
  --phone-w: 280px;
  --phone-feed-card-h: 168px;
  --phone-feed-gap: 6px;
  --phone-feed-fixed-h: calc(var(--phone-feed-card-h) * 2 + var(--phone-feed-gap) + 10px);
}

html { scroll-behavior: smooth; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: none;
}
.skip-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.brand-radi { color: var(--muted); }
.brand-baz { color: var(--accent); }

a { color: inherit; }

/* ── Nav ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 58px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.nav-links {
  display: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

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

.nav-cta {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
}

@media (min-width: 720px) {
  .nav-links { display: flex; }
}

/* ── Layout ── */
.section-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 540px;
}

/* ── Buttons ── */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-primary:hover { opacity: 0.92; }
.btn-secondary:hover { border-color: var(--muted2); }

/* ── Hero ── */
.hero {
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #282828 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, transparent 68%);
  top: 20%;
  right: -8%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.hero-steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.hero-steps li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-tagline {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--muted2);
  font-style: italic;
}

/* ── Phone mockup ── */
.phone-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  --brand-ripple-size: 320px;
}

@media (max-width: 600px) {
  .phone-wrap {
    --brand-ripple-size: 240px;
  }
}

.brand-mark-rings {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 0;
  height: 0;
  z-index: 1;
  pointer-events: none;
}

.brand-mark-ring {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--brand-ripple-size);
  height: var(--brand-ripple-size);
  margin-left: calc(var(--brand-ripple-size) / -2);
  margin-top: calc(var(--brand-ripple-size) / -2);
  box-sizing: border-box;
  border-radius: 50%;
  border: 1.5px solid rgba(56, 189, 248, 0.42);
  opacity: 0;
  transform: scale(0.15);
  animation-name: brand-mark-ripple;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: backwards;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.brand-mark-ring:nth-child(1) {
  animation-duration: 6600ms;
  animation-delay: 0ms;
}

.brand-mark-ring:nth-child(2) {
  animation-duration: 7420ms;
  animation-delay: 1010ms;
}

.brand-mark-ring:nth-child(3) {
  animation-duration: 6410ms;
  animation-delay: 4210ms;
}

@keyframes brand-mark-ripple {
  0% { transform: scale(0.15); opacity: 0; }
  8% { opacity: 0.3; }
  50% { opacity: 0.2; }
  100% { transform: scale(3.35); opacity: 0; }
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: var(--phone-w);
  max-width: calc(100vw - 48px);
  border-radius: 40px;
  border: 2px solid var(--border);
  background: #0a0a0a;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(56, 189, 248, 0.06);
  overflow: hidden;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

.phone-header-img {
  width: 100%;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.phone-feed {
  flex: 0 0 auto;
  height: var(--phone-feed-fixed-h);
  padding: 3px 7px 6px;
  display: flex;
  flex-direction: column;
  gap: var(--phone-feed-gap);
  overflow: hidden;
}

.feed-card {
  height: var(--phone-feed-card-h);
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

@keyframes ph-feed-card-enter {
  from { opacity: 0; transform: scale(0.96) translateY(-6px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes ph-feed-card-leave {
  to { opacity: 0; transform: scale(0.97) translateY(8px); }
}

.feed-card--enter {
  animation: ph-feed-card-enter 0.52s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.feed-card--leave {
  animation: ph-feed-card-leave 0.4s ease forwards;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .feed-card--enter,
  .feed-card--leave {
    animation: none !important;
  }
  .brand-mark-ring {
    animation: none !important;
    opacity: 0.12;
    transform: scale(1);
  }
}

.ph-banner {
  height: 52px;
  overflow: hidden;
  background: var(--surface);
}

.ph-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ph-inner {
  padding: 5px 7px 5px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ph-cat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}

.ph-cat {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.52rem;
  font-weight: 600;
  padding: 2px 7px 2px 4px;
  border-radius: 999px;
  border: 1px solid;
}

.ph-cat svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.ph-cat--live { background: rgba(56, 189, 248, 0.12); border-color: rgba(56, 189, 248, 0.34); color: var(--cat-live); }
.ph-cat--vibe { background: rgba(167, 139, 250, 0.12); border-color: rgba(167, 139, 250, 0.34); color: var(--cat-vibe); }
.ph-cat--hilfe { background: rgba(45, 212, 191, 0.12); border-color: rgba(45, 212, 191, 0.34); color: var(--cat-hilfe); }
.ph-cat--events,
.ph-cat--event { background: rgba(251, 191, 36, 0.12); border-color: rgba(251, 191, 36, 0.34); color: var(--cat-event); }
.ph-cat--jobs { background: rgba(132, 204, 22, 0.12); border-color: rgba(132, 204, 22, 0.34); color: var(--cat-jobs); }
.ph-cat--eil { background: rgba(249, 115, 22, 0.12); border-color: rgba(249, 115, 22, 0.34); color: var(--cat-eil); }

.ph-time-inline {
  font-size: 0.5rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.ph-author {
  font-size: 0.5rem;
  color: var(--muted);
  margin-bottom: 3px;
}

.ph-title {
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ph-desc {
  font-size: 0.5rem;
  color: var(--muted);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ph-link {
  display: inline-block;
  font-size: 0.48rem;
  font-weight: 500;
  color: var(--accent);
  margin-top: 2px;
}

.ph-main-row {
  display: flex;
  gap: 5px;
  flex: 1;
  min-height: 0;
  margin-bottom: 4px;
}

.ph-text-block {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ph-vote-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 22px;
  flex-shrink: 0;
}

.ph-vote-strip svg {
  width: 11px;
  height: 8px;
  color: var(--muted);
}

.ph-score {
  font-size: 0.52rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ph-actions-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 4px;
  margin-top: 2px;
}

.ph-actions-left {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ph-foot {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.48rem;
  font-weight: 500;
  color: var(--muted);
}

.ph-foot svg {
  width: 11px;
  height: 11px;
}

.phone-tabbar {
  display: flex;
  justify-content: space-around;
  padding: 6px 6px 8px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.phone-tab {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.phone-tab svg {
  width: 20px;
  height: 20px;
}

.phone-tab.active {
  background: var(--accent);
  color: #fff;
}

.phone-tab.active svg { color: #fff; }

.phone-caption {
  text-align: center;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--muted2);
}

/* ── Categories ── */
.categories {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
}

.pill--live { color: var(--cat-live); border-color: rgba(56, 189, 248, 0.35); }
.pill--vibe { color: var(--cat-vibe); border-color: rgba(167, 139, 250, 0.35); }
.pill--hilfe { color: var(--cat-hilfe); border-color: rgba(45, 212, 191, 0.35); }
.pill--events { color: var(--cat-event); border-color: rgba(251, 191, 36, 0.35); }
.pill--jobs { color: var(--cat-jobs); border-color: rgba(132, 204, 22, 0.35); }

/* ── Benefits ── */
.benefits {
  padding: 72px 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 720px) {
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent);
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── How it works ── */
.how {
  padding: 72px 0;
  background: linear-gradient(180deg, transparent, rgba(26, 26, 26, 0.6));
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
  counter-reset: step;
}

@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

.step {
  position: relative;
  padding: 20px 18px 18px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Claim ── */
.claim {
  padding: 56px 0;
}

.claim-card {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
}

@media (min-width: 720px) {
  .claim-card { grid-template-columns: 1.1fr 1fr; }
}

.claim-img img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}

.claim-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.claim-line {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.claim-punch {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ── CTA ── */
.cta {
  padding: 80px 0 96px;
  text-align: center;
  position: relative;
}

.cta .section-sub {
  margin: 0 auto 8px;
}

.cta .btn-row {
  justify-content: center;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px 40px;
  text-align: center;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 16px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted2);
}

/* ── Store soon dialog ── */
.store-soon[hidden] { display: none !important; }

.store-soon {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.store-soon__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.store-soon__panel {
  position: relative;
  max-width: 380px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
}

.store-soon__panel h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.store-soon__panel p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.store-soon__coming {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--accent);
}

.store-soon__btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 22px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
