/* ===== CUSTOM CURSOR ===== */
* { cursor: none !important; }

.cursor {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}
.cursor-trail {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(167,139,250,0.4);
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, opacity 0.3s;
}
body.cursor-hover .cursor { width: 16px; height: 16px; background: #fff; }
body.cursor-hover .cursor-trail { width: 48px; height: 48px; border-color: rgba(167,139,250,0.6); }
body.cursor-click .cursor { width: 6px; height: 6px; }

@media (hover: none) {
  * { cursor: auto !important; }
  .cursor, .cursor-trail { display: none; }
}

/* ===== TYPEWRITER CURSOR ===== */
.typewriter-cursor {
  display: inline-block; color: var(--accent);
  animation: blink 1s step-end infinite;
  font-family: var(--mono);
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ===== HERO PARALLAX ===== */
.hero-title { will-change: transform; }
.hero-content { will-change: transform; }

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; opacity: 0.5;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-2);
  overflow: hidden;
}
.stats-row {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 48px; gap: 4px;
}
.stat-big {
  font-size: 3rem; font-weight: 700; font-family: var(--mono);
  color: var(--text); letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-sub { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden; padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.marquee-track { display: flex; }
.marquee-content {
  display: flex; gap: 0; flex-shrink: 0;
  animation: marquee 28s linear infinite;
}
.marquee-content span {
  padding: 6px 24px; font-family: var(--mono); font-size: 0.78rem;
  color: var(--text-dim); white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}
.marquee-content span:hover { color: var(--accent); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-wrap:hover .marquee-content { animation-play-state: paused; }

/* ===== CARD TILT — JS handles all transform, CSS must not override ===== */
.bento-card,
.project-card {
  transform-style: preserve-3d;
  /* overflow: clip (set in style.css) allows border-radius clipping
     without flattening the 3D perspective transform */
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* ===== SCROLL STORY — alternating rows ===== */
.story-section {
  padding: 80px 0;
}
.story-section .section-header { margin-bottom: 56px; }

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.story-row:last-child { border-bottom: none; }

/* Reverse: visual comes first in DOM but CSS flips it */
.story-row-reverse .story-row-text { order: 2; }
.story-row-reverse .story-row-visual { order: 1; }

.story-step-label {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--step-color, var(--accent));
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px; display: block;
}
.story-row-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 16px; line-height: 1.2;
}
.story-row-desc {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 24px; max-width: 440px;
}
.story-row-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem; font-weight: 500;
  color: var(--step-color, var(--accent));
  transition: gap 0.2s ease;
}
.story-row-link:hover { gap: 10px; }

/* Visual card mock */
.story-row-visual {
  display: flex; align-items: center; justify-content: center;
}
.story-card-mock {
  width: 100%; max-width: 340px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  display: flex; align-items: flex-start; gap: 20px;
  position: relative; overflow: clip;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.story-card-mock::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, color-mix(in srgb, var(--step-color, #a78bfa) 12%, transparent), transparent 70%);
  pointer-events: none;
}
.story-row:hover .story-card-mock,
.story-row-reverse:hover .story-card-mock {
  border-color: var(--border-hover);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  transform: translateY(-4px);
}
.scm-icon {
  font-size: 2.4rem; flex-shrink: 0;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--step-color, #a78bfa) 40%, transparent));
}
.scm-lines { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.scm-line {
  height: 8px; border-radius: 4px;
  background: var(--bg-3);
}
.scm-line-long  { width: 100%; }
.scm-line-short { width: 65%; }
.scm-tags {
  display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px;
}
.scm-tags span {
  padding: 3px 10px; border-radius: 100px;
  font-size: 0.7rem; font-family: var(--mono);
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--step-color, var(--accent));
}

@media (max-width: 768px) {
  .story-row,
  .story-row-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }
  .story-row-reverse .story-row-text { order: 1; }
  .story-row-reverse .story-row-visual { order: 2; }
  .story-card-mock { max-width: 100%; }
}

/* ===== MAGNETIC BUTTON ===== */
[data-magnetic] { transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), background 0.2s, border-color 0.2s, box-shadow 0.2s; }

/* ===== CTA BAND ===== */
.cta-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(167,139,250,0.04) 0%, transparent 60%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-title { font-size: clamp(1.4rem, 3vw, 2rem); color: var(--text); margin-bottom: 8px; }
.cta-text p { font-size: 0.95rem; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-bio { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .stat-item { padding: 12px 24px; }
  .stat-big { font-size: 2.2rem; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .stat-divider { display: none; }
  .stats-row { gap: 0; }
  .stat-item { width: 50%; padding: 16px; }
}

/* ============================================================
   SHARED INTERACTIVE — applies to all pages
   ============================================================ */

/* ── Page fade-in — use overlay, not body opacity ── */
body { opacity: 1; } /* never hide the body itself */
.page-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg);
  pointer-events: none;
  transition: opacity .4s ease;
}
.page-overlay.gone { opacity: 0; }

/* ── Cursor (shared — injected by shared.js if not in HTML) ── */
#cursor {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: screen;
}
#cursorTrail {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(167,139,250,.4);
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, opacity .3s;
}
body.cursor-hover #cursor  { width: 16px; height: 16px; background: #fff; }
body.cursor-hover #cursorTrail { width: 48px; height: 48px; border-color: rgba(167,139,250,.6); }
body.cursor-click #cursor  { width: 6px; height: 6px; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Stagger children ── */
.reveal-stagger > * {
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:.12s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:.19s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay:.26s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay:.33s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay:.40s; }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.projects-section .filter-bar { overflow-x: auto; padding-bottom: 4px; }
.filter-btn { position: relative; overflow: hidden; }
.filter-btn::after {
  content: ''; position: absolute; inset: 0;
  background: var(--accent); opacity: 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease, opacity .25s;
  border-radius: inherit;
}
.filter-btn.active::after { transform: scaleX(1); opacity: .08; }

