:root {
  color-scheme: dark;
  --bg: #061713;
  --bg-soft: #0b211c;
  --ink: #f8fbf8;
  --muted: rgba(248, 251, 248, 0.68);
  --faint: rgba(248, 251, 248, 0.42);
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --lime: #a8ffcf;
  --cyan: #8fd8ff;
  --gold: #ffd166;
  --rose: #ff8a9e;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(168, 255, 207, 0.22), transparent 30%),
    radial-gradient(circle at 76% 8%, rgba(143, 216, 255, 0.17), transparent 32%),
    radial-gradient(circle at 50% 92%, rgba(255, 209, 102, 0.11), transparent 34%),
    linear-gradient(180deg, #081b17 0%, #071512 48%, #030807 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

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

button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  min-height: 58px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 18, 16, 0.68);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.brand,
.nav-links,
.hero-actions,
.header-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
}

.brand img {
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 22px rgba(143, 216, 255, 0.2);
}

.nav-links {
  gap: 4px;
}

.header-actions {
  justify-self: end;
  gap: 8px;
}

.nav-links a,
.nav-help,
.header-sponsor,
.language-toggle {
  border-radius: 14px;
  color: rgba(248, 251, 248, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a,
.nav-help {
  padding: 10px 12px;
}

.nav-help {
  border: 0;
  background: transparent;
}

.nav-links a:hover,
.nav-help:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.header-sponsor {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.10);
  color: white;
  box-shadow: 0 10px 28px rgba(255, 209, 102, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.language-toggle {
  display: inline-flex;
  min-width: 44px;
  min-height: 41px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.language-menu-wrap {
  position: relative;
  display: inline-flex;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: grid;
  min-width: 168px;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(8, 24, 20, 0.94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.10);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 140ms ease, transform 140ms ease;
  backdrop-filter: blur(20px);
}

.language-menu-wrap.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  display: grid;
  min-height: 40px;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 0 10px;
  background: transparent;
  color: rgba(248, 251, 248, 0.74);
  font-size: 13px;
  font-weight: 780;
  text-align: left;
}

.language-option:hover,
.language-option.is-active {
  background: rgba(255, 255, 255, 0.09);
  color: white;
}

.language-option.is-active {
  box-shadow: inset 0 0 0 1px rgba(168, 255, 207, 0.18);
}

.language-flag {
  font-size: 19px;
  line-height: 1;
}

.language-icon {
  position: relative;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  font-size: 15px;
  font-weight: 860;
  line-height: 1;
}

.language-icon span:first-child {
  position: absolute;
  left: 0;
  top: 0;
}

.language-icon span:last-child {
  position: absolute;
  right: 0;
  bottom: -1px;
}

.hero {
  position: relative;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.98fr);
  gap: 52px;
  align-items: center;
  margin: 0 auto;
  padding: 128px 0 72px;
}

.hero-copy {
  min-width: 0;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 0 0 26px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(168, 255, 207, 0.94);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

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

h1 {
  max-width: 600px;
  margin-bottom: 28px;
  font-size: clamp(72px, 9.4vw, 128px);
  line-height: 0.90;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 22px;
  font-weight: 560;
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 780;
}

.button.primary {
  background: linear-gradient(180deg, #ffffff, #dfe9e3);
  color: #092018;
  box-shadow: 0 18px 44px rgba(168, 255, 207, 0.20), inset 0 1px 0 white;
}

.button-dot {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 14px;
  background: #092018;
  color: white;
}

.button.ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 251, 248, 0.82);
}

.icon-button {
  width: 54px;
  padding: 0;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.version-line {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 13px;
  font-weight: 700;
}

.hero-mark {
  position: relative;
  min-height: 540px;
  /* Temporarily hiding the outer rounded preview container for visual review. */
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
}

.hero-mark::before {
  display: none;
}

.hub-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: min(72%, 360px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(143, 216, 255, 0.14), transparent 68%);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -47%);
}

.placeholder-ring {
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.hub-shot {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 32px 70px rgba(0, 0, 0, 0.28));
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 76%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 46%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.68;
}

.feature-section,
.wall-heading {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 96px;
}

.section-heading,
.wall-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.wall-heading h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading h2 {
  white-space: nowrap;
  font-size: clamp(34px, 4.4vw, 54px);
}

html[lang="en"] .section-heading h2 {
  max-width: 860px;
  white-space: normal;
}

.wall-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.feature-card {
  min-height: 206px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: 0;
}

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

.wall-section {
  width: 100%;
  margin: 0 0 96px;
  padding: 72px 0 92px;
  background:
    radial-gradient(circle at 12% 14%, rgba(168, 255, 207, 0.12), transparent 24%),
    radial-gradient(circle at 78% 28%, rgba(143, 216, 255, 0.10), transparent 28%),
    rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  overflow: visible;
}

.wall-heading {
  margin-bottom: 34px;
}

.wall-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 760px;
  margin-top: 22px;
}

