.home-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
}

.home-main h1 {
  width: calc(100% - 48px);
  max-width: 820px;
  margin: 36px 0 0;
  font-size: var(--text-title);
  font-weight: 400;
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-title);
  text-align: center;
  text-wrap: balance;
}

.globe-hero {
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 1080 / 480;
  margin-top: 8px;
  overflow: hidden;
}

.globe-hero canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.home-about {
  width: calc(100% - 48px);
  max-width: 680px;
  margin-top: 28px;
  color: var(--body-text);
  font-size: var(--text-lead);
  line-height: var(--leading-lead);
  text-align: center;
  scroll-margin-top: 28px;
}

.home-about p { margin: 0; }
.home-about p + p { margin-top: 18px; }

.home-about .home-backing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted-foreground);
  font-size: var(--text-body);
}

.home-backer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  white-space: nowrap;
}

.home-backer img {
  display: block;
  flex: none;
}

@media (max-width: 600px) {
  .home-main { padding-bottom: 56px; }
  .home-main h1 { margin-top: 38px; }

  /* Redraw at this size so the globe and its glyphs stay legible on phones. */
  .globe-hero {
    height: clamp(240px, 75vw, 360px);
    aspect-ratio: auto;
    margin-top: 12px;
  }

  .home-about {
    margin-top: 20px;
  }
}
