:root {
  color-scheme: dark;
  --pbz-ink: #07131f;
  --pbz-ink-2: #0b1b2b;
  --pbz-panel: #0e2331;
  --pbz-panel-2: #102c38;
  --pbz-line: rgba(255, 255, 255, 0.14);
  --pbz-line-strong: rgba(255, 210, 0, 0.42);
  --pbz-copy: #e9f3f5;
  --pbz-muted: #9fb4ba;
  --pbz-yellow: #ffd200;
  --pbz-yellow-2: #ffea61;
  --pbz-teal: #009f98;
  --pbz-teal-2: #20e2d1;
  --pbz-red: #d72f42;
  --pbz-green: #1fb36c;
  --pbz-white: #ffffff;
  --pbz-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --pbz-radius: 8px;
  --pbz-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(135deg, rgba(255, 210, 0, 0.06) 0 1px, transparent 1px 46px),
    linear-gradient(90deg, rgba(0, 159, 152, 0.06) 0 1px, transparent 1px 60px),
    var(--pbz-ink);
  color: var(--pbz-copy);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--pbz-yellow);
  color: #07131f;
}

:focus-visible {
  outline: 3px solid var(--pbz-yellow);
  outline-offset: 4px;
}

.pbz-topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(7, 19, 31, 0.86);
  border-bottom: 1px solid var(--pbz-line);
  backdrop-filter: blur(16px);
}

.pbz-topbar__inner {
  width: min(calc(100% - 32px), var(--pbz-max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pbz-progress {
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--pbz-yellow), var(--pbz-teal-2));
  transition: width 160ms ease;
}

.pbz-logo {
  display: inline-flex;
  align-items: center;
}

.pbz-logo img {
  height: 38px;
  width: auto;
}

.pbz-footer .pbz-logo img {
  height: 44px;
}

.pbz-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pbz-nav__link,
.pbz-nav__auth,
.pbz-nav__cta,
.pbz-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pbz-nav__link {
  padding: 0 14px;
  color: var(--pbz-muted);
  font-weight: 800;
}

.pbz-nav__link:hover,
.pbz-nav__link[aria-current="true"] {
  color: var(--pbz-white);
  background: rgba(255, 255, 255, 0.08);
}

.pbz-nav__cta,
.pbz-button--primary {
  border: 1px solid rgba(255, 210, 0, 0.6);
  background: linear-gradient(135deg, var(--pbz-yellow), #f6a900);
  color: #09131c;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(255, 210, 0, 0.22);
}

.pbz-nav__cta {
  padding: 0 18px;
  margin-left: 8px;
}

.pbz-nav__auth {
  padding: 0 14px;
  color: var(--pbz-copy);
  font-weight: 800;
}

.pbz-nav__auth:hover {
  color: var(--pbz-white);
  background: rgba(255, 255, 255, 0.08);
}

.pbz-nav__auth--reg {
  border: 1px solid rgba(0, 226, 209, 0.45);
  color: var(--pbz-white);
  background: rgba(0, 159, 152, 0.12);
}

.pbz-nav__auth--reg:hover {
  border-color: var(--pbz-teal-2);
  background: rgba(0, 159, 152, 0.2);
  color: var(--pbz-white);
}

/* Desktop: page links stay left, auth + bonus group pushed right */
@media (min-width: 821px) {
  .pbz-nav {
    flex: 1;
  }

  .pbz-nav__link + .pbz-nav__auth {
    margin-left: auto;
  }
}

.pbz-button {
  padding: 0 20px;
}

.pbz-button--ghost {
  border: 1px solid var(--pbz-line);
  color: var(--pbz-copy);
  background: rgba(255, 255, 255, 0.07);
}

.pbz-nav__cta:hover,
.pbz-button--primary:hover,
.pbz-button--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 226, 209, 0.18);
}

.pbz-menu {
  display: none;
  position: relative;
  width: 46px;
  height: 44px;
  border: 1px solid var(--pbz-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--pbz-copy);
  cursor: pointer;
}

.pbz-menu span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-left: -10px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.pbz-menu span:nth-child(1) {
  top: 15px;
}

.pbz-menu span:nth-child(2) {
  top: 21px;
}

.pbz-menu span:nth-child(3) {
  top: 27px;
}

