:root {
  --bg: #01030a;
  --panel: rgba(5, 10, 22, .84);
  --panel-strong: rgba(7, 13, 27, .94);
  --line: rgba(112, 159, 235, .19);
  --line-hot: rgba(79, 196, 255, .52);
  --ink: #edf4ff;
  --muted: #98a5ba;
  --cyan: #69e7ff;
  --blue: #2f8cff;
  --violet: #8f7dff;
  --green: #7affbe;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #01030a;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(79, 196, 255, .018) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 125, 255, .014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .95), transparent 78%);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

#shader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.nav {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  position: absolute;
  left: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #dff9ff;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(105, 231, 255, .62);
  background:
    linear-gradient(135deg, rgba(105, 231, 255, .20), rgba(47, 140, 255, .10)),
    rgba(3, 9, 19, .92);
  box-shadow: 0 0 38px rgba(105, 231, 255, .22), inset 0 0 24px rgba(105, 231, 255, .08);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--cyan);
  border-style: solid;
  opacity: .95;
}

.brand-mark::before {
  left: -1px;
  top: -1px;
  border-width: 2px 0 0 2px;
}

.brand-mark::after {
  right: -1px;
  bottom: -1px;
  border-width: 0 2px 2px 0;
}

.brand-mark span {
  position: relative;
  z-index: 1;
  font-family: "DM Mono", monospace;
  letter-spacing: .05em;
}

.brand-name {
  color: #f6fbff;
  text-shadow: 0 0 24px rgba(105, 231, 255, .22);
}

.brand-name small {
  display: block;
  margin-top: 2px;
  color: var(--cyan);
  font: 900 10px "DM Mono", monospace;
  letter-spacing: .12em;
}

.nav-actions {
  display: flex;
  gap: 18px;
  padding: 8px;
  border: 1px solid rgba(105, 231, 255, .18);
  background: rgba(3, 8, 18, .48);
  box-shadow: 0 0 38px rgba(47, 140, 255, .10), inset 0 1px rgba(255, 255, 255, .035);
  backdrop-filter: blur(14px);
}

.nav-box {
  min-width: 150px;
  text-align: center;
  color: var(--ink);
  text-decoration: none;
  font: 900 15px "DM Mono", monospace;
  letter-spacing: .08em;
  padding: 20px 24px;
  border: 1px solid rgba(105, 231, 255, .36);
  background:
    linear-gradient(135deg, rgba(79, 196, 255, .14), rgba(47, 140, 255, .09)),
    rgba(6, 14, 30, .78);
  box-shadow: 0 0 20px rgba(105, 231, 255, .09), inset 0 1px rgba(255, 255, 255, .05);
  transition: transform .2s, border-color .2s, background .2s, box-shadow .2s;
}

.nav-box:hover,
.nav-box.active {
  transform: translateY(-3px);
  border-color: rgba(105, 231, 255, .90);
  background:
    linear-gradient(135deg, rgba(79, 196, 255, .23), rgba(47, 140, 255, .16)),
    rgba(6, 18, 39, .92);
  box-shadow: 0 0 34px rgba(79, 196, 255, .18), inset 0 1px rgba(255, 255, 255, .08);
}

.discord-link {
  color: #07101d;
  background: linear-gradient(100deg, #51d9ff, var(--blue), #8f7dff);
  border: 0;
  box-shadow: 0 0 34px rgba(79, 196, 255, .22);
}

.hero {
  padding: 112px 0 86px;
}

.home-hero {
  min-height: 720px;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  font: 500 11px "DM Mono", monospace;
  letter-spacing: .15em;
  color: var(--cyan);
  display: flex;
  gap: 9px;
  align-items: center;
}

.eyebrow i {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(58px, 10vw, 132px);
  line-height: .9;
  margin: 24px 0 24px;
  font-weight: 800;
}

h2 {
  font-size: clamp(30px, 4.5vw, 64px);
  line-height: .98;
  margin: 18px 0 0;
  font-weight: 800;
}

em {
  font-style: normal;
  background: linear-gradient(100deg, #72ecff 10%, #9587ff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 680px;
  color: #a8b4c8;
  font-size: 18px;
  line-height: 1.75;
}

.small-copy {
  max-width: 590px;
  font-size: 15px;
  color: #8f9db3;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 320px));
  gap: 14px;
  margin: 38px 0 38px;
}

.mega-link {
  min-height: 132px;
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--line-hot);
  background: linear-gradient(145deg, rgba(105, 231, 255, .10), rgba(143, 125, 255, .11));
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 90px rgba(0, 0, 0, .25), inset 0 1px rgba(255, 255, 255, .05);
  transition: transform .2s, border-color .2s;
}

.mega-link:hover {
  transform: translateY(-5px);
  border-color: var(--cyan);
}

.mega-link span {
  font: 11px "DM Mono", monospace;
  color: var(--cyan);
  letter-spacing: .14em;
}

.mega-link strong {
  font-size: 24px;
}

.discord-mega {
  background: linear-gradient(135deg, rgba(105, 231, 255, .18), rgba(142, 125, 255, .22));
}

.hero-video,
.product-head-video,
.product-side-video,
.home-video-card {
  border: 1px solid rgba(79, 196, 255, .28);
  background:
    linear-gradient(145deg, rgba(7, 18, 36, .94), rgba(3, 7, 17, .90)),
    var(--panel);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .32), 0 0 64px rgba(47, 140, 255, .11), inset 0 1px rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
}

