:root {
  color-scheme: dark;
  --bg: #08100d;
  --text: #efffed;
  --green: #67d68a;
  --green-soft: rgba(103, 214, 138, 0.2);
  --ink: #020503;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Ribeye", "Trebuchet MS", cursive;
}

.site-header {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 0 clamp(16px, 6vw, 90px);
}

.nav {
  display: flex;
  gap: 16px;
  color: rgba(239, 255, 237, 0.82);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  padding: 6px 12px;
}

.nav a.active {
  background: var(--green-soft);
  color: var(--text);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 116px clamp(16px, 6vw, 90px) 72px;
}

.hero-copy {
  display: grid;
  gap: 52px;
  justify-items: start;
  max-width: 720px;
}

.brand {
  color: var(--green);
  font-size: clamp(4.4rem, 8.2vw, 9.8rem);
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.tagline {
  max-width: 560px;
  color: rgba(239, 255, 237, 0.78);
  font-family: "Space Mono", "Courier New", monospace;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
}

.showpiece {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.app-icon {
  width: min(58vw, 420px);
  height: auto;
  display: block;
  border-radius: 22%;
  border: 1px solid rgba(239, 255, 237, 0.18);
}

.page-content {
  min-height: 100vh;
  display: grid;
  place-items: start;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 230px clamp(16px, 6vw, 90px) 72px;
}

.page-copy {
  display: grid;
  gap: 42px;
}

.page-copy .big {
  color: var(--text);
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.page-copy a {
  color: var(--green);
}

@media (max-width: 800px) {
  .site-header {
    top: 16px;
    justify-content: center;
  }

  .nav {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 6px;
    font-size: 0.78rem;
  }

  .nav a {
    padding: 6px 8px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 108px;
    gap: 42px;
  }

  .hero-copy {
    gap: 32px;
  }

  .brand {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }

  h1 {
    font-size: clamp(1.72rem, 7vw, 2.75rem);
    line-height: 1.12;
  }

  .showpiece {
    justify-items: start;
  }

  .app-icon {
    width: min(72vw, 280px);
  }

  .page-content {
    padding: 140px 8vw 60px;
  }

  .page-copy {
    gap: 28px;
  }

  .page-copy .big {
    font-size: clamp(1.5rem, 6vw, 2.25rem);
    line-height: 1.22;
  }
}
