@font-face {
  font-family: "PT Root UI";
  src: url("fonts/PT-Root-UI_VF.f588241.woff2") format("woff2");
  font-weight: 300 700;
}

@font-face {
  font-family: "HalvarBreit";
  src: url("fonts/HalvarBreit-Rg.9fa6811.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: "HalvarBreit";
  src: url("fonts/HalvarBreit-Md.ac0c54a.woff2") format("woff2");
  font-weight: 500;
}

:root {
  --ink: #1c1f22;
  --muted: rgba(28, 31, 34, 0.62);
  --paper: #f0f0f8;
  --dark: #172024;
  --nav: rgba(30, 51, 56, 0.9);
  --white: #ffffff;
  --line: rgba(28, 31, 34, 0.14);
  --container: 1158px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PT Root UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 100;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}

.container {
  width: min(var(--container), calc(100% - 122px));
  margin: 0 auto;
}

.centered {
  text-align: center;
}

.section-pad {
  padding: 88px 0;
}

h1,
h2,
h3,
.wordmark {
  margin: 0;
  font-family: "HalvarBreit", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 1160px;
  margin: 34px auto 96px;
  font-size: clamp(54px, 6.35vw, 81px);
  line-height: 1.2;
}

h2 {
  font-size: clamp(38px, 3.75vw, 48px);
  line-height: 1.15;
}

h3 {
  font-size: 24px;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 36px;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  font-variation-settings: "wght" 500;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  transition: all .15s;
  background-image: linear-gradient(#f0f0f8, #f0f0f8), linear-gradient(170deg, #fefeff 20%, #c6ceda);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #1c1f22;
  box-shadow: -10px -10px 18px #fff, 10px 10px 18px rgba(166, 180, 200, 0.7);
}

.button:hover {
  color: #35c7f0;
  box-shadow:
    -10px -10px 18px #fff,
    10px 10px 18px rgba(166, 180, 200, 0.7),
    inset -5px -5px 10px hsla(0, 0%, 100%, 0.7),
    inset 5px 5px 10px rgba(166, 180, 200, 0.25);
}

.button:active {
  color: #35c7f0;
  box-shadow:
    inset -8px -8px 16px hsla(0, 0%, 100%, 0.8),
    inset 8px 8px 16px rgba(166, 180, 200, 0.35);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  background-image: none;
  box-shadow: none;
}

.button-light:hover {
  color: #35c7f0;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-light:active {
  color: #35c7f0;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  min-height: 62px;
  padding: 0 26px;
  color: var(--white);
  background: var(--nav);
  border-radius: 999px;
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  width: 25px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4.2vw, 58px);
  width: 100%;
  margin-left: 48px;
  font-size: 17px;
  line-height: 1;
}

.site-nav a {
  text-decoration: none;
  text-transform: capitalize;
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 50% 80%, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.48));
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroKenBurns 3.5s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -0.5%); }
}

