:root {
  color-scheme: dark;
  --page: #041a3d;
  --section: #063f87;
  --section-deep: #03122d;
  --ink: #ffffff;
  --muted: #e5f7ff;
  --quiet: #b9dcf5;
  --blue: #21c8ff;
  --blue-soft: #a7edff;
  --blue-deep: #0756b9;
  --line: rgba(118, 221, 255, 0.66);
  --line-strong: rgba(189, 244, 255, 0.9);
  --button: linear-gradient(180deg, #28d4ff 0%, #126ee8 54%, #061f82 100%);
  --button-dark: linear-gradient(180deg, #0d5ca8 0%, #041944 100%);
  --header-height: 72px;
  --max-width: 1260px;
  --content-width: 1160px;
  --section-pad: 64px;
  --shadow: 0 0 26px rgba(25, 133, 255, 0.34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -12%, rgba(88, 217, 255, 0.44), transparent 38%),
    linear-gradient(180deg, rgba(6, 68, 146, 0.74), rgba(2, 17, 45, 0.92) 42%, rgba(0, 7, 24, 0.98)),
    url("assets/99luck-body-bg.jpg") center top / cover fixed,
    var(--page);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.is-nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--blue-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow: 0 0 16px rgba(34, 150, 255, 0.36);
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 23px;
}

p,
li,
td,
summary {
  color: var(--muted);
}

strong {
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--blue);
  color: #00101f;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  min-height: var(--header-height);
  background: linear-gradient(180deg, rgba(5, 65, 138, 0.96), rgba(2, 19, 55, 0.96));
  box-shadow: 0 8px 26px rgba(0, 59, 126, 0.48);
}

.header-inner {
  width: min(100% - 40px, var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 160px;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0 42%, #20d8ff 42% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(53, 184, 255, 0.86),
    0 0 28px rgba(53, 184, 255, 0.5);
}

.brand-mark::first-letter {
  color: var(--blue);
}

.primary-nav {
  justify-self: center;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.primary-nav a {
  color: #ffffff;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active {
  color: var(--blue);
  text-shadow: 0 0 12px rgba(53, 184, 255, 0.6);
}

.account-actions {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px;
  justify-content: end;
}

.account-actions .button {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 12px;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(92, 184, 255, 0.7);
  border-radius: 8px;
  padding: 10px 22px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button.solid {
  background: var(--button);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 0 18px rgba(43, 139, 255, 0.28);
}

.button.ghost {
  background: var(--button-dark);
}

.button.large {
  min-width: 250px;
  min-height: 58px;
  font-size: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 18px rgba(53, 184, 255, 0.56);
}

.button:hover,
.button:focus-visible {
  border-color: var(--line-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 26px rgba(53, 184, 255, 0.58);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #05080f;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-soft);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

body.is-nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

body.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  background: #052f75;
}

.hero-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hero-banners img {
  width: 100%;
  height: auto;
  aspect-ratio: 1774 / 887;
  object-fit: cover;
  background: #020614;
}

.hero-intro {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 42px 20px 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 209, 255, 0.26), transparent 42%),
    linear-gradient(180deg, rgba(4, 60, 136, 0.96), rgba(1, 16, 50, 0.98)),
    #062866;
  text-align: center;
}

.hero-intro h1 {
  max-width: 1120px;
}

.hero-intro p {
  max-width: 1180px;
  color: #ffffff;
  font-weight: 700;
}

.section-inner {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
}

section:not(.hero) {
  padding: var(--section-pad) 0;
}

.split-section,
.portfolio-section,
.steps-section,
.faq-section {
  background:
    radial-gradient(circle at 16% 0%, rgba(70, 207, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(7, 72, 150, 0.9), rgba(2, 18, 54, 0.96)),
    url("assets/99luck-body-bg.jpg") center / cover fixed;
}

.center-section,
.promo-section,
.table-section {
  background:
    radial-gradient(circle at 82% 0%, rgba(80, 223, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #073b86, #03143a);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: 42px;
}

.split-layout.reverse {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1.14fr);
}

.split-layout.reverse .feature-image {
  order: 2;
}

.feature-image {
  margin: 0;
}

.feature-image img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-section .feature-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.steps-section .feature-image img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #02040a;
}

.split-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.split-copy p,
.split-copy li {
  color: #ffffff;
  font-weight: 700;
}

.split-copy ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  text-align: left;
}

.center-section .section-inner,
.portfolio-section .section-inner,
.promo-section .section-inner,
.table-section .section-inner,
.faq-section .section-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.center-section p,
.portfolio-section > .section-inner > p,
.promo-section > .section-inner > p,
.table-section > .section-inner > p {
  max-width: 1180px;
  color: #ffffff;
  font-weight: 700;
}

.wide-art {
  width: min(760px, 100%);
  margin: 18px auto 0;
}

.wide-art img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(53, 184, 255, 0.32));
}

.features-section {
  background: #02050d;
}

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

.feature-panel {
  min-height: 245px;
  display: grid;
  align-content: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(9, 92, 178, 0.86), rgba(2, 20, 62, 0.94));
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.feature-panel p {
  font-weight: 700;
}

.down-arrow {
  width: 0;
  height: 0;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-top: 18px solid var(--blue-soft);
  filter: drop-shadow(0 0 12px rgba(53, 184, 255, 0.72));
}

.content-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
  margin-top: 12px;
  align-items: stretch;
  text-align: left;
}

