:root {
  --bg-gradient: radial-gradient(circle at top left, #ffb2e6 0%, #ff9a76 30%, #9b8cff 70%, #232147 100%);
  --text-color: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.75);
  --pill-bg: rgba(0, 0, 0, 0.32);
  --pill-border: rgba(255, 255, 255, 0.16);
  --pill-color: rgba(255, 255, 255, 0.82);
  --footer-bg: rgba(7, 3, 24, 0.82);
  --footer-border: rgba(255, 255, 255, 0.16);
  --overscroll-shift: 0px;
  --document-height: 100vh;
  --layout-body-padding: 26px 16px 40px;
  --layout-body-padding-mobile: 18px 12px 28px;
  --layout-max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-gradient);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: transparent;
  color: var(--text-color);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: -40vh;
  left: 50%;
  width: 100vw;
  height: calc(100vh + 80vh);
  transform: translateX(-50%);
  background: var(--bg-gradient);
  background-repeat: no-repeat;
  background-size: 100% calc(var(--document-height) + 80vh);
  background-position: center calc(-40vh - var(--overscroll-shift));
  z-index: -1;
  pointer-events: none;
}

body.layout-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--layout-body-padding);
}

.layout-shell {
  width: 100%;
  max-width: var(--layout-max-width);
  display: flex;
  flex-direction: column;
  flex: 1;
}

a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

a:hover,
a:focus-visible {
  text-decoration-color: #fff;
}

a:visited {
  color: #fff;
}

.is-hidden {
  display: none !important;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pill-color);
  text-decoration: none;
}

.pill:hover,
.pill:focus-visible {
  text-decoration: none;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffeb3b;
  box-shadow: 0 0 10px rgba(255, 235, 59, 0.85);
}

.page-footer {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  padding: 0 0 6px;
}

.footer-inner {
  display: inline-flex;
  gap: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--footer-bg);
  border: 1px solid var(--footer-border);
  font-size: 0.78rem;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 760px) {
  body.layout-column {
    padding: var(--layout-body-padding-mobile);
  }
}

@media (max-width: 720px) {
  .page-footer {
    padding-bottom: 0;
  }
}
