/* ===== TOKENS ===== */
:root {
  --bg: #070912;
  --bg-2: #0b0f1f;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.16);

  --txt: rgba(236, 240, 255, 0.92);
  --txt-mute: rgba(180, 192, 220, 0.72);
  --txt-dim: rgba(140, 152, 180, 0.55);

  /* Fluorescent gold replaces former cyan accent */
  --cyan: #FFE042;          /* legacy var name kept; now fluo gold */
  --gold: #FFE042;
  --gold-soft: #FFD56B;
  --gold-deep: #C9A227;
  --violet: #8b5cf6;
  --magenta: #B14CFF;
  --pink: #ff5dc8;
  --amber: #ffb547;
  --green: #4ade80;

  --grad-1: linear-gradient(135deg, #FFE042 0%, #FFB547 50%, #B14CFF 100%);
  --grad-2: linear-gradient(135deg, #FFE042, #B14CFF);
  --grad-text: linear-gradient(120deg, #FFF1A6 0%, #FFE042 35%, #FFB547 65%, #ff9ee0 100%);

  --display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --body: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.dot-sep { color: var(--txt-dim); margin: 0 4px; }

/* ===== BACKGROUND STACK ===== */
.bg-stack {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: #050810;
}
.bg-parallax {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('bg-circuit.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: repeat-y; /* tile vertically as we grow it */
  will-change: transform, height;
  transform: translate3d(0, 0, 0);
}
.bg-darken {
  position: absolute;
  inset: 0;
  /* 50% darken layer + subtle vertical fade to deepen edges */
  background:
    linear-gradient(180deg, rgba(5,8,16,0.55) 0%, rgba(5,8,16,0.5) 50%, rgba(5,8,16,0.65) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(5,8,16,0) 0%, rgba(5,8,16,0.25) 80%);
}
#space-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.55;
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform;
}
.aurora-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(255,224,66,0.35), transparent 60%);
  top: -220px; left: -160px;
  animation: drift1 26s ease-in-out infinite alternate;
}
.aurora-2 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(177,76,255,0.4), transparent 60%);
  top: 30%; right: -180px;
  animation: drift2 30s ease-in-out infinite alternate;
}
.aurora-3 {
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(255,181,71,0.3), transparent 60%);
  bottom: -120px; left: 30%;
  animation: drift3 34s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(120px, 80px) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-100px, 60px) scale(1.1); } }
@keyframes drift3 { to { transform: translate(80px, -120px) scale(1.2); } }


.noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ===== STATUS BAR ===== */
.status-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px var(--pad-x);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--txt-mute);
  background: linear-gradient(180deg, rgba(7,9,18,0.85), transparent);
  pointer-events: none;
}
.sb-left, .sb-right { display: flex; align-items: center; gap: 10px; }
.sb-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(255,224,66,0.1);
  border: 1px solid rgba(255,224,66,0.32);
  border-radius: 100px;
  color: #FFEFA0;
  font-size: 10px;
  letter-spacing: 0.16em;
}
.sb-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold), 0 0 18px rgba(255,224,66,0.6);
  animation: pulse 1.6s infinite;
}
.sb-mute { color: var(--txt-dim); }
.sb-sep { color: var(--txt-dim); opacity: 0.4; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 24px;
  z-index: 40;
  margin: 32px var(--pad-x) 0;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(11, 15, 31, 0.6);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  filter: drop-shadow(0 0 10px rgba(255,224,66,0.5));
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text strong {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
}
.brand-text em {
  font-style: normal;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--txt-mute);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--txt-mute);
  transition: all 0.2s;
}
.nav-links a:hover {
  background: var(--surface-2);
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1200;
  background: var(--grad-2);
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(255,224,66,0.3), 0 4px 16px rgba(177,76,255,0.18);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(255,224,66,0.45), 0 6px 20px rgba(177,76,255,0.25); }

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 5;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 120px var(--pad-x);
}
.section-head { margin-bottom: 56px; }
.section-num {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid rgba(255,224,66,0.3);
  border-radius: 100px;
  background: rgba(255,224,66,0.08);
  text-shadow: 0 0 14px rgba(255,224,66,0.5);
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 18ch;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 5;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px var(--pad-x) 60px;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-orb {
  position: absolute;
  top: 50%; right: 6%;
  transform: translateY(-50%);
  width: min(560px, 50vw);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: -1;
  opacity: 0.95;
}
.orb-core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #FFF1A6 18%, #FFE042 35%, #B14CFF 75%, #1a0b3a 95%);
  filter: blur(2px);
  box-shadow:
    0 0 80px rgba(255,224,66,0.5),
    0 0 160px rgba(177,76,255,0.35),
    inset 0 0 40px rgba(255,255,255,0.25);
  animation: orb-rot 24s linear infinite;
}
@keyframes orb-rot {
  to { transform: rotate(360deg); }
}
.orb-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,224,66,0.3);
  border-radius: 50%;
}
.orb-ring.r1 { animation: spinR 30s linear infinite; border-style: dashed; opacity: 0.45; }
.orb-ring.r2 { inset: 8%; animation: spinR 50s linear infinite reverse; opacity: 0.6; }
.orb-ring.r3 { inset: 18%; animation: spinR 22s linear infinite; opacity: 0.7; border-color: rgba(177,76,255,0.4); }
@keyframes spinR { to { transform: rotate(360deg); } }
.orb-particles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  top: 50%; left: 50%;
  animation: particleOrbit 12s linear infinite;
}
.orb-particles span { background: var(--gold); box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(255,224,66,0.5); }
.orb-particles span:nth-child(1) { animation-delay: 0s; --orbit-r: 220px; }
.orb-particles span:nth-child(2) { animation-delay: -2s; --orbit-r: 180px; background: var(--magenta); box-shadow: 0 0 12px var(--magenta);}
.orb-particles span:nth-child(3) { animation-delay: -4s; --orbit-r: 240px;}
.orb-particles span:nth-child(4) { animation-delay: -6s; --orbit-r: 200px; background: var(--pink); box-shadow: 0 0 10px var(--pink);}
.orb-particles span:nth-child(5) { animation-delay: -8s; --orbit-r: 260px;}
.orb-particles span:nth-child(6) { animation-delay: -10s; --orbit-r: 170px; background: var(--magenta); box-shadow: 0 0 10px var(--magenta);}
@keyframes particleOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg) translateX(var(--orbit-r, 200px)) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg) translateX(var(--orbit-r, 200px)) rotate(-360deg); }
}

.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--txt);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold), 0 0 22px rgba(255,224,66,0.7);
  animation: pulse 1.6s infinite;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 28px;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 500;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--txt-mute);
  max-width: 580px;
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  letter-spacing: -0.005em;
}
.btn-primary {
  color: #1a1200;
  font-weight: 600;
  background: var(--grad-2);
  box-shadow: 0 14px 36px rgba(255,224,66,0.32), 0 6px 20px rgba(177,76,255,0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(255,224,66,0.5), 0 10px 28px rgba(177,76,255,0.32); }
.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,0.04);
  border-color: var(--stroke);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--stroke-strong); }

