:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5e6963;
  --paper: #f4f1ea;
  --accent: #486f60;
  --line: rgba(23, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 33, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 33, 29, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 40px 24px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  width: min(76vw, 980px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.72;
}

.orb-one {
  top: -12vw;
  right: -8vw;
  width: min(42vw, 580px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 35%, rgba(128, 174, 151, 0.58), rgba(128, 174, 151, 0));
}

.orb-two {
  bottom: -18vw;
  left: -10vw;
  width: min(50vw, 700px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 55% 45%, rgba(218, 187, 133, 0.38), rgba(218, 187, 133, 0));
}

.content {
  width: min(100%, 980px);
  text-align: center;
}

.mark {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.mark span {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(72, 111, 96, 0.12);
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 13vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.subtitle {
  max-width: 720px;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.45rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 50px 0 0;
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  backdrop-filter: blur(12px);
}

.status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(72, 111, 96, 0.12);
}

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

  .hero::before {
    width: 118vw;
  }

  .mark {
    margin-bottom: 28px;
  }

  .subtitle {
    max-width: 330px;
    margin-top: 28px;
  }

  .status {
    margin-top: 42px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .content {
    animation: appear 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes appear {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
  }
}
