/* ═══════════════════════════════════════════
   ZELNX — Final Clean Build
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Quantico:wght@400;700&family=Electrolize&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg: #020b12;
  --cyan: #19ebdb;
  --bright: #8ffff7;
  --white: #f0fbfb;
  --muted: #9eb8bc;
  --line: rgba(25,235,219,.15);
  --line2: rgba(25,235,219,.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Space Mono", monospace;
  font-size: 15px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* Main content area */
main {
  min-height: 100vh;
  position: relative;
}

::selection { background: var(--cyan); color: #001; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ═══════ NAV ═══════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 64px; display: flex; align-items: center;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.nav-inner {
  width: min(1400px, calc(100% - 4rem));
  margin: auto; display: flex; align-items: center;
  gap: 1.2rem; height: 100%;
}

/* Logo — no glow, clean merge */
.brand-logo {
  height: 36px; cursor: pointer;
}

.brand-name {
  font: 700 1.1rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .2em; color: #fff; cursor: pointer;
}
.brand-name .z { color: var(--cyan); }
.brand-name .x { color: var(--cyan); }

.brand-tag {
  font-size: .5rem;
  color: rgba(255,255,255,.25);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-family: "Space Mono", monospace;
}

.nav-tags {
  display: flex; gap: 1.2rem; margin-left: 1.5rem;
}

.nav-tags a {
  font: 700 .62rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  padding: .4rem 0;
  transition: color .2s;
  position: relative;
}

.nav-tags a::after {
  content: ""; position: absolute;
  left: 0; bottom: 0; right: 0;
  height: 2px; background: var(--cyan);
  transform: scaleX(0); transition: transform .25s;
}

.nav-tags a:hover, .nav-tags a.active { color: var(--bright); }
.nav-tags a:hover::after, .nav-tags a.active::after { transform: scaleX(1); }

.nav-right {
  display: flex; gap: .8rem; margin-left: auto;
}

.nav-link-sm {
  font: 700 .6rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; transition: color .2s;
}
.nav-link-sm:hover { color: var(--bright); }

.nav-cta {
  padding: .55rem 1rem;
  border: 1px solid var(--line2); border-radius: 3px;
  font: 700 .6rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan);
  background: rgba(25,235,219,.06);
  cursor: pointer; transition: all .25s;
}
.nav-cta:hover { background: var(--cyan); color: #001; }

.pt-overlay {
  position: fixed; inset: 0; background: var(--bg);
  z-index: 9999; pointer-events: none;
  opacity: 0; transition: opacity .3s;
}
.pt-overlay.in { opacity: 1; }

/* ═══════ HERO ═══════ */
.hero {
  min-height: 100vh; padding-top: 64px;
  position: relative; display: flex; flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center;
  opacity: .3;
}

.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(2,11,18,.5) 80%,
    rgba(2,11,18,.95) 100%
  );
}

.hero-main {
  display: grid; grid-template-columns: 1fr;
  align-items: center;
  padding: 8vh 5vw; gap: 2rem;
  position: relative; z-index: 2; flex: 1;
}

.hero-left {
  display: flex; flex-direction: column;
  justify-content: center; max-width: 800px;
}

.hero-label {
  font: 700 .72rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero-label::before {
  content: ""; width: 22px; height: 1px;
  background: var(--cyan);
}

.hero-h1 {
  font: 900 clamp(2.8rem, 5.5vw, 5rem)/.88 "Quantico", "Electrolize", system-ui;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0,0,0,1), 0 4px 20px rgba(0,0,0,.95);
  margin-bottom: 1.4rem;
  white-space: pre-line;
}

.hero-h1 span, .hero-h1 em {
  color: var(--cyan); font-style: normal; display: block;
}

.hero-sub {
  font: 400 1.05rem/1.8 "Space Mono", monospace;
  color: rgba(255,255,255,.88);
  max-width: 600px; margin-bottom: 1.2rem;
  text-shadow: 0 1px 3px rgba(0,0,0,1);
}

.hero-btns { display: flex; flex-wrap: wrap; gap: .7rem; }

.hero-foot {
  display: flex; align-items: center;
  padding: .7rem 5vw;
  border-top: 1px solid var(--line);
  position: relative; z-index: 2;
  background: rgba(0,0,0,.08);
}

.foot-year {
  margin-left: auto;
  font: 700 .55rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .18em; color: rgba(255,255,255,.3);
}

.foot-sq {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--bright), var(--cyan));
  margin-left: .8rem;
  clip-path: polygon(0 0,100% 0,100% 72%,72% 100%,0 100%);
}

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem 1.2rem; border-radius: 3px;
  font: 700 .62rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .14em; text-transform: uppercase;
  transition: all .25s; cursor: pointer; border: 0;
}