.hero-video::before,
.product-head-video::before,
.product-side-video::before,
.home-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(105, 231, 255, .065) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 125, 255, .045) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .35;
  pointer-events: none;
}

.hero-video {
  min-height: 440px;
  padding: 24px;
}

.hero-video-top,
.product-hud-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  color: var(--cyan);
  font: 900 11px "DM Mono", monospace;
  letter-spacing: .12em;
}

.hero-video-top b,
.product-hud-top b {
  color: var(--green);
}

.core-orbit {
  position: relative;
  z-index: 1;
  width: 240px;
  height: 240px;
  margin: 44px auto 34px;
  border: 1px solid rgba(105, 231, 255, .32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 70px rgba(105, 231, 255, .08), 0 0 60px rgba(105, 231, 255, .11);
}

.core-orbit strong {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(105, 231, 255, .62);
  background: rgba(5, 13, 28, .86);
  color: #eaffff;
  font: 900 26px "DM Mono", monospace;
  box-shadow: 0 0 38px rgba(105, 231, 255, .20);
}

.core-orbit i {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(105, 231, 255, .17);
  border-radius: 50%;
  animation: ringPulse 3.4s ease-in-out infinite;
}

.core-orbit i:nth-child(2) {
  inset: 58px;
  animation-delay: .25s;
}

.core-orbit i:nth-child(3) {
  inset: 88px;
  animation-delay: .5s;
}

.hero-video-bars {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
}

.hero-video-bars span {
  height: 14px;
  background: linear-gradient(90deg, rgba(105, 231, 255, .80), rgba(47, 140, 255, .08));
  box-shadow: 0 0 18px rgba(105, 231, 255, .16);
  animation: analyzerPulse 2.8s ease-in-out infinite;
}

.hero-video-bars span:nth-child(2) {
  width: 72%;
  animation-delay: .2s;
}

.hero-video-bars span:nth-child(3) {
  width: 86%;
  animation-delay: .4s;
}

.home-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0 0 110px;
}

.home-video-card {
  min-height: 410px;
  padding: 22px;
}

.home-video-card > span,
.product-side-video > span {
  position: relative;
  z-index: 1;
  color: var(--cyan);
  font: 900 10px "DM Mono", monospace;
  letter-spacing: .14em;
}

.home-video-card h2,
.product-side-video h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 3vw, 44px);
  margin: 17px 0 14px;
}

.home-video-card p,
.product-side-video p {
  position: relative;
  z-index: 1;
  color: #a8b7cc;
  line-height: 1.72;
}

.compact-video {
  height: 210px;
  margin-bottom: 24px;
}

.stack-scene,
.network-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.stack-scene {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 32px;
}

.stack-scene span {
  width: min(300px, 100%);
  color: #dff9ff;
  border: 1px solid rgba(105, 231, 255, .26);
  background: rgba(5, 13, 28, .72);
  padding: 12px 14px;
  font: 900 11px "DM Mono", monospace;
  animation: cacheGlow 3s ease-in-out infinite;
}

.stack-scene span:nth-child(2) {
  animation-delay: .2s;
}

.stack-scene span:nth-child(3) {
  animation-delay: .4s;
}

.stack-scene span:nth-child(4) {
  animation-delay: .6s;
}

.network-scene i {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--cyan);
  box-shadow: 0 0 22px var(--cyan);
}

.network-scene i:nth-child(1) {
  left: 18%;
  top: 26%;
}

.network-scene i:nth-child(2) {
  right: 19%;
  top: 28%;
}

.network-scene i:nth-child(3) {
  left: 25%;
  bottom: 25%;
}

.network-scene i:nth-child(4) {
  right: 25%;
  bottom: 24%;
}

.network-scene b {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 84px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(105, 231, 255, .52);
  background: rgba(5, 13, 28, .82);
  box-shadow: 0 0 40px rgba(105, 231, 255, .18);
}

.product-head {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 54px;
  align-items: center;
}

.product-head-video {
  min-height: 310px;
  padding: 22px;
}

