:root {
  --bg: #ffffff;
  --ink: #0c0c0e;
  --ink-soft: #4a4a52;
  --ink-faint: #8b8b93;
  --accent: #2c2be0;
  --line: #ececf0;
  --side: 280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
strong { font-weight: 700; }

/* ================= SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--side);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  background: var(--bg);
  z-index: 40;
}
.avatar {
  width: 128px; height: 128px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #4b4bff, #14116b 70%);
  display: grid; place-items: center;
  margin-bottom: 46px;
  box-shadow: 0 10px 30px rgba(44,43,224,0.28);
  transition: transform 0.4s var(--ease);
}
.avatar:hover { transform: scale(1.04) rotate(-2deg); }
.avatar-mono {
  font-weight: 900; font-size: 42px; color: #fff; letter-spacing: -0.03em;
}
.side-nav { display: flex; flex-direction: column; gap: 6px; }
.side-link {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 700; font-size: 17px;
  color: var(--ink);
  transition: background 0.25s, color 0.25s;
}
.side-link svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
}
.side-link:hover { background: #f4f4f8; }
.side-link.active { background: var(--accent); color: #fff; }
.side-lang {
  margin-top: 30px;
  font-weight: 700; font-size: 15px;
  color: var(--ink-faint);
}
.side-lang .on { color: var(--accent); }
.side-socials {
  margin-top: auto;
  display: flex; gap: 14px;
}
.side-socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), background 0.25s;
}
.side-socials a:hover { transform: translateY(-3px); background: var(--accent); }
.side-socials svg { width: 20px; height: 20px; fill: #fff; }

/* ================= WORK CTA ================= */
.work-cta {
  position: fixed;
  top: 34px; right: 40px;
  z-index: 45;
  display: flex; align-items: center; gap: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800; font-size: 16px; line-height: 1.05;
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(44,43,224,0.32);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.work-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(44,43,224,0.42); }
.work-cta svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ================= MAIN ================= */
.main {
  margin-left: var(--side);
  max-width: 1080px;
  padding: 0 clamp(28px, 6vw, 90px);
}
.block {
  padding: clamp(80px, 13vh, 150px) 0;
  border-bottom: 1px solid var(--line);
}
.block:last-child { border-bottom: none; }

/* HERO */
.hero { padding-top: clamp(90px, 14vh, 150px); }
.kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 22px;
}
.big {
  font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.045em;
}
.big.sub { margin-top: 6px; }
.ink-accent { color: var(--accent); }
.wave { display: inline-block; }
.hero-lead {
  max-width: 600px;
  margin: 30px 0 34px;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  font-weight: 700; font-size: 15px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--accent); transform: translateY(-2px); }
.btn-out { border-color: var(--line); color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.btn-out:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ico { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 60px;
}
.stat {
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fafafc;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.stat:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 34px rgba(44,43,224,0.12);
}
.stat b {
  display: block;
  font-weight: 900; font-size: 2.4rem; letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat span { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); line-height: 1.4; display: block; }

/* SECTION TITLE */
.section-title {
  font-weight: 900;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  letter-spacing: -0.04em;
  margin-bottom: 48px;
}
.spark { color: var(--accent); }

/* PROJECT CARDS */
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.card {
  border-radius: 22px;
  padding: 30px 30px 26px;
  display: flex; flex-direction: column;
  min-height: 360px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,0.10); }
