:root {
  --bg: #050710;
  --bg-deep: #03050c;
  --surface: rgba(13, 19, 39, 0.82);
  --surface-strong: rgba(17, 25, 49, 0.94);
  --line: rgba(139, 153, 192, 0.2);
  --line-strong: rgba(153, 168, 209, 0.34);
  --grid-line: rgba(113, 131, 170, 0.105);
  --text: #f3f6ff;
  --muted: #9199b2;
  --dim: #626b86;
  --cyan: #55edf0;
  --pink: #ff5cae;
  --violet: #a988ff;
  --amber: #ffc36c;
  --content: 1238px;
  --header-width: 1296px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pointer-x: 50vw;
  --pointer-y: 40vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Quicksand, "Noto Sans SC", "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.client-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: var(--bg-deep);
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
dl,
dd,
figure,
blockquote,
ol,
ul {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

::selection {
  color: #071015;
  background: var(--cyan);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.03);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet) 60%, var(--pink));
  box-shadow: 0 0 12px rgba(85, 237, 240, 0.72);
}

.grid-surface {
  position: relative;
  isolation: isolate;
  background-color: rgba(5, 7, 16, 0.52);
}

.grid-surface::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background-image: linear-gradient(115deg, rgba(85, 237, 240, 0.025), transparent 36%, rgba(255, 92, 174, 0.025) 72%, transparent);
  background-size: 100% 100%;
}

.grid-surface::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 16, 0.28), transparent 18%, transparent 82%, rgba(5, 7, 16, 0.35)),
    linear-gradient(180deg, rgba(5, 7, 16, 0.18), transparent 18%, transparent 83%, rgba(5, 7, 16, 0.72));
}

.section-inner {
  position: relative;
  width: min(calc(100% - 202px), var(--content));
  height: 100%;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(0, 1098px) 180px;
  gap: 18px;
  width: min(calc(100% - 144px), var(--header-width));
  transform: translateX(-50%);
}

.nav-shell {
  position: relative;
  height: 60px;
  overflow: hidden;
  border: 1px solid rgba(141, 158, 199, 0.33);
  border-radius: 18px;
  background: rgba(8, 12, 27, 0.88);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.25), inset 0 0 26px rgba(85, 237, 240, 0.018);
  backdrop-filter: blur(18px);
  transition: height 420ms var(--ease), border-color 300ms ease, background 300ms ease;
}

.nav-shell::before {
  position: absolute;
  top: -1px;
  right: 16%;
  left: 42%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
  opacity: 0.85;
}

.nav-shell.is-open {
  height: 284px;
  border-color: rgba(147, 166, 212, 0.5);
  background: rgba(7, 11, 25, 0.97);
}

.nav-top {
  position: relative;
  display: flex;
  align-items: center;
  height: 58px;
  padding: 0 14px;
}

.menu-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(150, 164, 201, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 200ms ease, background 200ms ease;
}

.menu-toggle:hover {
  border-color: var(--cyan);
  background: rgba(85, 237, 240, 0.07);
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 15px;
  height: 1px;
  background: var(--text);
  transition: transform 280ms var(--ease), top 280ms var(--ease);
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 22px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 19px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 19px;
  transform: rotate(-45deg);
}

.nav-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 37px;
  height: 37px;
  overflow: hidden;
  border: 1px solid rgba(85, 237, 240, 0.85);
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgba(255, 92, 174, 0.16), 0 0 18px rgba(85, 237, 240, 0.18);
  transform: translate(-50%, -50%);
}

.nav-logo img,
.header-wordmark img,
.studio-visual figcaption > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.locale-toggle {
  width: 38px;
  height: 38px;
  margin-left: auto;
  cursor: pointer;
  border: 1px solid rgba(150, 164, 201, 0.35);
  border-radius: 8px;
  color: #c7cee2;
  background: rgba(255, 255, 255, 0.015);
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  transition: border-color 200ms ease, color 200ms ease;
}

.locale-toggle:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.nav-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 122px;
  height: 38px;
  margin-left: 14px;
  padding: 0 18px;
  border-radius: 8px;
  color: #080b16;
  background: var(--pink);
  font-size: 12px;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-account:hover {
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(85, 237, 240, 0.22);
  transform: translateY(-1px);
}

.nav-account b {
  font-size: 16px;
}

.nav-account-short {
  display: none;
}

.nav-drawer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  height: 224px;
  padding: 8px 10px 12px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 230ms ease, transform 360ms var(--ease), visibility 0s linear 360ms;
}

.nav-shell.is-open .nav-drawer {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 80ms, 80ms, 0s;
}

.nav-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.nav-group-cyan {
  color: #e8fbff;
  background: #102b45;
}

.nav-group-violet {
  color: #fff1ff;
  background: #2f2042;
}

.nav-group-pink {
  color: #fff2f7;
  background: #40242f;
}

.nav-group small {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 1.4px;
}

.nav-group a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 41px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.nav-group a span {
  color: var(--cyan);
  font-size: 12px;
  transition: transform 180ms ease;
}

.nav-group a b {
  font-weight: 600;
}

.nav-group a:hover span {
  transform: translate(3px, -3px);
}

.header-wordmark {
  position: relative;
  display: flex;
  align-items: center;
  align-self: start;
  gap: 11px;
  height: 60px;
  padding: 0 4px;
}

.header-wordmark img {
  width: 36px;
  height: 36px;
  overflow: hidden;
  border: 1px solid rgba(85, 237, 240, 0.75);
  border-radius: 8px;
}

.header-wordmark span {
  position: relative;
  color: #f8f9ff;
  font-size: 25px;
  font-weight: 800;
}

.header-wordmark span::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink), transparent);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--cyan);
  font-family: Consolas, "Courier New", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.eyebrow > i {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(85, 237, 240, 0.38);
}

.display-heading {
  font-weight: 700;
  letter-spacing: 0;
}

.display-heading span,
.display-heading em {
  display: block;
  overflow-wrap: anywhere;
}