.product-hud-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 46px 0 32px;
}

.product-hud-grid i {
  min-height: 76px;
  border: 1px solid rgba(105, 231, 255, .22);
  background: rgba(5, 13, 28, .72);
  box-shadow: inset 0 0 26px rgba(105, 231, 255, .05);
  animation: versionFloat 3.4s ease-in-out infinite;
}

.product-hud-grid i:nth-child(2) {
  animation-delay: .2s;
}

.product-hud-grid i:nth-child(3) {
  animation-delay: .4s;
}

.product-hud-grid i:nth-child(4) {
  animation-delay: .6s;
}

.product-head-video strong {
  position: relative;
  z-index: 1;
  color: var(--cyan);
  font: 900 12px "DM Mono", monospace;
}

.product-lab {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 420px;
  gap: 22px;
  padding-bottom: 110px;
}

.product-card-xl {
  min-height: 520px;
}

.product-side-video {
  min-height: 520px;
  padding: 28px;
}

.side-video-window {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  border: 1px solid rgba(105, 231, 255, .20);
  background: rgba(2, 7, 17, .70);
  padding: 18px;
  overflow: hidden;
}

.side-video-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(105, 231, 255, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(105, 231, 255, .035) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .42;
}

.side-video-window p {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #a8b7cc;
  border: 1px solid rgba(105, 231, 255, .13);
  background: rgba(5, 13, 28, .68);
  padding: 13px 14px;
  font: 12px "DM Mono", monospace;
}

.side-video-window b {
  color: var(--green);
  margin-right: 8px;
}

.terminal {
  margin-top: 64px;
  width: min(680px, 100%);
  background: rgba(3, 7, 16, .86);
  border: 1px solid rgba(139, 161, 205, .28);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42), inset 0 1px rgba(255, 255, 255, .04);
  backdrop-filter: blur(12px);
}

.terminal-bar {
  height: 38px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 6px;
}

.terminal-bar > span {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #46536b;
}

.terminal-bar small {
  font: 10px "DM Mono", monospace;
  color: #7f8ca1;
  margin-left: 8px;
}

.terminal-body {
  padding: 20px 22px 18px;
  font: 12px/1.7 "DM Mono", monospace;
}

.terminal-body p {
  margin-bottom: 6px;
}

.dim {
  color: #82a3cc;
}

.success {
  color: #7de8cb;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px 0 11px;
  color: #718098;
  font-size: 9px;
  gap: 10px;
}

.stat-grid b {
  display: block;
  font-size: 15px;
  color: #e2eaff;
  margin-top: 2px;
}

.cursor {
  display: inline-block;
  height: 13px;
  border-left: 7px solid var(--cyan);
  vertical-align: -2px;
  animation: blink 1s steps(2) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.home-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 0 110px;
}

.home-info article,
.detail-card,
.download-panel,
.product-card,
.discord-banner {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
}

.home-info article {
  padding: 32px;
  min-height: 245px;
}

.home-info span,
.detail-card span {
  font: 11px "DM Mono", monospace;
  color: var(--cyan);
  letter-spacing: .12em;
}

.home-info h2 {
  font-size: 30px;
}

.home-info p,
.detail-card p,
.detail-card li {
  color: #9aa8bd;
  line-height: 1.75;
  font-size: 14px;
}

.discord-banner {
  min-height: 220px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 36px;
  margin-bottom: 90px;
  background: linear-gradient(135deg, rgba(105, 231, 255, .12), rgba(142, 125, 255, .16));
}

.discord-banner a {
  color: #07101d;
  background: linear-gradient(100deg, var(--cyan), #a397ff);
  text-decoration: none;
  font: 800 20px "DM Mono", monospace;
  padding: 22px 26px;
  white-space: nowrap;
}

.page-head {
  padding: 112px 0 46px;
}

.page-head p {
  max-width: 610px;
  color: #9aa8bd;
  line-height: 1.7;
}

.products-page {
  display: grid;
  grid-template-columns: minmax(280px, 720px);
  justify-content: center;
  gap: 22px;
  padding-bottom: 110px;
}

.product-card {
  min-height: 330px;
  color: var(--ink);
  text-decoration: none;
  padding: 34px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-color: rgba(105, 231, 255, .26);
  background:
    linear-gradient(145deg, rgba(7, 17, 34, .94), rgba(3, 7, 17, .90)),
    var(--panel);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .34), inset 0 1px rgba(255, 255, 255, .045);
  transition: transform .22s, border-color .22s, background .22s, box-shadow .22s;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(105, 231, 255, .10) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 125, 255, .08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .28;
  pointer-events: none;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(105, 231, 255, .40), transparent 28%, rgba(143, 125, 255, .28)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.product-card.hot {
  min-height: 430px;
  background:
    linear-gradient(145deg, rgba(10, 27, 55, .96), rgba(3, 8, 21, .92)),
    var(--panel);
  border-color: rgba(105, 231, 255, .58);
  box-shadow: 0 36px 120px rgba(47, 140, 255, .18), 0 0 60px rgba(105, 231, 255, .10);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(105, 231, 255, .90);
  background:
    linear-gradient(145deg, rgba(11, 31, 62, .98), rgba(4, 11, 25, .93)),
    var(--panel);
  box-shadow: 0 38px 130px rgba(47, 140, 255, .22), 0 0 70px rgba(105, 231, 255, .18);
}

.product-code {
  width: fit-content;
  font: 900 12px "DM Mono", monospace;
  color: #07101d;
  background: linear-gradient(100deg, var(--cyan), var(--blue));
  padding: 9px 11px;
  letter-spacing: .14em;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 28px rgba(105, 231, 255, .22);
}

.product-card h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: .98;
  margin: 40px 0 15px;
  position: relative;
  z-index: 1;
}

