/* Statische Website fuer show.bitbeans.de. */
:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --ink: #17202b;
  --muted: #5e6c7f;
  --line: #dde5ed;
  --brand: #0f5e6e;
  --accent: #7a5a20;
  --radius: 8px;
  --shadow: 0 16px 38px -30px rgba(23, 32, 43, .45);
  --maxw: 1080px;
  --wrap-pad: 24px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible { outline: 3px solid rgba(15, 94, 110, .28); outline-offset: 3px; }
img { display: block; max-width: 100%; }
.wrap { margin: 0 auto; max-width: var(--maxw); padding: 0 24px; }

.site-header {
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .wrap {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 68px;
}
.logo {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}
.nav a {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
  margin-left: 22px;
  text-decoration: none;
}
.nav a:hover,
.site-footer a:hover { color: var(--ink); }

.home { padding: 72px 24px 92px; }
.intro {
  max-width: 780px;
  padding: 10px 0 42px;
}
.eyebrow {
  color: var(--brand);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.intro h1 {
  font-size: 3rem;
  line-height: 1.12;
  margin-top: 14px;
}
.lead {
  color: var(--muted);
  font-size: 1.18rem;
  margin-top: 18px;
  max-width: 620px;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.quick-links a {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
}
.quick-links a:first-child {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.app-directory {
  border-top: 1px solid var(--line);
  padding-top: 34px;
}
.section-title {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.section-title h2 {
  font-size: 1.6rem;
  line-height: 1.2;
}
.app-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.app-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 3px solid var(--brand);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: block;
  min-height: 132px;
  padding: 20px;
  text-decoration: none;
}
.app-tile:nth-child(2) { border-top-color: var(--accent); }
.app-tile:nth-child(3) { border-top-color: #566579; }
.app-tile span {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}
.app-tile small {
  color: var(--muted);
  display: block;
  font-size: .92rem;
  margin-top: 8px;
}

.doc {
  margin: 0 auto;
  max-width: 820px;
  padding: 58px 24px 84px;
}
.doc h1 {
  font-size: min(2.35rem, 8.8vw);
  line-height: 1.18;
  overflow-wrap: break-word;
}
.doc .updated {
  color: var(--muted);
  margin-top: 6px;
}
.doc h2 {
  border-top: 1px solid var(--line);
  font-size: 1.18rem;
  margin: 34px 0 10px;
  padding-top: 24px;
}
.doc p,
.doc li { color: #2b3744; }
.doc ul { margin: 10px 0 10px 22px; }
.doc a { color: var(--brand); }
.back {
  color: var(--brand);
  display: inline-block;
  font-weight: 700;
  margin-bottom: 24px;
  text-decoration: none;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
  padding: 34px 0;
}
.site-footer .wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.site-footer a {
  color: var(--muted);
  font-weight: 700;
  margin-right: 18px;
  text-decoration: none;
}

@media (max-width: 820px) {
  .home { padding-top: 48px; }
  .intro h1 { font-size: 2.35rem; }
  .app-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --wrap-pad: 18px; }
  .wrap { padding: 0 var(--wrap-pad); }
  .site-header .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    padding-bottom: 14px;
    padding-top: 14px;
  }
  .nav a {
    margin-left: 0;
    margin-right: 16px;
  }
  .intro h1 { font-size: 2rem; }
  .lead { font-size: 1.05rem; }
}

/* Waylino Single-App Marketingseite. */
body.waylino-page {
  --wl-ink: #1d332b;
  --wl-muted: #64746c;
  --wl-paper: #edebe4;
  --wl-surface: #ffffff;
  --wl-accent: #3f7b5b;
  --wl-accent-strong: #2f6549;
  --wl-line: rgba(29, 51, 43, .15);
  --wl-warm: #b9774f;
  background: #f8f8f4;
  color: var(--wl-ink);
}

.waylino-page a:focus-visible {
  outline-color: rgba(63, 123, 91, .34);
}

.waylino-header {
  background: rgba(248, 248, 244, .94);
  border-bottom-color: var(--wl-line);
}

.waylino-header .wrap {
  min-height: 72px;
}

.waylino-logo {
  align-items: center;
  color: var(--wl-ink);
  display: flex;
  gap: 10px;
}

.waylino-logo img {
  border-radius: 8px;
  box-shadow: 0 10px 22px -18px rgba(29, 51, 43, .8);
}

.waylino-header-actions {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  min-width: 0;
}

.waylino-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.waylino-nav a {
  color: var(--wl-muted);
  margin-left: 0;
}

.waylino-nav a:hover {
  color: var(--wl-ink);
}

.waylino-language {
  border: 1px solid var(--wl-line);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
}

.waylino-language a {
  color: var(--wl-muted);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
  padding: 8px 9px;
  text-decoration: none;
}

.waylino-language a[aria-current="page"] {
  background: var(--wl-ink);
  color: #fff;
}

.wl-hero {
  background:
    linear-gradient(135deg, rgba(237, 235, 228, .88), rgba(255, 255, 255, .9) 52%, rgba(63, 123, 91, .14)),
    #f8f8f4;
  border-bottom: 1px solid var(--wl-line);
  overflow: hidden;
}

.wl-hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px);
  padding-bottom: 54px;
  padding-top: 58px;
}

.wl-hero-copy {
  max-width: 660px;
}

.wl-kicker {
  color: var(--wl-accent-strong);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.wl-hero h1 {
  color: var(--wl-ink);
  font-size: 4.8rem;
  line-height: .98;
  margin: 0;
}

.wl-claim {
  color: var(--wl-accent);
  font-size: 1.65rem;
  font-weight: 850;
  line-height: 1.18;
  margin-top: 18px;
}

.wl-lead {
  color: #334a40;
  font-size: 1.16rem;
  line-height: 1.72;
  margin-top: 18px;
  max-width: 590px;
}

.wl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.wl-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 850;
  justify-content: center;
  min-height: 46px;
  padding: 11px 17px;
  text-decoration: none;
}

.wl-button-primary {
  background: var(--wl-ink);
  color: #fff;
  box-shadow: 0 18px 34px -26px rgba(29, 51, 43, .9);
}

.wl-button-primary:hover {
  background: #14251f;
}

.wl-button-ghost {
  background: rgba(255, 255, 255, .62);
  border-color: var(--wl-line);
  color: var(--wl-ink);
}

.wl-button-ghost:hover {
  background: #fff;
}

.store-button-appstore,
.product-button-appstore {
  background: #111;
  border-color: #111;
  color: #fff;
}

.store-button-appstore:hover,
.product-button-appstore:hover {
  background: #000;
  color: #fff;
}

.store-button-play,
.product-button-play {
  background: rgba(255, 255, 255, .72);
  border-color: var(--wl-line);
  color: var(--wl-ink);
}

.wl-final-actions,
.product-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.wl-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  max-width: 520px;
}

.wl-facts div {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--wl-line);
  border-radius: 8px;
  padding: 14px 16px;
}

