:root {
  --paper: #ffffff;
  --ink: #102b43;
  --moss: #27323c;
  --line: #e7e7e7;
  --lime: #1f4f78;
  color-scheme: light;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--lime);
  color: var(--paper);
}

a:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 4px;
}

.site-shell {
  width: min(100%, 1152px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-link img {
  width: 28px;
  height: 28px;
  flex: none;
}

.wordmark {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.06em;
}

.hero {
  display: grid;
  flex: 1;
  align-items: center;
  gap: 64px;
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}

.hero h1 {
  margin: 0;
  font-size: 60px;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.hero-description {
  max-width: 576px;
  margin: 32px 0 0;
  color: var(--moss);
  font-size: 18px;
  line-height: 32px;
}

.ventures {
  max-width: 448px;
  padding-left: 24px;
}

.ventures h2 {
  margin: 0 0 16px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.venture-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.venture {
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid var(--line);
  padding: 0 24px;
  color: var(--moss);
}

.venture-link {
  color: inherit;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  text-decoration: none;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
}

.venture-link:hover {
  text-decoration-color: var(--ink);
}

.venture-description {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--moss);
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 640px) {
  .site-shell {
    padding-right: 40px;
    padding-left: 40px;
  }

  .site-header {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-description {
    font-size: 20px;
    line-height: 32px;
  }

  .ventures {
    padding-left: 32px;
  }
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 96px;
  }

  .hero h1 {
    font-size: 96px;
  }

  .ventures {
    justify-self: end;
  }
}
