:root {
  color-scheme: dark;
  --bg: #05070c;
  --bg-deep: #030407;
  --surface: rgba(13, 17, 25, 0.86);
  --surface-solid: #0d1119;
  --surface-soft: rgba(255, 255, 255, 0.035);
  --ink: #f4f1e9;
  --ink-strong: #fffdf7;
  --muted: #9aa5b6;
  --muted-strong: #bbc4d0;
  --gold: #d7b46a;
  --gold-bright: #f5dc9e;
  --gold-soft: rgba(215, 180, 106, 0.16);
  --blue: #6ca8ff;
  --blue-bright: #a7d2ff;
  --blue-soft: rgba(108, 168, 255, 0.15);
  --teal: #76d3c9;
  --mars: #b14432;
  --mars-bright: #ef9a70;
  --mars-soft: rgba(177, 68, 50, 0.16);
  --mars-line: rgba(224, 119, 84, 0.3);
  --line: rgba(225, 232, 242, 0.12);
  --line-strong: rgba(225, 232, 242, 0.21);
  --header-height: 76px;
  --shell: 1240px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "Segoe UI", "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI", "HarmonyOS Sans SC", "PingFang SC", sans-serif;
  --font-mono: "Cascadia Code", "SFMono-Regular", Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(215, 180, 106, 0.42) #070a10;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

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

button {
  color: inherit;
}

::selection {
  color: #090704;
  background: var(--gold-bright);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 200;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  color: #080808;
  background: var(--gold-bright);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-atmosphere {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(177, 68, 50, 0.035), transparent 28%),
    linear-gradient(180deg, #080a0f 0%, #05070c 42%, #040509 100%);
}

.atmosphere-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 88%);
}

.atmosphere-stars {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.48) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(214, 226, 242, 0.28) 0 1px, transparent 1.2px);
  background-position: 9px 17px, 42px 62px;
  background-size: 96px 96px, 137px 137px;
  mask-image: linear-gradient(180deg, black, transparent 84%);
}

.atmosphere-signal {
  position: absolute;
  top: 36%;
  right: -8%;
  width: 46%;
  height: 1px;
  opacity: 0.28;
  background: linear-gradient(90deg, transparent, var(--mars), transparent);
  transform: rotate(-12deg);
}

.atmosphere-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--line);
  background: rgba(5, 7, 12, 0.82);
  backdrop-filter: blur(22px) saturate(130%);
}

.nav-shell {
  width: min(calc(100% - 48px), var(--shell));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.4rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 0 22px rgba(177, 68, 50, 0.18);
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 0.34rem;
  color: #7f8999;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.3vw, 2.4rem);
}

.site-nav a,
.nav-account {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  transition: color 0.22s ease;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-account:hover {
  color: var(--ink-strong);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1rem;
  border: 1px solid rgba(215, 180, 106, 0.36);
  border-radius: 10px;
  color: var(--gold-bright);
  background: rgba(215, 180, 106, 0.07);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  border-color: rgba(245, 220, 158, 0.72);
  background: rgba(215, 180, 106, 0.13);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(820px, 92svh);
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 54px) 0 58px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(2, 3, 5, 0.3) 0%, transparent 22%, transparent 68%, rgba(3, 4, 7, 0.94) 100%),
    linear-gradient(90deg, rgba(2, 3, 5, 0.08) 0%, rgba(2, 3, 5, 0.18) 45%, rgba(2, 3, 5, 0.56) 72%, rgba(2, 3, 5, 0.82) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mars-line), rgba(108, 168, 255, 0.22), transparent);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--shell));
  min-height: 610px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-copy {
  width: min(100%, 650px);
  max-width: 650px;
  margin-left: auto;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.7);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.35rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(215, 180, 106, 0.45);
}