.product-card p {
  max-width: 560px;
  color: #a9b8ce;
  line-height: 1.75;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.product-card strong {
  width: fit-content;
  margin-top: 34px;
  color: var(--cyan);
  font: 900 12px "DM Mono", monospace;
  letter-spacing: .07em;
  padding: 13px 15px;
  border: 1px solid rgba(105, 231, 255, .35);
  background: rgba(105, 231, 255, .08);
  position: relative;
  z-index: 1;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 54px;
  align-items: center;
  padding: 112px 0 70px;
}

.security-hero {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 58px;
  align-items: center;
  padding: 112px 0 52px;
}

.detail-main h1 {
  font-size: clamp(48px, 8vw, 100px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.button {
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  color: #e9efff;
  transition: transform .2s, border-color .2s, background .2s;
}

.button.primary {
  color: #07101d;
  background: linear-gradient(100deg, var(--cyan), #a397ff);
  border: 0;
}

.button.secondary {
  background: rgba(14, 20, 34, .58);
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-hot);
}

.download-panel {
  min-height: 360px;
  padding: 32px;
  background: var(--panel-strong);
}

.download-panel span {
  font: 11px "DM Mono", monospace;
  color: var(--cyan);
  letter-spacing: .14em;
}

.download-panel p {
  color: #9aa8bd;
  line-height: 1.75;
}

.download-panel a {
  display: block;
  margin-top: 34px;
  color: #07101d;
  background: linear-gradient(100deg, var(--cyan), #a397ff);
  text-decoration: none;
  font-weight: 900;
  padding: 18px 20px;
  text-align: center;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding-bottom: 110px;
}

.detail-card {
  padding: 30px;
}

.detail-card ul,
.detail-card ol {
  margin: 22px 0 0;
  padding-left: 18px;
}

.security-visuals {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 8px 0 88px;
}

.showcase-card {
  grid-column: span 2;
  min-height: 430px;
  border: 1px solid rgba(79, 196, 255, .30);
  background:
    linear-gradient(145deg, rgba(8, 20, 40, .94), rgba(3, 7, 17, .90)),
    var(--panel);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .34), 0 0 54px rgba(47, 140, 255, .10), inset 0 1px rgba(255, 255, 255, .045);
  padding: 18px;
  overflow: hidden;
  position: relative;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(105, 231, 255, .070) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 125, 255, .045) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .34;
  pointer-events: none;
}

.showcase-card > div {
  position: relative;
  z-index: 1;
}

.showcase-card h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin: 13px 0 13px;
}

.showcase-card p {
  color: #a8b7cc;
  line-height: 1.72;
  font-size: 14px;
  margin: 0;
}

.showcase-card span {
  font: 900 10px "DM Mono", monospace;
  color: var(--cyan);
  letter-spacing: .14em;
}

.video-frame {
  height: 230px;
  margin-bottom: 24px;
  border: 1px solid rgba(105, 231, 255, .26);
  background:
    radial-gradient(circle at 50% 30%, rgba(79, 196, 255, .18), transparent 44%),
    linear-gradient(145deg, rgba(2, 8, 19, .76), rgba(5, 13, 29, .98));
  box-shadow: inset 0 0 60px rgba(79, 196, 255, .08), 0 0 42px rgba(47, 140, 255, .10);
  overflow: hidden;
  position: relative;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(105, 231, 255, .10) 1px, transparent 1px),
    linear-gradient(0deg, rgba(105, 231, 255, .06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .22;
}

.video-frame::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 48%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(105, 231, 255, .74), transparent);
  animation: videoScan 3.2s ease-in-out infinite;
  box-shadow: 0 0 24px rgba(105, 231, 255, .40);
}

