html,
body {
  margin: 0;
  padding: 0;

  body {
    background-color: rgb(20, 20, 20);
  }

  color: #ffffff;
}

body.menu-pointer,
body.menu-pointer canvas {
  cursor: pointer !important;
}

@font-face {
  font-family: "LexendZetta";
  src: url("fonts/LexendZetta-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LibreFranklin";
  src: url("fonts/LibreFranklin-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "LoRes9PlusOTWide";
  src: url("fonts/LoRes9PlusOTWide-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-1: "LexendZetta", system-ui, -apple-system, sans-serif;
  --font-2: "LibreFranklin", system-ui, -apple-system, sans-serif;
  --font-3: "LoRes9PlusOTWide", monospace;
}

canvas {
  display: block;
}

.skip-intro {
  position: fixed;
  right: 60px;
  bottom: 58px;
  z-index: 1000;
}

.skip-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  height: 34px;
  padding: 0 14px;

  border-radius: 8px;
  border: 1px solid rgba(0, 255, 255, 0.45);
  background: rgba(20, 20, 20, 0.85);

  font-family: var(--font-2);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;

  color: rgba(0, 255, 255, 0.75);
  cursor: pointer;
  user-select: none;

  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.skip-cta:hover {
  border-color: rgba(0, 255, 255, 0.9);
  color: rgba(0, 255, 255, 1);
  transform: translateX(2px);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.18);
}

.skip-cta-arrow {
  font-size: 11px;
  line-height: 1;
  pointer-events: none;
}

#skipIntroWrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease;
}

body.show-skip #skipIntroWrap {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.back-btn {
  position: fixed;
  left: 24px;
  top: calc(50% + 71px);
  transform: translateY(-50%);
  z-index: 20000;

  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;

  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.back-btn:hover {
  color: #7fefff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
  transform: translateY(-50%) translateX(3px);
}

.map-open .back-btn {
  display: none;
}

.insight-tabs-wrap {
  position: fixed;

  top: 40px;

  left: 0;
  width: 100%;
  z-index: 10050;
  pointer-events: auto;

  display: flex;
  justify-content: center;
}

.insight-tabs {
  --insight-tabs-scale: 1;

  display: inline-flex;
  gap: 10px;

  transform-origin: center center;
  transform: scale(var(--insight-tabs-scale));

  pointer-events: auto;
}

.insight-tab {
  pointer-events: auto;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 15px;
  border: 2px solid rgb(0, 255, 255);
  border-radius: 6px;

  background: rgba(20, 20, 20, 0.86);
  color: rgb(0, 255, 255);

  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  text-decoration: none;
  line-height: 1;
  user-select: none;

  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.insight-tab:hover,
.insight-tab.is-active {
  background: rgb(0, 255, 255);
  color: rgb(20, 20, 20);
}

.insight-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.35);
}

.insight-top-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9000;
  pointer-events: none;

  background: linear-gradient(to bottom,
      rgba(22, 22, 22, 1) 0%,
      rgba(22, 22, 22, 0.92) 35%,
      rgba(22, 22, 22, 0) 100%);
}

body.photo-open .insight-tabs-wrap,
body.photo-open .back-btn {
  opacity: 0;
  pointer-events: none;
}

:root {
  --about-nav-y: 50%;
}

.about-tabs-wrap {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.about-tabs {
  --about-tabs-scale: 1;
  display: inline-flex;
  gap: 10px;
  transform-origin: center center;
  transform: scale(var(--about-tabs-scale));

  pointer-events: auto;
}

.about-tab {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 30px;
  padding: 0 15px;

  border: 2px solid rgb(0, 255, 255);
  border-radius: 6px;

  background: rgba(20, 20, 20, 0.86);
  color: rgb(0, 255, 255);

  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  text-decoration: none;
  line-height: 1;
  text-transform: uppercase;
  user-select: none;

  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.about-tab:hover,
.about-tab.is-active {
  background: rgb(0, 255, 255);
  color: rgb(20, 20, 20);
}

.about-tab:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 255, 255, 0.35);
}

.about-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 160px 24px 80px;
}

.about-title {
  margin: 0 0 16px;
  font-family: var(--font-1);
  font-size: 21px;
  letter-spacing: 0.02em;
}

.about-text {
  margin: 0;
  font-family: var(--font-2);
  font-size: 21px;
  line-height: 1.6;
  color: rgba(220, 220, 220, 1);
}

.about-cta-row {
  position: relative;
  z-index: 20000;
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 8px;

  border: 1px solid rgba(0, 255, 255, 0.55);
  background: rgba(20, 20, 20, 0.60);

  color: rgba(0, 255, 255, 0.85);
  text-decoration: none;

  font-family: system-ui, -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;

  cursor: pointer;
  user-select: none;

  line-height: 1;
  white-space: nowrap;
  width: max-content;
}

.cta-btn:hover {
  border-color: rgba(0, 255, 255, 0.9);
  color: rgba(0, 255, 255, 1);
  transform: translateX(2px);
}

.cta-arrow {
  font-size: 11px;
  line-height: 1;
  pointer-events: none;
  line-height: 1;
  display: inline-block;
}

#about-us-canvas {
  position: relative;
  top: -100px;
  z-index: 1;
}

#about-us-canvas canvas {
  display: block;
  position: relative;
  top: -50px;
}

.about-footer {
  width: 100%;
  background: #0b0b0b;
  color: #fff;
  padding: 28px 24px 18px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
}

.footer-row .footer-block:nth-child(1),
.footer-row .footer-block:nth-child(2) {
  margin-right: 8px;
}

.footer-row .footer-block:nth-child(2) {
  margin-right: 32px;
}

.footer-block {
  flex: 1;
  min-width: 200px;
}

.footer-title {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.footer-list {
  margin: 0;
  padding-left: 0;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.9;
}

.no-bullets {
  list-style: none;
}

.footer-list li {
  margin-bottom: 4px;
}

.footer-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.85;
}

.footer-logos-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
}

.footer-logo {
  max-width: 120px;
  height: auto;
}

.footer-bottom {
  max-width: 1200px;
  margin: 16px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  opacity: 0.75;
}

.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .footer-row {
    flex-direction: column;
    gap: 16px;
  }

  .footer-logos-row {
    flex-wrap: wrap;
  }
}

.about-content {
  position: relative;
  box-sizing: border-box;
}

#about-us-canvas {
  margin-bottom: 160px;
}