.eyebrow-index {
  flex: 0 0 auto;
  padding: 0.22rem 0.42rem;
  border: 1px solid rgba(215, 180, 106, 0.25);
  border-radius: 4px;
  color: var(--gold-bright);
  background: rgba(215, 180, 106, 0.07);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hero h1,
.section h2,
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 650;
  text-wrap: balance;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(3.15rem, 4.65vw, 4.45rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 em {
  display: block;
  margin-top: 0.18em;
  color: transparent;
  background: linear-gradient(102deg, #fff2e8 0%, var(--mars-bright) 48%, #c9dcf3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  filter: drop-shadow(0 0 24px rgba(177, 68, 50, 0.12));
}

.hero-lead {
  max-width: 590px;
  margin: 1.25rem 0 0;
  color: #c8c8c6;
  font-size: 1.02rem;
  font-weight: 350;
  line-height: 1.78;
}

.hero-actions,
.release-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 1.55rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.025em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(245, 220, 158, 0.8);
  color: #171108;
  background: linear-gradient(135deg, #f3dda4 0%, #d4ad59 100%);
  box-shadow: 0 14px 38px rgba(215, 180, 106, 0.14), inset 0 1px rgba(255, 255, 255, 0.46);
}

.button-primary:hover {
  box-shadow: 0 18px 46px rgba(215, 180, 106, 0.22), inset 0 1px rgba(255, 255, 255, 0.5);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(215, 180, 106, 0.38);
  background: rgba(255, 255, 255, 0.06);
}

.release-ticker {
  width: fit-content;
  min-height: 38px;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.2rem 0.65rem 0.2rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(8, 11, 17, 0.72);
  font-size: 0.71rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.release-ticker:hover {
  border-color: rgba(215, 180, 106, 0.36);
  color: var(--ink);
}

.status-pulse {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(118, 211, 201, 0.65);
}

.status-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(118, 211, 201, 0.45);
  border-radius: inherit;
  animation: status-pulse 2s ease-out infinite;
}

.release-ticker-label {
  color: #7d8796;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
}

.release-ticker strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.release-ticker-arrow {
  color: var(--gold);
}

.hero-footnote {
  margin: 1.25rem 0 0;
  color: #8f8b89;
  font-family: var(--font-mono);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #020305;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, transparent 18%, black 76%, transparent);
  opacity: 0.35;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(228, 145, 105, 0.24);
  border-radius: 50%;
  transform: rotate(-19deg);
}

.hero-orbit-a {
  top: -48%;
  left: -12%;
  width: 76vw;
  height: 132%;
}

.hero-orbit-b {
  top: -28%;
  left: 4%;
  width: 63vw;
  height: 106%;
  border-color: rgba(180, 204, 234, 0.18);
}

.hero-orbit i {
  position: absolute;
  top: 11%;
  right: 18%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mars-bright);
  box-shadow: 0 0 0 5px rgba(177, 68, 50, 0.12), 0 0 22px rgba(239, 154, 112, 0.68);
}

.hero-orbit-b i {
  top: auto;
  right: 8%;
  bottom: 17%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(108, 168, 255, 0.1), 0 0 22px rgba(108, 168, 255, 0.55);
}

.mars-location {
  position: absolute;
  top: 41%;
  left: 35%;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 226, 207, 0.72);
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.mars-location i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--mars-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(239, 154, 112, 0.8);
}

.mars-frame {
  position: absolute;
  left: 3.2%;
  width: 74px;
  height: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.mars-frame-top {
  top: calc(var(--header-height) + 36px);
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.mars-frame-bottom {
  bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.mars-image-credit {
  position: absolute;
  bottom: 28px;
  left: 3.2%;
  color: rgba(225, 229, 235, 0.46);
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}

.hero-telemetry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.15rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(224, 232, 242, 0.17);
}

.hero-telemetry span {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.hero-telemetry small {
  color: #7f858d;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
}

.hero-telemetry strong {
  color: #e5e3df;
  font-size: 0.68rem;
  font-weight: 600;
}

.hero-telemetry strong i {
  width: 5px;
  height: 5px;
  display: inline-block;
  margin-right: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 9px rgba(118, 211, 201, 0.65);
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
  perspective: 1200px;
}

.visual-halo {
  position: absolute;
  inset: 5% -8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 45%, rgba(215, 180, 106, 0.12), transparent 25%),
    radial-gradient(circle at 58% 48%, rgba(89, 147, 232, 0.16), transparent 43%);
  filter: blur(26px);
}

.security-console {
  position: relative;
  width: 100%;
  max-width: 690px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(185, 201, 224, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(23, 29, 41, 0.88), rgba(7, 10, 16, 0.94)),
    #080b11;
  box-shadow:
    0 42px 100px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 1px rgba(255, 255, 255, 0.08) inset;
  transform: rotateY(-5deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out);
  will-change: transform;
}

.console-bar,
.console-footer {
  display: flex;
  align-items: center;
  color: #788293;
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0.11em;
}

.console-bar {
  height: 46px;
  justify-content: space-between;
  padding: 0 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
}

.console-dots {
  display: flex;
  gap: 5px;
}

.console-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #515b6b;
}

.console-dots i:first-child {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(215, 180, 106, 0.48);
}

.console-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
}

.console-live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(118, 211, 201, 0.65);
}

.security-map {
  position: relative;
  height: 440px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(92, 130, 188, 0.09), transparent 52%);
  background-size: 42px 42px, 42px 42px, auto;
}

.security-map::before {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, rgba(215, 180, 106, 0.2), rgba(108, 168, 255, 0.22), transparent);
}

.security-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(108, 168, 255, 0.045) 50%, transparent 100%);
  transform: translateY(-100%);
  animation: console-scan 5s linear infinite;
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.map-path {
  fill: none;
  stroke-width: 1.3;
  stroke-dasharray: 4 6;
}