.limbo-scene,
.bedrock-scene,
.via-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.limbo-gate {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(105, 231, 255, .58);
  color: #dff9ff;
  background: rgba(5, 13, 28, .72);
  box-shadow: 0 0 44px rgba(105, 231, 255, .18), inset 0 0 35px rgba(105, 231, 255, .09);
}

.player-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  left: 19%;
  top: 52%;
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
  animation: playerMove 4.4s ease-in-out infinite;
}

.scan-ring {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(105, 231, 255, .22);
  animation: ringPulse 2.8s ease-in-out infinite;
}

.bedrock-scene b,
.bedrock-scene strong {
  position: absolute;
  top: 72px;
  color: #dff9ff;
  border: 1px solid rgba(105, 231, 255, .32);
  background: rgba(5, 13, 28, .76);
  padding: 16px 18px;
  font: 900 16px "DM Mono", monospace;
  box-shadow: 0 0 34px rgba(105, 231, 255, .14);
}

.bedrock-scene b {
  left: 16%;
}

.bedrock-scene strong {
  right: 13%;
}

.bedrock-scene i {
  width: 42%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--green));
  box-shadow: 0 0 22px rgba(105, 231, 255, .32);
  animation: bridgePulse 2.6s ease-in-out infinite;
}

.bedrock-scene small {
  position: absolute;
  bottom: 42px;
  color: var(--cyan);
  font: 900 12px "DM Mono", monospace;
  letter-spacing: .09em;
}

.via-scene {
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 34px;
}

.via-scene span {
  min-height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(105, 231, 255, .28);
  background: rgba(5, 13, 28, .72);
  color: #dff9ff;
  box-shadow: inset 0 0 26px rgba(105, 231, 255, .055);
  animation: versionFloat 3.4s ease-in-out infinite;
}

.via-scene span:nth-child(2) {
  animation-delay: .15s;
}

.via-scene span:nth-child(3) {
  animation-delay: .3s;
}

.via-scene span:nth-child(4) {
  animation-delay: .45s;
}

.via-scene span:nth-child(5) {
  animation-delay: .6s;
}

.visual-card {
  grid-column: span 1;
  min-height: 220px;
  border: 1px solid rgba(79, 196, 255, .26);
  background:
    linear-gradient(145deg, rgba(7, 17, 34, .92), rgba(3, 7, 17, .88)),
    var(--panel);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .04);
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(105, 231, 255, .075) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 125, 255, .055) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .32;
  pointer-events: none;
}

.visual-card span,
.doc-card > span,
.doc-heading span {
  position: relative;
  z-index: 1;
  font: 900 10px "DM Mono", monospace;
  color: var(--cyan);
  letter-spacing: .14em;
}

.visual-card p {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #91a0b8;
  font-size: 12px;
  line-height: 1.6;
}

.visual-card pre {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  white-space: pre-wrap;
  color: #9ff4ff;
  font: 11px/1.6 "DM Mono", monospace;
}

.radar,
.shield-pulse {
  position: relative;
  z-index: 1;
  width: 116px;
  height: 116px;
  margin: 25px auto 0;
  border: 1px solid rgba(105, 231, 255, .38);
  border-radius: 50%;
  box-shadow: inset 0 0 32px rgba(105, 231, 255, .11), 0 0 34px rgba(105, 231, 255, .10);
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  inset: 23px;
  border: 1px solid rgba(105, 231, 255, .22);
  border-radius: 50%;
}

.radar i {
  position: absolute;
  left: 56px;
  top: 12px;
  width: 1px;
  height: 48px;
  background: var(--cyan);
  transform-origin: bottom;
  animation: sweep 3.5s linear infinite;
  box-shadow: 0 0 18px var(--cyan);
}

