:root {
  --bg:    #020408;
  --bg-2:  #0a0f1a;
  --bg-3:  rgba(0,229,255,0.04);
  --ink:   #e8f4fd;
  --ink-2: #7ba7c4;
  --ink-3: #1e3a4a;
  --line:  rgba(0,229,255,0.12);
  --line-2:rgba(0,229,255,0.22);
  --glass: rgba(2,8,20,0.80);
  --glass-bg: rgba(10,20,40,0.65);
  --glass-border: rgba(0,229,255,0.18);
  --accent:   #00e5ff;
  --accent-2: #00ff9f;
  --accent-3: #7c3aed;
  --danger: #ff3b30;
  --warn:   #ff9500;
  --shadow-card:  0 16px 40px rgba(0,0,0,0.6);
  --shadow-hover: 0 24px 48px rgba(0,229,255,0.12);
  --rad:    14px;
  --rad-lg: 32px;
  --maxw:   1200px;
  --neon-cyan:   #00e5ff;
  --neon-green:  #00ff9f;
  --neon-purple: #a78bfa;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.mono { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--ink-2); text-transform: uppercase; font-weight: 500; }
.display { font-weight: 600; letter-spacing: -0.04em; }
.container { width: min(100% - 48px, var(--maxw)); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  padding: 6px 14px; border-radius: 999px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 16px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 8px 8px 8px 20px;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.brand { font-weight: 600; font-size: 15px; letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, #0066cc, #00d2a8);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 150, 255, 0.5), 0 0 24px rgba(0, 210, 168, 0.2);
  flex-shrink: 0;
}
.brand-mark svg { display: block; }
.brand small { display: none; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 14px; color: var(--ink-2); transition: color 0.2s; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 20px; border-radius: 999px;
  background: var(--ink); color: var(--bg);
  font-weight: 500; font-size: 14px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-cta:hover { transform: scale(1.02); opacity: 0.9; }
.nav-secure { display: none; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 90vh; display: flex; align-items: center; justify-content: center;
  padding: 160px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.hero-bg { 
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; 
  background: var(--bg);
}
.hero-bg .orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; mix-blend-mode: screen; animation: floatOrb 20s infinite ease-in-out; }
.hero-bg .orb-1 { width: 600px; height: 600px; background: rgba(0, 100, 255, 0.65); top: -10%; left: -10%; animation-delay: 0s; }
.hero-bg .orb-2 { width: 500px; height: 500px; background: rgba(0, 210, 160, 0.55); bottom: -10%; right: -5%; animation-delay: -5s; }
.hero-bg .orb-3 { width: 400px; height: 400px; background: rgba(100, 50, 255, 0.5); top: 30%; left: 40%; animation-delay: -10s; }

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20%, 20%) scale(1.15); }
  66% { transform: translate(-15%, 15%) scale(0.9); }
}

.dot-wave-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
  pointer-events: none; opacity: 0.6;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
}

.network-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
  pointer-events: none; opacity: 0.8;
}

.floating-icons-container {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.floating-icon {
  position: absolute; bottom: -100px;
  opacity: 0.12; 
  filter: sepia(100%) hue-rotate(180deg) saturate(300%) brightness(1.2); /* Tint towards cyan/blue */
  animation: floatUp linear infinite;
  display: flex; align-items: center; justify-content: center;
}
@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  5% { opacity: 0.12; }
  95% { opacity: 0.12; }
  100% { transform: translateY(-120vh) rotate(calc(var(--rot) * 180deg)); opacity: 0; }
}

.hero-noise {
  position: absolute; inset: 0; z-index: 1; opacity: 0.03; mix-blend-mode: overlay; 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='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700; letter-spacing: -0.04em;
  line-height: 1.05; margin: 24px 0 16px;
  color: var(--ink);
}
.hero p.lead {
  max-width: 680px; margin: 0 auto;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--ink-2); line-height: 1.5; font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-top: 40px; }

.hero-terminal, .ticker, .float-geo, .hero-scan, .hero-grid { display: none; }