.map-path-gold {
  stroke: url(#lineGold);
}

.map-path-blue {
  stroke: url(#lineBlue);
}

.map-path-neutral {
  stroke: rgba(186, 199, 219, 0.3);
}

.path-packet {
  filter: drop-shadow(0 0 6px currentColor);
}

.packet-gold {
  color: var(--gold-bright);
  fill: currentColor;
  animation: packet-gold 4.2s var(--ease-out) infinite;
}

.packet-blue {
  color: var(--blue-bright);
  fill: currentColor;
  animation: packet-blue 4.2s var(--ease-out) infinite 0.8s;
}

.product-node {
  position: absolute;
  top: 98px;
  width: 180px;
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 0.18rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(9, 13, 20, 0.84);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.product-node-mons {
  left: 34px;
  border-color: rgba(215, 180, 106, 0.28);
}

.product-node-vmp {
  right: 34px;
  border-color: rgba(108, 168, 255, 0.3);
}

.node-code {
  color: #758091;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.product-node strong {
  color: var(--ink-strong);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

.product-node small {
  color: var(--muted);
  font-size: 0.66rem;
}

.node-indicator {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.product-node-mons .node-indicator {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(215, 180, 106, 0.58);
}

.product-node-vmp .node-indicator {
  background: var(--blue);
  box-shadow: 0 0 10px rgba(108, 168, 255, 0.58);
}

.core-node {
  position: absolute;
  top: 152px;
  left: 50%;
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(215, 180, 106, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 180, 106, 0.12), rgba(10, 14, 22, 0.88) 63%);
  box-shadow: 0 0 60px rgba(96, 141, 209, 0.12), inset 0 0 30px rgba(215, 180, 106, 0.05);
  transform: translateX(-50%);
}

.core-orbit {
  position: absolute;
  border: 1px solid rgba(199, 213, 234, 0.13);
  border-radius: 50%;
}

.core-orbit-a {
  inset: -18px;
  border-top-color: rgba(215, 180, 106, 0.55);
  animation: orbit-spin 16s linear infinite;
}

.core-orbit-b {
  inset: -34px;
  border-right-color: rgba(108, 168, 255, 0.48);
  border-bottom-color: transparent;
  animation: orbit-spin 22s linear infinite reverse;
}

.core-emblem {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  margin-bottom: 0.45rem;
  border: 1px solid rgba(215, 180, 106, 0.28);
  border-radius: 17px;
  background: rgba(215, 180, 106, 0.06);
  box-shadow: 0 0 24px rgba(215, 180, 106, 0.12);
}

.core-emblem img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.core-node strong {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.core-node > span {
  margin-top: 0.1rem;
  color: #778292;
  font-family: var(--font-mono);
  font-size: 0.45rem;
  letter-spacing: 0.14em;
}

.protected-output {
  position: absolute;
  right: 50%;
  bottom: 23px;
  width: 330px;
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(118, 211, 201, 0.24);
  border-radius: 12px;
  background: rgba(9, 15, 20, 0.86);
  transform: translateX(50%);
}

.output-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(118, 211, 201, 0.25);
  border-radius: 9px;
  color: var(--teal);
  background: rgba(118, 211, 201, 0.06);
}

.protected-output > span:nth-child(2) {
  display: grid;
}

.protected-output strong {
  font-family: var(--font-mono);
  font-size: 0.59rem;
  letter-spacing: 0.08em;
}

.protected-output small {
  margin-top: 0.1rem;
  color: #778291;
  font-family: var(--font-mono);
  font-size: 0.43rem;
  letter-spacing: 0.08em;
}

.protected-output > i {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-style: normal;
}

.console-footer {
  min-height: 44px;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.console-footer span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted-strong);
}

.console-footer i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(118, 211, 201, 0.7);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  min-width: 146px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 0.65rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(11, 15, 23, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(15px);
  animation: chip-float 5s ease-in-out infinite;
}

.floating-chip > span {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-family: var(--font-mono);
  font-size: 0.53rem;
}

.floating-chip strong {
  font-size: 0.69rem;
}

.floating-chip small {
  color: #798393;
  font-family: var(--font-mono);
  font-size: 0.47rem;
}

.floating-chip-a {
  top: 2%;
  right: -3%;
  border-color: rgba(108, 168, 255, 0.22);
}

.floating-chip-a > span {
  color: var(--blue-bright);
  background: rgba(108, 168, 255, 0.08);
}

.floating-chip-b {
  bottom: 1%;
  left: -5%;
  border-color: rgba(215, 180, 106, 0.22);
  animation-delay: -2.4s;
}

.floating-chip-b > span {
  color: var(--gold-bright);
  background: rgba(215, 180, 106, 0.07);
}

.proof-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--mars-line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 15, 0.72);
  backdrop-filter: blur(12px);
}

.proof-shell {
  width: min(calc(100% - 48px), var(--shell));
  min-height: 114px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-shell article {
  position: relative;
  min-width: 0;
  display: grid;
  align-content: center;
  padding: 1.4rem clamp(1.2rem, 2.3vw, 2rem);
  border-left: 1px solid var(--line);
}

.proof-shell article:last-child {
  border-right: 1px solid var(--line);
}

.proof-shell article::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, var(--mars-bright), transparent);
  opacity: 0.55;
}

.proof-shell article:nth-child(even)::before {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.proof-shell span {
  color: #717c8c;
  font-size: 0.68rem;
}

.proof-shell strong {
  margin-top: 0.22rem;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
}

.proof-shell small {
  margin-top: 0.05rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.edition-overview {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(177, 68, 50, 0.05), transparent 32%),
    rgba(5, 7, 12, 0.72);
}

.edition-overview::before {
  content: "01 / 02 / 03";
  position: absolute;
  right: 2vw;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.018);
  font-family: var(--font-mono);
  font-size: clamp(6rem, 14vw, 16rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.edition-overview-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: start;
}

.edition-overview-intro {
  max-width: 420px;
}

.edition-overview h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.8vw, 3.65rem);
  font-weight: 650;
  line-height: 1.13;
  letter-spacing: 0;
  text-wrap: balance;
}

.edition-overview-intro > p {
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.82;
}

.edition-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.edition-card {
  position: relative;
  min-height: 332px;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.35rem 1.25rem;
  background: rgba(8, 11, 17, 0.96);
}

.edition-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  opacity: 0.76;
}

.edition-card--professional::before {
  background: var(--gold);
}

.edition-card--flagship::before {
  background: var(--blue);
}

.edition-card-head {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  color: #7f8998;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.edition-card-head span {
  color: var(--teal);
}

.edition-card--professional .edition-card-head span {
  color: var(--gold-bright);
}

.edition-card--flagship .edition-card-head span {
  color: var(--blue-bright);
}

.edition-card-head small {
  color: #737e8f;
  font-size: 0.5rem;
  letter-spacing: 0.04em;
  text-align: right;
}

