@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #08080f;
  --ink: #ececf4;
  --muted: #90909e;
  --dim: #5e5e6c;
  --line: rgba(232, 232, 240, 0.14);
  --line-soft: rgba(232, 232, 240, 0.08);
  --purple: #6d4aff;
  --purple-soft: rgba(109, 74, 255, 0.55);
  --blue: #8cc4dc;
  --font: "Space Grotesk", "Segoe UI", Helvetica, Arial, sans-serif;
  --display: "Quantico", "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --spine: 40rem;
  --section-width: 74rem;
  --section-rule-width: min(var(--section-width), calc(100% - var(--gutter) * 2));
  --assemble-max: 90rem;
  --gutter: 1.5rem;
  --header-h: 4.25rem;
  --header-float: 15px;
  --header-overhang: 30px;
  --header-glass: rgba(8, 8, 15, 0.55);
  --radius: 0.75rem;
  --header-width: min(calc(var(--spine) + var(--header-overhang)), calc(100% - var(--gutter) * 2 + var(--header-overhang)));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

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

a:hover {
  color: #fff;
}

#iso-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.site {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  padding: 0.4rem 0.7rem;
  background: var(--ink);
  color: var(--bg);
  z-index: 20;
}

.skip:focus {
  top: 0.75rem;
}

/* Glass card
   ------------------------------------------------------------------ */

.glass-card,
.site-header,
.landing-header {
  background: var(--header-glass);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

/* Header
   ------------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: var(--header-float);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: var(--header-width);
  height: var(--header-h);
  margin: var(--header-float) auto 0;
  padding: 0 1.25rem;
}

.header-bar {
  display: contents;
}

.nav-drawer {
  display: contents;
}

.nav-toggle {
  display: none;
}

.site-header[data-rest-header] {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(-1 * (var(--header-h) + var(--header-float) + 1rem));
  margin-top: 0;
  transform: none;
  transition: top 0.35s ease;
  pointer-events: none;
}

.site-header[data-rest-header].is-shown {
  top: var(--header-float);
  pointer-events: auto;
}

.logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.logo img {
  display: block;
  height: 32px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav a {
  color: var(--muted);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #fff;
}

.nav-disabled {
  position: relative;
  color: #4a4a56;
  cursor: default;
  user-select: none;
}

.nav-disabled:focus {
  outline: none;
}

.nav-disabled:focus-visible {
  outline: 1px solid var(--line);
  outline-offset: 0.3rem;
  border-radius: 0.15rem;
}

.nav-coming-soon {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.3rem);
  z-index: 2;
  padding: 0.12em 0.4em;
  border: 1px solid var(--line);
  border-radius: 0.4rem;
  background: rgba(8, 8, 15, 0.92);
  color: var(--muted);
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.15rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-disabled:hover .nav-coming-soon,
.nav-disabled:focus-visible .nav-coming-soon {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-disabled.is-coming-soon .nav-coming-soon {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Layout
   ------------------------------------------------------------------ */

.spine {
  width: min(var(--spine), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

main {
  flex: 1 0 auto;
}

.kicker {
  margin: 0 0 0.85rem;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
}

/* Landing chrome + hero type
   ------------------------------------------------------------------ */

.landing-chrome {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 15, 0.9) 0%,
    rgba(8, 8, 15, 0.55) 58%,
    rgba(8, 8, 15, 0) 100%
  );
}

.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: var(--header-width);
  height: var(--header-h);
  margin: var(--header-float) auto 0;
  padding: 0 1.25rem;
  pointer-events: auto;
}

.landing-hero {
  pointer-events: auto;
  padding: 2.5rem 0 5.5rem;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.2;
}

.landing-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.2rem, 5.6vw, 3.85rem);
  font-weight: 400;
  letter-spacing: -0.038em;
}

.hero-break {
  white-space: nowrap;
}

.landing-hero .lede {
  font-size: 1.12rem;
  color: #c8c8d4;
  max-width: 36rem;
  text-wrap: pretty;
}

.hero-stage {
  width: 100%;
  max-width: 34rem;
  height: clamp(16rem, 28vw, 21rem);
}

.hero-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Partners
   ------------------------------------------------------------------ */

.partners,
.capabilities,
.products {
  border-top: none;
  background-image: linear-gradient(var(--line), var(--line));
  background-size: var(--section-rule-width) 1px;
  background-position: top center;
  background-repeat: no-repeat;
}

.partners {
  padding: 3.5rem 0 3.25rem;
  text-align: center;
}

.partners .spine {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.partner-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10.75rem;
  height: 52px;
  padding: 0.45rem 0.7rem;
  background: #f3f3f7;
  border-radius: 2px;
}

.partner-mark img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.partner-mark.hli img {
  height: 36px;
}

