/* ============================================
   LEFTBLU PORTFOLIO — HUD SYSTEM STYLESHEET
   ============================================ */

:root {
  --bg:       #080808;
  --bg2:      #0e0e0e;
  --white:    #ffffff;
  --dim:      #555555;
  --dim2:     #2a2a2a;
  --accent:   #4fc3f7;
  --accent2:  #b3e5fc;
  --border:   rgba(255,255,255,0.15);
  --border-bright: rgba(255,255,255,0.6);
  --mono:     'Share Tech Mono', monospace;
  --display:  'Barlow Condensed', sans-serif;
  --code:     'Space Mono', monospace;
  --transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  /* HUD corner font offset — override in custom.css to scale all hud text.
     Example: --hud-font-offset: 4px; adds 4px to every hud label and value */
  --hud-font-offset: 0px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--mono);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  cursor: crosshair;
}

/* ── SCANLINES ── */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.07) 2px,
    rgba(0,0,0,0.07) 4px
  );
}

/* ── HUD CORNERS ── */
.hud-corner {
  position: fixed;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--dim);
  pointer-events: none;
  user-select: none;
}
.hud-tl { top: 0; left: 0; }
.hud-tr { top: 0; right: 0; }
.hud-bl { bottom: 16px; left: 0; }
.hud-br { bottom: 16px; right: 0; }
.hud-bracket { font-size: 16px; color: var(--border-bright); line-height: 1; opacity: 0.4; }
.hud-corner-data { display: flex; flex-direction: column; gap: 2px; }
.hud-corner-data.align-right { align-items: flex-end; }
.hud-label { color: var(--dim); font-size: calc(8px + var(--hud-font-offset)); letter-spacing: 0.1em; }
.hud-value { color: var(--white); font-size: calc(11px + var(--hud-font-offset)); letter-spacing: 0.05em; }
.hud-value.accent { color: var(--accent); }

/* ── HEADER ── */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 40px 32px 20px;
  position: relative;
  z-index: 10;
}

.header-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.logo-block {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.logo-box {
  font-family: var(--display);
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 1;
  border: 2px solid var(--white);
  padding: 2px 10px 4px;
  display: inline-block;
  position: relative;
  /* Small inner glow */
  box-shadow: inset 0 0 20px rgba(255,255,255,0.03);
  /* Treat like an SVG element — no text selection, no text cursor */
  user-select: none;
  -webkit-user-select: none;
  cursor: crosshair;
  pointer-events: none;
}

.logo-box::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--white);
  opacity: 0.2;
}

.logo-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--dim);
  margin-left: 14px;
  padding-bottom: 6px;
  writing-mode: horizontal-tb;
}

.header-tags {
  display: flex;
  gap: 6px;
}

.tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  border: 1px solid var(--dim2);
  color: var(--dim);
  padding: 2px 8px;
  transition: var(--transition);
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 4px;
}

.nav-links {
  display: flex;
  gap: 0;
}

.nav-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--dim);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  border-color: var(--border);
  background: rgba(255,255,255,0.03);
}

.nav-link.active::before {
  content: '> ';
  color: var(--accent);
}

/* ── HEADER BAR ── */
.header-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  height: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.bar-line {
  flex: 1;
  height: 1px;
  background: var(--dim2);
}

.bar-data {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mono-text {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--dim);
}

.mono-text.dim { opacity: 0.4; }

/* ── GALLERY ── */
.gallery-container {
  padding: 24px 32px 48px;
}

/* ── GALLERY ── */
.gallery-container {
  padding: 24px 32px 48px;
}

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Justified row — filled by JS */
.justified-row {
  display: flex;
  flex-direction: row;
  gap: 6px;
  margin-bottom: 6px;
  width: 100%;
}

.gallery-grid-inner {
  display: flex;
  flex-direction: column;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: crosshair;
  flex-shrink: 0;
  outline: 1px solid transparent;
  transition: outline-color 0.15s ease;
}

.gallery-item:hover {
  outline-color: rgba(255,255,255,0.4);
}

.gallery-item img,
.gallery-item video,
.gallery-item .pdf-thumb-canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0.92) contrast(1.02);
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.015);
  filter: brightness(1) contrast(1.02);
}

/* HUD overlay on hover */
.gallery-item .item-hud {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.gallery-item:hover .item-hud {
  opacity: 1;
}

.item-hud-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--white);
  border-style: solid;
  opacity: 0.7;
}
.item-hud-corner.tl { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.item-hud-corner.tr { top: 6px; right: 6px; border-width: 1px 1px 0 0; }
.item-hud-corner.bl { bottom: 6px; left: 6px; border-width: 0 0 1px 1px; }
.item-hud-corner.br { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }

.item-hud-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 8px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.item-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

.item-index {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--accent);
  opacity: 0.8;
}