.display-heading em {
  color: transparent;
  font-style: normal;
  font-weight: 500;
  -webkit-text-stroke: 1px rgba(218, 224, 242, 0.76);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 90px;
}

.section-heading .display-heading {
  margin-top: 30px;
  font-size: 68px;
  line-height: 1.03;
}

.section-intro {
  max-width: 480px;
  padding-bottom: 12px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 164px;
  height: 56px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.action-button b {
  color: var(--pink);
  font-size: 19px;
}

.action-button:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.action-primary {
  color: #071016;
  border-color: transparent;
  background: var(--cyan);
  box-shadow: 0 0 25px rgba(85, 237, 240, 0.12);
}

.action-primary:hover {
  color: #071016;
  border-color: transparent;
  background: #7af5f6;
  box-shadow: 0 0 32px rgba(85, 237, 240, 0.24);
}

.action-secondary {
  background: rgba(7, 11, 25, 0.56);
}

.hero {
  height: 940px;
  overflow: hidden;
}

.hero::before {
  background-size: 100% 100%;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 16, 0.05) 0 44%, rgba(5, 7, 16, 0.15) 60%, rgba(6, 8, 19, 0.66) 100%),
    linear-gradient(180deg, transparent 68%, rgba(39, 22, 71, 0.22) 90%, rgba(5, 7, 16, 0.8));
}

.hero-layout {
  display: flex;
  align-items: flex-start;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: 59%;
  padding-top: 165px;
}

.build-code {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  color: var(--dim);
  font-family: Consolas, "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 1.3px;
}

.build-code b {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 92, 174, 0.74);
}

.hero .display-heading {
  margin-top: 28px;
  font-size: 72px;
  line-height: 1.04;
}

.hero .display-heading em {
  font-size: 78px;
}

.hero-lead {
  max-width: 620px;
  margin-top: 31px;
  color: #a4abc0;
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.hero-tags span {
  min-height: 34px;
  padding: 10px 13px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: #b9c0d4;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.7px;
}

.hero-tags span:first-child {
  color: var(--cyan);
  border-color: rgba(85, 237, 240, 0.34);
}

.hero-tags span:nth-child(2) {
  color: var(--pink);
  border-color: rgba(255, 92, 174, 0.32);
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 34px;
}

.hero-metrics {
  display: flex;
  margin-top: 50px;
}

.hero-metrics div {
  min-width: 130px;
  padding: 0 22px;
  border-left: 1px solid rgba(155, 168, 202, 0.25);
}

.hero-metrics div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-metrics dt {
  color: #f6f8ff;
  font-family: Consolas, "Courier New", monospace;
  font-size: 17px;
  font-weight: 700;
}

.hero-metrics div:nth-child(2) dt {
  color: var(--pink);
}

.hero-metrics dd {
  margin-top: 7px;
  color: var(--dim);
  font-size: 10px;
}

.hero-visual {
  position: absolute;
  top: 250px;
  right: -46px;
  z-index: 2;
  width: 592px;
  min-height: 452px;
}

.hero-visual::before {
  position: absolute;
  top: -62px;
  right: -54px;
  bottom: -88px;
  left: -60px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(85, 237, 240, 0.08);
  transform: skewY(-8deg);
  background: linear-gradient(135deg, rgba(85, 237, 240, 0.045), transparent 40%, rgba(255, 92, 174, 0.055));
}

.hero-visual-line {
  position: absolute;
  top: -36px;
  right: 4px;
  width: 82%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink));
  transform: rotate(-7deg);
  transform-origin: right;
}

.hero-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(150, 168, 213, 0.36);
  border-radius: 8px;
  background: #060914;
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.42), 0 0 50px rgba(104, 74, 200, 0.15);
  transform: perspective(1200px) rotateY(-7deg) rotateZ(1deg);
}

.hero-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-shot img {
  width: 100%;
  aspect-ratio: 1920 / 972;
  object-fit: contain;
}

.hero-visual-meta {
  display: grid;
  grid-template-columns: 1fr auto 70px;
  align-items: center;
  gap: 16px;
  width: 78%;
  min-height: 48px;
  margin: 17px 0 0 auto;
  padding: 0 14px;
  border: 1px solid rgba(147, 164, 205, 0.24);
  border-radius: 6px;
  color: var(--dim);
  background: rgba(7, 11, 25, 0.8);
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
}

.hero-visual-meta b {
  color: var(--cyan);
  font-size: 10px;
}

.hero-visual-meta i {
  position: relative;
  height: 2px;
  background: rgba(137, 151, 190, 0.2);
}

.hero-visual-meta i::after {
  position: absolute;
  inset: 0 18% 0 0;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--pink));
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #535d79;
  transform: translateX(-50%);
}

.scroll-cue > span {
  position: relative;
  width: 17px;
  height: 30px;
  border: 1px solid rgba(139, 154, 193, 0.55);
  border-radius: 9px;
}

.scroll-cue i {
  position: absolute;
  top: 6px;
  left: 7px;
  width: 2px;
  height: 6px;
  background: var(--cyan);
  animation: scroll-dot 1.7s ease-in-out infinite;
}

.scroll-cue small {
  font-family: Consolas, "Courier New", monospace;
  font-size: 8px;
  letter-spacing: 1.5px;
}

@keyframes scroll-dot {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(9px); opacity: 1; }
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: calc(100% - 90px);
  height: 127px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(85, 237, 240, 0.32);
  background-color: #080b16;
  background-image: linear-gradient(90deg, transparent, rgba(104, 69, 180, 0.13));
  background-size: 100% 100%;
}

.signal-strip > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  border-right: 1px solid var(--line);
}

.signal-strip > div:last-child {
  border-right: 0;
}

.signal-strip small {
  color: var(--dim);
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 1.3px;
}

.signal-strip strong {
  margin-top: 13px;
  font-size: 18px;
  font-weight: 500;
}

