@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&family=Outfit:wght@600;700&display=swap');

:root{
  --graphite:#0b0f13;
  --panel:#131b22;
  --white:#dfeaf0;
  --muted:#8ea1ad;
  --turquoise:#48d8c8;
  --orange:#f28a4b;
  --blue:#4d8eea;
  --line:#2b3943;
}

*{box-sizing:border-box}

body{
  margin:0;
  color:var(--white);
  background:
    linear-gradient(rgba(72,216,200,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(72,216,200,.035) 1px,transparent 1px),
    var(--graphite);
  background-size:2.5rem 2.5rem;
  font-family:"IBM Plex Mono",monospace;
}

nav{
  padding:1.3rem max(1.3rem,5vw);
  border-bottom:1px solid var(--line);
}

nav ul{
  display:flex;
  flex-wrap:wrap;
  gap:.7rem 1.3rem;
  margin:0;
  padding:0;
  list-style:none;
}

nav a{
  color:var(--turquoise);
  text-decoration:none;
}

header{
  min-height:70vh;
  display:grid;
  grid-template-columns:.82fr 1.18fr;
  align-items:center;
}

header > div{
  padding:4rem max(1.5rem,6vw);
}

header img{
  width:100%;
  height:70vh;
  object-fit:cover;
  opacity:.76;
  mask-image:linear-gradient(to left,#000 82%,transparent);
}

.eyebrow{
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.73rem;
}

h1,h2{font-family:Outfit,sans-serif}

h1{
  margin:.5rem 0 1rem;
  font-size:clamp(4rem,11vw,9rem);
  line-height:.82;
}

.lede{
  max-width:39rem;
  color:var(--muted);
  line-height:1.8;
}

.telemetry{
  display:grid;
  gap:.55rem;
  max-width:30rem;
  margin-top:2rem;
  padding:1rem;
  border:1px solid var(--line);
  background:rgba(19,27,34,.88);
}

.telemetry span{
  color:var(--muted);
  font-size:.72rem;
  text-transform:uppercase;
}

.telemetry strong{color:var(--turquoise)}

button{
  width:max-content;
  padding:.65rem .9rem;
  color:var(--graphite);
  border:0;
  background:var(--orange);
  font:inherit;
  font-weight:600;
  cursor:pointer;
}

main{
  max-width:72rem;
  margin:auto;
  padding:5rem 2rem 7rem;
}

article{
  color:#bac9d1;
  font-size:1rem;
  line-height:1.85;
}

article h2{
  color:var(--blue);
  font-size:2.5rem;
}

@media(max-width:760px){
  header{grid-template-columns:1fr}
  header img{height:40vh;mask-image:linear-gradient(to bottom,transparent,#000)}
}