.edition-card h3 {
  margin: 1.2rem 0 0;
  color: var(--ink-strong);
  font-size: 1.45rem;
  line-height: 1.2;
}

.edition-card > p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.72;
}

.edition-feature-list {
  display: grid;
  gap: 0.42rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted-strong);
  font-size: 0.73rem;
  line-height: 1.45;
}

.edition-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
}

.edition-feature-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  margin-top: 0.33rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 9px rgba(118, 211, 201, 0.38);
}

.edition-card--professional .edition-feature-list li::before {
  background: var(--gold);
  box-shadow: 0 0 9px rgba(215, 180, 106, 0.32);
}

.edition-card--flagship .edition-feature-list li::before {
  background: var(--blue);
  box-shadow: 0 0 9px rgba(108, 168, 255, 0.32);
}

.edition-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--ink-strong);
  font-size: 0.8rem;
  font-weight: 650;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.edition-action span {
  color: var(--teal);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.edition-card--professional .edition-action span {
  color: var(--gold-bright);
}

.edition-card--flagship .edition-action span {
  color: var(--blue-bright);
}

.edition-action:hover {
  border-top-color: rgba(245, 220, 158, 0.45);
  color: var(--gold-bright);
}

.edition-action:hover span {
  transform: translateX(3px);
}

.section {
  position: relative;
  padding: 132px 0;
}

.section-shell,
.footer-shell {
  width: min(calc(100% - 48px), var(--shell));
  margin: 0 auto;
}

.section h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-copy > p,
.section-heading > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.project-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 50%),
    linear-gradient(118deg, transparent 62%, rgba(177, 68, 50, 0.055));
}

.project-section::before {
  content: "OLYMPUS";
  position: absolute;
  right: -0.04em;
  bottom: -0.26em;
  color: rgba(255, 255, 255, 0.018);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 21rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.project-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(540px, 1.15fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 8rem);
}

.section-copy p {
  max-width: 580px;
  margin: 1.65rem 0 0;
}

.section-copy p + p {
  margin-top: 0.9rem;
  color: var(--muted-strong);
}

.brand-architecture {
  position: relative;
  min-height: 530px;
  display: grid;
  align-content: center;
  justify-items: center;
}

.brand-architecture::before {
  content: "";
  position: absolute;
  inset: 8% 3%;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 180, 106, 0.06), transparent 62%);
}

.architecture-parent,
.architecture-project,
.architecture-branches > div {
  position: relative;
  z-index: 2;
  border: 1px solid var(--line);
  background: rgba(10, 14, 21, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.23), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.architecture-parent {
  width: min(100%, 390px);
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.2rem;
  border-color: rgba(215, 180, 106, 0.24);
  border-radius: 16px;
}

.architecture-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: 0 0 24px rgba(177, 68, 50, 0.15);
}

.architecture-parent > span:last-child,
.architecture-project,
.architecture-branches > div {
  display: grid;
}

.architecture-parent small,
.architecture-project small,
.architecture-branches small {
  color: #7b8696;
  font-family: var(--font-mono);
  font-size: 0.53rem;
  letter-spacing: 0.1em;
}

.architecture-parent strong {
  margin-top: 0.1rem;
  font-size: 1rem;
}

.architecture-parent em {
  margin-top: 0.12rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-style: normal;
  letter-spacing: 0.08em;
}

.architecture-connector {
  position: relative;
  z-index: 2;
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--gold), rgba(215, 180, 106, 0.18));
}

.architecture-connector span {
  position: absolute;
  top: 50%;
  left: 14px;
  width: max-content;
  color: #727d8d;
  font-size: 0.62rem;
  transform: translateY(-50%);
}

.architecture-project {
  width: min(100%, 460px);
  min-height: 112px;
  align-content: center;
  justify-items: center;
  padding: 1rem;
  border-color: rgba(215, 180, 106, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(215, 180, 106, 0.08), rgba(108, 168, 255, 0.045)),
    rgba(10, 14, 21, 0.9);
}

.architecture-project strong {
  margin-top: 0.15rem;
  color: var(--gold-bright);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.architecture-project > span {
  color: var(--muted);
  font-size: 0.68rem;
}

.architecture-branches {
  position: relative;
  z-index: 2;
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  padding-top: 62px;
}

.architecture-branches::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(50% + 1.1rem);
  height: 46px;
  border-right: 1px solid rgba(215, 180, 106, 0.35);
  border-bottom: 1px solid rgba(215, 180, 106, 0.35);
  border-left: 1px solid rgba(108, 168, 255, 0.35);
  transform: translateX(-50%);
}

.architecture-branches::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 1px;
  height: 63px;
  background: linear-gradient(rgba(215, 180, 106, 0.28), rgba(108, 168, 255, 0.35));
}

.architecture-branches > div {
  min-height: 98px;
  align-content: center;
  padding: 1rem 1.1rem;
  border-radius: 14px;
}

.architecture-branches > div:first-child {
  border-color: rgba(215, 180, 106, 0.23);
}

.architecture-branches > div:last-child {
  border-color: rgba(108, 168, 255, 0.24);
}

.architecture-branches strong {
  margin-top: 0.18rem;
  font-size: 0.94rem;
}

.architecture-branches span {
  color: var(--muted);
  font-size: 0.67rem;
}

.products-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 34%, rgba(215, 180, 106, 0.06), transparent 28%),
    radial-gradient(circle at 92% 72%, rgba(108, 168, 255, 0.07), transparent 34%),
    rgba(3, 5, 9, 0.42);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 3.6rem;
}

