/* ----- reset & base ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #0b0d10;
  --panel: rgba(10, 15, 25, 0.6);
  --panel2: rgba(20, 25, 35, 0.65);
  --cyan: #00ffff;
  --magenta: #ff00ff;
  --text: #e0e0e0;
  --muted: #a8a8a8;
  --borderC: rgba(0, 255, 255, 0.22);
  --borderM: rgba(255, 0, 255, 0.22);
  --shadowC: 0 0 22px rgba(0, 255, 255, 0.22);
  --shadowM: 0 0 22px rgba(255, 0, 255, 0.18);
  --radius: 22px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
}
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1d23; }
::-webkit-scrollbar-thumb { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); border-radius: 4px; }

/* ----- moving light (follows mouse/finger) ----- */
.light-orb {
  position: fixed;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(0, 255, 255, 0.25) 0%, rgba(255, 0, 255, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.03s ease;
  filter: blur(40px);
  mix-blend-mode: screen;
}
.bg-glow {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 12% 12%, rgba(0, 255, 255, 0.12), transparent 60%),
    radial-gradient(900px 600px at 88% 20%, rgba(255, 0, 255, 0.10), transparent 60%);
  filter: blur(2px);
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAV ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(10, 12, 18, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.18);
  box-shadow: 0 0 22px rgba(0, 255, 255, 0.18);
  isolation: isolate;
}
.navbar-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 255, 255, 0.25) 0%, rgba(255, 0, 255, 0.15) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transition: background 0.05s ease;
  mix-blend-mode: screen;
}
.nav-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0.85rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--text);
  min-width: 210px;
}
.brand-logo-img {
  width: 38px; height: 38px; border-radius: 12px; object-fit: cover;
  border: 1px solid rgba(0, 255, 255, 0.4); box-shadow: 0 0 18px rgba(0, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.2); display: block;
  cursor: pointer;
}
.brand-name {
  font-family: 'Space Mono', monospace; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 700; font-size: 0.98rem; white-space: nowrap;
}
.brand-sub { font-size: 0.85rem; color: #9aa3ad; margin-top: -2px; white-space: nowrap; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.25rem; }
.nav-link {
  position: relative; color: #cfcfcf; text-decoration: none; font-family: 'Space Mono', monospace;
  font-size: 0.92rem; letter-spacing: 1px; text-transform: uppercase; padding: 0.45rem 0.25rem;
  transition: color 0.25s ease; white-space: nowrap;
}
.nav-link::before {
  content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 18px var(--cyan); opacity: 0; transition: opacity 0.2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--cyan); text-shadow: 0 0 8px rgba(0, 255, 255, 0.55); }
.nav-link:hover::before, .nav-link.active::before { opacity: 1; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.65rem 1.1rem;
  border-radius: 999px; border: 1px solid rgba(255, 0, 255, 0.55); color: var(--magenta);
  font-family: 'Space Mono', monospace; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem;
  text-decoration: none; box-shadow: 0 0 16px rgba(255, 0, 255, 0.22), inset 0 0 10px rgba(255, 0, 255, 0.14);
  transition: 0.25s; white-space: nowrap;
}
.nav-cta:hover { background: rgba(255, 0, 255, 0.12); transform: translateY(-1px); box-shadow: 0 0 22px rgba(255, 0, 255, 0.33), inset 0 0 14px rgba(255, 0, 255, 0.16); }
.hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(0, 255, 255, 0.24); background: rgba(0, 255, 255, 0.06); color: var(--cyan); box-shadow: 0 0 14px rgba(0, 255, 255, 0.18); cursor: pointer; align-items: center; justify-content: center; font-size: 1.2rem; }
.mobile-menu { display: none; border-top: 1px solid rgba(0, 255, 255, 0.14); background: rgba(10, 12, 18, 0.88); backdrop-filter: blur(14px); padding: 0.75rem 1.25rem 1rem; position: relative; z-index: 2; }
.mobile-menu a { display: block; padding: 0.9rem 0.25rem; border-bottom: 1px dashed rgba(0, 255, 255, 0.14); }
.mobile-menu a:last-child { border-bottom: none; }
@media (max-width: 960px) { .nav-links, .nav-cta { display: none; } .hamburger { display: flex; } .mobile-menu.open { display: block; } .brand { min-width: 0; } .brand-sub { display: none; } }

