:root {
  color-scheme: light;
  --bg: #fff0c8;
  --bg-soft: #d8efd1;
  --panel: #fff8e8;
  --panel-2: #ffdf7e;
  --line: #d4a93f;
  --text: #24130a;
  --muted: #614b31;
  --gold: #ffc21c;
  --gold-2: #fff15f;
  --orange: #f05a24;
  --red: #c91f17;
  --green: #14965f;
  --green-soft: #cdebbf;
  --asphalt: #151a1d;
  --button-ink: #221008;
  --button-hot: #e5331e;
  --button-fire: #f05a24;
  --button-sun: #ffc21c;
  --button-lime: #8edb4f;
  --shadow: 0 18px 48px rgba(74, 43, 11, .18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(212, 169, 63, .9);
  background: rgba(255, 240, 200, .94);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  justify-content: center;
  width: min(1440px, calc(100% - 32px));
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  transform: translateX(-48px);
}

.brand-name {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffc21c;
  box-shadow: 0 10px 24px rgba(240, 90, 36, .28);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  padding: 8px;
  border: 1px solid rgba(255, 194, 28, .78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, .92) 0%, rgba(255, 224, 124, .72) 48%, rgba(205, 235, 191, .78) 100%);
  box-shadow: 0 12px 30px rgba(74, 43, 11, .16), inset 0 0 0 1px rgba(255, 255, 255, .42);
  font-size: 15px;
}

.nav a {
  --nav-accent: #f05a24;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #3b2612;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(255, 250, 240, .42);
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.nav a:nth-child(1) {
  --nav-accent: #e5331e;
}

.nav a:nth-child(2) {
  --nav-accent: #ffc21c;
}

.nav a:nth-child(3) {
  --nav-accent: #14965f;
}

.nav a:nth-child(4) {
  --nav-accent: #f05a24;
}

.nav a:nth-child(5) {
  --nav-accent: #27b7a4;
}

.nav a:nth-child(6) {
  --nav-accent: #8edb4f;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff15f, var(--nav-accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #151a1d;
  border-color: var(--nav-accent);
  background: rgba(255, 250, 240, .92);
  box-shadow: inset 0 -5px 0 var(--nav-accent), 0 8px 18px rgba(74, 43, 11, .12);
  transform: translateY(-1px);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-promo-copy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid #0e8f7a;
  border-radius: 8px;
  background: linear-gradient(135deg, #efff9a 0%, #32d08f 48%, #0e8f7a 100%);
  color: #071b16;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .4px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(14, 143, 122, .28), inset 0 0 0 2px rgba(255, 255, 255, .42);
}

.header-promo-copy:hover {
  border-color: #ffc21c;
  background: linear-gradient(135deg, #fff15f 0%, #42e29d 48%, #087c68 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(14, 143, 122, .36), inset 0 0 0 2px rgba(255, 255, 255, .52);
}

.header-promo-copy.is-copied {
  border-color: #0b6f48;
  background: linear-gradient(135deg, #dfffa8 0%, #69df76 48%, #10a35d 100%);
  color: #062015;
  box-shadow: 0 18px 34px rgba(16, 163, 93, .38), inset 0 0 0 2px rgba(255, 255, 255, .62);
}

.header-promo-copy.is-copied::before {
  content: "";
  margin-right: 8px;
  font-weight: 900;
}

.header-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 236px;
  min-height: 56px;
  margin-left: 0;
  padding: 0 32px;
  border: 3px solid #ff8723;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #ffe85a 0%, #ffc840 44%, #ff9827 100%);
  color: var(--button-ink);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 0 0 3px rgba(255, 135, 35, .22),
    0 18px 36px rgba(240, 90, 36, .34),
    inset 0 0 0 2px rgba(255, 255, 255, .36),
    inset 0 -5px 0 rgba(185, 93, 0, .24);
  isolation: isolate;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, transparent 32%, rgba(255, 255, 255, .48) 46%, transparent 60%, transparent 100%);
  transform: translateX(-130%);
  transition: transform .55s ease;
  z-index: -1;
}

.header-cta:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(135deg, #fff173 0%, #ffd64a 38%, #ff8b21 100%);
  box-shadow:
    0 0 0 4px rgba(255, 135, 35, .28),
    0 22px 42px rgba(240, 90, 36, .44),
    inset 0 0 0 2px rgba(255, 255, 255, .42),
    inset 0 -5px 0 rgba(185, 93, 0, .28);
}

.header-cta:hover::before {
  transform: translateX(130%);
}

.nav-toggle {
  position: relative;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 50px;
  gap: 6px;
  width: 50px;
  height: 50px;
  border: 2px solid #14965f;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff15f 0%, #8edb4f 50%, #14965f 100%);
  color: #132014;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 12px 24px rgba(20, 150, 95, .28), 0 0 0 4px rgba(255, 194, 28, .2);
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  border-color: rgba(185, 31, 24, .82);
  background:
    linear-gradient(135deg, #fff36a 0%, var(--button-sun) 38%, var(--button-fire) 72%, var(--button-hot) 100%);
  color: var(--button-ink);
  box-shadow: 0 14px 28px rgba(201, 31, 23, .26), inset 0 -2px 0 rgba(118, 35, 0, .16);
}

.button:hover {
  background:
    linear-gradient(135deg, #fff15f 0%, #ffae20 40%, #e5331e 100%);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(20, 150, 95, .72);
  background: linear-gradient(135deg, #fffaf0 0%, #dff4b4 100%);
  color: #162116;
  box-shadow: inset 0 -1px 0 rgba(20, 150, 95, .14);
}

.button-secondary:hover {
  border-color: #f05a24;
  background: linear-gradient(135deg, #fff15f 0%, #ffc21c 48%, #8edb4f 100%);
  transform: translateY(-1px);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 46px;
  z-index: 65;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid #151a1d;
  border-radius: 8px;
  background: linear-gradient(135deg, #8edb4f 0%, #ffc21c 52%, #f05a24 100%);
  color: #151a1d;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  box-shadow: 0 14px 28px rgba(20, 150, 95, .22), 0 0 0 4px rgba(255, 194, 28, .16);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.promo-pop {
  position: fixed;
  left: 28px;
  right: auto;
  bottom: 28px;
  z-index: 56;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  width: min(620px, calc(100% - 56px));
  min-height: 176px;
  padding: 28px 72px 26px 26px;
  overflow: hidden;
  border: 2px solid rgba(255, 241, 95, .88);
  border-radius: 22px;
  background:
    linear-gradient(115deg, rgba(21, 26, 29, .24) 0 16%, transparent 16% 100%),
    linear-gradient(135deg, #8b160f 0%, #c91f17 34%, #f05a24 66%, #ffc21c 100%);
  color: #ffffff;
  box-shadow: 0 26px 58px rgba(36, 19, 10, .38), inset 0 0 0 1px rgba(255, 255, 255, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.promo-pop::before,
.promo-pop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.promo-pop::before {
  content: "";
  inset: 12px 12px auto;
  height: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #fff15f 0 28px, #151a1d 28px 42px);
  opacity: .88;
}

.promo-pop::after {
  right: -70px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 219, 79, .42) 0 34%, rgba(255, 194, 28, .24) 35% 54%, transparent 55%);
}

.promo-pop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.promo-pop-media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  overflow: hidden;
  border: 3px solid rgba(255, 241, 95, .9);
  border-radius: 20px;
  background: #fff0c8;
  transform: none;
  box-shadow: 0 16px 28px rgba(36, 19, 10, .24), inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.promo-pop-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
}

.promo-pop-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  min-width: 0;
}

.promo-pop-body strong {
  width: fit-content;
  padding: 7px 18px 8px;
  border: 1px solid rgba(255, 241, 95, .58);
  border-radius: 999px;
  background: rgba(21, 26, 29, .32);
  font-size: 26px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(36, 19, 10, .38);
}

.promo-pop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 300px);
  min-height: 60px;
  padding: 12px 24px;
  border: 3px solid rgba(21, 26, 29, .85);
  border-radius: 16px;
  background:
    linear-gradient(135deg, #8edb4f 0%, #fff15f 36%, #ffc21c 64%, #f05a24 100%);
  color: #151a1d;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(36, 19, 10, .28);
  box-shadow: inset 0 -4px 0 rgba(185, 93, 0, .24), 0 14px 26px rgba(36, 19, 10, .28), 0 0 0 4px rgba(255, 255, 255, .18);
  transform: skewX(-4deg);
}

.promo-pop-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(21, 26, 29, .78);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff15f 0%, #ffc21c 58%, #8edb4f 100%);
  color: #151a1d;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(36, 19, 10, .28);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 76% 15%, rgba(255, 194, 28, .38), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(20, 150, 95, .22), transparent 28%),
    radial-gradient(circle at 52% 38%, rgba(201, 31, 23, .10), transparent 34%),
    linear-gradient(180deg, #ffe07c 0%, #fff0c8 48%, #d8efd1 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--bg), rgba(255, 240, 200, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 48px;
  max-width: calc(100vw - 32px);
  padding: 72px 0 92px;
}

.hero-home .hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 42px;
}

.hero-home .hero-art {
  align-self: center;
}

.hero-grid > *,
.grid-2 > *,
.grid-3 > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9d3512;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero h1,
.page-hero h1 {
  width: min(100%, 860px);
  max-width: calc(100vw - 24px);
  margin: 14px 0 18px;
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero h1 span {
  display: inline;
}

.hero h1 span + span::before {
  content: "";
}

.hero-copy {
  width: min(100%, 640px);
  max-width: calc(100vw - 24px);
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.proof-item,
.card,
.summary-box,
.table-wrap,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.proof-item {
  padding: 14px;
}

.proof-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.proof-value {
  display: block;
  margin-top: 4px;
  font-weight: 800;
}

.hero-art {
  display: block;
  width: 100%;
  max-width: calc(100vw - 24px);
  height: auto;
  overflow: hidden;
  border: 0;
  outline: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(105, 56, 8, .14);
  filter: saturate(1.05);
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  border-radius: inherit;
  object-fit: contain;
}

.hero-art figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-home .hero-art {
  height: auto;
}

.article-media {
  width: min(100%, 860px);
  margin: 34px auto 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.article-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  border: 0;
  outline: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(74, 43, 11, .12);
  object-fit: contain;
}

.article-media figcaption {
  width: min(100%, 820px);
  margin: 10px auto 0;
  padding: 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.article-media--wide {
  width: min(100%, 860px);
}

.article-media--square {
  width: min(100%, 560px);
}

.article-media--wide img {
  height: auto;
}

.article-media--square img {
  width: 100%;
  margin: 0;
  height: auto;
  border-radius: 20px;
}

.content-narrow .article-media {
  grid-column: 1 / -1;
}

main {
  counter-reset: seo-section;
}

.section {
  position: relative;
  padding: 44px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(16px, calc((100% - 1120px) / 2));
  right: max(16px, calc((100% - 1120px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 169, 63, .75), transparent);
}

.section:first-of-type::before {
  content: none;
}

.section:nth-of-type(odd):not(.section-soft) {
  background:
    linear-gradient(90deg, rgba(255, 220, 121, .24), transparent 34%),
    linear-gradient(180deg, rgba(255, 248, 232, .48), rgba(255, 240, 200, 0));
}

.section:nth-of-type(even):not(.section-soft) {
  background:
    linear-gradient(90deg, rgba(20, 150, 95, .10), transparent 38%),
    linear-gradient(180deg, rgba(255, 240, 200, 0), rgba(255, 248, 232, .42));
}

.section.section-soft,
.section.alt {
  border-block: 1px solid rgba(20, 150, 95, .22);
  background:
    linear-gradient(90deg, rgba(20, 150, 95, .20), transparent 34%),
    linear-gradient(180deg, rgba(205, 235, 191, .86), rgba(255, 248, 232, .72));
}

.section .content-narrow {
  counter-increment: seo-section;
  position: relative;
  max-width: 980px;
}

.section .content-narrow::before {
  content: none;
}

.section .content-narrow::after {
  content: none;
}

.section .content-narrow > * {
  position: relative;
  z-index: 1;
}

.section .content-narrow h2 {
  margin: 12px 0 20px;
}

.section .content-narrow p {
  margin-bottom: 16px;
}

.section .content-narrow .tag + h2 + p,
.section .content-narrow h2 + p {
  margin-top: 0;
}

.section:nth-of-type(3n+2) .content-narrow {
  display: grid;
  grid-template-columns: minmax(220px, 315px) minmax(0, 1fr);
  column-gap: 42px;
  max-width: 1120px;
  padding: 34px 38px 36px;
  border: 1px solid rgba(212, 169, 63, .72);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 220, 121, .50) 0 32%, rgba(255, 248, 232, .96) 32%),
    var(--panel);
  box-shadow: 0 18px 42px rgba(74, 43, 11, .13);
}

.section:nth-of-type(3n+2) .content-narrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32%;
  width: 1px;
  background: rgba(212, 169, 63, .68);
}

.section:nth-of-type(3n+2) .content-narrow::after {
  content: counter(seo-section, decimal-leading-zero);
  position: absolute;
  right: 24px;
  bottom: -24px;
  color: rgba(240, 90, 36, .11);
  font-size: 116px;
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}

.section:nth-of-type(3n+2) .content-narrow .tag,
.section:nth-of-type(3n+2) .content-narrow h2 {
  grid-column: 1;
}

.section:nth-of-type(3n+2) .content-narrow p {
  grid-column: 2;
  max-width: 760px;
  padding: 13px 16px;
  border-left: 4px solid rgba(20, 150, 95, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .42);
  font-size: 17px;
  line-height: 1.58;
}

.section:nth-of-type(3n) .content-narrow {
  max-width: 1040px;
  padding: 34px 38px 36px;
  border-top: 7px solid #14965f;
  border-bottom: 1px solid rgba(20, 150, 95, .24);
  background: linear-gradient(180deg, rgba(205, 235, 191, .58), rgba(255, 248, 232, .55));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .50);
}

.section:nth-of-type(3n) .content-narrow h2 {
  max-width: 720px;
}

.section:nth-of-type(3n) .content-narrow p:first-of-type {
  max-width: 820px;
  padding: 18px 20px;
  border-radius: 8px;
  background: #fff8e8;
  color: var(--text);
  font-size: 19px;
  line-height: 1.5;
  box-shadow: 0 12px 26px rgba(74, 43, 11, .10);
}

.section:nth-of-type(3n) .content-narrow p:not(:first-of-type) {
  max-width: 780px;
  margin-left: min(8vw, 96px);
  padding-left: 18px;
  border-left: 3px solid rgba(240, 90, 36, .42);
}

.section:nth-of-type(3n+1) .content-narrow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  max-width: 1120px;
}

.section:nth-of-type(3n+1) .content-narrow .tag,
.section:nth-of-type(3n+1) .content-narrow h2 {
  grid-column: 1 / -1;
}

.section:nth-of-type(3n+1) .content-narrow h2 {
  max-width: 780px;
  margin-bottom: 8px;
}

.section:nth-of-type(3n+1) .content-narrow p {
  min-height: 118px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(212, 169, 63, .64);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 232, .94), rgba(255, 220, 121, .20));
  box-shadow: 0 12px 28px rgba(74, 43, 11, .10);
}

.section:nth-of-type(3n+1) .content-narrow p:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 248, 232, .94), rgba(205, 235, 191, .40));
}

.section.section-soft .section-inner {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(20, 150, 95, .30);
  border-radius: 8px;
  background: rgba(255, 248, 232, .78);
  box-shadow: 0 18px 42px rgba(74, 43, 11, .10);
}

.section-title {
  max-width: 760px;
  margin: 0 0 28px;
}

.section-title h2,
.page-content h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.section-title p,
.page-content p {
  color: var(--muted);
}

.section h2 {
  max-width: 920px;
  margin: 10px 0 18px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.12;
}

.section p {
  margin: 0 0 18px;
}

.section p:last-child {
  margin-bottom: 0;
}

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

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

