:root {
  color-scheme: dark;
  --ink: #f7f4ed;
  --muted: #aaa7a0;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #c8ff62;
  --background: #10110f;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 6vw;
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--background);
  background-size: 72px 72px;
  font-family: "DM Sans", sans-serif;
}

header, footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

header {
  height: 100px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -.03em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #11120f;
  background: var(--accent);
  font-family: "Playfair Display", serif;
}

.status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5vh 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(78px, 12vw, 180px);
  font-weight: 600;
  line-height: .75;
  letter-spacing: -.07em;
}

h1 em {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}

.intro {
  margin: 38px 0 30px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}

.button {
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 15px 18px 15px 22px;
  border-radius: 999px;
  color: #11120f;
  background: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button span { font-size: 19px; }
.button:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(200, 255, 98, .18); }

footer {
  height: 74px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

footer b { color: var(--accent); }

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.glow-one {
  width: 36vw;
  height: 36vw;
  right: -12vw;
  top: 18vh;
  border: 1px solid rgba(200, 255, 98, .18);
  box-shadow: inset 0 0 120px rgba(200, 255, 98, .035);
}

.glow-two {
  width: 12vw;
  height: 12vw;
  right: 15vw;
  top: 34vh;
  background: rgba(200, 255, 98, .04);
  filter: blur(35px);
}

@media (max-width: 640px) {
  body { padding: 0 24px; }
  header { height: 82px; }
  h1 { font-size: clamp(72px, 25vw, 112px); line-height: .8; }
  .intro { margin-top: 30px; }
  .desktop { display: none; }
  footer span:last-child { display: none; }
  .glow-one { width: 95vw; height: 95vw; right: -50vw; }
}

