:root {
  --bg: #020813;
  --bg-2: #04101f;
  --surface: rgba(8, 18, 32, 0.74);
  --surface-strong: rgba(11, 24, 42, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(160, 192, 255, 0.18);
  --line-strong: rgba(34, 242, 207, 0.56);
  --text: #f4f8ff;
  --muted: #a9b4cb;
  --faint: #74839d;
  --teal: #29f3cf;
  --teal-2: #0fc3ff;
  --blue: #2356ff;
  --purple: #8c76ff;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.46);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1280px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(22, 246, 209, 0.16), transparent 28rem),
    radial-gradient(circle at 84% 10%, rgba(16, 155, 255, 0.13), transparent 32rem),
    radial-gradient(circle at 50% 55%, rgba(0, 66, 162, 0.16), transparent 42rem),
    linear-gradient(180deg, #020712 0%, #04101d 45%, #020914 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), rgba(0,0,0,.12) 35%, transparent 80%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(0,0,0,0), rgba(0,0,0,.32) 48%, rgba(0,0,0,.64)),
    linear-gradient(90deg, rgba(0,0,0,.62), transparent 23%, transparent 76%, rgba(0,0,0,.62));
}

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

img, svg { display: block; }

button, input { font: inherit; }

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  background: rgba(2, 8, 19, 0.82);
  border-bottom-color: rgba(147, 173, 230, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 44px);
  margin-left: auto;
  font-size: 14px;
  color: rgba(240, 247, 255, 0.82);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 28px 0 23px;
  transition: color .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
  box-shadow: 0 0 12px rgba(41, 243, 207, .7);
}

.nav a:hover,
.nav a.active { color: #fff; }

.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

main[id],
main section[id],
footer[id] {
  scroll-margin-top: 64px;
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 68px 0 36px;
  overflow: hidden;
}

.section-grid::before,
.section-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(20px);
}

.section-grid::before {
  width: 520px;
  height: 140px;
  right: 4vw;
  top: 170px;
  background: rgba(42, 232, 220, .09);
  transform: rotate(-12deg);
}

.section-grid::after {
  width: 420px;
  height: 110px;
  left: 21vw;
  top: 250px;
  background: rgba(18, 77, 255, .12);
  transform: rotate(9deg);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.74fr) minmax(560px, 1.26fr);
  align-items: center;
  gap: 26px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 6px;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: .99;
  letter-spacing: 0;
  font-weight: 820;
}

.hero h1 span {
  color: var(--teal);
  text-shadow: 0 0 30px rgba(41, 243, 207, .32);
}

.hero-text {
  max-width: 548px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  isolation: isolate;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: #001815;
  background: linear-gradient(135deg, #38ffd8 0%, #21ddb9 62%, #13b9ff 100%);
  box-shadow: 0 15px 36px rgba(41, 243, 207, .18), inset 0 1px 0 rgba(255,255,255,.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(41, 243, 207, .25), inset 0 1px 0 rgba(255,255,255,.5);
}

.btn-secondary {
  border: 1px solid rgba(183, 205, 255, .38);
  color: #eef5ff;
  background: rgba(255,255,255,.035);
}

.btn-secondary:hover {
  border-color: rgba(41, 243, 207, .48);
  background: rgba(41, 243, 207, .08);
  transform: translateY(-2px);
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin-top: 43px;
  color: #aab7cd;
  font-size: 14px;
}

.trust-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-tags svg {
  width: 18px;
  height: 18px;
  color: rgba(239, 246, 255, .9);
}

.hero-visual {
  position: relative;
  min-height: 470px;
  margin-right: calc((100vw - min(100vw, var(--container))) / -2);
  opacity: .98;
}

#waveCanvas {
  position: absolute;
  inset: -35px 0 -20px -70px;
  width: calc(100% + 120px);
  height: calc(100% + 80px);
  filter: drop-shadow(0 0 26px rgba(27, 226, 255, .28));
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  mix-blend-mode: screen;
}

.hero-glow.one {
  width: 480px;
  height: 92px;
  right: 7%;
  top: 28%;
  background: rgba(0, 241, 217, .13);
  filter: blur(30px);
  transform: rotate(6deg);
}

.hero-glow.two {
  width: 360px;
  height: 92px;
  left: 3%;
  bottom: 31%;
  background: rgba(30, 78, 255, .17);
  filter: blur(30px);
  transform: rotate(-9deg);
}

.section-pad { padding: 42px 0; }
.section-pad.compact { padding-top: 26px; }

.section-head {
  display: grid;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head.two-col {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.two-col h2 {
  max-width: 760px;
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.22;
}

.section-head.inline {
  grid-template-columns: 1fr auto;
  align-items: end;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 { letter-spacing: 0; }

.card-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.module-card,
.story-card,
.commitment-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018)),
    rgba(8, 18, 31, .76);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 145px;
  padding: 22px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.service-card::after,
.module-card::after,
.commitment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 12%, rgba(41, 243, 207, .13), transparent 35%);
  opacity: 0;
  transition: opacity .22s ease;
}