.card {
  padding: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border: 1px solid rgba(240, 90, 36, .22);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffdc79, #fff15f);
  color: #88300d;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(105, 56, 8, .10);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(212, 169, 63, .82);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(74, 43, 11, .12);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(255, 220, 121, .38);
  color: #8f340d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

tbody tr:nth-child(even) td {
  background: rgba(255, 248, 232, .54);
}

td {
  color: var(--muted);
}

td strong {
  color: var(--text);
}

.status {
  color: var(--green);
  font-weight: 800;
}

.warning {
  color: #9d3512;
  font-weight: 800;
}

.summary-box {
  padding: 24px;
  background: linear-gradient(135deg, #ffdc79, #fff8e8 48%, #cdebbf);
}

.summary-box p {
  margin: 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(212, 169, 63, .88);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(74, 43, 11, .10);
}

.faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 800;
}

.faq details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-item {
  padding: 20px;
  background: var(--panel);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  padding: 44px 0;
  background: linear-gradient(135deg, #fff15f, #ffc21c 46%, #f05a24);
  color: #241000;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-grid h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 40px);
}

.cta-grid p {
  margin: 0;
  max-width: 720px;
}

.cta-band .button-secondary {
  background: linear-gradient(135deg, #151a1d 0%, #24301f 48%, #8b160f 100%);
  border-color: rgba(255, 194, 28, .7);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 26, 29, .28), inset 0 0 0 1px rgba(255, 194, 28, .22);
}

.cta-band .button-secondary:hover {
  background: linear-gradient(135deg, #24130a 0%, #c91f17 46%, #f05a24 100%);
  border-color: #fff15f;
}

.page-hero {
  padding: 70px 0 46px;
  background:
    radial-gradient(circle at 80% 0%, rgba(245, 189, 22, .28), transparent 28%),
    linear-gradient(180deg, #ffe07c 0%, #fff0c8 58%, var(--bg) 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: #9d3512;
  text-decoration: none;
}

.page-content {
  padding: 42px 0 56px;
}

.content-narrow {
  max-width: 860px;
}

.content-narrow ul,
.content-narrow ol {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid #242a2d;
  background: var(--asphalt);
  padding: 36px 0;
  color: #ead8ad;
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #f6df9e;
  text-decoration: none;
}

.footer-inner-legal {
  grid-template-columns: 1fr;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(234, 216, 173, .18);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal a,
.footer-legal-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(246, 223, 158, .2);
  border-radius: 8px;
  color: #f6df9e;
  font: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal-button:hover {
  border-color: rgba(255, 194, 28, .62);
  color: #fff15f;
}

.disclaimer {
  margin-top: 16px;
  max-width: 920px;
  color: #d0b985;
}

@media (max-width: 880px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 152px);
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding-top: calc(env(safe-area-inset-top) + 10px);
    overflow: visible;
    background: rgba(255, 240, 200, .96);
    backdrop-filter: blur(14px);
    transform: none;
    z-index: 1000;
  }

  .site-header::before {
    content: none;
  }

  .header-inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-toggle {
    order: 2;
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    display: inline-flex;
    margin-left: auto;
  }

  .brand {
    order: 1;
    position: static;
    top: auto;
    left: auto;
    z-index: 1;
    flex: 1 1 calc(100% - 62px);
    width: auto;
    min-width: 0;
    gap: 10px;
    transform: none;
  }

  .brand-name {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    color: #24130a;
    font-size: clamp(15px, 3.7vw, 19px);
    font-weight: 900;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-promo-copy,
  .header-cta {
    order: 3;
    display: inline-flex;
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    font-size: clamp(13px, 2.6vw, 15px);
    line-height: 1.12;
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .header-promo-copy {
    letter-spacing: .2px;
  }

  .header-cta {
    margin-left: 0;
    font-size: clamp(15px, 3.5vw, 17px);
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
    margin-left: 0;
    width: 100%;
    max-height: 0;
    padding: 0 10px;
    overflow: hidden;
    border-color: transparent;
    background:
      linear-gradient(135deg, rgba(255, 248, 232, .98) 0%, rgba(255, 224, 124, .92) 54%, rgba(205, 235, 191, .94) 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height .22s ease, padding .22s ease, opacity .18s ease, transform .18s ease, border-color .18s ease, visibility .18s ease;
    font-size: 14px;
  }

  .nav.is-open {
    max-height: 420px;
    padding: 10px;
    border-color: var(--line);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    min-height: 44px;
    justify-content: space-between;
    padding: 0 14px;
    background: rgba(255, 250, 240, .78);
    border: 1px solid rgba(212, 169, 63, .72);
  }

  .hero {
    min-height: auto;
    overflow-x: hidden;
  }

  .hero-grid,
  .grid-3,
  .grid-2,
  .cta-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
    padding: 44px 0 70px;
  }

  .hero .section-inner,
  .hero-grid,
  .hero-grid > div,
  .hero-copy,
  .hero h1,
  .hero-art,
  .hero-proof,
  .hero-actions {
    width: 100%;
    max-width: calc(100vw - 24px);
    min-width: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(30px, 5vw, 38px);
    line-height: 1.14;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: wrap;
  }

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

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-actions,
  .hero-proof {
    width: 100%;
    max-width: none;
  }

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

  .section .content-narrow,
  .section:nth-of-type(3n+1) .content-narrow,
  .section:nth-of-type(3n+2) .content-narrow,
  .section:nth-of-type(3n) .content-narrow {
    display: block;
    max-width: 860px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .section .content-narrow::before,
  .section .content-narrow::after,
  .section:nth-of-type(3n+2) .content-narrow::before,
  .section:nth-of-type(3n+2) .content-narrow::after {
    content: none;
  }

  .section .content-narrow p,
  .section:nth-of-type(3n+1) .content-narrow p,
  .section:nth-of-type(3n+2) .content-narrow p,
  .section:nth-of-type(3n) .content-narrow p,
  .section:nth-of-type(3n) .content-narrow p:first-of-type,
  .section:nth-of-type(3n) .content-narrow p:not(:first-of-type) {
    max-width: none;
    min-height: 0;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: inherit;
    line-height: inherit;
  }

  .article-media img,
  .article-media--wide img,
  .article-media--square img {
    height: auto;
    max-height: 340px;
  }

  .cta-grid {
    align-items: start;
  }
}

:root {
  --bg: #eaf2fb;
  --bg-soft: #d8e8f8;
  --panel: #ffffff;
  --panel-2: #eef6ff;
  --line: #1d5f9f;
  --text: #07182d;
  --muted: #38526f;
  --gold: #ffc531;
  --gold-2: #ffe36a;
  --orange: #ff5a00;
  --red: #d52b1e;
  --green: #16a66a;
  --green-soft: #e0f5eb;
  --asphalt: #041a33;
  --button-ink: #061324;
  --button-hot: #ef3f00;
  --button-fire: #ff5a00;
  --button-sun: #ffc531;
  --button-lime: #1d5f9f;
  --shadow: 0 22px 48px rgba(4, 26, 51, .18);
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 90, 0, .18), transparent 24%),
    radial-gradient(circle at 88% 0%, rgba(255, 197, 49, .18), transparent 22%),
    linear-gradient(180deg, #073b73 0, #0b4f91 420px, #eaf2fb 421px, #eaf2fb 100%);
  color: var(--text);
}

.site-header {
  border-bottom: 1px solid rgba(255, 197, 49, .42);
  background: linear-gradient(180deg, rgba(4, 26, 51, .98), rgba(7, 59, 115, .96));
  box-shadow: 0 14px 34px rgba(4, 26, 51, .28);
}

.brand-mark {
  background: radial-gradient(circle at 50% 50%, #ff7a00 0 36%, #ff5a00 37% 58%, #073b73 59% 100%);
  box-shadow: 0 12px 28px rgba(255, 90, 0, .32);
}

.nav {
  border-color: rgba(255, 197, 49, .40);
  background: rgba(4, 26, 51, .34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .10), 0 12px 30px rgba(4, 26, 51, .20);
}

.nav a {
  --nav-accent: #ffc531;
  color: #ffffff;
  border-color: rgba(255, 255, 255, .16);
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  box-shadow: inset 0 -3px 0 rgba(255, 197, 49, .24);
}

.nav a::after {
  background: linear-gradient(90deg, #ffc531, #ff5a00);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #061324;
  background: linear-gradient(135deg, #fff4a6, #ffc531);
  box-shadow: inset 0 -5px 0 #ff5a00, 0 10px 22px rgba(4, 26, 51, .26);
}

.header-promo-copy {
  border-color: rgba(255, 197, 49, .82);
  background: linear-gradient(135deg, #073b73 0%, #0b4f91 52%, #041a33 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(4, 26, 51, .28), inset 0 0 0 2px rgba(255, 255, 255, .16);
}

.header-promo-copy:hover,
.header-promo-copy.is-copied {
  border-color: #ff5a00;
  background: linear-gradient(135deg, #fff4a6 0%, #ffc531 42%, #ff5a00 100%);
  color: #061324;
}

.header-cta,
.button,
.promo-pop-button,
.footer-legal-button {
  border-color: #ff5a00;
  background: linear-gradient(135deg, #fff4a6 0%, #ffc531 36%, #ff5a00 76%, #ef3f00 100%);
  color: #061324;
  box-shadow: 0 14px 28px rgba(255, 90, 0, .24);
}

.button-secondary {
  border-color: rgba(255, 197, 49, .72);
  background: linear-gradient(135deg, #073b73 0%, #0b4f91 58%, #041a33 100%);
  color: #ffffff;
}

.button-secondary:hover {
  border-color: #ff5a00;
  background: linear-gradient(135deg, #041a33 0%, #073b73 48%, #ff5a00 100%);
  color: #ffffff;
}

.hero,
.page-variant-a .hero,
.page-variant-b .hero,
.page-variant-c .hero,
.page-variant-d .hero,
.page-variant-e .hero,
.section.section-soft {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 197, 49, .24), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(255, 90, 0, .18), transparent 26%),
    linear-gradient(180deg, #073b73 0%, #041a33 100%);
}

.hero,
.hero h1,
.hero h2,
.hero p,
.hero .eyebrow,
.hero .tag {
  color: #ffffff;
}

.hero::after {
  background: linear-gradient(0deg, #eaf2fb, rgba(234, 242, 251, 0));
}

.hero-proof .proof-item,
.section .content-narrow,
.section:nth-of-type(3n+1) .content-narrow,
.section:nth-of-type(3n+2) .content-narrow,
.section:nth-of-type(3n) .content-narrow,
main .section .content-narrow,
main .section:nth-of-type(3n+1) .content-narrow,
main .section:nth-of-type(3n+2) .content-narrow,
main .section:nth-of-type(3n) .content-narrow {
  border-color: rgba(29, 95, 159, .30);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(241, 247, 255, .94));
  box-shadow: 0 18px 42px rgba(4, 26, 51, .12);
}

.eyebrow,
.tag,
details summary {
  color: #073b73;
}

.section:nth-of-type(odd):not(.section-soft) {
  background: linear-gradient(180deg, #eaf2fb, #f8fbff);
}

.section:nth-of-type(even):not(.section-soft) {
  background: linear-gradient(180deg, #dcecff, #eaf2fb);
}

.section.section-soft .section-inner,
.table-wrap,
details,
.media-placeholder,
article .hero-art,
article .article-media,
article .section .content-narrow .article-media,
article .section.section-soft .article-media {
  border-color: rgba(29, 95, 159, .32);
  background: linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(226, 239, 255, .86));
  box-shadow: 0 18px 42px rgba(4, 26, 51, .13);
}

main .faq-section details {
  border-color: rgba(29, 95, 159, .34);
  background: #ffffff;
}

main .faq-section details[open] {
  border-color: rgba(255, 90, 0, .44);
  background: linear-gradient(180deg, #ffffff, #fff6e4);
}

main .faq-section summary::after,
.scroll-top,
.nav-toggle,
.promo-pop-close {
  border-color: #ffc531;
  background: linear-gradient(135deg, #fff4a6, #ffc531);
  color: #061324;
}

.promo-pop {
  border-color: rgba(255, 197, 49, .92);
  background:
    linear-gradient(115deg, rgba(4, 26, 51, .44) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #041a33 0%, #073b73 42%, #ff5a00 76%, #ffc531 100%);
  box-shadow: 0 26px 58px rgba(4, 26, 51, .34), inset 0 0 0 1px rgba(255, 255, 255, .20);
}

.promo-pop::before {
  background: repeating-linear-gradient(90deg, #ffc531 0 28px, #041a33 28px 42px);
}

.promo-pop-body strong {
  background: rgba(4, 26, 51, .48);
  border-color: rgba(255, 197, 49, .72);
  color: #ffffff;
}

thead th,
.site-footer {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 197, 49, .16), transparent 30%),
    linear-gradient(180deg, #073b73 0%, #041a33 100%);
  color: #ffffff;
}

.section .content-narrow,
main .section .content-narrow,
main .section:nth-of-type(3n+1) .content-narrow,
main .section:nth-of-type(3n+2) .content-narrow,
main .section:nth-of-type(3n) .content-narrow,
main .faq-section .content-narrow {
  border-color: rgba(29, 95, 159, .22);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 197, 49, .045), transparent 34%),
    linear-gradient(180deg, rgba(225, 236, 248, .90), rgba(210, 225, 241, .88));
  box-shadow: 0 10px 28px rgba(4, 26, 51, .08);
}

.section.section-soft .section-inner,
.table-wrap,
details,
.media-placeholder,
article .hero-art,
article .article-media,
article .section .content-narrow .article-media,
article .section.section-soft .article-media {
  border-color: rgba(29, 95, 159, .22);
  background:
    linear-gradient(135deg, rgba(218, 232, 247, .84), rgba(196, 216, 236, .78));
  box-shadow: 0 10px 26px rgba(4, 26, 51, .08);
}

.hero .hero-art,
.hero .media-placeholder {
  border-color: rgba(255, 197, 49, .22);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 197, 49, .10), transparent 30%),
    linear-gradient(135deg, rgba(8, 43, 82, .58), rgba(11, 79, 145, .36));
  box-shadow: 0 14px 34px rgba(4, 26, 51, .22), inset 0 0 0 1px rgba(255, 255, 255, .05);
}

main .faq-section details {
  border-color: rgba(29, 95, 159, .24);
  background: rgba(225, 236, 248, .72);
  box-shadow: 0 8px 20px rgba(4, 26, 51, .07);
}

main .faq-section details[open] {
  border-color: rgba(255, 90, 0, .26);
  background: linear-gradient(180deg, rgba(229, 239, 249, .86), rgba(217, 230, 244, .78));
}

.section .content-narrow,
main .section .content-narrow,
main .section:nth-of-type(3n+1) .content-narrow,
main .section:nth-of-type(3n+2) .content-narrow,
main .section:nth-of-type(3n) .content-narrow,
main .faq-section .content-narrow {
  border-color: rgba(255, 197, 49, .18);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 197, 49, .08), transparent 34%),
    linear-gradient(135deg, rgba(7, 59, 115, .94), rgba(4, 26, 51, .96));
  box-shadow: 0 16px 38px rgba(4, 26, 51, .24), inset 0 0 0 1px rgba(255, 255, 255, .04);
  color: #ffffff;
}

.section .content-narrow h2,
main .section .content-narrow h2,
main .section:nth-of-type(3n+1) .content-narrow h2,
main .section:nth-of-type(3n+2) .content-narrow h2,
main .section:nth-of-type(3n) .content-narrow h2 {
  color: #ffffff;
}

.section .content-narrow p,
main .section .content-narrow p,
main .section:nth-of-type(3n+1) .content-narrow p,
main .section:nth-of-type(3n+2) .content-narrow p,
main .section:nth-of-type(3n) .content-narrow p,
main .section:nth-of-type(3n+1) .content-narrow p:nth-of-type(even),
main .section:nth-of-type(3n) .content-narrow p:first-of-type,
main .section:nth-of-type(3n) .content-narrow p:not(:first-of-type) {
  color: #cfe2f5;
}

.section.section-soft .section-inner,
.table-wrap,
details,
.media-placeholder,
article .hero-art,
article .article-media,
article .section .content-narrow .article-media,
article .section.section-soft .article-media {
  border-color: rgba(255, 197, 49, .16);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 197, 49, .08), transparent 30%),
    linear-gradient(135deg, rgba(4, 26, 51, .78), rgba(11, 79, 145, .36));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 12px 30px rgba(4, 26, 51, .18);
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 90, 0, .14), transparent 24%),
    radial-gradient(circle at 88% 0%, rgba(255, 197, 49, .12), transparent 22%),
    linear-gradient(180deg, #073b73 0%, #041a33 42%, #041a33 100%);
}

main,
.section,
.section:nth-of-type(odd):not(.section-soft),
.section:nth-of-type(even):not(.section-soft),
.section.section-soft {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 197, 49, .06), transparent 28%),
    linear-gradient(180deg, #061f3f 0%, #041a33 100%);
}

.hero::after {
  background: linear-gradient(0deg, #061f3f, rgba(6, 31, 63, 0));
}

.section .content-narrow,
main .section .content-narrow,
main .section:nth-of-type(3n+1) .content-narrow,
main .section:nth-of-type(3n+2) .content-narrow,
main .section:nth-of-type(3n) .content-narrow,
main .faq-section .content-narrow {
  border-color: rgba(255, 197, 49, .18);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 197, 49, .08), transparent 34%),
    linear-gradient(135deg, rgba(7, 59, 115, .94), rgba(4, 26, 51, .96));
  box-shadow: 0 16px 38px rgba(4, 26, 51, .24), inset 0 0 0 1px rgba(255, 255, 255, .04);
  color: #ffffff;
}

.section .content-narrow h2,
main .section .content-narrow h2,
main .section:nth-of-type(3n+1) .content-narrow h2,
main .section:nth-of-type(3n+2) .content-narrow h2,
main .section:nth-of-type(3n) .content-narrow h2 {
  color: #ffffff;
}

.section .content-narrow p,
main .section .content-narrow p,
main .section:nth-of-type(3n+1) .content-narrow p,
main .section:nth-of-type(3n+2) .content-narrow p,
main .section:nth-of-type(3n) .content-narrow p,
main .section:nth-of-type(3n+1) .content-narrow p:nth-of-type(even),
main .section:nth-of-type(3n) .content-narrow p:first-of-type,
main .section:nth-of-type(3n) .content-narrow p:not(:first-of-type) {
  color: #cfe2f5;
}

.section .content-narrow .tag,
main .section .content-narrow .tag {
  border-color: rgba(255, 197, 49, .72);
  background: linear-gradient(135deg, #fff4a6, #ffc531);
  color: #061324;
}

.section.section-soft .section-inner,
.table-wrap,
details,
.media-placeholder,
article .hero-art,
article .article-media,
article .section .content-narrow .article-media,
article .section.section-soft .article-media {
  border-color: rgba(255, 197, 49, .16);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 197, 49, .08), transparent 30%),
    linear-gradient(135deg, rgba(4, 26, 51, .78), rgba(11, 79, 145, .36));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 12px 30px rgba(4, 26, 51, .18);
}

.article-media figcaption,
.media-placeholder figcaption {
  color: #cfe2f5;
}

main .faq-section details {
  border-color: rgba(255, 197, 49, .16);
  background: rgba(4, 26, 51, .42);
}

main .faq-section details[open] {
  border-color: rgba(255, 90, 0, .34);
  background: linear-gradient(180deg, rgba(7, 59, 115, .62), rgba(4, 26, 51, .58));
}

main .faq-section summary {
  color: #ffffff;
}

main .faq-section details p,
main .section.faq-section .content-narrow details p,
main .section.faq-section .content-narrow details p:first-of-type,
main .section.faq-section .content-narrow details p:not(:first-of-type) {
  color: #cfe2f5;
}

.section .content-narrow,
main .section .content-narrow,
main .section:nth-of-type(3n+1) .content-narrow,
main .section:nth-of-type(3n+2) .content-narrow,
main .section:nth-of-type(3n) .content-narrow,
main .faq-section .content-narrow {
  border-color: rgba(29, 95, 159, .22);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 197, 49, .045), transparent 34%),
    linear-gradient(180deg, rgba(225, 236, 248, .90), rgba(210, 225, 241, .88));
  box-shadow: 0 10px 28px rgba(4, 26, 51, .08);
}

.section.section-soft .section-inner,
.table-wrap,
details,
.media-placeholder,
article .hero-art,
article .article-media,
article .section .content-narrow .article-media,
article .section.section-soft .article-media {
  border-color: rgba(29, 95, 159, .22);
  background:
    linear-gradient(135deg, rgba(218, 232, 247, .84), rgba(196, 216, 236, .78));
  box-shadow: 0 10px 26px rgba(4, 26, 51, .08);
}

.hero .hero-art,
.hero .media-placeholder {
  border-color: rgba(255, 197, 49, .22);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 197, 49, .10), transparent 30%),
    linear-gradient(135deg, rgba(8, 43, 82, .58), rgba(11, 79, 145, .36));
  box-shadow: 0 14px 34px rgba(4, 26, 51, .22), inset 0 0 0 1px rgba(255, 255, 255, .05);
}