.grad-1 { background: linear-gradient(135deg, #d9f2ff, #fef6e4 55%, #ffe8f0); }
.grad-2 { background: linear-gradient(135deg, #fff4e0, #ffe9d4 60%, #ffd9c9); }
.grad-3 { background: linear-gradient(135deg, #e7e3ff, #f0e9ff 55%, #dceaff); }
.grad-4 { background: linear-gradient(135deg, #e4fbef, #eafbe4 55%, #fdf6da); }
.card-name { font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.mock {
  flex: 1;
  display: grid; place-items: center;
  padding: 24px 6px;
}
/* Live-site screenshot in a browser frame */
.browser {
  width: 92%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(20,20,40,0.20);
  border: 1px solid rgba(0,0,0,0.06);
}
.dots { display: flex; gap: 5px; padding: 11px 12px; background: #f3f3f7; border-bottom: 1px solid rgba(0,0,0,0.05); }
.dots i { width: 8px; height: 8px; border-radius: 50%; background: #d3d3de; }
.browser img {
  display: block;
  width: 100%;
  height: 178px;
  object-fit: cover;
  object-position: top center;
}
/* GitHub-style merged-PR mock */
.pr-card {
  width: 92%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 18px 18px 16px;
  box-shadow: 0 18px 40px rgba(20,20,40,0.14);
}
.pr-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.pr-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #8250df; color: #fff;
  font-weight: 600; font-size: 12.5px;
  padding: 4px 11px; border-radius: 100px;
}
.pr-badge svg { width: 13px; height: 13px; fill: #fff; }
.pr-num { font-family: "JetBrains Mono", monospace; font-size: 13px; color: var(--ink-faint); }
.pr-title { font-weight: 700; font-size: 15px; line-height: 1.35; margin-bottom: 8px; }
.pr-meta { font-family: "JetBrains Mono", monospace; font-size: 11.5px; color: var(--ink-faint); }
.card-foot { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.ext { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card-link { font-weight: 600; font-size: 14.5px; text-decoration: underline; text-underline-offset: 3px; }

/* EXPERIENCE */
.exp-list { display: flex; flex-direction: column; }
.exp { padding: 32px 0; border-top: 1px solid var(--line); }
.exp:last-child { border-bottom: 1px solid var(--line); }
.exp-top { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.exp-top h3 { font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; }
.exp-when { font-family: "JetBrains Mono", monospace; font-size: 13px; color: var(--ink-faint); }
.exp-co { color: var(--accent); font-weight: 600; font-size: 14.5px; margin: 4px 0 16px; }
.exp ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.exp li { position: relative; padding-left: 22px; color: var(--ink-soft); font-size: 15.5px; }
.exp li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.exp-stack { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.exp-stack span {
  font-size: 12.5px; font-weight: 500;
  padding: 5px 11px;
  border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-soft); background: #fafafc;
}

/* ABOUT */
.about-big {
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 22ch;
  margin-bottom: 26px;
}
.about-p { max-width: 620px; color: var(--ink-soft); margin-bottom: 40px; }
.skill-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 36px; }
.tag-group h4 {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--accent); margin-bottom: 8px;
}
.tag-group p { color: var(--ink-soft); font-size: 15px; }
.edu-row { display: flex; flex-wrap: wrap; gap: 12px; }
.edu-row span {
  font-size: 14px; font-weight: 600;
  padding: 9px 16px; border-radius: 100px;
  background: #f4f4f8; color: var(--ink-soft);
}

/* CONTACT */
.contact-lead { font-size: 1.2rem; color: var(--ink-soft); margin-bottom: 22px; max-width: 540px; }
.contact-mail {
  display: inline-block;
  font-weight: 900;
  font-size: clamp(1.7rem, 5vw, 3.2rem);
  letter-spacing: -0.04em;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 3px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size 0.4s var(--ease), color 0.3s;
  padding-bottom: 4px;
}
.contact-mail:hover { color: var(--accent); background-size: 100% 3px; }
.contact-links { display: flex; gap: 26px; margin-top: 34px; font-weight: 600; font-size: 15px; }
.contact-links a { color: var(--ink-faint); transition: color 0.25s; }
.contact-links a:hover { color: var(--accent); }
.foot { margin-top: 56px; font-size: 13px; color: var(--ink-faint); }

/* REVEAL */
.block > * { will-change: transform; }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ================= RESPONSIVE ================= */
@media (max-width: 940px) {
  :root { --side: 0px; }
  .sidebar {
    position: sticky; top: 0; left: 0;
    width: 100%; height: auto;
    flex-direction: row; align-items: center;
    padding: 14px 20px; gap: 16px;
    border-right: none; border-bottom: 1px solid var(--line);
  }
  .sidebar { gap: 10px; }
  .avatar { width: 44px; height: 44px; flex: 0 0 44px; margin-bottom: 0; box-shadow: none; }
  .avatar img { object-position: 50% 22%; }
  .avatar-mono { font-size: 16px; }
  .side-nav { flex-direction: row; gap: 2px; margin-left: 2px; }
  .side-link { padding: 9px 11px; font-size: 15px; }
  .side-link svg { width: 20px; height: 20px; }
  .side-link span { display: none; }
  .side-lang { display: none; }
  .side-socials { margin-left: auto; gap: 8px; }
  .side-socials a { width: 36px; height: 36px; flex: 0 0 36px; }
  .work-cta { display: none; }
  .main { margin-left: 0; }
  .cards { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .skill-tags { grid-template-columns: 1fr; }
  .hero-actions { gap: 10px; }
  .exp-top { gap: 6px; }
  .contact-mail { font-size: clamp(1.25rem, 7vw, 2rem); overflow-wrap: anywhere; }
  .contact-links { gap: 18px; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ================= OPEN SOURCE ================= */
.oss-lead { max-width: 600px; color: var(--ink-soft); font-size: 1.1rem; margin: -26px 0 34px; }
.oss-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.oss-summary > div { padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: #fafafc; }
.oss-summary b { display: block; font-weight: 900; font-size: 2.1rem; letter-spacing: -0.04em; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.oss-summary span { font-size: 13.5px; font-weight: 500; color: var(--ink-soft); }
.oss-list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.oss-row {
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px 24px;
  border: 1px solid var(--line); border-radius: 18px;
  background: #fff;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.oss-row:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 16px 34px rgba(44,43,224,0.12); }
.oss-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.oss-repo { font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.oss-org { font-weight: 500; color: var(--ink-faint); }
.oss-badge {
  display: inline-flex; align-items: center; gap: 6px; flex: 0 0 auto;
  font-weight: 600; font-size: 12px; color: #fff;
  padding: 4px 10px; border-radius: 100px;
}
.oss-badge svg { width: 12px; height: 12px; fill: #fff; }
.oss-badge.merged { background: #8250df; }
.oss-badge.open { background: #1f883d; }
.oss-title { font-family: "JetBrains Mono", monospace; font-size: 13.5px; font-weight: 500; color: var(--ink); line-height: 1.45; }
.oss-note { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.oss-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 6px; }
.oss-meta span { font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 100px; border: 1px solid var(--line); color: var(--ink-soft); background: #fafafc; }
.oss-meta .oss-num { font-family: "JetBrains Mono", monospace; }
.oss-all { display: inline-block; margin-top: 28px; font-weight: 700; font-size: 15px; color: var(--accent); }
.oss-all:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 940px) {
  .oss-list { grid-template-columns: 1fr; }
  .oss-summary { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .oss-summary > div { padding: 16px 14px; }
  .oss-summary b { font-size: 1.7rem; }
}

/* ================= PROJECT CARD DETAILS ================= */
.card-desc { margin-top: 14px; font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.card-stack { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.card-stack span {
  font-size: 12.5px; font-weight: 500;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.06);
  color: var(--ink-soft);
}

/* ================= POLISH ================= */
::selection { background: rgba(44,43,224,0.16); }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 8px; }
.skip {
  position: fixed; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 14px;
  padding: 10px 16px; border-radius: 10px; transition: top 0.2s;
}
.skip:focus { top: 16px; }
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 60; pointer-events: none; }
.progress i { display: block; height: 100%; width: 100%; background: var(--accent); transform-origin: 0 50%; transform: scaleX(0); }

.status {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-soft);
  padding: 7px 14px 7px 12px; border: 1px solid var(--line); border-radius: 100px;
  background: #fafafc; margin-bottom: 22px;
}
.status .dot { width: 8px; height: 8px; border-radius: 50%; background: #1f9d55; box-shadow: 0 0 0 0 rgba(31,157,85,0.5); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31,157,85,0.45); } 70% { box-shadow: 0 0 0 8px rgba(31,157,85,0); } 100% { box-shadow: 0 0 0 0 rgba(31,157,85,0); } }

.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chips span {
  font-size: 13.5px; font-weight: 500; color: var(--ink);
  padding: 6px 12px; border-radius: 100px;
  background: #fafafc; border: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s;
}
.chips span:hover { border-color: var(--accent); color: var(--accent); }
.skill-tags { gap: 28px 32px; }

.card img { transition: transform 0.6s var(--ease); }
.card:hover .browser img { transform: scale(1.02); }
.top-link { color: var(--ink-soft); font-weight: 600; }
.top-link:hover { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .status .dot { animation: none; }
  .progress { display: none; }
}

/* ================= PROFESSIONAL PASS ================= */
.section-title { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.eyebrow-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem; font-weight: 500; color: var(--accent);
  letter-spacing: 0.05em;
  border: 1px solid var(--line); border-radius: 8px;
  padding: 4px 10px; align-self: center;
}
/* Calmer, consistent cards */
.card { background: #fafafc; border: 1px solid var(--line); }
.card:hover { border-color: var(--accent); box-shadow: 0 22px 46px rgba(20,20,40,0.10); }
.card-name { color: var(--ink); }
/* Education as clean rows */
.edu-row { flex-direction: column; gap: 10px; }
.edu-item {
  font-size: 15px; color: var(--ink-soft);
  display: flex; gap: 12px; align-items: baseline;
  background: none; padding: 0; border-radius: 0;
}
.edu-item .edu-k {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink-faint); flex: 0 0 84px;
}

/* ================= TIGHTER RHYTHM + SMOOTHER ================= */
html { scroll-behavior: smooth; }

/* Pull sections closer together */
.block { padding: clamp(46px, 7vh, 78px) 0; }
.hero { padding-top: clamp(52px, 9vh, 96px); }
.section-title { margin-bottom: clamp(26px, 3vh, 34px); }
.stat-row { margin-top: clamp(34px, 5vh, 46px); }

/* Denser hero */
.hero-lead { margin: 22px 0 26px; }
.big { line-height: 0.98; }

/* Denser grids */
.cards { gap: 20px; }
.oss-list { gap: 14px; }
.oss-summary { margin-bottom: 22px; }
.skill-tags { gap: 22px 28px; margin-bottom: 30px; }
.exp { padding: 26px 0; }
.about-p { margin-bottom: 30px; }
.about-big { margin-bottom: 20px; }

/* Smoother, subtler reveal */
.reveal { transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }

/* Smooth, unified hover motion everywhere */
a, .card, .stat, .oss-row, .btn, .chips span, .side-socials a, .side-link {
  transition: transform 0.28s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.2s var(--ease), box-shadow 0.3s var(--ease);
}

@media (max-width: 940px) {
  .block { padding: clamp(38px, 6vh, 60px) 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ================= ABOUT PHOTO ================= */
.about-photo {
  float: right;
  width: 240px; max-width: 40%; height: auto;
  margin: 0 0 20px 32px;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(20,20,40,0.12);
}
@media (max-width: 640px) {
  .about-photo { float: none; width: 100%; max-width: 260px; margin: 0 0 24px; display: block; }
}

/* ================= ARROWS & CUES ================= */
.arw { display: inline-block; transition: transform 0.25s var(--ease); }
.btn:hover .arw, .card:hover .arw, .oss-row:hover .arw { transform: translateX(4px); }
.section-title::before {
  content: "→";
  color: var(--accent);
  font-weight: 700;
  margin-right: 2px;
  font-size: 0.7em;
}
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: max-content; margin: 34px auto 0;
  font-family: "JetBrains Mono", monospace; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-faint);
}
.scroll-cue .chev { font-size: 18px; color: var(--accent); animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(5px);} }
.oss-all::after, .project-link::after { content: ""; }
@media (prefers-reduced-motion: reduce) { .scroll-cue .chev { animation: none; } }

/* ================= ACTIVE NAV STATE ================= */
.side-link { position: relative; }
.side-link.active { background: var(--accent); color: #fff; }
.side-link.active svg { stroke: #fff; }
.side-link.active::before {
  content: ""; position: absolute; left: -14px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 22px; border-radius: 4px; background: var(--accent);
}
@media (max-width: 940px) {
  .side-link.active::before { display: none; }
  .side-link.active { background: var(--accent); }
}
