:root {
  --hub-ink: #0a0d0c;
  --hub-ink-soft: #131816;
  --hub-paper: #ffffff;
  --hub-lime: #c8ff27;
  --hub-blue: #173ee8;
  --hub-muted-dark: #aeb6b1;
  --hub-muted-light: #5e6661;
  --hub-line-dark: rgba(255, 255, 255, 0.18);
  --hub-line-light: rgba(10, 13, 12, 0.22);
  --hub-display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --hub-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hub-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--hub-ink);
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--hub-ink);
  color: var(--hub-paper);
  font-family: var(--hub-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
video {
  display: block;
  width: 100%;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--hub-lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid var(--hub-ink);
  background: var(--hub-lime);
  color: var(--hub-ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.hub-shell {
  min-height: 100vh;
  background: var(--hub-ink);
  overflow-x: clip;
}

.hub-container {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--hub-line-dark);
  background: rgba(10, 13, 12, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: var(--hub-paper);
  font-size: 1.4rem;
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--hub-lime);
  border-radius: 50%;
  color: var(--hub-lime);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.brand small {
  display: inline;
  margin-left: 9px;
  color: var(--hub-muted-dark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.1vw, 32px);
  color: #f5f7f5;
  font-size: 0.83rem;
  font-weight: 750;
}

.nav-links > a {
  position: relative;
  padding: 8px 0;
}

.nav-links > a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--hub-lime);
  content: "";
  transition: transform 220ms var(--hub-ease);
}

.nav-links > a:hover::after,
.nav-links > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links .login-link {
  border: 1px solid var(--hub-paper);
  padding: 9px 15px;
}

.nav-links .login-link::after {
  display: none;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #69706c;
}

.lang-toggle button,
.theme-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 850;
  padding: 7px 4px;
}

.lang-toggle button.is-active {
  color: var(--hub-lime);
}

.lang-divider {
  color: #67706b;
}

.theme-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--hub-line-dark);
  padding: 0;
  color: var(--hub-paper);
}

.theme-toggle svg {
  width: 15px;
  height: 15px;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(930px, 100vh);
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: center;
  padding-top: 118px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 78px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hub-line-dark), transparent);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: 60px 0 96px;
}

.hero h1,
.section-title,
.closing h2 {
  margin: 0;
  font-family: var(--hub-display);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-wrap: balance;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(4.4rem, 5.75vw, 6.35rem);
  text-transform: uppercase;
}

.hero h1 .accent {
  color: var(--hub-lime);
}

.hero-lede {
  max-width: 650px;
  margin: 34px 0 0;
  color: #d0d6d2;
  font-size: clamp(1.06rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.card-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 36px;
}

.button,
.text-link,
.waitlist-trigger {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
  padding: 0 16px 0 20px;
  background: transparent;
  color: inherit;
  font-family: var(--hub-body);
  font-size: 0.86rem;
  font-weight: 850;
  transition: transform 220ms var(--hub-ease), background 220ms ease, color 220ms ease;
}

.button:hover,
.text-link:hover,
.waitlist-trigger:hover {
  transform: translateY(-3px);
}

.button svg,
.text-link svg,
.waitlist-trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  border-color: var(--hub-lime);
  background: var(--hub-lime);
  color: var(--hub-ink);
}

.button-secondary {
  border-color: rgba(200, 255, 39, 0.55);
  color: var(--hub-paper);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 700px;
  align-self: stretch;
}

.hero-shot {
  position: absolute;
  right: -3%;
  width: min(730px, 92%);
  overflow: hidden;
  border: 2px solid var(--hub-lime);
  background: #101512;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.52);
  transition: transform 520ms var(--hub-ease), z-index 0s;
}

.hero-shot img {
  aspect-ratio: 16 / 9.25;
  object-fit: cover;
  object-position: top left;
}

.hero-shot:nth-child(1) {
  top: 9%;
  z-index: 1;
  transform: rotate(-3deg) translateX(2%);
}

.hero-shot:nth-child(2) {
  top: 35%;
  right: 2%;
  z-index: 2;
  transform: rotate(1.4deg);
}

.hero-shot:nth-child(3) {
  top: 63%;
  right: -1%;
  z-index: 3;
  transform: rotate(3.2deg) scale(0.96);
}