main .faq-section details {
  border-color: rgba(29, 95, 159, .24);
  background: rgba(225, 236, 248, .72);
  box-shadow: 0 8px 20px rgba(4, 26, 51, .07);
}

main .faq-section details[open] {
  border-color: rgba(255, 90, 0, .26);
  background: linear-gradient(180deg, rgba(229, 239, 249, .86), rgba(217, 230, 244, .78));
}

.footer-links a,
.footer-legal a {
  color: #fff2b0;
}

@media (max-width: 980px) {
  .nav {
    background: linear-gradient(180deg, rgba(4, 26, 51, .98), rgba(7, 59, 115, .98));
  }
}

@media (max-width: 520px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 142px);
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(1120px, calc(100% - 24px));
  }

  .hero h1,
  .page-hero h1 {
    width: 100%;
    max-width: calc(100vw - 24px);
    font-size: clamp(26px, 8vw, 31px);
    line-height: 1.16;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: wrap;
  }

  .hero .section-inner,
  .hero-grid,
  .hero-grid > div,
  .hero-copy,
  .hero-art,
  .hero-proof,
  .hero-actions {
    width: 100%;
    max-width: calc(100vw - 24px);
    min-width: 0;
  }

  .header-inner {
    gap: 10px;
    padding: 12px 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .nav-toggle {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .header-promo-copy,
  .header-cta {
    flex-basis: 100%;
    min-height: 46px;
    padding: 0 10px;
    border-width: 2px;
    font-size: clamp(12px, 3.35vw, 14px);
  }

  .header-cta {
    font-size: clamp(15px, 4vw, 16px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .section {
    padding: 34px 0;
  }

  .scroll-top {
    right: 14px;
    bottom: 29px;
    width: 50px;
    height: 50px;
    font-size: 27px;
  }

  body.has-promo-pop .scroll-top {
    bottom: 176px;
  }

  .promo-pop {
    left: 12px;
    right: 12px;
    bottom: 24px;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    width: auto;
    min-height: 136px;
    padding: 22px 54px 18px 16px;
    border-radius: 16px;
  }

  .promo-pop::before {
    content: "";
    inset: 8px 8px auto;
    height: 5px;
    background: repeating-linear-gradient(90deg, #fff15f 0 18px, #151a1d 18px 28px);
  }

  .promo-pop::after {
    right: -96px;
    bottom: -112px;
    width: 220px;
    height: 220px;
  }

  .promo-pop-media {
    width: 96px;
    height: 96px;
    border-width: 2px;
    border-radius: 15px;
  }

  .promo-pop-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: none;
  }

  .promo-pop-body {
    gap: 10px;
  }

  .promo-pop-body strong {
    padding: 4px 10px 5px;
    font-size: 18px;
    line-height: 1.1;
  }

  .promo-pop-button {
    width: min(100%, 230px);
    min-height: 48px;
    padding: 9px 18px;
    border-radius: 11px;
    font-size: 20px;
  }

  .promo-pop-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 32px;
  }
}

@media (max-width: 520px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 126px);
  }

  .site-header {
    overflow: visible;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 10px;
    align-items: center;
    width: calc(100% - 24px);
    min-height: 0;
    padding: 10px 0;
  }

  .brand {
    grid-column: 1;
    order: 0;
    width: auto;
    min-width: 0;
    flex: none;
  }

  .nav-toggle {
    grid-column: 2;
    order: 0;
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin: 0;
    justify-self: end;
    visibility: visible;
    opacity: 1;
  }

  .header-promo-copy {
    display: none;
  }

  .header-cta {
    grid-column: 1 / -1;
    order: 0;
    width: 100%;
    min-height: 46px;
    margin: 0;
  }

  .nav {
    top: calc(100% + 6px);
  }

  .hero-copy,
  .section p,
  main .section .content-narrow p,
  main .section:nth-of-type(3n+1) .content-narrow p,
  main .section:nth-of-type(3n+2) .content-narrow p,
  main .section:nth-of-type(3n) .content-narrow p {
    width: 100%;
    max-width: 100%;
    overflow: visible;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-grid > div,
  main .section .content-narrow > * {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 360px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 138px);
  }

  .header-inner {
    width: min(1120px, calc(100% - 20px));
    gap: 8px;
  }

  .header-promo-copy,
  .header-cta {
    min-height: 44px;
    padding: 0 8px;
    font-size: 12px;
  }

  .header-cta {
    font-size: 13px;
  }
}

.media-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px dashed rgba(97, 75, 49, .45);
  background:
    linear-gradient(135deg, rgba(255, 248, 232, .85), rgba(205, 235, 191, .55));
}

.media-placeholder::before {
  content: "";
  color: rgba(36, 19, 10, .62);
  font-weight: 800;
}

.page-variant-d .hero {
  min-height: 590px;
  background:
    linear-gradient(90deg, rgba(255, 248, 232, .86) 0 46%, rgba(205, 235, 191, .88) 46%),
    radial-gradient(circle at 82% 24%, rgba(20, 150, 95, .28), transparent 30%);
}

.page-variant-d .hero-home .hero-grid {
  grid-template-columns: minmax(0, 640px) minmax(320px, 460px);
}

.page-variant-d .media-placeholder {
  border: 2px dashed rgba(20, 150, 95, .50);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .40) 0 12px, rgba(205, 235, 191, .44) 12px 24px),
    #fff8e8;
}

.page-variant-d .media-placeholder::before {
  content: "";
  color: #0e6f48;
}

.page-variant-d .section:nth-of-type(3n+1) .content-narrow p {
  border-style: dashed;
  background: rgba(255, 248, 232, .76);
}

.page-variant-d .table-wrap {
  border-style: dashed;
}

.page-variant-e .hero {
  min-height: 620px;
  background:
    radial-gradient(circle at 22% 24%, rgba(14, 143, 122, .32), transparent 28%),
    linear-gradient(135deg, #d8efd1 0%, #fff0c8 42%, #ffe07c 100%);
}

.page-variant-e .hero-home .hero-grid {
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
}

.page-variant-e .hero-art {
  order: -1;
  min-height: 0;
  border-radius: 34px;
}

.page-variant-e .hero-art img {
  max-height: 460px;
}

.page-variant-e .media-placeholder {
  border-radius: 34px;
  border: 10px solid #151a1d;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, .95), rgba(205, 235, 191, .72));
  box-shadow: 0 24px 48px rgba(21, 26, 29, .22);
}

.page-variant-e .media-placeholder::before {
  content: "";
  color: #151a1d;
}

.page-variant-e .section:nth-of-type(3n+2) .content-narrow {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  background:
    linear-gradient(270deg, rgba(205, 235, 191, .64) 0 31%, rgba(255, 248, 232, .96) 31%),
    var(--panel);
}

.page-variant-e .section:nth-of-type(3n+2) .content-narrow .tag,
.page-variant-e .section:nth-of-type(3n+2) .content-narrow h2 {
  grid-column: 2;
}

.page-variant-e .section:nth-of-type(3n+2) .content-narrow p {
  grid-column: 1;
}

.page-variant-a .hero {
  min-height: 560px;
  background:
    linear-gradient(180deg, #ffe07c 0%, #fff8e8 54%, #fff0c8 100%);
}

.page-variant-a .hero-home .hero-grid {
  grid-template-columns: minmax(0, 720px) minmax(300px, 390px);
}

.page-variant-a .media-placeholder {
  min-height: 220px;
  border: 1px solid rgba(240, 90, 36, .45);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, .96), rgba(255, 220, 121, .50));
  box-shadow: inset 0 0 0 8px rgba(255, 194, 28, .22);
}

.page-variant-a .media-placeholder::before {
  content: "";
  color: #9d3512;
}

.page-variant-a .section:nth-of-type(3n) .content-narrow {
  border-top-color: #f05a24;
  background:
    linear-gradient(90deg, rgba(255, 220, 121, .34), rgba(255, 248, 232, .72));
}

.page-variant-a .section:nth-of-type(3n+1) .content-narrow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-variant-a .section:nth-of-type(3n+1) .content-narrow .tag,
.page-variant-a .section:nth-of-type(3n+1) .content-narrow h2 {
  grid-column: 1 / -1;
}

.page-variant-a .section:nth-of-type(3n+1) .content-narrow p {
  min-height: 150px;
}

.page-variant-b .hero {
  min-height: 600px;
  background:
    linear-gradient(110deg, rgba(255, 224, 124, .92) 0 50%, rgba(205, 235, 191, .92) 50%),
    var(--bg);
}

.page-variant-b .media-placeholder {
  border: 0;
  background:
    linear-gradient(90deg, rgba(255, 220, 121, .92) 0 50%, rgba(20, 150, 95, .22) 50%),
    #fff8e8;
  box-shadow: 0 18px 40px rgba(74, 43, 11, .16);
}

.page-variant-b .media-placeholder::before {
  content: "";
  color: #3b2612;
}

.page-variant-b .section:nth-of-type(3n+2) .content-narrow {
  background:
    linear-gradient(90deg, rgba(255, 220, 121, .58) 0 49%, rgba(205, 235, 191, .56) 49% 100%);
}

.page-variant-b .section:nth-of-type(3n+1) .content-narrow p {
  border-left: 5px solid rgba(240, 90, 36, .54);
}

.page-variant-c .hero {
  min-height: 570px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 241, 95, .58), transparent 30%),
    linear-gradient(180deg, #fff8e8 0%, #ffe07c 58%, #fff0c8 100%);
}

.page-variant-c .media-placeholder {
  border: 2px dashed #f05a24;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 241, 95, .78), rgba(255, 248, 232, .96) 45%, rgba(240, 90, 36, .16));
  box-shadow: 0 20px 40px rgba(240, 90, 36, .18);
}

.page-variant-c .media-placeholder::before {
  content: "";
  color: #8b160f;
}

