:root {
  --bg: #121A2E;
  --bg-deep: #121A2E;
  --panel: #1E222B;
  --panel-2: #2D323F;
  --text: #F5F7FA;
  --muted: #F5F7FA;
  --cyan: #00F5FF;
  --pink: #FF2E93;
  --purple: #8A2BE2;
  --line: rgba(245, 247, 250, .14);
  --shadow: 0 22px 70px rgba(0, 0, 0, .38);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 6%, rgba(0, 245, 255, .09), transparent 28rem),
    radial-gradient(circle at 82% 2%, rgba(255, 46, 147, .08), transparent 26rem),
    linear-gradient(180deg, var(--bg), var(--bg-deep) 48%, #1E222B);
  color: var(--text);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.ui-icon {
  flex: 0 0 auto;
  width: 1.12em;
  height: 1.12em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav .ui-icon,
.btn .ui-icon {
  width: 1.95em;
  height: 1.95em;
  padding: .42em;
  border-radius: 999px;
  transition: background-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

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

p {
  color: var(--muted);
  opacity: .82;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

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

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  clip: auto;
  background: var(--cyan);
  color: var(--bg);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  padding: 10px 0;
  background: rgba(18, 26, 46, .84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(100% - 40px, var(--container));
  min-height: 52px;
  margin-inline: auto;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
}

.brand {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 36px;
  object-fit: cover;
  border: 1px solid rgba(0, 245, 255, .35);
  border-radius: 6px;
}

.brand span {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: rgba(245, 247, 250, .86);
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.site-nav a span {
  display: inline-flex;
  align-items: center;
  height: 1em;
  line-height: 1;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan);
  border-color: rgba(0, 245, 255, .72);
  background: rgba(18, 26, 46, .52);
  box-shadow: 0 0 18px rgba(0, 245, 255, .22), inset 0 0 18px rgba(0, 245, 255, .06);
}

.site-nav a:hover .ui-icon,
.site-nav a:focus-visible .ui-icon {
  color: var(--cyan);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease, color .22s ease;
}

.nav-cta {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--bg) !important;
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(0, 245, 255, .22);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 245, 255, .36);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--bg) !important;
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 245, 255, .36);
}

.nav-cta .ui-icon,
.btn-primary .ui-icon {
  display: inline-flex;
  color: var(--cyan);
  background: var(--bg);
}

.nav-cta:hover .ui-icon,
.nav-cta:focus-visible .ui-icon,
.btn-primary:hover .ui-icon,
.btn-primary:focus-visible .ui-icon {
  display: inline-flex;
  color: var(--cyan);
  background: var(--bg);
}

.site-nav .nav-cta .ui-icon,
.site-nav .nav-cta:hover .ui-icon,
.site-nav .nav-cta:focus-visible .ui-icon {
  display: inline-flex;
  width: 1.95em;
  height: 1.95em;
  color: var(--cyan);
  background: var(--bg);
  border-radius: 999px;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.btn:hover .ui-icon,
.btn:focus-visible .ui-icon {
  box-shadow: none;
  transform: none;
}

.nav-toggle {
  grid-column: 2;
  justify-self: end;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle.is-open span:not(.sr-only):nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-open span:not(.sr-only):nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 96px 0 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 12, 24, .95) 0%, rgba(18, 26, 46, .83) 42%, rgba(18, 26, 46, .58) 100%),
    linear-gradient(180deg, rgba(7, 12, 24, .22), rgba(7, 12, 24, .94));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .72fr);
  gap: 48px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  color: var(--cyan);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(0, 245, 255, .24);
}

.hero-lead {
  max-width: 740px;
  margin-bottom: 28px;
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(245, 247, 250, .9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn-primary {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 28px rgba(0, 245, 255, .26);
}

.btn-secondary {
  border-color: rgba(245, 247, 250, .24);
  background: rgba(30, 34, 43, .64);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(0, 245, 255, .46);
  background: rgba(0, 245, 255, .08);
  color: var(--cyan);
  box-shadow: 0 0 18px rgba(0, 245, 255, .18), inset 0 0 18px rgba(0, 245, 255, .05);
  transform: translateY(-2px);
}

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

.hero-facts div,
.hero-panel,
.feature-card,
.cards-six article,
.faq-list details,
.cta-box,
.meta-list li,
.steps article {
  border: 1px solid var(--line);
  background: rgba(30, 34, 43, .72);
  border-radius: var(--radius);
}

.hero-facts div {
  padding: 14px;
}

.hero-facts dt {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--text);
  font-weight: 700;
}

.hero-panel {
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.hero-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 245, 255, .38);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .44), 0 0 34px rgba(0, 245, 255, .12);
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.hero-panel:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.05);
}