.content-columns article {
  display: flex;
  flex-direction: column;
  justify-items: start;
  gap: 18px;
  min-height: 100%;
}

.content-columns h3 {
  width: 100%;
  text-align: center;
}

.content-columns ul {
  display: grid;
  align-content: start;
  gap: 8px;
  margin: 0;
  padding-left: 24px;
}

.content-columns .button {
  justify-self: center;
  align-self: center;
  margin-top: auto;
  width: min(220px, 100%);
  min-width: 220px;
  min-height: 54px;
}

.portfolio-media-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
  margin: 4px 0 24px;
  padding: 0;
}

.portfolio-media-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(53, 184, 255, 0.66);
  border-radius: 10px;
  background: #020614;
  box-shadow: var(--shadow);
}

.portfolio-media-grid figure:first-child {
  justify-self: stretch;
  align-self: stretch;
}

.portfolio-media-grid figure:last-child {
  justify-self: stretch;
  align-self: stretch;
  margin-top: 0;
}

.portfolio-media-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center top;
}

.promo-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.promo-card {
  overflow: hidden;
  display: grid;
  border: 2px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(7, 57, 132, 0.92), rgba(2, 18, 54, 0.98));
  box-shadow: var(--shadow);
}

.promo-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.promo-card div {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 24px 20px;
}

.promo-card p {
  color: var(--muted);
  font-weight: 700;
}

.promo-card .button {
  min-width: 220px;
}

.table-wrap {
  width: min(1120px, 100%);
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: rgba(2, 35, 87, 0.72);
  box-shadow: none;
}

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

th,
td {
  padding: 17px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 14px;
  font-weight: 750;
  text-align: left;
}

th:last-child,
td:last-child {
  border-right: 0;
}

thead th {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.26);
  font-weight: 900;
}

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

td {
  color: #ffffff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 40px;
}

.faq-visual {
  margin: 0;
}

.faq-visual img {
  width: 100%;
  border: 1px solid rgba(53, 184, 255, 0.66);
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.faq-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.faq-copy h2 {
  text-align: left;
}

.faq-list {
  width: min(620px, 100%);
  display: grid;
  gap: 12px;
  margin-top: 6px;
  text-align: left;
}

.faq-list details {
  border: 2px solid var(--line-strong);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(6, 55, 133, 0.92), rgba(2, 17, 52, 0.98));
  padding: 18px 20px;
}

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

.faq-list p {
  margin-top: 12px;
}

.provider-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 75, 158, 0.98), rgba(2, 18, 54, 0.98));
  padding: 38px 0 44px;
}

.provider-section h2 {
  margin-bottom: 18px;
  color: var(--blue-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  text-align: center;
  text-shadow: 0 0 12px rgba(53, 184, 255, 0.48);
}

.provider-carousel {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(53, 184, 255, 0.24);
  border-bottom: 1px solid rgba(53, 184, 255, 0.24);
  padding: 12px 0;
}

.provider-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: providerLoop 82s linear infinite;
  will-change: transform;
}

.provider-track:hover {
  animation-play-state: paused;
}

.provider-track img {
  width: 124px;
  height: 124px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #063a83;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(53, 184, 255, 0.12),
    0 0 18px rgba(53, 184, 255, 0.24);
}

