:root {
  --ink: #f2f4ef;
  --muted: #9aa39b;
  --night: #0a0d0c;
  --lime: #c7ff69;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.landing {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: 32px clamp(24px, 5vw, 76px) 28px;
}

.grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.ambient {
  position: absolute;
  z-index: -2;
  width: 48vw;
  height: 48vw;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
}

.ambient-one {
  top: -22vw;
  right: -10vw;
  background: var(--lime);
}

.ambient-two {
  bottom: -36vw;
  left: -20vw;
  background: #4d91ff;
}

.topbar,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.wordmark span {
  color: var(--lime);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(199, 255, 105, 0.8);
  animation: breathe 2.4s ease-in-out infinite;
}

.hero {
  align-self: center;
  width: min(1040px, 100%);
  padding-block: clamp(80px, 14vh, 160px);
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--lime);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(58px, 10vw, 150px);
  font-weight: 520;
  letter-spacing: -0.075em;
  line-height: 0.85;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 244, 239, 0.48);
}

.intro {
  max-width: 520px;
  margin: clamp(34px, 5vw, 62px) 0 0 clamp(0px, 12vw, 174px);
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 380;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

footer {
  color: #687169;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@media (max-width: 640px) {
  .landing {
    padding: 24px 20px 22px;
  }

  .grid {
    background-size: 48px 48px;
  }

  h1 {
    font-size: clamp(53px, 18vw, 82px);
    line-height: 0.91;
  }

  .intro {
    max-width: 330px;
    margin-top: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot {
    animation: none;
  }
}