.radar b {
  position: absolute;
  right: 28px;
  top: 42px;
  width: 8px;
  height: 8px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.payload-lines {
  position: relative;
  z-index: 1;
  margin-top: 34px;
}

.payload-lines i {
  display: block;
  height: 12px;
  margin: 11px 0;
  background: linear-gradient(90deg, rgba(105, 231, 255, .92), rgba(47, 140, 255, .08));
  box-shadow: 0 0 18px rgba(105, 231, 255, .18);
}

.payload-lines i:nth-child(2) {
  width: 72%;
}

.payload-lines i:nth-child(3) {
  width: 88%;
  background: linear-gradient(90deg, rgba(255, 85, 120, .86), rgba(47, 140, 255, .05));
}

.payload-lines i:nth-child(4) {
  width: 58%;
}

.shield-pulse {
  border-radius: 0;
  clip-path: polygon(50% 0, 100% 18%, 88% 78%, 50% 100%, 12% 78%, 0 18%);
}

.shield-pulse i {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(105, 231, 255, .22);
  animation: shieldPulse 2.8s ease-in-out infinite;
}

.shield-pulse i:nth-child(2) {
  inset: 32px;
  animation-delay: .3s;
}

.shield-pulse i:nth-child(3) {
  inset: 46px;
  animation-delay: .6s;
}

.blocked-tags {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.blocked-tags b {
  display: block;
  color: #ff9bb0;
  border: 1px solid rgba(255, 95, 130, .28);
  background: rgba(255, 69, 110, .08);
  padding: 11px 12px;
  font: 900 11px "DM Mono", monospace;
  box-shadow: 0 0 24px rgba(255, 75, 115, .08);
}

@keyframes sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shieldPulse {
  50% {
    opacity: .35;
    box-shadow: 0 0 24px rgba(105, 231, 255, .18);
  }
}

@keyframes videoScan {
  0%,
  100% {
    transform: translateY(-72px);
    opacity: .25;
  }

  50% {
    transform: translateY(72px);
    opacity: .92;
  }
}

@keyframes playerMove {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(162px);
  }
}

@keyframes ringPulse {
  50% {
    transform: scale(1.16);
    opacity: .36;
  }
}

@keyframes bridgePulse {
  50% {
    opacity: .45;
    transform: scaleX(.82);
  }
}

@keyframes versionFloat {
  50% {
    transform: translateY(-8px);
    border-color: rgba(105, 231, 255, .62);
    box-shadow: 0 0 28px rgba(105, 231, 255, .16), inset 0 0 26px rgba(105, 231, 255, .08);
  }
}

.doc-section {
  padding: 0 0 78px;
}

.doc-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 22px;
}

.doc-heading h2 {
  max-width: 760px;
  margin: 0;
}

.doc-card,
.feature-columns,
.command-table.big {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .22);
}

.wide-video-panel,
.module-showcase article {
  border: 1px solid rgba(79, 196, 255, .24);
  background:
    linear-gradient(145deg, rgba(7, 18, 36, .92), rgba(3, 7, 17, .90)),
    var(--panel);
  box-shadow: 0 34px 120px rgba(0, 0, 0, .30), 0 0 54px rgba(47, 140, 255, .09), inset 0 1px rgba(255, 255, 255, .04);
  position: relative;
  overflow: hidden;
}

.wide-video-panel::before,
.module-showcase article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(105, 231, 255, .055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(143, 125, 255, .038) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .36;
  pointer-events: none;
}