/* ─── BTN ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: 999px;
  font-weight: 500; font-size: 16px;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-primary {
  background: var(--ink); color: var(--bg);
}
.btn-primary:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.btn-ghost {
  background: var(--bg-2); color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-3); }

/* ─── SECTION ───────────────────────────────────────────────── */
section { padding: 120px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 { font-size: clamp(32px, 4vw, 56px); font-weight: 700; letter-spacing: -0.03em; margin: 16px 0; }
.section-head p { color: var(--ink-2); font-size: 18px; line-height: 1.5; margin: 0; }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-copy h3 { font-size: 32px; font-weight: 600; margin: 0 0 16px; letter-spacing: -0.02em; }
.about-copy p { color: var(--ink-2); font-size: 17px; line-height: 1.6; margin: 0 0 20px; }

.about-card {
  background: var(--glass-bg); border-radius: var(--rad-lg);
  border: 1px solid var(--glass-border); padding: 32px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
}
.about-card-header { display: none; }
.about-card .head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--bg-3); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 20px; }
.about-card .head h4 { margin: 0; font-size: 20px; font-weight: 600; }
.about-card .head .role { color: var(--ink-2); font-size: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip { padding: 6px 12px; border-radius: 999px; background: var(--bg-3); font-size: 12px; color: var(--ink-2); font-weight: 500; }
.cert-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.cert { padding: 16px; border-radius: var(--rad); background: var(--bg-3); }
.cert .k { font-size: 11px; color: var(--ink-2); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.cert .v { font-size: 14px; font-weight: 500; margin-top: 4px; display: block; }

/* ─── SERVICES ──────────────────────────────────────────────── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .svc-grid { grid-template-columns: 1fr; } }

.svc {
  background: var(--glass-bg); padding: 32px; border-radius: var(--rad-lg);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-card);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s, background 0.3s;
  position: relative; display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-hover); background: var(--bg-2); }
.svc-icon { 
  width: 56px; height: 56px; border-radius: 16px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; color: var(--ink); margin-bottom: 24px; font-size: 28px; 
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s;
  box-shadow: 
    0 10px 20px rgba(0, 191, 255, 0.15), 
    inset 0 2px 4px rgba(255, 255, 255, 0.9),
    inset 0 -4px 8px rgba(0, 0, 0, 0.05);
  transform-style: preserve-3d;
  border: 1px solid rgba(255,255,255,0.5);
}
.svc-icon span { filter: drop-shadow(0 6px 8px rgba(0,0,0,0.25)); }
.svc[data-cat="net"] .svc-icon { background: linear-gradient(135deg, rgba(41, 151, 255, 0.2), rgba(0, 191, 255, 0.4)); box-shadow: 0 10px 20px rgba(0, 191, 255, 0.25), inset 0 2px 4px rgba(255,255,255,0.9); }
.svc[data-cat="sec"] .svc-icon { background: linear-gradient(135deg, rgba(255, 59, 48, 0.2), rgba(255, 149, 0, 0.3)); box-shadow: 0 10px 20px rgba(255, 59, 48, 0.2), inset 0 2px 4px rgba(255,255,255,0.9); }
.svc[data-cat="inf"] .svc-icon { background: linear-gradient(135deg, rgba(175, 82, 222, 0.2), rgba(88, 86, 214, 0.3)); box-shadow: 0 10px 20px rgba(175, 82, 222, 0.2), inset 0 2px 4px rgba(255,255,255,0.9); }
.svc[data-cat="ops"] .svc-icon { background: linear-gradient(135deg, rgba(52, 199, 89, 0.2), rgba(0, 199, 190, 0.3)); box-shadow: 0 10px 20px rgba(52, 199, 89, 0.2), inset 0 2px 4px rgba(255,255,255,0.9); }
.svc:hover .svc-icon { transform: scale(1.15) translateY(-8px) rotateY(15deg) rotateX(10deg); }
.svc h4 { margin: 0 0 8px; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.svc p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.svc .num { position: absolute; top: 32px; right: 32px; font-size: 13px; color: var(--ink-3); font-weight: 500; }
.svc .arrow { margin-top: auto; padding-top: 24px; color: var(--ink-3); transition: color 0.2s, transform 0.2s; }
.svc:hover .arrow { color: var(--ink); transform: translateX(4px); }

/* ─── TECH ──────────────────────────────────────────────────── */
.marquee { overflow: hidden; padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll 40s linear infinite; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tech-pill { font-size: 24px; font-weight: 600; color: var(--ink-3); letter-spacing: -0.02em; display: flex; align-items: center; gap: 12px; transition: color 0.3s; }
.tech-pill:hover { color: var(--ink); }

/* ─── PROJECTS ──────────────────────────────────────────────── */
.proj-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
@media (max-width: 900px) { .proj-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .proj-grid { grid-template-columns: 1fr; } }

.proj {
  background: var(--glass-bg); border-radius: var(--rad-lg);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-card);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.proj:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-hover); }
.proj.span-4 { grid-column: span 4; }
.proj.span-3 { grid-column: span 3; }
.proj.span-2 { grid-column: span 2; }
@media (max-width: 900px) { .proj.span-4, .proj.span-3, .proj.span-2 { grid-column: span 2; } }
@media (max-width: 600px) { .proj.span-4, .proj.span-3, .proj.span-2 { grid-column: span 1; } }

.proj .viz { flex: 1; min-height: 240px; display: flex; align-items: center; justify-content: center; font-size: 64px; }
.proj:nth-child(1n) .viz { background: linear-gradient(135deg, rgba(41, 151, 255, 0.1), rgba(94, 92, 230, 0.1)); }
.proj:nth-child(2n) .viz { background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 59, 48, 0.1)); }
.proj:nth-child(3n) .viz { background: linear-gradient(135deg, rgba(52, 199, 89, 0.1), rgba(0, 199, 190, 0.1)); }
.proj .body { padding: 24px; }
.proj .body .kicker { font-size: 12px; font-weight: 600; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.05em; }
.proj .body h4 { margin: 8px 0; font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.proj .body p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.5; }