/* Mission overlay
   ------------------------------------------------------------------ */

.mission-card {
  --mission-kicker: 0;
  --mission-headline: 0;
  --mission-body: 0;
  position: absolute;
  z-index: 3;
  left: var(--header-float);
  bottom: 3rem;
  width: min(28rem, var(--header-width));
  padding: 1.05rem 1.25rem 1.15rem;
  overflow: hidden;
  opacity: var(--mission-kicker);
  transform: translateY(calc((1 - var(--mission-kicker)) * 0.85rem));
  pointer-events: none;
}

.mission-card[aria-hidden="false"] {
  pointer-events: auto;
}

.mission-card .kicker {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
}

.mission-reveal {
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.mission-reveal[data-mission-stage="headline"] {
  opacity: var(--mission-headline);
}

.mission-reveal[data-mission-stage="body"] {
  opacity: var(--mission-body);
}

.mission-reveal-inner {
  min-height: 0;
}

.mission-reveal[data-mission-stage="headline"] .mission-reveal-inner {
  padding-top: 0.85rem;
}

.mission-reveal[data-mission-stage="body"] .mission-reveal-inner {
  padding-top: 0.85rem;
}

.mission-card h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: pretty;
}

.mission-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

@media (prefers-reduced-motion: reduce) {
  .mission-card {
    --mission-kicker: 1;
    --mission-headline: 1;
    --mission-body: 1;
    opacity: 1;
    transform: none;
  }

  .mission-reveal {
    height: auto;
    opacity: 1;
  }
}

/* Themes: Speed / Cost / Mass
   ------------------------------------------------------------------ */

.themes {
  position: relative;
  padding: 0.5rem 0 3.5rem;
  overflow: visible;
}

.theme-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 3.5rem;
  align-items: center;
  width: min(var(--section-width), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  padding: 4.25rem 0;
  border-top: 1px solid var(--line-soft);
}

.theme-visual {
  position: static;
  display: block;
  width: 100%;
  max-width: 34rem;
  height: auto;
  justify-self: end;
  opacity: 0.94;
}