.btn-primary {
  color: #001;
  background: linear-gradient(135deg, var(--bright), var(--cyan) 52%, #09a59c);
  box-shadow: 0 0 18px rgba(25,235,219,.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(25,235,219,.4);
}

.btn-ghost {
  border: 1px solid var(--line2);
  color: var(--bright);
  background: rgba(4,20,30,.2);
}
.btn-ghost:hover {
  background: rgba(25,235,219,.06);
  border-color: var(--cyan);
}

.btn-disabled {
  opacity: .5; cursor: not-allowed;
  border: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
  background: rgba(255,255,255,.02);
}

/* ═══════ SECTIONS ═══════ */
.sub {
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative; overflow: hidden;
}

.sub.solid { background: var(--bg); }
.sub.dark {
  background: linear-gradient(180deg, #040e18, #020b12);
}

.wrap {
  width: min(1400px, calc(100% - 4rem));
  margin: auto;
}

.eyebrow {
  font: 700 .72rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--cyan);
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 20px; height: 1px;
  background: var(--cyan);
}

.sec-title {
  font: 900 clamp(2rem, 3.5vw, 3.2rem)/1.1 "Quantico", "Electrolize", system-ui;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.sec-title em { color: var(--cyan); font-style: normal; }

.sec-lead {
  font: 400 1.05rem/1.85 "Space Mono", monospace;
  color: rgba(255,255,255,.82);
  max-width: 660px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.05);
  padding: 1rem 1.2rem; border-radius: 8px;
  margin-bottom: .8rem;
}

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
}

.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.four { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }

/* ═══════ IMAGE FRAMES ═══════ */
.ifrm {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 4px;
}
.ifrm img {
  width: 100%; display: block;
  transition: transform .5s; object-fit: cover;
}
.ifrm:hover img { transform: scale(1.03); }

.ifrm .ctl, .ifrm .cbr {
  position: absolute; width: 12px; height: 12px;
  border-color: var(--cyan); border-style: solid;
  z-index: 3; pointer-events: none;
}
.ifrm .ctl { top: 7px; left: 7px; border-width: 2px 0 0 2px; }
.ifrm .cbr { bottom: 7px; right: 7px; border-width: 0 2px 2px 0; }

/* ═══════ BG SECTIONS ═══════ */
.bg-section { min-height: 350px; }
.bg-section-img {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none;
}
.bg-section-img img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: .25;
}
.sub.bg-section { overflow: visible; }

/* ═══════ GLASS CARDS ═══════ */
.gc {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 1.3rem;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.gc::before {
  content: ""; position: absolute;
  top: 0; left: 0; width: 0; height: 2px;
  background: var(--cyan);
  transition: width .4s;
}
.gc:hover::before { width: 100%; }
.gc:hover {
  border-color: var(--line2);
  transform: translateY(-3px);
}

.gc-no {
  font: 700 .55rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .16em;
  color: rgba(255,255,255,.3);
  margin-bottom: .4rem;
}

.gc-name {
  font: 900 .78rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .6rem;
}

.gc-title {
  font: 700 1.05rem/1.2 "Quantico", "Electrolize", system-ui;
  color: var(--bright); margin-bottom: .6rem;
}

.gc-body {
  font: 400 .95rem/1.75 "Space Mono", monospace;
  color: rgba(255,255,255,.78); margin-bottom: .6rem;
}

.gc-link {
  font: 700 .55rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cyan); cursor: pointer;
}

/* ═══════ CAPS / STEPS / HL / BLIST ═══════ */
.caps { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 1.3rem; }
.cap {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem .9rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  font: 400 .95rem/1 "Space Mono", monospace;
  color: var(--white); transition: all .2s;
}
.cap:hover { border-color: var(--line2); transform: translateX(2px); }
.cap-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}

.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 50px 1fr; gap: .8rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(25,235,219,.06);
}
.step:last-child { border-bottom: none; }
.step-n {
  font: 900 .68rem/1 "Quantico", "Electrolize", system-ui;
  color: var(--cyan);
}
.step-title {
  font: 700 .95rem/1.2 "Quantico", "Electrolize", system-ui;
  color: var(--bright); margin-bottom: .15rem;
}
.step-sub {
  font: 400 .5rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.hl {
  border-left: 2px solid var(--cyan);
  padding: .9rem 1.1rem;
  background: rgba(25,235,219,.02);
  margin: 1.3rem 0;
}
.hl p {
  font: 400 1.05rem/1.75 "Space Mono", monospace;
  color: var(--white);
}
.hl strong { color: var(--cyan); }

.blist {
  list-style: none; margin-top: .7rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.blist li {
  font: 400 1rem/1.7 "Space Mono", monospace;
  color: rgba(255,255,255,.78);
  padding-left: 1rem; position: relative;
}
.blist li::before {
  content: ""; position: absolute;
  left: 0; top: .65em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan);
}

/* ═══════ CCARD / PRODUCT BLOCK ═══════ */
.ccard {
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  transition: all .3s; position: relative; overflow: hidden;
}
.ccard::before {
  content: ""; position: absolute;
  top: 0; left: 0; bottom: 0; width: 0;
  background: var(--cyan); transition: width .3s;
}
.ccard:hover { border-color: var(--line2); }
.ccard:hover::before { width: 2px; }

.ccard h4 {
  font: 700 .95rem/1.2 "Quantico", "Electrolize", system-ui;
  color: var(--bright); margin-bottom: .4rem;
}
.ccard p {
  font: 400 .92rem/1.7 "Space Mono", monospace;
  color: rgba(255,255,255,.78); margin-bottom: .7rem;
}
.ccard .cl {
  font: 700 .55rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--cyan); cursor: pointer;
}