.hero-shot:hover,
.hero-shot:focus-visible {
  z-index: 8;
  transform: rotate(0deg) translateY(-10px) scale(1.01);
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--hub-muted-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-cue span:first-child {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--hub-lime);
  color: var(--hub-lime);
  font-size: 1.2rem;
}

.product-ticker {
  overflow: hidden;
  border-block: 1px solid var(--hub-line-dark);
  background: #0e1210;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}

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

.ticker-group span {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  color: #d9dedb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker-group span::after {
  width: 7px;
  height: 7px;
  background: var(--hub-lime);
  content: "";
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.catalog {
  position: relative;
  background: var(--hub-paper);
  color: var(--hub-ink);
  padding: 118px 0 128px;
}

.section-heading {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(300px, 0.56fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 64px;
}

.section-index {
  align-self: start;
  color: inherit;
  font-family: var(--hub-display);
  font-size: clamp(6.4rem, 10vw, 10.5rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.72;
}

.section-title {
  font-size: clamp(4.1rem, 6.25vw, 7.3rem);
  text-transform: uppercase;
}

.section-title .accent {
  color: #a4d900;
}

.section-intro {
  max-width: 480px;
  margin: 0;
  color: var(--hub-muted-light);
  font-size: 1.04rem;
}

.filters {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  border-bottom: 1px solid var(--hub-ink);
  margin: 0 0 36px auto;
}

.filter-button {
  min-width: 120px;
  border: 0;
  border-right: 1px solid var(--hub-line-light);
  background: transparent;
  color: var(--hub-ink);
  cursor: pointer;
  padding: 13px 18px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.filter-button:last-child {
  border-right: 0;
}

.filter-button.is-active {
  background: var(--hub-lime);
}

.featured-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.product-card {
  min-width: 0;
  border: 1px solid var(--hub-ink);
  background: var(--hub-paper);
  color: var(--hub-ink);
  transition: opacity 240ms ease, transform 420ms var(--hub-ease);
}

.product-card[hidden] {
  display: none;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hub-ink);
  background: #e8ece9;
}

.featured-products .product-media {
  aspect-ratio: 16 / 9.6;
}

.product-media img,
.product-media video {
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 700ms var(--hub-ease);
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

.product-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  min-height: 132px;
  padding: 18px 18px 20px;
}

.product-heading-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 7px;
}

.product-card h3,
.lab-card h3,
.mvp-copy h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.stage {
  display: inline-block;
  background: var(--hub-lime);
  color: var(--hub-ink);
  padding: 4px 7px;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-summary,
.lab-card p,
.mvp-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--hub-muted-light);
  font-size: 0.82rem;
}

.card-actions {
  align-items: center;
  justify-content: flex-end;
}

.text-link,
.waitlist-trigger {
  min-height: 40px;
  gap: 14px;
  border: 0;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.text-link svg,
.waitlist-trigger svg {
  box-sizing: content-box;
  border: 1px solid currentColor;
  padding: 9px;
}

.waitlist-trigger {
  color: #505753;
}

.core-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.core-rail .product-media {
  aspect-ratio: 16 / 10;
}

.core-rail .product-content {
  display: block;
  min-height: 160px;
}

.core-rail .card-actions {
  justify-content: space-between;
  margin-top: 18px;
}

.labs {
  position: relative;
  overflow: hidden;
  background: var(--hub-blue);
  color: var(--hub-paper);
  padding: 112px 0 100px;
}

.labs::after {
  position: absolute;
  right: -100px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(200, 255, 39, 0.45);
  border-radius: 50%;
  content: "";
}

.labs .section-heading {
  grid-template-columns: 150px minmax(0, 1fr) minmax(260px, 0.48fr);
  margin-bottom: 58px;
}

.labs .section-index {
  color: var(--hub-lime);
}

.labs .section-intro {
  color: rgba(255, 255, 255, 0.78);
}

.rail-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 16px;
}

.rail-control {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: var(--hub-paper);
  cursor: pointer;
}

.rail-control:hover {
  background: var(--hub-lime);
  color: var(--hub-ink);
}

.rail-control svg {
  width: 18px;
}

.lab-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-columns: minmax(270px, 0.82fr);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 0 0 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--hub-lime) rgba(255, 255, 255, 0.2);
  scrollbar-width: thin;
}

.lab-card {
  min-width: 0;
  scroll-snap-align: start;
}

.lab-card .media {
  display: block;
  overflow: hidden;
  height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: #eef2ef;
}

