:root {
  color-scheme: dark;
  --background: #0b0d10;
  --foreground: #f4f1e8;
  --muted: #969b9f;
  --line: #2a2e32;
  --accent: #b9ee4c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  color: var(--foreground);
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgb(255 255 255 / 3%) calc(100% - 1px)) 0 0 / min(18vw, 15rem) 100%,
    radial-gradient(circle at 75% 22%, rgb(185 238 76 / 7%), transparent 30rem),
    var(--background);
}

main {
  display: grid;
  align-items: center;
  width: min(100% - 2.5rem, 78rem);
  margin-inline: auto;
  padding-block: clamp(5rem, 14vh, 10rem);
}

.identity {
  position: relative;
  max-width: 68rem;
  padding-left: clamp(1.25rem, 4vw, 4rem);
  border-left: 1px solid var(--line);
}

.identity::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 4.25rem;
  background: var(--accent);
}

.marker {
  margin: 0 0 clamp(2.5rem, 7vh, 5rem);
  color: var(--muted);
  font: 600 0.78rem/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.18em;
}

h1 {
  margin: 0;
  font-size: clamp(4.75rem, 18vw, 13rem);
  font-weight: 760;
  line-height: 0.78;
  letter-spacing: -0.085em;
}

h1 span {
  color: var(--accent);
}

.statement {
  max-width: 37rem;
  margin: clamp(3rem, 8vh, 6rem) 0 0;
  color: #c9ccca;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

footer {
  width: min(100% - 2.5rem, 78rem);
  margin-inline: auto;
  padding-block: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font: 500 0.75rem/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0.8rem rgb(185 238 76 / 35%);
}

@media (max-width: 36rem) {
  main,
  footer {
    width: min(100% - 1.5rem, 78rem);
  }

  .identity {
    padding-left: 1rem;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
