:root {
  --ink: #101520;
  --muted: #657083;
  --line: #dce2eb;
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue: #2456d9;
  --cyan: #1aaec0;
  --violet: #6654d8;
  --coral: #ef9b88;
  --nav-height: 78px;
  font-family: "Avenir Next", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  overflow-x: clip;
}

.home-page {
  height: 100svh;
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1220px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 600;
}

.nav-account {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 152px;
  justify-content: flex-end;
}

.auth-buttons {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

[data-auth-guest][hidden],
[data-auth-user][hidden] {
  display: none !important;
}

.auth-link,
.auth-join,
.account-trigger {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.auth-link {
  color: #303746;
}

.auth-join {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(36, 86, 217, 0.18);
}

.account-menu {
  position: relative;
}

.account-trigger {
  max-width: 220px;
  border: 1px solid #dce4ef;
  background: var(--white);
  color: #25324a;
  box-shadow: 0 10px 24px rgba(26, 47, 95, 0.08);
  cursor: pointer;
}

.account-trigger span {
  overflow: hidden;
  max-width: 148px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-trigger svg {
  width: 15px;
  height: 15px;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 34;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid #dce4ef;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(20, 41, 75, 0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.account-menu.is-open .account-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.account-dropdown a,
.account-dropdown button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #303746;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.account-dropdown a:hover,
.account-dropdown button:hover {
  background: #f2f5fb;
  color: var(--blue);
}

.account-dropdown svg {
  width: 16px;
  height: 16px;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(3px);
}

.auth-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 32px;
  border: 1px solid #dce4ef;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.auth-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f3f5f9;
  color: #596579;
  cursor: pointer;
}

.auth-dialog-close svg {
  width: 18px;
  height: 18px;
}

.auth-view[hidden] {
  display: none;
}

.auth-dialog-heading > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-dialog-heading h2 {
  margin: 9px 0 0;
  font-size: 27px;
}

.auth-dialog-heading p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.auth-form {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #303746;
  font-size: 13px;
  font-weight: 700;
}

.auth-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #dce4ef;
  border-radius: 9px;
  outline: 0;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
}

.auth-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 86, 217, 0.1);
}

.auth-form-error {
  margin: -3px 0 0;
  padding: 10px 12px;
  border: 1px solid #f1caca;
  border-radius: 8px;
  background: #fff5f5;
  color: #b42318;
  font-size: 13px;
  line-height: 1.5;
}

.auth-code-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 10px;
  align-items: end;
}

.auth-code-send {
  min-height: 46px;
  padding: 0 10px;
  border: 1px solid #dce4ef;
  border-radius: 9px;
  background: var(--white);
  color: var(--blue);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.auth-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 2px;
  border: 0;
  border-radius: 9px;
}

.auth-switch {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.auth-switch button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

body.has-auth-modal {
  overflow: hidden;
}

.main-nav a,
.download-trigger {
  position: relative;
  padding: 29px 0 26px;
  border: 0;
  background: transparent;
  color: #303746;
  font: inherit;
  transition: color 180ms ease;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav a.is-active,
.download-trigger:hover,
.download-nav.is-open .download-trigger {
  color: var(--blue);
}

.main-nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
}

.nav-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-download svg,
.download-trigger svg {
  width: 15px;
  height: 15px;
}

.download-nav {
  position: relative;
}

.download-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.download-nav.is-open .download-trigger svg {
  transform: rotate(180deg);
}

.download-page {
  background: #f6f8fc;
}

.download-showcase {
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  align-items: center;
  padding: 74px 0;
}

.download-showcase .intro-copy h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.22;
}

.download-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 30;
  min-width: 220px;
  padding: 18px;
  border-radius: 0 0 14px 14px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(20, 41, 75, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.download-nav:hover .download-menu,
.download-nav:focus-within .download-menu,
.download-nav.is-open .download-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.download-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 4px;
  color: #1f2633;
  font-size: 20px;
  font-weight: 700;
}

.download-menu a + a {
  border-top: 1px solid #e7eaf0;
}

.download-menu svg {
  width: 25px;
  height: 25px;
  color: #171a20;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #213880;
}

.download-home {
  position: relative;
  height: calc(100svh - var(--nav-height));
  min-height: 560px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: #213880;
}

.download-home::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 24, 67, 0.2);
  content: "";
}

.download-home::after {
  position: absolute;
  right: -7%;
  bottom: -18%;
  z-index: -1;
  width: 62%;
  height: 48%;
  border-radius: 50%;
  background: rgba(255, 201, 184, 0.28);
  filter: blur(48px);
  content: "";
}