/* Gallery empty state */
.gallery-empty {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}

.empty-frame {
  border: 1px solid var(--dim2);
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

/* ── 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-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.94);
  cursor: crosshair;
}

.lightbox-ui {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 32px;
  gap: 16px;
}

.lb-hud-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.lb-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lb-index { color: var(--accent); font-size: 11px; }

.lb-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lb-close {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dim);
  padding: 6px 16px;
  cursor: pointer;
  transition: var(--transition);
}

.lb-close:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.lb-image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
  position: relative;
}

.lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8,8,8,0.7);
  border: 1px solid var(--border);
  color: var(--dim);
  font-size: 14px;
  padding: 20px 10px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--mono);
  z-index: 1100;
}

.lb-prev { left: 8px; }
.lb-next { right: 8px; }

.lb-nav:hover {
  color: var(--white);
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.lb-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 80px - 32px);
  max-height: calc(100vh - 160px - 32px);
  overflow: visible;
}

.lb-img {
  display: block;
  max-width: calc(100vw - 80px - 32px);
  max-height: calc(100vh - 160px - 32px);
  object-fit: contain;
  transition: opacity 0.2s ease;
}

/* HUD corners on lightbox image */
.lb-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(255,255,255,0.5);
  border-style: solid;
  pointer-events: none;
}
.lb-c-tl { top: -8px; left: -8px; border-width: 1px 0 0 1px; }
.lb-c-tr { top: -8px; right: -8px; border-width: 1px 1px 0 0; }
.lb-c-bl { bottom: -8px; left: -8px; border-width: 0 0 1px 1px; }
.lb-c-br { bottom: -8px; right: -8px; border-width: 0 1px 1px 0; }

.lb-hud-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.lb-tags {
  display: flex;
  gap: 6px;
}

.lb-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  border: 1px solid var(--dim2);
  color: var(--dim);
  padding: 2px 8px;
}

.lb-dims {
  font-size: 11px;
}

/* ── ANIMATIONS ── */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scanIn {
  from { clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0% 0); }
}

.blink-slow { animation: blink 2s step-end infinite; }

.gallery-item {
  animation: fadeInUp 0.4s ease forwards;
}

/* Stagger via JS (inline style --delay) */
.gallery-item { animation-delay: var(--delay, 0ms); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--dim2); }
::-webkit-scrollbar-thumb:hover { background: var(--dim); }

/* ── SELECTION ── */
::selection { background: rgba(79, 195, 247, 0.25); color: var(--white); }

/* ── SECTIONS ── */

/* gallery-grid is now just a column container for section wrappers */
.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each section is full-width */
.section-wrapper {
  width: 100%;
}

/* Chapter header */
.section-header {
  padding: 48px 0 0;
  margin-bottom: 20px;
}

.section-header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: baseline;
  margin-bottom: 14px;
}

.section-number {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  justify-self: start;
}

.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(22px, 1.874vw, 40px);
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--white);
  justify-self: center;
}

.section-count {
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.12em;
  padding-bottom: 4px;
  justify-self: end;
}

.section-header-line {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* Inner justified grid per section */
.gallery-grid-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* ── COMPARE GRID ITEM ── */
.compare-split-preview {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
}

.compare-split-preview .split-left,
.compare-split-preview .split-right {
  width: 50%;
  height: auto;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.split-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--white);
  opacity: 0.6;
  pointer-events: none;
}

.item-type-badge {
  position: absolute;
  top: 8px; right: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 2px 6px;
  background: rgba(0,0,0,0.6);
  pointer-events: none;
  z-index: 2;
}

/* ── COMPARE LIGHTBOX FRAME ── */
.lb-compare-frame {
  position: relative;
  overflow: visible;
  cursor: default;
  user-select: none;
  display: block;
  flex-shrink: 0;
}

.lb-compare-clip {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* Both images fill the exact same frame — object-fit handles size mismatch */
.lb-compare-right,
.lb-compare-left {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  display: block;
}

/* Left image is clipped via clip-path — updated by JS */
.lb-compare-left {
  clip-path: inset(0 50% 0 0);
}

/* Invisible sizing element — takes the natural size of whichever image is larger */
.lb-compare-sizer {
  display: block;
  max-width:  calc(100vw - 80px);
  max-height: calc(100vh - 160px);
  object-fit: contain;
  visibility: hidden;
  pointer-events: none;
}

/* Slider — cursor only here */
.lb-compare-slider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
  z-index: 10;
}

.lb-compare-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
}

.lb-compare-handle {
  position: relative;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--white);
  background: var(--bg);
  border: 1px solid var(--white);
  padding: 6px 8px;
  letter-spacing: 0.05em;
  user-select: none;
  z-index: 11;
  pointer-events: none;
}