.signal-strip i {
  position: absolute;
  right: 24px;
  bottom: 25px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.features {
  height: 1207px;
  padding-top: 205px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 76px;
}

.feature-card {
  --card-accent: var(--cyan);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 552px;
  overflow: hidden;
  padding: 32px 28px 27px;
  border: 1px solid rgba(132, 148, 193, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(28, 45, 79, 0.78), rgba(10, 15, 31, 0.9) 62%),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 220ms ease, transform 260ms var(--ease), box-shadow 220ms ease;
}

.feature-card::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(85, 237, 240, 0.035), transparent 45%);
}

.feature-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 55%, transparent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 28px color-mix(in srgb, var(--card-accent) 10%, transparent);
  transform: translateY(-7px);
}

.feature-card-pink { --card-accent: var(--pink); background: linear-gradient(145deg, rgba(44, 35, 77, 0.82), rgba(12, 15, 32, 0.92) 65%); }
.feature-card-violet { --card-accent: var(--violet); background: linear-gradient(145deg, rgba(37, 40, 82, 0.82), rgba(11, 14, 31, 0.92) 65%); }
.feature-card-amber { --card-accent: var(--amber); background: linear-gradient(145deg, rgba(48, 45, 60, 0.8), rgba(13, 15, 29, 0.93) 66%); }

.feature-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  color: #66708a;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
}

.feature-top i {
  justify-self: center;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-accent);
  box-shadow: 0 0 12px var(--card-accent);
}

.feature-top b {
  color: var(--pink);
  font-size: 16px;
  font-weight: 400;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-top: 56px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 38%, transparent);
  border-radius: 18px;
  color: var(--card-accent);
  background: color-mix(in srgb, var(--card-accent) 4%, transparent);
  font-family: Consolas, "Courier New", monospace;
  font-size: 38px;
  line-height: 1;
}

.feature-card > small {
  margin-top: 29px;
  color: #69728d;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 1.4px;
}

.feature-card h3 {
  min-height: 74px;
  margin-top: 14px;
  color: #f2f5ff;
  font-size: 27px;
  line-height: 1.34;
}

.feature-card > p {
  margin-top: 12px;
  color: #8992aa;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.86;
}

.feature-stat {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: auto;
  padding-top: 21px;
  border-top: 1px solid rgba(146, 160, 197, 0.2);
}

.feature-stat strong {
  color: var(--card-accent);
  font-family: Consolas, "Courier New", monospace;
  font-size: 28px;
  font-weight: 500;
}

.feature-stat span {
  color: #626b84;
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
}

.signals-section {
  height: 1440px;
  padding-top: 248px;
}

.signals-heading .display-heading {
  max-width: 760px;
  font-size: 70px;
}

.signal-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 86px;
  border-bottom: 1px solid var(--line);
}

.signal-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  height: 54px;
  padding: 0 15px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 7px 7px 0 0;
  color: #636d87;
  background: transparent;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  text-align: left;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.signal-tab span {
  color: inherit;
}

.signal-tab b {
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.signal-tab:hover,
.signal-tab.active {
  color: #dfe5f7;
  border-color: rgba(85, 237, 240, 0.34);
  background: rgba(85, 237, 240, 0.025);
}

.signal-tab.active span {
  color: var(--cyan);
}

.signal-map {
  display: grid;
  grid-template-columns: 54% 46%;
  height: 610px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(132, 148, 193, 0.27);
  border-radius: 8px;
  background: rgba(8, 12, 27, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025), 0 35px 80px rgba(0, 0, 0, 0.2);
}

.signal-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  overflow: hidden;
  padding: 30px;
  cursor: zoom-in;
  border-right: 1px solid rgba(139, 153, 192, 0.2);
  background:
    linear-gradient(135deg, rgba(85, 237, 240, 0.035), transparent 45%, rgba(168, 136, 255, 0.035)),
    #080c1b;
}

.signal-preview img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid rgba(159, 175, 216, 0.2);
  border-radius: 6px;
  background: #050710;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.36);
  transition: opacity 180ms ease, transform 420ms var(--ease);
}

.signal-preview:hover img {
  transform: scale(1.015);
}

.signal-preview img.is-changing {
  opacity: 0;
  transform: translateY(8px) scale(0.99);
}

.signal-copy {
  display: flex;
  flex-direction: column;
  padding: 55px 52px;
  background: linear-gradient(145deg, rgba(24, 26, 60, 0.44), rgba(8, 12, 27, 0.12));
}

.signal-kicker {
  color: var(--pink);
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.signal-copy h3 {
  margin-top: 22px;
  font-size: 36px;
  line-height: 1.25;
}

.signal-copy > p:nth-of-type(2) {
  min-height: 88px;
  margin-top: 21px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.signal-score {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-top: 40px;
}

.signal-score small {
  color: #68718b;
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
}

.signal-score strong {
  color: var(--cyan);
  font-family: Consolas, "Courier New", monospace;
  font-size: 24px;
  font-weight: 500;
}

.signal-score > i {
  position: relative;
  grid-column: 1 / -1;
  height: 4px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(137, 151, 190, 0.18);
}

.signal-score > i b {
  display: block;
  width: 98.8%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), #b2a9e1 55%, var(--pink));
  transition: width 500ms var(--ease);
}

.signal-facts {
  margin-top: auto;
}

.signal-facts div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  border-top: 1px solid rgba(142, 155, 193, 0.18);
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
}

.signal-facts dt {
  color: #5f6882;
}

.signal-facts dd {
  color: #cdd3e6;
  font-weight: 700;
}

.editions {
  z-index: 2;
  height: 1120px;
  overflow: visible;
  padding-top: 208px;
}

.editions-heading .display-heading {
  font-size: 67px;
}

.edition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 1000px;
  max-width: 100%;
  height: 510px;
  margin: 58px auto 0;
}

.edition-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 34px 32px 27px;
  border: 1px solid rgba(136, 153, 198, 0.27);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(29, 42, 75, 0.88), rgba(12, 16, 32, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 30px 70px rgba(0, 0, 0, 0.17);
}

