*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d0d1a;
  --navy-mid: #14142b;
  --navy-light: #1e1e3a;
  --purple: #534AB7;
  --purple-light: #7C72D8;
  --purple-pale: #eeedfe;
  --teal: #1D9E75;
  --teal-pale: #e1f5ee;
  --text: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-muted: #666688;
  --border: rgba(0,0,0,0.08);
  --bg: #ffffff;
  --bg-soft: #f8f8fc;
  --radius: 12px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Sora', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: clip;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 48px;
  height: 68px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
  max-width: 100vw;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 0;
}
.logo > div:last-child { min-width: 0; }
.logo-name, .logo-tagline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-mark {
  width: 38px; height: 38px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,242,168,0.22), transparent 36%),
    linear-gradient(145deg, #090914 0%, #171735 56%, #0d0d1a 100%);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 10px 24px rgba(13,13,26,0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.logo:hover .logo-mark {
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(255,242,168,0.18), 0 14px 30px rgba(83,74,183,0.22);
}
.logo-mark svg { width: 28px; height: 28px; }
.logo-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  padding: 9px 20px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Sora', sans-serif;
  border: none;
  cursor: pointer;
}
.nav-cta:hover { background: #2a2a4a; transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  background: rgba(0, 0, 0, 0.45);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-menu-backdrop.open { opacity: 1; }

.mobile-menu {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0.25s;
}
.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s 0s;
}
.mobile-menu a {
  font-size: 15px;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ── HERO ── */
.hero {
  padding: 100px 48px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  max-width: 100vw;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(83,74,183,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(29,158,117,0.06) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(83,74,183,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83,74,183,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-inner {
  position: relative;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--purple-pale);
  border-radius: 20px;
  font-size: 12px;
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s forwards;
}
.hero h1 em {
  font-style: normal;
  color: var(--purple);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.3s forwards;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.4s forwards;
}
.btn-primary {
  padding: 13px 28px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: #2a2a4a; transform: translateY(-2px); }

.btn-ghost {
  padding: 13px 28px;
  background: transparent;
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(0,0,0,0.2); background: var(--bg-soft); transform: translateY(-2px); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.7s forwards;
}
.scroll-line {
  width: 40px; height: 1px;
  background: var(--text-muted);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── TECH BAR ── */
.tech-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 100vw;
}
.tech-label {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 4px;
  white-space: nowrap;
}
.tech-pill {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  padding: 4px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-mid);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.tech-pill:hover { border-color: var(--purple); color: var(--purple); }

/* ── SECTIONS COMMON ── */
section { padding: 96px 48px; max-width: 100vw; }

.section-eyebrow {
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── SERVICES ── */
#services { background: var(--bg); }
.services-header { margin-bottom: 52px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.service-card:hover {
  border-color: rgba(83,74,183,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(83,74,183,0.08);
}

.service-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 20px; height: 20px; }

.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── WORK / PORTFOLIO ── */
#work { background: var(--bg-soft); }
.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.project-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.project-card.featured {
  grid-column: 1 / -1;
}

.project-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-card.featured .project-img { aspect-ratio: 21/9; }

.project-img-placeholder {
  text-align: center;
}
.project-img-placeholder p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  font-family: 'JetBrains Mono', monospace;
}

.project-info {
  padding: 20px 22px;
}
.project-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.project-tag {
  font-size: 10px;
  font-family: 'JetBrains Mono', monospace;
  padding: 3px 9px;
  background: var(--purple-pale);
  color: var(--purple);
  border-radius: 20px;
}
.project-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.project-info p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ── ABOUT ── */
#about {
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 14px;
}
.about-text p + p { margin-top: 14px; }

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.stat-card.accent {
  background: var(--navy);
  border-color: transparent;
}
.stat-num {
  font-size: 28px;
  font-weight: 600;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card.accent .stat-num { color: #AFA9EC; }
.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
}
.stat-card.accent .stat-lbl { color: rgba(255,255,255,0.45); }

/* ── CONTACT ── */
#contact {
  background: var(--navy);
  padding: 96px 48px;
}
.contact-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
#contact .section-eyebrow { color: #AFA9EC; }
#contact .section-title { color: #ffffff; }
#contact .section-desc { color: rgba(255,255,255,0.5); margin: 0 auto 44px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-family: 'JetBrains Mono', monospace;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-family: 'Sora', sans-serif;
  color: #ffffff;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(83,74,183,0.7); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy-mid); color: #fff; }

.submit-btn {
  padding: 14px 32px;
  background: var(--purple);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}
.submit-btn:hover { background: var(--purple-light); transform: translateY(-2px); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.contact-alt {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-link:hover { color: rgba(255,255,255,0.8); }
.contact-link svg { width: 16px; height: 16px; }

/* ── FOOTER ── */
footer {
  background: #0a0a18;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
footer span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-family: 'JetBrains Mono', monospace;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 90px 24px 60px; }
  .hero-scroll { left: 24px; }
  .tech-bar { padding: 14px 24px; }
  section { padding: 72px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: 1; }
  .project-card.featured .project-img { aspect-ratio: 16/9; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  #contact { padding: 72px 24px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 20px 24px; }
  .work-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 32px; }
}

/* ── NAV RIGHT ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── LANGUAGE DROPDOWN ── */
.lang-dropdown { position: relative; }

.lang-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  color: var(--text-mid);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.05em;
}
.lang-trigger:hover { color: var(--text); border-color: rgba(0,0,0,0.2); }

.lang-chevron {
  width: 10px; height: 6px;
  transition: transform 0.2s;
}
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 130px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  list-style: none;
  overflow: hidden;
  z-index: 200;
  animation: fadeDown 0.15s ease;
}
.lang-dropdown.open .lang-menu { display: block; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  font-size: 13px;
  font-family: 'Sora', sans-serif;
  color: var(--text-mid);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.lang-option:hover { background: var(--bg-soft); color: var(--text); }
.lang-option.active { color: var(--purple); font-weight: 500; }


/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── PROJECT IMAGE HOVER ── */
.project-img {
  position: relative;
}
.project-img.has-gallery {
  cursor: pointer;
}
.img-expand {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.2s;
}
.img-expand svg {
  width: 32px; height: 32px;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.has-gallery:hover .img-expand            { background: rgba(0,0,0,0.35); }
.has-gallery:hover .img-expand svg        { opacity: 1; transform: scale(1); }

.project-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.project-img-placeholder p {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-family: 'JetBrains Mono', monospace;
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.lightbox-close svg { width: 16px; height: 16px; }

.lightbox-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  color: rgba(255,255,255,0.95);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  z-index: 2;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.38); color: #fff; }
.lightbox-arrow svg   { width: 20px; height: 20px; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lightbox-arrow.hidden { opacity: 0; pointer-events: none; }

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1200px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  min-height: 20px;
}
.lightbox-caption {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-family: 'Sora', sans-serif;
  flex: 1;
}
.lightbox-counter {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}

footer a.privacy-link {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  transition: color 0.2s;
}
footer a.privacy-link:hover {
  color: rgba(255,255,255,0.95);
}