/* Side labels */
.lb-compare-label {
  position: absolute;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--white);
  background: rgba(0,0,0,0.55);
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.2);
  pointer-events: none;
  z-index: 5;
}
.lb-compare-label-l { left: 12px; }
.lb-compare-label-r { right: 12px; }

/* ── COMPARE SELECTOR (bottom bar) ── */
.lb-compare-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.lb-compare-tooltip {
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--dim);
}

.lb-compare-btns {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.lb-compare-btn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  background: transparent;
  border: 1px solid var(--dim2);
  color: var(--dim);
  padding: 4px 12px;
  cursor: pointer;
  transition: var(--transition);
}

.lb-compare-btn:hover {
  color: var(--white);
  border-color: var(--border);
}

.lb-compare-btn.active-left {
  border-color: var(--accent);
  color: var(--accent);
}

.lb-compare-btn.active-right {
  border-color: #ffffff;
  color: #ffffff;
}

.lb-compare-btn.active-left.active-right {
  position: relative;
  border-left-color: var(--accent);
  border-top-color: var(--accent);
  border-right-color: var(--white);
  border-bottom-color: var(--white);
  color: var(--white);
  overflow: hidden;
}

/* Left half tinted blue via pseudo overlay */
.lb-compare-btn.active-left.active-right::before {
  content: '';
  position: absolute;
  inset: 0;
  right: 50%;
  background: rgba(79, 195, 247, 0.15);
  pointer-events: none;
}

/* Left half of text in accent, right half in white — using clip */
.lb-compare-btn.active-left.active-right::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  clip-path: inset(0 50% 0 0);
  pointer-events: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

/* ── VIDEO ── */
.gallery-item video {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  filter: brightness(0.92) contrast(1.02);
}

.gallery-item:hover video {
  filter: brightness(1) contrast(1.02);
}

.lb-video {
  display: block;
  max-width:  calc(100vw - 80px - 32px);
  max-height: calc(100vh - 160px - 32px);
  width: auto;
  height: auto;
  background: #000;
  accent-color: var(--white);
}

/* ── CHAR WIPE ANIMATION ── */
.cw-char {
  display: inline-block;
  transition: opacity 0.08s ease;
  white-space: pre;
}

/* ── NOISE BACKGROUND ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;        /* ← overall brightness of the dots. range: 0.05–0.3 */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px; /* ← dot density. smaller = more dots, larger = fewer */
  mix-blend-mode: screen;       /* ← keeps dots white-only on dark bg */
}

/* ── PDF ── */
.pdf-thumb-canvas {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0.92) contrast(1.02);
}

.gallery-item:hover .pdf-thumb-canvas {
  filter: brightness(1) contrast(1.02);
}

.lb-pdf-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.lb-pdf-clip {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-pdf-canvas {
  display: block;
}

.lb-pdf-loading {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--dim);
  background: rgba(8,8,8,0.7);
}

/* PDF page controls */
.lb-pdf-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.lb-pdf-btn {
  font-family: var(--mono);
  font-size: 11px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dim);
  padding: 4px 10px;
  cursor: pointer;
  transition: var(--transition);
}

.lb-pdf-btn:hover {
  color: var(--white);
  border-color: var(--white);
}

.lb-pdf-page-input {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lb-pdf-input {
  font-family: var(--mono);
  font-size: 11px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 3px 6px;
  width: 52px;
  text-align: center;
  outline: none;
  /* Hide number spinners */
  -moz-appearance: textfield;
}
.lb-pdf-input::-webkit-outer-spin-button,
.lb-pdf-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.lb-pdf-input:focus { border-color: var(--accent); }

.lb-pdf-sep  { color: var(--dim); font-size: 11px; }
.lb-pdf-total { font-size: 11px; color: var(--dim); }

/* ── COMPARE DUAL BADGE ── */
.item-badge-group {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: row;
  gap: 3px;
  pointer-events: none;
  z-index: 2;
}

/* When inside a group, override the absolute positioning */
.item-badge-group .item-type-badge {
  position: static;
}

/* ── DESCRIPTION PANEL ── */
.lb-content-area {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  max-height: calc(100vh - 160px);
  min-width: 0;
  outline: 1px solid rgba(255,255,255,0.4);
  position: relative;
  overflow: visible;
}

.lb-desc-panel {
  display: flex;
  flex-direction: column;
  width: 280px;
  flex-shrink: 0;
  border-left: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.6);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--dim2) transparent;
}

.lb-desc-top-line {
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.lb-desc-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lb-desc-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.lb-desc-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
  white-space: pre-wrap;
}

/* ── SECTION DESCRIPTION ── */
.section-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 14px 10% 0;
  letter-spacing: 0.02em;
  white-space: pre-wrap;
}

/* ── VIGNETTE ── */
.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  /* z-index between noise (1) and HUD corners (100) */
  z-index: 50;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.55) 100%
  );
}
