/* ============================================================
   APT WISŁA // CTI OPERATIONS CENTER
   Visual Design System
   ============================================================ */

:root {
  --bg-primary:    #050c18;
  --bg-secondary:  #0a1628;
  --bg-card:       #0d1f3c;
  --bg-card-hover: #112549;
  --border:        #1a3a6b;
  --border-glow:   #1e4d8c;
  --cyan:          #00d4ff;
  --cyan-dim:      #0099bb;
  --cyan-dark:     #003344;
  --blue:          #1a6fff;
  --blue-dim:      #1045aa;
  --orange:        #ff6b35;
  --orange-dim:    #cc4a1a;
  --green:         #00ff88;
  --green-dim:     #00aa55;
  --red:           #ff3355;
  --white:         #e8f4ff;
  --grey:          #4a6080;
  --grey-light:    #8ab0d0;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;
  --font-sans:     'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--white);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 800; letter-spacing: 0.05em; }
h2 { font-size: clamp(1.2rem, 3.5vw, 1.8rem); font-weight: 700; letter-spacing: 0.04em; }
h3 { font-size: clamp(0.9rem, 2.5vw, 1.2rem); font-weight: 600; letter-spacing: 0.06em; }
p  { font-size: 0.95rem; line-height: 1.7; color: var(--grey-light); }

.mono { font-family: var(--font-mono); }
.cyan { color: var(--cyan); }
.orange { color: var(--orange); }
.green { color: var(--green); }
.red { color: var(--red); }
.grey { color: var(--grey-light); }
.dim { opacity: 0.6; }

/* ── LAYOUT ── */
.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── HUD BACKGROUND ── */
.hud-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hud-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,212,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(26,111,255,0.08) 0%, transparent 70%);
}
.hud-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── HEADER / APPSHELL ── */
.app-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,12,24,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
}
.app-header-inner {
  max-width: 680px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.app-logo {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  font-weight: 700;
}
.app-logo span { color: var(--grey-light); font-weight: 400; }

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan-dim), transparent);
  opacity: 0.4;
}
.card-header {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--cyan-dim);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.card-accent {
  border-color: var(--cyan-dim);
  box-shadow: 0 0 20px rgba(0,212,255,0.08);
}
.card-warning {
  border-color: var(--orange-dim);
  box-shadow: 0 0 20px rgba(255,107,53,0.08);
}
.card-success {
  border-color: var(--green-dim);
  box-shadow: 0 0 20px rgba(0,255,136,0.08);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: none; border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;    /* touch target */
  min-width: 44px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, #0d4fcc 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,111,255,0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 25px rgba(26,111,255,0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-cyan {
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
}
.btn-cyan:hover { background: rgba(0,212,255,0.08); }

.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dim) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,53,0.3);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--grey-light);
}
.btn-ghost:hover { border-color: var(--cyan-dim); color: var(--cyan); }

.btn-full { width: 100%; }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.7rem; min-height: 36px; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ── INPUTS ── */
.input-group { margin-bottom: 1rem; }
.input-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--cyan-dim);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}
.input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
}
.input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}
.input::placeholder { color: var(--grey); }
.input-code {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
  text-align: center;
}
.input-error { border-color: var(--red) !important; }
.error-msg {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-top: 0.4rem;
}
.success-msg {
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-top: 0.4rem;
}

/* ── INTEL CODE INPUT ── */
.intel-code-wrap {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.intel-code-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--cyan-dim);
  margin-bottom: 1rem;
}
.intel-code-status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  margin-top: 1rem;
  min-height: 1.5rem;
}
.code-attempts {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--grey);
  margin-top: 0.5rem;
}

/* ── MISSION PROGRESS ── */
.mission-progress { display: flex; flex-direction: column; gap: 0.5rem; }
.progress-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.2s;
  cursor: default;
}
.progress-item.active {
  border-color: var(--cyan-dim);
  background: var(--bg-card);
  box-shadow: 0 0 12px rgba(0,212,255,0.1);
}
.progress-item.complete { border-color: var(--green-dim); }
.progress-item.locked { opacity: 0.4; }
.progress-icon { font-size: 1.1rem; width: 1.5rem; text-align: center; flex-shrink: 0; }
.progress-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  flex: 1;
}
.progress-pts {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--grey);
}