.lab-card .media img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: top;
  transition: transform 700ms var(--hub-ease);
}

.lab-card:hover .media img {
  transform: scale(1.035);
}

.lab-card-body {
  min-height: 150px;
  padding: 15px 0 0;
}

.lab-card h3 {
  font-size: 1.28rem;
}

.lab-card p {
  min-height: 48px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.76);
}

.lab-card .card-actions {
  justify-content: space-between;
  margin-top: 17px;
}

.lab-card .waitlist-trigger {
  color: rgba(255, 255, 255, 0.75);
}

.lab-card .text-link svg,
.lab-card .waitlist-trigger svg {
  border-color: rgba(255, 255, 255, 0.68);
}

.mvp-showcase {
  position: relative;
  background: var(--hub-ink);
  color: var(--hub-paper);
  padding: 118px 0 126px;
}

.mvp-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 66px;
}

.mvp-heading .section-title {
  max-width: 880px;
}

.mvp-heading .section-intro {
  color: var(--hub-muted-dark);
}

.mvp-list {
  display: grid;
  gap: 26px;
}

.mvp-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.65fr);
  min-height: 440px;
  border: 1px solid var(--hub-line-dark);
  background: var(--hub-ink-soft);
}

.mvp-card:nth-child(2) {
  grid-template-columns: minmax(330px, 0.65fr) minmax(0, 1.45fr);
  margin-left: 7%;
}

.mvp-card:nth-child(2) .mvp-media {
  order: 2;
}

.mvp-card:nth-child(3) {
  margin-right: 7%;
}

.mvp-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #eef1ee;
}

.mvp-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--hub-lime);
  content: "";
}

.mvp-media img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 800ms var(--hub-ease);
}

.mvp-card:hover .mvp-media img {
  transform: scale(1.025);
}

.mvp-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(34px, 4vw, 66px);
}

.mvp-copy h3 {
  position: relative;
  font-family: var(--hub-display);
  font-size: clamp(3.2rem, 5vw, 5.8rem);
  text-transform: uppercase;
}

.mvp-copy h3::after {
  position: absolute;
  top: 52%;
  left: calc(100% + 18px);
  width: 72px;
  height: 1px;
  background: var(--hub-lime);
  content: "";
}

.mvp-copy p {
  margin-top: 20px;
  color: var(--hub-muted-dark);
  font-size: 0.95rem;
}

.mvp-copy .card-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.mvp-copy .waitlist-trigger {
  color: var(--hub-muted-dark);
}

.closing {
  background: var(--hub-lime);
  color: var(--hub-ink);
  padding: 84px 0 70px;
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 70px;
  align-items: center;
}

.closing h2 {
  max-width: 980px;
  font-size: clamp(4.5rem, 7.2vw, 8rem);
}

.closing-actions {
  display: grid;
}

.closing .button {
  width: 100%;
}

.closing-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 58px;
}

.closing-line::before {
  flex: 1;
  height: 1px;
  background: var(--hub-ink);
  content: "";
}

.site-footer {
  border-top: 1px solid var(--hub-line-dark);
  background: var(--hub-ink);
  color: var(--hub-paper);
}

.footer-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--hub-muted-dark);
  font-size: 0.74rem;
}

.footer-brand {
  color: var(--hub-paper);
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  color: var(--hub-lime);
}

.waitlist-dialog {
  width: min(570px, calc(100% - 32px));
  border: 1px solid var(--hub-lime);
  border-radius: 0;
  padding: 0;
  background: var(--hub-ink);
  color: var(--hub-paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.65);
}

.waitlist-dialog::backdrop {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(8px);
}

.dialog-inner {
  position: relative;
  padding: 42px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--hub-line-dark);
  background: transparent;
  color: var(--hub-paper);
  cursor: pointer;
  font-size: 1.25rem;
}

.waitlist-dialog h2 {
  margin: 0;
  font-family: var(--hub-display);
  font-size: clamp(2.9rem, 8vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-transform: uppercase;
}

.waitlist-dialog .dialog-copy {
  margin: 16px 0 28px;
  color: var(--hub-muted-dark);
}

.waitlist-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.waitlist-row label {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waitlist-row input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-right: 0;
  border-radius: 0;
  background: #151a17;
  color: var(--hub-paper);
  padding: 15px 16px;
}

.waitlist-row button {
  border: 1px solid var(--hub-lime);
  background: var(--hub-lime);
  color: var(--hub-ink);
  cursor: pointer;
  padding: 15px 20px;
  font-weight: 900;
}

.waitlist-row button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--hub-muted-dark);
  font-size: 0.78rem;
}

