:root {
  --ink: #17211a;
  --muted: #607060;
  --paper: #fff8ea;
  --gold: #f7b733;
  --amber: #f08a24;
  --leaf: #22543d;
  --sky: #bce5df;
  --line: rgba(34, 84, 61, 0.16);
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(247, 183, 51, 0.42), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(188, 229, 223, 0.8), transparent 26rem),
    linear-gradient(135deg, #fff9e9 0%, #f8e2af 45%, #bddcc9 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(34, 84, 61, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 84, 61, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent);
}

.page-shell {
  --page-padding: clamp(28px, 6vw, 84px);

  min-height: 100vh;
  padding: var(--page-padding);
}

.hero {
  display: flex;
  min-height: calc(100vh - (var(--page-padding) + var(--page-padding)));
  flex-direction: column;
  justify-content: center;
  overflow: clip;
  position: relative;
  animation: rise-in 700ms ease-out both;
}

.hero::after {
  position: absolute;
  right: min(2vw, 28px);
  bottom: min(3vw, 36px);
  width: min(42vw, 520px);
  height: min(42vw, 520px);
  border-radius: 999px;
  content: "";
  background: radial-gradient(circle, rgba(240, 138, 36, 0.22), transparent 68%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--leaf);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.domain-pill {
  display: inline-flex;
  width: fit-content;
  max-width: min(100%, 420px);
  align-self: flex-start;
  gap: 10px;
  align-items: center;
  margin-top: 34px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  font-family: "Trebuchet MS", Verdana, sans-serif;
}

.domain-pill span {
  color: var(--muted);
}

.domain-pill strong {
  overflow-wrap: anywhere;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid rgba(34, 84, 61, 0.38);
  outline-offset: 4px;
}

.primary {
  color: #1d240e;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  box-shadow: 0 16px 32px rgba(240, 138, 36, 0.28);
}

.secondary {
  color: var(--leaf);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.orbital-mark {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(118px, 15vw, 180px);
  height: clamp(118px, 15vw, 180px);
  opacity: 0.92;
}

.sun-core,
.orbit,
.planet {
  position: absolute;
  border-radius: 999px;
}

.sun-core {
  inset: 44px;
  background: radial-gradient(circle at 35% 35%, #fff6bb, var(--gold) 48%, var(--amber));
  box-shadow: 0 0 44px rgba(247, 183, 51, 0.72);
}

.orbit {
  inset: 18px;
  border: 1px solid rgba(34, 84, 61, 0.22);
  transform: rotate(-18deg) scaleX(1.32);
}

.orbit-two {
  inset: 34px;
  transform: rotate(28deg) scaleX(1.42);
}

.planet {
  top: 18%;
  right: 12%;
  width: 9%;
  height: 9%;
  min-width: 10px;
  min-height: 10px;
  background: var(--leaf);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  50% {
    transform: scale(1.28);
    box-shadow: 0 0 0 10px rgba(34, 84, 61, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .planet {
    animation: none;
  }

  .button {
    transition: none;
  }
}

@media (max-width: 700px) {
  .page-shell {
    --page-padding: 22px;
  }

  .orbital-mark {
    position: relative;
    top: auto;
    right: auto;
    width: 110px;
    height: 110px;
    margin-bottom: 24px;
  }

  .sun-core {
    inset: 32px;
  }

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

  .domain-pill {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 22px;
  }
}