/* Projects page uses bento-card structure but auto-height rows */
.projects-section .bento-grid {
  grid-auto-rows: auto;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.projects-section .bento-card {
  justify-content: space-between; /* name+desc at top, footer at bottom */
  min-height: 0;
}
.projects-section .bento-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.projects-section .bento-card-desc {
  -webkit-line-clamp: 4;
  flex: 1; /* push footer to bottom */
}
.projects-section .bento-card-bg {
  font-size: 5rem; /* smaller emoji so it doesn't overwhelm */
  opacity: 0.05;
}
.projects-section .bento-card.hidden { display: none; }

/* Search bar */
.search-wrap {
  position: relative; margin-bottom: 20px;
}
.search-wrap svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--text-dim); pointer-events: none;
}
#projectSearch {
  width: 100%; padding: 10px 16px 10px 42px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 10px; color: var(--text); font-family: var(--font); font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
}
#projectSearch:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
#projectSearch::placeholder { color: var(--text-dim); }

/* Count badge */
.results-count {
  font-size: .78rem; color: var(--text-dim); font-family: var(--mono);
  margin-bottom: 24px; display: block;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Profile photo — circular */
.pfp-wrap {
  position: relative; width: 100px; height: 100px; margin: 0 auto 20px;
}
.pfp-ring {
  position: absolute; inset: -4px; border-radius: 50%;
  background: conic-gradient(from 0deg, #a78bfa, #818cf8, #60a5fa, #a78bfa);
  animation: spinRing 5s linear infinite;
}
@keyframes spinRing { to { transform: rotate(360deg); } }
.pfp-img {
  position: relative; z-index: 1;
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; object-position: center;
  border: 3px solid var(--bg-3);
  display: block;
}

/* Skills bar visualization */
.skill-bar-list { display: flex; flex-direction: column; gap: 14px; }
.skill-bar-item { }
.skill-bar-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.skill-bar-name { font-size: .82rem; color: var(--text); font-weight: 500; }
.skill-bar-pct  { font-size: .72rem; color: var(--text-muted); font-family: var(--mono); }
.skill-bar-track {
  height: 4px; background: var(--bg-3); border-radius: 4px; overflow: hidden;
}
.skill-bar-fill {
  height: 100%; border-radius: 4px; width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 1.2s cubic-bezier(.23,1,.32,1);
}

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 15px; top: 8px; bottom: 8px;
  width: 1px; background: var(--border);
}
.timeline-item {
  display: flex; gap: 20px; padding: 0 0 28px 0;
  opacity: 0; transform: translateX(-12px);
  transition: opacity .5s ease, transform .5s ease;
}
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); margin-top: 5px; position: relative; z-index: 1;
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 4px var(--accent);
  align-self: flex-start;
  margin-left: 11px;
}
.timeline-content { flex: 1; }
.timeline-date { font-size: .72rem; font-family: var(--mono); color: var(--text-muted); margin-bottom: 4px; }
.timeline-title { font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.timeline-desc  { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.form-group input, .form-group textarea {
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-group input:hover, .form-group textarea:hover {
  border-color: var(--border-hover);
}
/* Floating label effect */
.form-group { position: relative; }
.form-group label {
  transition: color .2s;
}
.form-group input:focus ~ label,
.form-group textarea:focus ~ label { color: var(--accent); }

/* Character counter */
.char-count {
  font-size: .72rem; color: var(--text-dim); font-family: var(--mono);
  text-align: right; margin-top: 4px;
}
.char-count.warn { color: #fb923c; }

/* ============================================================
   DETAIL PAGES
   ============================================================ */
.detail-header { overflow: clip; }

/* Animated entry for detail header content */
.detail-back   { animation: slideDown .4s ease both; }
.detail-meta   { animation: slideDown .4s .08s ease both; }
.detail-title  { animation: slideDown .4s .14s ease both; }
.detail-desc   { animation: slideDown .4s .20s ease both; }
.detail-actions { animation: slideDown .4s .26s ease both; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Feature items stagger */
.feature-list .feature-item {
  opacity: 0; transform: translateX(-8px);
  transition: opacity .4s ease, transform .4s ease;
}
.feature-list.visible .feature-item:nth-child(1) { opacity:1; transform:none; transition-delay:.05s; }
.feature-list.visible .feature-item:nth-child(2) { opacity:1; transform:none; transition-delay:.10s; }
.feature-list.visible .feature-item:nth-child(3) { opacity:1; transform:none; transition-delay:.15s; }
.feature-list.visible .feature-item:nth-child(4) { opacity:1; transform:none; transition-delay:.20s; }
.feature-list.visible .feature-item:nth-child(5) { opacity:1; transform:none; transition-delay:.25s; }
.feature-list.visible .feature-item:nth-child(6) { opacity:1; transform:none; transition-delay:.30s; }
.feature-list.visible .feature-item:nth-child(7) { opacity:1; transform:none; transition-delay:.35s; }
.feature-list.visible .feature-item:nth-child(8) { opacity:1; transform:none; transition-delay:.40s; }

/* Tech tags stagger */
.tech-tags { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.tech-tags.visible { opacity: 1; transform: none; }
.tech-tag {
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.tech-tag:hover {
  background: var(--accent-glow); border-color: var(--accent);
  color: var(--accent); transform: translateY(-2px);
}

/* Sidebar cards slide in */
.sidebar-card {
  opacity: 0; transform: translateX(12px);
  transition: opacity .5s ease, transform .5s ease;
}
.sidebar-card.visible { opacity: 1; transform: none; }
.sidebar-card:nth-child(2) { transition-delay: .1s; }
.sidebar-card:nth-child(3) { transition-delay: .2s; }

/* Sidebar link hover */
.sidebar-link { position: relative; overflow: hidden; }
.sidebar-link::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--accent); transform: scaleY(0);
  transition: transform .2s ease; transform-origin: bottom;
}
.sidebar-link:hover::before { transform: scaleY(1); }

/* ============================================================
   EXTRA INTERACTIVE — hero chars, terminal, spotlight, etc.
   ============================================================ */

/* ── Hero title entrance ── */
.hero-title {
  animation: titleIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation-delay: 0.15s;
}
@keyframes titleIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero badge + desc stagger in ── */
.hero-badge {
  animation: titleIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation-delay: 0.05s;
}
.hero-tagline {
  animation: titleIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation-delay: 0.3s;
}
.hero-desc {
  animation: titleIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation-delay: 0.4s;
}
.hero-actions {
  animation: titleIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation-delay: 0.5s;
}

/* ── Nav link animated underline ── */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1); transform-origin: left;
}

/* ── Floating terminal ── */
.hero-terminal {
  position: absolute;
  bottom: 80px; right: 5%;
  width: 280px;
  background: rgba(10,10,11,0.85);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  font-family: var(--mono);
  font-size: 0.75rem;
  z-index: 2;
  animation: terminalFloat 6s ease-in-out infinite;
  opacity: 0;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
}
@keyframes terminalFloat {
  0%   { opacity: 0; transform: translateY(12px); }
  10%  { opacity: 1; }
  50%  { transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0px); }
}
.ht-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.ht-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.ht-red    { background: #ff5f57; }
.ht-yellow { background: #febc2e; }
.ht-green  { background: #28c840; }
.ht-title  { margin-left: auto; color: var(--text-dim); font-size: 0.68rem; }
.ht-body   { padding: 12px 14px; min-height: 80px; }
.ht-line   { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.ht-prompt { color: var(--accent); }
.ht-cmd    { color: var(--text); }
.ht-caret  {
  color: var(--accent); font-size: 0.9rem;
  animation: caretBlink 1s step-end infinite;
}
@keyframes caretBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.ht-output { margin-top: 6px; color: var(--text-muted); line-height: 1.6; }
.ht-output .ht-ok  { color: var(--green); }
.ht-output .ht-dim { color: var(--text-dim); }

@media (max-width: 900px) {
  .hero-terminal { display: none; }
}

/* ── Story row section numbers ── */
.story-row { position: relative; }
.story-row-num {
  position: absolute;
  top: 50%; left: -48px;
  transform: translateY(-50%);
  font-size: 5rem; font-weight: 800;
  font-family: var(--mono);
  color: var(--text);
  opacity: 0.04;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  transition: opacity 0.4s;
}
.story-row:hover .story-row-num { opacity: 0.08; }

@media (max-width: 900px) {
  .story-row-num { display: none; }
}

/* ── Shimmer on story card mock lines ── */
.scm-line {
  background: linear-gradient(90deg, var(--bg-3) 25%, var(--bg-2) 50%, var(--bg-3) 75%);
  background-size: 200% 100%;
  animation: shimmer 2s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── CTA spotlight ── */
.cta-band { position: relative; overflow: hidden; }
.cta-spotlight {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle 300px at var(--sx, 50%) var(--sy, 50%),
    rgba(167,139,250,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.cta-band:hover .cta-spotlight { opacity: 1; }

/* ── Stats glitch effect ── */
@keyframes glitch {
  0%,100% { clip-path: none; transform: none; }
  20% { clip-path: inset(20% 0 60% 0); transform: translate(-2px, 0); }
  40% { clip-path: inset(60% 0 10% 0); transform: translate(2px, 0); }
  60% { clip-path: none; transform: none; }
}
.stat-big.glitching {
  animation: glitch 0.4s steps(1) forwards;
}

/* ── Marquee second track (reverse direction) ── */
.marquee-wrap-reverse .marquee-content {
  animation-direction: reverse;
  animation-duration: 22s;
}
.marquee-content span {
  cursor: default;
  transition: color 0.2s, background 0.2s;
}
.marquee-content span:hover {
  color: var(--text);
  background: var(--bg-3);
}
