:root {
  color-scheme: dark;
  --bg: #0b0c0a;
  --ink: #f7f1e4;
  --muted: #a9a091;
  --line: rgba(247, 241, 228, 0.13);
  --gold: #d6a84f;
  --teal: #47b8a9;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 14%, rgba(214, 168, 79, 0.16), transparent 30rem),
    radial-gradient(circle at 76% 72%, rgba(71, 184, 169, 0.1), transparent 24rem),
    linear-gradient(180deg, #11130f 0%, var(--bg) 58%, #070806 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 48px 20px;
}

.page::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid var(--line);
  pointer-events: none;
}

.page::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 241, 228, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 241, 228, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  display: grid;
  justify-items: center;
  text-align: center;
}

.logo {
  width: clamp(190px, 30vw, 310px);
  height: auto;
  margin-bottom: 26px;
  color: var(--ink);
  filter:
    drop-shadow(0 0 36px rgba(214, 168, 79, 0.22))
    drop-shadow(0 30px 70px rgba(0, 0, 0, 0.62));
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 16vw, 164px);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
}

.lede {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.35;
}

.note {
  margin: 30px 0 0;
  color: rgba(247, 241, 228, 0.62);
  font-size: 14px;
  letter-spacing: 0.03em;
}

@media (max-width: 520px) {
  .page {
    padding: 36px 18px;
  }

  .page::before {
    inset: 12px;
  }

  .logo {
    width: 188px;
    margin-bottom: 22px;
  }
}