.pbz-menu[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.pbz-menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.pbz-menu[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.pbz-hero {
  position: relative;
  min-height: min(680px, calc(100svh - 72px));
  padding: 142px 0 78px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #06111c;
  --pbz-hero-focus: center center;
  --pbz-hero-mobile-focus: center center;
  --pbz-hero-left-veil: rgba(7, 19, 31, 0.96);
  --pbz-hero-mid-veil: rgba(7, 19, 31, 0.74);
  --pbz-hero-bottom-veil: rgba(7, 19, 31, 0.92);
  --pbz-hero-face-glow: rgba(255, 210, 0, 0);
  --pbz-hero-face-glow-at: 28% 22%;
}

.pbz-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pbz-hero-focus);
  transform: none;
  filter: saturate(1.16) brightness(1.12) contrast(1.04);
  animation: none;
}

.pbz-page--main .pbz-hero {
  --pbz-hero-focus: 66% 35%;
  --pbz-hero-mobile-focus: 69% center;
}

.pbz-page--bonuses .pbz-hero {
  --pbz-hero-focus: 67% 35%;
  --pbz-hero-mobile-focus: 70% center;
  --pbz-hero-left-veil: rgba(7, 19, 31, 0.82);
  --pbz-hero-mid-veil: rgba(7, 19, 31, 0.56);
  --pbz-hero-bottom-veil: rgba(7, 19, 31, 0.86);
  --pbz-hero-face-glow: rgba(0, 226, 209, 0.16);
  --pbz-hero-face-glow-at: 24% 16%;
}

.pbz-page--app .pbz-hero,
.pbz-page--privacy .pbz-hero {
  --pbz-hero-focus: 68% 35%;
  --pbz-hero-mobile-focus: 71% center;
  --pbz-hero-left-veil: rgba(7, 19, 31, 0.8);
  --pbz-hero-mid-veil: rgba(7, 19, 31, 0.54);
  --pbz-hero-bottom-veil: rgba(7, 19, 31, 0.86);
  --pbz-hero-face-glow: rgba(255, 210, 0, 0.14);
  --pbz-hero-face-glow-at: 32% 18%;
}

.pbz-page--terms .pbz-hero {
  --pbz-hero-focus: center center;
  --pbz-hero-mobile-focus: center center;
}

.pbz-hero__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--pbz-hero-face-glow-at), var(--pbz-hero-face-glow) 0 16%, rgba(255, 255, 255, 0) 32%),
    linear-gradient(90deg, var(--pbz-hero-left-veil) 0%, var(--pbz-hero-mid-veil) 38%, rgba(7, 19, 31, 0.06) 72%),
    linear-gradient(0deg, var(--pbz-hero-bottom-veil), rgba(7, 19, 31, 0.02) 52%);
}

.pbz-hero__mesh {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(255, 210, 0, 0.78) 44% 47%, transparent 47%),
    linear-gradient(25deg, rgba(0, 159, 152, 0.18), transparent 46%);
  opacity: 0.28;
  pointer-events: none;
}

.pbz-hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--pbz-max));
  margin: 0 auto;
  max-width: 660px;
  justify-self: center;
  margin-left: max(16px, calc((100% - var(--pbz-max)) / 2));
}

.pbz-kicker,
.pbz-index__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 10px;
  border: 1px solid rgba(0, 226, 209, 0.38);
  color: var(--pbz-teal-2);
  background: rgba(0, 159, 152, 0.12);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

h1 {
  max-width: 620px;
  margin-top: 18px;
  font-size: 4.6rem;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.44);
}

.pbz-hero__source {
  max-width: 580px;
  margin: 14px 0 0;
  color: var(--pbz-yellow-2);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.pbz-hero__copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: #d6e7eb;
  font-size: 1.05rem;
  overflow-wrap: break-word;
  hyphens: auto;
}

.pbz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pbz-ico {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.pbz-opening {
  width: min(calc(100% - 32px), var(--pbz-max));
  margin: 0 auto;
  padding: 32px 0 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  border-bottom: 1px solid var(--pbz-line);
}

.pbz-opening--compact {
  display: block;
}

.pbz-opening__copy {
  display: grid;
  gap: 14px;
}

.pbz-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: start;
}

.pbz-badges li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--pbz-line);
  border-radius: var(--pbz-radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--pbz-copy);
  font-weight: 800;
}

.pbz-badges span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--pbz-yellow);
  border: 1px solid rgba(255, 210, 0, 0.24);
  border-radius: 6px;
  background: rgba(255, 210, 0, 0.08);
}