@keyframes providerLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.blue-standard-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 52%, rgba(99, 224, 255, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(8, 84, 172, 0.98), rgba(2, 18, 56, 0.98));
}

.blue-standard-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 18, 52, 0.72), rgba(8, 88, 181, 0.34), rgba(1, 18, 52, 0.72)),
    rgba(4, 41, 100, 0.32);
  content: "";
}

.blue-standard-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.blue-standard-heading {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.blue-standard-logo {
  color: #ffffff;
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(53, 184, 255, 0.9),
    0 0 28px rgba(53, 184, 255, 0.58);
}

.blue-standard-heading h2 {
  color: #ffd77a;
  font-size: 38px;
  text-shadow: 0 0 18px rgba(53, 184, 255, 0.34), 0 2px 0 rgba(0, 0, 0, 0.6);
}

.blue-standard-heading p {
  max-width: 1040px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.blue-standard-heading strong,
.blue-standard-panel strong {
  color: var(--blue);
}

.blue-standard-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr);
  align-items: start;
  gap: 30px;
}

.blue-standard-visual {
  margin: 0;
}

.blue-standard-visual img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 18px rgba(53, 184, 255, 0.42))
    drop-shadow(0 24px 38px rgba(0, 0, 0, 0.58));
}

.blue-standard-panels {
  display: grid;
  gap: 12px;
}

.blue-standard-panel {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(53, 184, 255, 0.9);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(7, 76, 160, 0.92), rgba(2, 24, 67, 0.94));
  padding: 15px 18px;
  box-shadow:
    inset 0 0 0 1px rgba(121, 216, 255, 0.1),
    0 0 22px rgba(36, 157, 255, 0.28);
}

.blue-standard-panel::before,
.blue-standard-panel::after {
  position: absolute;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(119, 221, 255, 0.8), transparent);
  content: "";
}

.blue-standard-panel::before {
  top: -1px;
}

.blue-standard-panel::after {
  bottom: -1px;
}

.panel-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(134, 220, 255, 0.9);
  border-radius: 999px;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 0 16px rgba(53, 184, 255, 0.64), inset 0 0 14px rgba(53, 184, 255, 0.18);
}

.blue-standard-panel h3 {
  margin-bottom: 6px;
  color: #ffd77a;
  font-size: 21px;
}

.blue-standard-panel p,
.blue-standard-panel li {
  color: #ffffff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.34;
}

.blue-standard-panel ul {
  display: grid;
  gap: 4px;
  margin: 8px 0 0;
  padding-left: 20px;
}

.blue-standard-badges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 0;
}

.blue-standard-badges div {
  min-height: 68px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(53, 184, 255, 0.66);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(8, 89, 178, 0.94), rgba(2, 22, 67, 0.98));
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(53, 184, 255, 0.22);
}

.blue-standard-badges span {
  color: #ffffff;
  font-size: 20px;
}

.site-footer {
  border-top: 3px solid rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, #052f73, #02112e);
}

.footer-provider-strip {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  padding: 26px 0 8px;
}

.footer-provider-strip > img {
  width: min(100%, 1180px);
  max-height: 150px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(53, 184, 255, 0.28))
    saturate(1.12)
    brightness(1.06);
}

.footer-inner h2 {
  display: grid;
  color: var(--blue-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  text-shadow: 0 0 12px rgba(53, 184, 255, 0.36);
}

.footer-inner {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.68fr) minmax(420px, 1.22fr);
  gap: 46px;
  padding: 28px 0 36px;
}

.footer-brand,
.footer-partner,
.footer-social {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-social {
  gap: 8px;
}

.footer-logo {
  font-size: 64px;
}

.footer-brand p {
  max-width: 390px;
  color: #ffffff;
  font-weight: 700;
}

.partner-loop {
  width: min(250px, 100%);
  overflow: hidden;
  border: 1px solid rgba(53, 184, 255, 0.82);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(8, 82, 165, 0.95), rgba(2, 18, 54, 0.98));
  padding: 10px 0;
  box-shadow: 0 0 18px rgba(53, 184, 255, 0.28);
  animation: partnerPulse 1.8s ease-in-out infinite;
}

.partner-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 16px;
  animation: partnerLoop 18s linear infinite;
}

