:root {
  --black: #050505;
  --white: #f5f5f2;
  --muted: #777772;
  --line: rgba(255, 255, 255, 0.16);
  --side: max(24px, calc((100vw - 1320px) / 2));
  --header: 64px;
  --sans:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial,
    sans-serif;
  --serif: "Iowan Old Style", Baskerville, "Times New Roman", serif;
  color-scheme: dark;
  font-family: var(--sans);
}
* {
  box-sizing: border-box;
}
html {
  scroll-snap-type: y proximity;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip {
  position: fixed;
  z-index: 200;
  top: -70px;
  left: 20px;
  padding: 11px 16px;
  background: #fff;
  color: #000;
}
.skip:focus {
  top: 14px;
}
.future-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: var(--header);
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(5, 5, 5, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(24px) saturate(140%);
}
.future-header > a:first-child,
.future-header nav {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.future-header > a:first-child {
  justify-self: start;
  color: #8a8a86;
}
.future-brand {
  justify-self: center;
  line-height: 0;
}
.future-brand img {
  display: block;
  width: 158px;
  height: auto;
}
.future-header nav {
  justify-self: end;
  display: flex;
  gap: 22px;
}
.future-page > section {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 0;
  padding: calc(var(--header) + 44px) var(--side) 42px;
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  overflow: hidden;
  border-bottom: 1px solid #202020;
}
.future-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.future-meta {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.future-hero h1 {
  max-width: 1120px;
  margin: auto 0 0;
  font-size: clamp(64px, 10.4vw, 158px);
  font-weight: 240;
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.future-hero h1 em {
  display: block;
  color: #8a8781;
  font-family: var(--serif);
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: -0.03em;
}
.future-hero > p {
  max-width: 620px;
  margin: 34px 0 0;
  color: #8c8c88;
  font-size: 15px;
  line-height: 1.6;
}
.product-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  align-items: center;
}
.future-page #ordo {
  background: linear-gradient(180deg, #020202 0%, #060606 100%);
}
.future-page #vela {
  background: linear-gradient(180deg, #040404 0%, #060606 100%);
}
.future-page #via {
  background: linear-gradient(180deg, #010101 0%, #020202 100%);
}
.future-page #network {
  background: linear-gradient(180deg, #060606 0%, #070707 100%);
}
.product-visual {
  position: relative;
  height: min(66vh, 560px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: transparent;
  isolation: isolate;
}
.product-visual:before {
  content: none;
}
.product-visual img,
.product-visual video {
  position: relative;
  z-index: 1;
  width: 96%;
  height: 96%;
  object-fit: contain;
  background: transparent;
  -webkit-mask-image: radial-gradient(ellipse 61% 61% at center, #000 48%, rgba(0, 0, 0, 0.96) 68%, transparent 94%);
  mask-image: radial-gradient(ellipse 61% 61% at center, #000 48%, rgba(0, 0, 0, 0.96) 68%, transparent 94%);
  mix-blend-mode: screen;
}
.product-visual video:not([poster*="product-network"]) {
  transform: scale(0.88);
  -webkit-mask-image: radial-gradient(
    ellipse 50% 50% at center,
    #000 58%,
    rgba(0, 0, 0, 0.9) 74%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 50% 50% at center,
    #000 58%,
    rgba(0, 0, 0, 0.9) 74%,
    transparent 100%
  );
}
.product-copy small,
.future-close small {
  color: #777;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.product-copy h2 {
  margin: 20px 0 24px;
  font-size: clamp(58px, 7.5vw, 112px);
  font-weight: 240;
  line-height: 1;
  letter-spacing: -0.055em;
}
.product-copy > p {
  max-width: 560px;
  margin: 0;
  color: #8d8d88;
  font-size: 15px;
  line-height: 1.62;
}
.product-copy ul {
  max-width: 590px;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid #333;
  list-style: none;
}
.product-copy li {
  padding: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #333;
  font-size: 11px;
}
.product-copy li span:last-child {
  color: #72726e;
  text-align: right;
}
.release-note {
  display: block;
  margin-top: 18px;
  color: #696965;
  font-size: 8px;
  line-height: 1.5;
}

.product-detail-link {
  min-height: 46px;
  margin-top: 16px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #343438;
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-detail-link:hover {
  background: #f5f5f2;
  color: #050505;
}
.future-close {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10vw;
  align-items: center;
}
.future-close h2 {
  max-width: 800px;
  margin: 20px 0 0;
  font-size: clamp(54px, 7.2vw, 104px);
  font-weight: 240;
  line-height: 1;
  letter-spacing: -0.05em;
}
.future-cta p {
  color: #888883;
  font-size: 14px;
  line-height: 1.62;
}
.future-cta a {
  min-height: 54px;
  margin-top: 26px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #444;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.future-cta a:hover {
  background: #fff;
  color: #000;
}
.future-cta em {
  display: block;
  margin-top: 16px;
  color: #666;
  font-size: 8px;
  font-style: normal;
  line-height: 1.55;
}
@media (max-width: 820px) {
  :root {
    --header: 56px;
    --side: 20px;
  }
  .future-header {
    padding: 0 16px;
    grid-template-columns: auto 1fr auto;
  }
  .future-header > a:first-child {
    font-size: 0;
  }
  .future-header > a:first-child:after {
    content: "←";
    font-size: 14px;
  }
  .future-brand img {
    width: 132px;
  }
  .future-header nav {
    gap: 13px;
    font-size: 8px;
  }
  .future-page > section {
    padding: calc(var(--header) + 28px) var(--side) 26px;
  }
  .future-meta {
    font-size: 8px;
  }
  .future-hero h1 {
    font-size: clamp(54px, 17vw, 74px);
    line-height: 1;
  }
  .future-hero > p {
    margin-top: 24px;
    font-size: 12px;
    line-height: 1.5;
  }
  .product-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 42% 1fr;
    gap: 22px;
    align-items: start;
  }
  .product-visual {
    height: 100%;
  }
  .product-visual img,
  .product-visual video {
    width: min(72%, 360px);
    height: 94%;
  }
  .product-copy h2 {
    margin: 12px 0 14px;
    font-size: clamp(46px, 13vw, 60px);
    line-height: 1;
  }
  .product-copy > p {
    font-size: 12px;
    line-height: 1.5;
  }
  .product-copy ul {
    margin-top: 16px;
  }
  .product-copy li {
    padding: 8px 0;
    font-size: 10px;
  }
  .release-note {
    margin-top: 10px;
    font-size: 9px;
  }
  .future-close {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 36px;
  }
  .future-close h2 {
    font-size: clamp(48px, 13vw, 62px);
  }
  .future-cta p {
    font-size: 12px;
  }
  .future-cta a {
    min-height: 50px;
    font-size: 9px;
  }
}
@media (max-width: 380px) {
  .future-brand img {
    width: 120px;
  }
  .future-header {
    padding: 0 12px;
  }
  .product-slide {
    grid-template-rows: 37% 1fr;
  }
  .product-copy h2 {
    font-size: 44px;
  }
  .product-copy li {
    padding: 7px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .product-visual img,
  .product-visual video {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 820px) and (max-height: 720px) {
  .future-page > section {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }
}
