/* ============================================================
   Playmakerz — Landingpage
   Clean, editorial, weiss/blau. Funnel Display für Headlines,
   System-Sans für Fliesstext. Keine Cards, keine Icon-Chips.
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #0a0f1f;
  --ink-soft: #5a6478;
  --ink-faint: #9aa3b2;
  --line: #e8eaf0;
  --blue: #1a57ff; /* offizielles Playmakerz-Markenblau */
  --blue-deep: #1443d6;
  --blue-press: #0f33a8;
  --blue-tint: #f3f6ff;

  --maxw: 1120px;
  --pad: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(5rem, 11vw, 9.5rem);

  --font-display: 'Funnel Display', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* Accessibility -------------------------------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0 0 8px 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

:where(a, button):focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Buttons -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease,
    box-shadow 0.18s ease, color 0.18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--blue);
  color: #fff;
}
.btn--primary:hover {
  background: var(--blue-deep);
}
.btn--primary:active {
  background: var(--blue-press);
}

.btn--small {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
}
.btn--lg {
  padding: 1.05rem 2rem;
  font-size: 1.0625rem;
}

/* App-Store-Button (schwarz, Standard-Look) */
.btn--store {
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.4rem;
}
.btn--store:hover {
  background: #1b2236;
}
.btn--store .apple,
.btn--store .gplay {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fff;
}
.btn--store__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1;
}
.btn--store__text small {
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
  margin-bottom: 2px;
}
.btn--store--lg {
  padding: 0.85rem 1.7rem;
}
.btn--store--lg .apple,
.btn--store--lg .gplay {
  width: 1.5rem;
  height: 1.5rem;
}

/* Gruppe aus App-Store- + Google-Play-Button */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.btn--store--lg .btn--store__text {
  font-size: 1.35rem;
}

/* Text-Link mit Pfeil */
.link-arrow {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  position: relative;
}
.link-arrow::after {
  content: '→';
  margin-left: 0.4rem;
  display: inline-block;
  transition: transform 0.18s ease;
}
.link-arrow:hover {
  color: var(--blue);
}
.link-arrow:hover::after {
  transform: translateX(4px);
}

/* Header --------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
}
.wordmark img {
  height: 26px;
  width: auto;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav > a:not(.btn) {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav > a:not(.btn):hover {
  color: var(--ink);
}

/* Hero ----------------------------------------------------------- */
.hero {
  padding-top: clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
  background:
    radial-gradient(60% 80% at 85% -10%, rgba(26, 87, 255, 0.08), transparent 60%),
    var(--bg);
}
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(2.75rem, 6.4vw, 5.25rem);
}
.hero__title .accent {
  color: var(--blue);
}
.hero__lead {
  max-width: 34ch;
  margin-top: 1.6rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  color: var(--ink-soft);
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* Zahlen-Band ---------------------------------------------------- */
.stats {
  padding-block: clamp(2.75rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding-left: clamp(1.25rem, 3.5vw, 2.5rem);
  border-left: 1px solid var(--line);
}
.stat:first-child {
  padding-left: 0;
  border-left: none;
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1;
  color: var(--blue);
}
.stat__label {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

/* Pull-Quote ----------------------------------------------------- */
.quote {
  margin: 2.2rem 0;
  padding-left: 1.4rem;
  border-left: 3px solid var(--blue);
}
.quote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink);
}
/* Zitat-Signatur mit Portrait */
.quote__by,
.mission__by {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.2rem;
}
.quote__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  background: var(--blue-tint);
}
.quote__who {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--ink-soft);
}
.quote__who strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}
.mission__by .quote__who {
  color: rgba(255, 255, 255, 0.8);
}
.mission__by .quote__who strong {
  color: #fff;
}
.mission__by .quote__avatar {
  background: rgba(255, 255, 255, 0.15);
}