.edition-card-alpha {
  color: #ff8dd0;
  border-color: rgba(255, 92, 174, 0.74);
  background: linear-gradient(145deg, rgba(52, 38, 91, 0.9), rgba(31, 16, 47, 0.95));
  box-shadow: 0 0 0 2px rgba(255, 92, 174, 0.18), 0 0 38px rgba(255, 92, 174, 0.2), inset 0 0 55px rgba(255, 92, 174, 0.06);
}

.edition-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a8b0c8;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 1.2px;
}

.edition-card-alpha .edition-label {
  color: #f195cc;
}

.edition-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.edition-card-alpha .edition-label i {
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
}

.edition-card h3 {
  margin-top: 62px;
  color: #f4f6ff;
  font-size: 40px;
}

.edition-card-alpha h3 {
  color: #ff8bd1;
  text-shadow: 0 0 18px rgba(255, 92, 174, 0.28);
}

.edition-card > p {
  min-height: 77px;
  margin-top: 14px;
  color: #a1a9bf;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.85;
}

.edition-card-alpha > p {
  color: #df83c1;
}

.edition-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-top: 23px;
  color: #b9c0d3;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
}

.edition-card li::before {
  margin-right: 7px;
  color: var(--cyan);
  content: "✓";
}

.edition-card-alpha li::before {
  color: var(--pink);
}

.edition-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 150px;
  min-height: 42px;
  margin-top: auto;
  border-bottom: 1px solid rgba(163, 177, 211, 0.34);
  font-size: 12px;
  font-weight: 700;
}

.edition-card > a b {
  color: var(--pink);
  font-size: 16px;
}

.edition-detail {
  --reveal-transform: translate(-50%, 26px);
  --reveal-final-transform: translate(-50%, 0);
  position: absolute;
  top: 815px;
  left: 50%;
  z-index: 5;
  display: grid;
  grid-template-columns: 37% 63%;
  width: 1000px;
  max-width: 100%;
  height: 338px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 92, 174, 0.84);
  border-radius: 8px;
  color: #f47ac7;
  background: rgba(39, 16, 54, 0.93);
  box-shadow: 0 0 0 2px rgba(255, 92, 174, 0.12), 0 0 50px rgba(255, 92, 174, 0.18), inset 0 0 60px rgba(255, 92, 174, 0.055);
  transform: translateX(-50%);
}

.edition-detail > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 45px;
}

.edition-detail > div small {
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 1.3px;
}

.edition-detail > div strong {
  padding-bottom: 25px;
  font-size: 27px;
  line-height: 1.35;
}

.edition-detail ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: end;
  padding: 26px 0 18px;
}

.edition-detail li {
  display: flex;
  flex-direction: column;
  min-height: 125px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 153, 218, 0.25);
}

.edition-detail li span {
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
}

.edition-detail li b {
  margin-top: 12px;
  font-size: 13px;
}

.edition-detail li small {
  margin-top: 8px;
  color: #cf79b2;
  font-size: 11px;
  line-height: 1.7;
}

.access-section {
  height: 923px;
  padding-top: 356px;
}

.access-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr;
  align-items: stretch;
  gap: 16px;
  height: 386px;
  padding: 0 38px;
  border-top: 1px solid rgba(139, 153, 192, 0.27);
  border-bottom: 1px solid rgba(139, 153, 192, 0.27);
  background: linear-gradient(110deg, rgba(21, 33, 66, 0.76), rgba(15, 16, 38, 0.45));
}

.access-copy {
  align-self: center;
  padding-right: 30px;
}

.access-copy .display-heading {
  margin-top: 26px;
  font-size: 40px;
  line-height: 1.12;
}

.access-copy > p:last-child {
  max-width: 430px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}

.access-ticket {
  align-self: center;
  display: flex;
  flex-direction: column;
  height: 306px;
  padding: 27px 26px;
  border: 1px solid rgba(139, 156, 202, 0.3);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(33, 47, 84, 0.9), rgba(14, 19, 38, 0.92));
}

.access-ticket-pink {
  border-color: rgba(255, 92, 174, 0.72);
  background: linear-gradient(145deg, rgba(52, 28, 77, 0.94), rgba(30, 16, 43, 0.94));
  box-shadow: 0 0 0 2px rgba(255, 92, 174, 0.12), 0 0 35px rgba(255, 92, 174, 0.15);
}

.access-ticket > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(144, 159, 198, 0.2);
}

.access-ticket > div small,
.access-ticket > span {
  color: #a4acc3;
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 1px;
}

.access-ticket-pink > div small,
.access-ticket-pink > span {
  color: #dc76b6;
}

.access-ticket > div i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.access-ticket-pink > div i {
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

.access-ticket > span {
  margin-top: 19px;
  color: #606a83;
}

.access-ticket h3 {
  margin-top: 18px;
  font-family: Consolas, "Courier New", monospace;
  font-size: 22px;
}

.access-ticket > p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
}

.access-ticket > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(85, 237, 240, 0.45);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.access-ticket-pink > a {
  border-color: rgba(255, 92, 174, 0.45);
}

.access-ticket > a b {
  color: var(--cyan);
  font-size: 16px;
}

.access-ticket-pink > a b {
  color: var(--pink);
}

.changelog-section {
  height: 1120px;
  padding-top: 204px;
}

.changelog-heading .display-heading {
  font-size: 66px;
}

.changelog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 61px;
}

.changelog-card {
  min-width: 0;
  height: 480px;
  padding: 28px 30px;
  border: 1px solid rgba(138, 154, 197, 0.29);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(27, 41, 74, 0.76), rgba(10, 14, 29, 0.9));
}

.changelog-card-alpha {
  border-color: rgba(255, 92, 174, 0.8);
  background: linear-gradient(145deg, rgba(38, 33, 75, 0.8), rgba(18, 13, 35, 0.94));
  box-shadow: 0 0 0 2px rgba(255, 92, 174, 0.11), 0 0 40px rgba(255, 92, 174, 0.14);
}

.log-channel {
  display: flex;
  justify-content: space-between;
  color: #aab2c8;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 1.3px;
}

