:root {
  color-scheme: dark;
  --black: oklch(5.5% 0.006 260);
  --ink: oklch(94% 0.008 260);
  --muted: oklch(67% 0.012 260);
  --dim: oklch(34% 0.014 260);
  --line: oklch(20% 0.012 260);
  --accent: oklch(78% 0.11 145);
  --rail-offset: 0.08em;
  font-family:
    "Satoshi",
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  background: var(--black);
  color: var(--ink);
  overflow: hidden;
  font-family:
    "Satoshi",
    Arial,
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.landing {
  height: 100svh;
  padding: clamp(14px, 2vw, 26px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  position: relative;
  overflow: hidden;
}

.topline,
.bottomline,
.hero {
  position: relative;
  z-index: 1;
  margin-left: var(--rail-offset);
}

.topline,
.bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.15vw, 1rem);
  font-weight: 500;
  letter-spacing: 0;
}

.topline a {
  color: var(--ink);
}

.topline a:hover,
.bottomline a:hover {
  color: var(--accent);
}

.hero {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 1.4vh, 18px) 0;
}

.kicker {
  margin: clamp(8px, 1.3vh, 14px) 0 0;
  color: var(--accent);
  font-size: clamp(1rem, min(2vh, 1.6vw), 1.55rem);
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

h1 {
  margin: 0;
  max-width: 8.7ch;
  font-size: clamp(4.9rem, min(25.5vh, 19vw), 16.8rem);
  line-height: 0.78;
  font-weight: 900;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h1 span:not(:first-child) {
  margin-left: -0.08em;
}

.bottomline {
  justify-content: flex-start;
  flex-wrap: wrap;
  color: var(--dim);
}

.bottomline a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.bottomline a:not(:last-child)::after {
  content: "/";
  color: var(--line);
}

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

  .topline {
    align-items: flex-start;
  }

  .hero {
    padding: 10px 0;
  }

  .kicker {
    margin: 0;
    white-space: normal;
    font-size: clamp(0.95rem, 4.4vw, 1.25rem);
  }

  h1 {
    max-width: 8.7ch;
    font-size: clamp(3.65rem, min(19vh, 21vw), 7.6rem);
    line-height: 0.8;
  }
}
