:root {
  --background: #03060b;
  --background-soft: #070c14;
  --surface: #09111c;
  --surface-raised: #0c1623;

  --border: rgba(206, 224, 244, 0.1);
  --border-strong: rgba(206, 224, 244, 0.18);

  --text: #f5f7fa;
  --text-soft: #c7ced8;
  --text-muted: #7f8b9b;

  --blue: #0a84ff;
  --blue-bright: #38a4ff;
  --blue-deep: #1257d6;
  --blue-soft: rgba(10, 132, 255, 0.12);

  --green: #34d17a;
  --orange: #f1ad3d;

  --max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;

  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(17, 75, 145, 0.2),
      transparent 38%
    ),
    var(--background);

  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Segoe UI",
    sans-serif;

  line-height: 1.5;
}

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

.page-grid {
  position: fixed;
  z-index: -3;
  inset: 0;

  opacity: 0.16;

  background-image:
    linear-gradient(
      rgba(145, 177, 211, 0.065) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(145, 177, 211, 0.065) 1px,
      transparent 1px
    );

  background-size: 72px 72px;

  mask-image: linear-gradient(
    to bottom,
    black,
    transparent 88%
  );

  pointer-events: none;
}

.ambient-glow {
  position: fixed;
  z-index: -2;

  width: 540px;
  height: 540px;

  border-radius: 50%;

  filter: blur(150px);

  pointer-events: none;
}

.ambient-glow-one {
  top: 6%;
  right: -310px;

  background: rgba(18, 87, 214, 0.15);
}

.ambient-glow-two {
  bottom: 5%;
  left: -370px;

  background: rgba(10, 132, 255, 0.09);
}

.site-header {
  display: flex;

  width: min(calc(100% - 40px), var(--max-width));
  height: 92px;

  align-items: center;
  justify-content: space-between;

  margin: 0 auto;

  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;

  gap: 15px;
}

.brand-symbol {
  position: relative;

  display: block;

  width: 43px;
  height: 43px;
}

.symbol-ring {
  position: absolute;

  top: 3px;
  left: 3px;

  width: 37px;
  height: 37px;

  border: 2px solid var(--blue);
  border-bottom-color: transparent;
  border-radius: 50%;
}

.symbol-peak {
  position: absolute;

  bottom: 3px;
  left: 9px;

  width: 25px;
  height: 28px;

  border-right: 3px solid #d8e0e9;
  border-left: 3px solid #d8e0e9;

  clip-path: polygon(50% 0, 100% 100%, 76% 100%, 50% 44%, 24% 100%, 0 100%);
}

.symbol-core {
  position: absolute;

  bottom: 4px;
  left: 17px;

  width: 10px;
  height: 11px;

  background: var(--blue);

  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.brand-copy {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.27em;
}

.brand-subtitle {
  margin-top: 7px;

  color: var(--blue);

  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.31em;
}

.header-status {
  display: flex;
  align-items: center;

  gap: 9px;

  color: var(--text-muted);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;

  text-transform: uppercase;
}

.status-light {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--blue);

  box-shadow: 0 0 16px rgba(10, 132, 255, 0.75);
}

.hero {
  display: grid;

  width: min(calc(100% - 40px), var(--max-width));
  min-height: calc(100vh - 92px);

  align-items: center;

  margin: 0 auto;
  padding: 90px 0;

  gap: 85px;

  grid-template-columns:
    minmax(0, 1.06fr)
    minmax(410px, 0.94fr);
}