.panel-body {
  padding: 18px;
}

.panel-body strong {
  color: var(--cyan);
}

.panel-body p {
  margin: 6px 0 0;
}

.section {
  padding: 92px 0;
}

.section-panel {
  background:
    linear-gradient(180deg, rgba(45, 50, 63, .44), rgba(30, 34, 43, .18)),
    linear-gradient(90deg, rgba(255, 46, 147, .05), rgba(0, 245, 255, .05));
  border-block: 1px solid rgba(245, 247, 250, .07);
}

.section-compact {
  padding-top: 36px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .78fr);
  gap: 52px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(360px, .78fr) minmax(0, .95fr);
}

.split.reverse .section-copy {
  order: 2;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2::after {
  margin-right: auto;
  margin-left: auto;
}

.section-copy > .section-kicker,
.section-copy > h2 {
  text-align: center;
}

.section-copy > h2::after {
  margin-right: auto;
  margin-left: auto;
}

h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.18;
  letter-spacing: 0;
}

h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 3px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--purple));
  border-radius: 3px;
  box-shadow: 0 0 18px rgba(0, 245, 255, .22);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.35;
}

.meta-list,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
}

.meta-list span {
  color: var(--muted);
}

.meta-list strong {
  color: var(--text);
  text-align: right;
}

.media-frame {
  margin: 0;
}

.media-frame img,
.image-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease, filter .32s ease;
}

.media-frame:hover img,
.image-row figure:hover img {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(0, 245, 255, .38);
  box-shadow: 0 26px 82px rgba(0, 0, 0, .42), 0 0 30px rgba(0, 245, 255, .12);
  filter: saturate(1.1);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.feature-grid,
.cards-six {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.cards-six article,
.steps article {
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.feature-card::before,
.cards-six article::before,
.steps article::before,
.faq-list details::before,
.timeline li::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(135deg, rgba(0, 245, 255, .12), rgba(255, 46, 147, .08), rgba(138, 43, 226, .1));
  transition: opacity .24s ease;
}

.feature-card:hover,
.cards-six article:hover,
.steps article:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 245, 255, .4);
  background: rgba(45, 50, 63, .78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28), 0 0 28px rgba(0, 245, 255, .1);
}

.feature-card:hover::before,
.cards-six article:hover::before,
.steps article:hover::before,
.faq-list details:hover::before,
.timeline li:hover::after {
  opacity: 1;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  color: var(--cyan);
  border: 1px solid rgba(0, 245, 255, .38);
  border-radius: 6px;
  background: rgba(0, 245, 255, .08);
  transition: transform .24s ease, background-color .24s ease, color .24s ease, box-shadow .24s ease;
}

.feature-card:hover .icon {
  color: var(--bg);
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 245, 255, .34);
  transform: rotate(-4deg) scale(1.06);
}

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

.steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.steps span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--pink);
  font-weight: 900;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .74em;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0, 245, 255, .7);
}

.cards-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-six article {
  min-height: 172px;
}

.cards-six article:nth-child(2n) {
  border-color: rgba(255, 46, 147, .22);
}

.cards-six article:nth-child(3n) {
  border-color: rgba(138, 43, 226, .28);
}

.timeline {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: item;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 22px;
  padding: 18px 18px 18px 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 34, 43, .58);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background-color .24s ease;
}

.timeline li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--bg);
  font-size: 13px;
  font-weight: 900;
  background: var(--cyan);
  border-radius: 50%;
  transition: transform .24s ease, box-shadow .24s ease;
}

.timeline li:hover {
  transform: translateX(4px);
  border-color: rgba(0, 245, 255, .38);
  background: rgba(45, 50, 63, .68);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
}