/* ===== smoky cursor canvas ===== */
.smoky-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35; /* Reduced intensity by ~65% to improve readability */
  transform: scaleX(0.7); /* Reduced width by 30% to make effect thinner */
  transform-origin: center center;
}

/* ===== page shell ===== */
.page-shell { padding-top: 88px; padding-bottom: 3rem; min-height: 100vh; position: relative; z-index: 1; }
.page { padding: 4.25rem 0; }
@media (max-width: 700px) { .page { padding: 3.25rem 0; } .container { padding: 0 1.25rem; } }

/* animations */
.animate-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity 0.75s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.75s cubic-bezier(0.2, 0.9, 0.3, 1); will-change: opacity, transform; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.slide-left { transform: translateX(-26px); } .slide-left.visible { transform: translateX(0); }
.slide-right { transform: translateX(26px); } .slide-right.visible { transform: translateX(0); }

.kicker { color: var(--magenta); font-family: 'Space Mono', monospace; font-size: 1.02rem; letter-spacing: 0.6px; text-transform: uppercase; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 0.35rem; margin-bottom: 0.95rem; text-transform: uppercase; letter-spacing: 3px; font-family: 'Space Mono', monospace; }
.muted { color: var(--muted); }
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.35), transparent); margin: 2rem 0 1.25rem; }
.neon-btn { display: inline-block; padding: 0.9rem 2.1rem; background: transparent; color: var(--cyan); border: 2px solid var(--cyan); border-radius: 999px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; text-decoration: none; font-size: 0.88rem; cursor: pointer; transition: all 0.25s ease; box-shadow: 0 0 10px rgba(0, 255, 255, 0.8), inset 0 0 6px rgba(0, 255, 255, 0.65); white-space: nowrap; }
.neon-btn:hover { background: var(--cyan); color: #0b0d10; box-shadow: 0 0 20px rgba(0, 255, 255, 0.9), 0 0 40px rgba(0, 255, 255, 0.6), inset 0 0 10px rgba(255, 255, 255, 0.9); transform: translateY(-1px) scale(1.02); }
.neon-btn-magenta { border-color: var(--magenta); color: var(--magenta); box-shadow: 0 0 10px rgba(255, 0, 255, 0.8), inset 0 0 6px rgba(255, 0, 255, 0.65); }
.neon-btn-magenta:hover { background: var(--magenta); color: #0b0d10; box-shadow: 0 0 20px rgba(255, 0, 255, 0.9), 0 0 40px rgba(255, 0, 255, 0.6); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 1.75rem; }
.card { background: var(--panel2); backdrop-filter: blur(10px); border: 1px solid var(--borderC); border-radius: var(--radius); padding: 1.4rem 1.25rem; transition: 0.28s ease; box-shadow: var(--shadowC); position: relative; overflow: hidden; }
.card::after { content: ''; position: absolute; inset: -1px; background: radial-gradient(300px 140px at 20% 0%, rgba(0, 255, 255, 0.18), transparent 60%); opacity: 0.8; pointer-events: none; }
.card:hover { border-color: rgba(0, 255, 255, 0.55); transform: translateY(-6px); box-shadow: 0 0 30px rgba(0, 255, 255, 0.45); }
.card-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 0.55rem; background: linear-gradient(135deg, #fff, rgba(0, 255, 255, 0.95)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.tag-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.9rem; position: relative; z-index: 1; }
.tag { background: rgba(0, 255, 255, 0.12); border: 1px solid rgba(0, 255, 255, 0.50); color: var(--cyan); padding: 0.2rem 0.85rem; border-radius: 999px; font-size: 0.78rem; font-family: 'Space Mono', monospace; letter-spacing: 0.4px; white-space: nowrap; }

/* ===== MEDIA CARD (selectable overlay + separate zoom button) ===== */
.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 255, 255, 0.22);
  background: rgba(10, 15, 25, 0.55);
  box-shadow: 0 0 26px rgba(0, 255, 255, 0.18);
  position: relative;
  display: grid;
  outline: none;
}
.media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.media-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(11, 13, 16, 0.10), rgba(11, 13, 16, 0.88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.2rem 1.25rem;
  gap: 0.5rem;
  pointer-events: none;
}
.media-overlay * {
  pointer-events: auto;
  user-select: text;
  cursor: text;
}
.media-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 255, 255, 0.35);
  background: rgba(0, 255, 255, 0.08);
  color: var(--cyan);
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.7px;
  width: fit-content;
}
.media-title {
  font-family: 'Space Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.05rem;
  color: #f1f1f1;
}
.media-note { color: #aeb6bf; font-size: 0.96rem; max-width: 520px; }
.zoom-button {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(0, 255, 255, 0.2);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 0 15px var(--cyan);
  pointer-events: auto;
  text-decoration: none;
}
.zoom-button:hover {
  background: var(--cyan);
  color: #000;
  transform: scale(1.1);
}

/* other components */
.hero-wrap { display: grid; grid-template-columns: 1.15fr 0.90fr; gap: 2rem; align-items: start; margin-top: 1.25rem; }
@media (max-width: 980px) { .hero-wrap { grid-template-columns: 1fr; } }
.hero-logo-container { position: relative; display: inline-block; margin-bottom: 0.5rem; }
.hero-logo-container::before { content: ''; position: absolute; top: 50%; left: 50%; width: 80%; height: 80%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(0, 255, 255, 0.6) 0%, rgba(255, 0, 255, 0.4) 50%, transparent 80%); filter: blur(25px); z-index: -1; animation: pulseGlow 3s ease-in-out infinite; }
.hero-image { max-width: 100%; height: auto; display: block; filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.7)) drop-shadow(0 0 24px rgba(255, 0, 255, 0.4)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0px); } }
@keyframes pulseGlow { 0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); } 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); } }
.hero-sub { font-size: 1.12rem; max-width: 820px; margin: 0.9rem 0 1.5rem; color: #aeb6bf; }
.trust-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.9rem; margin-top: 1.25rem; }
@media (max-width: 980px) { .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.trust { border-radius: 18px; border: 1px solid rgba(0, 255, 255, 0.18); background: rgba(10, 15, 25, 0.45); padding: 0.9rem 0.95rem; box-shadow: 0 0 18px rgba(0, 255, 255, 0.10); }
.trust b { display: block; font-family: 'Space Mono', monospace; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); font-size: 0.85rem; margin-bottom: 0.25rem; }
.trust span { color: #b9c2cc; font-size: 0.95rem; }

.service-card { background: rgba(0, 255, 255, 0.05); border-left: 40px solid var(--magenta); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.35rem 1.25rem; box-shadow: var(--shadowM); border-top: 1px solid rgba(255, 0, 255, 0.16); border-right: 1px solid rgba(255, 0, 255, 0.16); border-bottom: 1px solid rgba(255, 0, 255, 0.16); transition: 0.28s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; inset: -1px; background: radial-gradient(320px 140px at 20% 0%, rgba(255, 0, 255, 0.20), transparent 60%); opacity: 0.75; pointer-events: none; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 0 28px rgba(255, 0, 255, 0.35); border-left-color: var(--cyan); }
.service-card h3 { color: var(--magenta); text-shadow: 0 0 8px rgba(255, 0, 255, 0.55); margin-bottom: 0.55rem; font-size: 1.22rem; font-family: 'Space Mono', monospace; letter-spacing: 1px; text-transform: uppercase; position: relative; z-index: 1; }
.service-card p { position: relative; z-index: 1; color: #c8cfd7; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 1.5rem; align-items: stretch; }
@media (max-width: 980px) { .split { grid-template-columns: 1fr; } }
.panel { border: 1px solid rgba(0, 255, 255, 0.18); border-radius: var(--radius); padding: 1.35rem 1.25rem; background: rgba(10, 15, 25, 0.52); box-shadow: 0 0 18px rgba(0, 255, 255, 0.12); height: 100%; }
.panel.compact { padding: 1.05rem; border-radius: 18px; }
.panel.compact h3 { font-size: 0.95rem; margin-bottom: 0.55rem; letter-spacing: 1.6px; }
.panel.compact ul { padding-left: 1.05rem; }
.panel.compact li { margin: 0.38rem 0; font-size: 0.94rem; color: #c9d2db; }
.panel h3 { font-family: 'Space Mono', monospace; color: var(--cyan); text-transform: uppercase; letter-spacing: 2px; font-size: 1.02rem; margin-bottom: 0.7rem; }

.pricing-table { width: 100%; border-collapse: collapse; margin: 1.9rem 0 0; background: rgba(10, 15, 25, 0.72); backdrop-filter: blur(6px); border-radius: var(--radius); overflow: hidden; box-shadow: 0 0 30px rgba(0, 255, 255, 0.18); border: 1px solid rgba(0, 255, 255, 0.16); }
.pricing-table th { background: rgba(0, 255, 255, 0.10); color: var(--cyan); font-family: 'Space Mono', monospace; padding: 1.05rem; font-size: 0.95rem; text-transform: uppercase; border-bottom: 2px solid rgba(0, 255, 255, 0.65); letter-spacing: 1px; }
.pricing-table td { padding: 0.95rem 1.1rem; border-bottom: 1px solid rgba(0, 255, 255, 0.18); color: #d0d0d0; vertical-align: top; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:first-child { font-weight: 800; color: #fff; }
.pricing-table td:last-child { font-family: 'Space Mono', monospace; color: var(--magenta); text-shadow: 0 0 6px rgba(255, 0, 255, 0.55); white-space: nowrap; }
.note { margin-top: 1rem; color: #9aa3ad; font-size: 0.95rem; max-width: 920px; }

.quote { border: 1px solid rgba(255, 0, 255, 0.22); background: rgba(255, 0, 255, 0.06); border-radius: var(--radius); padding: 1.25rem 1.2rem; box-shadow: 0 0 22px rgba(255, 0, 255, 0.14); }
.quote p { color: #d7dee6; }
.quote b { display: block; margin-top: 0.85rem; color: var(--magenta); font-family: 'Space Mono', monospace; letter-spacing: 1px; text-transform: uppercase; font-size: 0.9rem; }

.faq { border: 1px solid rgba(0, 255, 255, 0.18); background: rgba(0, 255, 255, 0.05); border-radius: var(--radius); padding: 1.2rem 1.15rem; box-shadow: 0 0 18px rgba(0, 255, 255, 0.10); }
.faq q { display: block; font-family: 'Space Mono', monospace; letter-spacing: 1px; text-transform: uppercase; color: var(--cyan); font-weight: 800; font-size: 0.92rem; margin-bottom: 0.35rem; }
.faq q::before, .faq q::after { content: ''; }
.faq p { color: #c7cfd7; }

.contact-block { background: rgba(0, 0, 0, 0.38); border: 1px solid rgba(0, 255, 255, 0.55); border-radius: 34px; padding: 2.4rem 1.8rem; text-align: center; max-width: 900px; margin: 1.9rem auto 0; box-shadow: 0 0 50px rgba(0, 255, 255, 0.18); }
.contact-email { display: inline-block; font-size: clamp(1.25rem, 4vw, 2rem); font-family: 'Space Mono', monospace; color: var(--cyan); text-decoration: none; border-bottom: 2px dashed var(--magenta); padding-bottom: 0.2rem; word-break: break-word; margin-top: 0.4rem; }
.social-row { margin-top: 1.8rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.social-pill { border: 1px solid rgba(0, 255, 255, 0.45); background: rgba(0, 255, 255, 0.07); color: var(--cyan); padding: 0.55rem 1rem; border-radius: 999px; font-family: 'Space Mono', monospace; letter-spacing: 0.5px; text-decoration: none; transition: 0.25s; }
.social-pill:hover { transform: translateY(-2px); box-shadow: 0 0 18px rgba(0, 255, 255, 0.35); border-color: var(--cyan); }
.social-pill.magenta { border-color: rgba(255, 0, 255, 0.5); background: rgba(255, 0, 255, 0.07); color: var(--magenta); }
.social-pill.magenta:hover { box-shadow: 0 0 18px rgba(255, 0, 255, 0.35); border-color: var(--magenta); }

.footer { text-align: center; padding: 2.1rem 0 2.25rem; border-top: 1px solid rgba(0, 255, 255, 0.18); color: #6f7a86; position: relative; z-index: 1; }

/* lightbox */
.lightbox-backdrop {
  position: fixed; inset: 0; z-index: 3000; background: rgba(0, 0, 0, 0.86); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 1.25rem;
}
.lightbox-panel {
  position: relative; width: min(1200px, 96vw); height: min(820px, 92vh); border-radius: 18px;
  border: 1px solid rgba(0, 255, 255, 0.25); box-shadow: 0 0 44px rgba(0, 255, 255, 0.18);
  background: rgba(10, 15, 25, 0.55); overflow: hidden; display: grid; grid-template-rows: auto 1fr auto;
}
.lightbox-topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(0, 255, 255, 0.16); background: rgba(10, 12, 18, 0.68);
}
.lightbox-title { font-family: 'Space Mono', monospace; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; color: #dfe6ee; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60%; }
.lightbox-actions { display: inline-flex; gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
.lb-btn { cursor: pointer; border-radius: 999px; border: 1px solid rgba(0, 255, 255, 0.35); background: rgba(0, 255, 255, 0.08); color: var(--cyan); padding: 0.45rem 0.75rem; font-family: 'Space Mono', monospace; letter-spacing: 0.5px; font-size: 0.78rem; text-transform: uppercase; transition: 0.2s; user-select: none; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }
.lb-btn:hover { transform: translateY(-1px); box-shadow: 0 0 16px rgba(0, 255, 255, 0.18); border-color: rgba(0, 255, 255, 0.55); }
.lb-btn.magenta { border-color: rgba(255, 0, 255, 0.45); background: rgba(255, 0, 255, 0.08); color: var(--magenta); }
.lb-stage { position: relative; overflow: hidden; background: radial-gradient(600px 320px at 50% 30%, rgba(0, 255, 255, 0.08), transparent 60%), radial-gradient(600px 320px at 60% 70%, rgba(255, 0, 255, 0.06), transparent 60%); touch-action: none; }
.lb-img { position: absolute; top: 50%; left: 50%; transform-origin: center; max-width: none; max-height: none; width: auto; height: auto; user-select: none; -webkit-user-drag: none; filter: drop-shadow(0 0 18px rgba(0, 255, 255, 0.18)); cursor: grab; }
.lb-img:active { cursor: grabbing; }
.lb-meta { border-top: 1px solid rgba(0, 255, 255, 0.16); background: rgba(10, 12, 18, 0.58); padding: 0.7rem 0.85rem; display: flex; justify-content: flex-end; gap: 1rem; flex-wrap: wrap; color: #b9c2cc; font-size: 0.9rem; }
.lb-meta b { color: var(--cyan); font-family: 'Space Mono', monospace; letter-spacing: 0.5px; font-size: 0.85rem; text-transform: uppercase; margin-right: 0.35rem; }
.lb-hint { position: absolute; left: 12px; bottom: 12px; padding: 0.38rem 0.65rem; border-radius: 999px; border: 1px solid rgba(0, 255, 255, 0.22); background: rgba(0, 0, 0, 0.35); color: #cfe7ee; font-size: 0.78rem; font-family: 'Space Mono', monospace; letter-spacing: 0.5px; pointer-events: none; z-index: 5; }