:root {
  --void: #05080f;
  --deep: #0a1020;
  --panel: #0e1730;
  --panel-2: #101a38;
  --ink: #eaf0fa;
  --muted: #8a94ac;
  --cyan: #45d6e8;
  --cyan-dim: rgba(69, 214, 232, 0.14);
  --gold: #c9a24b;
  --gold-dim: rgba(201, 162, 75, 0.14);
  --line: rgba(138, 148, 172, 0.16);
  --display: "Unbounded", sans-serif;
  --body: "Sora", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--void);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
::selection {
  background: var(--cyan);
  color: var(--void);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cyan);
}
.eyebrow.gold {
  color: var(--gold);
}
.eyebrow.gold::before {
  background: var(--gold);
}
h2.sect {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  margin: 18px 0 14px;
}
.lede {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.02rem;
}
section {
  padding: 110px 0;
}
:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn {
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 3px;
  transition: 0.25s;
  cursor: pointer;
  border: 1px solid transparent;
  display: inline-block;
}
.btn-p {
  background: var(--cyan);
  color: var(--void);
  font-weight: 500;
}
.btn-p:hover {
  box-shadow: 0 0 34px rgba(69, 214, 232, 0.45);
  transform: translateY(-2px);
}
.btn-g {
  border-color: var(--line);
  color: var(--ink);
}
.btn-g:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-gold {
  background: var(--gold);
  color: var(--void);
  font-weight: 500;
}
.btn-gold:hover {
  box-shadow: 0 0 34px rgba(201, 162, 75, 0.4);
  transform: translateY(-2px);
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 15, 0.72);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.logo em {
  font-style: normal;
  color: var(--gold);
}
.logo small {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav-links a {
  transition: color 0.2s;
  padding: 4px 0;
}
.nav-links a:hover {
  color: var(--cyan);
}
.nav-links a.active {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
}
.nav-cta {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 16px;
  border-radius: 3px;
  transition: 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--void);
}
.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 4px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  cursor: pointer;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(5, 8, 15, 0.97);
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }
  .menu-btn {
    display: block;
  }
  .nav-cta {
    display: none;
  }
}

/* ---------- HOME HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 0;
  overflow: hidden;
}
#net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 50% 42%,
    transparent 0%,
    rgba(5, 8, 15, 0.55) 68%,
    var(--void) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-in {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero .tag {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(69, 214, 232, 0.3);
  display: inline-block;
  padding: 8px 18px;
  border-radius: 99px;
  background: rgba(69, 214, 232, 0.06);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 5.2vw, 3.9rem);
  line-height: 1.14;
  margin: 30px 0 8px;
}
.hero h1 .g {
  background: linear-gradient(92deg, var(--cyan) 20%, var(--gold) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.sub {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 38px;
  font-size: 1.05rem;
}
.btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.stats {
  position: relative;
  z-index: 2;
  margin-top: 90px;
  border-top: 1px solid var(--line);
  background: rgba(10, 16, 32, 0.6);
  backdrop-filter: blur(8px);
}
.stats-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.stat:first-child {
  border-left: none;
  padding-left: 0;
}
.stat b {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat b i {
  font-style: normal;
  color: var(--cyan);
  font-size: 0.7em;
}
.stat span {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat .live {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3ae07c;
  margin-right: 7px;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@media (max-width: 800px) {
  .stats-in {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
  .stat:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}

/* ---------- SUBPAGE HERO ---------- */
.page-hero {
  padding: 170px 0 70px;
  background: linear-gradient(180deg, var(--deep), var(--void));
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan-dim), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.18;
  margin: 18px 0 14px;
}
.page-hero .lede {
  font-size: 1.05rem;
}
.crumb {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 26px;
  display: block;
}
.crumb a:hover {
  color: var(--cyan);
}

/* ---------- HOME PREVIEW CARDS ---------- */
.previews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.prev {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  display: block;
}
.prev::after {
  content: "→";
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--muted);
  font-size: 1.2rem;
  transition: 0.25s;
}
.prev:hover {
  border-color: rgba(69, 214, 232, 0.4);
  transform: translateY(-3px);
}
.prev:hover::after {
  color: var(--cyan);
  transform: translateX(4px);
}
.prev .pn {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.prev h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 14px 0 10px;
  line-height: 1.35;
}
.prev p {
  color: var(--muted);
  font-size: 0.94rem;
}
@media (max-width: 760px) {
  .previews {
    grid-template-columns: 1fr;
  }
}