.eyebrow {
  margin: 0 0 25px;

  color: var(--blue);

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;

  margin: 0;

  font-size: clamp(57px, 6.1vw, 88px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;

  color: var(--text-muted);
}

.hero-description {
  max-width: 570px;

  margin: 30px 0 0;

  color: var(--text-soft);

  font-size: 19px;
  line-height: 1.75;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  margin-top: 50px;

  color: var(--text-muted);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.scroll-arrow {
  color: var(--blue);

  font-size: 19px;

  animation: floatArrow 1.8s ease-in-out infinite;
}

@keyframes floatArrow {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(5px);
  }
}

.hero-system {
  overflow: hidden;

  border: 1px solid var(--border-strong);
  border-radius: 27px;

  background:
    linear-gradient(
      145deg,
      rgba(10, 21, 36, 0.94),
      rgba(3, 8, 14, 0.96)
    );

  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.42),
    0 0 100px rgba(10, 132, 255, 0.06),
    inset 0 1px rgba(255, 255, 255, 0.035);
}

.system-toolbar,
.system-footer {
  display: flex;

  min-height: 58px;

  align-items: center;
  justify-content: space-between;

  padding: 0 21px;

  color: var(--text-muted);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.system-toolbar {
  border-bottom: 1px solid var(--border);
}

.system-footer {
  border-top: 1px solid var(--border);
}

.system-status {
  display: flex;
  align-items: center;

  gap: 7px;

  color: var(--text-soft);
}

.system-status span {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--blue);

  box-shadow: 0 0 12px rgba(10, 132, 255, 0.8);
}

.system-field {
  position: relative;

  overflow: hidden;

  min-height: 480px;

  background:
    radial-gradient(
      circle at center,
      rgba(10, 132, 255, 0.13),
      transparent 33%
    );
}

.system-grid {
  position: absolute;

  inset: 0;

  opacity: 0.34;

  background-image:
    linear-gradient(
      rgba(141, 172, 207, 0.085) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(141, 172, 207, 0.085) 1px,
      transparent 1px
    );

  background-size: 43px 43px;
}

.system-orbit {
  position: absolute;

  top: 50%;
  left: 50%;

  border: 1px solid rgba(56, 164, 255, 0.16);
  border-radius: 50%;

  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 155px;
  height: 155px;
}

.orbit-two {
  width: 270px;
  height: 270px;
}

.orbit-three {
  width: 390px;
  height: 390px;
}

.system-axis {
  position: absolute;

  top: 50%;
  left: 50%;

  background: rgba(56, 164, 255, 0.14);

  transform: translate(-50%, -50%);
}

.horizontal-axis {
  width: 88%;
  height: 1px;
}

.vertical-axis {
  width: 1px;
  height: 88%;
}

.system-mark {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 120px;
  height: 120px;

  transform: translate(-50%, -50%);
}

.mark-ring {
  position: absolute;

  inset: 4px;

  border: 3px solid #cdd5df;
  border-bottom-color: transparent;
  border-radius: 50%;

  filter: drop-shadow(0 0 15px rgba(205, 213, 223, 0.1));
}

.mark-peak {
  position: absolute;

  right: 20px;
  bottom: 7px;
  left: 20px;

  height: 83px;

  border-right: 6px solid #cdd5df;
  border-left: 6px solid #cdd5df;

  clip-path: polygon(50% 0, 100% 100%, 77% 100%, 50% 45%, 23% 100%, 0 100%);
}

.mark-core {
  position: absolute;

  bottom: 6px;
  left: 47px;

  width: 27px;
  height: 30px;

  background: linear-gradient(
    to bottom,
    #38a4ff,
    #1257d6
  );

  clip-path: polygon(50% 0, 100% 100%, 0 100%);

  filter: drop-shadow(0 0 15px rgba(10, 132, 255, 0.6));
}

.system-node {
  position: absolute;

  width: 9px;
  height: 9px;

  border: 2px solid #08111e;
  border-radius: 50%;

  background: var(--blue);

  box-shadow: 0 0 16px rgba(10, 132, 255, 0.8);
}

.node-one {
  top: 22%;
  left: 28%;
}

.node-two {
  top: 35%;
  right: 19%;
}

.node-three {
  right: 31%;
  bottom: 17%;
}

.node-four {
  bottom: 29%;
  left: 18%;
}