.wl-facts dt {
  color: var(--wl-muted);
  font-size: .78rem;
  font-weight: 800;
}

.wl-facts dd {
  color: var(--wl-ink);
  font-size: 1.05rem;
  font-weight: 850;
  margin-top: 2px;
}

.wl-hero-media {
  justify-self: end;
  position: relative;
  width: min(100%, 380px);
}

.wl-hero-media::before {
  background: rgba(63, 123, 91, .18);
  border-radius: 8px;
  content: "";
  inset: 18px -18px -18px 18px;
  position: absolute;
}

.wl-hero-media img {
  border: 1px solid rgba(29, 51, 43, .12);
  border-radius: 8px;
  box-shadow: 0 28px 54px -34px rgba(29, 51, 43, .72);
  display: block;
  height: auto;
  position: relative;
  width: 100%;
}

.wl-proof {
  background: var(--wl-ink);
  color: #f9faf6;
}

.wl-proof ul {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.wl-proof li {
  border-left: 1px solid rgba(255, 255, 255, .12);
  font-weight: 850;
  min-height: 74px;
  padding: 24px 18px;
  text-align: center;
}

.wl-proof li:last-child {
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.wl-section {
  padding: 82px 0;
}

.wl-section-light {
  background: #fff;
}

.wl-play-layout,
.wl-fair-layout,
.wl-faq-layout {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
}

.wl-section-copy,
.wl-section-head {
  max-width: 650px;
}

.wl-section h2,
.wl-final h2 {
  color: var(--wl-ink);
  font-size: 2.35rem;
  line-height: 1.12;
}

.wl-section p,
.wl-final p {
  color: #40564c;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-top: 14px;
}

.wl-feature-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wl-feature {
  background: #f8f8f4;
  border: 1px solid var(--wl-line);
  border-radius: 8px;
  min-height: 205px;
  padding: 22px;
}

.wl-feature span {
  color: var(--wl-warm);
  display: block;
  font-size: .9rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.wl-feature h3 {
  color: var(--wl-ink);
  font-size: 1.13rem;
  line-height: 1.25;
}

.wl-feature p {
  color: var(--wl-muted);
  font-size: .96rem;
  line-height: 1.62;
  margin-top: 10px;
}

.wl-section-head {
  margin-bottom: 30px;
}

.wl-shot-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wl-shot {
  background: #fff;
  border: 1px solid var(--wl-line);
  border-radius: 8px;
  overflow: hidden;
}

.wl-shot img {
  background: var(--wl-paper);
  display: block;
  height: auto;
  width: 100%;
}

.wl-shot figcaption {
  border-top: 1px solid var(--wl-line);
  padding: 16px;
}

.wl-shot strong,
.wl-shot span {
  display: block;
}

.wl-shot strong {
  color: var(--wl-ink);
  font-size: 1rem;
}

.wl-shot span {
  color: var(--wl-muted);
  font-size: .9rem;
  line-height: 1.45;
  margin-top: 3px;
}

.wl-section-dark {
  background: var(--wl-ink);
  color: #fff;
}

.wl-section-dark .wl-kicker {
  color: #b7ddc3;
}

.wl-section-dark h2,
.wl-section-dark p {
  color: #fff;
}

.wl-section-dark p {
  opacity: .86;
}

.wl-checklist {
  align-self: start;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  list-style: none;
  padding: 12px;
}

.wl-checklist li {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .9);
  font-weight: 750;
  line-height: 1.5;
  padding: 14px 12px;
}

.wl-checklist li:last-child {
  border-bottom: 0;
}

.wl-faq-section {
  background: var(--wl-paper);
}

.wl-faq-list {
  display: grid;
  gap: 12px;
}

.wl-faq-list details {
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--wl-line);
  border-radius: 8px;
  padding: 18px 20px;
}

.wl-faq-list summary {
  color: var(--wl-ink);
  cursor: pointer;
  font-weight: 850;
}

.wl-faq-list p {
  color: var(--wl-muted);
  margin-top: 10px;
}

.wl-faq-list a {
  color: var(--wl-accent-strong);
  font-weight: 800;
}

.wl-final {
  background: #fff;
  border-top: 1px solid var(--wl-line);
  padding: 34px 0;
}

.wl-final-inner {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 64px minmax(0, 1fr) auto;
}

.wl-final img {
  border-radius: 8px;
}

.wl-final h2 {
  font-size: 1.55rem;
}

.wl-final p {
  margin-top: 4px;
}

.waylino-footer {
  background: #f8f8f4;
  border-top-color: var(--wl-line);
}

@media (max-width: 940px) {
  .wl-hero-grid,
  .wl-play-layout,
  .wl-fair-layout,
  .wl-faq-layout {
    grid-template-columns: 1fr;
  }

  .wl-hero-media {
    justify-self: start;
    max-width: 340px;
  }

  .wl-shot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wl-proof ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wl-final-inner {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .wl-final .wl-button,
  .wl-final-actions {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .waylino-header .wrap {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    min-height: 64px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .waylino-header-actions {
    flex: 1 1 auto;
  }

  .waylino-nav {
    flex: 1;
    flex-wrap: nowrap;
    gap: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .waylino-nav a {
    font-size: .88rem;
    margin-right: 0;
  }

  .wl-hero-grid {
    gap: 22px;
    grid-template-columns: 1fr;
    padding-bottom: 28px;
    padding-top: 28px;
  }

  .wl-hero h1 {
    font-size: 2.75rem;
  }

  .wl-claim {
    font-size: 1.2rem;
    margin-top: 10px;
  }

  .wl-lead {
    font-size: .98rem;
    line-height: 1.55;
    margin-top: 12px;
  }

  .wl-actions {
    gap: 9px;
    margin-top: 18px;
  }

  .wl-button {
    flex: 1 1 160px;
    font-size: .92rem;
    justify-content: center;
    min-height: 42px;
    padding: 9px 12px;
  }

  .wl-facts {
    display: none;
  }

  .wl-hero-media {
    justify-self: center;
    max-width: min(70vw, 280px);
    width: 100%;
  }

  .wl-hero-media::before {
    inset: 10px -8px -10px 8px;
  }

  .wl-section {
    padding: 58px 0;
  }

  .wl-section h2 {
    font-size: 1.9rem;
  }

  .wl-feature-grid,
  .wl-proof ul {
    grid-template-columns: 1fr;
  }

  .wl-shot-grid {
    display: flex;
    gap: 14px;
    margin-left: calc(var(--wrap-pad) * -1);
    margin-right: calc(var(--wrap-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--wrap-pad) 14px;
    scroll-padding-left: var(--wrap-pad);
    scroll-snap-type: x mandatory;
  }

  .wl-shot {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }

  .wl-feature {
    min-height: 0;
  }

  .wl-proof li {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    min-height: 0;
    padding: 17px 12px;
  }

  .wl-proof li:first-child {
    border-top: 0;
  }

  .wl-proof li:last-child {
    border-right: 0;
  }

  .wl-final-inner {
    align-items: start;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .wl-final-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .wl-final img {
    height: 48px;
    width: 48px;
  }
}

@media (max-width: 480px) {
  .waylino-header .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .waylino-header-actions {
    flex-wrap: wrap;
    gap: 8px 12px;
    width: 100%;
  }

  .waylino-nav {
    flex: 1 1 245px;
    gap: 8px;
    justify-content: flex-start;
    overflow-x: visible;
    white-space: normal;
  }

  .waylino-nav a {
    font-size: .78rem;
  }

  .waylino-language {
    margin-left: auto;
  }
}

@media (max-width: 380px) {
  .wl-hero-grid {
    grid-template-columns: 1fr;
  }

  .wl-hero-media {
    display: block;
    max-width: min(78vw, 240px);
  }
}

/* Generated single-app pages. Waylino keeps its dedicated wl-* layout above. */
body.product-page {
  --app-ink: #17202b;
  --app-muted: #5d6876;
  --app-paper: #f6f8fb;
  --app-primary: #0f5e6e;
  --app-secondary: #566579;
  --app-accent: #7a5a20;
  --app-line: rgba(23, 32, 43, .14);
  background: var(--app-paper);
  color: var(--app-ink);
}

.product-header { border-bottom-color: var(--app-line); }
.product-header .wrap { gap: 18px; }
.product-logo { align-items: center; display: inline-flex; gap: 10px; }
.product-logo img { border-radius: 8px; box-shadow: 0 8px 24px -18px rgba(0, 0, 0, .5); }
.product-header-actions { align-items: center; display: flex; gap: 14px; }
.product-nav { align-items: center; display: flex; flex-wrap: wrap; gap: 18px; }
.product-nav a { color: var(--app-muted); font-size: .92rem; font-weight: 800; margin: 0; text-decoration: none; }
.product-nav a:hover { color: var(--app-ink); }
.product-language { border: 1px solid var(--app-line); border-radius: 999px; display: inline-flex; overflow: hidden; }
.product-language a { color: var(--app-muted); font-size: .78rem; font-weight: 850; line-height: 1; padding: 8px 10px; text-decoration: none; }
.product-language a[aria-current="page"] { background: var(--app-ink); color: #fff; }

.product-hero {
  background: linear-gradient(180deg, color-mix(in srgb, var(--app-primary) 14%, #fff) 0%, transparent 60%), var(--app-paper);
  border-bottom: 1px solid var(--app-line);
}
.product-hero-grid {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  min-height: min(790px, calc(100vh - 68px));
  padding-bottom: 54px;
  padding-top: 64px;
}
.product-kicker { color: var(--app-primary); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-hero h1 { color: var(--app-ink); font-size: 4.7rem; letter-spacing: 0; line-height: .98; margin-top: 16px; }
.product-claim { color: color-mix(in srgb, var(--app-primary) 82%, #18202a); font-size: 1.45rem; font-weight: 850; line-height: 1.28; margin-top: 18px; }
.product-lead { color: var(--app-muted); font-size: 1.08rem; line-height: 1.65; margin-top: 18px; max-width: 650px; }
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.product-button { align-items: center; border-radius: 8px; display: inline-flex; font-weight: 850; min-height: 46px; padding: 11px 16px; text-decoration: none; }
.product-button-primary { background: var(--app-ink); color: #fff; }
.product-button-secondary { background: rgba(255, 255, 255, .68); border: 1px solid var(--app-line); color: var(--app-ink); }
.product-button-play { border-color: var(--app-line); color: var(--app-ink); }
.product-facts { display: grid; gap: 10px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; max-width: 560px; }
.product-facts div { background: rgba(255, 255, 255, .7); border: 1px solid var(--app-line); border-radius: 8px; padding: 12px 14px; }
.product-facts dt { color: var(--app-muted); font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.product-facts dd { color: var(--app-ink); font-size: 1rem; font-weight: 850; margin-top: 2px; }
.product-hero-media { justify-self: center; max-width: 380px; position: relative; }
.product-hero-media::before { background: color-mix(in srgb, var(--app-accent) 28%, #fff); border-radius: 18px; content: ""; inset: 26px -18px -26px 18px; opacity: .5; position: absolute; }
.product-hero-media img { border-radius: 8px; box-shadow: 0 26px 60px -38px rgba(0, 0, 0, .55); display: block; height: auto; max-width: 100%; position: relative; width: 100%; }

.product-proof { background: var(--app-ink); color: #fff; }
.product-proof ul { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; }
.product-proof li { border-left: 1px solid rgba(255, 255, 255, .14); color: rgba(255, 255, 255, .9); font-weight: 850; min-height: 74px; padding: 22px 16px; text-align: center; }
.product-proof li:last-child { border-right: 1px solid rgba(255, 255, 255, .14); }
.product-section { padding: 78px 0; }
.product-section-light, .product-final { background: #fff; }
.product-section h2, .product-final h2 { color: var(--app-ink); font-size: 2.35rem; letter-spacing: 0; line-height: 1.12; }
.product-section p, .product-final p { color: var(--app-muted); }
.product-play-layout, .product-fair-layout, .product-faq-layout { display: grid; gap: 44px; grid-template-columns: .82fr 1.18fr; }
.product-section-copy p { font-size: 1.02rem; line-height: 1.7; margin-top: 16px; }
.product-feature-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.product-feature { background: color-mix(in srgb, var(--app-paper) 70%, #fff); border: 1px solid var(--app-line); border-radius: 8px; min-height: 178px; padding: 20px; }
.product-feature span { color: var(--app-accent); font-size: .78rem; font-weight: 900; }
.product-feature h3 { color: var(--app-ink); font-size: 1.03rem; line-height: 1.24; margin-top: 12px; }
.product-feature p { font-size: .94rem; line-height: 1.55; margin-top: 8px; }
.product-section-head { max-width: 720px; }
.product-section-head h2 { margin-top: 8px; }
.product-section-head p { margin-top: 12px; }
.product-shot-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; }
.product-shot { background: #fff; border: 1px solid var(--app-line); border-radius: 8px; overflow: hidden; }
.product-shot img { display: block; height: auto; width: 100%; }
.product-shot figcaption { padding: 14px; }
.product-shot strong, .product-shot span { display: block; }
.product-shot strong { color: var(--app-ink); font-size: .95rem; }
.product-shot span { color: var(--app-muted); font-size: .84rem; line-height: 1.42; margin-top: 4px; }
.product-section-dark { background: var(--app-ink); color: #fff; }
.product-section-dark .product-kicker, .product-section-dark h2 { color: #fff; }
.product-section-dark p { color: rgba(255, 255, 255, .76); margin-top: 14px; }
.product-checklist { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: 8px; list-style: none; overflow: hidden; }
.product-checklist li { border-bottom: 1px solid rgba(255, 255, 255, .12); color: rgba(255, 255, 255, .86); font-weight: 750; padding: 14px 16px; }
.product-checklist li:last-child { border-bottom: 0; }
.product-faq-list { display: grid; gap: 12px; }
.product-faq-list details { background: rgba(255, 255, 255, .76); border: 1px solid var(--app-line); border-radius: 8px; padding: 18px 20px; }
.product-faq-list summary { color: var(--app-ink); cursor: pointer; font-weight: 850; }
.product-faq-list p { margin-top: 10px; }
.product-final { border-top: 1px solid var(--app-line); padding: 34px 0; }
.product-final-inner { align-items: center; display: grid; gap: 20px; grid-template-columns: 64px minmax(0, 1fr) auto; }
.product-final img { border-radius: 8px; }
.product-final h2 { font-size: 1.55rem; }
.product-final p { margin-top: 4px; }

@media (max-width: 940px) {
  .product-hero-grid, .product-play-layout, .product-fair-layout, .product-faq-layout { grid-template-columns: 1fr; }
  .product-hero h1 { font-size: 3.7rem; }
  .product-shot-grid, .product-proof ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-final-inner { grid-template-columns: 56px minmax(0, 1fr); }
  .product-final .product-button,
  .product-final-actions { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 640px) {
  .product-header .wrap { align-items: flex-start; flex-direction: column; gap: 10px; padding-bottom: 12px; padding-top: 12px; }
  .product-header-actions { flex-wrap: wrap; width: 100%; }
  .product-nav { gap: 12px; }
  .product-nav a { font-size: .82rem; }
  .product-language { margin-left: auto; }
  .product-hero-grid { gap: 22px; grid-template-columns: 1fr; min-height: 0; padding-bottom: 30px; padding-top: 32px; }
  .product-hero h1 { font-size: min(2.65rem, 10.4vw); overflow-wrap: break-word; }
  .product-claim { font-size: 1.16rem; margin-top: 12px; }
  .product-lead { font-size: .98rem; line-height: 1.55; }
  .product-facts { display: none; }
  .product-actions { width: 100%; }
  .product-button { flex: 1 1 160px; justify-content: center; }
  .product-hero-media { justify-self: center; max-width: min(70vw, 280px); width: 100%; }
  .product-section { padding: 58px 0; }
  .product-section h2 { font-size: 1.9rem; }
  .product-feature-grid, .product-proof ul { grid-template-columns: 1fr; }
  .product-shot-grid {
    display: flex;
    gap: 14px;
    margin-left: calc(var(--wrap-pad) * -1);
    margin-right: calc(var(--wrap-pad) * -1);
    overflow-x: auto;
    padding: 2px var(--wrap-pad) 14px;
    scroll-padding-left: var(--wrap-pad);
    scroll-snap-type: x mandatory;
  }
  .product-shot {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }
  .product-proof li { border-left: 0; border-top: 1px solid rgba(255, 255, 255, .12); min-height: 0; padding: 17px 12px; }
  .product-proof li:first-child { border-top: 0; }
  .product-final-inner { grid-template-columns: 48px minmax(0, 1fr); }
  .product-final-actions { justify-content: flex-start; width: 100%; }
  .product-final img { height: 48px; width: 48px; }
}

@media (max-width: 380px) {
  .product-hero-grid { grid-template-columns: 1fr; }
  .product-hero-media { display: block; max-width: min(78vw, 240px); }
}