.page-variant-c .tag {
  border-color: rgba(240, 90, 36, .44);
  background: linear-gradient(135deg, #fff15f, #ffdc79 52%, #fff8e8);
}

.page-variant-c .section:nth-of-type(3n+2) .content-narrow {
  border-style: dashed;
  background:
    linear-gradient(90deg, rgba(255, 241, 95, .42) 0 32%, rgba(255, 248, 232, .98) 32%);
}

.page-variant-c .section:nth-of-type(3n) .content-narrow p:first-of-type {
  border: 2px dashed rgba(240, 90, 36, .42);
}

@media (max-width: 880px) {
  .page-variant-d .hero-home .hero-grid,
  .page-variant-e .hero-home .hero-grid,
  .page-variant-a .hero-home .hero-grid,
  .page-variant-b .hero-home .hero-grid {
    grid-template-columns: 1fr;
  }

  .page-variant-e .hero-art {
    order: 0;
    min-height: 260px;
  }

  .page-variant-a .section:nth-of-type(3n+1) .content-narrow,
  .page-variant-e .section:nth-of-type(3n+2) .content-narrow,
  .page-variant-b .section:nth-of-type(3n+2) .content-narrow,
  .page-variant-c .section:nth-of-type(3n+2) .content-narrow {
    display: block;
    grid-template-columns: 1fr;
  }
}

.section .content-narrow,
.section:nth-of-type(3n+1) .content-narrow,
.section:nth-of-type(3n+2) .content-narrow,
.section:nth-of-type(3n) .content-narrow,
.page-variant-e .section:nth-of-type(3n+2) .content-narrow,
.page-variant-a .section:nth-of-type(3n+1) .content-narrow,
.page-variant-a .section:nth-of-type(3n) .content-narrow,
.page-variant-b .section:nth-of-type(3n+2) .content-narrow,
.page-variant-c .section:nth-of-type(3n+2) .content-narrow {
  display: block;
  max-width: 900px;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.section .content-narrow::before,
.section .content-narrow::after,
.section:nth-of-type(3n+2) .content-narrow::before,
.section:nth-of-type(3n+2) .content-narrow::after {
  content: none;
}

.section .content-narrow .tag,
.section .content-narrow h2,
.section:nth-of-type(3n+1) .content-narrow .tag,
.section:nth-of-type(3n+1) .content-narrow h2,
.section:nth-of-type(3n+2) .content-narrow .tag,
.section:nth-of-type(3n+2) .content-narrow h2,
.page-variant-e .section:nth-of-type(3n+2) .content-narrow .tag,
.page-variant-e .section:nth-of-type(3n+2) .content-narrow h2 {
  grid-column: auto;
}

.section .content-narrow h2,
.section:nth-of-type(3n+1) .content-narrow h2,
.section:nth-of-type(3n) .content-narrow h2 {
  max-width: 820px;
  margin: 12px 0 18px;
}

.section .content-narrow p,
.section:nth-of-type(3n+1) .content-narrow p,
.section:nth-of-type(3n+1) .content-narrow p:nth-of-type(even),
.section:nth-of-type(3n+2) .content-narrow p,
.section:nth-of-type(3n) .content-narrow p,
.section:nth-of-type(3n) .content-narrow p:first-of-type,
.section:nth-of-type(3n) .content-narrow p:not(:first-of-type),
.page-variant-e .section:nth-of-type(3n+2) .content-narrow p,
.page-variant-a .section:nth-of-type(3n+1) .content-narrow p,
.page-variant-b .section:nth-of-type(3n+1) .content-narrow p,
.page-variant-c .section:nth-of-type(3n) .content-narrow p:first-of-type {
  display: block;
  max-width: 820px;
  min-height: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section .content-narrow p:last-child {
  margin-bottom: 0;
}

.section .content-narrow .article-media {
  margin: 30px auto 0;
}

.section.section-soft .section-inner {
  padding: 28px;
  border: 1px solid rgba(212, 169, 63, .45);
  border-radius: 8px;
  background: rgba(255, 248, 232, .70);
  box-shadow: 0 12px 28px rgba(74, 43, 11, .08);
}

.section.section-soft .article-media {
  margin: 20px auto 24px;
}

.article-media,
.section .content-narrow .article-media,
.section.section-soft .article-media {
  display: block;
  box-sizing: border-box;
  margin: 28px auto 24px;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.article-media--wide {
  width: min(100%, 860px);
}

.article-media--square {
  width: min(100%, 560px);
}

.article-media img,
.article-media--wide img,
.article-media--square img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
  border: 0;
  border-radius: 22px;
  clip-path: inset(0 round 22px);
  object-fit: contain;
  background: transparent;
  box-shadow: 0 14px 30px rgba(74, 43, 11, .16);
}

.article-media figcaption {
  width: 100%;
  max-width: none;
  margin: 10px 0 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
}

@media (max-width: 760px) {
  .article-media,
  .section .content-narrow .article-media,
  .section.section-soft .article-media {
    width: 100%;
    margin: 22px auto 20px;
    border-radius: 18px;
  }

  .article-media img,
  .article-media--wide img,
  .article-media--square img {
    border-radius: 18px;
    clip-path: inset(0 round 18px);
  }
}

.hero-art.media-placeholder::before,
.article-media.media-placeholder::before,
.promo-pop-media.media-placeholder::before {
  content: "";
  display: none;
}
.promo-pop-media.media-placeholder {
  min-height: 0;
}
.hero-art.media-placeholder img,
.article-media.media-placeholder img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

:root {
  --bg: #eaf4ff;
  --bg-soft: #d5e9ff;
  --panel: #ffffff;
  --panel-2: #c9e2ff;
  --line: #2e76bc;
  --text: #061b33;
  --muted: #365777;
  --gold: #ffc531;
  --gold-2: #ffe56a;
  --orange: #ff5a00;
  --red: #d52b1e;
  --green: #18a66a;
  --green-soft: #dff4ea;
  --asphalt: #041a33;
  --button-ink: #061b33;
  --button-hot: #ef3f00;
  --button-fire: #ff5a00;
  --button-sun: #ffc531;
  --button-lime: #37a6e6;
  --shadow: 0 20px 48px rgba(4, 26, 51, .20);
}

body {
  background:
    radial-gradient(circle at 16% 10%, rgba(46, 118, 188, .16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 90, 0, .14), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 54%, #d9ebff 100%);
}

.site-header {
  border-bottom-color: rgba(46, 118, 188, .42);
  background: rgba(234, 244, 255, .94);
  box-shadow: 0 10px 30px rgba(4, 26, 51, .12);
}

.brand-mark {
  background: linear-gradient(135deg, #041a33 0%, #073b73 48%, #ff5a00 100%);
  box-shadow: 0 12px 26px rgba(7, 59, 115, .30);
}

.nav {
  border-color: rgba(46, 118, 188, .42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96) 0%, rgba(211, 232, 255, .90) 52%, rgba(255, 229, 106, .68) 100%);
  box-shadow: 0 14px 32px rgba(4, 26, 51, .14), inset 0 0 0 1px rgba(255, 255, 255, .70);
}

.nav a {
  --nav-accent: #073b73;
  color: #061b33;
  border-color: rgba(7, 59, 115, .24);
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(224, 239, 255, .72));
  box-shadow: inset 0 -3px 0 rgba(7, 59, 115, .18), 0 6px 14px rgba(4, 26, 51, .07);
}

.nav a:nth-child(1),
.nav a:nth-child(2),
.nav a:nth-child(3),
.nav a:nth-child(4),
.nav a:nth-child(5),
.nav a:nth-child(6) {
  --nav-accent: #073b73;
}

.nav a::after {
  background: linear-gradient(90deg, #ffc531, #ff5a00);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #061b33;
  background: #ffffff;
  box-shadow: inset 0 -5px 0 var(--nav-accent), 0 10px 22px rgba(4, 26, 51, .14);
}

.header-promo-copy {
  min-width: 190px;
  border-color: #073b73;
  background: linear-gradient(135deg, #ffffff 0%, #c9e2ff 44%, #073b73 100%);
  color: #061b33;
  box-shadow: 0 14px 28px rgba(7, 59, 115, .24), inset 0 0 0 2px rgba(255, 255, 255, .54);
}

.header-promo-copy:hover,
.header-promo-copy.is-copied {
  border-color: #ffc531;
  background: linear-gradient(135deg, #ffe56a 0%, #ffc531 42%, #ff5a00 100%);
  color: #061b33;
}

.header-cta,
.button,
.promo-pop-button {
  border-color: #ff5a00;
  background: linear-gradient(135deg, #fff6a3 0%, #ffc531 38%, #ff5a00 76%, #ef3f00 100%);
  color: #061b33;
}

.button-secondary {
  border-color: rgba(7, 59, 115, .52);
  background: linear-gradient(135deg, #ffffff 0%, #e3f1ff 52%, #c9e2ff 100%);
  color: #061b33;
}

.button-secondary:hover {
  border-color: #ffc531;
  background: linear-gradient(135deg, #ffffff 0%, #ffe56a 46%, #2e76bc 100%);
}

.scroll-top,
.nav-toggle,
.promo-pop-close {
  border-color: #073b73;
  background: linear-gradient(135deg, #ffffff 0%, #c9e2ff 50%, #ffc531 100%);
  color: #061b33;
}

.promo-pop {
  border-color: rgba(255, 197, 49, .92);
  background:
    linear-gradient(115deg, rgba(4, 26, 51, .38) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #041a33 0%, #073b73 42%, #ff5a00 76%, #ffc531 100%);
  box-shadow: 0 26px 58px rgba(4, 26, 51, .32), inset 0 0 0 1px rgba(255, 255, 255, .24);
}

.promo-pop::before {
  background: repeating-linear-gradient(90deg, #ffc531 0 28px, #041a33 28px 42px);
}

.promo-pop::after {
  background: radial-gradient(circle, rgba(255, 90, 0, .34) 0 34%, rgba(255, 197, 49, .30) 35% 54%, transparent 55%);
}

.promo-pop-body strong {
  background: rgba(4, 26, 51, .42);
  border-color: rgba(255, 197, 49, .68);
}

.hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(7, 59, 115, .22), transparent 28%),
    radial-gradient(circle at 18% 70%, rgba(255, 90, 0, .15), transparent 27%),
    linear-gradient(180deg, #dceeff 0%, #f8fbff 48%, #eaf4ff 100%);
}

.hero::after {
  background: linear-gradient(0deg, var(--bg), rgba(238, 248, 255, 0));
}

.eyebrow,
.tag {
  color: #073b73;
}

.proof-item,
.section .content-narrow,
.section:nth-of-type(3n+1) .content-narrow,
.section:nth-of-type(3n+2) .content-narrow,
.section:nth-of-type(3n) .content-narrow,
.page-variant-e .section:nth-of-type(3n+2) .content-narrow,
.page-variant-a .section:nth-of-type(3n+1) .content-narrow,
.page-variant-a .section:nth-of-type(3n) .content-narrow,
.page-variant-b .section:nth-of-type(3n+2) .content-narrow,
.page-variant-c .section:nth-of-type(3n+2) .content-narrow {
  border-color: rgba(46, 118, 188, .42);
  background: linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(226, 241, 255, .74));
  box-shadow: 0 18px 42px rgba(4, 26, 51, .11);
}

.section:nth-of-type(3n+2) .content-narrow {
  background:
    linear-gradient(90deg, rgba(201, 226, 255, .58) 0 32%, rgba(255, 255, 255, .96) 32%),
    var(--panel);
}

.section:nth-of-type(3n) .content-narrow {
  border-top-color: #073b73;
  background: linear-gradient(180deg, rgba(213, 246, 234, .56), rgba(255, 255, 255, .78));
}

.section:nth-of-type(3n+1) .content-narrow {
  border-color: rgba(255, 90, 0, .32);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 197, 49, .22));
}

.section:nth-of-type(odd):not(.section-soft) {
  background:
    linear-gradient(90deg, rgba(7, 59, 115, .09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .48), rgba(238, 248, 255, 0));
}

.section:nth-of-type(even):not(.section-soft) {
  background:
    linear-gradient(90deg, rgba(255, 90, 0, .08), transparent 38%),
    linear-gradient(180deg, rgba(238, 248, 255, 0), rgba(255, 255, 255, .42));
}

.section.section-soft,
.page-variant-d .hero,
.page-variant-e .hero,
.page-variant-a .hero,
.page-variant-b .hero,
.page-variant-c .hero {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 197, 49, .24), transparent 28%),
    linear-gradient(180deg, #dceeff 0%, #f8fbff 54%, #eaf4ff 100%);
}

.section.section-soft .section-inner,
.table-wrap,
details,
.media-placeholder,
.page-variant-d .media-placeholder,
.page-variant-a .media-placeholder,
.page-variant-b .media-placeholder,
.page-variant-c .media-placeholder,
.page-variant-e .hero-art {
  border-color: rgba(46, 118, 188, .44);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .90), rgba(201, 226, 255, .64));
  box-shadow: 0 18px 42px rgba(4, 26, 51, .13);
}

thead th {
  background: #041a33;
  color: #ffffff;
}

tbody td {
  background: rgba(255, 255, 255, .72);
}

details summary {
  color: #073b73;
}

.hero-art {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-art img,
.page-variant-e .hero-art img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.hero-art--portrait img,
.page-variant-e .hero-art--portrait img {
  max-width: min(100%, 400px);
  max-height: 505px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
}

.hero-home .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 600px);
}

.page-variant-a .hero-home .hero-grid,
.page-variant-d .hero-home .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(460px, 600px);
}

.page-variant-e .hero-home .hero-grid {
  grid-template-columns: minmax(420px, 560px) minmax(0, 1fr);
}

.page-variant-a .hero-art,
.page-variant-d .hero-art {
  width: min(100%, 600px);
}

.page-variant-e .hero-art {
  width: min(100%, 560px);
}

main .section .content-narrow,
main .section:nth-of-type(3n+1) .content-narrow,
main .section:nth-of-type(3n+2) .content-narrow,
main .section:nth-of-type(3n) .content-narrow,
.page-variant-e main .section:nth-of-type(3n+2) .content-narrow,
.page-variant-a main .section:nth-of-type(3n+1) .content-narrow,
.page-variant-a main .section:nth-of-type(3n) .content-narrow,
.page-variant-b main .section:nth-of-type(3n+2) .content-narrow,
.page-variant-c main .section:nth-of-type(3n+2) .content-narrow {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(46, 118, 188, .24);
  border-radius: 8px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(238, 248, 255, .70));
  box-shadow: 0 16px 34px rgba(4, 26, 51, .09);
}

main .section .content-narrow::before,
main .section .content-narrow::after,
main .section:nth-of-type(3n+2) .content-narrow::before,
main .section:nth-of-type(3n+2) .content-narrow::after {
  content: none;
}

main .section .content-narrow h2,
main .section:nth-of-type(3n+1) .content-narrow h2,
main .section:nth-of-type(3n+2) .content-narrow h2,
main .section:nth-of-type(3n) .content-narrow h2 {
  max-width: 820px;
  margin: 12px 0 18px;
  color: var(--text);
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.16;
}

main .section .content-narrow p,
main .section:nth-of-type(3n+1) .content-narrow p,
main .section:nth-of-type(3n+1) .content-narrow p:nth-of-type(even),
main .section:nth-of-type(3n+2) .content-narrow p,
main .section:nth-of-type(3n) .content-narrow p,
main .section:nth-of-type(3n) .content-narrow p:first-of-type,
main .section:nth-of-type(3n) .content-narrow p:not(:first-of-type),
.page-variant-e main .section:nth-of-type(3n+2) .content-narrow p,
.page-variant-a main .section:nth-of-type(3n+1) .content-narrow p,
.page-variant-b main .section:nth-of-type(3n+1) .content-narrow p,
.page-variant-c main .section:nth-of-type(3n) .content-narrow p:first-of-type {
  display: block;
  max-width: 820px;
  min-height: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

main .section .content-narrow > :last-child {
  margin-bottom: 0;
}

main .section .content-narrow .article-media {
  margin: 30px auto 24px;
}

main .section .content-narrow .article-media--banner-large {
  width: min(100%, 720px);
}

main .section .content-narrow .article-media--banner-medium {
  width: min(100%, 640px);
}

main .section .content-narrow .article-media--device {
  width: min(100%, 700px);
}

main .section .content-narrow .article-media--device-wide {
  width: min(100%, 740px);
}

main .section .content-narrow .article-media--square-medium {
  width: min(100%, 500px);
}

main .section .content-narrow .article-media--portrait-interface {
  width: min(100%, 420px);
}

main .section .content-narrow .article-media--portrait-interface img {
  max-height: 665px;
}

main .article-media--banner-large {
  width: min(100%, 720px);
}

main .article-media--banner-medium {
  width: min(100%, 640px);
}

main .article-media--device {
  width: min(100%, 700px);
}

main .article-media--device-wide {
  width: min(100%, 740px);
}

main .article-media--square-medium {
  width: min(100%, 500px);
}

main .article-media--portrait-interface {
  width: min(100%, 420px);
}

main .article-media--portrait-interface img {
  max-height: 665px;
}

main .faq-section .content-narrow {
  display: grid;
  gap: 12px;
}

main .faq-section .content-narrow h2 {
  margin-bottom: 10px;
}

main .faq-section details {
  margin: 0;
  padding: 0;
  border: 1px solid rgba(46, 118, 188, .34);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 24px rgba(4, 26, 51, .09);
}

main .faq-section details[open] {
  border-color: rgba(7, 59, 115, .48);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(226, 241, 255, .70));
}

main .faq-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.28;
  cursor: pointer;
  list-style: none;
}

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

main .faq-section summary::marker {
  content: "";
}

main .faq-section summary::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(7, 59, 115, .42);
  border-radius: 50%;
  background: rgba(226, 241, 255, .90);
  color: #073b73;
  font-size: 22px;
  line-height: 1;
}

main .faq-section details[open] summary::after {
  content: "-";
}

main .faq-section details p,
main .section.faq-section .content-narrow details p,
main .section.faq-section .content-narrow details p:first-of-type,
main .section.faq-section .content-narrow details p:not(:first-of-type) {
  max-width: none;
  margin: 0;
  padding: 0 18px 18px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  main .section .content-narrow,
  main .section:nth-of-type(3n+1) .content-narrow,
  main .section:nth-of-type(3n+2) .content-narrow,
  main .section:nth-of-type(3n) .content-narrow {
    max-width: calc(100vw - 24px);
    padding: 20px;
  }

  main .section .content-narrow h2,
  main .section:nth-of-type(3n+1) .content-narrow h2,
  main .section:nth-of-type(3n+2) .content-narrow h2,
  main .section:nth-of-type(3n) .content-narrow h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  main .section .content-narrow p,
  main .section:nth-of-type(3n+1) .content-narrow p,
  main .section:nth-of-type(3n+2) .content-narrow p,
  main .section:nth-of-type(3n) .content-narrow p {
    font-size: 16px;
    line-height: 1.62;
  }

  main .faq-section summary {
    min-height: 54px;
    padding: 14px 16px;
  }

  main .faq-section details p,
  main .section.faq-section .content-narrow details p {
    padding: 0 16px 16px;
    font-size: 16px;
  }
}

article .hero-art,
article .article-media,
article .section .content-narrow .article-media,
article .section.section-soft .article-media,
.page-variant-e article .hero-art {
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid rgba(46, 118, 188, .26);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(226, 241, 255, .58));
  box-shadow: 0 16px 34px rgba(4, 26, 51, .11);
  overflow: visible;
}

article .hero-art img,
article .article-media img,
article .article-media--wide img,
article .article-media--square img,
.page-variant-e article .hero-art img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  clip-path: none;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

article .hero-art--portrait {
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

article .hero-art--portrait img,
.page-variant-e article .hero-art--portrait img {
  width: auto;
  max-width: min(100%, 400px);
}

article .article-media figcaption {
  padding: 0 4px;
}

@media (max-width: 760px) {
  article .hero-art,
  article .article-media,
  article .section .content-narrow .article-media,
  article .section.section-soft .article-media,
  .page-variant-e article .hero-art {
    padding: 8px;
    border-radius: 20px;
  }

  article .hero-art img,
  article .article-media img,
  article .article-media--wide img,
  article .article-media--square img,
  .page-variant-e article .hero-art img {
    border-radius: 14px;
  }
}

.site-footer {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 197, 49, .16), transparent 30%),
    linear-gradient(180deg, #073b73 0%, #041a33 100%);
}

@media (max-width: 980px) {
  .nav {
    background: linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(211, 232, 255, .96) 54%, rgba(255, 229, 106, .94) 100%);
  }
}