.scan-line {
  position: absolute;

  top: -20%;
  left: 0;

  width: 100%;
  height: 90px;

  opacity: 0.26;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(10, 132, 255, 0.22),
    transparent
  );

  animation: scanField 6s linear infinite;
}

@keyframes scanField {
  from {
    transform: translateY(-100px);
  }

  to {
    transform: translateY(700px);
  }
}

.statement-section,
.product-section,
.principles-section,
.closing-section {
  width: min(calc(100% - 40px), var(--max-width));

  margin: 0 auto;

  padding: 90px 0;
}

.statement {
  max-width: 940px;
}

.statement h2,
.product-heading h2,
.principles-heading h2,
.closing-panel h2 {
  margin: 0;

  font-size: clamp(43px, 5.2vw, 70px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.statement h2 span,
.principles-heading h2 span,
.closing-panel h2 span {
  display: block;

  color: var(--text-muted);
}

.product-heading {
  display: grid;

  align-items: end;

  gap: 80px;

  grid-template-columns: 1fr 0.8fr;
}

.product-heading h2 {
  font-size: clamp(55px, 7vw, 94px);
}

.product-heading > p {
  max-width: 500px;

  margin: 0;

  color: var(--text-muted);

  font-size: 17px;
  line-height: 1.75;
}

.crosspoint-preview {
  overflow: hidden;

  margin-top: 72px;

  border: 1px solid var(--border-strong);
  border-radius: 28px;

  background: #050b12;

  box-shadow:
    0 55px 130px rgba(0, 0, 0, 0.48),
    0 0 120px rgba(10, 132, 255, 0.06);
}

.preview-topbar {
  display: grid;

  min-height: 72px;

  align-items: center;

  padding: 0 25px;

  border-bottom: 1px solid var(--border);

  background: rgba(3, 8, 14, 0.96);

  grid-template-columns: 1fr auto 1fr;
}

.preview-brand {
  display: flex;
  align-items: center;

  gap: 12px;
}

.preview-logo {
  display: grid;

  width: 34px;
  height: 34px;

  place-items: center;

  border: 1px solid var(--blue);
  border-radius: 50%;

  background: var(--blue-soft);
}

.preview-logo span {
  width: 13px;
  height: 15px;

  border-right: 2px solid var(--blue-bright);
  border-left: 2px solid var(--blue-bright);

  clip-path: polygon(50% 0, 100% 100%, 75% 100%, 50% 46%, 25% 100%, 0 100%);
}

.preview-brand div {
  display: flex;
  flex-direction: column;
}

.preview-brand strong {
  font-size: 11px;
  letter-spacing: 0.21em;
}

.preview-brand small {
  margin-top: 4px;

  color: var(--text-muted);

  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.preview-clock {
  display: flex;
  flex-direction: column;

  align-items: center;
}

.preview-clock strong {
  font-size: 15px;
}

.preview-clock span {
  margin-top: 2px;

  color: var(--text-muted);

  font-size: 7px;
  font-weight: 700;
}

.preview-online {
  display: flex;
  justify-self: end;

  align-items: center;

  gap: 7px;

  color: var(--text-soft);

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.preview-online span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--green);

  box-shadow: 0 0 11px rgba(52, 209, 122, 0.7);
}

.preview-body {
  display: grid;

  min-height: 690px;

  grid-template-columns: 105px minmax(0, 1fr);
}

.preview-sidebar {
  padding: 18px 8px;

  border-right: 1px solid var(--border);

  background: rgba(5, 13, 22, 0.94);
}

.preview-nav-item {
  display: flex;

  min-height: 74px;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 8px;

  margin-bottom: 5px;

  border-radius: 11px;

  color: #657487;
}

.preview-nav-item.active {
  border-left: 2px solid var(--blue);

  border-radius: 0 11px 11px 0;

  background: rgba(10, 132, 255, 0.11);

  color: var(--blue-bright);
}

.nav-icon {
  width: 18px;
  height: 18px;

  border: 1px solid currentColor;
  border-radius: 5px;
}

.preview-nav-item small {
  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.preview-workspace {
  display: grid;

  padding: 16px;

  gap: 14px;

  grid-template-rows: minmax(390px, 1fr) auto;
}

.preview-map {
  position: relative;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 18px;

  background:
    radial-gradient(
      circle at center,
      rgba(10, 62, 120, 0.14),
      transparent 42%
    ),
    #07101a;
}

.map-grid {
  position: absolute;

  inset: 0;

  opacity: 0.28;

  background-image:
    linear-gradient(
      rgba(123, 151, 183, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(123, 151, 183, 0.07) 1px,
      transparent 1px
    );

  background-size: 47px 47px;
}

.map-road {
  position: absolute;

  height: 5px;

  border-radius: 999px;

  background: rgba(158, 176, 196, 0.19);

  transform-origin: left center;
}

.road-one {
  top: 30%;
  left: -7%;

  width: 115%;

  transform: rotate(16deg);
}

.road-two {
  top: 76%;
  left: 0;

  width: 110%;

  transform: rotate(-16deg);
}

.road-three {
  top: -10%;
  left: 52%;

  width: 82%;

  transform: rotate(81deg);
}

.map-river {
  position: absolute;

  top: -14%;
  left: 20%;

  width: 80px;
  height: 135%;

  border-radius: 50%;

  background: rgba(5, 39, 85, 0.32);

  transform: rotate(10deg);
}

.unit-marker {
  position: absolute;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 6px 10px 6px 6px;

  border: 1px solid;
  border-radius: 999px;

  background: rgba(3, 9, 16, 0.91);

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.unit-marker > span {
  display: grid;

  width: 31px;
  height: 31px;

  place-items: center;

  border: 1px solid;
  border-radius: 50%;

  font-size: 9px;
  font-weight: 800;
}

.unit-marker div {
  display: flex;
  flex-direction: column;
}

.unit-marker strong {
  font-size: 9px;
}

.unit-marker small {
  margin-top: 2px;

  font-size: 6px;
  font-weight: 800;
}

.green-marker {
  border-color: rgba(52, 209, 122, 0.35);
}

.green-marker > span {
  border-color: var(--green);

  color: #65e99b;
}

.green-marker small {
  color: var(--green);
}

.blue-marker {
  border-color: rgba(10, 132, 255, 0.42);
}

.blue-marker > span {
  border-color: var(--blue);

  color: #66b6ff;
}

.blue-marker small {
  color: var(--blue-bright);
}

.marker-214 {
  top: 26%;
  left: 38%;
}

.marker-305 {
  top: 34%;
  right: 18%;
}

.marker-112 {
  bottom: 24%;
  left: 22%;
}

.current-position {
  position: absolute;

  top: 51%;
  left: 53%;

  display: grid;

  width: 60px;
  height: 60px;

  place-items: center;

  border: 2px solid var(--blue);
  border-radius: 50%;

  background: rgba(10, 132, 255, 0.15);

  box-shadow:
    0 0 0 15px rgba(10, 132, 255, 0.04),
    0 0 35px rgba(10, 132, 255, 0.25);
}

.current-position span {
  margin-top: 7px;

  color: var(--blue-bright);

  font-size: 17px;
}

.current-position small {
  margin-top: -17px;

  color: var(--text-soft);

  font-size: 7px;
  font-weight: 800;
}

.preview-units {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: 16px;
}

.unit-row {
  display: grid;

  min-height: 74px;

  align-items: center;

  padding: 0 16px;

  border-bottom: 1px solid var(--border);

  gap: 15px;

  grid-template-columns: 43px minmax(0, 1fr) 85px;
}

.unit-row:last-child {
  border-bottom: 0;
}

.unit-badge {
  display: grid;

  width: 38px;
  height: 38px;

  place-items: center;

  border: 1px solid;
  border-radius: 50%;

  font-size: 10px;
  font-weight: 800;
}

.green-badge {
  border-color: var(--green);

  color: #65e99b;
}

.blue-badge {
  border-color: var(--blue);

  color: #66b6ff;
}

.gray-badge {
  border-color: #6b7785;

  color: #a9b3bf;
}

.unit-copy {
  display: flex;
  min-width: 0;

  flex-direction: column;
}

.unit-copy strong {
  overflow: hidden;

  font-size: 11px;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.unit-copy small {
  overflow: hidden;

  margin-top: 4px;

  color: var(--text-muted);

  font-size: 8px;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.unit-status {
  color: var(--text-muted);

  font-size: 8px;
  font-weight: 800;
  text-align: right;
}

.green-text {
  color: var(--green);
}

.blue-text {
  color: var(--blue-bright);
}

.product-caption {
  display: flex;

  justify-content: space-between;

  margin-top: 25px;

  color: var(--text-muted);

  font-size: 12px;
}

.product-caption span {
  color: var(--text);

  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-caption p {
  margin: 0;
}

.principles-heading {
  max-width: 880px;
}

.principles-grid {
  display: grid;

  margin-top: 78px;

  border-top: 1px solid var(--border);

  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principle {
  min-height: 305px;

  padding: 34px 30px;

  border-right: 1px solid var(--border);
}

.principle:last-child {
  border-right: 0;
}

.principle > span {
  color: var(--blue);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principle h3 {
  margin: 64px 0 15px;

  font-size: 25px;
  letter-spacing: -0.026em;
}

.principle p {
  margin: 0;

  color: var(--text-muted);

  font-size: 15px;
  line-height: 1.75;
}

.closing-panel {
  padding: 72px;

  border: 1px solid var(--border);
  border-radius: 31px;

  background:
    linear-gradient(
      135deg,
      rgba(11, 25, 44, 0.9),
      rgba(4, 10, 17, 0.96)
    );
}

.closing-panel > p:last-child {
  margin: 26px 0 0;

  color: var(--text-muted);

  font-size: 17px;
}

.site-footer {
  display: grid;

  width: min(calc(100% - 40px), var(--max-width));
  min-height: 132px;

  align-items: center;

  margin: 0 auto;

  border-top: 1px solid var(--border);

  color: var(--text-muted);

  font-size: 11px;

  gap: 20px;

  grid-template-columns: 1fr auto auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  color: var(--text);

  font-size: 11px;
  letter-spacing: 0.27em;
}

.footer-brand span {
  margin-top: 7px;

  color: var(--blue);

  font-size: 7px;
  font-weight: 750;
  letter-spacing: 0.29em;
}

.reveal {
  opacity: 0;

  transform: translateY(22px);

  transition:
    opacity 780ms ease,
    transform 780ms ease;
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;

    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

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

  .product-heading {
    grid-template-columns: 1fr;
  }

  .product-heading > p {
    max-width: 650px;
  }

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

  .principle {
    min-height: auto;

    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle h3 {
    margin-top: 36px;
  }

  .site-footer {
    padding: 35px 0;

    grid-template-columns: 1fr;
  }

  .site-footer p {
    margin: 0;
  }
}

@media (max-width: 650px) {
  .site-header,
  .hero,
  .statement-section,
  .product-section,
  .principles-section,
  .closing-section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .site-header {
    height: 78px;
  }

  .header-status {
    display: none;
  }

  .hero {
    padding: 75px 0;

    gap: 60px;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .hero-description {
    font-size: 16px;
  }

  .system-field {
    min-height: 355px;
  }

  .orbit-three {
    width: 305px;
    height: 305px;
  }

  .statement-section,
  .product-section,
  .principles-section,
  .closing-section {
    padding: 110px 0;
  }

  .statement h2,
  .principles-heading h2,
  .closing-panel h2 {
    font-size: 40px;
  }

  .preview-topbar {
    grid-template-columns: 1fr auto;
  }

  .preview-clock {
    display: none;
  }

  .preview-body {
    min-height: 560px;

    grid-template-columns: 55px minmax(0, 1fr);
  }

  .preview-sidebar {
    padding: 11px 5px;
  }

  .preview-nav-item {
    min-height: 54px;
  }

  .preview-nav-item small {
    display: none;
  }

  .preview-workspace {
    padding: 9px;

    gap: 9px;
  }

  .preview-map {
    min-height: 320px;
  }

  .unit-marker div {
    display: none;
  }

  .marker-214 {
    left: 23%;
  }

  .marker-305 {
    right: 7%;
  }

  .unit-row {
    padding: 0 9px;

    gap: 9px;

    grid-template-columns: 34px minmax(0, 1fr);
  }

  .unit-badge {
    width: 31px;
    height: 31px;
  }

  .unit-status {
    display: none;
  }

  .product-caption {
    flex-direction: column;

    gap: 5px;
  }

  .closing-panel {
    padding: 36px;

    border-radius: 23px;
  }
}
.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.header-logo {
  width: 46px;
  height: 46px;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: 50%;
}

.header-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-brand-copy strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.27em;
}

.header-brand-copy small {
  margin-top: 7px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.31em;
}

.mystery-hero {
  display: grid;
  width: min(calc(100% - 40px), var(--max-width));
  min-height: auto;
  align-items: center;
  margin: 0 auto;
  padding: 40px 0 60px;
  gap: 55px;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
}

.hero-logo-wrap {
  position: relative;

  display: grid;
  min-height: 480px;

  place-items: center;
  overflow: hidden;

  border: none;
  border-radius: 0;

  background:
    radial-gradient(
      circle at center,
      rgba(10, 132, 255, 0.09),
      transparent 46%
    );

  box-shadow: none;
}

.hero-logo-wrap::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
  content: "";
  pointer-events: none;
}

.hero-logo {
  display: block;
  width: min(94%, 660px);
  height: auto;
  mix-blend-mode: screen;
  filter:
    drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 35px rgba(10, 132, 255, 0.08));
}

.mystery-copy {
  max-width: 700px;
}

.mystery-copy h1 {
  margin: 0;
  font-size: clamp(57px, 6.2vw, 88px);
  font-weight: 620;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.mystery-copy h1 span {
  display: block;
  color: var(--text-muted);
}

.mystery-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.75;
}

.system-section {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 90px 0;
}

.system-heading {
  max-width: 880px;
  margin-bottom: 40px;
}

.system-heading h2 {
  margin: 0;
  font-size: clamp(43px, 5.2vw, 70px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.system-heading h2 span {
  display: block;
  color: var(--text-muted);
}

.system-section .hero-system {
  max-width: 760px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .mystery-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-logo-wrap {
    width: min(100%, 680px);
    min-height: 540px;
  }

  .mystery-copy {
    max-width: 800px;
  }
}

@media (max-width: 650px) {
  .mystery-hero,
  .system-section {
    width: calc(100% - 28px);
  }

  .mystery-hero {
    padding: 60px 0 90px;
  }

  .hero-logo-wrap {
    min-height: 390px;
    border-radius: 23px;
  }

  .mystery-copy h1 {
    font-size: clamp(45px, 13vw, 62px);
  }

  .mystery-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .system-section {
    padding: 110px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;

    transform: none;
  }
}/* Final transparent logo treatment */
.hero-logo-wrap {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  overflow: visible;

  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero-logo-wrap::before,
.hero-logo-wrap::after {
  display: none !important;
  content: none !important;
}

.hero-logo {
  display: block;
  width: min(94%, 660px);
  height: auto;

  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;

  filter:
    drop-shadow(0 0 28px rgba(10, 132, 255, 0.16))
    drop-shadow(0 24px 45px rgba(0, 0, 0, 0.45));
}