/* Gründer-Raster */
.founders__grid {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
.founder__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  background: var(--blue-tint);
  display: block;
}
.founder__quote {
  margin: 1.1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
}
.founder__name {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.founder__role {
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Generische Section -------------------------------------------- */
.section {
  padding-block: var(--section-y);
}
.section--center {
  text-align: center;
}
.section__index {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.6rem;
}
.section__index--light {
  color: rgba(255, 255, 255, 0.7);
}
.section__title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 18ch;
}
.section--center .section__title {
  max-width: none;
}
.section__title--lg {
  font-size: clamp(2.4rem, 6vw, 4rem);
}
.section__lead {
  margin-top: 1.1rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--ink-soft);
}

/* Prose-Block (Was ist Playmakerz) */
.prose {
  max-width: 62ch;
}
.prose p {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.62;
  color: var(--ink-soft);
}

/* Mission (full-bleed blau) ------------------------------------- */
.mission {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1443d6 0%, #1a57ff 55%, #4f7dff 100%);
  color: #fff;
  padding-block: clamp(6rem, 12vw, 11rem);
}
.mission > .container {
  position: relative;
  z-index: 1;
}
/* Dezenter Icon-Watermark, teils ausserhalb des Rahmens */
.mission__mark {
  position: absolute;
  right: -4%;
  bottom: -22%;
  width: clamp(280px, 38vw, 560px);
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}
.mission__title {
  font-size: clamp(2.1rem, 5vw, 4rem);
  max-width: 16ch;
}
.mission__text {
  max-width: 56ch;
  margin-top: 2rem;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}
.mission__cite {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

/* App-Sektion */
.app__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* Teamzone ------------------------------------------------------- */
.teamzone__intro,
.partner__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.teamzone__why p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
}
.teamzone__why p + p {
  margin-top: 1.2rem;
}

/* Funktionsliste: keine Boxen/Icons — nur Typo + Haarlinien */
.caps {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(2rem, 5vw, 4rem);
}
.cap {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.cap h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.45rem;
}
.cap p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Preis-Band */
.pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--blue-tint);
}
.pricing__price {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
}
.pricing__price span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0;
  margin-left: 0.3rem;
}
.pricing__alt {
  margin-top: 0.7rem;
  font-size: 1rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(26, 87, 255, 0.1);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

/* Partner -------------------------------------------------------- */
.section--partner {
  background: var(--blue-tint);
  border-top: 1px solid var(--line);
}
.partner__why p {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
}
.partner__why p + p {
  margin-top: 1.2rem;
}

/* Loop-Statement: Aktion → XP → Level → Belohnung */
.loop-line {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.9rem;
}
.loop-line span {
  color: var(--blue);
  font-weight: 700;
}

/* Partner-Vorteile: 3 Punkte, nur Typo + kräftige Trennlinie */
.points {
  list-style: none;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 clamp(1.5rem, 4vw, 3rem);
}
.points li {
  padding-top: 1.4rem;
  border-top: 2px solid var(--ink);
}
.points h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}
.points p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.partner__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}
.partner__cta-note {
  font-size: 1rem;
  color: var(--ink-soft);
}

/* Footer --------------------------------------------------------- */
.site-footer {
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
}
.wordmark--footer {
  height: 24px;
  width: auto;
  display: block;
}
.site-footer__note {
  margin-top: 0.7rem;
  max-width: 42ch;
  font-size: 0.875rem;
  color: var(--ink-faint);
}
.site-footer__nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.site-footer__nav a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.site-footer__nav a:hover {
  color: var(--blue);
}
.site-footer__copy {
  font-size: 0.825rem;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

/* Reveal-Animation (nur mit JS) --------------------------------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive ----------------------------------------------------- */
@media (max-width: 760px) {
  .nav {
    gap: 1rem;
  }
  .nav > a:not(.btn) {
    display: none;
  }
  .partner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .teamzone__intro,
  .partner__intro {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .caps {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .cap {
    padding: 1.3rem 0;
  }
  .pricing {
    justify-content: flex-start;
  }
  .points {
    grid-template-columns: 1fr;
  }
  .points li {
    padding: 1.3rem 0 0;
  }
  .points li + li {
    margin-top: 1.5rem;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.5rem;
  }
  .stat {
    padding-left: 0;
    border-left: none;
  }
  .founders__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__actions {
    gap: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn {
    transition: none;
  }
}
