:root {
  --bg: #120d1e;
  --bg-2: #181127;
  --panel: #211735;
  --panel-2: #2a1a45;
  --primary: #5b259f;
  --primary-2: #7f39d5;
  --accent: #00ffcc;
  --accent-2: #72ffe4;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f4ff;
  --muted: #c8bedd;
  --soft: #9586ad;
  --danger: #e24f71;
  --gold: #ffd166;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(91, 37, 159, 0.28), transparent 34rem),
    linear-gradient(180deg, #120d1e 0%, #171022 42%, #0d0b14 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

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

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

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

.icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  padding: 2px;
  border-radius: 50%;
  box-sizing: content-box;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 13, 30, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(0, 255, 204, 0.32);
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.16);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: #ece6fb;
  font-size: 14px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color 160ms ease, color 160ms ease, text-shadow 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.main-nav a:hover {
  color: var(--accent);
  border-color: rgba(0, 255, 204, 0.78);
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(0, 255, 204, 0.16), 0 0 16px rgba(0, 255, 204, 0.16);
  text-shadow: 0 0 14px rgba(0, 255, 204, 0.72);
}

.main-nav a:hover .icon,
.btn:hover .icon {
  background: rgba(0, 255, 204, 0.14);
  box-shadow: 0 0 0 1px rgba(0, 255, 204, 0.42), 0 0 14px rgba(0, 255, 204, 0.34);
  transform: scale(1.05);
}

.main-nav .nav-cta {
  margin-left: 8px;
  color: #081611;
  font-weight: 800;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(0, 255, 204, 0.2);
}

.main-nav .nav-cta:hover {
  color: #06110e;
  border-color: rgba(255, 255, 255, 0.85);
  background: var(--accent);
  box-shadow: 0 0 22px rgba(0, 255, 204, 0.38);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.main-nav .nav-cta:hover .icon,
.btn.primary:hover .icon {
  background: rgba(18, 13, 30, 0.13);
  box-shadow: 0 0 0 1px rgba(18, 13, 30, 0.18), 0 0 14px rgba(255, 255, 255, 0.32);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 64px) 64px;
  isolation: isolate;
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(18, 13, 30, 0.94) 0%, rgba(18, 13, 30, 0.78) 48%, rgba(18, 13, 30, 0.28) 100%),
    linear-gradient(180deg, rgba(18, 13, 30, 0.15) 0%, rgba(18, 13, 30, 0.96) 94%);
}

.hero-content {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 22px auto 0;
  color: #e5ddf5;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #071310;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(0, 255, 204, 0.24);
}

.btn.secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin: 36px auto 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(18, 13, 30, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.hero-stats li:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 204, 0.55);
  background: rgba(33, 23, 53, 0.82);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), 0 0 24px rgba(0, 255, 204, 0.12);
}

.hero-stats strong {
  display: block;
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 36px));
  margin: -28px auto 0;
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-links a {
  min-height: 96px;
  padding: 18px;
  background: rgba(33, 23, 53, 0.96);
  color: #eee8fb;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.quick-links a:hover {
  color: var(--accent);
  background: rgba(42, 26, 69, 0.98);
  transform: translateY(-2px);
  box-shadow: inset 0 -2px 0 rgba(0, 255, 204, 0.62);
}

.quick-links span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 13px;
}

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p:not(.section-kicker),
.section-copy p,
.system-card p,
.feature-grid p,
.timeline p,
.guide-panel li,
.update-list p,
.faq p,
.cta-band p,
.site-footer p,
figcaption {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-list span {
  padding: 8px 12px;
  border: 1px solid rgba(0, 255, 204, 0.24);
  border-radius: 999px;
  color: #dffff8;
  background: rgba(0, 255, 204, 0.08);
  font-size: 14px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.tag-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 204, 0.65);
  background: rgba(0, 255, 204, 0.15);
}

.feature-figure {
  margin: 0;
}

.feature-figure img,
.system-card img,
.guide-panel img,
.gallery figure img {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #08060f;
}

.feature-figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 10px;
  font-size: 14px;
}

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

.system-card,
.feature-grid article,
.guide-panel,
.update-list article,
.faq details {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.system-card {
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.system-card:hover,
.feature-grid article:hover,
.update-list article:hover,
.faq details:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 255, 204, 0.45);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26), 0 0 26px rgba(91, 37, 159, 0.2);
}

.system-card:hover {
  background:
    linear-gradient(180deg, rgba(0, 255, 204, 0.07), rgba(255, 255, 255, 0.025)),
    var(--panel);
}

.system-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  transition: transform 260ms ease, filter 260ms ease;
}

.system-card:hover img,
.gallery figure:hover img,
.feature-figure:hover img,
.guide-panel:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.05);
}

.system-card h3,
.system-card p {
  padding-inline: 18px;
}