.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--stroke);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-num {
  font-family: var(--display);
  font-size: 44px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-plus {
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  margin-left: 1px;
  text-shadow: 0 0 16px rgba(255,224,66,0.6);
}
.stat-label {
  font-size: 13px;
  color: var(--txt-mute);
  letter-spacing: 0.02em;
}

.trust-row {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt-dim);
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--txt);
  font-weight: 500;
}
.trust-logos > span { opacity: 0.85; }

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--txt-dim);
  text-transform: uppercase;
}
.sh-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.sh-line::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: scrollLine 2.4s infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text .lead {
  font-size: 21px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.about-text p {
  margin-bottom: 18px;
  color: var(--txt-mute);
}
.about-text strong {
  color: #fff;
  font-weight: 500;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cap-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  padding: 1px;
  background: var(--grad-2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
}
.cap-card:hover { transform: translateY(-3px); background: var(--surface-2); }
.cap-card:hover::before { opacity: 0.7; }
.cap-ico {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,224,66,0.12);
  border: 1px solid rgba(255,224,66,0.25);
  border-radius: 10px;
  color: var(--gold);
  margin-bottom: 14px;
  box-shadow: inset 0 0 12px rgba(255,224,66,0.18);
}
.cap-ico svg { width: 20px; height: 20px; }
.cap-card h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cap-card p {
  font-size: 13.5px;
  color: var(--txt-mute);
  line-height: 1.55;
}

/* ===== CEO ===== */
.ceo-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.ceo-card {
  position: sticky;
  top: 110px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  backdrop-filter: blur(10px);
}
.ceo-portrait {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #0a0d1c;
  aspect-ratio: 6 / 7;
  box-shadow: 0 18px 50px -20px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,224,66,0.08);
}
.ceo-portrait picture,
.ceo-portrait img {
  display: block;
  width: 100%;
  height: 100%;
}
.ceo-portrait img {
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}
.ceo-portrait:hover img { transform: scale(1.03); filter: saturate(1) contrast(1.05); }
.ceo-portrait-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 70% 0%, rgba(255,224,66,0.10), transparent 55%),
    linear-gradient(180deg, rgba(7,9,18,0) 55%, rgba(7,9,18,0.55) 100%),
    linear-gradient(135deg, rgba(177,76,255,0.10), transparent 60%);
  mix-blend-mode: screen;
}
.ceo-portrait-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(255,224,66,0.55));
}
.ceo-meta { padding: 18px 6px 8px; }
.ceo-id {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(255,224,66,0.3);
  border-radius: 100px;
  background: rgba(255,224,66,0.08);
  margin-bottom: 12px;
  text-shadow: 0 0 10px rgba(255,224,66,0.4);
}
.ceo-meta h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.ceo-byline {
  font-size: 13px;
  color: var(--txt-mute);
  margin-bottom: 14px;
}
.ceo-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 16px;
}
.ceo-tags span {
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  padding: 4px 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  color: var(--txt);
}
.ceo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  padding: 8px 12px;
  background: rgba(255,224,66,0.1);
  border: 1px solid rgba(255,224,66,0.28);
  border-radius: 100px;
  transition: background 0.2s;
}
.ceo-link:hover { background: rgba(255,224,66,0.18); }
.ceo-link svg { flex-shrink: 0; }

.ceo-bio .lead {
  font-size: 19px;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.timeline {
  list-style: none;
  position: relative;
  padding-left: 26px;
  border-left: 1px solid var(--stroke);
}
.tl-item {
  position: relative;
  padding-bottom: 28px;
  padding-right: 8px;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(255,224,66,0.1), 0 0 14px rgba(255,224,66,0.6);
}
.tl-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.tl-year {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,224,66,0.4);
}
.tl-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-mute);
  padding: 2px 8px;
  border: 1px solid var(--stroke);
  border-radius: 100px;
}
.tl-item h5 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.tl-item p {
  font-size: 14.5px;
  color: var(--txt-mute);
  line-height: 1.55;
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.proj-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.proj-card:hover {
  transform: translateY(-4px);
  border-color: var(--stroke-strong);
}
.proj-card.featured {
  background: linear-gradient(160deg, rgba(255,224,66,0.1), rgba(177,76,255,0.1) 60%, transparent);
  border-color: rgba(255,224,66,0.3);
  box-shadow: 0 24px 60px rgba(255,224,66,0.1);
}

.proj-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--stroke);
  display: grid;
  place-items: center;
}
.proj-vis-1 {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255,224,66,0.25), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(177,76,255,0.25), transparent 60%),
    #0a0d1c;
}
.proj-vis-2 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,224,66,0.28), transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(177,76,255,0.25), transparent 60%),
    #0a0d1c;
}
.proj-vis-3 {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,224,66,0.18), transparent 60%),
    #0a0d1c;
  align-items: center;
}
.proj-vis-3 svg { width: 100%; height: 100%; padding: 12px 8px; }

