:root {
  color-scheme: light;
  --ink: #19202a;
  --muted: #5b6472;
  --paper: #fbfaf7;
  --line: #d8d5ce;
  --accent: #0f8b8d;
  --accent-strong: #0b6468;
  --sun: #e8b54d;
  --rose: #d96178;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(232, 181, 77, 0.16), transparent 32rem),
    linear-gradient(135deg, #fbfaf7 0%, #eef7f6 100%);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

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

.orbital-mark {
  width: 132px;
  aspect-ratio: 1;
  border: 2px solid var(--line);
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(15, 139, 141, 0.12), rgba(217, 97, 120, 0.1)),
    var(--paper);
  box-shadow: 0 24px 70px rgba(25, 32, 42, 0.14);
}

.orbital-mark::before,
.orbital-mark::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(15, 139, 141, 0.42);
  border-radius: 50%;
  inset: 25px 9px;
  transform: rotate(28deg);
}

.orbital-mark::after {
  border-color: rgba(217, 97, 120, 0.34);
  inset: 10px 28px;
  transform: rotate(-28deg);
}

.spark {
  position: absolute;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
}

.spark-one {
  top: 18px;
  right: 24px;
}

.spark-two {
  bottom: 20px;
  left: 28px;
  background: var(--sun);
}

.spark-three {
  right: 18px;
  bottom: 32px;
  width: 9px;
  background: var(--rose);
}

.eyebrow {
  margin: 0;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.25rem, 11vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(25, 32, 42, 0.18);
}

@media (max-width: 520px) {
  .page-shell {
    place-items: start center;
    padding-top: 68px;
  }

  .hero {
    gap: 18px;
  }

  .orbital-mark {
    width: 104px;
  }
}
