:root {
  --pb-yellow: #fed100;
  --pb-navy: #101d2c;
  --pb-deep: #071018;
  --pb-teal: #017e80;
  --pb-white: #ffffff;
  --pb-ink: #111827;
  --pb-muted: #a7b6bf;
  --pb-line: rgba(255, 255, 255, 0.16);
  --pb-radius: 8px;
  --pb-header: 74px;
  --pb-max: 1180px;
  --pb-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--pb-white);
  background: var(--pb-deep);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p,
li,
td,
th,
summary {
  overflow-wrap: break-word;
  word-break: normal;
}

h1,
h2,
h3,
.button,
.nav-action,
.eyebrow,
.fact-pill,
td,
th {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--pb-navy);
  background: var(--pb-yellow);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  background: rgba(7, 16, 24, 0.92);
  border-bottom: 1px solid rgba(254, 209, 0, 0.24);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 32px, var(--pb-max));
  min-height: var(--pb-header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: 178px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--pb-yellow);
  border-color: rgba(254, 209, 0, 0.4);
  background: rgba(254, 209, 0, 0.08);
}

.nav-action,
.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--pb-navy);
  background: var(--pb-yellow);
  border: 2px solid var(--pb-yellow);
  border-radius: var(--pb-radius);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.32);
  transform: skewX(-8deg);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  text-align: center;
  white-space: nowrap;
}

.nav-action span,
.button span {
  display: inline-block;
  transform: skewX(8deg);
}

.nav-action:hover,
.button:hover,
.nav-action:focus-visible,
.button:focus-visible {
  color: var(--pb-white);
  background: var(--pb-teal);
  border-color: var(--pb-teal);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.38);
  transform: translateY(4px) skewX(-8deg);
}

.button--ghost {
  color: var(--pb-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.nav-action--ghost {
  color: var(--pb-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible,
.nav-action--ghost:hover,
.nav-action--ghost:focus-visible {
  color: var(--pb-navy);
  background: var(--pb-white);
  border-color: var(--pb-white);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--pb-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--pb-radius);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform .2s ease, top .2s ease, background .2s ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.page-shell {
  padding-top: var(--pb-header);
}

.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--pb-navy);
}

.hero--compact {
  min-height: 520px;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__image--flip {
  transform: scaleX(-1);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.94) 0%, rgba(7, 16, 24, 0.78) 42%, rgba(7, 16, 24, 0.12) 100%),
    linear-gradient(0deg, rgba(7, 16, 24, 0.78) 0%, rgba(7, 16, 24, 0) 42%);
}

.hero__inner,
.section-inner,
.banner-inner,
.footer-inner {
  width: min(100% - 32px, var(--pb-max));
  margin: 0 auto;
  min-width: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 48px 0 36px;
}

.hero__copy {
  max-width: 660px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--pb-yellow);
  background: rgba(254, 209, 0, 0.1);
  border: 1px solid rgba(254, 209, 0, 0.4);
  border-radius: var(--pb-radius);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Impact, "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 50px;
}

h2 {
  color: var(--pb-white);
  font-size: 36px;
}

h3 {
  color: var(--pb-yellow);
  font-size: 25px;
}

.section--light h2,
.section--yellow h2,
.section--light h3,
.section--yellow h3 {
  color: var(--pb-ink);
}

.hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-facts {
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.fact-pill {
  min-height: 62px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pb-radius);
}

.fact-pill strong {
  display: block;
  color: var(--pb-yellow);
  font-size: 16px;
  line-height: 1.2;
}

.fact-pill span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.content-section {
  position: relative;
  padding: 72px 0;
  background: var(--pb-navy);
}

.content-section:nth-of-type(odd) {
  background:
    linear-gradient(135deg, rgba(1, 126, 128, 0.16), transparent 42%),
    var(--pb-deep);
}

.section--light {
  color: var(--pb-ink);
  background: var(--pb-white);
}

.section--yellow {
  color: var(--pb-ink);
  background: var(--pb-yellow);
}