@media (max-width: 880px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .hero,
  .section {
    overflow-x: hidden;
  }

  .hero-grid,
  .hero-home .hero-grid,
  .page-variant-a .hero-home .hero-grid,
  .page-variant-b .hero-home .hero-grid,
  .page-variant-d .hero-home .hero-grid,
  .page-variant-e .hero-home .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: calc(100vw - 24px);
    gap: 26px;
    padding: 36px 0 58px;
  }

  .hero-grid > *,
  .hero-copy,
  .hero h1,
  .hero-art,
  .page-variant-a .hero-art,
  .page-variant-d .hero-art,
  .page-variant-e .hero-art,
  .hero-actions,
  .hero-proof {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page-variant-e .hero-art {
    order: 0;
  }

  article .hero-art,
  article .article-media,
  article .section .content-narrow .article-media,
  article .section.section-soft .article-media,
  .page-variant-e article .hero-art {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  article .hero-art img,
  article .article-media img,
  article .article-media--wide img,
  article .article-media--square img,
  .page-variant-e article .hero-art img {
    width: 100%;
    max-width: 100%;
  }

  article .hero-art--portrait,
  article .article-media--portrait-interface {
    width: min(100%, 430px);
  }

  article .hero-art--portrait img,
  .page-variant-e article .hero-art--portrait img {
    width: auto;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 132px);
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .hero-grid,
  .hero-home .hero-grid,
  .page-variant-a .hero-home .hero-grid,
  .page-variant-b .hero-home .hero-grid,
  .page-variant-d .hero-home .hero-grid,
  .page-variant-e .hero-home .hero-grid {
    max-width: calc(100vw - 24px);
    padding-top: 28px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.14;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.58;
  }

  main .section .content-narrow,
  main .section:nth-of-type(3n+1) .content-narrow,
  main .section:nth-of-type(3n+2) .content-narrow,
  main .section:nth-of-type(3n) .content-narrow,
  .page-variant-e main .section:nth-of-type(3n+2) .content-narrow,
  .page-variant-a main .section:nth-of-type(3n+1) .content-narrow,
  .page-variant-a main .section:nth-of-type(3n) .content-narrow,
  .page-variant-b main .section:nth-of-type(3n+2) .content-narrow,
  .page-variant-c main .section:nth-of-type(3n+2) .content-narrow {
    width: 100%;
    max-width: calc(100vw - 24px);
    padding: 18px;
  }

  main .section .content-narrow h2,
  main .section:nth-of-type(3n+1) .content-narrow h2,
  main .section:nth-of-type(3n+2) .content-narrow h2,
  main .section:nth-of-type(3n) .content-narrow h2 {
    font-size: clamp(24px, 7.5vw, 30px);
    line-height: 1.16;
  }

  main .section .content-narrow p,
  main .section:nth-of-type(3n+1) .content-narrow p,
  main .section:nth-of-type(3n+2) .content-narrow p,
  main .section:nth-of-type(3n) .content-narrow p {
    font-size: 16px;
    line-height: 1.6;
  }

  article .hero-art,
  article .article-media,
  article .section .content-narrow .article-media,
  article .section.section-soft .article-media,
  .page-variant-e article .hero-art {
    padding: 8px;
    border-radius: 18px;
  }

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

  .table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 520px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    padding-top: calc(env(safe-area-inset-top) + 126px);
  }

  .site-header {
    overflow: visible;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
    gap: 10px;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    min-height: 0;
    padding: 10px 0;
    margin: 0 auto;
  }

  .brand {
    grid-column: 1;
    width: auto;
    min-width: 0;
    flex: none;
  }

  .nav-toggle {
    grid-column: 2;
    display: inline-flex;
    width: 48px;
    height: 48px;
    margin: 0;
    justify-self: end;
    visibility: visible;
    opacity: 1;
  }

  .header-promo-copy {
    display: none;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    margin: 0;
  }

  .nav {
    top: calc(100% + 6px);
  }

  .hero,
  .section {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .section-inner,
  .hero .section-inner,
  .hero-grid,
  .hero-home .hero-grid,
  .page-variant-a .hero-home .hero-grid,
  .page-variant-b .hero-home .hero-grid,
  .page-variant-c .hero-home .hero-grid,
  .page-variant-d .hero-home .hero-grid,
  .page-variant-e .hero-home .hero-grid {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    min-width: 0;
    margin-right: auto;
    margin-left: auto;
    gap: 24px;
    padding-right: 0;
    padding-left: 0;
  }

  .hero-grid > *,
  .hero-grid > div,
  .hero-copy,
  .hero h1,
  .page-hero h1,
  .hero-actions,
  .hero-proof,
  .hero-art,
  .page-variant-a .hero-art,
  .page-variant-b .hero-art,
  .page-variant-c .hero-art,
  .page-variant-d .hero-art,
  .page-variant-e .hero-art {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .page-variant-e .hero-art {
    order: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.14;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .hero-copy,
  main .section .content-narrow p,
  main .section:nth-of-type(3n+1) .content-narrow p,
  main .section:nth-of-type(3n+2) .content-narrow p,
  main .section:nth-of-type(3n) .content-narrow p {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    text-wrap: wrap;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .button,
  .button-secondary {
    width: 100%;
    max-width: 100%;
  }

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

  main .section .content-narrow,
  main .section:nth-of-type(3n+1) .content-narrow,
  main .section:nth-of-type(3n+2) .content-narrow,
  main .section:nth-of-type(3n) .content-narrow,
  .page-variant-e main .section:nth-of-type(3n+2) .content-narrow,
  .page-variant-a main .section:nth-of-type(3n+1) .content-narrow,
  .page-variant-a main .section:nth-of-type(3n) .content-narrow,
  .page-variant-b main .section:nth-of-type(3n+2) .content-narrow,
  .page-variant-c main .section:nth-of-type(3n+2) .content-narrow {
    box-sizing: border-box;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    min-width: 0;
    padding: 18px;
  }

  article .hero-art,
  article .article-media,
  article .section .content-narrow .article-media,
  article .section.section-soft .article-media,
  .page-variant-e article .hero-art {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 90, 0, .18), transparent 24%),
    radial-gradient(circle at 88% 0%, rgba(255, 197, 49, .18), transparent 22%),
    linear-gradient(180deg, #073b73 0, #0b4f91 420px, #eaf2fb 421px, #eaf2fb 100%);
  color: #07182d;
}

.site-header {
  border-bottom: 1px solid rgba(255, 197, 49, .42);
  background: linear-gradient(180deg, rgba(4, 26, 51, .98), rgba(7, 59, 115, .96));
  box-shadow: 0 14px 34px rgba(4, 26, 51, .28);
}

.nav {
  border-color: rgba(255, 197, 49, .40);
  background: rgba(4, 26, 51, .34);
}

.nav a {
  color: #ffffff;
  border-color: rgba(255, 255, 255, .16);
  background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
  box-shadow: inset 0 -3px 0 rgba(255, 197, 49, .24);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #061324;
  background: linear-gradient(135deg, #fff4a6, #ffc531);
  box-shadow: inset 0 -5px 0 #ff5a00, 0 10px 22px rgba(4, 26, 51, .26);
}

.header-promo-copy {
  border-color: rgba(255, 197, 49, .82);
  background: linear-gradient(135deg, #073b73 0%, #0b4f91 52%, #041a33 100%);
  color: #ffffff;
}

.header-cta,
.button,
.promo-pop-button,
.footer-legal-button {
  border-color: #ff5a00;
  background: linear-gradient(135deg, #fff4a6 0%, #ffc531 36%, #ff5a00 76%, #ef3f00 100%);
  color: #061324;
  box-shadow: 0 14px 28px rgba(255, 90, 0, .24);
}

.button-secondary {
  border-color: rgba(255, 197, 49, .72);
  background: linear-gradient(135deg, #073b73 0%, #0b4f91 58%, #041a33 100%);
  color: #ffffff;
}

.hero,
.page-variant-a .hero,
.page-variant-b .hero,
.page-variant-c .hero,
.page-variant-d .hero,
.page-variant-e .hero,
.section.section-soft {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 197, 49, .24), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(255, 90, 0, .18), transparent 26%),
    linear-gradient(180deg, #073b73 0%, #041a33 100%);
}

.hero,
.hero h1,
.hero h2,
.hero p,
.hero .eyebrow,
.hero .tag {
  color: #ffffff;
}

.hero::after {
  background: linear-gradient(0deg, #eaf2fb, rgba(234, 242, 251, 0));
}

.section .content-narrow,
main .section .content-narrow,
main .section:nth-of-type(3n+1) .content-narrow,
main .section:nth-of-type(3n+2) .content-narrow,
main .section:nth-of-type(3n) .content-narrow {
  border-color: rgba(29, 95, 159, .34);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 197, 49, .08), transparent 34%),
    linear-gradient(180deg, rgba(247, 251, 255, .98), rgba(232, 242, 252, .96));
  box-shadow: 0 18px 42px rgba(4, 26, 51, .12);
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-proof .proof-item,
.proof-item {
  display: grid;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
  border-color: rgba(255, 197, 49, .36);
  background:
    linear-gradient(135deg, rgba(4, 26, 51, .92), rgba(7, 59, 115, .88));
  box-shadow: 0 16px 34px rgba(4, 26, 51, .28), inset 0 0 0 1px rgba(255, 255, 255, .08);
}

.proof-label,
.proof-value {
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.18;
}

.proof-label {
  color: #cfe2f5;
}

.proof-value {
  color: #ffc531;
  text-shadow: 0 1px 0 rgba(4, 26, 51, .28);
}

.promo-pop {
  border-color: rgba(255, 197, 49, .92);
  background:
    linear-gradient(115deg, rgba(4, 26, 51, .44) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #041a33 0%, #073b73 42%, #ff5a00 76%, #ffc531 100%);
}

.site-footer {
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 197, 49, .16), transparent 30%),
    linear-gradient(180deg, #073b73 0%, #041a33 100%);
  color: #ffffff;
}

.section .content-narrow,
main .section .content-narrow,
main .section:nth-of-type(3n+1) .content-narrow,
main .section:nth-of-type(3n+2) .content-narrow,
main .section:nth-of-type(3n) .content-narrow,
main .faq-section .content-narrow {
  border-color: rgba(29, 95, 159, .22);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 197, 49, .045), transparent 34%),
    linear-gradient(180deg, rgba(225, 236, 248, .90), rgba(210, 225, 241, .88));
  box-shadow: 0 10px 28px rgba(4, 26, 51, .08);
}

.section.section-soft .section-inner,
.table-wrap,
details,
.media-placeholder,
article .hero-art,
article .article-media,
article .section .content-narrow .article-media,
article .section.section-soft .article-media {
  border-color: rgba(29, 95, 159, .22);
  background:
    linear-gradient(135deg, rgba(218, 232, 247, .84), rgba(196, 216, 236, .78));
  box-shadow: 0 10px 26px rgba(4, 26, 51, .08);
}

.hero .hero-art,
.hero .media-placeholder {
  border-color: rgba(255, 197, 49, .22);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 197, 49, .10), transparent 30%),
    linear-gradient(135deg, rgba(8, 43, 82, .58), rgba(11, 79, 145, .36));
  box-shadow: 0 14px 34px rgba(4, 26, 51, .22), inset 0 0 0 1px rgba(255, 255, 255, .05);
}

main .faq-section details {
  border-color: rgba(29, 95, 159, .24);
  background: rgba(225, 236, 248, .72);
  box-shadow: 0 8px 20px rgba(4, 26, 51, .07);
}

main .faq-section details[open] {
  border-color: rgba(255, 90, 0, .26);
  background: linear-gradient(180deg, rgba(229, 239, 249, .86), rgba(217, 230, 244, .78));
}
.section .content-narrow,
main .section .content-narrow,
main .section:nth-of-type(3n+1) .content-narrow,
main .section:nth-of-type(3n+2) .content-narrow,
main .section:nth-of-type(3n) .content-narrow,
main .faq-section .content-narrow {
  border-color: rgba(255, 197, 49, .18);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 197, 49, .08), transparent 34%),
    linear-gradient(135deg, rgba(7, 59, 115, .94), rgba(4, 26, 51, .96));
  box-shadow: 0 16px 38px rgba(4, 26, 51, .24), inset 0 0 0 1px rgba(255, 255, 255, .04);
  color: #ffffff;
}

.section .content-narrow h2,
main .section .content-narrow h2,
main .section:nth-of-type(3n+1) .content-narrow h2,
main .section:nth-of-type(3n+2) .content-narrow h2,
main .section:nth-of-type(3n) .content-narrow h2 {
  color: #ffffff;
}

.section .content-narrow p,
main .section .content-narrow p,
main .section:nth-of-type(3n+1) .content-narrow p,
main .section:nth-of-type(3n+2) .content-narrow p,
main .section:nth-of-type(3n) .content-narrow p,
main .section:nth-of-type(3n+1) .content-narrow p:nth-of-type(even),
main .section:nth-of-type(3n) .content-narrow p:first-of-type,
main .section:nth-of-type(3n) .content-narrow p:not(:first-of-type) {
  color: #cfe2f5;
}

.section.section-soft .section-inner,
.table-wrap,
details,
.media-placeholder,
article .hero-art,
article .article-media,
article .section .content-narrow .article-media,
article .section.section-soft .article-media {
  border-color: rgba(255, 197, 49, .16);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 197, 49, .08), transparent 30%),
    linear-gradient(135deg, rgba(4, 26, 51, .78), rgba(11, 79, 145, .36));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04), 0 12px 30px rgba(4, 26, 51, .18);
}
body {
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 90, 0, .14), transparent 24%),
    radial-gradient(circle at 88% 0%, rgba(255, 197, 49, .12), transparent 22%),
    linear-gradient(180deg, #073b73 0%, #041a33 42%, #041a33 100%);
}

main,
.section,
.section:nth-of-type(odd):not(.section-soft),
.section:nth-of-type(even):not(.section-soft),
.section.section-soft {
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 197, 49, .06), transparent 28%),
    linear-gradient(180deg, #061f3f 0%, #041a33 100%);
}

.hero::after {
  background: linear-gradient(0deg, #061f3f, rgba(6, 31, 63, 0));
}
html,
body {
  background: #041a33;
}

body {
  background: linear-gradient(180deg, #073b73 0, #041a33 560px, #041a33 100%) !important;
}

main,
.section,
.section:nth-of-type(odd):not(.section-soft),
.section:nth-of-type(even):not(.section-soft),
.section.section-soft {
  border: 0 !important;
  background: transparent !important;
}

.hero,
.page-variant-a .hero,
.page-variant-b .hero,
.page-variant-c .hero,
.page-variant-d .hero,
.page-variant-e .hero {
  background: linear-gradient(135deg, #073b73 0%, #041a33 100%) !important;
}

.hero::after {
  background: linear-gradient(0deg, #041a33, rgba(4, 26, 51, 0)) !important;
}

.section .content-narrow,
main .section .content-narrow,
main .section:nth-of-type(3n+1) .content-narrow,
main .section:nth-of-type(3n+2) .content-narrow,
main .section:nth-of-type(3n) .content-narrow,
main .faq-section .content-narrow {
  border: 1px solid rgba(255, 197, 49, .14) !important;
  background: linear-gradient(180deg, rgba(7, 59, 115, .92), rgba(4, 26, 51, .96)) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18) !important;
}

.section.section-soft .section-inner,
.table-wrap,
details,
.media-placeholder,
article .hero-art,
article .article-media,
article .section .content-narrow .article-media,
article .section.section-soft .article-media {
  border: 1px solid rgba(255, 197, 49, .12) !important;
  background: rgba(8, 43, 82, .62) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035), 0 10px 24px rgba(0, 0, 0, .14) !important;
}

.hero .hero-art,
.hero .media-placeholder {
  border-color: rgba(255, 197, 49, .16) !important;
  background: rgba(8, 43, 82, .54) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035), 0 12px 28px rgba(0, 0, 0, .20) !important;
}

.article-image {
  width: 100%;
  margin: 28px auto;
  text-align: center;
}

.article-image__frame {
  width: 100%;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 197, 49, .14);
  border-radius: 14px;
  background: rgba(8, 43, 82, .62);
  line-height: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035), 0 10px 24px rgba(0, 0, 0, .14);
}

.article-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.article-image--medium .article-image__frame {
  max-width: 520px;
}

.article-image--narrow .article-image__frame {
  max-width: 360px;
}

.article-image figcaption {
  max-width: 760px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.article-image--medium figcaption {
  max-width: 520px;
}

.article-image--narrow figcaption {
  max-width: 360px;
}

.section.section-soft .article-image {
  margin: 22px auto 26px;
}

@media (max-width: 640px) {
  .article-image {
    margin: 22px auto;
  }

  .article-image__frame,
  .article-image--medium .article-image__frame,
  .article-image--narrow .article-image__frame {
    max-width: 100%;
    border-radius: 12px;
  }

.article-image figcaption,
  .article-image--medium figcaption,
  .article-image--narrow figcaption {
    max-width: 100%;
    font-size: 13px;
  }
}

.header-inner {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  justify-content: stretch;
}

.brand {
  justify-self: start;
  transform: none;
}

.nav {
  justify-self: center;
}

.brand-mark {
  width: clamp(150px, 15vw, 196px);
  height: 38px;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand .brand-logo {
  display: block;
  width: 100%;
  height: 38px;
  max-height: 38px;
  object-fit: contain;
}

@media (max-width: 880px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) 48px;
    justify-content: stretch;
  }

  .brand {
    justify-self: start;
    flex: 0 1 auto;
  }

  .nav {
    justify-self: auto;
  }

  .brand-mark {
    width: clamp(140px, 42vw, 172px);
    height: 34px;
  }

  .brand .brand-logo {
    height: 34px;
    max-height: 34px;
  }

  .brand-name {
    display: block;
  }
}

@media (max-width: 380px) {
  .brand-mark {
    width: 132px;
    height: 32px;
  }

  .brand .brand-logo {
    height: 32px;
    max-height: 32px;
  }
}

body .site-header .header-inner {
  grid-template-columns: auto minmax(0, 1fr) auto auto !important;
  justify-content: stretch !important;
}

body .site-header .brand {
  justify-self: start !important;
  transform: none !important;
}