.download-home-content {
  width: min(1040px, calc(100% - 48px));
  color: var(--white);
  text-align: center;
}

.download-home h1 {
  max-width: 1060px;
  margin: 0 auto 24px;
  font-size: clamp(52px, 7.4vw, 102px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-stripes {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  opacity: 0.94;
}

.hero-stripes span:nth-child(1) { background: #175594; }
.hero-stripes span:nth-child(2) { background: #126fa6; }
.hero-stripes span:nth-child(3) { background: #1a5cb0; }
.hero-stripes span:nth-child(4) { background: #2748a2; }
.hero-stripes span:nth-child(5) { background: #3543a6; }
.hero-stripes span:nth-child(6) { background: #4d58c8; }
.hero-stripes span:nth-child(7) { background: #3e78d5; }
.hero-stripes span:nth-child(8) { background: #26a4cd; }
.hero-stripes span:nth-child(9) { background: #28b4ba; }
.hero-stripes span:nth-child(10) { background: #2f8eae; }
.hero-stripes span:nth-child(11) { background: #2e62a8; }
.hero-stripes span:nth-child(12) { background: #313d86; }
.hero-stripes span:nth-child(13) { background: #293676; }
.hero-stripes span:nth-child(14) { background: #384188; }
.hero-stripes span:nth-child(15) { background: #51449d; }
.hero-stripes span:nth-child(16) { background: #6552b0; }
.hero-stripes span:nth-child(17) { background: #8771d0; }
.hero-stripes span:nth-child(18) { background: #5e8ccb; }
.hero-stripes span:nth-child(19) { background: #35a1c2; }
.hero-stripes span:nth-child(20) { background: #3a92af; }
.hero-stripes span:nth-child(21) { background: #327a9b; }
.hero-stripes span:nth-child(22) { background: #39538e; }
.hero-stripes span:nth-child(23) { background: #4d579c; }
.hero-stripes span:nth-child(24) { background: #735fb1; }

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 24, 67, 0.2);
  content: "";
}

.hero::after {
  position: absolute;
  right: -7%;
  bottom: -18%;
  z-index: -1;
  width: 62%;
  height: 48%;
  border-radius: 50%;
  background: rgba(255, 201, 184, 0.28);
  filter: blur(48px);
  content: "";
}

.hero-content {
  width: min(1040px, calc(100% - 48px));
  padding: 94px 0 118px;
  color: var(--white);
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 28px;
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.hero h1 strong {
  font-weight: 700;
}

.hero-copy {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: start;
  gap: 26px;
  margin-top: 40px;
}

.download-action {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.download-action .button {
  width: 254px;
  min-height: 54px;
  box-shadow: 0 18px 36px rgba(9, 18, 48, 0.22);
}

.download-action small {
  max-width: 254px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

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

.button-light {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.88);
  color: #15214a;
  box-shadow: 0 20px 38px rgba(9, 18, 48, 0.26);
  backdrop-filter: blur(14px) saturate(130%);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 44px rgba(9, 18, 48, 0.28);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-mac {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, rgba(105, 226, 228, 0.26), rgba(137, 118, 255, 0.2) 48%, rgba(208, 152, 255, 0.26)),
    rgba(255, 255, 255, 0.12);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -12px 24px rgba(70, 61, 140, 0.14),
    0 20px 38px rgba(34, 27, 108, 0.3);
  text-shadow: 0 1px 10px rgba(24, 21, 74, 0.22);
  backdrop-filter: blur(16px) saturate(135%);
}

.button-mac:hover {
  background:
    linear-gradient(135deg, rgba(113, 238, 235, 0.32), rgba(145, 127, 255, 0.26) 48%, rgba(217, 166, 255, 0.32)),
    rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -12px 24px rgba(70, 61, 140, 0.12),
    0 24px 46px rgba(34, 27, 108, 0.36);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-blue {
  background: var(--blue);
  color: var(--white);
}

.compact-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.section {
  padding: 112px 0;
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.14;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 80px;
}

.intro-copy h3 {
  max-width: 470px;
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.intro-copy p {
  max-width: 510px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 700;
}

.text-link svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.product-stage {
  position: relative;
  min-height: 400px;
  padding: 24px 0 0 36px;
}

.product-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #d7deea;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(26, 47, 95, 0.16);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid #e9edf3;
  background: #fbfcfe;
}

.window-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c6ced9;
}

.window-dot:first-child { background: #f0a390; }
.window-dot:nth-child(2) { background: #f2cc78; }
.window-dot:nth-child(3) { background: #7fcfa6; }

.window-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 300px;
}

.window-sidebar {
  padding: 20px 13px;
  border-right: 1px solid #eef1f5;
  background: #f8faff;
}

.sidebar-logo {
  width: 31px;
  height: 31px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.sidebar-line {
  height: 9px;
  margin: 12px 7px;
  border-radius: 4px;
  background: #dbe5f6;
}

.sidebar-line.active {
  background: #7c9eed;
}

.window-main {
  padding: 24px;
}

.window-title {
  width: 180px;
  height: 14px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: #27354f;
}

.window-toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.window-toolbar span {
  width: 92px;
  height: 28px;
  border-radius: 8px;
  background: #eef3fb;
}

.window-toolbar span:last-child {
  width: 66px;
  background: #315fd8;
}

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

.preview-tile {
  aspect-ratio: 1;
  border-radius: 11px;
  background: #e6edf7;
}

.preview-tile:nth-child(1) { background: #b6d3e3; }
.preview-tile:nth-child(2) { background: #e8c6b7; }
.preview-tile:nth-child(3) { background: #bec7ea; }
.preview-tile:nth-child(4) { background: #d8e6ca; }
.preview-tile:nth-child(5) { background: #eed0cc; }
.preview-tile:nth-child(6) { background: #c0d9dc; }

.stage-orbit {
  position: absolute;
  right: -28px;
  bottom: -18px;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background: #f0b39f;
  opacity: 0.72;
}

.stage-tag {
  position: absolute;
  top: 0;
  right: -10px;
  z-index: 2;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(22, 31, 51, 0.18);
}

.soft-band {
  background: #edf3ff;
}

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

.feature-card {
  min-height: 242px;
  padding: 30px;
  border: 1px solid #e1e7ef;
  border-radius: 14px;
  background: var(--white);
}

.feature-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 12px;
  background: #e9f1ff;
  color: var(--blue);
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.feature-card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.split-band {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 70px;
}

.split-grid h2 {
  margin: 0;
  font-size: clamp(35px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.14;
}

.split-grid p {
  margin: 22px 0 0;
  color: #b8c1d3;
  font-size: 17px;
  line-height: 1.75;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.workflow-step {
  position: relative;
  padding-top: 24px;
  border-top: 2px solid #cbd8ef;
}

.workflow-step::before {
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.workflow-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.workflow-step h3 {
  margin: 19px 0 12px;
  font-size: 20px;
}

.workflow-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.page-hero {
  padding: 98px 0 92px;
  background: #eaf1ff;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 500;
  line-height: 1.08;
}

.page-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.download-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  padding: 40px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(31, 56, 103, 0.08);
}

.download-card::after {
  position: absolute;
  right: -36px;
  bottom: -76px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #d9e6ff;
  content: "";
}

.download-card.mac::after {
  background: #f6d5c8;
}

.os-mark {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: #e8f0ff;
  color: var(--blue);
  font-size: 26px;
  font-weight: 800;
}

.mac .os-mark {
  background: #fff0ea;
  color: #c45c4d;
}

.download-card h2 {
  margin: 28px 0 10px;
  font-size: 30px;
  font-weight: 600;
}

.download-card p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.download-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.download-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  background: #f0f4fb;
  color: #52627b;
  font-size: 12px;
  font-weight: 700;
}

.download-card .button {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.download-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.showcase-art {
  min-height: 380px;
  padding: 24px;
  border-radius: 22px;
  background: #e5edff;
}

.showcase-art.dark {
  background: #e9ddd8;
}

.art-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: #5a6a85;
  font-size: 13px;
  font-weight: 700;
}

.art-header span:last-child {
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.66);
}

.art-canvas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: 270px;
}

.art-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: end;
  min-height: 270px;
  padding: 20px;
  border-radius: 16px;
  background: #9db5e3;
}

.art-panel::before {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: rgba(255, 247, 228, 0.76);
  content: "";
  transform: translateX(-50%);
}

.art-panel::after {
  position: absolute;
  bottom: 34px;
  left: 50%;
  width: 170px;
  height: 106px;
  border-radius: 52% 48% 16px 16px;
  background: rgba(36, 66, 122, 0.55);
  content: "";
  transform: translateX(-50%);
}

.art-panel:nth-child(2) {
  background: #e4b89e;
}

.art-panel:nth-child(2)::before {
  background: rgba(255, 246, 229, 0.78);
}

.art-panel:nth-child(2)::after {
  background: rgba(139, 74, 82, 0.52);
}

.art-label {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.showcase-copy h2 {
  margin: 0;
  font-size: 37px;
  font-weight: 500;
  line-height: 1.25;
}

.showcase-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.showcase-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-list li {
  display: flex;
  gap: 11px;
  align-items: start;
  color: #3e4b61;
  line-height: 1.65;
}

.showcase-list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--blue);
}

.timeline {
  display: grid;
  gap: 0;
  max-width: 880px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-date {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.timeline-item h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
}

.timeline-item p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.payment-showcase {
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  align-items: center;
  padding: 44px 0;
  background: #f6f8fc;
}

.payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 590px);
  gap: 90px;
  align-items: center;
}

.payment-copy {
  align-self: center;
}

.account-copy h2 {
  max-width: 500px;
}

.account-copy > p:not(.section-kicker) {
  max-width: 520px;
}

.account-stack {
  display: grid;
  gap: 16px;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 590px;
}

.account-login-panel,
.account-wallet-panel,
.account-summary-panel {
  width: 100%;
  padding: 24px;
  border: 1px solid #dce4ef;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(26, 47, 95, 0.1);
}

.account-login-panel h2 {
  margin: 9px 0 0;
  font-size: 28px;
}

.account-summary-panel h2 {
  margin: 9px 0 0;
  font-size: 28px;
}

.account-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff4dd;
  color: #8b5b0f;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.account-state svg {
  width: 15px;
  height: 15px;
}

.account-field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #303746;
  font-size: 13px;
  font-weight: 700;
}

.account-field input {
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  outline: 0;
  background: #fbfcfe;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
}

.account-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 86, 217, 0.1);
}

.account-code-row {
  display: grid;
  grid-template-columns: 1fr 130px;
  gap: 12px;
  align-items: end;
}

.account-code-button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  background: var(--white);
  color: #25324a;
  box-shadow: none;
  font-weight: 700;
}

.account-login-submit {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  border: 0;
  border-radius: 10px;
}

.account-balance-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 14px;
  border-radius: 12px;
  background: #f6f8fc;
  color: #4a566b;
  font-size: 13px;
  font-weight: 700;
}

.account-balance-row strong {
  color: var(--ink);
  font-size: 18px;
}

.account-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.account-summary-grid div {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid #e5ebf3;
  border-radius: 12px;
  background: #fbfcfe;
}

.account-summary-grid span {
  color: #687489;
  font-size: 12px;
  font-weight: 700;
}

.account-summary-grid strong {
  color: var(--ink);
  font-size: 13px;
}

.account-recharge-link {
  width: 100%;
  margin-top: 16px;
  border-radius: 10px;
}

.account-wallet-panel.is-locked .amount-option,
.account-wallet-panel.is-locked .payment-method-choice {
  cursor: not-allowed;
  opacity: 0.62;
}

.account-wallet-panel.is-locked .payment-submit {
  opacity: 0.58;
}

.payment-copy h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.16;
}

.payment-copy > p:not(.section-kicker) {
  max-width: 470px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.payment-notes {
  display: grid;
  gap: 15px;
  margin-top: 34px;
}

.payment-notes div {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #3e4b61;
  font-size: 14px;
  font-weight: 600;
}

.payment-notes svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
}

.payment-panel {
  width: 100%;
  max-width: 590px;
  justify-self: end;
  align-self: center;
  padding: 24px;
  border: 1px solid #dce4ef;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(26, 47, 95, 0.12);
}

.login-required-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid #f0d7aa;
  border-radius: 12px;
  background: #fff8eb;
  color: #614314;
}

.login-required-panel strong {
  font-size: 15px;
}

.login-required-panel span {
  font-size: 13px;
}

.login-required-panel .button {
  width: fit-content;
  min-height: 38px;
  margin-top: 4px;
  border-radius: 9px;
}

.payment-panel-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e9edf3;
}

.payment-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment-panel h2 {
  margin: 9px 0 0;
  font-size: 28px;
}

.payment-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf8f2;
  color: #26734b;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.payment-status svg {
  width: 15px;
  height: 15px;
}

.amount-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  border: 0;
}

.amount-options legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: #303746;
  font-size: 14px;
  font-weight: 700;
}

.amount-option {
  display: grid;
  gap: 5px;
  min-height: 64px;
  padding: 10px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  background: #fbfcfe;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.amount-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.amount-option.is-selected {
  border-color: var(--blue);
  background: #f1f5ff;
  box-shadow: 0 0 0 2px rgba(36, 86, 217, 0.12);
}

.amount-option-main {
  color: var(--ink);
  font-size: 20px;
  font-weight: 800;
}

.amount-option-sub {
  color: var(--muted);
  font-size: 12px;
}

.amount-option-custom {
  width: min(100%, 176px);
  min-height: 52px;
  grid-template-columns: 1fr;
  align-items: center;
  align-content: center;
  justify-self: start;
}

.amount-option .custom-amount-input {
  position: static;
  width: 100%;
  min-height: 24px;
  justify-self: end;
  padding: 2px 0;
  border: 0;
  border-bottom: 1px solid #cdd7e6;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  opacity: 1;
  pointer-events: auto;
}

.amount-option .custom-amount-input:focus {
  border-bottom-color: var(--blue);
}

.amount-option .custom-amount-input.is-invalid {
  border-bottom-color: #d54a4a;
}

.custom-amount-error {
  margin: 7px 0 0;
  color: #c83f3f;
  font-size: 12px;
  line-height: 1.4;
}

.payment-method {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  color: #303746;
  font-size: 14px;
  font-weight: 700;
}

.payment-method-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 7px 10px;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  background: #fff;
}

.payment-method-choice svg {
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: #24915b;
}

.alipay-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: #1677ff;
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
}

.payment-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e9edf3;
  color: #4a566b;
  font-size: 14px;
}

.payment-total strong {
  color: var(--ink);
  font-size: 28px;
}

.payment-submit {
  width: 100%;
  margin-top: 18px;
  border: 0;
  border-radius: 10px;
}

.payment-submit:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.payment-footnote {
  margin: 10px 0 0;
  color: #8792a3;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.billing-page {
  min-height: calc(100svh - var(--nav-height));
  background: #f5f7fb;
}

.billing-workspace {
  padding: 48px 0 72px;
}

.billing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.billing-heading h1 {
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.2;
}

.billing-heading > div > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.billing-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #596579;
  font-size: 13px;
  font-weight: 700;
}

.billing-toolbar select,
.billing-refresh {
  min-height: 40px;
  border: 1px solid #d7dfeb;
  border-radius: 8px;
  background: var(--white);
  color: #273247;
  font: inherit;
}

.billing-toolbar select {
  min-width: 116px;
  padding: 0 34px 0 12px;
}

.billing-refresh {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  cursor: pointer;
}

.billing-refresh svg {
  width: 16px;
  height: 16px;
}

.billing-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.billing-stat {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  background: var(--white);
}

.billing-stat span {
  color: #687489;
  font-size: 13px;
  font-weight: 700;
}

.billing-stat strong {
  color: var(--ink);
  font-size: 24px;
}

.billing-loading,
.billing-error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 170px;
  margin-top: 16px;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  background: var(--white);
  color: #687489;
  font-size: 14px;
  font-weight: 700;
}

.billing-loading svg {
  width: 18px;
  height: 18px;
  animation: billing-spin 900ms linear infinite;
}

.billing-error {
  border-color: #f1caca;
  background: #fff7f7;
  color: #b42318;
}

.billing-content {
  margin-top: 16px;
}

.billing-table-wrap {
  position: relative;
  overflow-x: auto;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  background: var(--white);
}

.billing-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
  color: #39455a;
  font-size: 13px;
}

.billing-table th,
.billing-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #e4eaf2;
  text-align: left;
  vertical-align: middle;
}

.billing-table th {
  background: #f7f9fc;
  color: #617087;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

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

.billing-reference {
  max-width: 240px;
  overflow: hidden;
  color: #627089;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.billing-amount {
  font-weight: 800;
  white-space: nowrap;
}

.billing-amount.is-in {
  color: #169b50;
}

.billing-amount.is-out {
  color: #c2413b;
}

.billing-empty {
  padding: 56px 20px;
  color: #7a8699;
  text-align: center;
}

.billing-loading[hidden],
.billing-error[hidden],
.billing-content[hidden],
.billing-empty[hidden] {
  display: none;
}

@keyframes billing-spin {
  to { transform: rotate(360deg); }
}

.footer {
  padding: 42px 0 34px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
}

.footer-brand img {
  width: 30px;
  height: 30px;
}

.footer p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: #46526a;
  font-size: 13px;
}

.copyright {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid #edf0f4;
  color: #8b95a5;
  font-size: 12px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  max-width: min(360px, calc(100% - 44px));
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 900px) {
  .nav-shell,
  .section-shell {
    width: min(100% - 36px, 720px);
  }

  .main-nav {
    gap: 20px;
  }

  .nav-shell {
    gap: 20px;
  }

  .nav-account {
    min-width: 132px;
  }

  .intro-grid,
  .split-grid,
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .feature-grid,
  .workflow {
    grid-template-columns: repeat(2, 1fr);
  }

  .payment-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .payment-panel {
    justify-self: center;
  }

  .billing-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .account-stack {
    justify-self: center;
  }

  .product-stage {
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-height: 68px;
  }

  .nav-shell {
    width: calc(100% - 28px);
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: var(--nav-height);
    right: 14px;
    left: 14px;
    display: none;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 16px 40px rgba(34, 53, 87, 0.14);
  }

  .main-nav.is-open {
    display: grid;
    gap: 0;
  }

  .nav-account {
    min-width: auto;
    margin-left: auto;
  }

  .auth-buttons {
    gap: 6px;
  }

  .auth-link,
  .auth-join,
  .account-trigger {
    min-height: 34px;
    padding: 0 11px;
    font-size: 13px;
  }

  .account-trigger span {
    max-width: 104px;
  }

  .account-dropdown {
    right: 0;
  }

  .auth-modal {
    align-items: end;
    padding: 12px;
  }

  .auth-dialog {
    width: 100%;
    max-height: calc(100svh - 24px);
    padding: 28px 20px 22px;
    border-radius: 14px;
  }

  .auth-code-fields {
    grid-template-columns: minmax(0, 1fr) 104px;
  }

  .main-nav a {
    padding: 16px 3px;
    border-bottom: 1px solid #edf0f4;
  }

  .download-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 16px 3px;
    border-bottom: 1px solid #edf0f4;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .download-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 6px 0 10px 14px;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .download-nav.is-open .download-menu {
    display: block;
    transform: none;
  }

  .download-menu a {
    padding: 12px 3px;
    font-size: 17px;
  }

  .main-nav a.is-active::after {
    right: auto;
    bottom: 0;
    width: 36px;
  }

  .hero {
    min-height: 640px;
  }

  .home-page {
    min-height: 100svh;
  }

  .download-home {
    min-height: calc(100svh - var(--nav-height));
  }

  .download-home-content {
    width: calc(100% - 30px);
  }

  .download-home h1 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.12;
  }

  .hero-content {
    width: calc(100% - 30px);
    padding: 78px 0 92px;
  }

  .hero h1 {
    font-size: clamp(47px, 16vw, 76px);
  }

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

  .section,
  .page-hero {
    padding: 76px 0;
  }

  .section-shell {
    width: calc(100% - 30px);
  }

  .feature-grid,
  .workflow,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .payment-panel {
    padding: 24px 20px;
  }

  .account-login-panel,
  .account-wallet-panel,
  .account-summary-panel {
    padding: 22px 18px;
  }

  .account-summary-grid {
    grid-template-columns: 1fr;
  }

  .account-code-row {
    grid-template-columns: 1fr;
  }

  .payment-panel-heading {
    align-items: start;
    flex-direction: column;
  }

  .amount-options {
    grid-template-columns: 1fr;
  }

  .billing-workspace {
    padding: 30px 0 48px;
  }

  .billing-heading h1 {
    font-size: 29px;
  }

  .billing-toolbar {
    width: 100%;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .billing-toolbar label {
    width: 100%;
  }

  .billing-toolbar select {
    flex: 1;
  }

  .product-stage {
    min-height: 300px;
    padding: 22px 0 0;
    overflow: hidden;
  }

  .product-window {
    border-radius: 14px;
  }

  .window-body {
    grid-template-columns: 78px 1fr;
    min-height: 244px;
  }

  .window-main {
    padding: 17px;
  }

  .window-sidebar {
    padding: 17px 8px;
  }

  .preview-grid {
    gap: 8px;
  }

  .stage-tag {
    right: 10px;
    padding: 11px 13px;
    font-size: 11px;
  }

  .stage-orbit {
    right: -70px;
    bottom: -52px;
  }

  .download-card {
    min-height: 330px;
    padding: 30px;
  }

  .showcase-art {
    min-height: 300px;
    padding: 16px;
  }

  .art-canvas,
  .art-panel {
    min-height: 220px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .footer-grid {
    display: grid;
    gap: 24px;
  }
}
