:root {
  color-scheme: dark;
  --bg: #000;
  --text: #eee;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--bg);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.page {
  min-height: 100vh;
  padding: 98px 42px 70px;
}

.header { margin: 0; }

.brand {
  display: inline-block;
  color: #f7f7f7;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -1.25px;
  text-rendering: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}
.brand strong { font-weight: 800; }
.brand span {
  font-weight: 500;
  color: #ededed;
}

.hero {
  width: min(590px, 100%);
  margin-left: clamp(210px, 22vw, 305px);
  margin-top: 222px;
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: 44px;
  line-height: 1.28;
  letter-spacing: -1px;
  font-weight: 700;
}
h1 strong { font-weight: 700; }

.contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 137px;
  height: 46px;
  margin-top: 86px;
  color: #111;
  background: #e8e8e8;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 760px) {
  .page { padding: 72px 30px 54px; }
  .hero { margin-top: 145px; max-width: 100%; }
  h1 { font-size: clamp(42px, 10vw, 58px); line-height: 1.14; }
  .contact { margin-top: 74px; }
}