/* ─── STATS ─────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .stats { grid-template-columns: 1fr 1fr; } }
.stat {
  background: var(--glass-bg); padding: 40px 32px; border-radius: var(--rad-lg);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-card);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
  text-align: center;
}
.stat .v { font-size: 56px; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); display: flex; align-items: baseline; justify-content: center; line-height: 1; }
.stat .v small { font-size: 24px; margin-left: 4px; color: var(--ink-2); }
.stat .l { margin-top: 16px; font-size: 14px; color: var(--ink-2); font-weight: 500; }

/* ─── CONTACT ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card, .info-card {
  background: var(--glass-bg); border-radius: var(--rad-lg);
  border: 1px solid var(--glass-border); padding: 40px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(40px) saturate(150%);
  -webkit-backdrop-filter: blur(40px) saturate(150%);
}
.form-card h3, .info-card h3 { font-size: 28px; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.02em; }
.form-card > p, .info-card > p { color: var(--ink-2); font-size: 16px; margin: 0 0 32px; }

.field { position: relative; margin-bottom: 20px; }
.field label {
  position: absolute; left: 16px; top: 18px;
  font-size: 15px; color: var(--ink-2); pointer-events: none;
  transition: transform 0.2s, font-size 0.2s; transform-origin: left top;
}
.field input, .field textarea, .field select {
  width: 100%; padding: 28px 16px 12px;
  background: var(--bg-3); border: 1px solid transparent;
  border-radius: 12px; font-family: inherit; font-size: 16px; color: var(--ink);
  transition: border-color 0.2s, background 0.2s; outline: none;
}
.field input:focus, .field textarea:focus { background: var(--bg-2); border-color: var(--ink); }
.field input:focus + label, .field textarea:focus + label, .field.filled label { transform: translateY(-8px) scale(0.75); color: var(--ink); }

.info-row { display: flex; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-3); display: flex; align-items: center; justify-content: center; color: var(--ink); flex: none; }
.info-row .v { font-size: 16px; font-weight: 500; display: block; margin-top: 4px; }
.info-row .k { font-size: 12px; color: var(--ink-2); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── FOOTER ────────────────────────────────────────────────── */
footer { padding: 80px 0 40px; margin-top: 80px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-grid h5 { font-size: 12px; font-weight: 600; color: var(--ink); text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 20px; }
.foot-grid a { display: block; color: var(--ink-2); font-size: 15px; margin-bottom: 12px; transition: color 0.2s; }
.foot-grid a:hover { color: var(--ink); }
.foot-brand p { color: var(--ink-2); font-size: 15px; line-height: 1.5; max-width: 300px; margin: 16px 0 0; }
.social { display: flex; gap: 12px; margin-top: 24px; }
.social a { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-3); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: background 0.2s, transform 0.2s; }
.social a:hover { background: var(--line-2); transform: scale(1.05); }

.foot-bottom { margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--ink-2); }

