/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --bg-primary: #08080c;
  --bg-secondary: #0e0e14;
  --bg-card: #14141c;
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --accent-1: #6366f1;
  --accent-2: #a855f7;
  --accent-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --accent-glow: rgba(99, 102, 241, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 500ms;
  --radius: 16px;
  --radius-lg: 24px;
  --max-w: 1200px;
  --section-py: 140px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

img {
  max-width: 100%;
  display: block
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1
}

h1 {
  font-size: clamp(40px, 6vw, 72px)
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 48px
}

h3 {
  font-size: 22px;
  font-weight: 600
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px
}

/* ═══════════ UTILITIES ═══════════ */
.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.section-tag {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-1);
  margin-bottom: 16px
}

.section-header {
  text-align: center;
  margin-bottom: 64px
}

/* ═══════════ CURSOR GLOW ═══════════ */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s
}

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--dur) var(--ease)
}

.navbar.scrolled {
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border)
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  font-size: 22px;
  font-weight: 700;
  transition: color var(--dur)
}

.logo-dot {
  color: var(--accent-1)
}

.nav-links {
  display: flex;
  gap: 36px
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color var(--dur);
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 1px;
  transition: width var(--dur) var(--ease)
}

.nav-links a:hover {
  color: var(--text-primary)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--dur) var(--ease)
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: orbFloat 8s ease-in-out infinite
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3), transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
  bottom: 0;
  left: -10%;
  animation-delay: -4s
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(30px, -40px) scale(1.1)
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1
}

.hero-tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.8
}

.hero-text h1 {
  margin-bottom: 28px;
  line-height: 1.08
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border)
}

/* Hero Reel — VIDEO */
.hero-reel {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #0a0a14;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
  cursor: pointer;
  transition: transform var(--dur) var(--ease)
}

.hero-reel:hover {
  transform: scale(1.02) translateY(-4px)
}

.hero-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-reel::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), transparent 50%, rgba(168, 85, 247, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3
}

.reel-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity var(--dur)
}

.hero-reel.playing .reel-play-overlay {
  opacity: 0;
  pointer-events: none
}

.reel-play-icon {
  width: 72px;
  height: 72px;
  transition: transform var(--dur) var(--ease);
  filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3))
}

.hero-reel:hover .reel-play-icon {
  transform: scale(1.15)
}

.reel-label {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.25)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(99, 102, 241, 0.4)
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  backdrop-filter: blur(4px)
}

.btn-ghost:hover {
  border-color: var(--accent-1);
  background: rgba(99, 102, 241, 0.05);
  transform: translateY(-2px)
}

.btn-full {
  width: 100%;
  justify-content: center
}

/* ═══════════ PORTFOLIO ═══════════ */
.portfolio {
  padding: var(--section-py) 0;
  position: relative
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px
}

.filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 10px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--dur) var(--ease)
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.2)
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--dur) var(--ease)
}

.portfolio-card.hidden {
  display: none
}

.portfolio-card:hover {
  transform: translateY(-8px)
}

.card-media {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-card)
}

.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease)
}

.portfolio-card:hover .card-media img,
.portfolio-card:hover .card-media video {
  transform: scale(1.05)
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 8, 12, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--dur) var(--ease)
}

.portfolio-card:hover .card-overlay {
  opacity: 1
}

.card-info {
  flex: 1
}

.card-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-1);
  margin-bottom: 6px;
  display: block
}

.card-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px
}

.card-info p {
  font-size: 13px;
  color: var(--text-secondary)
}

.card-wide {
  grid-column: span 2
}

/* ═══════════ PHOTOGRAPHY GALLERY ═══════════ */
.photography {
  padding: var(--section-py) 0;
  background: var(--bg-secondary)
}

.photo-gallery {
  columns: 4;
  column-gap: 16px
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--dur) var(--ease)
}

.photo-item:hover {
  transform: scale(1.02)
}

.photo-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
  filter: brightness(0.92)
}

.photo-item:hover img {
  transform: scale(1.05);
  filter: brightness(1)
}

.photo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity var(--dur)
}

.photo-item:hover::after {
  opacity: 1
}

