:root {
  --black: #050706;
  --white: #f3f4ef;
  --green: #b8ff14;
  --gray: #adb3ad;
  --line: #343934;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--black);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  height: 72px;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: absolute;
  z-index: 3;
  width: 100%;
}
.brand {
  font-size: 1.25rem;
  font-weight: 900;
}
.brand span,
em {
  color: var(--green);
  font-style: normal;
}
.mobile-break {
  display: none;
}
nav {
  display: flex;
  gap: 2rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}
.state {
  text-align: right;
  font-size: 0.72rem;
}
.state i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.5rem;
  background: var(--green);
  border-radius: 50%;
}
.hero {
  height: 92svh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 7, 6, 0.98) 0%,
    rgba(5, 7, 6, 0.82) 38%,
    rgba(5, 7, 6, 0.12) 75%
  );
}
.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  padding: 5rem 3rem 1rem;
}
.hero-copy p,
.belief > p,
.pipeline aside p,
.library > div > p,
.bridge > p {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--green);
}
.hero h1 {
  font-size: clamp(4.2rem, 10vw, 9.5rem);
  line-height: 0.82;
  letter-spacing: 0;
  margin: 1.4rem 0 2.5rem;
}
.hero-copy > span {
  display: block;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.5;
  color: #d8ddd8;
}
.hero-status {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 6, 0.78);
}
.hero-status b {
  padding: 1.2rem 3rem;
  border-right: 1px solid var(--line);
  font-size: 0.68rem;
}
.belief {
  padding: 8rem 3rem;
  border-bottom: 1px solid var(--line);
}
.belief h2,
.bridge h2 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.92;
  margin: 2rem 0 5rem;
}
.belief > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.belief span {
  padding: 1.5rem 0;
  border-right: 1px solid var(--line);
  font-weight: 800;
}
.pipeline {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--line);
}
.pipeline aside {
  padding: 6rem 3rem;
  border-right: 1px solid var(--line);
}
.pipeline aside h2 {
  font-size: 3rem;
}
.pipeline ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pipeline li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2rem 3rem;
  border-bottom: 1px solid var(--line);
}
.pipeline li:last-child {
  border: 0;
}
.pipeline li b {
  font-size: 1.3rem;
}
.pipeline li span {
  color: var(--gray);
}
.library {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  color: var(--black);
  border-bottom: 1px solid var(--black);
}
.library > div {
  padding: 7rem 3rem;
}
.library h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.9;
}
.copy {
  max-width: 620px;
  line-height: 1.7;
}
.metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid var(--black);
}
.metrics article {
  min-height: 250px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.metrics strong {
  font-size: 4rem;
  margin: auto 0;
}
.metrics span {
  font-size: 0.8rem;
}
.bridge {
  padding: 8rem 3rem;
  border-bottom: 1px solid var(--line);
}
.bridge h2 em {
  color: var(--green);
}
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
}
.flow span {
  padding: 2rem;
  text-align: center;
  font-weight: 800;
}
.flow i {
  color: var(--green);
}
.boundary {
  margin-top: 2rem;
  color: var(--gray);
}
footer {
  min-height: 100px;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
footer span {
  text-align: center;
  color: var(--gray);
  font-size: 0.75rem;
}
footer a {
  text-align: right;
  color: var(--green);
  font-size: 0.75rem;
}
@media (max-width: 760px) {
  .mobile-break {
    display: inline;
  }
  .desktop-space {
    display: none;
  }
  header {
    padding: 0 1rem;
    grid-template-columns: 1fr 1fr;
  }
  nav {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 88svh;
  }
  .hero-copy {
    width: 100%;
    padding: 8rem 1rem 8rem;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 11.5vw, 2.85rem);
    line-height: 0.88;
  }
  .hero-copy > span {
    max-width: 320px;
    font-size: 0.9rem;
    overflow-wrap: anywhere;
  }
  .hero-status {
    grid-template-columns: 1fr;
  }
  .hero-status b {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--line);
  }
  .belief,
  .bridge {
    padding: 5rem 1rem;
  }
  .belief > div,
  .pipeline,
  .library {
    grid-template-columns: 1fr;
  }
  .belief span {
    border-right: 0;
  }
  .pipeline aside {
    padding: 4rem 1rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .pipeline li {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
    gap: 0.5rem;
  }
  .library > div {
    padding: 5rem 1rem;
  }
  .metrics {
    border-left: 0;
  }
  .metrics article {
    min-height: 180px;
  }
  .flow {
    grid-template-columns: 1fr;
  }
  .flow i {
    text-align: center;
    transform: rotate(90deg);
  }
  footer {
    padding: 2rem 1rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  footer span,
  footer a {
    text-align: left;
  }
}