/* phone mock */
.phone {
  width: 110px; height: 200px;
  border-radius: 22px;
  background: linear-gradient(160deg, #1a2046, #0a0d1c);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0,229,255,0.25), 0 10px 30px rgba(177,76,255,0.18);
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 35%, #2a2510 0%, #050a18 80%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  gap: 6px;
}
.ring-glow {
  position: absolute;
  top: 30%; left: 50%;
  width: 70px; height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold), var(--magenta), var(--gold));
  filter: blur(2px);
  opacity: 0.8;
  animation: ringspin 4s linear infinite;
}
.ring-glow::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #0a0d1c;
}
@keyframes ringspin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.phone-stat {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.phone-label {
  font-size: 9px;
  color: var(--txt-mute);
  text-align: center;
  font-family: var(--mono);
  letter-spacing: 0.1em;
}
.phone-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
}
.phone-bar span {
  display: block;
  height: 100%;
  width: 64%;
  background: var(--grad-2);
  border-radius: 4px;
  animation: barPulse 3s ease-in-out infinite;
}
@keyframes barPulse {
  0%, 100% { width: 60%; }
  50% { width: 78%; }
}

/* HUD frame for XR project */
.hud-frame {
  position: relative;
  width: 220px; height: 180px;
}
.hud-ring {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  border: 1px dashed rgba(255,224,66,0.7);
  animation: spinR 12s linear infinite;
}
.hud-ring.r2 {
  inset: 14%;
  border-style: solid;
  border-color: rgba(177,76,255,0.45);
  animation: spinR 18s linear infinite reverse;
}
.hud-orb {
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #FFE042 30%, #B14CFF 85%);
  box-shadow: 0 0 30px rgba(255,224,66,0.65), 0 0 60px rgba(177,76,255,0.45);
}
.hud-corner {
  position: absolute;
  width: 20px; height: 20px;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 8px rgba(255,224,66,0.4);
}
.hud-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.hud-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.hud-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.hud-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }
.hud-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
}
.hud-label {
  color: var(--gold);
}
.hud-label.top { top: -2px; left: 28px; }
.hud-label.bot { bottom: -2px; right: 28px; color: var(--magenta); }

.proj-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.proj-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.proj-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--txt);
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  text-transform: uppercase;
}
.proj-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-mute);
}
.proj-status span {
  width: 7px; height: 7px;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
.proj-status.live span { background: var(--green); box-shadow: 0 0 10px var(--green); }
.proj-status.rd span { background: var(--amber); box-shadow: 0 0 10px var(--amber); }
.proj-status.active span { background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.proj-card h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.proj-body p {
  font-size: 14.5px;
  color: var(--txt-mute);
  line-height: 1.55;
}
.proj-features {
  list-style: none;
  display: grid;
  gap: 8px;
}
.proj-features li {
  font-size: 13px;
  color: var(--txt);
  padding-left: 18px;
  position: relative;
}
.proj-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(255,224,66,0.6);
}

.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--gold);
  margin-top: auto;
  padding-top: 4px;
  font-weight: 500;
  width: fit-content;
  text-shadow: 0 0 12px rgba(255,224,66,0.4);
}
.proj-link:hover { color: #fff; }
.proj-link svg { transition: transform 0.2s; }
.proj-link:hover svg { transform: translate(2px, -2px); }

/* ===== TECH ===== */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1px;
  background: var(--stroke);
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.tech-cell {
  background: var(--bg-2);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.25s;
  position: relative;
}
.tech-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,224,66,0.08), rgba(177,76,255,0.08));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.tech-cell:hover::after { opacity: 1; }
.tech-cell strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.tech-cell span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--txt-mute);
  letter-spacing: 0.04em;
}

