:root {
  color-scheme: dark;
  --bg: #0b0d0e;
  --ink: #f1f0ea;
  --muted: #929691;
  --line: #282c2b;
  --accent: #bdff36;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  font-synthesis: none;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 49.95%, rgb(255 255 255 / 2.5%) 50%, transparent 50.05%),
    var(--bg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.shell {
  display: grid;
  width: min(100% - 64px, 1440px);
  min-height: 100svh;
  margin: 0 auto;
  grid-template-rows: auto 1fr auto auto;
}

.masthead,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.masthead {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.mark {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .16em;
  text-decoration: none;
}

.mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
}

.status,
.eyebrow,
.section-label,
footer {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.status {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
}

.status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgb(189 255 54 / 8%);
}

.hero {
  align-self: center;
  max-width: 1140px;
  padding: clamp(92px, 14vh, 170px) 0 clamp(90px, 13vh, 150px);
}

.eyebrow {
  margin: 0 0 31px;
}

h1 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(53px, 8vw, 122px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}

h1 em {
  color: var(--muted);
  font-weight: 400;
}

.intro {
  max-width: 650px;
  margin: clamp(40px, 6vh, 70px) 0 0 auto;
  color: #c7c8c3;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 350;
  letter-spacing: -.015em;
  line-height: 1.55;
}

.capabilities {
  display: grid;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 3fr;
}

.section-label {
  margin: 5px 0 0;
}

.capabilities ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.capabilities li {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -.025em;
}

.capabilities li span {
  display: block;
  margin-bottom: 13px;
  color: #646964;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
}

footer {
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  body {
    background: var(--bg);
  }

  .shell {
    width: min(100% - 40px, 1440px);
  }

  .masthead {
    padding: 24px 0;
  }

  .status {
    font-size: 0;
  }

  .hero {
    align-self: start;
    padding: 100px 0 88px;
  }

  h1 {
    font-size: clamp(49px, 14vw, 76px);
    line-height: .94;
  }

  .intro {
    margin-left: 0;
  }

  .capabilities {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .capabilities ul {
    gap: 26px 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  footer {
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
  }

  footer p:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero > *,
  .capabilities {
    animation: enter .8s cubic-bezier(.2, .7, .2, 1) both;
  }

  .hero h1 { animation-delay: 80ms; }
  .hero .intro { animation-delay: 160ms; }
  .capabilities { animation-delay: 240ms; }

  @keyframes enter {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