.hero-link {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 178px;
  left: 24px;
  color: var(--white);
  font-family: "HalvarBreit", Arial, sans-serif;
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 80px;
  height: 80px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero-arrow span {
  display: block;
  width: 32px;
  height: 32px;
  margin: auto;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.hero-arrow-prev {
  left: 96px;
}

.hero-arrow-prev span {
  transform: rotate(-45deg);
}

.hero-arrow-next {
  right: 96px;
}

.hero-arrow-next span {
  transform: rotate(135deg);
}

.hero-thumbs {
  position: absolute;
  z-index: 4;
  right: 50%;
  bottom: 30px;
  display: flex;
  gap: 16px;
  transform: translateX(50%);
}

.hero-thumb {
  position: relative;
  width: 196px;
  height: 96px;
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.hero-thumb.is-active {
  border-color: var(--white);
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main {
  background: var(--paper);
}

.wordmark-kicker {
  margin: 0;
  color: var(--ink);
  font-family: "HalvarBreit", Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
}

.wordmark {
  margin-top: 8px;
  color: #050505;
  font-size: clamp(31px, 3.25vw, 40px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
}

.world-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  isolation: isolate;
}

.world-card-large {
  grid-column: 1 / -1;
  min-height: 480px;
}

.world-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.68));
}

.world-card img,
.world-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.world-card video {
  z-index: 1;
  opacity: 0;
  transition: opacity 260ms ease;
}

.world-card.is-playing video {
  opacity: 1;
}

.world-copy {
  position: absolute;
  z-index: 3;
  top: clamp(20px, 3.8vw, 42px);
  right: clamp(20px, 3.8vw, 42px);
  left: clamp(20px, 3.8vw, 42px);
  color: var(--white);
  text-align: left;
}

.world-copy h2 {
  font-size: 34px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.world-copy p {
  max-width: 520px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.metaverse-copy {
  max-width: 820px;
  margin: 58px auto 32px;
  color: var(--muted);
}

.panel {
  padding: 76px min(8vw, 96px);
  border-radius: 26px;
}

.panel-waves {
  background:
    linear-gradient(rgba(240, 240, 248, 0) 66%, var(--paper)),
    url("img/waves-bg.5438b8f.jpg") center / cover no-repeat;
}

.section-lead {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
}

.spec-tabs {
  display: inline-flex;
  gap: 10px;
  margin: 54px auto 48px;
  padding: 5px;
  background: rgba(28, 31, 34, 0.06);
  border-radius: 999px;
}

.spec-tabs button {
  min-width: 150px;
  height: 46px;
  padding: 0 22px;
  color: var(--muted);
  text-transform: capitalize;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.spec-tabs button:not(.is-active):hover {
  color: var(--ink);
  background: rgba(28, 31, 34, 0.06);
}

.spec-tabs button.is-active {
  color: var(--white);
  background: #27bce8;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  text-align: center;
}

.spec-item span {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 16px;
}

.spec-item strong {
  display: block;
  font-family: "HalvarBreit", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}

.feature-pages {
  padding-top: 34px;
}

.feature-page {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
}

.feature-page-reversed img {
  order: 2;
}

.feature-page img {
  width: 100%;
  border-radius: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  min-height: 50px;
  margin: 0 0 24px;
  padding: 0 24px;
  color: var(--ink);
  font-family: "HalvarBreit", Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.feature-page p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0 34px;
  color: var(--muted);
}

.faq .panel {
  text-align: left;
}

.faq .section-lead {
  margin-right: 0;
  margin-left: 0;
}

.faq-list {
  margin: 64px 0 42px;
}

.faq-list details {
  display: grid;
  grid-template-rows: min-content 0fr;
  transition: grid-template-rows 0.5s ease;
  border-top: 1px solid var(--line);
}

.faq-list details::details-content {
  display: contents;
}

.faq-list details.is-open {
  grid-template-rows: min-content 1fr;
}

.faq-list details.is-open .faq-body {
  visibility: visible;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list details > .faq-body {
  visibility: hidden;
  overflow: hidden;
  min-height: 0;
  display: block !important;
}

.faq-list details:not([open]) > :not(summary) {
  display: block !important;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
  font-family: "HalvarBreit", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 260ms ease;
}

.faq-list details.is-open summary::after {
  transform: rotate(225deg);
}

.faq-list p,
.faq-list ul {
  max-width: 920px;
  margin: 12px 0;
  color: var(--muted);
}

.faq-list a {
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 60px 0 36px;
  background: var(--paper);
}

.copyright {
  width: min(var(--container), calc(100% - 122px));
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 64px;
    padding: 0 21px;
    border-radius: 0;
    background: rgba(19, 25, 28, 0.92);
    transform: translateX(-50%);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-left: 22px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .menu-toggle img {
    display: block;
    width: 20px;
    height: auto;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 18px 21px 26px;
    background: rgba(19, 25, 28, 0.98);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero {
    min-height: 520px;
  }

  .hero-link {
    bottom: 128px;
    font-size: 28px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-thumbs {
    right: 0;
    bottom: 23px;
    left: 0;
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    transform: none;
    scrollbar-width: none;
    justify-content: center;
  }

  .hero-thumbs::-webkit-scrollbar {
    display: none;
  }

  .hero-thumb {
    width: 136px;
    height: 66px;
    flex: 0 0 136px;
    border-radius: 9px;
  }

  .container {
    width: calc(100% - 42px);
  }

  .button {
    padding: 14px 30px;
    font-size: 18px;
  }

  .section-pad {
    padding: 54px 0;
  }

  h1 {
    margin: 24px auto 32px;
    font-size: 30px;
    line-height: 1.2;
  }

  h2 {
    font-size: 33px;
    line-height: 1.15;
  }

  .wordmark-kicker {
    font-size: 9px;
  }

  .wordmark {
    font-size: 19px;
    letter-spacing: 0.32em;
  }

  .world-grid {
    display: grid;
    gap: 0;
    border-radius: 18px;
  }

  .world-card,
  .world-card-large {
    grid-column: 1 / -1;
    min-height: 166px;
  }

  .world-card video {
    display: none;
  }

  .world-copy {
    right: 20px;
    left: 20px;
  }

  .world-copy h2 {
    font-size: 22px;
  }

  .world-copy p {
    display: none;
  }

  .metaverse-copy {
    margin: 34px auto 26px;
    text-align: left;
  }

  .panel {
    padding: 46px 18px;
    border-radius: 20px;
  }

  .section-lead {
    font-size: 16px;
  }

  .spec-tabs {
    width: 100%;
    margin: 36px 0 34px;
  }

  .spec-tabs button {
    min-width: 0;
    flex: 1;
  }

  .spec-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }

  .spec-item {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
  }

  .spec-item span {
    margin: 0;
  }

  .feature-page,
  .feature-page-reversed {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
    margin-bottom: 54px;
  }

  .feature-page-reversed img {
    order: 0;
  }

  .feature-page > div {
    text-align: center;
  }

  .feature-page .eyebrow {
    display: inline-flex;
  }

  .feature-page .button {
    display: inline-flex;
  }

  .feature-page p:not(.eyebrow) {
    margin: 20px auto 28px;
    font-size: 16px;
  }

  .metaverse-copy {
    text-align: center;
  }

  .faq h2 {
    text-align: center;
  }

  .eyebrow {
    min-width: auto;
    min-height: auto;
    padding: 0.8rem 2rem;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    border-width: 2px;
  }

  .faq-list summary {
    font-size: 18px;
    padding: 20px 0;
  }

  .faq-list {
    margin-top: 42px;
  }

  .faq-list article {
    padding: 24px 0;
  }

  .faq-list p,
  .faq-list ul {
    font-size: 16px;
  }

  .copyright {
    width: calc(100% - 42px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