.partner-loop:hover .partner-track {
  animation-play-state: paused;
}

.partner-track img {
  width: 148px;
  height: 74px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(53, 184, 255, 0.28));
}

@keyframes partnerLoop {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-812px, 0, 0);
  }
}

@keyframes partnerPulse {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(53, 184, 255, 0.28);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 0 28px rgba(53, 184, 255, 0.72);
    transform: translateY(-1px);
  }
}

.footer-social a {
  display: block;
}

.footer-social img {
  width: 100%;
  max-height: 126px;
  border: 0;
  border-radius: 0;
  aspect-ratio: 1374 / 322;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 0 14px rgba(53, 184, 255, 0.2));
}

.footer-bottom {
  width: min(100% - 44px, var(--max-width));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 0 32px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}

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

@media (max-width: 1100px) {
  :root {
    --header-height: 84px;
  }

  .header-inner {
    grid-template-columns: 180px 1fr auto;
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    width: auto;
    display: grid;
    gap: 0;
    background: linear-gradient(180deg, #05458f, #021944);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid var(--line);
    padding: 10px 22px 18px;
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  body.is-nav-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 12px 0;
  }

  .account-actions {
    width: auto;
    margin-left: auto;
  }

  .split-layout,
  .split-layout.reverse,
  .blue-standard-grid,
  .content-columns,
  .faq-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .feature-image {
    order: 0;
  }

  .faq-copy,
  .faq-copy h2 {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 29px;
  }

  h2 {
    font-size: 27px;
  }

  h3 {
    font-size: 21px;
  }

  .header-inner,
  .section-inner,
  .footer-provider-strip,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, var(--max-width));
  }

  .header-inner {
    grid-template-columns: 1fr minmax(96px, 118px) auto;
    gap: 8px;
  }

  .brand-mark {
    font-size: 30px;
  }

  .account-actions {
    display: grid;
    width: auto;
  }

  .account-actions .button {
    min-height: 34px;
    padding: 8px 10px;
    font-size: 11px;
  }

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

  .hero-banners img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1774 / 887;
  }

  .hero-intro {
    padding: 34px 16px 44px;
  }

  .button,
  .button.large {
    width: 100%;
    min-width: 0;
  }

  section:not(.hero) {
    padding: 54px 0;
  }

  .split-layout,
  .split-layout.reverse {
    gap: 26px;
  }

  .blue-standard-heading h2 {
    font-size: 32px;
  }

  .blue-standard-heading p {
    font-size: 16px;
  }

  .blue-standard-grid {
    gap: 22px;
  }

  .blue-standard-visual img {
    max-height: 520px;
  }

  .blue-standard-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 18px 16px;
  }

  .blue-standard-panel ul {
    text-align: left;
  }

  .blue-standard-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-columns {
    gap: 34px;
  }

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

  .portfolio-media-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .portfolio-media-grid figure:first-child,
  .portfolio-media-grid figure:last-child {
    justify-self: stretch;
    align-self: stretch;
    margin-top: 0;
  }

  .promo-card:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

  .promo-card div {
    min-height: 230px;
  }

  .provider-section {
    padding: 42px 0 48px;
  }

  .provider-track {
    gap: 8px;
    animation-duration: 64s;
  }

  .provider-track img {
    width: 112px;
    height: 112px;
  }

  .footer-provider-strip > img {
    max-height: 110px;
  }

  .partner-loop {
    width: min(260px, 100%);
    justify-self: center;
  }

  .partner-track img {
    width: 150px;
    height: 72px;
  }

  .footer-social img {
    max-width: 520px;
    max-height: 120px;
    margin: 0 auto;
  }

  table {
    min-width: 0;
  }

  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  thead th {
    border-bottom: 1px solid rgba(128, 209, 255, 0.28);
  }

  tr {
    border-bottom: 1px solid rgba(128, 209, 255, 0.28);
  }

  tbody tr:last-child {
    border-bottom: 0;
  }

  th,
  td {
    border-bottom: 0;
    padding: 11px 14px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand-mark {
    font-size: 26px;
  }

  .provider-track img {
    width: 96px;
    height: 96px;
  }

  .blue-standard-logo {
    font-size: 40px;
  }

  .blue-standard-heading h2 {
    font-size: 28px;
  }

  .blue-standard-badges {
    grid-template-columns: 1fr;
  }
}