.wall-composer textarea {
  min-height: 86px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wall-composer textarea::placeholder {
  color: rgba(248, 251, 248, 0.42);
}

.wall-composer textarea:focus {
  border-color: rgba(168, 255, 207, 0.42);
}

.wall-composer button {
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 0 20px;
  background: linear-gradient(180deg, #ffffff, #dfe9e3);
  color: #092018;
  font-weight: 820;
}

.sticky-wall {
  position: relative;
  display: flex;
  height: auto;
  min-height: 860px;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  column-gap: clamp(-14px, -0.8vw, -6px);
  row-gap: 0;
  width: 100%;
  padding: 18px 8px 80px;
}

.sticky-wall::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.54) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(168, 255, 207, 0.26) 1px, transparent 1.5px);
  background-position: 0 0, 28px 36px;
  background-size: 74px 74px, 92px 92px;
  opacity: 0.30;
}

.note {
  position: relative;
  z-index: 1;
  --note-rotate: -1.4deg;
  width: clamp(210px, 16.5vw, 292px);
  min-height: 142px;
  margin: 18px clamp(-18px, -0.9vw, -8px);
  padding: 18px;
  border-radius: 6px;
  color: #1b1d20;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, z-index 0ms;
  transform: rotate(var(--note-rotate));
  user-select: none;
}

.note::before {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 48px;
  height: 15px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  content: "";
  transform: translateX(-50%);
}

.note p {
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.45;
}

