:root {
  color-scheme: dark;
  --blue: #00346f;
  --blue-deep: #001b3f;
  --blue-night: #011d35;
  --gold: #ffd088;
  --ink: #f8f9ff;
  font-family: "Work Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--blue-night);
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--blue-night);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(92px, 13vh, 128px) clamp(20px, 6vw, 72px) clamp(54px, 8vh, 86px);
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-deep) 54%, #00142f 100%);
}

.site-header {
  position: absolute;
  top: max(18px, env(safe-area-inset-top));
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark,
.x-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgb(248 249 255 / 88%);
  font-size: 13px;
  font-weight: 800;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.x-link {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
}

.x-link span:first-child {
  color: var(--gold);
}

.x-icon {
  width: 14px;
  height: 14px;
  color: var(--gold);
  fill: currentColor;
}

.hero-content {
  width: min(100%, 680px);
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.hero-logo {
  width: min(72vw, 460px);
  aspect-ratio: 1;
  border-radius: 24px;
  object-fit: cover;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.lede {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  background: transparent;
  font-family: "Newsreader", "Noto Serif", ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(14.4px, 1.8vw, 21.6px);
  line-height: 1.22;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.platform-note {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-note {
  color: var(--gold);
}

@media (max-width: 640px) {
  .hero {
    padding-inline: 18px;
  }

  .site-header {
    left: 18px;
    right: 18px;
  }

  .hero-logo {
    width: min(84vw, 360px);
    border-radius: 18px;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
  }

  .platform-note {
    width: 100%;
  }
}