.wide-video-panel {
  min-height: 390px;
  margin-top: 16px;
  padding: 26px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.panel-copy,
.dashboard-video,
.console-video,
.config-switches {
  position: relative;
  z-index: 1;
}

.panel-copy span {
  font: 900 10px "DM Mono", monospace;
  color: var(--cyan);
  letter-spacing: .14em;
}

.panel-copy h2 {
  font-size: clamp(30px, 4vw, 58px);
  margin: 15px 0 15px;
}

.panel-copy p {
  color: #a7b6cb;
  line-height: 1.75;
}

.dashboard-video {
  min-height: 310px;
  border: 1px solid rgba(105, 231, 255, .22);
  background: radial-gradient(circle at 50% 45%, rgba(79, 196, 255, .13), transparent 42%), rgba(2, 7, 17, .78);
  padding: 18px;
  overflow: hidden;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  color: var(--cyan);
  font: 900 11px "DM Mono", monospace;
}

.dash-top i {
  color: var(--green);
  font-style: normal;
}

.dash-ring {
  width: 184px;
  height: 184px;
  margin: 32px auto 20px;
  position: relative;
  border: 1px solid rgba(105, 231, 255, .36);
  border-radius: 50%;
  box-shadow: inset 0 0 44px rgba(105, 231, 255, .08), 0 0 42px rgba(105, 231, 255, .12);
}

.dash-ring span {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(105, 231, 255, .18);
  border-radius: 50%;
  animation: ringPulse 3s ease-in-out infinite;
}

.dash-ring span:nth-child(2) {
  inset: 48px;
  animation-delay: .25s;
}

.dash-ring span:nth-child(3) {
  inset: 74px;
  background: var(--green);
  box-shadow: 0 0 26px var(--green);
}

.dash-events {
  display: grid;
  gap: 8px;
  font: 11px "DM Mono", monospace;
}

.dash-events p {
  margin: 0;
  color: #9fb0c7;
  border: 1px solid rgba(105, 231, 255, .12);
  background: rgba(5, 13, 28, .70);
  padding: 10px 12px;
}

.dash-events code {
  color: var(--cyan);
  margin-right: 9px;
}

.module-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.module-showcase article {
  min-height: 330px;
  padding: 24px;
}

.module-showcase article > span {
  position: relative;
  z-index: 1;
  color: var(--cyan);
  font: 900 10px "DM Mono", monospace;
  letter-spacing: .14em;
}

.module-showcase h3 {
  position: relative;
  z-index: 1;
  font-size: 25px;
  margin: 18px 0 20px;
}

.node-video {
  position: relative;
  z-index: 1;
  height: 190px;
  border: 1px solid rgba(105, 231, 255, .18);
  background: rgba(2, 7, 17, .62);
  overflow: hidden;
}

.firewall-video i {
  position: absolute;
  left: 18%;
  right: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 20px rgba(105, 231, 255, .28);
  animation: firewallLine 2.6s ease-in-out infinite;
}

.firewall-video i:nth-child(1) {
  top: 44px;
}

.firewall-video i:nth-child(2) {
  top: 92px;
  animation-delay: .25s;
}

.firewall-video i:nth-child(3) {
  top: 140px;
  animation-delay: .5s;
}

.firewall-video b {
  position: absolute;
  inset: 32px 42%;
  border: 1px solid rgba(105, 231, 255, .48);
  box-shadow: 0 0 34px rgba(105, 231, 255, .18);
}

.analyzer-video i {
  display: block;
  height: 18px;
  margin: 18px 22px;
  background: linear-gradient(90deg, rgba(105, 231, 255, .88), rgba(47, 140, 255, .08));
  box-shadow: 0 0 18px rgba(105, 231, 255, .18);
  animation: analyzerPulse 2.4s ease-in-out infinite;
}

.analyzer-video i:nth-child(2) {
  width: 64%;
  animation-delay: .18s;
}

.analyzer-video i:nth-child(3) {
  width: 84%;
  background: linear-gradient(90deg, rgba(255, 79, 120, .82), rgba(47, 140, 255, .06));
  animation-delay: .36s;
}

.analyzer-video i:nth-child(4) {
  width: 52%;
  animation-delay: .54s;
}

.cache-video {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 28px;
}

.cache-video b {
  width: 100%;
  text-align: center;
  color: #e8fbff;
  border: 1px solid rgba(105, 231, 255, .28);
  background: rgba(5, 13, 28, .72);
  padding: 15px;
  font: 900 12px "DM Mono", monospace;
  animation: cacheGlow 3s ease-in-out infinite;
}

.cache-video b:nth-child(2) {
  animation-delay: .28s;
}

.cache-video b:nth-child(3) {
  animation-delay: .56s;
}

.install-video,
.permission-video {
  min-height: 118px;
  margin: 14px 0 24px;
  border: 1px solid rgba(105, 231, 255, .18);
  background: rgba(2, 7, 17, .62);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  overflow: hidden;
  position: relative;
}

.install-video::before,
.permission-video::before,
.console-video::before,
.config-switches::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(105, 231, 255, .050) 1px, transparent 1px),
    linear-gradient(0deg, rgba(105, 231, 255, .035) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .34;
}

.install-video i,
.permission-video b {
  position: relative;
  z-index: 1;
  color: var(--cyan);
  border: 1px solid rgba(105, 231, 255, .28);
  background: rgba(5, 13, 28, .82);
  padding: 13px 15px;
  font: 900 10px "DM Mono", monospace;
  font-style: normal;
}

.install-video b {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(105, 231, 255, .28);
}

.permission-video {
  justify-content: space-around;
}

.permission-video b {
  color: #07101d;
  background: linear-gradient(100deg, var(--cyan), var(--blue));
  box-shadow: 0 0 24px rgba(105, 231, 255, .16);
}

.command-console-panel {
  grid-template-columns: .85fr 1.15fr;
  margin-bottom: 16px;
}

.console-video {
  min-height: 280px;
  border: 1px solid rgba(105, 231, 255, .22);
  background: rgba(2, 7, 17, .76);
  padding: 24px;
  font: 12px/1.8 "DM Mono", monospace;
  overflow: hidden;
}

.console-video p {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  color: #a8b7cc;
}

.console-video span {
  color: var(--cyan);
}

.console-video b {
  color: var(--green);
  margin-right: 8px;
}

.config-panel {
  grid-template-columns: 1.1fr .9fr;
  margin-bottom: 16px;
}

.config-switches {
  min-height: 280px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border: 1px solid rgba(105, 231, 255, .22);
  background: rgba(2, 7, 17, .72);
  padding: 22px;
  overflow: hidden;
}

.config-switches span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #dbeeff;
  border: 1px solid rgba(105, 231, 255, .16);
  background: rgba(5, 13, 28, .72);
  padding: 15px;
  font: 900 11px "DM Mono", monospace;
}

.config-switches b {
  width: 30px;
  height: 16px;
  border: 1px solid rgba(105, 231, 255, .42);
  background: rgba(105, 231, 255, .13);
  position: relative;
}