.pbz-content {
  width: min(calc(100% - 32px), var(--pbz-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.pbz-index {
  position: sticky;
  top: 98px;
  padding-top: 34px;
}

.pbz-index__panel {
  border-left: 3px solid var(--pbz-yellow);
  padding: 2px 0 2px 17px;
}

.pbz-index nav {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.pbz-index a {
  display: block;
  padding: 8px 0;
  color: var(--pbz-muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: break-word;
  hyphens: auto;
  transition: color 180ms ease, transform 180ms ease;
}

.pbz-index a:hover,
.pbz-index a:focus-visible {
  color: var(--pbz-yellow);
  transform: translateX(4px);
}

.pbz-story {
  min-width: 0;
}

.pbz-chapter {
  position: relative;
  padding: 48px 0;
  border-bottom: 1px solid var(--pbz-line);
}

.pbz-chapter::before {
  content: "";
  position: absolute;
  inset: 0 auto auto -22px;
  width: 4px;
  height: 76px;
  background: linear-gradient(var(--pbz-yellow), var(--pbz-teal));
  transform: skewY(-18deg);
}

.pbz-chapter__head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  margin-bottom: 22px;
}

.pbz-chapter__mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #06111c;
  background: var(--pbz-yellow);
  border-radius: 8px;
  clip-path: polygon(0 12%, 100% 0, 88% 100%, 8% 88%);
}

h2 {
  color: var(--pbz-white);
  font-size: 2.55rem;
}

h3 {
  margin-bottom: 14px;
  color: var(--pbz-yellow-2);
  font-size: 1.75rem;
}

.pbz-chapter__body {
  display: grid;
  gap: 18px;
}

.pbz-copy {
  max-width: 76ch;
  margin: 0;
  color: #d7e5e8;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.pbz-copy strong {
  color: var(--pbz-white);
}

.pbz-copy a,
.pbz-legal-list a {
  color: var(--pbz-yellow-2);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 210, 0, 0.42);
  text-underline-offset: 4px;
}

.pbz-copy a:hover,
.pbz-legal-list a:hover {
  color: var(--pbz-teal-2);
  text-decoration-color: currentColor;
}

.pbz-legal-list {
  max-width: 76ch;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.pbz-legal-list li {
  position: relative;
  padding-left: 18px;
}

.pbz-legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--pbz-teal-2);
  transform: rotate(45deg);
}

.pbz-compact {
  position: relative;
  padding-left: 17px;
}

.pbz-compact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--pbz-yellow);
  transform: rotate(45deg);
}

.pbz-byline {
  color: var(--pbz-yellow-2);
  font-weight: 800;
}

.pbz-subflow {
  padding: 22px 0 20px 22px;
  border-left: 1px solid rgba(0, 226, 209, 0.42);
  display: grid;
  gap: 14px;
}

.pbz-subflow + .pbz-subflow {
  margin-top: 4px;
}

.pbz-tablebox {
  width: 100%;
  margin: 18px 0;
  border: 1px solid var(--pbz-line);
  border-radius: var(--pbz-radius);
  background: rgba(5, 14, 22, 0.56);
  box-shadow: var(--pbz-shadow);
  overflow: visible;
}

.pbz-matrix {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.89rem;
}

.pbz-matrix th,
.pbz-matrix td {
  padding: 13px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
  text-align: left;
  color: #d9e8eb;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.pbz-matrix thead th {
  color: #07131f;
  background: linear-gradient(135deg, var(--pbz-yellow), var(--pbz-yellow-2));
  font-weight: 900;
}

.pbz-matrix tbody th {
  color: var(--pbz-white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.05);
}

.pbz-matrix tr:hover td,
.pbz-matrix tr:hover th[scope="row"] {
  background: rgba(0, 159, 152, 0.13);
}

.pbz-wireframe {
  margin: 18px 0;
  max-width: 540px;
  border: 1px solid var(--pbz-line-strong);
  border-radius: var(--pbz-radius);
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.12), rgba(0, 159, 152, 0.1));
  overflow: hidden;
}

.pbz-wireframe__chrome {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 14px;
  background: rgba(0, 0, 0, 0.36);
}

.pbz-wireframe__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pbz-yellow);
}

.pbz-wireframe__screen {
  padding: 24px;
  display: grid;
  gap: 13px;
}