.changelog-card-alpha .log-channel {
  color: #eb85c8;
}

.log-channel i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.changelog-card-alpha .log-channel i {
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

.log-entry {
  margin-top: 64px;
  padding-left: 18px;
  border-left: 1px solid var(--cyan);
}

.changelog-card-alpha .log-entry {
  margin-top: 62px;
  border-color: var(--pink);
}

.log-entry > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.log-entry strong {
  color: #f0f3fd;
  font-family: Consolas, "Courier New", monospace;
  font-size: 22px;
}

.changelog-card-alpha .log-entry strong,
.changelog-card-alpha .log-entry h3 {
  color: #f477c5;
}

.log-entry time {
  color: #9ba4bc;
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
}

.log-entry > small {
  display: block;
  margin-top: 12px;
  color: #b3bacd;
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
}

.log-entry h3 {
  margin-top: 13px;
  font-size: 24px;
}

.log-entry p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}

.log-entry-muted {
  margin-top: 42px !important;
  padding-top: 27px;
  border-top: 1px solid rgba(146, 160, 197, 0.18);
  border-left-color: rgba(255, 92, 174, 0.45) !important;
  opacity: 0.52;
}

.log-entry-muted strong {
  font-size: 18px;
}

.log-entry-muted h3 {
  font-size: 20px;
}

.changelog-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  color: #626c87;
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
}

.changelog-note i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.studio-section {
  height: 1135px;
}

.studio-layout {
  display: grid;
  grid-template-columns: 43% 57%;
  gap: 68px;
}

.studio-visual {
  align-self: center;
  width: 390px;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid rgba(142, 157, 199, 0.3);
  border-radius: 8px;
  background: #0b1020;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
}

.studio-image {
  height: 384px;
  overflow: hidden;
  border-bottom: 1px solid rgba(142, 157, 199, 0.24);
  background: #060914;
}

.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.studio-visual figcaption {
  display: grid;
  grid-template-columns: 42px 1fr 40px;
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 14px;
}

.studio-visual figcaption > img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.studio-visual figcaption div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.studio-visual figcaption strong {
  font-size: 13px;
}

.studio-visual figcaption small {
  margin-top: 7px;
  color: var(--cyan);
  font-family: Consolas, "Courier New", monospace;
  font-size: 8px;
}

.studio-visual figcaption a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 92, 174, 0.5);
  border-radius: 6px;
  color: var(--pink);
}

.studio-copy {
  align-self: center;
}

.studio-copy .display-heading {
  margin-top: 29px;
  font-size: 62px;
  line-height: 1.04;
}

.studio-lead {
  margin-top: 31px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.85;
}

.studio-profile {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  margin-top: 42px;
}

.studio-profile > div {
  display: flex;
  flex-direction: column;
}

.studio-profile strong {
  font-size: 18px;
}

.studio-profile small {
  margin-top: 8px;
  color: var(--pink);
  font-size: 10px;
}

.studio-profile p {
  color: #858da5;
  font-size: 13px;
  line-height: 1.8;
}

.studio-tags {
  display: flex;
  gap: 9px;
  margin-top: 32px;
}

.studio-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(141, 156, 196, 0.23);
  color: #68718b;
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
}

.studio-copy blockquote {
  margin-top: 31px;
  padding: 24px 0;
  border-top: 1px solid rgba(144, 158, 197, 0.2);
  border-bottom: 1px solid rgba(144, 158, 197, 0.2);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.studio-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 29px;
}

.studio-principles > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  min-width: 0;
  padding-right: 18px;
  border-right: 1px solid rgba(144, 158, 197, 0.19);
}

.studio-principles > div:last-child {
  border-right: 0;
}

.studio-principles dt {
  color: var(--cyan);
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
}

.studio-principles dd {
  display: flex;
  flex-direction: column;
}

.studio-principles strong {
  font-size: 13px;
}

.studio-principles small {
  margin-top: 8px;
  color: #69728b;
  font-size: 10px;
}

.quiet-section {
  height: 1150px;
}

.quiet-layout {
  display: grid;
  grid-template-columns: 53% 47%;
  align-items: center;
  gap: 46px;
}

.quiet-visual {
  position: relative;
  width: 520px;
  height: 520px;
}

.quiet-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(85, 237, 240, 0.32);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.quiet-rings > i {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.quiet-rings > i:nth-child(1) { width: 318px; height: 318px; border: 1px solid rgba(255, 92, 174, 0.35); }
.quiet-rings > i:nth-child(2) { width: 260px; height: 260px; border: 1px dashed rgba(168, 136, 255, 0.36); animation: orbit-spin 20s linear infinite; }
.quiet-rings > i:nth-child(3) { width: 220px; height: 220px; border: 1px solid rgba(85, 237, 240, 0.28); }
.quiet-rings > i:nth-child(4) { width: 164px; height: 164px; border: 1px solid rgba(255, 92, 174, 0.35); box-shadow: 0 0 35px rgba(255, 92, 174, 0.08); }

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.quiet-rings > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--pink);
  font-family: Consolas, "Courier New", monospace;
  transform: translate(-50%, -50%);
}

.quiet-rings span small {
  font-size: 11px;
  letter-spacing: 3px;
}

.quiet-rings span strong {
  margin-top: 9px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 3px;
}

