:root {
  color-scheme: dark;
  --ink: #f3efe5;
  --muted: #abb7ae;
  --deep: #101814;
  --green: #74a889;
  --gold: #d2a85d;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--deep);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 3rem 1.5rem 2rem;
  isolation: isolate;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, #21372d 0, #14211b 36%, var(--deep) 72%);
  background-size: 44px 44px, 44px 44px, auto;
}

.page::before {
  position: absolute;
  z-index: -1;
  width: min(72vw, 60rem);
  aspect-ratio: 1;
  border: 1px solid rgba(210, 168, 93, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 8rem rgba(116, 168, 137, 0.025),
    0 0 0 16rem rgba(116, 168, 137, 0.018);
}

.ambient {
  position: absolute;
  z-index: -1;
  width: 30rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 168, 93, 0.35), transparent);
  transform-origin: center;
}

.ambient--one {
  top: 22%;
  left: -8rem;
  transform: rotate(36deg);
}

.ambient--two {
  right: -8rem;
  bottom: 23%;
  transform: rotate(-36deg);
}

.hero {
  max-width: 56rem;
  text-align: center;
  animation: arrive 900ms ease-out both;
}

.mark {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 2.5rem;
  transform: rotate(45deg);
}

.mark span {
  position: absolute;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--green);
  border-radius: 50% 50% 8% 50%;
}

.mark span:nth-child(1) { top: 0; left: 0; }
.mark span:nth-child(2) { top: 0; right: 0; transform: rotate(90deg); }
.mark span:nth-child(3) { right: 0; bottom: 0; transform: rotate(180deg); }
.mark span:nth-child(4) { bottom: 0; left: 0; transform: rotate(270deg); }

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

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

.intro {
  margin: 2rem auto 2.25rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 350;
  line-height: 1.7;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 1.1rem;
  border: 1px solid rgba(243, 239, 229, 0.13);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.035);
  color: #d8ded9;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.status__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(116, 168, 137, 0.5);
  animation: pulse 2.4s infinite;
}

footer {
  position: absolute;
  bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #77847b;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__line {
  width: 2.5rem;
  height: 1px;
  background: rgba(119, 132, 123, 0.5);
}

@keyframes arrive {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  60% { box-shadow: 0 0 0 0.45rem rgba(116, 168, 137, 0); }
  100% { box-shadow: 0 0 0 0 rgba(116, 168, 137, 0); }
}

@media (max-width: 40rem) {
  .page::before { width: 120vw; }
  .mark { margin-bottom: 2rem; }
  .intro br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
