:root {
  --bg: #0e0e0e;
  --text: #ececec;
  --muted: #6b6b6b;
  --faint: #444444;
  --line: #1f1f1f;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}

.hero {
  min-height: 84vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 46px;
}

.hero h1 {
  font-weight: 700;
  font-size: clamp(56px, 13vw, 150px);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.hero p {
  margin-top: 22px;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: var(--muted);
}

.soft {
  border-top: 1px solid var(--line);
}

.soft a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 34px 0;
  max-width: 62ch;
}

.soft h2 {
  font-weight: 700;
  font-size: 23px;
  letter-spacing: -0.01em;
  display: inline-block;
}

.soft a:hover h2 {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.soft p {
  margin-top: 6px;
  font-size: 15px;
  color: var(--muted);
}

footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 44px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--faint);
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
}