.section--teal {
  color: var(--pb-white);
  background: linear-gradient(135deg, var(--pb-teal), #035f68);
}

.content-section.section--light {
  color: var(--pb-ink);
  background: var(--pb-white);
}

.content-section.section--yellow {
  color: var(--pb-ink);
  background: var(--pb-yellow);
}

.content-section.section--teal {
  color: var(--pb-white);
  background: linear-gradient(135deg, var(--pb-teal), #035f68);
}

.content-section p {
  max-width: 900px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.section--light p,
.section--yellow p {
  color: rgba(17, 24, 39, 0.82);
}

.section-lede {
  max-width: 820px;
  font-size: 18px;
}

.section-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 42px;
  align-items: start;
}

.section-layout--left {
  grid-template-columns: 390px minmax(0, 1fr);
}

.section-layout--left .section-copy {
  order: 2;
}

.section-layout--left .section-visual {
  order: 1;
}

.section-visual {
  position: sticky;
  top: calc(var(--pb-header) + 22px);
}

.section-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--pb-radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--pb-shadow);
}

.section--light .section-visual img,
.section--yellow .section-visual img {
  border-color: rgba(16, 29, 44, 0.18);
}

.content-section:has(.section-visual) {
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--pb-white);
  background: var(--pb-deep);
}

.content-section:has(.section-visual)::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.92) 0%, rgba(7, 16, 24, 0.72) 46%, rgba(7, 16, 24, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 16, 24, 0.72) 0%, rgba(7, 16, 24, 0.12) 58%);
  content: "";
  pointer-events: none;
}

.content-section:has(.section-layout--left)::before {
  background:
    linear-gradient(270deg, rgba(7, 16, 24, 0.92) 0%, rgba(7, 16, 24, 0.72) 46%, rgba(7, 16, 24, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 16, 24, 0.72) 0%, rgba(7, 16, 24, 0.12) 58%);
}

.content-section:has(.section-visual) .section-layout,
.content-section:has(.section-visual) .section-layout--left {
  display: block;
}

.content-section:has(.section-visual) .section-copy {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.content-section:has(.section-layout--left) .section-copy {
  margin-left: auto;
}

.content-section:has(.section-visual) .section-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  top: 0;
}

.content-section:has(.section-visual) .section-visual img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center top;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.content-section:has(.section-visual) h2 {
  color: var(--pb-white);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.content-section:has(.section-visual) h3 {
  color: var(--pb-yellow);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.44);
}

.content-section:has(.section-visual) p,
.content-section:has(.section-visual) li {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.46);
}

.content-section:has(.section-visual) .table-scroll {
  border-color: rgba(255, 255, 255, 0.22);
}

.content-section:has(.section-visual) table {
  background: rgba(12, 23, 36, 0.96);
  color: var(--pb-white);
}

.content-section:has(.section-visual) td {
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.content-section:has(.section-visual) td:first-child {
  color: #fff4a6;
}

.content-section:has(.section-visual) tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.045);
}

.banner-section {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--pb-deep);
}

.banner-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-section--right img {
  object-position: right center;
}

.banner-section--left img {
  object-position: left center;
}

.banner-section::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.9), rgba(7, 16, 24, 0.58) 52%, rgba(7, 16, 24, 0.16)),
    linear-gradient(0deg, rgba(7, 16, 24, 0.86), transparent 55%);
  content: "";
}

.banner-section--copy-right::after {
  background:
    linear-gradient(270deg, rgba(7, 16, 24, 0.92), rgba(7, 16, 24, 0.62) 55%, rgba(7, 16, 24, 0.2)),
    linear-gradient(0deg, rgba(7, 16, 24, 0.78), transparent 55%);
}

.banner-inner {
  position: relative;
  z-index: 1;
  padding: 68px 0;
}

.banner-copy {
  max-width: 650px;
}

.banner-section--copy-right .banner-copy {
  margin-left: auto;
}

.banner-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.promo-banner {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--pb-deep);
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.promo-banner--focus-left img {
  object-position: left top;
}

.promo-banner--focus-right img {
  object-position: right top;
}

.promo-banner::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 24, 0.72), rgba(7, 16, 24, 0.18) 56%, rgba(7, 16, 24, 0.72)),
    linear-gradient(0deg, rgba(7, 16, 24, 0.9), transparent 58%);
  content: "";
}

.promo-banner__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--pb-max));
  margin: 0 auto;
  padding: 54px 0;
}

.promo-banner__copy {
  max-width: 520px;
  padding: 24px;
  color: var(--pb-white);
  background: rgba(7, 16, 24, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--pb-radius);
  box-shadow: var(--pb-shadow);
  backdrop-filter: blur(18px) saturate(130%);
}

.promo-banner--copy-right .promo-banner__copy {
  margin-left: auto;
}