.section-heading > p {
  max-width: 690px;
  margin: 1.35rem 0 0;
}

.product-bento {
  display: grid;
  gap: 1.5rem;
}

.product-panel {
  position: relative;
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(18, 23, 33, 0.9), rgba(7, 10, 15, 0.94));
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25), inset 0 1px rgba(255, 255, 255, 0.035);
}

.product-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.product-panel-mons::before {
  background: linear-gradient(110deg, transparent 48%, rgba(177, 68, 50, 0.1));
}

.product-panel-vmp::before {
  background: radial-gradient(circle at 80% 50%, rgba(108, 168, 255, 0.11), transparent 42%);
}

.product-panel-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 4rem);
}

.product-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.59rem;
  letter-spacing: 0.08em;
}

.product-kicker > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.025);
}

.product-panel-vmp .product-kicker > span {
  color: var(--blue-bright);
}

.product-kicker em {
  font-style: normal;
}

.product-kicker b {
  margin-left: auto;
  padding: 0.28rem 0.48rem;
  border: 1px solid rgba(108, 168, 255, 0.25);
  border-radius: 5px;
  color: var(--blue-bright);
  background: rgba(108, 168, 255, 0.07);
  font-weight: 600;
}

.product-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.product-panel-mons h3 {
  color: #f0a27b;
}

.product-panel-vmp h3 {
  color: var(--blue-bright);
}

.product-panel h4 {
  margin: 0.65rem 0 0;
  color: var(--ink-strong);
  font-size: 1.08rem;
  font-weight: 600;
}

.product-panel-copy > p {
  max-width: 520px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 0.32rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.69rem;
}

.panel-link {
  width: fit-content;
  min-height: 44px;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-bright);
  font-size: 0.83rem;
  font-weight: 600;
}

.product-panel-vmp .panel-link {
  color: var(--blue-bright);
}

.panel-link span {
  transition: transform 0.25s ease;
}

.panel-link:hover span {
  transform: translate(3px, -3px);
}

.license-visual,
.binary-visual {
  position: relative;
  z-index: 2;
  min-height: 100%;
  margin: 2rem 2rem 2rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(5, 8, 13, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.license-grid {
  position: absolute;
  inset: 0;
  opacity: 0.58;
  background-image:
    linear-gradient(rgba(215, 180, 106, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(215, 180, 106, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.license-device {
  position: absolute;
  top: 18%;
  left: 8%;
  width: 150px;
  min-height: 88px;
  display: grid;
  align-content: center;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(215, 180, 106, 0.22);
  border-radius: 13px;
  background: rgba(12, 16, 23, 0.9);
}

.license-device span,
.license-device i,
.license-vault small,
.binary-head,
.code-column > span,
.binary-output > span {
  color: #7c8797;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  font-style: normal;
  letter-spacing: 0.09em;
}

.license-device strong {
  margin: 0.18rem 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.license-device i {
  color: var(--gold);
}

.license-route {
  position: absolute;
  top: calc(18% + 43px);
  left: calc(8% + 150px);
  width: 22%;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 180, 106, 0.4), var(--gold-bright));
}

.license-route span {
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 12px rgba(215, 180, 106, 0.65);
  animation: license-packet 2.8s ease-in-out infinite;
}

.license-route i {
  position: absolute;
  top: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(215, 180, 106, 0.5);
}

.license-route i:nth-child(2) { left: 28%; }
.license-route i:nth-child(3) { left: 55%; }
.license-route i:nth-child(4) { left: 82%; }

.license-vault {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(215, 180, 106, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 180, 106, 0.12), rgba(10, 14, 21, 0.85) 68%);
  box-shadow: 0 0 52px rgba(215, 180, 106, 0.08);
}

.vault-ring {
  position: absolute;
  inset: -16px;
  border: 1px dashed rgba(215, 180, 106, 0.28);
  border-radius: 50%;
  animation: orbit-spin 24s linear infinite;
}

.vault-lock {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(215, 180, 106, 0.28);
  border-radius: 15px;
  color: var(--gold-bright);
  background: rgba(215, 180, 106, 0.08);
}

.license-vault strong {
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.license-vault small {
  margin-top: 0.14rem;
}

.license-status {
  position: absolute;
  right: 7%;
  bottom: 10%;
  left: 7%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.license-status span {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.65rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: 0.51rem;
}

.license-status i,
.protection-stack i {
  width: 5px;
  height: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(118, 211, 201, 0.56);
}

.binary-visual {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
}

.binary-head {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
}

.binary-head i {
  color: var(--teal);
  font-style: normal;
}

.binary-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 2rem clamp(1.2rem, 3vw, 2.5rem);
  background:
    linear-gradient(rgba(108, 168, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 168, 255, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
}

.code-column {
  min-height: 210px;
  display: grid;
  align-content: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(8, 12, 18, 0.84);
}

.code-column > span {
  margin-bottom: 0.35rem;
}

.native-code i {
  width: var(--w);
  height: 6px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(192, 203, 220, 0.48), rgba(192, 203, 220, 0.07));
}

.vm-code {
  border-color: rgba(108, 168, 255, 0.22);
  box-shadow: inset 0 0 36px rgba(108, 168, 255, 0.04);
}

.vm-code i {
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 0.61rem;
  font-style: normal;
  letter-spacing: 0.13em;
  opacity: 0.82;
}

.vm-code i:nth-child(3),
.vm-code i:nth-child(5) {
  color: var(--gold-bright);
}

.binary-transform {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: var(--blue-bright);
}

.binary-transform span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(108, 168, 255, 0.25);
  border-radius: 50%;
  background: rgba(108, 168, 255, 0.07);
  box-shadow: 0 0 22px rgba(108, 168, 255, 0.08);
}

.binary-transform small {
  color: #778291;
  font-family: var(--font-mono);
  font-size: 0.46rem;
  letter-spacing: 0.08em;
}

.protection-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.45rem;
  padding: 0 1rem 1rem;
}

.protection-stack span {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  border: 1px solid rgba(108, 168, 255, 0.15);
  border-radius: 8px;
  color: #9aabc2;
  background: rgba(108, 168, 255, 0.035);
  font-family: var(--font-mono);
  font-size: 0.47rem;
}

.protection-stack i {
  background: var(--blue);
  box-shadow: 0 0 7px rgba(108, 168, 255, 0.55);
}

.binary-output {
  min-height: 54px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0 1rem;
  border-top: 1px solid var(--line);
  background: rgba(108, 168, 255, 0.025);
}

.binary-output strong {
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.binary-output i {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 0.5rem;
  font-style: normal;
}

.technology-section {
  overflow: hidden;
}

.technology-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(108, 168, 255, 0.13), transparent);
}

.section-heading-compact {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.workflow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 5rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(8, 11, 17, 0.72);
  list-style: none;
  overflow: hidden;
}

.workflow::before {
  content: "";
  position: absolute;
  top: 48px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, var(--mars), rgba(224, 119, 84, 0.42), rgba(108, 168, 255, 0.35), var(--blue));
}

.workflow li {
  position: relative;
  min-height: 220px;
  display: grid;
  align-content: start;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.workflow li:last-child {
  border-right: 0;
}

.workflow li > span {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 180, 106, 0.35);
  border-radius: 50%;
  color: var(--gold-bright);
  background: #0b0e14;
  box-shadow: 0 0 0 7px #0b0e14;
  font-family: var(--font-mono);
  font-size: 0.58rem;
}

.workflow li:nth-child(n+3) > span {
  border-color: rgba(108, 168, 255, 0.35);
  color: var(--blue-bright);
}

.workflow li > div {
  margin-top: 1.7rem;
}

.workflow small {
  display: block;
  color: #778292;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.workflow strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--ink-strong);
  font-size: 1.03rem;
}

.workflow p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.capability-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.capability-grid article {
  position: relative;
  min-height: 230px;
  padding: 1.8rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(18, 23, 33, 0.72), rgba(7, 10, 15, 0.7));
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}

.capability-grid article::after {
  content: "";
  position: absolute;
  right: -40%;
  bottom: -60%;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108, 168, 255, 0.1), transparent 68%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.capability-grid article:nth-child(3n+1)::after {
  background: radial-gradient(circle, rgba(215, 180, 106, 0.1), transparent 68%);
}

.capability-grid article:hover {
  border-color: rgba(191, 205, 225, 0.24);
  background: linear-gradient(145deg, rgba(23, 29, 41, 0.85), rgba(8, 11, 17, 0.82));
  transform: translateY(-4px);
}

.capability-grid article:hover::after {
  opacity: 1;
}

.capability-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--gold-bright);
  background: rgba(215, 180, 106, 0.05);
  font-family: var(--font-mono);
}

