:root {
  --bg: #050505;
  --text: #f3f3ee;
  --muted: #9d9d96;
  --line: rgba(255, 255, 255, 0.14);
  color: var(--text);
  color-scheme: dark;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  line-height: 1.5;
  font-weight: 400;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #090909 0%, #050505 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.16;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: flex-end;
  padding: 28px 0 0;
}

.brand {
  display: inline-flex;
  width: clamp(148px, 18vw, 220px);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.intro {
  min-height: calc(100vh - 92px);
  display: grid;
  align-content: center;
  gap: 28px;
  max-width: 760px;
  padding: 0 0 14vh;
}

.copy,
.service__title {
  margin: 0;
  color: var(--muted);
}

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

.service__title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.copy {
  max-width: 54ch;
  font-size: clamp(0.98rem, 1.8vw, 1.08rem);
  line-height: 1.8;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(1100px, calc(100% - 28px));
  }

  .site-header {
    padding-top: 18px;
  }

  .intro {
    min-height: calc(100vh - 72px);
    padding-bottom: 10vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