.service-card:hover,
.module-card:hover,
.commitment-card:hover,
.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(41, 243, 207, .44);
  box-shadow: 0 24px 60px rgba(0,0,0,.25), 0 0 0 1px rgba(41,243,207,.06);
}

.service-card:hover::after,
.module-card:hover::after,
.commitment-card:hover::after { opacity: 1; }

.icon-box,
.step-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--teal);
  background: rgba(41, 243, 207, .11);
  border: 1px solid rgba(41, 243, 207, .23);
  box-shadow: inset 0 0 24px rgba(41, 243, 207, .1), 0 0 28px rgba(41, 243, 207, .08);
}

.icon-box.purple {
  color: var(--purple);
  background: rgba(140, 118, 255, .13);
  border-color: rgba(140, 118, 255, .38);
}

.icon-box svg,
.step-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3,
.module-card h3,
.story-card h3,
.commitment-card h3 {
  margin: 0 0 7px;
  font-size: 18px;
  color: #fff;
}

.service-card p,
.module-card p,
.story-card p,
.commitment-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.platform-copy {
  max-width: 780px;
}

.platform-copy h2 {
  max-width: 760px;
  font-size: clamp(28px, 2.5vw, 36px);
  line-height: 1.22;
}

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

.module-card {
  position: relative;
  min-height: 188px;
  padding: 24px 22px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.module-card > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 25px;
  color: var(--teal);
  filter: drop-shadow(0 0 12px rgba(41,243,207,.2));
}

.module-card h3 { font-size: 17px; }
.module-card p { font-size: 14px; }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.story-card {
  position: relative;
  min-height: 172px;
  padding: 22px 22px 18px;
  border-radius: 11px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(3, 12, 24, .94) 0%, rgba(3, 12, 24, .82) 42%, rgba(3, 12, 24, .25) 100%);
}

.story-art {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background-size: cover;
  opacity: .72;
}

.story-card.finance .story-art {
  background:
    radial-gradient(circle at 76% 48%, rgba(41,243,207,.23), transparent 14%),
    linear-gradient(105deg, rgba(0,14,30,.9), rgba(0,65,94,.65)),
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(106, 234, 255, .12) 27px),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(106, 234, 255, .09) 33px);
}

.story-card.health .story-art {
  background:
    radial-gradient(circle at 70% 35%, rgba(121,223,255,.35), transparent 20%),
    linear-gradient(100deg, rgba(2,8,20,.88), rgba(16,95,128,.75)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.08) 36px),
    linear-gradient(180deg, rgba(72,194,255,.18), transparent);
}

.story-card.commerce .story-art {
  background:
    radial-gradient(circle at 70% 45%, rgba(255,178,82,.25), transparent 17%),
    linear-gradient(105deg, rgba(2,8,20,.88), rgba(13,50,86,.75)),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(255,255,255,.09) 30px),
    repeating-linear-gradient(90deg, transparent 0 36px, rgba(255,255,255,.08) 38px);
}

.chart-line {
  position: absolute;
  right: 26px;
  bottom: 44px;
  width: 158px;
  height: 76px;
  border-left: 1px solid rgba(41,243,207,.36);
  border-bottom: 1px solid rgba(41,243,207,.36);
}

.chart-line::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 20px;
  width: 145px;
  height: 42px;
  background: linear-gradient(135deg, transparent 0 20%, rgba(41,243,207,.9) 21% 23%, transparent 24% 34%, rgba(41,243,207,.8) 35% 37%, transparent 38% 52%, rgba(41,243,207,.9) 53% 55%, transparent 56%);
  filter: drop-shadow(0 0 10px rgba(41,243,207,.5));
}

.pulse {
  position: absolute;
  right: 64px;
  top: 48px;
  width: 170px;
  height: 95px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(111,225,255,.28), rgba(255,255,255,.04));
  border: 1px solid rgba(161,235,255,.22);
  box-shadow: 0 0 34px rgba(74,198,255,.2);
}

.pulse::before {
  content: "";
  position: absolute;
  inset: 42px 18px auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-2), transparent);
  filter: drop-shadow(0 0 8px rgba(15,195,255,.7));
}