.theme-index {
  display: block;
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.theme-row h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3.2vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.theme-row p {
  margin: 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.theme-speed .theme-copy,
.theme-mass .theme-copy {
  justify-self: start;
  max-width: 30rem;
  padding-left: 1.85rem;
}

.theme-speed .theme-visual,
.theme-mass .theme-visual {
  width: auto;
  max-height: 21rem;
}

.theme-cost .theme-copy {
  justify-self: end;
  align-self: start;
  max-width: 30rem;
  padding-right: 1.5rem;
  text-align: left;
}

.theme-cost .hero-stage {
  justify-self: start;
  align-self: start;
  margin: 0;
  height: 14rem;
}

/* Scroll assembly
   ------------------------------------------------------------------ */

.assemble-scroll {
  height: 320vh;
  position: relative;
  border-top: none;
  margin-top: 0;
}

.assemble-sticky {
  position: sticky;
  top: 0;
  width: min(100%, var(--assemble-max));
  height: 100vh;
  margin-inline: auto;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  z-index: 1;
  overflow: visible;
}

.assemble-sticky canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* Capabilities
   ------------------------------------------------------------------ */

.capabilities {
  padding: 2.15rem 0 4.5rem;
}

.capabilities h2 {
  margin: 0 0 2.25rem;
  font-size: clamp(1.65rem, 3.2vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

.cap {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
}

.cap svg {
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 0.85rem;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.cap h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.cap p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Products
   ------------------------------------------------------------------ */

.products {
  padding: 5rem 0 6rem;
}

.products .kicker {
  margin-bottom: 1.65rem;
}

.product {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem 1.5rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line-soft);
}

.product:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.status {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  padding-top: 0.35rem;
}

.status.is-coming {
  color: var(--dim);
}

.product h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 400;
}

.product p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

#partners,
#mission,
#themes,
#mass,
#assemble,
#work,
#products,
#speed {
  scroll-margin-top: 4.5rem;
}

.page-block {
  padding: 5.5rem 0 7rem;
  min-height: calc(100vh - var(--header-h) - 5.5rem);
}

.page-block h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

/* Team
   ------------------------------------------------------------------ */

.team-page .spine {
  margin-bottom: 2.25rem;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  width: min(52rem, calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.team-card {
  overflow: hidden;
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
}

.team-card-body {
  padding: 1.05rem 1.25rem 1.15rem;
}

.team-card h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.team-card .kicker {
  margin: 0 0 0.85rem;
}

.team-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.team-card li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.team-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: #fff;
  border-radius: 1px;
}

.page-block .note {
  margin: 0;
  color: var(--muted);
  max-width: 32rem;
}

.contact-layout {
  display: grid;
  gap: 1.25rem;
}

.contact-layout a.mail {
  color: var(--ink);
  border-bottom: 1px solid var(--purple-soft);
}

.contact-layout a.mail:hover {
  color: #fff;
}

.form {
  display: grid;
  gap: 0.9rem;
  max-width: 28rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(8, 8, 15, 0.65);
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.95rem;
}

.form input:focus,
.form textarea:focus {
  outline: 1px solid var(--purple);
  border-color: var(--purple);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form button {
  justify-self: start;
  margin-top: 0.25rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.form button:hover {
  background: var(--ink);
  color: var(--bg);
}

.form-status {
  min-height: 1.25rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Footer
   ------------------------------------------------------------------ */

.site-footer {
  padding: 1.35rem var(--gutter);
  border-top: 1px solid var(--line-soft);
  font-family: var(--font);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dim);
}

.site-footer .spine {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
}

.site-footer a {
  color: var(--dim);
}

.site-footer a:hover {
  color: var(--ink);
}

/* Responsive
   ------------------------------------------------------------------ */

@media (max-width: 900px) {
  .theme-row {
    grid-template-columns: 1fr;
    row-gap: 1.75rem;
    column-gap: 0;
    padding: 3.25rem 0;
  }

  .theme-visual {
    justify-self: center;
    max-width: 28rem;
    opacity: 0.88;
  }

  .theme-speed .theme-visual,
  .theme-mass .theme-visual {
    width: 100%;
    max-height: none;
  }

  .theme-speed .theme-copy,
  .theme-cost .theme-copy,
  .theme-mass .theme-copy {
    justify-self: stretch;
    padding-left: 0;
    padding-right: 0;
    max-width: 32rem;
  }

  .theme-cost .hero-stage {
    justify-self: stretch;
    max-width: none;
    height: 13.5rem;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 1.1rem;
    --header-h: auto;
    --header-overhang: 20px;
    --nav-panel-gap: 0.5rem;
    --section-rule-width: 100%;
  }

  .theme-row {
    width: 100%;
    padding-inline: var(--gutter);
  }

  .site-header,
  .landing-header {
    display: block;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    overflow: visible;
  }

  .landing-header {
    position: relative;
    top: auto;
  }

  .site-header[data-rest-header] {
    position: fixed;
    top: calc(-1 * (4.75rem + var(--header-float)));
  }

  .site-header[data-rest-header].is-shown {
    top: var(--header-float);
  }

  .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    position: relative;
    z-index: 2;
    padding: 0.75rem 1.1rem;
  }

  .glass-card,
  .header-bar {
    background: var(--header-glass);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.25rem;
    height: 2.25rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
  }

  .nav-toggle-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 1.15rem;
  }

  .nav-toggle-icon span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    border-radius: 1px;
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  .is-open .nav-toggle-icon span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .is-open .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .is-open .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .logo img {
    height: 28px;
  }

  .nav-drawer {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1;
    margin-top: 0;
    overflow: hidden;
    max-height: 0;
    background: transparent;
    border: 0;
    border-radius: var(--radius);
    pointer-events: none;
    transition: max-height 0.35s ease, margin-top 0.35s ease;
  }

  .is-open .nav-drawer {
    max-height: 16rem;
    margin-top: var(--nav-panel-gap);
    background: var(--header-glass);
    border: 1px solid var(--line-soft);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    pointer-events: auto;
  }

  .site-header .nav,
  .landing-header .nav {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    width: auto;
    margin: 0;
    padding: 1rem 1.1rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
  }

  .site-header.is-open .nav,
  .landing-header.is-open .nav {
    transform: translateY(0);
  }

  .nav a,
  .nav-disabled {
    white-space: nowrap;
  }

  .nav-coming-soon {
    left: calc(100% + 0.45rem);
    top: 50%;
    right: auto;
    transform: translateY(-50%) translateX(0.15rem);
  }

  .nav-disabled:hover .nav-coming-soon,
  .nav-disabled:focus-visible .nav-coming-soon,
  .nav-disabled.is-coming-soon .nav-coming-soon {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
  }

  .theme-visual {
    max-width: 22rem;
  }

  .landing-hero {
    padding: 1.6rem 0 3.75rem;
  }

  .cap-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card h2 {
    font-size: 1.45rem;
  }

  .product {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .hero-stage {
    height: 15rem;
  }

  .assemble-scroll {
    height: 290vh;
  }

  .assemble-sticky {
    top: 0;
    width: min(100%, var(--assemble-max));
    height: 100vh;
    margin-inline: auto;
  }

  .mission-card {
    left: 0;
    right: 0;
    bottom: var(--header-float);
    width: var(--header-width);
    margin-inline: auto;
    padding: 0.9rem 1.1rem 1.05rem;
  }

  .mission-card h2 {
    font-size: 1.7rem;
  }
}
