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

:root {
  --bg: #F9F9F9;
  --color-dark: #000000;
  --color-muted: #898989;
  --color-location: #8F8F8F;
  --color-heading: #BCBCBC;
  --color-btn-bg: #262626;
  --color-btn-text: #FFFFFF;
  --font-mono: 'PT Mono', monospace;
  --font-display: 'Yantramanav', sans-serif;
}

body {
  background: var(--bg);
  min-height: 100vh;
}

.page {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 8px;
}

/* ── Header ─────────────────────────────────────── */

.header {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__item {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--color-muted);
  user-select: none;
}

.nav__item--active {
  color: var(--color-dark);
}

.location {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-location);
}

/* ── Main content ────────────────────────────────── */

.main {
  flex: 1;
  padding: 100px 36px 0;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.content__text {
  display: flex;
  flex-direction: column;
}

.heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 64px;
  line-height: 1.5;
  letter-spacing: -1.28px;
  color: var(--color-heading);
}

.heading__accent {
  color: #1c1c1c;
}

.subtext {
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.1;
  color: var(--color-muted);
}

/* ── Buttons ─────────────────────────────────────── */

.buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 10px 18px;
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: default;
  user-select: none;
}

.btn--active {
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn--active:hover {
  background: #3a3a3a;
}