.cart-shape {
  position: absolute;
  right: 58px;
  top: 34px;
  width: 145px;
  height: 96px;
  border: 2px solid rgba(190,226,255,.28);
  border-radius: 12px 12px 24px 24px;
  transform: skewX(-8deg);
}

.cart-shape::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 23px;
  width: 85px;
  height: 45px;
  border: 2px solid rgba(41,243,207,.48);
  border-top: 0;
  transform: skewX(-5deg);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  margin-bottom: 28px;
  border-radius: 7px;
  border: 1px solid rgba(220, 231, 255, .25);
  color: rgba(238, 245, 255, .92);
  background: rgba(0,0,0,.2);
  font-size: 12px;
}

.story-card h3,
.story-card p,
.story-card a,
.story-card .tag { position: relative; z-index: 1; }
.story-card h3 { margin-bottom: 9px; }
.story-card p { max-width: 390px; }

.center-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 34px;
  border-top: 1px dashed rgba(41, 243, 207, .58);
  opacity: .65;
}

.process-step {
  position: relative;
  text-align: center;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,243,207,.2), rgba(41,243,207,.06) 60%, rgba(255,255,255,.02));
}

.step-icon svg { width: 30px; height: 30px; }

.process-step h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 15px;
}

.process-step p {
  max-width: 145px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1020px;
  margin: 0 auto;
}

.commitment-card {
  position: relative;
  min-height: 178px;
  padding: 25px 26px 23px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.commitment-card > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--teal);
  filter: drop-shadow(0 0 12px rgba(41,243,207,.2));
}

.commitment-card h3 {
  font-size: 18px;
}

.footer {
  padding: 22px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  align-items: start;
  padding: 8px 0 30px;
}

.footer-brand p {
  margin: 16px 0 0;
  max-width: 280px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer-col h3 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 15px;
}

.footer-col a {
  display: block;
  margin: 6px 0;
  color: var(--muted);
  font-size: 13px;
  transition: color .2s ease;
}

.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 60px;
  border-top: 1px solid rgba(160, 192, 255, .12);
  color: rgba(220, 230, 247, .82);
  font-size: 13px;
}

.footer-bottom a {
  justify-self: center;
  color: inherit;
}

.footer-bottom a:hover {
  color: rgba(244, 248, 255, .95);
}

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

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

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

@media (max-width: 1160px) {
  .nav { gap: 20px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual {
    min-height: 360px;
    margin-right: 0;
    margin-top: -30px;
  }
  #waveCanvas { inset: -40px -20px; width: calc(100% + 40px); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .module-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: span 3; }
  .footer-brand p { max-width: 460px; }
}

@media (max-width: 920px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .nav-wrap { height: 68px; }
  .menu-toggle { display: block; order: 3; }
  .nav {
    position: fixed;
    top: 68px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(160, 192, 255, .18);
    border-radius: 16px;
    background: rgba(3, 10, 22, .96);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .menu-open .nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav a {
    padding: 13px 12px;
    border-radius: 10px;
  }
  .nav a::after { display: none; }
  .nav a:hover, .nav a.active { background: rgba(41,243,207,.08); color: var(--teal); }
  main[id],
  main section[id],
  footer[id] {
    scroll-margin-top: 60px;
  }
  .hero { padding-top: 42px; min-height: auto; }
  .hero h1 { max-width: 720px; }
  .hero-text { max-width: 690px; }
  .section-head.two-col, .section-head.inline { grid-template-columns: 1fr; align-items: start; }
  .stories-grid, .commitment-grid { grid-template-columns: 1fr; gap: 18px; }
  .process-line { grid-template-columns: 1fr; max-width: 520px; gap: 20px; }
  .process-line::before { display: none; }
  .process-step {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 18px;
    align-items: center;
    text-align: left;
  }
  .step-icon { grid-row: span 2; margin: 0; }
  .process-step p { max-width: none; margin: 0; }
}

@media (max-width: 680px) {
  body { background-color: var(--bg); }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand span { font-size: 15px; }
  .hero h1 { font-size: clamp(32px, 10vw, 48px); }
  .hero-text { font-size: 16px; }
  .hero-actions { gap: 12px; }
  .btn { width: 100%; min-height: 50px; }
  .trust-tags { gap: 16px; margin-top: 30px; }
  .hero-visual { min-height: 260px; }
  .service-grid, .module-row { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .story-card { min-height: 230px; }
  .tag { margin-bottom: 62px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { grid-template-columns: 1fr; justify-items: start; padding: 18px 0; }
  .footer-bottom a { justify-self: start; }
  .footer-bottom span[aria-hidden="true"] { display: none; }
}