body .site-header .brand-mark {
  display: block !important;
  width: clamp(150px, 15vw, 196px) !important;
  height: 38px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .site-header .brand .brand-logo {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  max-height: 38px !important;
  object-fit: contain !important;
}

body .site-header .nav {
  justify-self: center !important;
}

@media (max-width: 880px) {
  body .site-header .header-inner {
    grid-template-columns: minmax(0, 1fr) 48px !important;
  }

  body .site-header .brand-mark {
    width: clamp(140px, 42vw, 172px) !important;
    height: 34px !important;
  }

  body .site-header .brand .brand-logo {
    max-height: 34px !important;
  }
}

@media (max-width: 380px) {
  body .site-header .brand-mark {
    width: 132px !important;
    height: 32px !important;
  }

  body .site-header .brand .brand-logo {
    max-height: 32px !important;
  }
}

@media (min-width: 881px) {
  body .site-header .brand {
    transform: translateX(48px) !important;
  }
}

body .site-header .nav {
  gap: 10px !important;
  padding: 8px !important;
}

body .site-header .nav a {
  min-height: 44px !important;
  padding: 0 14px !important;
  font-size: 14px !important;
}

body .site-header .nav a:nth-child(7) {
  --nav-accent: #ffc531;
}

@media (max-width: 1120px) and (min-width: 881px) {
  body .site-header .header-inner {
    gap: 10px !important;
  }

  body .site-header .brand {
    transform: translateX(16px) !important;
  }

  body .site-header .brand-mark {
    width: 152px !important;
  }

  body .site-header .nav {
    gap: 7px !important;
    padding: 6px !important;
  }

  body .site-header .nav a {
    min-height: 40px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
  }

  body .site-header .header-promo-copy {
    min-width: 150px !important;
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  body .site-header .header-cta {
    min-width: 132px !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}

@media (max-width: 980px) and (min-width: 881px) {
  body .site-header .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }

  body .site-header .header-promo-copy {
    display: none !important;
  }

  body .site-header .nav {
    justify-self: center !important;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 52px;
  border-bottom: 1px solid rgba(212, 169, 63, .72);
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 91, 0, .26), transparent 28%),
    radial-gradient(circle at 16% 88%, rgba(255, 215, 92, .16), transparent 30%),
    linear-gradient(180deg, #041a33 0%, #063966 48%, #052b55 100%);
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64px;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(5, 43, 85, 0) 100%);
  pointer-events: none;
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: #ffd966;
}

.page-hero h1 {
  width: min(100%, 820px);
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.1;
  text-shadow: 0 14px 34px rgba(0, 0, 0, .26);
}

.page-hero p {
  width: min(100%, 820px);
  margin: 0;
  color: #d8e8f6;
  font-size: 18px;
  line-height: 1.56;
}

.hero-home .hero-art img {
  width: 100%;
  max-width: 100%;
  height: 320px;
  object-fit: contain;
}

@media (max-width: 760px) {
  .page-hero {
    padding: 42px 0 44px;
  }

  .page-hero h1 {
    font-size: clamp(27px, 7.5vw, 34px);
    line-height: 1.14;
  }

  .page-hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-home .hero-art img {
    height: 190px;
  }
}

.page-internal .hero-home .hero-art {
  width: min(100%, 520px) !important;
  max-width: 520px !important;
  justify-self: center !important;
  padding: 10px !important;
}

.page-internal .hero-home .hero-art img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 260px !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

.page-internal .hero-home .hero-art figcaption {
  max-width: 460px;
  margin: 10px auto 0;
  color: rgba(218, 232, 246, .82);
  font-size: 13px;
  line-height: 1.35;
}

.page-internal .hero-home .hero-art--portrait {
  width: min(100%, 320px) !important;
  max-width: 320px !important;
}

.page-internal .hero-home .hero-art--portrait img {
  max-height: 260px !important;
}

main .section .content-narrow .article-image {
  width: 100%;
  margin: 24px auto;
}

main .section .content-narrow .article-image__frame {
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  overflow: hidden !important;
  border-radius: 12px !important;
  line-height: 0 !important;
}

main .section .content-narrow .article-image img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

main .section .content-narrow .article-image--medium .article-image__frame {
  width: min(100%, 420px) !important;
  max-width: 420px !important;
}

main .section .content-narrow .article-image--narrow .article-image__frame {
  width: min(100%, 300px) !important;
  max-width: 300px !important;
}

main .section .content-narrow .article-image figcaption {
  max-width: 560px !important;
  margin: 9px auto 0 !important;
  color: rgba(218, 232, 246, .82) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

main .section .content-narrow .article-image--medium figcaption {
  max-width: 420px !important;
}

main .section .content-narrow .article-image--narrow figcaption {
  max-width: 300px !important;
}

@media (max-width: 760px) {
  .page-internal .hero-home .hero-art {
    width: min(100%, 420px) !important;
    max-width: 420px !important;
  }

  .page-internal .hero-home .hero-art img {
    max-height: 210px !important;
  }
}

@media (max-width: 640px) {
  main .section .content-narrow .article-image__frame {
    width: 100% !important;
    max-width: 100% !important;
  }

  main .section .content-narrow .article-image--medium .article-image__frame {
    width: min(100%, 420px) !important;
    max-width: 420px !important;
  }

  main .section .content-narrow .article-image--narrow .article-image__frame {
    width: min(100%, 300px) !important;
    max-width: 300px !important;
  }
}

main .section .article-image {
  width: 100% !important;
  margin: 24px auto !important;
  text-align: center !important;
}

main .section .article-image__frame {
  width: min(100%, 560px) !important;
  max-width: 560px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  overflow: hidden !important;
  border-radius: 12px !important;
  line-height: 0 !important;
}

main .section .article-image img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

main .section .article-image figcaption {
  max-width: 560px !important;
  margin: 9px auto 0 !important;
  color: rgba(218, 232, 246, .82) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

main .section .article-image--medium .article-image__frame,
main .section .article-image--medium figcaption {
  width: min(100%, 420px) !important;
  max-width: 420px !important;
}

main .section .article-image--narrow .article-image__frame,
main .section .article-image--narrow figcaption {
  width: min(100%, 300px) !important;
  max-width: 300px !important;
}

article .hero-art,
article .section .article-image__frame,
main .section .article-image__frame {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

article .hero-art {
  padding: 0 !important;
  overflow: visible !important;
}

article .hero-art img,
article .section .article-image img,
main .section .article-image img {
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
  object-fit: contain !important;
}

article .section .article-image__frame,
main .section .article-image__frame {
  overflow: hidden !important;
  line-height: 0 !important;
}

article .hero-art figcaption,
article .section .article-image figcaption,
main .section .article-image figcaption {
  text-shadow: none !important;
}

body article .hero.hero-home .hero-art,
body article .hero .hero-art,
body main article .hero .hero-art {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  overflow: visible !important;
}

body article .hero.hero-home .hero-art img,
body article .hero .hero-art img,
body main article .hero .hero-art img {
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
  margin-right: auto !important;
  margin-left: auto !important;
  border-radius: 12px !important;
  object-fit: contain !important;
}

body article figure.hero-art,
body article figure.article-image,
body main article figure.hero-art,
body main article figure.article-image {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body article figure.hero-art {
  width: auto !important;
  max-width: 100% !important;
  padding: 0 !important;
  overflow: visible !important;
  justify-self: center !important;
}

body article figure.article-image {
  width: 100% !important;
  margin: 26px auto !important;
  text-align: center !important;
}

body article figure.article-image .article-image__frame {
  display: block !important;
  width: fit-content !important;
  max-width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  line-height: 0 !important;
}

body article figure.hero-art img,
body article figure.article-image img {
  display: block !important;
  width: auto !important;
  max-width: min(100%, 760px) !important;
  height: auto !important;
  max-height: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  border: 0 !important;
  border-radius: 12px !important;
  object-fit: contain !important;
}

body article figure.article-image--medium img {
  max-width: min(100%, 520px) !important;
}

body article figure.article-image--narrow img,
body article figure.hero-art--portrait img {
  max-width: min(100%, 360px) !important;
}

body article figure.hero-art figcaption,
body article figure.article-image figcaption {
  max-width: min(100%, 760px) !important;
  margin: 10px auto 0 !important;
  background: transparent !important;
  color: rgba(218, 232, 246, .78) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  text-align: center !important;
  text-shadow: none !important;
}

body article figure.article-image--medium figcaption {
  max-width: min(100%, 520px) !important;
}

body article figure.article-image--narrow figcaption,
body article figure.hero-art--portrait figcaption {
  max-width: min(100%, 360px) !important;
}

html body main article figure.article-image,
html body main article figure.article-image.article-image--medium,
html body main article figure.article-image.article-image--narrow,
html body main article figure.hero-art,
html body main article figure.hero-art.hero-art--portrait {
  width: 100% !important;
  max-width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
  overflow: visible !important;
}

html body main article figure.article-image .article-image__frame,
html body main article figure.article-image.article-image--medium .article-image__frame,
html body main article figure.article-image.article-image--narrow .article-image__frame {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  line-height: 0 !important;
}

html body main article figure.article-image img,
html body main article figure.article-image.article-image--medium img,
html body main article figure.article-image.article-image--narrow img,
html body main article figure.hero-art img,
html body main article figure.hero-art.hero-art--portrait img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
}

html body main article figure.article-image figcaption,
html body main article figure.article-image.article-image--medium figcaption,
html body main article figure.article-image.article-image--narrow figcaption,
html body main article figure.hero-art figcaption,
html body main article figure.hero-art.hero-art--portrait figcaption {
  width: auto !important;
  max-width: 100% !important;
  margin: 10px auto 0 !important;
  background: transparent !important;
  color: rgba(218, 232, 246, .78) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  text-align: center !important;
  text-shadow: none !important;
}

html body main article .section figure.article-image,
html body main article .section figure.article-image.article-image--medium,
html body main article .section figure.article-image.article-image--narrow,
html body.page-internal main article section.hero.hero-home figure.hero-art,
html body main article section.hero.hero-home figure.hero-art,
html body main article section.hero figure.hero-art {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 28px auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  text-align: center !important;
}

html body main article .section figure.article-image .article-image__frame,
html body main article .section figure.article-image.article-image--medium .article-image__frame,
html body main article .section figure.article-image.article-image--narrow .article-image__frame {
  display: inline-block !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  line-height: 0 !important;
}

html body main article .section figure.article-image img,
html body main article .section figure.article-image.article-image--medium img,
html body main article .section figure.article-image.article-image--narrow img,
html body.page-internal main article section.hero.hero-home figure.hero-art img,
html body main article section.hero.hero-home figure.hero-art img,
html body main article section.hero figure.hero-art img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

html body main article .section figure.article-image figcaption,
html body main article .section figure.article-image.article-image--medium figcaption,
html body main article .section figure.article-image.article-image--narrow figcaption,
html body.page-internal main article section.hero.hero-home figure.hero-art figcaption,
html body main article section.hero.hero-home figure.hero-art figcaption,
html body main article section.hero figure.hero-art figcaption {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 10px auto 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: rgba(218, 232, 246, .78) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  text-align: center !important;
  text-shadow: none !important;
}

html body main article section.hero.hero-home figure.hero-art,
html body.page-internal main article section.hero.hero-home figure.hero-art {
  width: auto !important;
  max-width: min(100%, 620px) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  align-self: center !important;
}

html body main article section.hero.hero-home figure.hero-art img,
html body.page-internal main article section.hero.hero-home figure.hero-art img,
html body main article section.hero.hero-home figure.hero-art.hero-art--portrait img,
html body.page-internal main article section.hero.hero-home figure.hero-art.hero-art--portrait img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 420px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

html body main article section.hero.hero-home figure.hero-art figcaption,
html body.page-internal main article section.hero.hero-home figure.hero-art figcaption {
  max-width: 620px !important;
  margin: 10px auto 0 !important;
}

@media (max-width: 760px) {
  html body main article section.hero.hero-home figure.hero-art,
  html body.page-internal main article section.hero.hero-home figure.hero-art {
    max-width: 100% !important;
  }

  html body main article section.hero.hero-home figure.hero-art img,
  html body.page-internal main article section.hero.hero-home figure.hero-art img,
  html body main article section.hero.hero-home figure.hero-art.hero-art--portrait img,
  html body.page-internal main article section.hero.hero-home figure.hero-art.hero-art--portrait img {
    max-height: 260px !important;
  }
}

html body main article section.hero.hero-home .hero-grid {
  grid-template-columns: minmax(0, 960px) !important;
  justify-content: start !important;
}

html body main article section.hero.hero-home .hero-grid > div {
  max-width: 960px !important;
}

html body main article .section figure.article-image {
  width: 100% !important;
  margin: 28px auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
}

html body main article .section figure.article-image .article-image__frame {
  display: block !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  line-height: 0 !important;
}

html body main article .section figure.article-image.article-image--medium .article-image__frame {
  max-width: 520px !important;
}

html body main article .section figure.article-image.article-image--narrow .article-image__frame {
  max-width: 360px !important;
}

html body main article .section figure.article-image img,
html body main article .section figure.article-image.article-image--medium img,
html body main article .section figure.article-image.article-image--narrow img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

html body main article .section figure.article-image figcaption {
  max-width: 760px !important;
  margin: 10px auto 0 !important;
  padding: 0 !important;
  background: transparent !important;
  color: rgba(218, 232, 246, .78) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  text-align: center !important;
  text-shadow: none !important;
}

html body main article .section figure.article-image.article-image--medium figcaption {
  max-width: 520px !important;
}

html body main article .section figure.article-image.article-image--narrow figcaption {
  max-width: 360px !important;
}

@media (max-width: 640px) {
  html body main article .section figure.article-image {
    margin: 22px auto !important;
  }

  html body main article .section figure.article-image .article-image__frame,
  html body main article .section figure.article-image.article-image--medium .article-image__frame,
  html body main article .section figure.article-image.article-image--narrow .article-image__frame {
    max-width: 100% !important;
  }
}

html body main article section.hero.hero-home.hero-home--with-art .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 760px) !important;
  gap: clamp(32px, 5vw, 72px) !important;
  align-items: center !important;
  justify-content: space-between !important;
}

html body main article section.hero.hero-home.hero-home--with-art .hero-grid > div {
  max-width: 720px !important;
}

html body main article section.hero.hero-home.hero-home--with-art figure.hero-art {
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  align-self: center !important;
  text-align: center !important;
}

html body main article section.hero.hero-home.hero-home--with-art figure.hero-art img {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: contain !important;
}

html body main article section.hero.hero-home.hero-home--with-art figure.hero-art figcaption {
  max-width: 760px !important;
  margin: 10px auto 0 !important;
  background: transparent !important;
  color: rgba(218, 232, 246, .68) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  text-align: center !important;
  text-shadow: none !important;
}

html body main article section.hero.hero-home.hero-home--with-art figure.hero-art.hero-art--portrait {
  max-width: 380px !important;
}

@media (max-width: 980px) {
  html body main article section.hero.hero-home.hero-home--with-art .hero-grid {
    grid-template-columns: 1fr !important;
  }

  html body main article section.hero.hero-home.hero-home--with-art figure.hero-art {
    max-width: 100% !important;
  }

  html body main article section.hero.hero-home.hero-home--with-art figure.hero-art img {
    max-height: none !important;
  }
}

html body main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art {
  display: block !important;
  width: 100% !important;
  max-width: 760px !important;
  min-width: 0 !important;
  order: 0 !important;
  grid-column: auto !important;
  justify-self: center !important;
}

html body main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art > img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}

html body main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art.hero-art--portrait {
  width: min(100%, 380px) !important;
  max-width: 380px !important;
}

html body main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art.hero-art--portrait > img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
}

html body.page-variant-a main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid {
  width: min(1360px, calc(100% - 64px)) !important;
  grid-template-columns: minmax(560px, 620px) minmax(460px, 680px) !important;
  gap: clamp(28px, 3vw, 40px) !important;
  align-items: center !important;
}

html body.page-variant-a main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > div {
  max-width: 640px !important;
}

html body.page-variant-a main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art {
  max-width: 700px !important;
}

@media (max-width: 1180px) {
  html body.page-variant-a main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid {
    width: min(760px, calc(100% - 32px)) !important;
    grid-template-columns: 1fr !important;
  }

  html body.page-variant-a main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > div,
  html body.page-variant-a main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art {
    max-width: 760px !important;
  }
}

html body.page-internal main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid {
  width: min(1360px, calc(100% - 64px)) !important;
  grid-template-columns: minmax(560px, 620px) minmax(420px, 680px) !important;
  gap: clamp(28px, 3vw, 40px) !important;
  align-items: center !important;
}

html body.page-internal main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > div {
  max-width: 640px !important;
}

html body.page-internal main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art {
  max-width: 700px !important;
}

html body.page-internal main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art.hero-art--portrait {
  max-width: 380px !important;
}

@media (max-width: 1180px) {
  html body.page-internal main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid {
    width: min(760px, calc(100% - 32px)) !important;
    grid-template-columns: 1fr !important;
  }

  html body.page-internal main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > div,
  html body.page-internal main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art {
    max-width: 760px !important;
  }

  html body.page-internal main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art.hero-art--portrait {
    max-width: 380px !important;
  }
}

