:root {
  --ink: #101215;
  --surface: #171a1f;
  --surface-2: #22262d;
  --paper: #f4f0e7;
  --muted: #aaa69e;
  --line: #343942;
  --amber: #f3a712;
  --green: #93b29b;
  --red: #d95d4f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  align-items: center;
  background: rgba(16, 18, 21, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 64px;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.brand {
  color: var(--amber);
  font-size: 20px;
  font-weight: 900;
}

nav {
  display: flex;
  gap: 24px;
}

nav a,
footer a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

nav a:hover,
footer a:hover {
  color: var(--paper);
}

.hero {
  height: min(86vh, 820px);
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-shade {
  background: rgba(9, 10, 12, 0.42);
  inset: 0;
  position: absolute;
}

.hero-copy {
  left: clamp(20px, 8vw, 120px);
  max-width: 620px;
  position: absolute;
  top: 50%;
  transform: translateY(-44%);
}

.eyebrow {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.88;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  max-width: 900px;
}

h3 {
  font-size: 23px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  color: var(--paper);
  font-size: clamp(17px, 2vw, 21px);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button.primary {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
}

.button.secondary {
  background: rgba(16, 18, 21, 0.7);
}

.intro,
.launch {
  margin: 0 auto;
  max-width: 1120px;
  padding: 110px 24px;
}

.intro > p:last-child,
.launch > p {
  font-size: 18px;
  max-width: 700px;
}

.feature-grid {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article {
  min-height: 300px;
  padding: 52px clamp(24px, 5vw, 70px);
}

.feature-grid article + article {
  border-left: 1px solid var(--line);
}

.feature-grid span {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 70px;
}

.community-band {
  align-items: end;
  background: var(--surface);
  display: grid;
  gap: 60px;
  grid-template-columns: 2fr 1fr;
  padding: 110px clamp(24px, 8vw, 120px);
}

.community-band h2 {
  margin-bottom: 0;
}

.community-band > p {
  border-left: 3px solid var(--red);
  font-size: 17px;
  padding-left: 22px;
}

.launch {
  text-align: center;
}

.launch h2,
.launch p {
  margin-left: auto;
  margin-right: auto;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

footer div {
  display: flex;
  gap: 20px;
}

footer p {
  font-size: 12px;
  margin: 0;
}

.legal-main {
  margin: 0 auto;
  max-width: 820px;
  min-height: calc(100vh - 90px);
  padding: 130px 24px 80px;
}

.legal-main h1 {
  font-size: clamp(44px, 8vw, 76px);
}

.legal-main h2 {
  font-size: 23px;
  margin-top: 48px;
}

.legal-main li {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-main a {
  color: var(--amber);
}

@media (max-width: 760px) {
  .site-header nav {
    display: none;
  }

  .hero {
    height: 84vh;
    min-height: 590px;
  }

  .hero img {
    object-position: 64% center;
  }

  .hero-shade {
    background: rgba(9, 10, 12, 0.38);
  }

  .hero-copy {
    bottom: 40px;
    left: 20px;
    max-width: calc(100% - 40px);
    top: auto;
    transform: none;
  }

  h1 {
    font-size: 58px;
  }

  .intro,
  .launch {
    padding: 76px 20px;
  }

  .feature-grid,
  .community-band {
    display: block;
  }

  .feature-grid article {
    min-height: auto;
    padding: 38px 20px;
  }

  .feature-grid article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-grid span {
    margin-bottom: 40px;
  }

  .community-band {
    padding: 76px 20px;
  }

  .community-band > p {
    margin-top: 36px;
  }

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

  footer div {
    flex-wrap: wrap;
  }
}