/* ---------- TECHNOLOGIES ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.tech-grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.tcard {
  background: var(--deep);
  padding: 34px 28px;
  position: relative;
  transition: background 0.3s;
  min-height: 250px;
  display: flex;
  flex-direction: column;
}
.tcard:hover {
  background: var(--panel);
}
.tcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.tcard:hover::before {
  transform: scaleX(1);
}
.tcard .code {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.tcard svg {
  width: 34px;
  height: 34px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.4;
  margin: 18px 0 14px;
}
.tcard h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.35;
}
.tcard p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
.tcard ul {
  list-style: none;
  margin-top: 14px;
  display: grid;
  gap: 7px;
}
.tcard ul li {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: #b8c4dc;
  display: flex;
  gap: 9px;
  align-items: baseline;
}
.tcard ul li::before {
  content: "›";
  color: var(--cyan);
}
@media (max-width: 1000px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .tech-grid,
  .tech-grid.two {
    grid-template-columns: 1fr;
  }
}

/* ---------- PLAYGROUND ---------- */
.console {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--deep);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  margin-top: 56px;
}
.con-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.r {
  background: #e0564f;
}
.dot.y {
  background: #e0b23a;
}
.dot.g {
  background: #3ae07c;
}
.con-bar span {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
  margin-left: 10px;
  letter-spacing: 0.08em;
}
.con-body {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 400px;
}
.scenarios {
  border-right: 1px solid var(--line);
  padding: 22px;
}
.scenarios h4 {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.scn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.92rem;
  padding: 13px 15px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.scn small {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 3px;
  letter-spacing: 0.06em;
}
.scn:hover {
  border-color: var(--cyan);
}
.scn.on {
  border-color: var(--cyan);
  background: var(--cyan-dim);
}
.term {
  padding: 24px;
  font-family: var(--mono);
  font-size: 0.88rem;
  line-height: 1.85;
  color: #b8c4dc;
  overflow-y: auto;
  max-height: 470px;
}
.term .sys {
  color: var(--muted);
}
.term .ok {
  color: #3ae07c;
}
.term .hl {
  color: var(--cyan);
}
.term .gd {
  color: var(--gold);
}
.term .cur {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: var(--cyan);
  vertical-align: -2px;
  animation: pulse 1s infinite;
}
@media (max-width: 820px) {
  .con-body {
    grid-template-columns: 1fr;
  }
  .scenarios {
    border-right: none;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 10px;
    overflow-x: auto;
  }
  .scn {
    min-width: 210px;
    margin-bottom: 0;
  }
}

/* ---------- VERTICALS ---------- */
.vert {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.vlist {
  background: var(--deep);
  max-height: 560px;
  overflow-y: auto;
}
.vitem {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 17px 22px;
  cursor: pointer;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.94rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}
.vitem:hover {
  color: var(--ink);
  background: var(--panel);
}
.vitem.on {
  color: var(--ink);
  background: var(--panel);
  box-shadow: inset 3px 0 0 var(--gold);
}
.vitem .n {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.vdetail {
  background: var(--panel);
  padding: 44px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}
.vdetail h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 14px 0 18px;
  line-height: 1.3;
}
.vdetail p {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 28px;
}
.engine {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(69, 214, 232, 0.3);
  background: var(--cyan-dim);
  padding: 10px 16px;
  border-radius: 3px;
  align-self: flex-start;
}
@media (max-width: 860px) {
  .vert {
    grid-template-columns: 1fr;
  }
  .vlist {
    max-height: 260px;
  }
  .vdetail {
    padding: 32px 26px;
  }
}

/* ---------- TRUST ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  margin-top: 56px;
  align-items: start;
}
.tr-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  background: var(--deep);
  margin-bottom: 24px;
}
.tr-block h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tr-block h3 svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}
.tr-block p {
  color: var(--muted);
  font-size: 0.95rem;
}
.shield-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.shield-list li {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: #b8c4dc;
  display: flex;
  gap: 10px;
  align-items: center;
}
.shield-list li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.6rem;
}
.leads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.lead {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px;
  background: var(--panel);
}
.lead .av {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--panel-2), var(--deep));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 0.8rem;
  color: var(--cyan);
  margin-bottom: 14px;
}
.lead b {
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
}
.lead span {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.cta-panel {
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 8px;
  padding: 44px 38px;
  background: radial-gradient(
    ellipse at top left,
    var(--gold-dim),
    var(--deep) 65%
  );
  position: sticky;
  top: 96px;
}
.cta-panel h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 14px 0 16px;
}
.cta-panel p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 30px;
}
.cta-panel .btn {
  display: block;
  text-align: center;
  margin-bottom: 12px;
  width: 100%;
}
@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    position: static;
  }
}
@media (max-width: 560px) {
  .leads {
    grid-template-columns: 1fr;
  }
}

/* contact form */
.form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.form label {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 7px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 13px 15px;
  transition: border-color 0.2s;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: var(--cyan);
  outline: none;
}
.form textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-note {
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--muted);
}
.form-ok {
  border: 1px solid rgba(58, 224, 124, 0.4);
  background: rgba(58, 224, 124, 0.08);
  color: #3ae07c;
  font-family: var(--mono);
  font-size: 0.84rem;
  padding: 14px 16px;
  border-radius: 5px;
  display: none;
}

/* ---------- CTA BAND (subpages) ---------- */
.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--deep), var(--panel));
  padding: 64px 0;
}
.cta-band .in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1.3;
  max-width: 560px;
}
.cta-band .btns {
  justify-content: flex-start;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 40px;
  background: var(--deep);
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.foot .fl {
  max-width: 340px;
  color: var(--muted);
  font-size: 0.92rem;
}
.foot .cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.foot h5 {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.foot ul {
  list-style: none;
  display: grid;
  gap: 9px;
  font-size: 0.92rem;
  color: #b8c4dc;
}
.foot ul a:hover {
  color: var(--cyan);
}
.legal {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* reveal on scroll */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rv.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .rv {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- PROJECTS ---------- */
.impact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  background: rgba(10, 16, 32, 0.4);
}
.impact .stat {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.impact .stat:first-child {
  border-left: none;
  padding-left: 0;
}
@media (max-width: 800px) {
  .impact {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }
  .impact .stat:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}

.pfilter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 8px;
}
.pf-btn {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.22s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.pf-btn i {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
  background: var(--panel);
  border-radius: 99px;
  padding: 2px 8px;
  transition: 0.22s;
}
.pf-btn:hover {
  border-color: var(--cyan);
  color: var(--ink);
}
.pf-btn.on {
  border-color: var(--cyan);
  color: var(--void);
  background: var(--cyan);
  font-weight: 500;
}
.pf-btn.on i {
  color: var(--cyan);
  background: rgba(5, 8, 15, 0.25);
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
@media (max-width: 960px) {
  .pgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .pgrid {
    grid-template-columns: 1fr;
  }
}
.pcard {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.pcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.pcard:hover {
  border-color: rgba(69, 214, 232, 0.4);
  transform: translateY(-3px);
}
.pcard:hover::before {
  transform: scaleX(1);
}
.pc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.pc-date {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.pc-eng {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  border: 1px solid rgba(69, 214, 232, 0.3);
  background: var(--cyan-dim);
  border-radius: 99px;
  padding: 4px 10px;
  white-space: nowrap;
}
.pcard h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 6px;
}
.pc-loc {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-bottom: 14px;
}
.pcard p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.62;
  flex: 1;
}
.pc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.pc-dur {
  font-family: var(--mono);
  font-size: 0.74rem;
  color: #b8c4dc;
}
.pc-live {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--cyan);
  transition: 0.2s;
}
.pc-live:hover {
  color: var(--gold);
}
.pc-live.off {
  color: var(--muted);
}

.numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}
@media (max-width: 820px) {
  .numbers {
    grid-template-columns: 1fr;
  }
}
.num-block {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  padding: 36px 34px;
}
.num-block h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 14px 0 26px;
  line-height: 1.3;
}
.bars {
  display: grid;
  gap: 20px;
}
.bar-lab {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 9px;
  font-size: 0.9rem;
  color: #b8c4dc;
}
.bar-lab b {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
.bar-track {
  height: 8px;
  border-radius: 99px;
  background: var(--panel);
  overflow: hidden;
}
.bar-track i {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}
.geo {
  display: grid;
  gap: 2px;
}
.geo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.geo-row:last-child {
  border-bottom: none;
}
.geo-row b {
  font-size: 0.98rem;
  font-weight: 600;
  display: block;
}
.geo-row span {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.geo-row em {
  font-style: normal;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--gold);
}

/* ---------- GALLERY ---------- */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
@media (max-width: 960px) {
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .gal-grid {
    grid-template-columns: 1fr;
  }
}
.gcard {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--deep);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.gcard[data-play] {
  cursor: pointer;
}
.gcard[data-play]:hover {
  border-color: rgba(69, 214, 232, 0.4);
  transform: translateY(-3px);
}
.gmedia {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--panel-2), var(--void));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.gthumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gplay {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(5, 8, 15, 0.55);
  border: 1px solid rgba(69, 214, 232, 0.6);
  backdrop-filter: blur(4px);
  transition: 0.25s;
  opacity: 1;
}
.gplay::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--cyan);
}
.gcard[data-play]:hover .gplay {
  opacity: 0;
  transform: scale(0.85);
}
.gexpand {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 6px;
  background: rgba(5, 8, 15, 0.6);
  border: 1px solid rgba(69, 214, 232, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.25s;
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.gcard[data-play]:hover .gexpand {
  opacity: 1;
}
.gexpand svg {
  width: 16px;
  height: 16px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2;
}
.gexpand:hover {
  background: var(--cyan);
}
.gexpand:hover svg {
  stroke: var(--void);
}
.gsoon {
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 2;
}
.gsoon svg {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 1.5;
}
.gbody {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  min-height: 56px;
}
.gbody h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0;
}
.gal-empty {
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 60px 30px;
  text-align: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  grid-column: 1/-1;
}
/* lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 5, 10, 0.86);
  backdrop-filter: blur(8px);
}
.lb.open {
  display: flex;
}
.lb-inner {
  width: 100%;
  max-width: 960px;
}
.lb video {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #000;
  display: block;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lb-cap {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}
.lb-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(14, 23, 48, 0.85);
  color: var(--ink);
  font-size: 1.15rem;
  cursor: pointer;
  transition: 0.2s;
  z-index: 2;
}
.lb-close:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