.quiet-rings span b {
  width: 6px;
  height: 6px;
  margin-top: 21px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.quiet-rings::before,
.quiet-rings::after {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px var(--cyan);
}

.quiet-rings::before { top: 102px; right: 82px; }
.quiet-rings::after { right: 48px; bottom: 48px; }

.quiet-tag {
  position: absolute;
  min-width: 125px;
  padding: 12px 14px;
  border: 1px solid rgba(145, 160, 199, 0.42);
  color: var(--cyan);
  background: rgba(7, 11, 25, 0.86);
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
}

.quiet-tag-top { top: 45px; right: 0; }
.quiet-tag-bottom { bottom: 40px; left: 0; color: #7d87a0; }
.quiet-tag-bottom i { display: inline-block; width: 5px; height: 5px; margin-right: 5px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.quiet-copy .display-heading {
  margin-top: 29px;
  font-size: 62px;
  line-height: 1.05;
}

.quiet-lead {
  margin-top: 31px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.92;
}

.quiet-list {
  margin-top: 40px;
}

.quiet-list li {
  display: grid;
  grid-template-columns: 45px 1fr;
  min-height: 87px;
  padding: 16px 0;
  border-top: 1px solid rgba(141, 155, 193, 0.2);
}

.quiet-list li:last-child {
  border-bottom: 1px solid rgba(141, 155, 193, 0.2);
}

.quiet-list > li > span {
  color: var(--cyan);
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
}

.quiet-list div {
  display: flex;
  flex-direction: column;
}

.quiet-list strong {
  font-size: 14px;
}

.quiet-list small {
  margin-top: 8px;
  color: #707990;
  font-size: 11px;
}

.closing-section {
  height: 1028px;
  margin-top: 252px;
  overflow: hidden;
}

.closing-section::after {
  background:
    linear-gradient(90deg, transparent 0 52%, rgba(85, 237, 240, 0.055) 70%, rgba(255, 92, 174, 0.05) 88%, transparent),
    linear-gradient(180deg, rgba(5, 7, 16, 0.18), transparent 30%, rgba(5, 7, 16, 0.58));
}

.closing-layout {
  display: grid;
  grid-template-columns: 61% 39%;
  align-items: center;
}

.closing-copy .display-heading {
  margin-top: 30px;
  font-size: 69px;
  line-height: 1.04;
}

.closing-copy > p:last-of-type {
  max-width: 620px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.92;
}

.closing-copy .action-button {
  margin-top: 37px;
}

.closing-mark {
  --reveal-transform: translateY(26px) rotate(10deg);
  --reveal-final-transform: translateY(0) rotate(10deg);
  position: relative;
  width: 360px;
  height: 360px;
  justify-self: end;
  transform: rotate(10deg);
}

.closing-mark::before {
  position: absolute;
  inset: -25px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(85, 237, 240, 0.17);
  border-radius: 22%;
  box-shadow: 0 0 80px rgba(85, 237, 240, 0.11), 0 0 100px rgba(255, 92, 174, 0.08);
}

.closing-mark > div {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid rgba(85, 237, 240, 0.7);
  border-radius: 18%;
  background: #0b1013;
  box-shadow: 0 0 0 7px rgba(7, 11, 25, 0.92), 0 0 0 9px rgba(255, 92, 174, 0.28), 0 0 55px rgba(85, 237, 240, 0.25);
}

.closing-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-mark > span {
  position: absolute;
  top: -33px;
  left: -30px;
  color: #69728d;
  font-family: Consolas, "Courier New", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  transform: rotate(-90deg);
  transform-origin: bottom right;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 202px), var(--content));
  height: 26px;
  margin: 0 auto;
  color: #49516a;
  background: var(--bg);
  font-family: Consolas, "Courier New", monospace;
  font-size: 8px;
}

.site-footer b {
  color: #6f7994;
  font-weight: 500;
}

.lightbox {
  width: min(1240px, calc(100% - 48px));
  max-width: none;
  height: min(820px, calc(100% - 48px));
  max-height: none;
  padding: 60px 74px 34px;
  border: 1px solid rgba(143, 160, 203, 0.38);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5, 8, 18, 0.97);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7), 0 0 60px rgba(85, 237, 240, 0.08);
}

.lightbox::backdrop {
  background: rgba(2, 3, 9, 0.86);
  backdrop-filter: blur(12px);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 20px;
}

.lightbox figure {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-height: 100%;
}

.lightbox figure img {
  width: 100%;
  min-height: 0;
  max-height: 650px;
  object-fit: contain;
  border: 1px solid rgba(145, 161, 203, 0.27);
  background: #03050c;
}

.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  color: #a7afc7;
  font-family: Consolas, "Courier New", monospace;
  font-size: 10px;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: #cbd1e3;
  background: rgba(255, 255, 255, 0.02);
  font-size: 24px;
}

.lightbox-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 54px;
  cursor: pointer;
  border: 1px solid rgba(145, 161, 203, 0.28);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.018);
  font-size: 28px;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  color: #071016;
  border-color: var(--cyan);
  background: var(--cyan);
}

.reveal {
  opacity: 0;
  transform: var(--reveal-transform, translateY(26px));
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: var(--reveal-final-transform, translateY(0));
}

.feature-card.reveal.is-visible:hover {
  transform: translateY(-7px);
}