.timeline li:hover::before {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 245, 255, .42);
}

.timeline time {
  color: var(--cyan);
  font-weight: 800;
}

.timeline span {
  color: var(--muted);
}

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

.faq-list details {
  padding: 0 18px;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(0, 245, 255, .34);
  background: rgba(45, 50, 63, .72);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .2);
}

.faq-list summary {
  cursor: pointer;
  position: relative;
  padding: 18px 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  transition: color .2s ease;
}

.faq-list details:hover summary,
.faq-list details[open] summary {
  color: var(--cyan);
}

.faq-list p {
  margin-bottom: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

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

.final-cta {
  padding-top: 64px;
}

.partner-links {
  position: relative;
  overflow: hidden;
  padding: 54px 0 56px;
  background:
    radial-gradient(circle at 50% 0%, rgba(0, 245, 255, .14), transparent 28rem),
    linear-gradient(90deg, rgba(18, 26, 46, .98), rgba(30, 34, 43, .96), rgba(18, 26, 46, .98));
  border-block: 1px solid rgba(0, 245, 255, .14);
}

.partner-links::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 245, 255, .05), rgba(255, 46, 147, .06), rgba(138, 43, 226, .07));
}

.partner-inner {
  position: relative;
  text-align: center;
}

.partner-inner .section-kicker {
  margin-bottom: 8px;
  text-transform: uppercase;
}

.partner-inner h2 {
  margin-bottom: 28px;
  color: var(--cyan);
}

.partner-inner h2::after {
  margin-right: auto;
  margin-left: auto;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.partner-list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  color: var(--text);
  font-weight: 800;
  border: 1px solid rgba(245, 247, 250, .16);
  border-radius: 999px;
  background: rgba(45, 50, 63, .64);
  box-shadow: inset 0 0 18px rgba(0, 245, 255, .05);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease, background-color .22s ease;
}

.partner-list a span {
  width: 12px;
  height: 12px;
  border: 3px solid rgba(245, 247, 250, .24);
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 245, 255, .42);
}

.partner-list a:hover,
.partner-list a:focus-visible {
  color: var(--cyan);
  border-color: rgba(0, 245, 255, .48);
  background: rgba(0, 245, 255, .08);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .24), 0 0 24px rgba(0, 245, 255, .13);
  transform: translateY(-3px);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(255, 46, 147, .14), rgba(0, 245, 255, .12)),
    rgba(30, 34, 43, .86);
}

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

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: rgba(11, 16, 32, .9);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 50%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: min(100% - 40px, var(--container));
    max-height: calc(100vh - 92px);
    padding: 12px;
    overflow-y: auto;
    background: rgba(18, 26, 46, .98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .48), inset 0 0 0 1px rgba(0, 245, 255, .08);
    transform: translateX(-50%);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
    width: 100%;
    height: 42px;
    padding: 0 12px;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
  }

  .nav-cta {
    margin-top: 6px;
    justify-content: center !important;
    height: 48px !important;
    color: var(--bg) !important;
    background: var(--cyan);
    box-shadow: 0 0 34px rgba(0, 245, 255, .26);
  }

  .hero {
    min-height: auto;
    padding-top: 84px;
  }

  .hero-grid,
  .split,
  .split.reverse {
    grid-template-columns: 1fr;
  }

  .split.reverse .section-copy {
    order: initial;
  }

  .feature-grid,
  .cards-six {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand span {
    max-width: 210px;
    font-size: 14px;
  }

  .hero {
    padding-bottom: 46px;
  }

  .hero-bg {
    object-position: 23% center;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-facts,
  .feature-grid,
  .cards-six,
  .image-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-box,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .meta-list li,
  .timeline li {
    grid-template-columns: 1fr;
  }

  .meta-list li {
    display: grid;
  }

  .meta-list strong {
    text-align: left;
  }

  .timeline li {
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .site-nav {
    top: 68px;
    width: min(100% - 24px, var(--container));
    max-height: calc(100vh - 84px);
    padding: 10px;
  }

  .site-nav a {
    height: 40px;
    font-size: 14px;
  }

  .nav-cta {
    height: 46px !important;
  }
}

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