.promo-banner__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 10px;
  color: var(--pb-navy);
  background: var(--pb-yellow);
  border-radius: var(--pb-radius);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-banner h2 {
  max-width: 460px;
  color: var(--pb-white);
  font-size: 34px;
}

.promo-banner p {
  max-width: 460px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.promo-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.continuation {
  padding-top: 58px;
}

.step-cards {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.step-cards > p {
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 60px;
  background: rgba(12, 23, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pb-radius);
  counter-increment: step;
}

.step-cards > p::before {
  position: absolute;
  left: 16px;
  top: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--pb-yellow);
  color: var(--pb-navy);
  border-radius: 8px;
  font-family: Impact, "Arial Black", "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 16px;
  content: counter(step);
}

.section--light .step-cards > p,
.section--yellow .step-cards > p {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(16, 29, 44, 0.18);
}

.feature-cards {
  margin-top: 22px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-cards > p {
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 44px;
  background: rgba(12, 23, 36, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pb-radius);
}

.feature-cards > p::before {
  position: absolute;
  left: 16px;
  top: 20px;
  width: 16px;
  height: 16px;
  background: var(--pb-yellow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}

.section--light .feature-cards > p,
.section--yellow .feature-cards > p {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(16, 29, 44, 0.18);
}

.section--light .feature-cards > p::before,
.section--yellow .feature-cards > p::before {
  background: var(--pb-teal);
}

.doc-fragment > * + * {
  margin-top: 18px;
}

.section-copy,
.section-visual,
.doc-fragment,
.table-scroll,
.legal-article {
  min-width: 0;
}

.doc-fragment h3 {
  margin-top: 34px;
}

.doc-fragment ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.doc-fragment li {
  position: relative;
  margin: 10px 0;
  padding-left: 30px;
}

.doc-fragment li::before {
  position: absolute;
  left: 0;
  top: .25em;
  width: 16px;
  height: 16px;
  background: var(--pb-yellow);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
}

.section--yellow .doc-fragment li::before,
.section--light .doc-fragment li::before {
  background: var(--pb-teal);
}

.table-scroll {
  width: 100%;
  max-width: 100%;
  margin: 24px 0 4px;
  overflow-x: visible;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--pb-radius);
  box-shadow: var(--pb-shadow);
  -webkit-overflow-scrolling: touch;
}

.section--light .table-scroll,
.section--yellow .table-scroll {
  border-color: rgba(16, 29, 44, 0.18);
}

table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  background: #0c1724;
  color: var(--pb-white);
}

th,
td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  line-height: 1.35;
}

table:has(th:nth-child(6)) {
  font-size: 13px;
}

table:has(th:nth-child(6)) th,
table:has(th:nth-child(6)) td {
  padding: 12px 10px;
}

table:has(th:nth-child(8)) {
  font-size: 12px;
}

table:has(th:nth-child(8)) th,
table:has(th:nth-child(8)) td {
  padding: 10px 6px;
}

th {
  color: var(--pb-navy);
  background: var(--pb-yellow);
  font-weight: 900;
}

tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}

td:first-child {
  color: #fff4a6;
  font-weight: 800;
}

.section--light table,
.section--yellow table {
  background: #ffffff;
  color: var(--pb-ink);
}

.section--light td:first-child,
.section--yellow td:first-child {
  color: #0a6264;
}

.section--light td,
.section--yellow td {
  border-bottom-color: rgba(16, 29, 44, 0.12);
}

.section--light tr:nth-child(even) td,
.section--yellow tr:nth-child(even) td {
  background: rgba(1, 126, 128, 0.08);
}