html body main article figure.hero-art,
html body main article figure.article-image {
  padding: clamp(8px, 1vw, 12px) !important;
  border: 1px solid rgba(82, 132, 176, .42) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(2, 17, 33, .98) 0%, rgba(4, 31, 56, .96) 52%, rgba(8, 49, 86, .90) 100%) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .36),
    0 0 0 1px rgba(255, 255, 255, .045) inset,
    0 0 26px rgba(34, 96, 148, .16) !important;
}

html body main article figure.hero-art > img,
html body main article figure.article-image img {
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .22) !important;
}

html body main article figure.article-image .article-image__frame {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body main article figure.hero-art figcaption,
html body main article figure.article-image figcaption {
  color: rgba(226, 238, 250, .82) !important;
}

@media (max-width: 640px) {
  html body main article figure.hero-art,
  html body main article figure.article-image {
    padding: 7px !important;
    border-radius: 14px !important;
  }

  html body main article figure.hero-art > img,
  html body main article figure.article-image img {
    border-radius: 10px !important;
  }
}

html body main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art,
html body main article section.section .section-inner.content-narrow > figure.article-image,
html body main article section.section .section-inner.content-narrow figure.article-image {
  padding: clamp(8px, 1vw, 12px) !important;
  border: 1px solid rgba(82, 132, 176, .42) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(2, 17, 33, .98) 0%, rgba(4, 31, 56, .96) 52%, rgba(8, 49, 86, .90) 100%) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .36),
    0 0 0 1px rgba(255, 255, 255, .045) inset,
    0 0 26px rgba(34, 96, 148, .16) !important;
}

html body main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art > img,
html body main article section.section .section-inner.content-narrow > figure.article-image img,
html body main article section.section .section-inner.content-narrow figure.article-image img {
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24) !important;
}

html body main article section.section .section-inner.content-narrow > figure.article-image .article-image__frame,
html body main article section.section .section-inner.content-narrow figure.article-image .article-image__frame {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art figcaption,
html body main article section.section .section-inner.content-narrow > figure.article-image figcaption,
html body main article section.section .section-inner.content-narrow figure.article-image figcaption {
  color: rgba(226, 238, 250, .84) !important;
}

@media (max-width: 640px) {
  html body main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art,
  html body main article section.section .section-inner.content-narrow > figure.article-image,
  html body main article section.section .section-inner.content-narrow figure.article-image {
    padding: 7px !important;
    border-radius: 14px !important;
  }

  html body main article section.hero.hero-home.hero-home--with-art .section-inner.hero-grid > figure.hero-art > img,
  html body main article section.section .section-inner.content-narrow > figure.article-image img,
  html body main article section.section .section-inner.content-narrow figure.article-image img {
    border-radius: 10px !important;
  }
}

html body main article,
html body main article .section,
html body main article .content-narrow,
html body main article .section-inner {
  color: #edf6ff !important;
}

html body main article .section h2,
html body main article .section h3,
html body main article .section h4,
html body main article .content-narrow h2,
html body main article .content-narrow h3,
html body main article .content-narrow h4 {
  color: #ffffff !important;
}

html body main article .section p,
html body main article .section li,
html body main article .section dd,
html body main article .section figcaption,
html body main article .content-narrow p,
html body main article .content-narrow li,
html body main article .content-narrow dd {
  color: #dcecff !important;
}

html body main article .section strong,
html body main article .section b,
html body main article .section em,
html body main article .section a,
html body main article .content-narrow strong,
html body main article .content-narrow b,
html body main article .content-narrow em,
html body main article .content-narrow a {
  color: #ffffff !important;
}

html body main article .section a,
html body main article .content-narrow a {
  border-bottom-color: rgba(255, 197, 49, .82) !important;
  text-decoration-color: rgba(255, 197, 49, .82) !important;
}

html body main article .section ol,
html body main article .section ul,
html body main article .content-narrow ol,
html body main article .content-narrow ul {
  color: #dcecff !important;
}

html body main article .section li::marker,
html body main article .content-narrow li::marker {
  color: #ffc531 !important;
  font-weight: 400 !important;
}

html body main article .table-wrap,
html body main article .content-narrow .table-wrap {
  border-color: rgba(255, 197, 49, .20) !important;
  background: linear-gradient(180deg, rgba(2, 17, 33, .96), rgba(6, 35, 65, .94)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .045),
    0 14px 30px rgba(0, 0, 0, .28) !important;
}

html body main article table {
  background: transparent !important;
}

html body main article th,
html body main article td {
  border-bottom-color: rgba(116, 163, 204, .26) !important;
}

html body main article th {
  background: rgba(8, 43, 82, .92) !important;
  color: #ffffff !important;
}

html body main article td {
  background: rgba(6, 35, 65, .74) !important;
  color: #dcecff !important;
}

html body main article tbody tr:nth-child(even) td {
  background: rgba(10, 55, 96, .68) !important;
}

html body main article td strong,
html body main article td b {
  color: #ffffff !important;
}

html body main article details,
html body main article .faq details,
html body main article .faq-item {
  background: rgba(4, 26, 51, .72) !important;
  border-color: rgba(255, 197, 49, .18) !important;
}

html body main article summary,
html body main article .faq summary,
html body main article .faq-item h3 {
  color: #ffffff !important;
}

html body main article details p,
html body main article .faq-item p {
  color: #dcecff !important;
}

html body main article > .section {
  padding: clamp(42px, 5vw, 78px) 0 !important;
}

html body main article > .section::before {
  left: max(24px, calc((100% - 1240px) / 2)) !important;
  right: max(24px, calc((100% - 1240px) / 2)) !important;
  opacity: .38 !important;
}

html body main article > .section:not(.faq-section) > .section-inner.content-narrow,
html body main article > .section:not(.faq-section) .section-inner.content-narrow {
  display: block !important;
  width: min(1040px, calc(100% - 48px)) !important;
  max-width: 1040px !important;
  padding: clamp(28px, 3vw, 42px) !important;
  overflow: hidden !important;
  border-radius: 28px 14px 28px 14px !important;
  border: 1px solid rgba(255, 197, 49, .15) !important;
  border-left: 5px solid rgba(255, 197, 49, .60) !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 197, 49, .08), transparent 28%),
    linear-gradient(135deg, rgba(7, 59, 115, .90), rgba(3, 23, 44, .96)) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .24),
    inset 0 0 0 1px rgba(255, 255, 255, .04) !important;
}

html body main article > .section:not(.faq-section):nth-of-type(4n+1) .section-inner.content-narrow {
  max-width: 940px !important;
  margin-right: auto !important;
  margin-left: max(24px, calc((100% - 1180px) / 2)) !important;
  border-radius: 14px 30px 14px 30px !important;
  border-left-color: rgba(255, 197, 49, .55) !important;
}

html body main article > .section:not(.faq-section):nth-of-type(4n+2) .section-inner.content-narrow {
  max-width: 1120px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  border-radius: 30px 12px 30px 12px !important;
  border-left-color: rgba(255, 90, 0, .58) !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 90, 0, .11), transparent 30%),
    linear-gradient(135deg, rgba(8, 64, 116, .90), rgba(3, 23, 44, .96)) !important;
}

html body main article > .section:not(.faq-section):nth-of-type(4n+3) .section-inner.content-narrow {
  max-width: 900px !important;
  margin-right: max(24px, calc((100% - 1180px) / 2)) !important;
  margin-left: auto !important;
  border-radius: 30px 30px 12px 12px !important;
  border-left-color: rgba(82, 132, 176, .72) !important;
  background:
    radial-gradient(circle at 0% 100%, rgba(82, 132, 176, .18), transparent 34%),
    linear-gradient(135deg, rgba(5, 43, 85, .92), rgba(2, 17, 33, .98)) !important;
}

html body main article > .section:not(.faq-section):nth-of-type(4n) .section-inner.content-narrow {
  max-width: 1020px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  border-radius: 12px 30px 30px 12px !important;
  border-left-color: rgba(255, 197, 49, .42) !important;
}

html body main article > .section:not(.faq-section) .content-narrow > .tag {
  margin-bottom: 16px !important;
}

html body main article > .section:not(.faq-section) .content-narrow > h2 {
  max-width: 860px !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

html body main article > .section:not(.faq-section) .content-narrow > p {
  max-width: 920px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body main article > .section:not(.faq-section):nth-of-type(4n+3) .content-narrow > p,
html body main article > .section:not(.faq-section):nth-of-type(4n+3) .content-narrow > ol,
html body main article > .section:not(.faq-section):nth-of-type(4n+3) .content-narrow > ul {
  max-width: 780px !important;
  margin-left: auto !important;
}

html body main article > .section:not(.faq-section):nth-of-type(5n+1) .section-inner.content-narrow,
html body main article > .section:not(.faq-section):nth-of-type(5n+4) .section-inner.content-narrow {
  padding: clamp(18px, 2.4vw, 30px) 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body main article > .section:not(.faq-section):nth-of-type(5n+1) .content-narrow > .tag,
html body main article > .section:not(.faq-section):nth-of-type(5n+4) .content-narrow > .tag {
  border-color: rgba(255, 197, 49, .72) !important;
  background: rgba(255, 197, 49, .92) !important;
  color: #061324 !important;
}

html body main article > .section:not(.faq-section):nth-of-type(5n+1) .content-narrow > h2,
html body main article > .section:not(.faq-section):nth-of-type(5n+4) .content-narrow > h2 {
  max-width: 920px !important;
}

html body main article > .section:not(.faq-section):nth-of-type(5n+1) .content-narrow > p,
html body main article > .section:not(.faq-section):nth-of-type(5n+4) .content-narrow > p {
  max-width: 920px !important;
  color: #edf6ff !important;
}

html body main article > .section:not(.faq-section):nth-of-type(5n+1) .content-narrow > ol,
html body main article > .section:not(.faq-section):nth-of-type(5n+1) .content-narrow > ul,
html body main article > .section:not(.faq-section):nth-of-type(5n+4) .content-narrow > ol,
html body main article > .section:not(.faq-section):nth-of-type(5n+4) .content-narrow > ul {
  max-width: 860px !important;
  margin-left: 0 !important;
  background: rgba(2, 17, 33, .26) !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
}

html body main article > .section:not(.faq-section) .content-narrow > ol,
html body main article > .section:not(.faq-section) .content-narrow > ul {
  padding: 18px 22px 18px 42px !important;
  border-radius: 18px !important;
  background: rgba(2, 17, 33, .34) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .045) !important;
}

html body main article > .section:not(.faq-section) .content-narrow > table,
html body main article > .section:not(.faq-section) .content-narrow > .table-wrap {
  margin-top: 22px !important;
}

html body main article > .section.faq-section .section-inner.content-narrow {
  border-radius: 30px !important;
}

@media (max-width: 880px) {
  html body main article > .section {
    padding: 36px 0 !important;
  }

  html body main article > .section:not(.faq-section) > .section-inner.content-narrow,
  html body main article > .section:not(.faq-section) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(4n+1) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(4n+2) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(4n+3) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(4n) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(5n+1) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(5n+4) .section-inner.content-narrow {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 24px 20px !important;
    border-radius: 20px !important;
    border-left-width: 3px !important;
  }

  html body main article > .section:not(.faq-section):nth-of-type(5n+1) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(5n+4) .section-inner.content-narrow {
    padding: 12px 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  html body main article > .section:not(.faq-section):nth-of-type(4n+3) .content-narrow > p,
  html body main article > .section:not(.faq-section):nth-of-type(4n+3) .content-narrow > ol,
  html body main article > .section:not(.faq-section):nth-of-type(4n+3) .content-narrow > ul {
    max-width: 100% !important;
    margin-left: 0 !important;
  }
}

html body main article > .section:not(.faq-section):nth-of-type(even) .section-inner.content-narrow {
  max-width: 1020px !important;
  margin-right: auto !important;
  margin-left: max(24px, calc((100% - 1180px) / 2)) !important;
}

html body main article > .section:not(.faq-section):nth-of-type(odd) .section-inner.content-narrow {
  max-width: 1020px !important;
  margin-right: max(24px, calc((100% - 1180px) / 2)) !important;
  margin-left: auto !important;
}

html body main article > .section:not(.faq-section):nth-of-type(even) .section-inner.content-narrow {
  border-radius: 14px 30px 14px 30px !important;
}

html body main article > .section:not(.faq-section):nth-of-type(odd) .section-inner.content-narrow {
  border-radius: 30px 14px 30px 14px !important;
}

html body main article > .section:not(.faq-section):nth-of-type(5n+1) .section-inner.content-narrow,
html body main article > .section:not(.faq-section):nth-of-type(5n+4) .section-inner.content-narrow {
  border-radius: 0 !important;
}

@media (max-width: 880px) {
  html body main article > .section:not(.faq-section):nth-of-type(odd) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(even) .section-inner.content-narrow {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    border-radius: 20px !important;
  }

  html body main article > .section:not(.faq-section):nth-of-type(5n+1) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(5n+4) .section-inner.content-narrow {
    border-radius: 0 !important;
  }
}

html body main article > .section:not(.faq-section):nth-of-type(5n+1) .section-inner.content-narrow,
html body main article > .section:not(.faq-section):nth-of-type(5n+4) .section-inner.content-narrow {
  max-width: 1040px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

html body main article > .section:not(.faq-section):nth-of-type(10n+2) .section-inner.content-narrow,
html body main article > .section:not(.faq-section):nth-of-type(10n+5) .section-inner.content-narrow,
html body main article > .section:not(.faq-section):nth-of-type(10n+8) .section-inner.content-narrow {
  max-width: 1020px !important;
  margin-right: auto !important;
  margin-left: max(24px, calc((100% - 1180px) / 2)) !important;
  border-radius: 14px 30px 14px 30px !important;
}

html body main article > .section:not(.faq-section):nth-of-type(10n+3) .section-inner.content-narrow,
html body main article > .section:not(.faq-section):nth-of-type(10n+7) .section-inner.content-narrow,
html body main article > .section:not(.faq-section):nth-of-type(10n+10) .section-inner.content-narrow {
  max-width: 1020px !important;
  margin-right: max(24px, calc((100% - 1180px) / 2)) !important;
  margin-left: auto !important;
  border-radius: 30px 14px 30px 14px !important;
}

html body main article > .section:not(.faq-section):nth-of-type(5n+1) .section-inner.content-narrow,
html body main article > .section:not(.faq-section):nth-of-type(5n+4) .section-inner.content-narrow {
  border-radius: 0 !important;
}

@media (max-width: 880px) {
  html body main article > .section:not(.faq-section):nth-of-type(5n+1) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(5n+4) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+2) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+5) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+8) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+3) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+7) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+10) .section-inner.content-narrow {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  html body main article > .section:not(.faq-section):nth-of-type(10n+2) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+5) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+8) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+3) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+7) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(10n+10) .section-inner.content-narrow {
    border-radius: 20px !important;
  }

  html body main article > .section:not(.faq-section):nth-of-type(5n+1) .section-inner.content-narrow,
  html body main article > .section:not(.faq-section):nth-of-type(5n+4) .section-inner.content-narrow {
    border-radius: 0 !important;
  }
}

html body main article > .section.article-section-open > .section-inner.content-narrow {
  max-width: 1040px !important;
  margin-right: auto !important;
  margin-left: max(24px, calc((100% - 1180px) / 2)) !important;
  padding: clamp(18px, 2.4vw, 30px) 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body main article > .section.article-section-card.article-card-left > .section-inner.content-narrow {
  max-width: 1020px !important;
  margin-right: auto !important;
  margin-left: max(24px, calc((100% - 1180px) / 2)) !important;
  border-radius: 14px 30px 14px 30px !important;
}

html body main article > .section.article-section-card.article-card-right > .section-inner.content-narrow {
  max-width: 1020px !important;
  margin-right: max(24px, calc((100% - 1180px) / 2)) !important;
  margin-left: auto !important;
  border-radius: 30px 14px 30px 14px !important;
}

@media (max-width: 880px) {
  html body main article > .section.article-section-open > .section-inner.content-narrow,
  html body main article > .section.article-section-card.article-card-left > .section-inner.content-narrow,
  html body main article > .section.article-section-card.article-card-right > .section-inner.content-narrow {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  html body main article > .section.article-section-open > .section-inner.content-narrow {
    padding: 12px 0 !important;
    border-radius: 0 !important;
  }

  html body main article > .section.article-section-card.article-card-left > .section-inner.content-narrow,
  html body main article > .section.article-section-card.article-card-right > .section-inner.content-narrow {
    border-radius: 20px !important;
  }
}

.promo-pop-media .promo-pop-icon {
  width: 82% !important;
  height: 82% !important;
  object-fit: contain !important;
  object-position: 50% 50% !important;
  border-radius: 22px !important;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .28)) !important;
}

@media (max-width: 640px) {
  .promo-pop-media .promo-pop-icon {
    width: 84% !important;
    height: 84% !important;
    border-radius: 18px !important;
  }
}

body .site-header .header-promo-copy,
body .site-header .header-cta,
body .hero-actions .button,
body .hero-actions .button-secondary,
body .promo-pop-button,
body .footer-legal-button {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  min-height: 58px !important;
  border-radius: 16px !important;
  letter-spacing: .01em !important;
  transform: translateZ(0);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    color .18s ease !important;
}