/* ═══════════ LIGHTBOX ═══════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease)
}

.lightbox.active {
  opacity: 1;
  pointer-events: all
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.95);
  transition: transform 0.4s var(--ease)
}

.lightbox.active .lightbox-img {
  transform: scale(1)
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10;
  transition: transform var(--dur);
  line-height: 1
}

.lightbox-close:hover {
  transform: scale(1.2)
}

/* ═══════════ ABOUT ═══════════ */
.about {
  padding: var(--section-py) 0
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto
}

.portrait-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block
}

.portrait-border {
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  padding: 2px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), transparent 40%, transparent 60%, rgba(168, 85, 247, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none
}

.portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--bg-card), #0c0c14);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.portrait-initials {
  font-size: 56px;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.about-content h2 {
  margin-bottom: 24px
}

.about-bio {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px
}

.about-details {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border)
}

.detail-label {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px
}

.detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary)
}

/* ═══════════ SKILLS ═══════════ */
.skills {
  padding: var(--section-py) 0;
  background: var(--bg-secondary)
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px
}

.skill-card {
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--dur)
}

.skill-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3)
}

.skill-card:hover::before {
  opacity: 1
}

.skill-card h3 {
  margin-bottom: 20px
}

.skill-card li {
  color: var(--text-secondary);
  padding: 10px 0;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03)
}

.skill-card li:last-child {
  border-bottom: none
}

.skill-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gradient)
}

.tools-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

.tool-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--dur) var(--ease)
}

.tool-chip:hover {
  border-color: var(--accent-1);
  color: var(--text-primary);
  transform: translateY(-2px)
}

.tool-abbr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-gradient);
  font-size: 13px;
  font-weight: 700;
  color: #fff
}

/* ═══════════ CONTACT ═══════════ */
.contact {
  padding: var(--section-py) 0
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.contact-info h2 {
  margin-bottom: 20px
}

.contact-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  transition: all var(--dur) var(--ease);
  outline: none
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.5
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08)
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px
}

/* ═══════════ FOOTER ═══════════ */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border)
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.footer-name {
  font-size: 15px;
  font-weight: 600
}

.footer-copy {
  font-size: 14px;
  color: var(--text-secondary)
}

/* ═══════════ MODAL ═══════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur)
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--dur) var(--ease)
}

.modal-backdrop.active .modal-content {
  transform: scale(1) translateY(0)
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 28px;
  cursor: pointer;
  transition: color var(--dur);
  z-index: 10;
  line-height: 1
}

.modal-close:hover {
  color: var(--text-primary)
}

.modal-title {
  font-size: 24px;
  margin-bottom: 12px
}

.modal-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px
}

.modal-media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden
}

.modal-media video {
  width: 100%;
  border-radius: 12px
}

.modal-media img {
  width: 100%;
  border-radius: 12px
}

/* ═══════════ REVEAL ═══════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ═══════════ RESPONSIVE — TABLET ═══════════ */
@media(max-width:768px) {
  :root {
    --section-py: 100px
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right var(--dur) var(--ease);
    border-left: 1px solid var(--border)
  }

  .nav-links.open {
    right: 0
  }

  .nav-toggle {
    display: flex
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center
  }

  .hero-subtitle {
    margin: 0 auto 40px
  }

  .hero-buttons {
    justify-content: center
  }

  .hero-stats {
    justify-content: center
  }

  .hero-reel {
    max-width: 360px;
    margin: 0 auto
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .about-portrait {
    order: -1;
    max-width: 260px;
    margin: 0 auto
  }

  .skills-grid {
    grid-template-columns: 1fr
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .card-wide {
    grid-column: span 2
  }

  .photo-gallery {
    columns: 3
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }
}

/* ═══════════ RESPONSIVE — MOBILE ═══════════ */
@media(max-width:480px) {
  :root {
    --section-py: 80px
  }

  h2 {
    margin-bottom: 32px
  }

  .portfolio-grid {
    grid-template-columns: 1fr
  }

  .card-wide {
    grid-column: span 1
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px
  }

  .stat-divider {
    width: 40px;
    height: 1px
  }

  .about-details {
    flex-direction: column;
    gap: 16px
  }

  .photo-gallery {
    columns: 2
  }

  .modal-content {
    padding: 24px 16px
  }
}

/* ═══════════ SCROLLBAR ═══════════ */
::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: var(--bg-primary)
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15)
}

::selection {
  background: rgba(99, 102, 241, 0.3);
  color: var(--text-primary)
}