/* ── COUNTDOWN TIMER ── */
.timer-wrap {
  text-align: center;
  padding: 1rem;
}
.timer-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--grey-light);
  margin-bottom: 0.3rem;
}
.timer-value {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
  line-height: 1;
}
.timer-value.warning { color: var(--orange); }
.timer-value.critical { color: var(--red); animation: pulse 1s infinite; }

/* ── SCORE DISPLAY ── */
.score-display {
  font-family: var(--font-mono);
  text-align: center;
}
.score-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cyan);
}
.score-max { color: var(--grey); font-size: 1.2rem; }
.score-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--grey-light);
  margin-top: 0.2rem;
}

/* ── QUESTION CARD ── */
.question-wrap { margin-bottom: 1.5rem; }
.question-text {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.options-list { display: flex; flex-direction: column; gap: 0.6rem; }
.option-btn {
  display: flex; align-items: flex-start; gap: 0.75rem;
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: all 0.15s;
  min-height: 52px;
}
.option-btn:hover { border-color: var(--cyan-dim); background: var(--bg-card); }
.option-btn.selected {
  border-color: var(--cyan);
  background: rgba(0,212,255,0.08);
  box-shadow: 0 0 12px rgba(0,212,255,0.15);
}
.option-btn.answered { cursor: default; }
.option-btn.answered:hover { border-color: var(--border); }
.option-btn.answered.selected { border-color: var(--cyan-dim); }
.option-key {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.option-text { font-size: 0.9rem; line-height: 1.5; }

/* ── SIMULATED EMAIL ── */
.sim-email {
  background: #0f1a0f;
  border: 1px solid #2a3a2a;
  border-radius: 8px;
  overflow: hidden;
}
.sim-email-toolbar {
  background: #1a2a1a;
  padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.sim-dot { width: 10px; height: 10px; border-radius: 50%; }
.sim-dot-r { background: #ff5f57; }
.sim-dot-y { background: #ffbd2e; }
.sim-dot-g { background: #28c840; }
.sim-email-header {
  padding: 1rem;
  border-bottom: 1px solid #2a3a2a;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.sim-email-field { display: flex; gap: 0.5rem; margin-bottom: 0.3rem; }
.sim-email-field-name { color: var(--grey); min-width: 60px; }
.sim-email-field-val { color: var(--white); }
.sim-email-field-val.suspicious { color: var(--orange); }
.sim-email-body { padding: 1rem; font-size: 0.9rem; line-height: 1.7; }
.sim-attachment {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,107,53,0.1);
  border: 1px solid var(--orange-dim);
  border-radius: 4px;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--orange);
  margin-top: 0.5rem;
}
.sim-badge {
  display: inline-block;
  background: rgba(255,107,53,0.15);
  border: 1px solid var(--orange);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

/* ── MALWARE ARTIFACT ── */
.malware-wrap {
  background: #080f08;
  border: 1px solid #1a3a1a;
  border-radius: 8px;
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  overflow-x: auto;
}
.malware-line { display: flex; gap: 1rem; line-height: 1.8; }
.malware-ln { color: #2a4a2a; min-width: 2rem; text-align: right; user-select: none; }
.malware-code { color: #88cc88; }
.malware-comment { color: var(--orange); }
.malware-string { color: #cc8844; }
.malware-keyword { color: #6688ff; }

/* ── SOC DASHBOARD ── */
.soc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.soc-widget {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem;
}
.soc-widget-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  color: var(--grey);
  margin-bottom: 0.4rem;
}
.soc-widget-value {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
}
.soc-ioc-list { display: flex; flex-direction: column; gap: 0.4rem; }
.soc-ioc {
  background: rgba(255,107,53,0.08);
  border-left: 2px solid var(--orange);
  padding: 0.4rem 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--orange);
}

/* ── RANKING TABLE ── */
.ranking-table { width: 100%; border-collapse: collapse; }
.ranking-table th {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--grey);
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.ranking-table td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(26,58,107,0.3);
  font-size: 0.9rem;
}
.ranking-table tr:hover td { background: var(--bg-card-hover); }
.rank-num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--grey-light);
}
.rank-gold { color: #ffd700; }
.rank-silver { color: #c0c0c0; }
.rank-bronze { color: #cd7f32; }
.rank-medal { font-size: 1.2rem; }
.status-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
.status-complete { background: rgba(0,255,136,0.1); color: var(--green); border: 1px solid var(--green-dim); }
.status-progress { background: rgba(0,212,255,0.1); color: var(--cyan); border: 1px solid var(--cyan-dark); }

/* ── MISSION COMPLETE ── */
.complete-wrap { text-align: center; padding: 2rem 0; }
.complete-title {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.intel-collected {
  display: flex; flex-direction: column; gap: 0.5rem;
  margin: 1.5rem 0;
}
.intel-badge {
  display: flex; align-items: center; gap: 0.75rem;
  background: rgba(0,255,136,0.05);
  border: 1px solid var(--green-dim);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--green);
}
.classification {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--grey-light);
  margin-bottom: 0.3rem;
}
.classification-value {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.class-master { color: var(--cyan); }
.class-hunter { color: var(--green); }
.class-analyst { color: var(--blue); }
.class-rookie { color: var(--grey-light); }

/* ── RECOVERY CODE ── */
.recovery-code-box {
  background: var(--bg-secondary);
  border: 1px solid var(--cyan-dim);
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
}
.recovery-code-val {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.25em;
}

/* ── PARTNER LOGOS ── */
.partner-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  padding: 1.5rem 1rem;
}
.partner-logo-item { opacity: 0.7; transition: opacity 0.2s; }
.partner-logo-item:hover { opacity: 1; }
.logo-placeholder {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--grey);
  border: 1px dashed var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
}

/* ── DISCLAIMER ── */
.disclaimer {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--grey);
  line-height: 1.5;
  padding: 0.75rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* ── ALERTS ── */
.alert {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.alert-success { background: rgba(0,255,136,0.08); border: 1px solid var(--green-dim); color: var(--green); }
.alert-error   { background: rgba(255,51,85,0.08); border: 1px solid var(--red); color: var(--red); }
.alert-info    { background: rgba(0,212,255,0.08); border: 1px solid var(--cyan-dim); color: var(--cyan); }
.alert-warning { background: rgba(255,107,53,0.08); border: 1px solid var(--orange-dim); color: var(--orange); }

/* ── LOADING / SKELETON ── */
.loading-spinner {
  width: 24px; height: 24px;
  border: 2px solid var(--border);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* ── ACCESS GRANTED ANIMATION ── */
.access-granted {
  text-align: center;
  padding: 1.5rem;
  animation: fadeInScale 0.4s ease;
}
.access-granted-text {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.15em;
  animation: glitch 0.3s ease;
}

/* ── RADAR PULSE ── */
.radar-pulse {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  margin: 0 auto 1rem;
  position: relative;
  animation: radarPulse 2s ease-out infinite;
}
.radar-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.3);
  animation: radarPulse 2s ease-out 0.5s infinite;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 1.5rem 0;
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--cyan-dim);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.section-label::before, .section-label::after {
  content: '';
  height: 1px;
  flex: 1;
  background: var(--border);
}

/* ── ANALYTIC SUMMARY ── */
.analytic-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(26,58,107,0.3);
  gap: 1rem;
}
.analytic-key {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--grey-light);
  flex-shrink: 0;
}
.analytic-val {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--white);
  text-align: right;
}

/* ── FOOTER ── */
.app-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding: 1.5rem 1rem;
  background: var(--bg-secondary);
}

/* ── ANIMATIONS ── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes fadeInScale {
  from { opacity:0; transform: scale(0.95); }
  to   { opacity:1; transform: scale(1); }
}
@keyframes fadeIn {
  from { opacity:0; transform: translateY(8px); }
  to   { opacity:1; transform: translateY(0); }
}
@keyframes radarPulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes glitch {
  0%  { clip-path: inset(0 0 95% 0); }
  25% { clip-path: inset(30% 0 50% 0); }
  50% { clip-path: inset(0 0 0 0); }
  75% { clip-path: inset(10% 0 80% 0); }
  100%{ clip-path: inset(0 0 0 0); }
}

.fade-in { animation: fadeIn 0.4s ease both; }

/* ── COOLDOWN BAR ── */
.cooldown-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.5rem;
}
.cooldown-fill {
  height: 100%;
  background: var(--orange);
  transition: width 1s linear;
}

/* ── UTILITY ── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none !important; }
.w-full { width: 100%; }

/* ── MOBILE ADJUSTMENTS ── */
@media (max-width: 480px) {
  .soc-grid { grid-template-columns: 1fr; }
  .partner-logos { gap: 1rem; }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--cyan-dim); }
