/*
 * Marketing-Landingpage (oeffentlich, vor der Anmeldung).
 *
 * Teilt sich seit der 2026-Neuauflage denselben dunklen Grundton wie die
 * App (app.css) -- vorher bewusst getrennt (helle Visitenkarte vs.
 * dunkles App-Werkzeug), jetzt eine durchgehende Marke ohne Bruch beim
 * Anmelden. Die --l-*-Variablen unten sind deshalb keine eigene Palette
 * mehr, sondern Aliase auf dieselben Token aus app.css (--lime/--gold/
 * --bg/--surface/--text/--muted/--line) -- ein Farbsystem fuer beide
 * Oberflaechen, nicht zwei parallele.
 */

.app--landing {
  max-width: none;
  padding: 0;
  margin: 0;
}

/* Ueberschreibt ausdruecklich die Sidebar-Regel aus app.css (min-width:
 * 1024px) -- die Landingpage hat keine Navigation, braucht also auch
 * keinen linken Rand dafuer. */
@media (min-width: 1024px) {
  .app--landing {
    margin: 0;
  }
}

.landing {
  --l-blue: var(--lime, #cfff04);
  --l-gold: var(--gold, #d4a93e);
  --l-ink: var(--text, #f5f6f7);
  --l-ink-dark: var(--bg, #050505);
  --l-ink-muted: var(--muted, rgba(255, 255, 255, 0.55));
  --l-line: var(--line, rgba(255, 255, 255, 0.08));
  --l-line-strong: rgba(255, 255, 255, 0.18);
  --l-bg-alt: var(--surface, #121314);
  --l-bg-alt-2: var(--surface-2, #16181a);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--l-ink);
  background: var(--l-ink-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

.landing * {
  box-sizing: border-box;
}

.landing h1,
.landing h2,
.landing h3 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.landing__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.landing__section {
  padding: clamp(64px, 10vw, 96px) 24px;
}

.landing__section--alt {
  background: var(--l-bg-alt);
}

.landing__section--dark {
  background: var(--l-ink-dark);
  color: #fff;
}

.landing__eyebrow {
  color: var(--l-blue);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.landing__h2 {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  max-width: 20ch;
  margin-bottom: 48px;
}

.landing__lede {
  color: var(--l-ink-muted);
  font-size: 1.125rem;
  max-width: 52ch;
  margin: 0 0 48px;
}

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

.landing__nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 220ms cubic-bezier(0.2, 0.7, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.landing__nav--scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: var(--l-line);
}

.landing__nav-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
}

.landing__wordmark {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 22px;
  text-decoration: none;
  display: inline-flex;
  color: var(--l-ink);
  transition: color 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.landing__wordmark span:nth-child(2) {
  color: var(--l-blue);
}

.landing__nav-links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 4px;
  flex-wrap: wrap;
}

.landing__nav-link {
  color: var(--l-ink-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  transition: color 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.landing__nav-link:hover {
  color: var(--l-ink);
}

.landing__nav-link--ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  transition: color 220ms cubic-bezier(0.2, 0.7, 0.2, 1), border-color 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.landing__nav--scrolled .landing__nav-link--ghost {
  border-color: var(--l-line-strong);
}

.landing__nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing__nav-locale {
  color: var(--l-ink-muted);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--l-line-strong);
}

.landing__nav-locale:hover {
  color: var(--l-ink);
  border-color: var(--l-blue);
}

.landing__nav-cta {
  color: var(--lime-ink, #0a0a0a);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--l-blue);
  white-space: nowrap;
  transition: filter 150ms ease;
}

.landing__nav-cta:hover {
  filter: brightness(1.1);
}

.landing__nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--l-ink);
  padding: 0;
  cursor: pointer;
}

.landing__nav-mobile {
  display: none;
}

@media (max-width: 860px) {
  .landing__nav-row {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .landing__nav-links {
    display: none;
  }

  .landing__nav-toggle {
    display: inline-flex;
  }

  .landing__nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: var(--l-ink-dark);
    border-top: 1px solid var(--l-line);
    box-shadow: 0 16px 32px -20px rgba(0, 0, 0, 0.6);
    padding: 8px 20px 20px;
    z-index: 49;
  }

  .landing__nav-mobile[hidden] {
    display: none;
  }
}

.landing__nav-mobile-link {
  color: var(--l-ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 4px;
  border-bottom: 1px solid var(--l-line);
}

.landing__nav-mobile-link--cta {
  color: var(--l-blue);
  font-weight: 600;
}

.landing__nav-locale--mobile {
  align-self: flex-start;
  margin-top: 12px;
}

/* ------------------------------------------------------------------ Pills */

.landing__pill {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: filter 150ms ease, transform 150ms ease;
}

.landing__pill:active {
  transform: translateY(1px) scale(0.99);
}

.landing__pill--solid {
  background: var(--l-blue);
  color: var(--lime-ink, #0a0a0a);
}

.landing__pill--solid:hover {
  filter: brightness(1.08);
}

.landing__pill--outline-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

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

/* Bewusst kein zentrierter Vollbild-Hero mehr (fruehere Fassung: dunkles
 * Vollbild-Foto, min-height:100vh, mittig) -- das liest sich als
 * Marketing-Kulisse statt als Produkt. Stattdessen ein Split direkt unter
 * der Navigation: Text links, ein echter Ausschnitt der App rechts, so
 * dass sichtbar ist, was RONO tatsaechlich ist, statt es nur zu behaupten.
 */
.landing__hero {
  position: relative;
  padding: 148px 24px 88px;
  background: var(--l-ink-dark);
  overflow: hidden;
}

/* Weiche Lime-/Gold-Farbflecken hinter dem Textbereich -- das echte Foto
 * sitzt eigenstaendig in .landing__hero-visual, dieser Verlauf liegt nur
 * unter der Textspalte. */
.landing__hero-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38% 50% at 8% 0%, rgba(207, 255, 4, 0.07) 0%, transparent 70%),
    radial-gradient(30% 45% at 96% 30%, rgba(212, 169, 62, 0.12) 0%, transparent 65%);
}

/* Feines Korn statt einer glatten Flaeche -- reines CSS, kein Bild. */
.landing__hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%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");
}

.landing__hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

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

.landing__hero-content {
  width: 100%;
}

.landing__hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1.03;
  color: var(--l-ink);
  margin: 0 0 22px;
}

.landing__hero h1 span {
  color: var(--l-blue);
}

.landing__hero-lede {
  color: var(--l-ink-muted);
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  max-width: 46ch;
  line-height: 1.5;
  margin: 0 0 36px;
}

.landing__hero-lede strong {
  color: var(--l-ink);
}

.landing__hero-ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.landing__hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing__hero-badge-icon {
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--l-line-strong);
  color: var(--l-blue);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.landing__hero-badge-title {
  color: var(--l-ink);
  font-weight: 600;
  font-size: 0.9rem;
}

.landing__hero-badge-sub {
  color: var(--l-ink-muted);
  font-size: 0.8rem;
}

/* Eine fliessende Zeile statt dreier gleich grosser Kennzahlkacheln --
 * die Fakten sind Beleg, keine Statistik, die groess wirken soll, als sie
 * ist. */
.landing__hero-trust {
  display: flex;
  gap: clamp(18px, 3vw, 32px);
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 4px;
  border-top: 1px solid var(--l-line);
}

.landing__hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--l-ink-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.landing__hero-trust-icon {
  display: flex;
  color: var(--l-blue);
}

/* Rechte Spalte: ein echtes Kampagnenfoto (Spielerin + App-Ausschnitt). */
.landing__hero-visual {
  display: flex;
  justify-content: center;
}

.landing__hero-visual-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 32px 64px -24px rgba(10, 14, 12, 0.35);
}

/* ----------------------------------------------------- Hero-Einblendung
 *
 * Anders als .reveal (scroll-ausgeloest): Der Hero ist beim Laden schon
 * sichtbar, blendet sich also sofort und einmalig gestaffelt ein, nicht
 * erst beim Scrollen.
 */

@keyframes rono-hero-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing__hero-content > .reveal-hero {
  opacity: 0;
  animation: rono-hero-in 0.7s var(--ease) forwards;
}

.landing__hero-content > .reveal-hero:nth-child(1) {
  animation-delay: 0.05s;
}

.landing__hero-content > .reveal-hero:nth-child(2) {
  animation-delay: 0.15s;
}

.landing__hero-content > .reveal-hero:nth-child(3) {
  animation-delay: 0.28s;
}

.landing__hero-content > .reveal-hero:nth-child(4) {
  animation-delay: 0.4s;
}

.landing__hero-content > .reveal-hero:nth-child(5) {
  animation-delay: 0.52s;
}

@media (prefers-reduced-motion: reduce) {
  .landing__hero-content > .reveal-hero {
    opacity: 1;
    animation: none;
  }
}

/* -------------------------------------------------------------- Grids */

.landing__grid {
  display: grid;
  gap: 48px;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.landing__grid--features {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.landing__grid--rewards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

/* --------------------------------------------------------- "So funktioniert's" */

.landing__step-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(155deg, var(--l-bg-alt) 0%, var(--l-bg-alt-2) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing__step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: -0.03em;
  color: var(--l-ink);
  opacity: 0.14;
  line-height: 1;
}

.landing__step-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(207, 255, 4, 0.08);
  border: 1px solid rgba(207, 255, 4, 0.2);
  color: var(--l-blue);
  display: grid;
  place-items: center;
}

.landing h3 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.015em;
  font-size: 1.125rem;
  margin: 0 0 8px;
}

.landing__body {
  color: var(--l-ink-muted);
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

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

.landing__icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--l-bg-alt-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.landing__icon-badge svg {
  display: block;
}

/* ----------------------------------------------------------------- Proof */

.landing__proof-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.landing__proof-pill {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.875rem;
  color: #fff;
}

/* ---------------------------------------------------------------- Rewards */

.landing__reward-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: var(--l-ink-dark);
  aspect-ratio: 4 / 3;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 16px 32px -18px rgba(11, 13, 16, 0.55);
  transition: transform 0.25s var(--l-ease, cubic-bezier(0.2, 0.7, 0.2, 1)), box-shadow 0.25s ease;
}

@media (hover: hover) {
  .landing__reward-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 22px 40px -16px rgba(11, 13, 16, 0.65);
  }
}

/* Vier eigene Farbstimmungen statt echter Fotos -- pro Kategorie erkennbar
 * unterschiedlich, ohne von Bilddateien abzuhaengen. */
.landing__reward-card--mountain {
  background: radial-gradient(120% 90% at 75% 15%, #3d2418 0%, #0b0d10 65%);
}

.landing__reward-card--dumbbell {
  background: radial-gradient(120% 90% at 75% 15%, #3a2712 0%, #0b0d10 65%);
}

.landing__reward-card--refresh {
  background: radial-gradient(120% 90% at 75% 15%, #3a1d16 0%, #0b0d10 65%);
}

.landing__reward-card--ticket {
  background: radial-gradient(120% 90% at 75% 15%, #3a2c12 0%, #0b0d10 65%);
}

.landing__reward-icon {
  position: absolute;
  right: -6px;
  bottom: -6px;
  color: rgba(207, 255, 4, 0.22);
  filter: drop-shadow(0 0 24px rgba(207, 255, 4, 0.3));
}

.landing__reward-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--l-blue);
  color: var(--lime-ink, #0a0a0a);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.landing__reward-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
}

.landing__reward-name {
  color: #fff;
  font-weight: 600;
  font-size: 1.0625rem;
  margin-bottom: 2px;
}

.landing__reward-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8125rem;
}

.landing__reward-sub--cta {
  color: var(--l-blue);
  font-weight: 700;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

@media (hover: hover) {
  .landing__reward-card:hover .landing__reward-sub--cta {
    opacity: 1;
  }
}

/* --------------------------------------------------------------- Signup band */

.landing__band {
  border: 1px solid var(--l-line);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.landing__band-lead {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  max-width: 420px;
}

.landing__band-icon {
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 12px;
  background: var(--l-bg-alt-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing__band-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

/* ---------------------------------------------------------------- Partners */

.landing__partner-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.landing__partner-list p {
  font-size: 1.125rem;
  color: var(--l-ink);
  line-height: 1.5;
  margin: 0;
}

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

.landing__final {
  position: relative;
  padding: clamp(96px, 14vw, 160px) 24px;
  background: var(--l-ink-dark);
  text-align: center;
  overflow: hidden;
}

.landing__final-photo {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 60% 30%, #1b2436 0%, #0b0d10 65%);
}

.landing__final-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.6), rgba(11, 13, 16, 0.85));
  pointer-events: none;
}

.landing__final-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.landing__final h2 {
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  margin-bottom: 32px;
}

/* ------------------------------------------------------------------ Phones */

.landing__phones {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.landing__phone {
  width: 260px;
}

.landing__phone-label {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.landing__phone-bezel {
  border-radius: 36px;
  border: 8px solid #1c2128;
  background: #000;
  padding: 10px;
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.7);
}

.landing__phone-screen {
  height: 480px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.landing__phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 20px;
  border-radius: 999px;
  background: #000;
  z-index: 3;
}

.landing__wallet {
  height: 100%;
  background: linear-gradient(180deg, #0b0d10, #141c33);
  padding: 20px 18px;
  font-family: "Inter", sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.landing__wallet-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 26px;
}

.landing__wallet-balance {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 22px;
  text-align: center;
}

.landing__wallet-balance-value {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--l-blue);
}

.landing__wallet-balance-unit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.landing__wallet-balance-btn {
  margin-top: 14px;
  background: var(--l-blue);
  color: var(--lime-ink, #0a0a0a);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 9px 0;
}

.landing__wallet-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}

.landing__wallet-card-initial {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 10px;
  background: var(--l-blue);
  color: var(--lime-ink, #0a0a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.landing__wallet-card-title {
  font-size: 0.8125rem;
  font-weight: 600;
}

.landing__wallet-card-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
}

.landing__wallet-card-action {
  font-size: 0.6875rem;
  color: var(--l-blue);
  font-weight: 600;
  white-space: nowrap;
}

.landing__map {
  height: 100%;
  background: #141820;
  padding: 20px 18px;
  font-family: "Inter", sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing__map-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 26px;
}

.landing__map-canvas {
  flex: 1;
  border-radius: 16px;
  background: repeating-linear-gradient(135deg, #1c2333, #1c2333 10px, #20283a 10px, #20283a 20px);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.landing__map-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--l-blue);
  box-shadow: 0 0 0 6px rgba(207, 255, 4, 0.25);
}

.landing__map-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing__map-card-title {
  font-size: 0.8125rem;
  font-weight: 600;
}

.landing__map-card-sub {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
}

.landing__map-card-action {
  font-size: 0.6875rem;
  color: var(--l-blue);
  font-weight: 600;
}

.landing__scan {
  height: 100%;
  background: var(--l-ink-dark);
  padding: 20px 18px;
  font-family: "Inter", sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.landing__scan-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.landing__scan-frame {
  width: 180px;
  height: 180px;
  border-radius: 20px;
  border: 2px solid var(--l-blue);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing__scan-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--l-blue);
  border-style: solid;
  border-width: 0;
}

.landing__scan-corner--tl {
  top: -2px;
  left: -2px;
  border-top-width: 4px;
  border-left-width: 4px;
  border-radius: 8px 0 0 0;
}

.landing__scan-corner--tr {
  top: -2px;
  right: -2px;
  border-top-width: 4px;
  border-right-width: 4px;
  border-radius: 0 8px 0 0;
}

.landing__scan-corner--bl {
  bottom: -2px;
  left: -2px;
  border-bottom-width: 4px;
  border-left-width: 4px;
  border-radius: 0 0 0 8px;
}

.landing__scan-corner--br {
  bottom: -2px;
  right: -2px;
  border-bottom-width: 4px;
  border-right-width: 4px;
  border-radius: 0 0 8px 0;
}

.landing__scan-caption {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 22ch;
}

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

.landing__footer {
  background: var(--l-ink-dark);
  color: rgba(255, 255, 255, 0.62);
  padding: 64px 24px 32px;
}

.landing__footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.landing__footer-brand {
  max-width: 280px;
}

.landing__footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 12px 0 0;
}

.landing__footer-cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.landing__footer-col-title {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.landing__footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing__footer-links a,
.landing__footer-links span {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  font-size: 0.9375rem;
}

.landing__footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
  font-size: 0.8125rem;
}

/* ------------------------------------------------------- Scroll-Reveal
 *
 * Nur fuer Inhalt unterhalb des ersten Bildschirms -- der Hero ist beim
 * Laden schon sichtbar und wird nicht nochmal "eingeblendet".
 */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .landing * {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===========================================================================
 * Figma-Abgleich (node-id 3:4): Hero-Ueberschrift, Feature-Zeile,
 * Kachel-Schritte, Sportarten-Reihe, Praemienkarten.
 *
 * Ohne Fotos -- derselbe Grundsatz wie .landing__hero-photo oben ("nichts
 * vortaeuschen, was nicht da ist"): Sportarten- und Praemienkarten tragen
 * Icon + Verlauf statt Stockfotos, dieselbe Sprache wie der Rest des
 * Icon-Systems (icons.js). Die Verlaufsfarben stammen aus denselben
 * Marken-Token (--l-blue/--l-gold) statt eigener Hex-Werte.
 * ========================================================================= */

.landing__hero-h1 {
  display: flex;
  flex-direction: column;
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--l-ink);
  margin: 0 0 22px;
}

.landing__hero-h1-line span {
  color: var(--l-blue);
}

.landing__hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 4px;
}

.landing__hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.landing__hero-feature-icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--l-bg-alt);
  border: 1px solid var(--l-line);
  color: var(--l-blue);
  display: grid;
  place-items: center;
}

.landing__hero-feature-title {
  color: var(--l-ink);
  font-weight: 600;
  font-size: 0.875rem;
}

.landing__hero-feature-sub {
  color: var(--l-ink-muted);
  font-size: 0.75rem;
}

.landing__pill--solid {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.landing__pill-arrow {
  display: flex;
}

/* ------------------------------------------------------------- How it works */

.landing__how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.landing__how-header {
  flex: none;
  width: 100%;
  max-width: 320px;
}

.landing__how .landing__h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0;
  max-width: none;
}

.landing__how .landing__h2 span {
  color: var(--l-blue);
}

.landing__steps-row {
  flex: 1 1 480px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.landing__steps-arrow {
  flex: none;
  display: none;
  color: var(--l-ink-muted);
}

@media (min-width: 760px) {
  .landing__steps-arrow {
    display: flex;
  }
}

.landing__step-card {
  flex: 1 1 0;
  min-width: 180px;
  background: var(--l-bg-alt);
  border: 1px solid var(--l-line);
  border-radius: 16px;
  padding: 24px;
}

.landing__step-card h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
}

.landing__step-card .landing__body {
  margin: 0;
  font-size: 0.875rem;
  max-width: none;
}

.landing__step-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.landing__step-icon-box {
  width: 48px;
  height: 40px;
  border-radius: 12px;
  background: var(--l-bg-alt-2);
  border: 1px solid var(--l-line);
  color: var(--l-blue);
  display: grid;
  place-items: center;
}

.landing__step-card .landing__step-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--l-line-strong);
  position: static;
}

/* -------------------------------------------------------------- Sportarten */

.landing__sports-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.landing__sports-header {
  flex: none;
  width: 100%;
  max-width: 320px;
}

.landing__sports-row {
  flex: 1 1 480px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

/* Foto je Sportart als Kartenhintergrund, mit einem dunklen Verlauf darueber
 * (::after) fuer lesbaren weissen Text -- der Tonwert (a/b/c) faerbt nur
 * noch das Icon, nicht mehr den Kartenhintergrund selbst. */
.landing__sport-card {
  position: relative;
  height: 200px;
  border-radius: 16px;
  border: 1px solid var(--l-line);
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 16px;
  color: #fff;
  font-weight: 700;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.landing__sport-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 12, 0.05) 40%, rgba(10, 14, 12, 0.78) 100%);
}

.landing__sport-card-icon,
.landing__sport-card-name {
  position: relative;
  z-index: 1;
}

.landing__sport-card-icon {
  display: flex;
}

.landing__sport-card--a .landing__sport-card-icon {
  color: var(--l-blue);
}

.landing__sport-card--b .landing__sport-card-icon {
  color: #d4a93e;
}

.landing__sport-card--c .landing__sport-card-icon {
  color: #8fe36b;
}

/* ------------------------------------------------------------- Praemien v2 */

.landing__rewards2-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.landing__rewards2-header {
  flex: none;
  width: 100%;
  max-width: 320px;
}

.landing__rewards2-row {
  flex: 1 1 480px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.landing__reward-card2 {
  height: 280px;
  border-radius: 24px;
  border: 1px solid var(--l-line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  text-decoration: none;
  transition: transform 150ms ease, border-color 150ms ease;
}

.landing__reward-card2:hover {
  transform: translateY(-2px);
  border-color: var(--l-blue);
}

.landing__reward-card2--a {
  background: linear-gradient(160deg, rgba(207, 255, 4, 0.14) 0%, var(--l-bg-alt) 55%);
}

.landing__reward-card2--b {
  background: linear-gradient(160deg, rgba(212, 169, 62, 0.16) 0%, var(--l-bg-alt) 55%);
}

.landing__reward-card2--c {
  background: linear-gradient(160deg, rgba(169, 199, 242, 0.14) 0%, var(--l-bg-alt) 55%);
}

.landing__reward-card2-badge {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  color: var(--l-ink);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.landing__reward-card2-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.landing__reward-card2-sub {
  color: var(--l-ink-muted);
  font-size: 0.8rem;
  max-width: 26ch;
}

.landing__reward-card2-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--l-blue);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 12px;
}

.landing__reward-card2-chevron {
  display: flex;
}

@media (max-width: 759px) {
  .landing__how-inner,
  .landing__sports-inner,
  .landing__rewards2-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing__how-header,
  .landing__sports-header,
  .landing__rewards2-header {
    max-width: none;
  }

  /* Ohne diese Regel bleiben die drei Schritt-Karten (je min-width: 180px)
   * in einer Zeile nebeneinander -- auf schmalen Viewports draengt sie das
   * ueber den Rand hinaus, wo .landing (overflow-x: hidden) sie abschneidet
   * statt scrollbar zu machen. */
  .landing__steps-row {
    flex-wrap: wrap;
  }

  .landing__step-card {
    flex: 1 1 100%;
  }
}