.faq-list {
  margin-top: 28px;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.section--light .faq-item,
.section--yellow .faq-item {
  border-top-color: rgba(16, 29, 44, 0.18);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--pb-navy);
  background: var(--pb-yellow);
  border-radius: 50%;
  content: "+";
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item h3 {
  font-size: 22px;
}

.faq-item p {
  max-width: 900px;
  margin: 0 0 24px;
}

.legal-note {
  margin-top: 28px;
  padding: 18px;
  color: var(--pb-white);
  background: rgba(254, 209, 0, 0.1);
  border-left: 4px solid var(--pb-yellow);
  border-radius: var(--pb-radius);
}

.legal-note strong {
  color: var(--pb-yellow);
}

.site-footer {
  background: #05090d;
  border-top: 1px solid rgba(254, 209, 0, 0.24);
}

.footer-inner {
  padding: 48px 0 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
}

.footer-brand img {
  width: 124px;
  height: auto;
}

.footer-brand p {
  margin: 18px 0 0;
  color: var(--pb-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-links h2 {
  margin-bottom: 12px;
  color: var(--pb-yellow);
  font-size: 18px;
}

.footer-links a {
  display: block;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--pb-yellow);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 24px;
  color: var(--pb-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.age-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--pb-navy);
  background: var(--pb-yellow);
  border-radius: 50%;
  font-weight: 900;
}

.breadcrumbs {
  padding: 18px 0;
  color: var(--pb-muted);
  background: #08111a;
  font-size: 14px;
}

.breadcrumbs ol {
  width: min(100% - 32px, var(--pb-max));
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: var(--pb-yellow);
  content: "/";
}

.breadcrumbs a {
  color: var(--pb-yellow);
}

.legal-hero {
  background:
    linear-gradient(135deg, rgba(254, 209, 0, 0.16), transparent 36%),
    linear-gradient(315deg, rgba(1, 126, 128, 0.24), transparent 42%),
    var(--pb-navy);
}

.legal-article {
  max-width: 920px;
}

.legal-article h2 + p,
.legal-article h3 + p {
  margin-top: 14px;
}

@media (max-width: 980px) {
  body.nav-open::before {
    position: fixed;
    inset: var(--pb-header) 0 0 0;
    z-index: 850;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(8px);
    content: "";
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: var(--pb-header);
    right: 0;
    bottom: 0;
    width: min(360px, 92vw);
    z-index: 920;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 22px;
    background: rgba(7, 16, 24, 0.82);
    border-left: 1px solid rgba(254, 209, 0, 0.24);
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px) saturate(130%);
    transform: translateX(100%);
    transition: transform .22s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a,
  .site-nav .nav-action {
    width: 100%;
    justify-content: flex-start;
    margin: 0;
  }

  .hero {
    min-height: 620px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 23px;
  }

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

  .section-layout,
  .section-layout--left {
    grid-template-columns: 1fr;
  }

  .section-layout--left .section-copy,
  .section-layout--left .section-visual {
    order: initial;
  }

  .section-visual {
    position: static;
  }

  .banner-section {
    min-height: 560px;
  }

  .banner-section::after,
  .banner-section--copy-right::after {
    background:
      linear-gradient(90deg, rgba(7, 16, 24, 0.94), rgba(7, 16, 24, 0.7)),
      linear-gradient(0deg, rgba(7, 16, 24, 0.86), transparent 60%);
  }

  .banner-section--copy-right .banner-copy {
    margin-left: 0;
  }

  .promo-banner {
    min-height: 400px;
  }

  .promo-banner__copy {
    margin-left: 0;
  }

  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --pb-header: 66px;
  }

  .header-inner,
  .hero__inner,
  .section-inner,
  .banner-inner,
  .footer-inner,
  .breadcrumbs ol {
    width: min(100% - 24px, var(--pb-max));
  }

  .brand-link img {
    width: 142px;
  }

  .hero {
    min-height: auto;
  }

  .hero__image {
    object-position: 62% top;
  }

  .hero__inner {
    padding: 54px 0 42px;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(7, 16, 24, 0.97), rgba(7, 16, 24, 0.82)),
      linear-gradient(0deg, rgba(7, 16, 24, 0.9), transparent 62%);
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  h3,
  .faq-item h3 {
    font-size: 21px;
  }

  .hero p,
  .banner-copy p,
  .section-lede {
    font-size: 16px;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .nav-action {
    width: 100%;
    white-space: normal;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 52px 0;
  }

  .banner-section {
    min-height: auto;
  }

  .banner-section img {
    opacity: .56;
    object-position: center;
  }

  .banner-inner {
    padding: 56px 0;
  }

  .promo-banner {
    min-height: auto;
  }

  .promo-banner img {
    opacity: .72;
    object-position: center top;
  }

  .promo-banner__inner {
    width: min(100% - 24px, var(--pb-max));
    padding: 44px 0;
  }

  .promo-banner__copy {
    max-width: 100%;
    padding: 20px;
  }

  .promo-banner h2 {
    font-size: 26px;
  }

  .promo-banner p {
    font-size: 16px;
  }

  .promo-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .table-scroll {
    overflow-x: auto;
  }

  table {
    min-width: 620px;
    table-layout: auto;
  }

  th,
  td {
    padding: 12px;
  }

  .footer-bottom {
    display: grid;
  }
}

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