.capability-grid article:nth-child(even) .capability-icon {
  color: var(--blue-bright);
  background: rgba(108, 168, 255, 0.05);
}

.capability-grid small {
  color: #747f8f;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.09em;
}

.capability-grid h3 {
  margin: 0.38rem 0 0;
  font-size: 1.13rem;
}

.capability-grid p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.release-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(112deg, rgba(177, 68, 50, 0.055), transparent 34%),
    linear-gradient(248deg, rgba(108, 168, 255, 0.045), transparent 30%),
    rgba(4, 6, 10, 0.58);
}

.release-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5.2rem);
  border: 1px solid rgba(215, 180, 106, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(215, 180, 106, 0.055), transparent 42%, rgba(108, 168, 255, 0.045)),
    rgba(10, 13, 20, 0.9);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.04);
}

.release-panel::before {
  content: "1.2";
  position: absolute;
  right: -0.03em;
  bottom: -0.28em;
  color: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono);
  font-size: clamp(10rem, 24vw, 22rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.14em;
  pointer-events: none;
}

.release-copy,
.edition-status {
  position: relative;
  z-index: 2;
}

.release-product {
  margin: 0 0 0.75rem;
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.release-copy h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
}

.release-copy > p:not(.release-product) {
  max-width: 610px;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.release-actions {
  margin-top: 2rem;
}

.edition-status {
  display: grid;
  gap: 0.85rem;
}

.edition-status article {
  min-height: 154px;
  display: grid;
  align-content: center;
  padding: 1.4rem 1.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(7, 10, 15, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.edition-status article > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.edition-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 9px rgba(118, 211, 201, 0.58);
}

.edition-status small,
.edition-status footer {
  color: #768191;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.08em;
}

.edition-status strong {
  margin-top: 0.35rem;
  font-size: 1rem;
}

.edition-status p {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.edition-status footer {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
}

.edition-status footer span {
  color: var(--ink-strong);
  font-size: 0.68rem;
}

.edition-status footer em {
  color: var(--teal);
  font-style: normal;
}

.final-cta {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(224, 119, 84, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 9vw rgba(108, 168, 255, 0.012), 0 0 0 18vw rgba(177, 68, 50, 0.012);
  transform: translate(-50%, -50%);
}

.final-cta-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
}

.final-cta-copy {
  padding-bottom: 0.3rem;
}

.final-cta-copy p {
  margin: 0 0 1.7rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.85;
}

.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(3, 4, 7, 0.76);
}

.footer-shell {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.footer-brand span {
  display: grid;
}

.footer-brand strong {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.footer-brand small {
  margin-top: 0.18rem;
  color: #737e8e;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
}

.footer-links {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a,
.footer-legal {
  color: #7f8999;
  font-size: 0.7rem;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--ink);
}

.footer-legal {
  display: grid;
  justify-items: end;
  gap: 0.3rem;
}

.footer-legal a {
  transition: color 0.2s ease;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes status-pulse {
  from { opacity: 0.8; transform: scale(0.55); }
  to { opacity: 0; transform: scale(1.55); }
}

@keyframes console-scan {
  to { transform: translateY(100%); }
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes packet-gold {
  0% { cx: 126px; cy: 142px; opacity: 0; }
  12% { opacity: 1; }
  48% { cx: 270px; cy: 188px; opacity: 1; }
  75% { cx: 360px; cy: 220px; opacity: 1; }
  100% { cx: 360px; cy: 220px; opacity: 0; }
}

@keyframes packet-blue {
  0% { cx: 594px; cy: 142px; opacity: 0; }
  12% { opacity: 1; }
  48% { cx: 450px; cy: 188px; opacity: 1; }
  75% { cx: 360px; cy: 220px; opacity: 1; }
  100% { cx: 360px; cy: 220px; opacity: 0; }
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes license-packet {
  0% { left: 0; opacity: 0; }
  15% { opacity: 1; }
  82% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

@media (max-width: 1180px) {
  .nav-shell,
  .hero-shell,
  .section-shell,
  .proof-shell,
  .footer-shell {
    width: min(calc(100% - 40px), var(--shell));
  }

  .nav-shell {
    gap: 1.5rem;
  }

  .site-nav {
    gap: 1.25rem;
  }

  .nav-account {
    display: none;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 5vw, 4.2rem);
  }

  .security-console {
    transform: none;
  }

  .floating-chip-a {
    right: -1%;
  }

  .floating-chip-b {
    left: -1%;
  }

  .product-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .js .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    position: fixed;
    top: var(--header-height);
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7, 10, 15, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(22px);
  }

  .js .site-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    min-height: 52px;
    padding: 0 0.8rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-right: 56px;
  }

  .nav-account {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
    padding-bottom: 46px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 560px;
    gap: 0;
  }

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

  .hero-media > img {
    object-position: 38% center;
  }

  .hero-orbit-a {
    left: -34%;
    width: 112vw;
  }

  .hero-orbit-b {
    left: -14%;
    width: 92vw;
  }

  .mars-location {
    left: 26%;
  }

  .hero-visual {
    min-height: 560px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .edition-overview-shell {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }

  .edition-overview-intro {
    max-width: 680px;
  }

  .section-copy {
    max-width: 720px;
  }

  .brand-architecture {
    min-height: 520px;
  }

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

  .product-panel-copy {
    padding-bottom: 2rem;
  }

  .license-visual,
  .binary-visual {
    min-height: 430px;
    margin: 0 1.5rem 1.5rem;
  }

  .workflow {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow::before {
    display: none;
  }

  .workflow li:nth-child(2) {
    border-right: 0;
  }

  .workflow li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .release-panel {
    grid-template-columns: 1fr;
  }

  .edition-status {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-shell {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
  }

  .final-cta-copy {
    max-width: 640px;
  }

  .footer-shell {
    grid-template-columns: 1fr auto;
    padding: 2.5rem 0;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .hero-shell,
  .section-shell,
  .proof-shell,
  .footer-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand-copy small,
  .nav-account {
    display: none;
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .nav-actions {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 44px;
  }

  .hero-shell {
    min-height: 610px;
    gap: 0;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(2, 3, 5, 0.35) 0%, rgba(2, 3, 5, 0.15) 18%, rgba(2, 3, 5, 0.45) 68%, rgba(3, 4, 7, 0.96) 100%),
      linear-gradient(90deg, rgba(2, 3, 5, 0.42), rgba(2, 3, 5, 0.58));
  }

  .hero-media > img {
    object-position: 12% center;
  }

  .mars-location,
  .hero-orbit-b,
  .mars-frame {
    display: none;
  }

  .hero-orbit-a {
    top: -22%;
    left: -64%;
    width: 156vw;
    height: 108%;
    opacity: 0.62;
  }

  .mars-image-credit {
    bottom: 14px;
    left: 16px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 4rem);
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 0.93rem;
    line-height: 1.82;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    padding-inline: 0.7rem;
  }

  .release-ticker {
    max-width: 100%;
  }

  .release-ticker-label,
  .hero-footnote {
    display: none;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-telemetry {
    gap: 0.55rem;
  }

  .hero-telemetry strong {
    font-size: 0.62rem;
  }

  .security-console {
    border-radius: 18px;
  }

  .security-map {
    height: 330px;
  }

  .product-node {
    top: 64px;
    width: 142px;
    min-height: 78px;
    padding: 0.65rem 0.7rem;
  }

  .product-node-mons { left: 14px; }
  .product-node-vmp { right: 14px; }

  .node-code {
    font-size: 0.42rem;
  }

  .product-node strong {
    font-size: 0.73rem;
  }

  .product-node small {
    font-size: 0.54rem;
  }

  .core-node {
    top: 112px;
    width: 124px;
    height: 124px;
  }

  .core-emblem {
    width: 46px;
    height: 46px;
  }

  .core-emblem img {
    width: 37px;
    height: 37px;
  }

  .protected-output {
    bottom: 14px;
    width: min(86%, 310px);
  }

  .map-lines {
    transform: scaleY(0.76) translateY(-3%);
  }

  .console-footer {
    justify-content: flex-start;
    overflow: hidden;
  }

  .console-footer span:nth-child(n+3) {
    display: none;
  }

  .floating-chip {
    display: none;
  }

  .proof-shell {
    grid-template-columns: 1fr 1fr;
  }

  .proof-shell article:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .proof-shell article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .edition-overview {
    padding: 84px 0;
  }

  .edition-overview-shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .edition-compare-grid {
    grid-template-columns: 1fr;
  }

  .edition-card {
    min-height: 0;
    padding: 1.35rem 1.15rem 1.1rem;
  }

  .edition-card h3 {
    margin-top: 1rem;
  }

  .edition-feature-list {
    margin-top: 1rem;
  }

  .edition-action {
    margin-top: 1.2rem;
  }

  .section {
    padding: 92px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: clamp(2.15rem, 9vw, 3.2rem);
  }

  .section-heading {
    margin-bottom: 2.6rem;
  }

  .brand-architecture {
    min-height: 470px;
  }

  .architecture-branches {
    gap: 0.7rem;
  }

  .architecture-branches > div {
    min-height: 88px;
    padding: 0.8rem;
  }

  .architecture-branches strong {
    font-size: 0.78rem;
  }

  .product-panel {
    min-height: 0;
    border-radius: 22px;
  }

  .product-panel-copy {
    padding: 2rem 1.3rem;
  }

  .product-kicker {
    flex-wrap: wrap;
  }

  .product-kicker b {
    margin-left: 0;
  }

  .product-panel h3 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .license-visual,
  .binary-visual {
    min-height: 390px;
    margin: 0 0.75rem 0.75rem;
    border-radius: 16px;
  }

  .license-device {
    top: 12%;
    left: 5%;
    width: 125px;
  }

  .license-route {
    top: calc(12% + 42px);
    left: calc(5% + 125px);
    width: 13%;
  }

  .license-vault {
    top: 9%;
    right: 5%;
    width: 150px;
    height: 150px;
  }

  .license-status {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .license-status span {
    min-height: 38px;
  }

  .binary-body {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 1rem;
  }

  .code-column {
    min-height: 112px;
    gap: 0.42rem;
    padding: 0.8rem;
  }

  .native-code i {
    height: 4px;
  }

  .binary-transform {
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
  }

  .binary-transform span {
    width: 32px;
    height: 32px;
    transform: rotate(90deg);
  }

  .protection-stack {
    grid-template-columns: 1fr 1fr;
  }

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

  .workflow li {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow li:last-child {
    border-bottom: 0;
  }

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

  .capability-grid article {
    min-height: 210px;
  }

  .release-panel {
    padding: 2rem 1.25rem;
    border-radius: 22px;
  }

  .release-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .release-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .release-actions .button {
    padding-inline: 0.7rem;
  }

  .edition-status {
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 92px 0;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .footer-links {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    justify-content: flex-start;
    gap: 0.9rem 1.2rem;
  }

  .footer-legal {
    justify-items: start;
  }
}

@media (max-width: 430px) {
  .eyebrow {
    align-items: flex-start;
    font-size: 0.56rem;
  }

  .eyebrow::before {
    margin-top: 0.52rem;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-shell {
    min-height: 640px;
  }

  .release-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    gap: 0.35rem;
    padding-inline: 0.45rem;
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .console-bar > span:nth-child(2) {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-node {
    width: 122px;
  }

  .product-node-mons { left: 9px; }
  .product-node-vmp { right: 9px; }

  .product-node small {
    display: none;
  }

  .core-node {
    width: 112px;
    height: 112px;
  }

  .core-orbit-b {
    inset: -25px;
  }

  .protected-output {
    width: 91%;
  }

  .protected-output > i {
    display: none;
  }

  .proof-shell article {
    padding: 1.15rem 0.85rem;
  }

  .proof-shell strong {
    font-size: 0.91rem;
  }

  .architecture-parent {
    padding: 0.8rem;
  }

  .architecture-project {
    width: 90%;
  }

  .architecture-branches {
    gap: 0.5rem;
  }

  .architecture-branches > div {
    padding: 0.65rem;
  }

  .architecture-branches small,
  .architecture-branches span {
    font-size: 0.48rem;
  }

  .license-device {
    width: 112px;
  }

  .license-route {
    left: calc(5% + 112px);
  }

  .license-vault {
    width: 136px;
    height: 136px;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 28px;
  }

  .hero-shell {
    min-height: 0;
  }

  .hero h1 {
    font-size: 2.32rem;
  }

  .hero-lead {
    margin-top: 0.9rem;
    font-size: 0.86rem;
    line-height: 1.68;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .release-ticker {
    margin-top: 0.75rem;
  }

  .hero-telemetry {
    margin-top: 0.8rem;
    padding-top: 0.7rem;
  }

  .hero-telemetry small {
    font-size: 0.44rem;
  }

  .hero-telemetry strong {
    font-size: 0.56rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .security-console {
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .button,
  .nav-cta,
  .product-panel,
  .capability-grid article,
  .release-panel {
    border: 1px solid ButtonText;
  }
}