.system-card h3 {
  margin-top: 18px;
}

.system-card p {
  margin-bottom: 20px;
}

.guide-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(91, 37, 159, 0.24), transparent 54%),
    rgba(255, 255, 255, 0.02);
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

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

.timeline li {
  position: relative;
  padding: 24px 24px 24px 74px;
  border-left: 2px solid rgba(0, 255, 204, 0.35);
  background: rgba(18, 13, 30, 0.54);
  border-radius: var(--radius);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.timeline li:hover {
  transform: translateX(4px);
  border-left-color: var(--accent);
  background: rgba(33, 23, 53, 0.72);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.timeline li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: #071310;
  font-weight: 900;
  background: var(--accent);
}

.guide-panel {
  position: sticky;
  top: 96px;
  padding: 18px;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.guide-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 204, 0.42);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.guide-panel img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  margin-bottom: 18px;
  overflow: hidden;
}

.guide-panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

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

.feature-grid article {
  min-height: 230px;
  padding: 22px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.feature-grid article:hover {
  background:
    linear-gradient(180deg, rgba(91, 37, 159, 0.24), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.feature-grid article:hover .card-icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 0 22px rgba(0, 255, 204, 0.28);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: #06120f;
  font-weight: 900;
  background: var(--accent);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.update-list article {
  position: relative;
  min-height: 176px;
  padding: 22px;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.update-list article::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--accent), var(--primary-2));
  transition: width 180ms ease, opacity 180ms ease;
}

.update-list article:hover::after {
  width: 7px;
  opacity: 0.95;
}

.update-list time {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.gallery {
  position: relative;
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 390px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery figure {
  margin: 0;
  scroll-snap-align: start;
}

.gallery figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.gallery figure:hover img {
  border-color: rgba(0, 255, 204, 0.48);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

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

.faq details {
  padding: 0;
  overflow: hidden;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.faq summary {
  min-height: 62px;
  padding: 18px 48px 18px 18px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  position: relative;
  transition: color 180ms ease, background 180ms ease;
}

.faq details:hover summary {
  color: var(--accent);
  background: rgba(0, 255, 204, 0.045);
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 16px;
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0;
  padding: 0 18px 20px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 80px;
  padding: 34px;
  border: 1px solid rgba(0, 255, 204, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(0, 255, 204, 0.13), rgba(91, 37, 159, 0.32)),
    var(--panel);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.cta-band:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 204, 0.52);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.38), 0 0 28px rgba(0, 255, 204, 0.14);
}

.cta-band h2 {
  font-size: clamp(25px, 3vw, 36px);
}

.friend-links {
  position: relative;
  overflow: hidden;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 80px;
  padding: 48px 28px 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 0%, rgba(91, 37, 159, 0.42), transparent 28rem),
    linear-gradient(90deg, rgba(18, 13, 30, 0.98), rgba(91, 37, 159, 0.22), rgba(18, 13, 30, 0.98)),
    var(--bg);
}

.friend-links h2 {
  margin: 0 0 26px;
  text-align: center;
  font-size: clamp(26px, 3.4vw, 42px);
}

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

.friend-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(0, 255, 204, 0.22);
  border-radius: 999px;
  color: #f6efff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.friend-link-list a span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(0, 255, 204, 0.68);
}

.friend-link-list a:hover {
  transform: translateY(-3px);
  color: var(--accent);
  border-color: rgba(0, 255, 204, 0.62);
  background: rgba(0, 255, 204, 0.1);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25), 0 0 22px rgba(0, 255, 204, 0.12);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  background: #0b0911;
}

.site-footer p {
  max-width: 760px;
  margin: 8px 0 0;
}

.site-footer a {
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(18, 13, 30, 0.98);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 12px 14px;
  }

  .main-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

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

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

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

  .quick-links,
  .content-grid,
  .feature-grid,
  .faq-list,
  .update-list,
  .guide-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .guide-panel {
    position: static;
  }

  .feature-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

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

  .hero {
    min-height: 720px;
    padding: 96px 18px 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 13, 30, 0.55) 0%, rgba(18, 13, 30, 0.96) 72%),
      linear-gradient(90deg, rgba(18, 13, 30, 0.82), rgba(18, 13, 30, 0.52));
  }

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

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

  .quick-links {
    margin-top: 0;
  }

  .quick-links a {
    min-height: 76px;
  }

  .section {
    width: min(var(--max), calc(100% - 28px));
    padding: 64px 0;
  }

  .guide-section {
    padding-inline: 14px;
  }

  .timeline li {
    padding: 72px 18px 20px;
  }

  .timeline li::before {
    left: 18px;
    top: 18px;
  }

  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    padding: 24px;
  }

  .friend-links {
    padding: 38px 18px 42px;
  }

  .friend-link-list {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }
}

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