@media (max-width: 1180px) {
  .section-inner,
  .site-footer {
    width: calc(100% - 64px);
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 155px;
    width: calc(100% - 64px);
  }

  .header-wordmark span {
    font-size: 21px;
  }

  .hero-copy {
    width: 62%;
  }

  .hero .display-heading {
    font-size: 61px;
  }

  .hero .display-heading em {
    font-size: 66px;
  }

  .hero-visual {
    right: -100px;
    width: 540px;
    opacity: 0.83;
  }

  .section-heading .display-heading,
  .signals-heading .display-heading,
  .editions-heading .display-heading,
  .changelog-heading .display-heading {
    font-size: 58px;
  }

  .feature-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .feature-card h3 {
    font-size: 23px;
  }

  .feature-card > p {
    font-size: 13px;
  }

  .studio-copy .display-heading,
  .quiet-copy .display-heading {
    font-size: 52px;
  }

  .closing-copy .display-heading {
    font-size: 59px;
  }

  .closing-mark {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 900px) {
  .section-inner,
  .site-footer {
    width: calc(100% - 48px);
  }

  .site-header {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
  }

  .header-wordmark {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro {
    max-width: 620px;
  }

  .hero {
    height: auto;
    min-height: 1080px;
  }

  .hero-layout {
    display: block;
  }

  .hero-copy {
    width: 100%;
    padding-top: 145px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 86%;
    margin: 78px 0 120px auto;
    opacity: 1;
  }

  .scroll-cue {
    bottom: 24px;
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 32px);
    height: 220px;
  }

  .signal-strip > div {
    border-bottom: 1px solid var(--line);
  }

  .features,
  .signals-section,
  .editions,
  .access-section,
  .changelog-section,
  .studio-section,
  .quiet-section,
  .closing-section {
    height: auto;
  }

  .features {
    min-height: 1550px;
    padding: 150px 0;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signals-section {
    min-height: 1500px;
    padding: 160px 0;
  }

  .signal-tabs {
    margin-top: 65px;
  }

  .signal-map {
    grid-template-columns: 1fr;
    height: 940px;
  }

  .signal-preview {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .editions {
    min-height: 1880px;
    padding: 160px 0;
    overflow: hidden;
  }

  .edition-grid {
    grid-template-columns: 1fr;
    width: 620px;
    height: auto;
  }

  .edition-card {
    min-height: 500px;
  }

  .edition-detail {
    --reveal-transform: translateY(26px);
    --reveal-final-transform: translateY(0);
    position: relative;
    top: auto;
    left: auto;
    grid-template-columns: 1fr;
    width: 620px;
    height: auto;
    min-height: 390px;
    margin: 18px auto 0;
    transform: none;
  }

  .edition-detail > div {
    gap: 25px;
    padding-right: 0;
  }

  .access-section {
    min-height: 1200px;
    padding: 160px 0;
  }

  .access-layout {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    padding: 48px;
  }

  .access-copy {
    grid-column: 1 / -1;
    padding: 0 0 30px;
  }

  .changelog-section {
    min-height: 1320px;
    padding: 160px 0;
  }

  .studio-section {
    min-height: 1450px;
    padding: 150px 0;
  }

  .studio-layout {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .studio-visual {
    justify-self: center;
    order: 2;
  }

  .studio-copy {
    order: 1;
  }

  .quiet-section {
    min-height: 1370px;
    padding: 150px 0;
  }

  .quiet-layout {
    grid-template-columns: 1fr;
  }

  .quiet-copy {
    order: 1;
  }

  .quiet-visual {
    order: 2;
    justify-self: center;
  }

  .closing-section {
    min-height: 960px;
    margin-top: 0;
    padding: 150px 0;
  }

  .closing-layout {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .closing-mark {
    width: 260px;
    height: 260px;
    justify-self: center;
  }

  .site-footer {
    height: 72px;
  }
}

@media (max-width: 640px) {
  .section-inner,
  .site-footer {
    width: calc(100% - 32px);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .nav-shell,
  .nav-top {
    height: 52px;
  }

  .nav-shell {
    border-radius: 12px;
  }

  .nav-shell.is-open {
    height: calc(100vh - 16px);
    max-height: 640px;
    overflow-y: auto;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .menu-toggle span {
    left: 10px;
    width: 13px;
  }

  .menu-toggle span:first-child { top: 13px; }
  .menu-toggle span:last-child { top: 19px; }
  .menu-toggle[aria-expanded="true"] span:first-child,
  .menu-toggle[aria-expanded="true"] span:last-child { top: 16px; }

  .nav-logo {
    width: 33px;
    height: 33px;
  }

  .locale-toggle {
    width: 33px;
    height: 33px;
    font-size: 9px;
  }

  .nav-account {
    min-width: 80px;
    height: 33px;
    gap: 8px;
    margin-left: 7px;
    padding: 0 10px;
    font-size: 10px;
  }

  .nav-account-long {
    display: none;
  }

  .nav-account-short {
    display: inline;
  }

  .nav-account b {
    font-size: 13px;
  }

  .nav-drawer {
    grid-template-columns: 1fr;
    height: auto;
    padding: 8px;
  }

  .nav-group {
    padding: 14px 16px;
  }

  .nav-group small {
    margin-bottom: 7px;
  }

  .nav-group a {
    min-height: 34px;
  }

  .eyebrow {
    gap: 9px;
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  .eyebrow > i {
    width: 20px;
  }

  .section-heading .display-heading,
  .signals-heading .display-heading,
  .editions-heading .display-heading,
  .changelog-heading .display-heading,
  .studio-copy .display-heading,
  .quiet-copy .display-heading,
  .closing-copy .display-heading {
    font-size: 42px;
    line-height: 1.08;
  }

  .section-intro {
    padding-bottom: 0;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero {
    min-height: 970px;
  }

  .hero-copy {
    padding-top: 105px;
  }

  .build-code {
    margin-top: 21px;
    font-size: 9px;
  }

  .hero .display-heading,
  .hero .display-heading em {
    font-size: 45px;
    line-height: 1.08;
  }

  .hero .display-heading {
    margin-top: 22px;
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.82;
  }

  .hero-tags {
    margin-top: 21px;
  }

  .hero-tags span {
    font-size: 8px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 25px;
  }

  .action-button {
    width: 100%;
    height: 50px;
  }

  .hero-metrics {
    justify-content: space-between;
    margin-top: 34px;
  }

  .hero-metrics div {
    min-width: 0;
    flex: 1;
    padding: 0 12px;
  }

  .hero-metrics dt {
    font-size: 13px;
  }

  .hero-metrics dd {
    font-size: 8px;
  }

  .hero-visual {
    width: 100%;
    min-height: 0;
    margin: 55px 0 100px;
  }

  .hero-visual::before,
  .hero-visual-line,
  .hero-visual-meta {
    display: none;
  }

  .hero-shot {
    transform: none;
  }

  .scroll-cue small {
    display: none;
  }

  .signal-strip {
    width: 100%;
    height: 230px;
  }

  .signal-strip > div {
    padding: 0 15px;
  }

  .signal-strip small {
    font-size: 8px;
  }

  .signal-strip strong {
    max-width: 115px;
    font-size: 13px;
    line-height: 1.45;
  }

  .signal-strip i {
    right: 14px;
    bottom: 16px;
  }

  .features {
    min-height: 1640px;
    padding: 120px 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 52px;
  }

  .feature-card {
    height: 310px;
    padding: 22px;
  }

  .feature-icon {
    position: absolute;
    top: 49px;
    right: 22px;
    width: 54px;
    height: 54px;
    margin-top: 0;
    border-radius: 14px;
    font-size: 29px;
  }

  .feature-card > small {
    margin-top: 38px;
  }

  .feature-card h3 {
    min-height: 0;
    max-width: calc(100% - 60px);
    margin-top: 11px;
    font-size: 21px;
  }

  .feature-card > p {
    max-width: 94%;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.7;
  }

  .feature-stat {
    padding-top: 13px;
  }

  .feature-stat strong {
    font-size: 21px;
  }

  .signals-section {
    min-height: 1350px;
    padding: 120px 0;
  }

  .signal-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 50px;
  }

  .signal-tab {
    border-radius: 0;
    border-bottom-color: rgba(139, 153, 192, 0.16);
  }

  .signal-map {
    grid-template-rows: 360px 1fr;
    height: 780px;
    margin-top: 16px;
  }

  .signal-preview {
    padding: 14px;
  }

  .signal-copy {
    padding: 32px 25px;
  }

  .signal-copy h3 {
    margin-top: 16px;
    font-size: 26px;
  }

  .signal-copy > p:nth-of-type(2) {
    min-height: 65px;
    margin-top: 14px;
    font-size: 13px;
  }

  .signal-score {
    margin-top: 24px;
  }

  .editions {
    min-height: 1850px;
    padding: 120px 0;
  }

  .edition-grid {
    gap: 14px;
    margin-top: 50px;
  }

  .edition-card {
    min-height: 500px;
    padding: 27px 24px 24px;
  }

  .edition-card h3 {
    margin-top: 48px;
    font-size: 32px;
  }

  .edition-card > p {
    font-size: 13px;
  }

  .edition-card ul {
    grid-template-columns: 1fr;
  }

  .edition-detail {
    grid-template-columns: 1fr;
    min-height: 440px;
    padding: 26px 23px;
  }

  .edition-detail > div strong {
    font-size: 22px;
  }

  .edition-detail ol {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0 0;
  }

  .edition-detail li {
    display: grid;
    grid-template-columns: 26px 100px 1fr;
    align-items: center;
    min-height: 64px;
    padding-top: 0;
  }

  .edition-detail li b,
  .edition-detail li small {
    margin-top: 0;
  }

  .access-section {
    min-height: 1320px;
    padding: 120px 0;
  }

  .access-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    padding: 38px 16px;
  }

  .access-copy {
    grid-column: auto;
  }

  .access-copy .display-heading {
    font-size: 36px;
  }

  .access-ticket {
    height: 300px;
  }

  .changelog-section {
    min-height: 1510px;
    padding: 120px 0;
  }

  .changelog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 52px;
  }

  .changelog-card {
    height: 405px;
    padding: 24px 21px;
  }

  .changelog-card-alpha {
    height: 560px;
  }

  .log-entry,
  .changelog-card-alpha .log-entry {
    margin-top: 45px;
  }

  .log-entry-muted {
    margin-top: 32px !important;
  }

  .studio-section {
    min-height: 1420px;
    padding: 120px 0;
  }

  .studio-layout {
    gap: 72px;
  }

  .studio-lead {
    font-size: 13px;
  }

  .studio-profile {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }

  .studio-tags {
    overflow-x: auto;
  }

  .studio-tags span {
    flex: 0 0 auto;
  }

  .studio-copy blockquote {
    font-size: 14px;
  }

  .studio-principles {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .studio-principles > div {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(144, 158, 197, 0.19);
  }

  .studio-visual {
    width: 100%;
  }

  .studio-image {
    height: 300px;
  }

  .quiet-section {
    min-height: 1260px;
    padding: 120px 0;
  }

  .quiet-layout {
    gap: 65px;
  }

  .quiet-lead {
    font-size: 13px;
  }

  .quiet-visual {
    width: 100%;
    height: 390px;
  }

  .quiet-rings {
    width: 330px;
    height: 330px;
  }

  .quiet-rings > i:nth-child(1) { width: 260px; height: 260px; }
  .quiet-rings > i:nth-child(2) { width: 214px; height: 214px; }
  .quiet-rings > i:nth-child(3) { width: 176px; height: 176px; }
  .quiet-rings > i:nth-child(4) { width: 132px; height: 132px; }

  .quiet-tag-top { top: 4px; right: 0; }
  .quiet-tag-bottom { bottom: 0; left: 0; }

  .closing-section {
    min-height: 900px;
    padding: 120px 0;
  }

  .closing-layout {
    gap: 70px;
  }

  .closing-copy > p:last-of-type {
    font-size: 14px;
  }

  .closing-mark {
    width: 220px;
    height: 220px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    height: 72px;
  }

  .lightbox {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    padding: 56px 8px 20px;
  }

  .lightbox[open] {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 4px;
  }

  .lightbox-arrow {
    width: 32px;
    height: 44px;
  }
}

@media (max-width: 390px) {
  .hero .display-heading,
  .hero .display-heading em {
    font-size: 41px;
  }

  .section-heading .display-heading,
  .signals-heading .display-heading,
  .editions-heading .display-heading,
  .changelog-heading .display-heading,
  .studio-copy .display-heading,
  .quiet-copy .display-heading,
  .closing-copy .display-heading {
    font-size: 39px;
  }

  .feature-card > p {
    font-size: 11px;
  }

  .quiet-rings {
    width: 300px;
    height: 300px;
  }

  .quiet-rings > i:nth-child(1) { width: 236px; height: 236px; }
  .quiet-rings > i:nth-child(2) { width: 194px; height: 194px; }
  .quiet-rings > i:nth-child(3) { width: 158px; height: 158px; }
  .quiet-rings > i:nth-child(4) { width: 120px; height: 120px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: var(--reveal-final-transform, none);
  }
}