.product-block {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 1.4rem 1.3rem;
  transition: border-color .25s, transform .25s;
}
.product-block:hover { border-color: var(--line2); transform: translateY(-2px); }
.product-block h3 {
  font: 700 1rem/1.2 "Quantico", "Electrolize", system-ui;
  color: var(--cyan); margin-bottom: .7rem;
}
.product-block p {
  color: rgba(255,255,255,.78);
  font: 400 .95rem/1.7 "Space Mono", monospace;
}

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

/* ═══════ PRODUCT LOGO ═══════ */
.product-logo {
  position: absolute; left: 14px; bottom: 14px;
  width: 70px; height: 44px; border-radius: 6px;
  overflow: hidden; border: 1px solid var(--line2);
  background: rgba(0,0,0,.5);
  display: grid; place-items: center; padding: 5px;
}
.product-logo img {
  width: 100%; height: 100%; object-fit: contain;
  filter: brightness(0) saturate(100%) invert(78%)
    sepia(99%) saturate(400%) hue-rotate(130deg)
    brightness(1.2) contrast(1.1);
}

/* ═══════ PRODUCT FEATURE ═══════ */
.product-feature {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 2.5rem; align-items: center;
}
.product-feature.reverse { grid-template-columns: 1.1fr .9fr; }
.product-feature.reverse .product-visual { order: 2; }

.product-visual {
  position: relative; height: 300px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line);
}
.product-visual>img {
  width: 100%; height: 100%; object-fit: cover;
}

.product-copy p {
  color: rgba(255,255,255,.82);
  font: 400 1.05rem/1.75 "Space Mono", monospace;
  margin-bottom: .8rem;
}
.product-copy h2 {
  font: 800 clamp(2.2rem, 4.5vw, 3.5rem)/1 "Quantico", "Electrolize", system-ui;
  margin-bottom: .5rem;
}
.product-copy h2 span { color: var(--cyan); }
.product-copy h3 {
  font: 700 1.1rem/1.3 "Quantico", "Electrolize", system-ui;
  color: var(--bright); margin-bottom: .8rem;
}

.capabilities {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .6rem; margin: 1rem 0;
}
.capability {
  padding: .7rem;
  border: 1px solid var(--line); border-radius: 6px;
  background: rgba(25,235,219,.02);
  font: 600 .62rem "Quantico", "Electrolize", system-ui;
  letter-spacing: .05em; color: var(--muted); text-align: center;
}

.pqc-image-strip {
  height: 260px; position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 12px;
  margin: 0 0 1.5rem;
}
.pqc-image-strip img {
  width: 100%; height: 100%; object-fit: cover;
}
.pqc-image-strip::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.6), transparent 70%),
              linear-gradient(0deg, rgba(0,0,0,.4), transparent 55%);
}
.pqc-image-strip>div {
  position: absolute; left: 1.2rem; bottom: 1rem;
  z-index: 2; display: grid; gap: .3rem;
}
.pqc-image-strip span {
  font: 600 .6rem "Quantico", "Electrolize", system-ui;
  letter-spacing: .2em; color: var(--cyan);
}
.pqc-image-strip strong {
  font: 700 1rem "Quantico", "Electrolize", system-ui;
  color: var(--white);
}

/* ═══════ TEAM GRID ═══════ */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.team-card {
  text-align: center;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: border-color .3s, transform .3s;
}
.team-card:hover {
  border-color: var(--line2);
  transform: translateY(-4px);
}
.team-img {
  width: 100px; height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--cyan), rgba(25,235,219,.2));
  display: grid; place-items: center;
  font: 900 1.8rem/1 "Quantico", "Electrolize", system-ui;
  color: #001;
  border: 2px solid rgba(25,235,219,.3);
}
.team-card h4 {
  font: 700 1rem/1.3 "Quantico", "Electrolize", system-ui;
  color: var(--bright); margin-bottom: .3rem;
}
.team-card .role {
  font: 400 .82rem/1.4 "Space Mono", monospace;
  color: var(--cyan);
}