/* ─── REVEAL ────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════
   CURSOR
═══════════════════════════════════════════════ */
#cursor {
  pointer-events: none;
  position: fixed; z-index: 9998;
  width: 28px; height: 28px;
  border: 2px solid rgba(0, 160, 255, 0.75);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s cubic-bezier(0.2,0.8,0.2,1),
    height 0.3s cubic-bezier(0.2,0.8,0.2,1),
    border-color 0.3s, background 0.3s;
  will-change: transform;
}
#cursor.dot {
  width: 60px; height: 60px;
  border-color: rgba(0, 212, 255, 0.9);
  background: rgba(0, 150, 255, 0.06);
}
@media (pointer: coarse) { #cursor { display: none !important; } }

/* ═══════════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════════ */
.scroll-progress-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #0066ff, #00d4ff, #00e5aa, #0066ff);
  background-size: 300% 100%;
  animation: gradientFlow 3s linear infinite;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 9999;
  box-shadow: 0 0 14px rgba(0, 180, 255, 0.7);
}
@keyframes gradientFlow {
  0%   { background-position: 0%   50%; }
  100% { background-position: 300% 50%; }
}

/* ═══════════════════════════════════════════════
   GRADIENT TEXT
═══════════════════════════════════════════════ */
.grad-text {
  background: linear-gradient(135deg, #1a8cff 0%, #00d4ff 45%, #00e5aa 85%, #1a8cff 100%);
  background-size: 250% 250%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

/* ═══════════════════════════════════════════════
   FAB (WHATSAPP BUTTON)
═══════════════════════════════════════════════ */
.fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px 14px 14px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}
.fab:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 16px 48px rgba(37, 211, 102, 0.6);
}
.fab .pulse {
  position: absolute; inset: -6px; border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: fabPulse 2.5s ease-out infinite;
  pointer-events: none;
}
.fab .ring {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center; flex: none;
}
@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0;   }
}

/* ═══════════════════════════════════════════════
   STAT CARDS
═══════════════════════════════════════════════ */
.stat { position: relative; overflow: hidden; }
.stat::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #0066ff, #00d4ff);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.6s cubic-bezier(0.2,0.8,0.2,1) 0.4s;
}
.stat.in-view::after { transform: scaleX(1); }
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 102, 255, 0.14);
  transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.3s;
}
.corner {
  position: absolute; top: 20px; right: 20px;
  font-size: 10px; font-weight: 600; color: var(--ink-3);
  font-family: "JetBrains Mono", monospace; letter-spacing: 0.08em;
}
.stat-bar {
  height: 3px; background: var(--bg-3); border-radius: 2px;
  margin-top: 20px; overflow: hidden;
}
.stat-bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, #0066ff, #00d4ff);
  width: 0;
}

/* ═══════════════════════════════════════════════
   MAP (CONTACT)
═══════════════════════════════════════════════ */
.map {
  position: relative; margin-top: 32px; border-radius: var(--rad);
  overflow: hidden; background: var(--bg-3); height: 190px;
  border: 1px solid var(--line);
}
.map svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.map .pin {
  position: absolute; bottom: 44%; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: #2997ff;
  box-shadow: 0 0 0 5px rgba(41, 151, 255, 0.25);
}
.map .pin::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(41, 151, 255, 0.4);
  animation: pingPulse 1.8s ease-out infinite;
}
@keyframes pingPulse {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: 0.8; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0;   }
}
.map .label {
  position: absolute; bottom: 14px; left: 50%;
  transform: translateX(-50%);
  font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--ink-2); font-family: "JetBrains Mono", monospace; white-space: nowrap;
}

/* ═══════════════════════════════════════════════
   FORM
═══════════════════════════════════════════════ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.submit-row {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: 8px; gap: 16px;
  flex-wrap: wrap;
}
.note {
  font-size: 11px; font-family: "JetBrains Mono", monospace;
  color: var(--ink-2); letter-spacing: 0.04em;
}
.note.ok { color: #34c759; }

/* ═══════════════════════════════════════════════
   FOOTER STATUS
═══════════════════════════════════════════════ */
.foot-status {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.06em; color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
}
.foot-status::before {
  content: '';
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #34c759; box-shadow: 0 0 8px rgba(52, 199, 89, 0.6);
  animation: statusBlink 2s ease-in-out infinite;
}
@keyframes statusBlink {
  0%, 100% { opacity: 1;    }
  50%       { opacity: 0.35; }
}