/* ===== CONTACT ===== */
.section-contact { padding-bottom: 80px; }
.contact-card {
  background: linear-gradient(160deg, rgba(255,224,66,0.08), rgba(177,76,255,0.05) 50%, rgba(255,255,255,0.02));
  border: 1px solid var(--stroke-strong);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.contact-card::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,224,66,0.18), transparent 60%);
  top: -300px; right: -200px;
  pointer-events: none;
  filter: blur(40px);
}
.contact-text { position: relative; }
.contact-text h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 16px 0 18px;
}
.contact-text > p {
  font-size: 16px;
  color: var(--txt-mute);
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--stroke);
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--stroke);
  transition: padding 0.25s;
}
.contact-row:hover:not(.static) { padding-left: 8px; }
.cr-label {
  flex: 0 0 90px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt-dim);
}
.cr-value {
  flex: 1;
  font-size: 14.5px;
  color: var(--txt);
  font-weight: 500;
}
.contact-row svg {
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}
.contact-row:hover svg { opacity: 1; transform: translate(2px, -2px); }

/* company registry block */
.company-registry {
  margin-top: 28px;
  padding: 18px 20px 20px;
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(255,224,66,0.04), rgba(7,9,18,0.45));
  position: relative;
  overflow: hidden;
}
.company-registry::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(255,224,66,0.10), transparent 60%),
    radial-gradient(50% 70% at 0% 100%, rgba(177,76,255,0.08), transparent 60%);
  pointer-events: none;
}
.cr-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(255,224,66,0.4);
}
.cr-head .cr-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255,224,66,0.7);
}
.cr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0;
  position: relative;
}
.cr-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cr-item dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt-dim);
}
.cr-item dd {
  margin: 0;
  font-size: 14px;
  color: var(--txt);
  font-weight: 500;
  line-height: 1.45;
  word-wrap: break-word;
}
@media (max-width: 720px) {
  .cr-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* form */
.contact-form {
  background: rgba(7,9,18,0.55);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  z-index: 1;
}
.contact-form h3 {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.contact-form label {
  display: block;
  margin-bottom: 16px;
}
.contact-form label > span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--txt-mute);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  color: var(--txt);
  font-family: var(--body);
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--txt-dim); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,224,66,0.55);
  background: rgba(255,224,66,0.04);
  box-shadow: 0 0 0 4px rgba(255,224,66,0.1);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.cf-submit { width: 100%; justify-content: center; }
.cf-status {
  margin-top: 12px;
  min-height: 18px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 5;
  border-top: 1px solid var(--stroke);
  background: rgba(7,9,18,0.7);
  backdrop-filter: blur(10px);
  margin-top: 40px;
}
.foot-row {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-brand strong {
  display: block;
  font-family: var(--display);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.foot-brand span {
  display: block;
  font-size: 12px;
  color: var(--txt-mute);
  margin-top: 2px;
}
.foot-meta {
  font-size: 12px;
  color: var(--txt-mute);
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.foot-tape {
  border-top: 1px solid var(--stroke);
  overflow: hidden;
  padding: 16px 0;
  background: linear-gradient(90deg, rgba(255,224,66,0.05), rgba(177,76,255,0.04));
}
.tape-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  width: max-content;
  animation: tape 50s linear infinite;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}
.tape-track > span:nth-child(even) { color: var(--txt-dim); -webkit-text-fill-color: var(--txt-dim); }
@keyframes tape { to { transform: translateX(-50%); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero-orb { display: none; }
  .about-grid, .ceo-grid, .contact-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ceo-card { position: static; max-width: 360px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 740px) {
  .nav { margin-top: 40px; padding: 10px 12px 10px 14px; gap: 10px; }
  .nav-links { display: none; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .status-bar { font-size: 10px; padding: 8px 16px; }
  .sb-mute:not(#hud-clock) { display: none; }
  .section { padding: 90px var(--pad-x); }
  .hero { padding-top: 80px; min-height: 88vh; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 36px; }
  .capability-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 24px; }
}

@media (max-width: 480px) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .trust-logos { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #space-canvas { display: none; }
}