.note span {
  color: rgba(27, 29, 32, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.note.yellow {
  background: #ffd166;
}

.note.blue {
  background: #9ecbff;
}

.note.green {
  background: #a8e6b2;
}

.note.pink {
  background: #ff9a8d;
}

.note.purple {
  background: #c7a7ff;
}

.note:nth-child(3n + 1) {
  margin-left: clamp(-8px, 1.1vw, 24px);
  --note-rotate: -2.1deg;
}

.note:nth-child(3n + 2) {
  margin-top: 84px;
  margin-left: clamp(-28px, -1.2vw, -10px);
  --note-rotate: 1.6deg;
}

.note:nth-child(3n) {
  margin-top: 38px;
  margin-left: clamp(-10px, 0.8vw, 18px);
  --note-rotate: -0.8deg;
}

.note:nth-child(5n) {
  margin-top: -4px;
  margin-right: clamp(-18px, 0.6vw, 14px);
  --note-rotate: 2.4deg;
}

.note:nth-child(7n) {
  margin-left: clamp(-34px, -2vw, -14px);
  --note-rotate: -3.1deg;
}

.note:nth-child(8n + 1) {
  margin-left: 0;
  --note-rotate: 0.9deg;
}

.note:nth-child(9n) {
  margin-right: 0;
  --note-rotate: 3.2deg;
}

.note:nth-child(11n) {
  --note-rotate: -1.7deg;
}

.note:nth-child(13n) {
  --note-rotate: 2.9deg;
}

.note:hover,
.note.is-active {
  z-index: 10;
  box-shadow: 0 30px 58px rgba(0, 0, 0, 0.34);
}

.note:hover,
.note.is-active {
  transform: rotate(var(--note-rotate)) translateY(-8px) scale(1.04);
}

.help-dialog {
  width: min(560px, calc(100vw - 32px));
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.help-dialog::backdrop,
.sponsor-dialog::backdrop {
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
}

.sponsor-dialog {
  width: min(920px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 32px));
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.dialog-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 0%, rgba(143, 216, 255, 0.16), transparent 32%),
    rgba(8, 24, 20, 0.92);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.sponsor-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 209, 102, 0.18), transparent 30%),
    radial-gradient(circle at 98% 12%, rgba(143, 216, 255, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(8, 24, 20, 0.94);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sponsor-panel::before {
  position: absolute;
  inset: auto -12% -24% -12%;
  height: 44%;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(30deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(150deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(620px) rotateX(62deg);
}

.sponsor-intro {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding-right: 52px;
}

.sponsor-intro h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.sponsor-intro p:not(.pill) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.sponsor-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sponsor-card {
  display: grid;
  min-height: 292px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.qr-placeholder {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 white;
}

.qr-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.sponsor-card h3 {
  margin: 16px 0 6px;
  font-size: 21px;
  letter-spacing: 0;
}

.sponsor-card p {
  margin: 0;
  color: var(--faint);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.sponsor-card.wechat .qr-placeholder {
  background-color: rgba(168, 255, 207, 0.09);
}

.sponsor-card.alipay .qr-placeholder {
  background-color: rgba(143, 216, 255, 0.11);
}

.sponsor-card.paypal .qr-placeholder {
  background-color: rgba(158, 203, 255, 0.12);
}

.sponsor-card.usdt .qr-placeholder {
  background-color: rgba(255, 209, 102, 0.10);
}

.dialog-panel h2 {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.05;
}

.dialog-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.dialog-panel a {
  color: var(--lime);
  font-size: 14px;
  font-weight: 820;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: 22px;
  line-height: 1;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 0 0 44px;
  color: rgba(248, 251, 248, 0.42);
  font-size: 13px;
  font-weight: 760;
}

.site-footer a:hover {
  color: white;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .hero-mark {
    min-height: 460px;
  }

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

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

  .feature-grid {
    display: grid;
  }

}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100vw - 20px);
    min-height: 54px;
    border-radius: 16px;
  }

  .brand span {
    display: none;
  }

  .header-sponsor {
    padding: 10px 13px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-toggle {
    min-width: 42px;
    padding: 0 9px;
  }

  .hero {
    width: min(350px, calc(100vw - 48px));
    gap: 34px;
    padding-top: 104px;
    overflow: hidden;
  }

  h1 {
    font-size: 58px;
    line-height: 0.98;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-mark {
    width: 100%;
    min-width: 0;
    min-height: 340px;
    border-radius: 26px;
  }

  .hub-placeholder {
    width: min(86%, 300px);
  }

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

  .feature-card {
    min-height: 210px;
  }

  .section-heading h2 {
    white-space: normal;
    font-size: 38px;
  }

  .wall-section {
    padding: 56px 0 72px;
  }

  .wall-heading {
    width: min(350px, calc(100vw - 48px));
  }

  .wall-composer {
    grid-template-columns: 1fr;
  }

  .sticky-wall {
    min-height: auto;
    padding-inline: 24px;
  }

  .note,
  .note.yellow,
  .note.blue,
  .note.green,
  .note.pink,
  .note.purple {
    width: 100%;
    margin: 12px 0;
    transform: rotate(0deg);
  }

  .note:hover,
  .note.is-active,
  .note.yellow:hover,
  .note.yellow.is-active,
  .note.blue:hover,
  .note.blue.is-active,
  .note.green:hover,
  .note.green.is-active,
  .note.pink:hover,
  .note.pink.is-active,
  .note.purple:hover,
  .note.purple.is-active {
    transform: translateY(-4px) scale(1.01);
  }

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

  .sponsor-dialog {
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
  }

  .sponsor-panel {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    padding: 26px 18px 20px;
    border-radius: 24px;
  }

  .sponsor-intro {
    padding-right: 44px;
  }

  .sponsor-intro h2 {
    font-size: 36px;
  }

  .sponsor-intro p:not(.pill) {
    font-size: 15px;
  }

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

  .sponsor-card {
    min-height: auto;
  }
}
