:root {
  --paper: #f8f8f8;
  --ink: #050505;
  --micro: 10.5px;
  --glass-radius: 6px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: var(--micro);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

button,
a {
  color: inherit;
  font: inherit;
  text-transform: inherit;
}

button {
  border: 0;
}

button:focus-visible,
a:focus-visible {
  outline: 1px solid #000;
  outline-offset: 2px;
}

[hidden] {
  display: none !important;
}

.viewport,
.index-view {
  position: fixed;
  inset: 0;
  background: var(--paper);
}

.viewport {
  z-index: 1;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.viewport.is-dragging {
  cursor: grabbing;
}

.viewport.has-card-hover {
  cursor: none;
}

.viewport.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.viscose-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: opacity;
  transition: opacity 450ms ease;
}

.viscose-canvas.is-ready {
  opacity: 1;
}

.view-tag {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  width: 54px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 999px;
  background: rgba(248, 248, 248, 0.38);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 3px rgba(78, 94, 103, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 150ms linear;
  will-change: transform, opacity;
}

.carousel-close.glass-shell {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 32;
  width: 70px;
  height: 38px;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.is-focused .carousel-close {
  opacity: 1;
  pointer-events: auto;
}

.is-focused .view-tag {
  opacity: 0 !important;
}

.site-header,
.account-control,
.view-switcher,
.legal-nav {
  transition: opacity 420ms ease;
}

.is-focused .site-header,
.is-focused .account-control,
.is-focused .view-switcher,
.is-focused .legal-nav {
  opacity: 0;
  pointer-events: none;
}

.view-tag.is-visible {
  opacity: 1;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--paper);
  transition: opacity 500ms ease, visibility 500ms;
}

.loader.is-complete {
  visibility: hidden;
  opacity: 0;
}

.site-header {
  position: fixed;
  top: 4px;
  left: 4px;
  z-index: 20;
}

.account-control {
  position: fixed;
  top: 8px;
  right: 8px;
  z-index: 24;
  width: 38px;
  height: 38px;
  opacity: 0;
  pointer-events: none;
}

.account-control[data-state="ready"] {
  opacity: 1;
  pointer-events: auto;
}

.account-login,
.account-avatar {
  display: grid;
  height: 38px;
  place-items: center;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  text-decoration: none;
}

.account-login.glass-shell {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
}

.account-login:hover,
.account-avatar:hover,
.account-avatar[aria-expanded="true"] {
  color: #fff;
  background: rgba(0, 0, 0, 0.74);
}

.account-avatar {
  width: 38px;
  border-radius: 999px;
  will-change: transform;
}

.account-menu.glass-shell {
  position: absolute;
  top: 0;
  right: 46px;
  display: grid;
  width: 260px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 4px;
  gap: 4px;
  border-radius: 999px;
  background: rgba(248, 248, 248, 0.38);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform-origin: 100% 50%;
  will-change: transform, opacity;
}

.account-identity {
  display: flex;
  min-width: 0;
  height: 30px;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(248, 248, 248, 0.62);
}

.account-presence {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.4;
}

.account-email {
  min-width: 0;
  overflow: hidden;
  font-size: 9.5px;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
  opacity: 0.52;
}

.account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.account-menu a {
  display: grid;
  height: 30px;
  place-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(248, 248, 248, 0.58);
  color: inherit;
  text-decoration: none;
  will-change: transform, opacity;
}

.account-menu a:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.74);
}

@media (max-width: 520px) {
  .account-menu.glass-shell {
    top: 46px;
    right: 0;
    width: 188px;
    grid-template-columns: 1fr;
    border-radius: 16px;
    transform-origin: 100% 0;
  }

  .account-identity,
  .account-menu a {
    border-radius: 12px;
  }

  .account-menu a {
    height: 34px;
    padding: 0;
  }
}

.primary-nav {
  display: grid;
  width: 327px;
  grid-template-columns: 200px 125px;
  gap: 2px;
}

.glass-button,
.glass-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--glass-radius);
  background: rgba(248, 248, 248, 0.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.06);
  backdrop-filter: blur(24px) saturate(1.06);
  box-shadow:
    0 1px 7px rgba(0, 0, 0, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.23);
}

.glass-button::before,
.glass-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  opacity: 0.13;
  pointer-events: none;
}

.glass-button::after,
.glass-shell::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: currentColor;
  content: "";
  opacity: 0.03;
  pointer-events: none;
}

.glass-button {
  display: flex;
  height: 58px;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 40px 10px 7px;
  background-color: transparent;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.glass-button:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
}

.glass-button.is-active {
  color: #fff;
  background: #aaa;
}

.glass-button.brand-button {
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.brand-line {
  white-space: nowrap;
}

sup {
  position: relative;
  top: -0.28em;
  font-size: 0.58em;
}

.view-switcher {
  position: fixed;
  right: 4px;
  bottom: 4px;
  z-index: 20;
  display: grid;
  width: 142px;
  height: 40px;
  grid-template-columns: 1fr 1fr;
}

.view-option {
  position: relative;
  z-index: 2;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.view-option.is-active {
  color: #fff;
  background: rgba(0, 0, 0, 0.74);
  border-radius: 5px;
}

.legal-nav {
  position: fixed;
  bottom: 8px;
  left: 14px;
  z-index: 20;
  display: flex;
  gap: 16px;
}

.legal-nav a {
  color: inherit;
  text-decoration: none;
}

.legal-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.index-view {
  z-index: 4;
  overflow: auto;
  padding: clamp(170px, 23vh, 260px) 14px 52px;
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.index-view.is-entering {
  opacity: 0;
}

.index-table {
  width: min(620px, 100%);
}

.index-header,
.index-row {
  display: grid;
  grid-template-columns: 87px 213px minmax(0, 1fr);
  align-items: center;
}

.index-header {
  padding-bottom: 8px;
  opacity: 0.42;
}

.index-row {
  width: 100%;
  min-height: 24px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  opacity: 0.3;
  transition: opacity 130ms ease;
}

.index-row:hover,
.index-row:focus-visible {
  opacity: 1;
}

.index-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.webgl-fallback .viewport::after {
  position: absolute;
  inset: 50% auto auto 50%;
  content: "WEBGL UNAVAILABLE";
  transform: translate(-50%, -50%);
}

@media (max-width: 720px) {
  .primary-nav {
    width: calc(100vw - 54px);
    grid-template-columns: 1.6fr 1fr;
  }

  .glass-button {
    padding-right: 7px;
    padding-left: 7px;
  }

  .glass-button.brand-button {
    display: block;
  }

  .glass-button.brand-button > span:last-child {
    display: none;
  }

  .index-view {
    padding-top: 140px;
  }

  .index-header,
  .index-row {
    grid-template-columns: 56px minmax(112px, 1fr) minmax(120px, 1.1fr);
    column-gap: 8px;
  }

  .legal-nav {
    max-width: calc(100vw - 180px);
    flex-wrap: wrap;
    gap: 5px 12px;
  }
}

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