/* ═══════════════════════════════════════════════
   SERVICE CARD — SPOTLIGHT + CATEGORY BORDER
═══════════════════════════════════════════════ */
.svc { --mx: 50%; --my: 50%; }
.svc::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(
    circle at var(--mx) var(--my),
    rgba(0, 212, 255, 0.09) 0%,
    transparent 65%
  );
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}
.svc:hover::before { opacity: 1; }
.svc > * { position: relative; z-index: 1; }

.svc[data-cat="net"] { border-top: 3px solid rgba(0,  150, 255, 0.6); }
.svc[data-cat="sec"] { border-top: 3px solid rgba(255, 59, 48,  0.6); }
.svc[data-cat="inf"] { border-top: 3px solid rgba(175, 82, 222, 0.6); }
.svc[data-cat="ops"] { border-top: 3px solid rgba(52, 199, 89,  0.6); }

/* SVG icon colors per category */
.svc[data-cat="net"] .svc-icon { color: #0099ff; }
.svc[data-cat="sec"] .svc-icon { color: #ff4040; }
.svc[data-cat="inf"] .svc-icon { color: #aa55ff; }
.svc[data-cat="ops"] .svc-icon { color: #00dd88; }

/* Larger icon area for SVG */
.svc-icon svg { width: 24px; height: 24px; }

/* ═══════════════════════════════════════════════
   ENHANCED BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, #0a6ef5, #0099ff);
  color: white !important;
  border: 1px solid rgba(255,255,255,0.18);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 110, 255, 0.35);
}
.btn-primary::after {
  content: '';
  position: absolute; top: -50%; left: -120%; width: 60%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}
.btn-primary:hover::after { left: 160%; }
.btn-primary:hover {
  box-shadow: 0 8px 36px rgba(0, 110, 255, 0.55) !important;
  transform: translateY(-2px) scale(1.02) !important;
}

/* ═══════════════════════════════════════════════
   PROJECT CARD GLOW
═══════════════════════════════════════════════ */
.proj:hover {
  box-shadow:
    0 24px 64px rgba(0, 100, 255, 0.14),
    0 0 0 1px rgba(0, 180, 255, 0.18);
}

/* ═══════════════════════════════════════════════
   ABOUT CARD HEADER (SHOW IT)
═══════════════════════════════════════════════ */
.about-card-header {
  display: flex !important;
  align-items: center; gap: 8px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.about-card-header .dots { display: flex; gap: 6px; }
.about-card-header .dots span { width: 12px; height: 12px; border-radius: 50%; }
.about-card-header .dots .r { background: #ff5f57; }
.about-card-header .dots .y { background: #febc2e; }
.about-card-header .dots .g { background: #28c840; }
.about-card-header .title {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; color: var(--ink-2); letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   NAV SCROLLED STATE
═══════════════════════════════════════════════ */
.nav.scrolled .nav-inner {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
  border-color: rgba(0, 150, 255, 0.28);
  background: var(--glass);
}

/* ═══════════════════════════════════════════════
   EYEBROW LIVE DOT
═══════════════════════════════════════════════ */
.eyebrow::before {
  content: '';
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, #0066ff, #00d4ff);
  margin-right: 6px; vertical-align: middle; flex: none;
  animation: eyebrowPulse 2.2s ease-in-out infinite;
}
@keyframes eyebrowPulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(0,150,255,0.5); }
  50%       { box-shadow: 0 0 0 5px rgba(0,150,255,0);   }
}

/* ═══════════════════════════════════════════════
   TECH PILL DOT
═══════════════════════════════════════════════ */
.tech-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3); flex: none; }

/* ═══════════════════════════════════════════════
   SECTION BACKGROUND GRID ACCENT
═══════════════════════════════════════════════ */
#nosotros, #proyectos {
  background-image: radial-gradient(circle, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 28px 28px;
}
/* dark is always active — no media query needed */

/* ═══════════════════════════════════════════════
   SECTION HEAD ACCENT LINE
═══════════════════════════════════════════════ */
.section-head .mono {
  display: inline-flex; align-items: center; gap: 8px;
}
.section-head .mono::before {
  content: '';
  display: inline-block; width: 20px; height: 2px;
  background: linear-gradient(90deg, #0066ff, #00d4ff);
  border-radius: 1px; flex: none;
}

/* ═══════════════════════════════════════════════
   REVEAL — GSAP OPTIMIZED
═══════════════════════════════════════════════ */
.reveal { will-change: opacity, transform; }

/* ═══════════════════════════════════════════════
   HERO — ENHANCED
═══════════════════════════════════════════════ */
.hero h1 { position: relative; }
.hero-ctas .btn-primary { font-size: 17px; padding: 18px 36px; }
.hero-ctas .btn-ghost   { font-size: 17px; padding: 18px 32px; }

/* orbs defined above — always dark */

/* ═══════════════════════════════════════════════
   CYBER / NEON ENHANCEMENTS
═══════════════════════════════════════════════ */

/* Neon glow en texto del hero */
.grad-text {
  background: linear-gradient(90deg, #00aaff, #00ffd5, #7b61ff, #00aaff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* Eyebrow con borde neon */
.eyebrow {
  border-color: rgba(0, 170, 255, 0.35);
  box-shadow: 0 0 14px rgba(0, 170, 255, 0.12);
  color: #62d4ff;
}

/* Cards de servicio — borde neon al hover */
.svc {
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.svc:hover {
  border-color: rgba(0, 170, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(0, 170, 255, 0.15), 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 100, 255, 0.08);
  transform: translateY(-4px);
}

/* Nav — glow en el CTA */
.nav-cta {
  background: linear-gradient(135deg, #0066cc, #00d2a8);
  color: #fff;
  box-shadow: 0 0 16px rgba(0, 150, 255, 0.35);
}
.nav-cta:hover {
  opacity: 1;
  box-shadow: 0 0 24px rgba(0, 210, 168, 0.5);
}

/* Línea de progreso de scroll — neon */
.scroll-progress-bar {
  background: linear-gradient(90deg, #0066ff, #00d4ff, #7b61ff) !important;
  box-shadow: 0 0 8px rgba(0, 210, 255, 0.6);
}

/* Sección head — número de sección con glow */
.section-head .mono { color: #00aaff; }

/* Botón primario — gradiente neon */
.btn-primary {
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  box-shadow: 0 4px 20px rgba(0, 120, 255, 0.35);
  border: none;
}
.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(0, 180, 255, 0.5);
  transform: translateY(-2px);
}

/* FAB WhatsApp — neon verde */
.fab {
  box-shadow: 0 4px 20px rgba(0, 210, 100, 0.4);
}

/* Chips de tecnología — borde sutil neon */
.chip {
  border: 1px solid rgba(0,170,255,0.15);
  transition: border-color 0.2s, color 0.2s;
}
.chip:hover { border-color: rgba(0,170,255,0.45); color: #62d4ff; }

/* Social icons — glow al hover */
.social a {
  transition: color 0.2s, filter 0.2s;
}
.social a:hover {
  color: #00d4ff;
  filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.7));
}

/* Brand mark nav hover */
.brand:hover .brand-mark {
  box-shadow: 0 0 18px rgba(0, 150, 255, 0.7), 0 0 32px rgba(0, 210, 168, 0.3);
}

/* ═══════════════════════════════════════════════
   MATRIX RAIN CANVAS
═══════════════════════════════════════════════ */
.matrix-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.18;
}

/* ═══════════════════════════════════════════════
   SCANLINES OVERLAY
═══════════════════════════════════════════════ */
.scanlines {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 229, 255, 0.015) 2px,
    rgba(0, 229, 255, 0.015) 4px
  );
  animation: scanMove 8s linear infinite;
}
@keyframes scanMove {
  0%   { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

/* ═══════════════════════════════════════════════
   GLITCH TITLE
═══════════════════════════════════════════════ */
.glitch-title {
  position: relative;
}
.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute; left: 0; width: 100%;
  font-size: inherit; font-weight: inherit; letter-spacing: inherit;
  line-height: inherit;
  overflow: hidden;
}
.glitch-title::before {
  top: 0; color: #00e5ff;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  animation: glitch-top 3.5s infinite linear;
  opacity: 0;
}
.glitch-title::after {
  top: 0; color: #ff2d78;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  animation: glitch-bot 4.2s infinite linear;
  opacity: 0;
}
@keyframes glitch-top {
  0%,89%,100% { opacity:0; transform: translate(0); }
  90%         { opacity:0.8; transform: translate(-3px, -2px); }
  92%         { opacity:0.8; transform: translate(3px, 2px); }
  94%         { opacity:0; }
}
@keyframes glitch-bot {
  0%,91%,100% { opacity:0; transform: translate(0); }
  92%         { opacity:0.7; transform: translate(3px, 1px); }
  94%         { opacity:0.7; transform: translate(-3px, -1px); }
  96%         { opacity:0; }
}

/* ═══════════════════════════════════════════════
   TERMINAL PROMPT / TYPEWRITER
═══════════════════════════════════════════════ */
.terminal-prompt {
  font-family: "JetBrains Mono", monospace !important;
  font-size: 12px !important;
  color: var(--neon-green) !important;
  border-color: rgba(0,255,159,0.3) !important;
  background: rgba(0,255,159,0.06) !important;
  box-shadow: 0 0 12px rgba(0,255,159,0.15) !important;
  letter-spacing: 0.1em;
}
.prompt-gt { color: var(--neon-cyan); margin-right: 4px; }

.hero-typewriter {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--neon-cyan);
  margin: 20px 0 18px;
  height: 1.6em;
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.tw-prefix { color: var(--ink-2); opacity: 0.6; }
.tw-text   { color: var(--neon-cyan); }
.tw-cursor {
  color: var(--neon-cyan);
  animation: blink 0.85s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ═══════════════════════════════════════════════
   HERO STATS BAR
═══════════════════════════════════════════════ */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; margin-top: 36px;
  padding: 16px 32px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  width: fit-content; margin-inline: auto;
}
.hstat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hstat-n { font-family: "JetBrains Mono", monospace; font-size: 22px; font-weight: 700; line-height: 1; }
.hstat-l { font-size: 11px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.08em; }
.hstat-div { width: 1px; height: 36px; background: var(--line); }
.neon-cyan   { color: var(--neon-cyan);   text-shadow: 0 0 20px rgba(0,229,255,0.7); }
.neon-green  { color: var(--neon-green);  text-shadow: 0 0 20px rgba(0,255,159,0.7); }
.neon-purple { color: var(--neon-purple); text-shadow: 0 0 20px rgba(167,139,250,0.7); }
.neon-text { text-shadow: 0 0 30px rgba(0,229,255,0.5); }

/* ═══════════════════════════════════════════════
   HERO BUTTONS NEON
═══════════════════════════════════════════════ */
.btn-glow {
  background: transparent !important;
  border: 1.5px solid var(--neon-cyan);
  color: var(--neon-cyan) !important;
  box-shadow: 0 0 14px rgba(0,229,255,0.3), inset 0 0 14px rgba(0,229,255,0.05);
  position: relative; overflow: hidden;
}
.btn-glow::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(0,255,159,0.1));
  opacity: 0; transition: opacity 0.3s;
}
.btn-glow:hover::before { opacity: 1; }
.btn-glow:hover {
  box-shadow: 0 0 28px rgba(0,229,255,0.6), 0 0 60px rgba(0,229,255,0.15);
  transform: translateY(-2px);
}
.btn-ghost-cyber {
  border-color: rgba(167,139,250,0.4) !important;
  color: var(--neon-purple) !important;
}
.btn-ghost-cyber:hover {
  border-color: var(--neon-purple) !important;
  box-shadow: 0 0 20px rgba(167,139,250,0.3) !important;
  background: rgba(167,139,250,0.07) !important;
}

/* ═══════════════════════════════════════════════
   LEAD PARAGRAPH spacing fix
═══════════════════════════════════════════════ */
.d2b { animation-delay: 0.26s; }

/* ═══════════════════════════════════════════════
   CARDS CON BORDE NEON ANIMADO
═══════════════════════════════════════════════ */
.svc {
  border: 1px solid var(--line);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.04) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.svc:hover::before { opacity: 1; }
.svc:hover {
  border-color: rgba(0,229,255,0.45);
  box-shadow: 0 0 0 1px rgba(0,229,255,0.1), 0 20px 48px rgba(0,0,0,0.6), 0 0 40px rgba(0,229,255,0.06);
}

/* ═══════════════════════════════════════════════
   NAV ACTUALIZADO
═══════════════════════════════════════════════ */
.nav-inner {
  border-color: var(--line) !important;
  box-shadow: 0 8px 32px rgba(0,229,255,0.05), 0 0 0 1px rgba(0,229,255,0.06) !important;
}
.nav-links a:hover { color: var(--neon-cyan) !important; }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--neon-cyan) !important;
  color: var(--neon-cyan) !important;
  box-shadow: 0 0 12px rgba(0,229,255,0.25) !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: rgba(0,229,255,0.1) !important;
  box-shadow: 0 0 22px rgba(0,229,255,0.5) !important;
  transform: none !important; opacity: 1 !important;
}

/* ═══════════════════════════════════════════════
   SECTION TITLES NEON ACCENT
═══════════════════════════════════════════════ */
.section-head h2 {
  background: linear-gradient(135deg, var(--ink) 60%, var(--neon-cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-head .mono { color: var(--neon-cyan); letter-spacing: 0.12em; }

/* ═══════════════════════════════════════════════
   EYEBROW BASE DARK
═══════════════════════════════════════════════ */
.eyebrow {
  background: rgba(0,229,255,0.06) !important;
  border-color: rgba(0,229,255,0.25) !important;
  color: var(--neon-cyan) !important;
}

/* ═══════════════════════════════════════════════
   ORBS — NEON PALETTE
═══════════════════════════════════════════════ */
.orb-1 { background: rgba(0,100,255,0.5) !important; }
.orb-2 { background: rgba(0,210,130,0.4) !important; }
.orb-3 { background: rgba(100,0,255,0.35) !important; }

/* ═══════════════════════════════════════════════
   SCROLL PROGRESS NEON
═══════════════════════════════════════════════ */
.scroll-progress-bar {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green), var(--neon-purple)) !important;
  box-shadow: 0 0 10px rgba(0,229,255,0.6) !important;
}


/* ═══════════════════════════════════════════════
   GLOBE HOLOGRAM
═══════════════════════════════════════════════ */
.holo-wrap {
  position: relative;
  width: 100%; max-width: 380px;
  height: 460px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}

/* Dot grid background */
.holo-dot-grid {
  position: absolute; inset: 0; border-radius: 20px;
  background-image: radial-gradient(circle, rgba(0,229,255,0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  background-color: rgba(0,10,30,0.6);
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 20px;
}

.holo-canvas {
  position: relative; z-index: 2;
  display: block; margin-bottom: 20px;
}

/* Platform rings */
.holo-platform {
  position: absolute; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.holo-ring {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1.5px solid;
  animation: ringPulse 3s ease-in-out infinite;
}
.holo-r1 { width: 100px; height: 28px; border-color: rgba(0,229,255,0.7); animation-delay: 0s; }
.holo-r2 { width: 150px; height: 42px; border-color: rgba(0,229,255,0.4); top: -7px; animation-delay: 0.4s; }
.holo-r3 { width: 200px; height: 56px; border-color: rgba(0,229,255,0.2); top: -14px; animation-delay: 0.8s; }
@keyframes ringPulse {
  0%,100% { opacity: 0.6; }
  50%      { opacity: 1; box-shadow: 0 0 16px rgba(0,229,255,0.4); }
}

.holo-beam {
  position: absolute; left: 50%; top: -280px;
  transform: translateX(-50%);
  width: 200px; height: 280px;
  background: linear-gradient(to top, rgba(0,229,255,0.12), transparent);
  clip-path: polygon(30% 100%, 70% 100%, 100% 0%, 0% 0%);
  pointer-events: none;
}

/* Info cards */
.holo-card {
  position: absolute; z-index: 3;
  padding: 8px 12px; border-radius: 10px;
  background: rgba(0,10,30,0.85);
  border: 1px solid rgba(0,229,255,0.3);
  backdrop-filter: blur(8px);
  min-width: 110px;
  box-shadow: 0 0 16px rgba(0,229,255,0.1);
}
.holo-card::after {
  content: ''; position: absolute;
  width: 24px; height: 1px;
  background: rgba(0,229,255,0.5);
}
.holo-tl { top: 60px;  left: -10px;  }
.holo-tl::after { right: -24px; top: 50%; }
.holo-tr { top: 60px;  right: -10px; }
.holo-tr::after { left: -24px; top: 50%; }
.holo-bl { bottom: 90px; left: -10px;  }
.holo-bl::after { right: -24px; top: 50%; }
.holo-br { bottom: 90px; right: -10px; }
.holo-br::after { left: -24px; top: 50%; }

.holo-card-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px; font-weight: 600;
  color: var(--ink-2); text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 2px;
}
.holo-card-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 16px; font-weight: 700; line-height: 1;
}
.holo-card-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  margin-top: 4px;
  animation: blinkDot 1.5s ease-in-out infinite;
}
@keyframes blinkDot { 0%,100%{opacity:1} 50%{opacity:0.3} }

.holo-id {
  position: absolute; bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px; color: rgba(0,229,255,0.4);
  letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; z-index: 3;
}

/* About grid adjustment */
.about-grid { align-items: center; }