.form-message.is-success {
  color: var(--hub-lime);
}

.form-message.is-error {
  color: #ff8d7d;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html[data-theme="light"] .site-header {
  border-bottom-color: var(--hub-line-light);
  background: rgba(255, 255, 255, 0.9);
}

html[data-theme="light"] .site-header .brand,
html[data-theme="light"] .site-header .nav-links,
html[data-theme="light"] .site-header .theme-toggle {
  color: var(--hub-ink);
}

html[data-theme="light"] .site-header .brand small {
  color: var(--hub-muted-light);
}

html[data-theme="light"] .site-header .login-link {
  border-color: var(--hub-ink);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .hero-visual {
    min-height: 610px;
  }

  .section-heading,
  .labs .section-heading {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .section-heading .section-intro {
    grid-column: 2;
  }

  .section-index {
    font-size: 7rem;
  }

  .mvp-card,
  .mvp-card:nth-child(2) {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  }
}

@media (max-width: 900px) {
  .hub-container {
    width: min(100% - 36px, 760px);
  }

  .nav {
    min-height: 70px;
  }

  .nav-product,
  .nav-newsletter,
  .theme-toggle {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 100px;
  }

  .hero-copy {
    padding: 54px 0 20px;
  }

  .hero h1 {
    max-width: 680px;
  }

  .hero-visual {
    min-height: 620px;
    margin: 10px -18px 0;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .labs .section-heading {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 20px;
  }

  .section-heading .section-intro {
    grid-column: 2;
  }

  .section-index {
    font-size: 5.2rem;
  }

  .featured-products {
    grid-template-columns: 1fr;
  }

  .core-rail {
    display: grid;
    grid-auto-columns: minmax(290px, 78%);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
  }

  .core-rail .product-card {
    scroll-snap-align: start;
  }

  .mvp-heading {
    display: block;
  }

  .mvp-heading .section-intro {
    margin-top: 24px;
  }

  .mvp-card,
  .mvp-card:nth-child(2) {
    grid-template-columns: 1fr;
    margin-right: 0;
    margin-left: 0;
  }

  .mvp-card:nth-child(2) .mvp-media {
    order: 0;
  }

  .closing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hub-container {
    width: min(100% - 28px, 520px);
  }

  .nav-links {
    gap: 9px;
    font-size: 0.72rem;
  }

  .nav-links .login-link {
    padding: 7px 9px;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding-top: 82px;
  }

  .hero-copy {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 16vw, 5.3rem);
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-shot {
    width: 95%;
  }

  .hero-shot:nth-child(1) {
    top: 5%;
  }

  .hero-shot:nth-child(2) {
    top: 31%;
  }

  .hero-shot:nth-child(3) {
    top: 58%;
  }

  .ticker-group span {
    padding: 14px 16px;
  }

  .catalog,
  .labs,
  .mvp-showcase {
    padding: 78px 0 84px;
  }

  .section-heading,
  .labs .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .section-index {
    margin-bottom: 32px;
    font-size: 4.4rem;
  }

  .section-title {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .section-intro,
  .section-heading .section-intro {
    margin-top: 22px;
  }

  .filters {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .filter-button {
    min-width: auto;
    flex: 0 0 auto;
    padding-inline: 14px;
  }

  .product-content {
    display: block;
  }

  .product-content .card-actions {
    justify-content: space-between;
    margin-top: 20px;
  }

  .core-rail {
    grid-auto-columns: 90%;
  }

  .lab-rail {
    grid-auto-columns: 82%;
  }

  .mvp-card {
    min-height: 0;
  }

  .mvp-media {
    min-height: 250px;
  }

  .mvp-copy h3::after {
    display: none;
  }

  .mvp-copy .card-actions {
    width: 100%;
    justify-content: space-between;
  }

  .closing h2 {
    font-size: clamp(3.7rem, 17vw, 5.4rem);
  }

  .footer-inner {
    display: grid;
    padding: 24px 0;
  }

  .waitlist-row {
    grid-template-columns: 1fr;
  }

  .waitlist-row input {
    border-right: 1px solid rgba(255, 255, 255, 0.35);
  }

  .dialog-inner {
    padding: 36px 22px 26px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