/* ═══════ DEMO GATE ═══════ */
.demo-gate {
  max-width: 500px; margin: 0 auto;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 2.5rem 2rem;
}
.demo-gate h3 {
  font: 700 1.3rem/1.3 "Quantico", "Electrolize", system-ui;
  color: var(--bright); margin-bottom: 1rem; text-align: center;
}
.demo-gate input, .demo-gate textarea {
  width: 100%; padding: .8rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  border-radius: 6px; color: var(--white);
  font: 400 .9rem/1.5 "Space Mono", monospace;
  outline: none; margin-bottom: .8rem;
  transition: border-color .2s;
}
.demo-gate input:focus, .demo-gate textarea:focus {
  border-color: var(--cyan);
}
.demo-gate input::placeholder, .demo-gate textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.demo-gate .btn { width: 100%; justify-content: center; margin-top: .5rem; }

/* ═══════ VIDEO PLAYER ═══════ */
.video-container {
  width: 100%; max-width: 900px; margin: 2rem auto;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}
.video-container video {
  width: 100%; display: block;
}

/* ═══════ LAUNCHING SOON BADGE ═══════ */
.badge-soon {
  display: inline-block;
  font: 700 .55rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--cyan);
  background: rgba(25,235,219,.08);
  border: 1px solid rgba(25,235,219,.2);
  padding: .35rem .8rem; border-radius: 20px;
  margin-left: .8rem;
}

/* ═══════ MAYA SHOWCASE ═══════ */
.showcase-nav {
  display: flex; gap: .6rem;
  margin: 1.5rem 0; flex-wrap: wrap;
}
.showcase-btn {
  padding: .6rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: 600 .65rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.03);
  cursor: pointer; transition: all .25s;
}
.showcase-btn:hover, .showcase-btn.active {
  border-color: var(--cyan); color: var(--cyan);
  background: rgba(25,235,219,.06);
}

/* ═══════ MAYA OVERLAY ═══════ */
.maya-overlay {
  display: none; position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(14px);
  overflow-y: auto; padding: 64px 0 2rem;
}
.maya-overlay.open { display: block; }

.maya-content {
  width: min(1400px, calc(100% - 4rem));
  margin: 0 auto; padding: 2rem 0;
}

.maya-close {
  position: fixed; top: 80px; right: 2rem; z-index: 9001;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,0,0,.85);
  border: 1px solid var(--line2);
  display: grid; place-items: center;
  color: var(--cyan); font-size: 1.3rem;
  cursor: pointer; transition: all .2s;
}
.maya-close:hover { background: var(--cyan); color: #001; }

/* ═══════ DOC LINKS ═══════ */
.doc-link {
  display: flex; align-items: center; gap: .7rem;
  padding: .9rem 1.1rem;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  transition: all .2s; cursor: pointer;
}
.doc-link:hover {
  border-color: var(--cyan);
  transform: translateX(2px);
}
.doc-icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: rgba(25,235,219,.06);
  border: 1px solid var(--line);
  border-radius: 5px; color: var(--cyan);
  font-size: .85rem; flex-shrink: 0;
}
.doc-info { display: flex; flex-direction: column; }
.doc-title {
  font: 700 .82rem/1.2 "Quantico", "Electrolize", system-ui;
  color: var(--bright);
}
.doc-desc {
  font: 400 .75rem/1.3 "Space Mono", monospace;
  color: var(--muted);
}

/* ═══════ REVEAL ═══════ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s, transform .7s;
}
.reveal.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ═══════ FOOTER ═══════ */
.site-footer {
  border-top: 1px solid var(--line);
  background: #010a11;
}
.footer-inner {
  width: min(1400px, calc(100% - 4rem));
  margin: auto; padding: 2.5rem 0 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-col-title {
  font: 700 .55rem/1 "Quantico", "Electrolize", system-ui;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: .7rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a {
  font: .78rem/1 "Space Mono", monospace;
  color: var(--muted); cursor: pointer;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--bright); }

.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid rgba(25,235,219,.05);
  width: min(1400px, calc(100% - 4rem));
  margin: 0 auto;
  display: flex; justify-content: space-between;
  font: .65rem/1 "Space Mono", monospace;
  color: rgba(255,255,255,.25);
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1100px) {
  .three { grid-template-columns: 1fr 1fr; }
  .product-feature, .product-feature.reverse { grid-template-columns: 1fr; }
  .product-feature.reverse .product-visual { order: 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-tags { display: none; }
  .hero-main { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .three, .two, .four, .featured-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .product-visual { height: 250px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .hero-h1 { font-size: clamp(2rem, 10vw, 2.8rem) !important; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