.config-switches b::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  right: 3px;
  top: 2px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

@keyframes firewallLine {
  50% {
    transform: scaleX(.55);
    opacity: .42;
  }
}

@keyframes analyzerPulse {
  50% {
    transform: translateX(18px);
    opacity: .48;
  }
}

@keyframes cacheGlow {
  50% {
    border-color: rgba(105, 231, 255, .62);
    box-shadow: 0 0 26px rgba(105, 231, 255, .16);
  }
}

.doc-card {
  padding: 30px;
}

.doc-card h2 {
  margin: 16px 0 18px;
  font-size: clamp(27px, 3vw, 42px);
}

.doc-card p,
.doc-card li {
  color: #a5b4ca;
  line-height: 1.78;
}

.doc-card strong {
  color: #e9f7ff;
}

.feature-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature-columns ul {
  margin: 0;
  padding: 28px 28px 28px 44px;
  border-left: 1px solid var(--line);
}

.feature-columns ul:first-child {
  border-left: 0;
}

.feature-columns li {
  color: #a6b7cc;
  line-height: 1.72;
  margin-bottom: 11px;
  font-size: 13px;
}

.feature-columns li::marker {
  color: var(--cyan);
}

.split-doc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.command-list p {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.command-list p:first-child {
  border-top: 0;
}

.command-list code {
  display: block;
  color: var(--cyan);
  font: 12px "DM Mono", monospace;
  margin-bottom: 8px;
}

.command-list small {
  color: #95a4ba;
}

.command-table.big {
  display: block;
}

.command-row {
  display: grid;
  grid-template-columns: minmax(270px, .9fr) 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}

.command-row:first-child {
  border-top: 0;
}

.command-row code {
  color: var(--cyan);
  font: 12px "DM Mono", monospace;
}

.command-row span {
  color: #a3b2c8;
  font-size: 14px;
  line-height: 1.6;
}

footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #69758a;
  font: 10px "DM Mono", monospace;
  border-top: 1px solid var(--line);
}

footer .brand {
  transform: scale(.9);
  transform-origin: left;
}

@media (max-width: 980px) {
  .products-page,
  .detail-hero,
  .security-hero,
  .home-hero-grid,
  .home-showcase,
  .product-head,
  .product-lab,
  .detail-grid,
  .home-info,
  .security-visuals,
  .feature-columns,
  .split-doc,
  .wide-video-panel,
  .module-showcase,
  .command-console-panel,
  .config-panel {
    grid-template-columns: 1fr;
  }

  .showcase-card,
  .visual-card {
    grid-column: span 1;
  }

  .feature-columns ul,
  .feature-columns ul:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-columns ul:first-child {
    border-top: 0;
  }

  .discord-banner {
    display: block;
  }

  .discord-banner a {
    display: inline-block;
    margin-top: 26px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  .nav {
    height: auto;
    padding: 16px 0;
    gap: 14px;
    align-items: stretch;
    flex-direction: column;
  }

  .brand {
    position: static;
  }

  .nav-actions {
    width: 100%;
    gap: 10px;
    padding: 6px;
  }

  .nav-box {
    flex: 1;
    min-width: 0;
    padding: 14px 10px;
    font-size: 11px;
  }

  .hero,
  .page-head,
  .detail-hero,
  .security-hero {
    padding-top: 78px;
  }

  h1 {
    font-size: clamp(50px, 18vw, 78px);
  }

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

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

  .home-info {
    padding-bottom: 78px;
  }

  .discord-banner {
    padding: 26px;
    margin-bottom: 70px;
  }

  .discord-banner a {
    width: 100%;
    text-align: center;
    font-size: 13px;
    white-space: normal;
  }

  .products-page,
  .detail-grid,
  .doc-section {
    padding-bottom: 78px;
  }

  .security-visuals {
    padding-bottom: 66px;
  }

  .showcase-card {
    min-height: auto;
  }

  .video-frame {
    height: 210px;
  }

  .via-scene {
    grid-template-columns: repeat(3, 1fr);
    padding: 22px;
  }

  .via-scene span {
    min-height: 64px;
  }

  .bedrock-scene b,
  .bedrock-scene strong {
    top: 68px;
    font-size: 12px;
    padding: 13px 12px;
  }

  .doc-heading {
    display: block;
  }

  .doc-heading h2 {
    margin-top: 14px;
  }

  .command-row {
    grid-template-columns: 1fr;
  }

  .config-switches {
    grid-template-columns: 1fr;
  }

  .hero-video,
  .product-head-video,
  .product-side-video {
    min-height: 360px;
  }

  .product-card-xl {
    min-height: 420px;
  }

  footer {
    min-height: 112px;
    align-content: center;
    flex-wrap: wrap;
  }
}