body .site-header .header-promo-copy,
body .hero-actions .button-secondary,
body .footer-legal-button {
  border: 2px solid rgba(255, 197, 49, .92) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #0d4e88 0%, #074276 48%, #032746 100%) !important;
  color: #ffffff !important;
  box-shadow:
    0 0 0 4px rgba(255, 197, 49, .10),
    0 18px 34px rgba(1, 15, 31, .34),
    inset 0 1px 0 rgba(255, 255, 255, .22),
    inset 0 -5px 0 rgba(255, 197, 49, .18) !important;
}

body .site-header .header-promo-copy {
  gap: 10px !important;
  min-width: 220px !important;
}

body .site-header .header-promo-copy::before {
  content: "" !important;
  position: relative !important;
  z-index: 1 !important;
  display: inline-block !important;
  width: 15px !important;
  height: 17px !important;
  flex: 0 0 15px !important;
  border: 2px solid currentColor !important;
  border-radius: 4px !important;
  box-shadow: 5px -5px 0 -1px #074276, 5px -5px 0 1px currentColor !important;
  opacity: .94 !important;
}

body .site-header .header-cta,
body .hero-actions .button,
body .promo-pop-button {
  border: 2px solid #ff6a00 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .34) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #ffe982 0%, #ffc531 30%, #ff7a00 68%, #f04400 100%) !important;
  color: #061324 !important;
  box-shadow:
    0 0 0 4px rgba(255, 106, 0, .14),
    0 20px 38px rgba(255, 90, 0, .30),
    inset 0 1px 0 rgba(255, 255, 255, .46),
    inset 0 -5px 0 rgba(128, 38, 0, .20) !important;
}

body .site-header .header-promo-copy::after,
body .site-header .header-cta::after,
body .hero-actions .button::after,
body .hero-actions .button-secondary::after,
body .promo-pop-button::after,
body .footer-legal-button::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  background: linear-gradient(110deg, transparent 0%, transparent 34%, rgba(255, 255, 255, .44) 48%, transparent 62%, transparent 100%) !important;
  transform: translateX(-150%) skewX(-12deg) !important;
  transition: transform .55s ease !important;
}

body .site-header .header-promo-copy:hover,
body .site-header .header-cta:hover,
body .hero-actions .button:hover,
body .hero-actions .button-secondary:hover,
body .promo-pop-button:hover,
body .footer-legal-button:hover {
  transform: translateY(-2px) !important;
}

body .site-header .header-promo-copy:hover,
body .hero-actions .button-secondary:hover,
body .footer-legal-button:hover {
  border-color: #ffe36c !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #1162a8 0%, #074b84 48%, #03233f 100%) !important;
  box-shadow:
    0 0 0 5px rgba(255, 197, 49, .14),
    0 22px 42px rgba(1, 15, 31, .42),
    inset 0 1px 0 rgba(255, 255, 255, .28),
    inset 0 -5px 0 rgba(255, 197, 49, .24) !important;
}

body .site-header .header-cta:hover,
body .hero-actions .button:hover,
body .promo-pop-button:hover {
  border-color: #ff8a18 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .40) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #fff09a 0%, #ffd347 30%, #ff8618 68%, #ff4b00 100%) !important;
  box-shadow:
    0 0 0 5px rgba(255, 106, 0, .18),
    0 24px 44px rgba(255, 90, 0, .40),
    inset 0 1px 0 rgba(255, 255, 255, .54),
    inset 0 -5px 0 rgba(128, 38, 0, .24) !important;
}

body .site-header .header-promo-copy:hover::after,
body .site-header .header-cta:hover::after,
body .hero-actions .button:hover::after,
body .hero-actions .button-secondary:hover::after,
body .promo-pop-button:hover::after,
body .footer-legal-button:hover::after {
  transform: translateX(150%) skewX(-12deg) !important;
}

body .site-header .header-promo-copy:focus-visible,
body .site-header .header-cta:focus-visible,
body .hero-actions .button:focus-visible,
body .hero-actions .button-secondary:focus-visible,
body .promo-pop-button:focus-visible,
body .footer-legal-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .72) !important;
  outline-offset: 4px !important;
}

@media (max-width: 640px) {
  body .site-header .header-promo-copy,
  body .site-header .header-cta,
  body .hero-actions .button,
  body .hero-actions .button-secondary,
  body .promo-pop-button,
  body .footer-legal-button {
    min-height: 50px !important;
    border-radius: 14px !important;
  }
}

body .site-footer {
  border-top: 1px solid rgba(232, 219, 190, .18) !important;
  background: #151612 !important;
  color: #ead8ad !important;
}

body .site-footer > .footer-inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  gap: 18px !important;
  text-align: center !important;
}

body .site-footer > .footer-inner + .footer-inner {
  margin-top: 18px !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(234, 216, 173, .16) !important;
}

body .site-footer .disclaimer {
  max-width: 900px !important;
  margin: 12px auto 0 !important;
  color: rgba(234, 216, 173, .82) !important;
}

body .footer-policy-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 16px !important;
  width: 100% !important;
  padding-top: 28px !important;
  border-top: 1px solid rgba(232, 219, 190, .18) !important;
}

body .footer-policy-links a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(232, 219, 190, .22) !important;
  border-radius: 10px !important;
  color: #ead8ad !important;
  text-decoration: none !important;
  font-size: 18px !important;
  line-height: 1.1 !important;
  font-weight: 400 !important;
  background: #1b1b16 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 1px 0 rgba(0, 0, 0, .55) !important;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease !important;
}

body .footer-policy-links a:hover,
body .footer-policy-links a:focus-visible {
  border-color: rgba(234, 216, 173, .44) !important;
  color: #fff1cb !important;
  background: #202018 !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 700px) {
  body .footer-policy-links {
    gap: 10px !important;
  }

  body .footer-policy-links a {
    width: 100% !important;
    min-height: 48px !important;
  }
}

body .site-footer {
  padding: 26px 0 108px !important;
  margin-bottom: 0 !important;
  border-top: 1px solid rgba(255, 197, 49, .18) !important;
  background:
    radial-gradient(circle at 78% 0%, rgba(255, 197, 49, .035), transparent 34%),
    linear-gradient(180deg, #031a33 0%, #02162c 48%, #011225 100%) !important;
  color: rgba(222, 237, 252, .86) !important;
}

body .footer-layout {
  width: min(1120px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
}

body .footer-top {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: start !important;
  gap: 34px !important;
  padding-bottom: 22px !important;
  border-bottom: 1px solid rgba(255, 197, 49, .14) !important;
}

body .footer-brand-block {
  text-align: left !important;
}

body .footer-brand-block strong {
  display: block !important;
  margin-bottom: 10px !important;
  color: #d8e8f8 !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

body .footer-brand-block .disclaimer {
  max-width: 690px !important;
  margin: 0 !important;
  color: rgba(203, 221, 240, .78) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

body .footer-main-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-end !important;
  gap: 12px !important;
  max-width: 560px !important;
  padding-top: 2px !important;
}

body .footer-main-links a {
  color: rgba(218, 234, 250, .82) !important;
  text-decoration: none !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

body .footer-main-links a:hover,
body .footer-main-links a:focus-visible {
  color: #f3d166 !important;
}

body .footer-bottom {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: start !important;
  gap: 6px !important;
  padding-top: 16px !important;
}

body .footer-policy-links {
  justify-content: flex-start !important;
  width: auto !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

body .footer-policy-links a {
  min-height: 36px !important;
  padding: 0 12px !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  border-color: rgba(142, 180, 214, .34) !important;
  color: rgba(222, 237, 252, .88) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, 0) 48%),
    linear-gradient(135deg, rgba(3, 31, 61, .98), rgba(1, 18, 37, .98)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .055),
    0 8px 18px rgba(1, 12, 25, .18) !important;
}

body .footer-policy-links a:hover,
body .footer-policy-links a:focus-visible {
  border-color: rgba(255, 197, 49, .38) !important;
  color: #f3f8ff !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, 0) 46%),
    linear-gradient(135deg, rgba(5, 41, 79, .98), rgba(2, 22, 44, .98)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 10px 22px rgba(1, 12, 25, .22) !important;
}

body .footer-copy {
  color: rgba(222, 237, 252, .78) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 400 !important;
}

@media (max-width: 900px) {
  body .footer-top {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  body .footer-main-links {
    justify-content: flex-start !important;
  }
}

@media (max-width: 640px) {
  body .site-footer {
    padding-top: 22px !important;
    padding-bottom: 188px !important;
    margin-bottom: 0 !important;
  }

  body .footer-layout {
    width: min(1120px, calc(100% - 24px)) !important;
  }

  body .footer-top {
    padding-bottom: 18px !important;
  }

  body .footer-main-links {
    gap: 10px 14px !important;
  }

  body .footer-policy-links {
    width: 100% !important;
  }

  body .footer-policy-links a {
    width: 100% !important;
    min-height: 40px !important;
  }
}

.fixed-apk-button {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 64;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  max-width: calc(100% - 32px);
  padding: 0 24px;
  overflow: hidden;
  border: 2px solid #ff6a00;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .36) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #ffe982 0%, #ffc531 30%, #ff7a00 68%, #f04400 100%);
  color: #061324;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 0 0 4px rgba(255, 106, 0, .14),
    0 20px 40px rgba(1, 15, 31, .34),
    inset 0 1px 0 rgba(255, 255, 255, .48),
    inset 0 -5px 0 rgba(128, 38, 0, .20);
  transform: translateX(-50%);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.fixed-apk-button::before {
  content: "APK";
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  background: #061324;
  color: #ffc531;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .03em;
  box-shadow: inset 0 0 0 1px rgba(255, 197, 49, .38);
}

.fixed-apk-button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, transparent 34%, rgba(255, 255, 255, .44) 48%, transparent 62%, transparent 100%);
  transform: translateX(-150%) skewX(-12deg);
  transition: transform .55s ease;
}

.fixed-apk-button:hover {
  border-color: #ff8a18;
  box-shadow:
    0 0 0 5px rgba(255, 106, 0, .18),
    0 24px 46px rgba(1, 15, 31, .42),
    inset 0 1px 0 rgba(255, 255, 255, .54),
    inset 0 -5px 0 rgba(128, 38, 0, .24);
  transform: translateX(-50%) translateY(-2px);
}

.fixed-apk-button:hover::after {
  transform: translateX(150%) skewX(-12deg);
}

.fixed-apk-button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .72);
  outline-offset: 4px;
}

body.has-promo-pop .fixed-apk-button {
  bottom: 232px;
}

@media (max-width: 640px) {
  .fixed-apk-button {
    bottom: 14px;
    min-height: 50px;
    width: calc(100% - 28px);
    padding: 0 14px;
    font-size: 15px;
    border-radius: 14px;
  }

  body.has-promo-pop .fixed-apk-button {
    bottom: 204px;
  }
}

@media (max-width: 640px) {
  .scroll-top {
    right: 14px !important;
    bottom: 82px !important;
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 880px) {
  body .site-header .header-inner {
    display: grid !important;
    grid-template-columns: minmax(112px, auto) max-content 48px !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  body .site-header .brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    order: 0 !important;
    min-width: 0 !important;
  }

  body .site-header .brand-mark {
    width: clamp(112px, 34vw, 148px) !important;
    height: 32px !important;
  }

  body .site-header .brand .brand-logo {
    max-height: 32px !important;
  }

  body .site-header .header-promo-copy {
    grid-column: 2 !important;
    grid-row: 1 !important;
    order: 0 !important;
    display: inline-flex !important;
    justify-self: center !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 42px !important;
    padding: 0 8px !important;
    gap: 7px !important;
    border-color: rgba(255, 255, 255, .18) !important;
    border-radius: 13px !important;
    font-size: clamp(11px, 2.9vw, 13px) !important;
    white-space: nowrap !important;
    box-shadow:
      0 0 0 4px rgba(255, 197, 49, .10),
      0 18px 34px rgba(1, 15, 31, .34),
      inset 0 1px 0 rgba(255, 255, 255, .22),
      inset 0 -4px 0 rgba(255, 197, 49, .16) !important;
  }

  body .site-header .header-promo-copy::before {
    width: 12px !important;
    height: 14px !important;
    flex-basis: 12px !important;
    border-width: 2px !important;
    border-radius: 3px !important;
    box-shadow: 4px -4px 0 -1px #074276, 4px -4px 0 1px currentColor !important;
  }

  body .site-header .nav-toggle {
    grid-column: 3 !important;
    grid-row: 1 !important;
    order: 0 !important;
  }

  body .site-header .header-cta {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    order: 0 !important;
  }

  body .site-header .nav {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
  }

  body .site-header .nav {
    border: 1px solid rgba(255, 197, 49, .72) !important;
    background:
      linear-gradient(180deg, #041a33, #073b73) !important;
    box-shadow:
      0 18px 34px rgba(1, 15, 31, .46),
      inset 0 0 0 1px rgba(255, 255, 255, .08) !important;
    backdrop-filter: none !important;
  }

  body .site-header .nav a {
    border-color: rgba(255, 197, 49, .36) !important;
    background:
      linear-gradient(180deg, #14487a, #052d54) !important;
    color: #ffffff !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .12),
      inset 0 -3px 0 rgba(255, 197, 49, .16) !important;
  }

  body .site-header .nav a:hover,
  body .site-header .nav a[aria-current="page"] {
    border-color: #ffc531 !important;
    background:
      linear-gradient(135deg, #ffe982 0%, #ffc531 42%, #ff7a00 100%) !important;
    color: #061324 !important;
  }
}

@media (max-width: 380px) {
  body .site-header .header-inner {
    grid-template-columns: minmax(98px, auto) max-content 46px !important;
    gap: 7px !important;
  }

  body .site-header .brand-mark {
    width: 108px !important;
    height: 30px !important;
  }

  body .site-header .brand .brand-logo {
    max-height: 30px !important;
  }

  body .site-header .header-promo-copy {
    min-height: 40px !important;
    padding: 0 7px !important;
    gap: 6px !important;
    font-size: 11px !important;
  }
}

@media (max-width: 760px) {
  html body main article .table-wrap,
  html body main article .content-narrow .table-wrap {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    border-radius: 14px !important;
  }

  html body main article .table-wrap table,
  html body main article .content-narrow .table-wrap table {
    display: table !important;
    width: 680px !important;
    min-width: 680px !important;
    max-width: none !important;
    border-collapse: collapse !important;
    table-layout: auto !important;
  }

  html body main article .table-wrap thead,
  html body main article .content-narrow .table-wrap thead {
    display: table-header-group !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    clip-path: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  html body main article .table-wrap tbody,
  html body main article .content-narrow .table-wrap tbody {
    display: table-row-group !important;
  }

  html body main article .table-wrap tr,
  html body main article .content-narrow .table-wrap tr {
    display: table-row !important;
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  html body main article .table-wrap th,
  html body main article .table-wrap td,
  html body main article .content-narrow .table-wrap th,
  html body main article .content-narrow .table-wrap td {
    display: table-cell !important;
    width: auto !important;
    min-width: 160px !important;
    max-width: none !important;
    padding: 14px 16px !important;
    border-bottom: 1px solid rgba(116, 163, 204, .26) !important;
    text-align: left !important;
    vertical-align: top !important;
    white-space: normal !important;
  }
}

@media (max-width: 760px) {
  html body main article .content-narrow > h2,
  html body main article .section .content-narrow > h2,
  html body main article > .section:not(.faq-section) .content-narrow > h2 {
    font-size: clamp(22px, 6.2vw, 27px) !important;
    line-height: 1.2 !important;
  }

  html body main article .section p,
  html body main article .section li,
  html body main article .content-narrow p,
  html body main article .content-narrow li,
  html body main article .content-narrow dd,
  html body main article > .section:not(.faq-section) .content-narrow > p {
    font-size: 15px !important;
    line-height: 1.58 !important;
  }

  html body main article .table-wrap table,
  html body main article .content-narrow .table-wrap table {
    width: 560px !important;
    min-width: 560px !important;
  }

  html body main article .table-wrap th,
  html body main article .table-wrap td,
  html body main article .content-narrow .table-wrap th,
  html body main article .content-narrow .table-wrap td {
    min-width: 132px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
    line-height: 1.38 !important;
  }

  html body main article .table-wrap th,
  html body main article .content-narrow .table-wrap th {
    font-size: 11px !important;
  }
}

@media (max-width: 760px) {
  html body .hero h1,
  html body .page-hero h1 {
    font-size: clamp(25px, 6.6vw, 30px) !important;
    line-height: 1.15 !important;
  }
}

@media (max-width: 420px) {
  html body .hero h1,
  html body .page-hero h1 {
    font-size: clamp(24px, 6.2vw, 28px) !important;
    line-height: 1.16 !important;
  }
}

html body main article .section h2,
html body main article .content-narrow > h2,
html body main article > .section:not(.faq-section) .content-narrow > h2 {
  font-size: clamp(24px, 2vw, 30px) !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
}

html body main article .section-note {
  font-size: 16px !important;
  line-height: 1.58 !important;
}

@media (max-width: 760px) {
  html body main article .section h2,
  html body main article .content-narrow > h2,
  html body main article > .section:not(.faq-section) .content-narrow > h2 {
    font-size: clamp(22px, 5.8vw, 26px) !important;
    line-height: 1.2 !important;
  }

  html body main article .section-note {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
}