.pbz-wireframe__brand {
  width: max-content;
  padding: 7px 12px;
  color: #07131f;
  background: var(--pbz-yellow);
  border-radius: 5px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pbz-wireframe__field,
.pbz-wireframe__cta {
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.pbz-wireframe__field.short {
  width: 70%;
}

.pbz-wireframe__cta {
  width: 48%;
  background: var(--pbz-yellow);
}

.pbz-wireframe figcaption {
  padding: 0 24px 22px;
  color: var(--pbz-muted);
  font-size: 0.9rem;
}

.pbz-shot {
  margin: 22px 0 0;
  border: 1px solid var(--pbz-line-strong);
  border-radius: var(--pbz-radius);
  background: rgba(5, 14, 22, 0.72);
  box-shadow: var(--pbz-shadow);
  overflow: hidden;
}

.pbz-shot img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(1.08) contrast(1.03);
  transition: transform 240ms ease, filter 240ms ease;
}

.pbz-shot:hover img {
  transform: scale(1.018);
  filter: saturate(1.2) brightness(1.05) contrast(1.05);
}

.pbz-shot--flow {
  max-width: 760px;
}

.pbz-shot--section {
  width: min(100%, 940px);
}

.pbz-banner {
  position: relative;
  isolation: isolate;
  margin: 26px 0;
  min-height: 208px;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--pbz-line-strong);
  border-radius: var(--pbz-radius);
  overflow: hidden;
  background: linear-gradient(120deg, #0a2230 0%, #0e2f3a 58%, #123c46 100%);
  box-shadow: var(--pbz-shadow);
}

.pbz-banner--app {
  background: linear-gradient(120deg, #091c2a 0%, #0c2a34 55%, #14313d 100%);
}

.pbz-banner__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: saturate(1.08) contrast(1.03);
  z-index: -1;
}

.pbz-banner__panel {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 13px;
  background: linear-gradient(90deg, rgba(6, 17, 26, 0.95) 0%, rgba(6, 17, 26, 0.82) 52%, rgba(6, 17, 26, 0) 100%);
}

.pbz-banner__label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 12px;
  border: 1px solid rgba(255, 210, 0, 0.5);
  border-radius: 6px;
  background: rgba(255, 210, 0, 0.12);
  color: var(--pbz-yellow-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pbz-banner__offer {
  margin: 0;
  color: #d9e8eb;
  font-weight: 700;
  font-size: 1.02rem;
}

.pbz-banner__offer strong {
  display: block;
  margin-bottom: 2px;
  color: var(--pbz-white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.05rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.pbz-banner__cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid rgba(255, 210, 0, 0.6);
  background: linear-gradient(135deg, var(--pbz-yellow), #f6a900);
  color: #09131c;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(255, 210, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pbz-banner__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 226, 209, 0.18);
}

.pbz-banner__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pbz-banner__store {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pbz-banner__store--ios {
  border: 1px solid var(--pbz-line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--pbz-copy);
}

.pbz-banner__store--android {
  border: 1px solid rgba(255, 210, 0, 0.6);
  background: linear-gradient(135deg, var(--pbz-yellow), #f6a900);
  color: #09131c;
}

.pbz-banner__store:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 226, 209, 0.16);
}

@media (max-width: 640px) {
  .pbz-banner {
    min-height: 0;
  }

  .pbz-banner__media {
    object-position: right top;
  }

  .pbz-banner__panel {
    max-width: 100%;
    padding: 22px 20px;
    background: linear-gradient(90deg, rgba(6, 17, 26, 0.95) 0%, rgba(6, 17, 26, 0.9) 70%, rgba(6, 17, 26, 0.78) 100%);
  }

  .pbz-banner__offer strong {
    font-size: 1.7rem;
  }

  .pbz-banner__cta,
  .pbz-banner__store {
    width: 100%;
    justify-content: center;
  }
}

.pbz-faqgrid {
  display: grid;
  gap: 12px;
}

.pbz-faq {
  border: 1px solid var(--pbz-line);
  border-radius: var(--pbz-radius);
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 180ms ease, background 180ms ease;
}

.pbz-faq[open],
.pbz-faq:hover {
  border-color: rgba(255, 210, 0, 0.48);
  background: rgba(255, 210, 0, 0.07);
}

.pbz-faq summary {
  min-height: 58px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 14px;
  color: var(--pbz-white);
  font-weight: 900;
  cursor: pointer;
}

.pbz-faq summary::-webkit-details-marker {
  display: none;
}

.pbz-faq summary span {
  color: var(--pbz-yellow);
  transition: transform 180ms ease;
}

.pbz-faq[open] summary span {
  transform: rotate(45deg);
}

.pbz-faq p {
  margin: 0;
  padding: 0 18px 18px;
  color: #d8e8eb;
}

.pbz-routes {
  margin-top: 26px;
  padding: 54px 0;
  background:
    linear-gradient(120deg, rgba(255, 210, 0, 0.12), transparent 31%),
    linear-gradient(250deg, rgba(0, 159, 152, 0.16), transparent 46%),
    #07131f;
}

.pbz-routes__inner {
  width: min(calc(100% - 32px), var(--pbz-max));
  margin: 0 auto;
}

.pbz-routes h2 {
  margin-bottom: 22px;
}

.pbz-routegrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pbz-route {
  min-height: 132px;
  padding: 20px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 10px 16px;
  align-items: center;
  border: 1px solid var(--pbz-line);
  border-radius: var(--pbz-radius);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pbz-route:hover,
.pbz-route:focus-visible {
  transform: translateY(-3px);
  border-color: var(--pbz-line-strong);
  background: rgba(255, 210, 0, 0.08);
}

.pbz-route span {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #07131f;
  background: var(--pbz-yellow);
  border-radius: 8px;
}

.pbz-route strong {
  align-self: end;
  font-size: 1.12rem;
}

.pbz-route em {
  align-self: start;
  color: var(--pbz-muted);
  font-style: normal;
}

.pbz-footer {
  padding: 42px 0 48px;
  background: #040b12;
  border-top: 1px solid var(--pbz-line);
}

.pbz-footer__inner {
  width: min(calc(100% - 32px), var(--pbz-max));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.pbz-footer p {
  max-width: 820px;
  margin: 0;
  color: var(--pbz-muted);
}

.pbz-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.pbz-footer a:not(.pbz-logo) {
  color: var(--pbz-copy);
  font-weight: 700;
}

.pbz-footer a:not(.pbz-logo):hover {
  color: var(--pbz-yellow);
}

.pbz-footer small {
  color: #7f969d;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@keyframes pbzHeroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-1.2%, 0.6%, 0);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .pbz-content {
    grid-template-columns: 1fr;
  }

  .pbz-index {
    position: static;
    padding-top: 26px;
  }

  .pbz-index__panel {
    border-left: 0;
    border-top: 3px solid var(--pbz-yellow);
    padding: 16px 0 0;
  }

  .pbz-index nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Dense tables on tablet: scroll horizontally instead of squeezing words */
@media (min-width: 821px) and (max-width: 1080px) {
  .pbz-tablebox[data-columns="6"],
  .pbz-tablebox[data-columns="7"],
  .pbz-tablebox[data-columns="8"],
  .pbz-tablebox[data-columns="9"] {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pbz-tablebox[data-columns="6"] .pbz-matrix {
    min-width: 660px;
  }

  .pbz-tablebox[data-columns="7"] .pbz-matrix {
    min-width: 760px;
  }

  .pbz-tablebox[data-columns="8"] .pbz-matrix {
    min-width: 860px;
  }

  .pbz-tablebox[data-columns="9"] .pbz-matrix {
    min-width: 940px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 15px;
  }

  .pbz-topbar__inner {
    position: relative;
    width: min(calc(100% - 28px), var(--pbz-max));
    min-height: 68px;
    gap: 12px;
  }

  .pbz-menu {
    position: fixed !important;
    top: 12px;
    right: 14px;
    z-index: 45;
    display: block !important;
    flex: 0 0 46px;
    margin-left: auto;
  }

  .pbz-nav {
    position: fixed;
    inset: 68px 12px auto;
    max-height: calc(100svh - 88px);
    overflow-y: auto;
    padding: 16px;
    display: none;
    align-content: start;
    gap: 10px;
    background: rgba(7, 19, 31, 0.98);
    border: 1px solid var(--pbz-line);
    border-radius: 10px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.5);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .pbz-nav.is-open {
    display: grid;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .pbz-nav__link,
  .pbz-nav__auth,
  .pbz-nav__cta {
    justify-content: flex-start;
    min-height: 52px;
    margin: 0;
    padding: 0 16px;
  }

  .pbz-hero {
    --pbz-hero-mobile-media: 252px;
    min-height: auto;
    padding: calc(84px + var(--pbz-hero-mobile-media)) 0 58px;
  }

  .pbz-hero__shade {
    background:
      linear-gradient(180deg, rgba(7, 19, 31, 0.08) 72px, rgba(7, 19, 31, 0.12) calc(72px + var(--pbz-hero-mobile-media) - 28px), rgba(7, 19, 31, 0.96) calc(72px + var(--pbz-hero-mobile-media) + 14px)),
      linear-gradient(90deg, rgba(7, 19, 31, 0.18), rgba(7, 19, 31, 0));
  }

  .pbz-hero__image {
    inset: 72px 0 auto;
    height: var(--pbz-hero-mobile-media);
    object-fit: cover;
    object-position: var(--pbz-hero-mobile-focus);
    filter: saturate(1.24) brightness(1.2) contrast(1.08);
    border-bottom: 1px solid rgba(255, 210, 0, 0.24);
  }

  .pbz-hero__mesh {
    opacity: 0.12;
  }

  .pbz-hero__content {
    width: min(calc(100% - 28px), var(--pbz-max));
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: 3.05rem;
  }

  .pbz-opening {
    width: min(calc(100% - 28px), var(--pbz-max));
    grid-template-columns: 1fr;
  }

  .pbz-content,
  .pbz-routes__inner,
  .pbz-footer__inner {
    width: min(calc(100% - 28px), var(--pbz-max));
  }

  .pbz-badges,
  .pbz-routegrid,
  .pbz-index nav {
    grid-template-columns: 1fr;
  }

  .pbz-chapter {
    padding: 38px 0;
  }

  .pbz-chapter::before {
    left: -12px;
  }

  .pbz-chapter__head {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .pbz-chapter__mark {
    width: 44px;
    height: 44px;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.45rem;
  }

  .pbz-subflow {
    padding-left: 16px;
  }

  .pbz-tablebox {
    box-shadow: none;
  }

  .pbz-matrix,
  .pbz-matrix thead,
  .pbz-matrix tbody,
  .pbz-matrix tr,
  .pbz-matrix th,
  .pbz-matrix td {
    display: block;
    width: 100%;
  }

  .pbz-matrix thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .pbz-matrix tr {
    padding: 8px 0;
    border-bottom: 1px solid var(--pbz-line);
  }

  .pbz-matrix tr:last-child {
    border-bottom: 0;
  }

  .pbz-matrix th,
  .pbz-matrix td,
  .pbz-matrix tbody th {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    justify-items: start;
    padding: 10px 12px;
    border: 0;
    background: transparent;
    text-align: left;
  }

  .pbz-matrix th::before,
  .pbz-matrix td::before {
    content: attr(data-label);
    color: var(--pbz-yellow);
    font-weight: 900;
    text-align: left;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

@media (max-width: 520px) {
  .pbz-topbar__inner,
  .pbz-opening,
  .pbz-content,
  .pbz-routes__inner,
  .pbz-footer__inner {
    width: min(calc(100% - 22px), var(--pbz-max));
  }

  .pbz-logo img {
    height: 32px;
  }

  h1 {
    max-width: 240px;
    font-size: 1.54rem;
    line-height: 1.04;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .pbz-hero__copy {
    font-size: 1rem;
    max-width: 34ch;
  }

  .pbz-hero__actions {
    display: grid;
  }

  .pbz-button {
    width: 100%;
  }

  .pbz-chapter__head {
    grid-template-columns: 1fr;
  }

  .pbz-chapter__mark {
    margin-bottom: 2px;
  }

  h2 {
    font-size: 1.72rem;
  }

  .pbz-matrix th,
  .pbz-matrix td,
  .pbz-matrix tbody th {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pbz-route {
    grid-template-columns: 1fr;
  }

  .pbz-route span {
    grid-row: auto;
  }
}

@media (min-width: 521px) and (max-width: 820px) {
  .pbz-hero {
    --pbz-hero-mobile-media: 340px;
  }
}

@media (max-width: 380px) {
  h1 {
    max-width: 220px;
    font-size: 1.46rem;
  }
}

@media (max-width: 820px) {
  .pbz-topbar .pbz-menu {
    position: fixed !important;
    top: 12px !important;
    right: 14px !important;
    z-index: 45 !important;
    display: block !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
