:root {
  color-scheme: dark;
  --background: #000;
  --surface: #121212;
  --surface-elevated: #1c1c1c;
  --text: #fff;
  --secondary: rgb(174 174 174);
  --tertiary: rgb(117 117 117);
  --border: rgb(255 255 255 / 16%);
  --radius: 22px;
  --button-radius: 18px;
  --max-width: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 7%) 0, transparent 180px),
    var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.page {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 22px;
}

.hero {
  min-height: 86vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.brand,
.nav-link,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
}

.brand img {
  border-radius: 9px;
}

.nav-link {
  color: var(--secondary);
  font-size: 15px;
  font-weight: 650;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 0 48px;
}

.eyebrow,
.label {
  margin: 0;
  color: var(--tertiary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 800px;
  margin-bottom: 18px;
  font-size: clamp(52px, 9vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: var(--secondary);
  font-size: clamp(18px, 3vw, 24px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: var(--button-radius);
  border: 1px solid var(--border);
  font-weight: 750;
}

.button.primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.button.secondary {
  background: var(--surface-elevated);
  color: #fff;
}

.button.full {
  width: 100%;
  margin-top: 8px;
}

.section {
  padding: 34px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 12px;
}

.card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card p:last-child {
  margin-bottom: 0;
}

.card .label {
  margin-bottom: 8px;
}

.card p {
  color: var(--secondary);
}

.email {
  display: inline-block;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 18px;
  font-weight: 750;
}

@media (max-width: 760px) {
  .page {
    padding: 18px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    padding: 58px 0 36px;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
