: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;
  }
}

@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: #eef8ff;
  --bg-soft: #d7ecff;
  --panel: #ffffff;
  --panel-2: #cfe8ff;
  --line: #79b8ff;
  --text: #071b2f;
  --muted: #375572;
  --gold: #ffc531;
  --gold-2: #fff06a;
  --orange: #ff7a1a;
  --red: #d9342b;
  --green: #20b486;
  --green-soft: #d5f6ea;
  --asphalt: #061829;
  --button-ink: #07111f;
  --button-hot: #e63a24;
  --button-fire: #ff7a1a;
  --button-sun: #ffc531;
  --button-lime: #62d6ff;
  --shadow: 0 20px 48px rgba(5, 34, 70, .18);
}

body {
  background:
    radial-gradient(circle at 16% 10%, rgba(98, 214, 255, .18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 197, 49, .18), transparent 24%),
    linear-gradient(180deg, #f7fcff 0%, var(--bg) 54%, #dcefff 100%);
}

.site-header {
  border-bottom-color: rgba(44, 122, 202, .35);
  background: rgba(232, 246, 255, .94);
  box-shadow: 0 10px 30px rgba(5, 34, 70, .10);
}

.brand-mark {
  background: linear-gradient(135deg, #073b73 0%, #0d83c7 54%, #ffc531 100%);
  box-shadow: 0 12px 26px rgba(13, 92, 161, .28);
}

.nav {
  border-color: rgba(67, 148, 232, .42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94) 0%, rgba(209, 234, 255, .88) 50%, rgba(255, 243, 174, .72) 100%);
  box-shadow: 0 14px 32px rgba(5, 34, 70, .13), inset 0 0 0 1px rgba(255, 255, 255, .68);
}

.nav a {
  --nav-accent: #0d83c7;
  color: #08243f;
  border-color: rgba(13, 131, 199, .24);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(223, 248, 255, .68));
  box-shadow: inset 0 -3px 0 rgba(13, 131, 199, .18), 0 6px 14px rgba(5, 34, 70, .06);
}

.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: #0d83c7;
}

.nav a::after {
  background: linear-gradient(90deg, #62d6ff, #0d83c7);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #061829;
  background: #ffffff;
  box-shadow: inset 0 -5px 0 var(--nav-accent), 0 10px 22px rgba(5, 34, 70, .13);
}

.header-promo-copy {
  min-width: 190px;
  border-color: #0b5f9c;
  background: linear-gradient(135deg, #dff8ff 0%, #62d6ff 48%, #0d83c7 100%);
  color: #061829;
  box-shadow: 0 14px 28px rgba(13, 131, 199, .24), inset 0 0 0 2px rgba(255, 255, 255, .52);
}

.header-promo-copy:hover,
.header-promo-copy.is-copied {
  border-color: #ffc531;
  background: linear-gradient(135deg, #fff06a 0%, #62d6ff 48%, #0d83c7 100%);
  color: #061829;
}

.header-cta,
.button,
.promo-pop-button {
  border-color: #f06a14;
  background: linear-gradient(135deg, #fff06a 0%, #ffc531 40%, #ff7a1a 74%, #e63a24 100%);
  color: #07111f;
}

.button-secondary {
  border-color: rgba(13, 131, 199, .52);
  background: linear-gradient(135deg, #ffffff 0%, #dff8ff 52%, #cfe8ff 100%);
  color: #08243f;
}

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

.scroll-top,
.nav-toggle,
.promo-pop-close {
  border-color: #06345d;
  background: linear-gradient(135deg, #ffffff 0%, #62d6ff 50%, #ffc531 100%);
  color: #061829;
}

.promo-pop {
  border-color: rgba(255, 240, 106, .92);
  background:
    linear-gradient(115deg, rgba(6, 24, 41, .32) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, #06345d 0%, #0d83c7 38%, #ff7a1a 74%, #ffc531 100%);
  box-shadow: 0 26px 58px rgba(5, 34, 70, .30), inset 0 0 0 1px rgba(255, 255, 255, .24);
}

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

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

.promo-pop-body strong {
  background: rgba(6, 24, 41, .38);
  border-color: rgba(255, 240, 106, .65);
}

.hero {
  background:
    radial-gradient(circle at 78% 20%, rgba(98, 214, 255, .34), transparent 28%),
    radial-gradient(circle at 18% 70%, rgba(255, 197, 49, .22), transparent 27%),
    linear-gradient(180deg, #dff4ff 0%, #f7fcff 48%, #eaf6ff 100%);
}

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

.eyebrow,
.tag {
  color: #0b5f9c;
}

.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(67, 148, 232, .42);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(226, 244, 255, .72));
  box-shadow: 0 18px 42px rgba(5, 34, 70, .10);
}

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

.section:nth-of-type(3n) .content-narrow {
  border-top-color: #0d83c7;
  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, 122, 26, .32);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 240, 106, .22));
}

.section:nth-of-type(odd):not(.section-soft) {
  background:
    linear-gradient(90deg, rgba(98, 214, 255, .12), 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, 197, 49, .10), 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, #dff4ff 0%, #f7fcff 54%, #eaf6ff 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(67, 148, 232, .44);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(207, 232, 255, .62));
  box-shadow: 0 18px 42px rgba(5, 34, 70, .12);
}

thead th {
  background: #06345d;
  color: #ffffff;
}

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

details summary {
  color: #06345d;
}

.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(67, 148, 232, .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(5, 34, 70, .08);
}

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(67, 148, 232, .34);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 10px 24px rgba(5, 34, 70, .08);
}

main .faq-section details[open] {
  border-color: rgba(13, 131, 199, .48);
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(226, 244, 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(13, 131, 199, .42);
  border-radius: 50%;
  background: rgba(226, 244, 255, .90);
  color: #06345d;
  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(67, 148, 232, .26);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(226, 244, 255, .58));
  box-shadow: 0 16px 34px rgba(5, 34, 70, .10);
  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, #071b2f 0%, #061829 100%);
}

@media (max-width: 980px) {
  .nav {
    background: linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(209, 234, 255, .96) 54%, rgba(255, 243, 174, .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 {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  thead {
    display: none;
  }

  tr {
    margin: 0 0 12px;
    border: 1px solid rgba(67, 148, 232, .28);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 10px 22px rgba(5, 34, 70, .07);
  }

  td {
    padding: 13px 14px;
    border: 0;
    border-bottom: 1px solid rgba(67, 148, 232, .18);
    background: transparent;
  }

  td:first-child {
    color: var(--text);
    font-weight: 800;
    background: rgba(226, 244, 255, .62);
  }

  td:last-child {
    border-bottom: 0;
  }
}

@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;
  }
}
