/* ═══════════════════════════════════════
   TSC — HOME PAGE STYLES (index.html)
   The Sapientia Collective © 2026
═══════════════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}
.hero-glow1 {
  position: absolute; top: -5%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(91,61,191,0.15) 0%, transparent 68%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: 5%; right: 8%;
  width: 500px; height: 400px;
  background: radial-gradient(circle, rgba(240,176,48,0.06) 0%, transparent 68%);
  pointer-events: none;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(91,61,191,0.12); border: 1px solid rgba(91,61,191,0.30);
  border-radius: 100px; font-family: var(--mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--purple);
  margin-bottom: 36px;
}
.hero-pill-dot { width: 5px; height: 5px; background: var(--purple); border-radius: 50%; animation: blink 2s infinite; }
h1.hh {
  font-family: var(--h); font-size: clamp(68px,10vw,148px);
  line-height: 0.9; letter-spacing: -1px; text-transform: uppercase;
  color: var(--text); max-width: 960px; margin-bottom: 28px;
}
h1.hh .saf { color: var(--purple); }
h1.hh .out { -webkit-text-stroke: 2px rgba(237,233,248,0.2); color: transparent; }
.hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(17px,2vw,23px); color: var(--muted);
  max-width: 540px; line-height: 1.68; margin-bottom: 44px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 72px; }
.hero-stats {
  display: flex; gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.hs { flex: 1; padding: 22px 36px; background: var(--surface); text-align: center; backdrop-filter: blur(10px); }
.hs-n { font-family: var(--h); font-size: 38px; letter-spacing: -0.5px; color: var(--purple); line-height: 1; margin-bottom: 5px; }
.hs-l { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--dimmed); }

/* ── MISSION ── */
.mission { background: var(--bg); }
.mq-text {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(26px,4vw,52px); line-height: 1.25; color: var(--text);
  max-width: 820px; margin: 0 auto 80px; text-align: center; position: relative;
}
.mq-text em { color: var(--purple); font-style: normal; }
.mq-text::before {
  content: '\201C'; position: absolute; top: -24px; left: -10px;
  font-family: var(--h); font-size: 110px; color: rgba(91,61,191,0.16);
  line-height: 1; pointer-events: none;
}
.pillar-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.pillar {
  background: var(--bg2); padding: 48px 40px;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.pillar::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--purple); transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1); transform-origin: left;
}
.pillar:hover { background: var(--bg3); }
.pillar:hover::after { transform: scaleX(1); }
.p-num { font-family: var(--mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--dimmed); margin-bottom: 28px; }
.p-ico { font-size: 40px; margin-bottom: 18px; display: block; }
.p-title { font-family: var(--h); font-size: 26px; letter-spacing: 0.5px; color: var(--text); margin-bottom: 14px; text-transform: uppercase; }
.p-text { font-size: 14px; color: var(--muted); line-height: 1.78; }

/* ── PROJECTS ── */
.projects { background: var(--bg2); }
.proj-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.proj-item:last-child { border-bottom: none; }
.proj-item.flip { direction: rtl; }
.proj-item.flip > * { direction: ltr; }
.proj-vis {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 14px;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  font-size: 100px; position: relative; overflow: hidden;
}
.proj-vis::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(91,61,191,0.10) 0%, transparent 60%);
}
.proj-vis-n { position: absolute; bottom: 18px; right: 22px; font-family: var(--h); font-size: 80px; color: rgba(255,255,255,0.04); line-height: 1; pointer-events: none; }
.proj-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px;
  background: rgba(91,61,191,0.12); border: 1px solid rgba(91,61,191,0.25);
  border-radius: 100px; font-family: var(--mono); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: 14px;
}
.proj-num { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--dimmed); margin-bottom: 10px; }
.proj-title { font-family: var(--h); font-size: 54px; line-height: 0.94; letter-spacing: -0.5px; color: var(--text); text-transform: uppercase; margin-bottom: 18px; }
.proj-desc { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.proj-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pb { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: rgba(237,233,248,0.6); }
.pb-d { width: 20px; height: 20px; background: rgba(91,61,191,0.12); border: 1px solid rgba(91,61,191,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.pb-d::after { content: ''; width: 5px; height: 5px; background: var(--purple); border-radius: 50%; }

/* ── IMPACT ── */
.impact { background: var(--bg); overflow: hidden; position: relative; }
.impact::before {
  content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(91,61,191,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.impact-hdr { text-align: center; margin-bottom: 72px; }
.impact-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.ic { background: var(--bg2); padding: 52px 32px; text-align: center; transition: background 0.3s; position: relative; overflow: hidden; }
.ic:hover { background: var(--bg3); }
.ic::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--purple),transparent); opacity: 0; transition: opacity 0.3s; }
.ic:hover::after { opacity: 1; }
.ic-n { font-family: var(--h); font-size: 70px; letter-spacing: -2px; color: var(--text); line-height: 1; margin-bottom: 8px; }
.ic-n span { color: var(--purple); }
.ic-l { font-family: var(--mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--dimmed); }

/* ── STORY ── */
.story { background: var(--bg2); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.story-vis { position: relative; height: 520px; }
.sv1 { position: absolute; top: 0; left: 0; width: 72%; height: 72%; background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.sv1::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 80%, rgba(91,61,191,0.12) 0%, transparent 60%); }
.sv2 { position: absolute; bottom: 0; right: 0; width: 54%; height: 54%; background: var(--purple); border: 3px solid var(--bg2); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 58px; }
.sv-chip { position: absolute; bottom: 30%; right: -12px; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; box-shadow: 0 24px 60px rgba(0,0,0,0.55); z-index: 10; }
.sv-chip-v { font-family: var(--h); font-size: 26px; color: var(--purple); line-height: 1; }
.sv-chip-l { font-family: var(--mono); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dimmed); margin-top: 4px; }
.story-qt { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--text); line-height: 1.45; margin-bottom: 20px; padding-left: 20px; border-left: 3px solid var(--purple); }
.story-body { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.story-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.sl { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(237,233,248,0.6); }
.sl-i { width: 28px; height: 28px; background: rgba(91,61,191,0.12); border: 1px solid rgba(91,61,191,0.25); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }

/* ── TEAM ── */
.team { background: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; max-width: 600px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-top: 56px; }
.tc { background: var(--bg2); padding: 36px 24px; text-align: center; transition: background 0.3s; }
.tc:hover { background: var(--bg3); }
.tc-av { width: 72px; height: 72px; margin: 0 auto 18px; background: linear-gradient(135deg, #5B3DBF, #F0B030); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: var(--h); font-size: 30px; color: var(--bg); }
.tc-nm { font-family: var(--h); font-size: 17px; letter-spacing: 0.5px; color: var(--text); margin-bottom: 6px; text-transform: uppercase; line-height: 1.2; }
.tc-rl { font-family: var(--mono); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dimmed); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testi { background: var(--bg2); overflow: hidden; }
.testi-track { display: flex; gap: 16px; transition: transform 0.6s cubic-bezier(0.23,1,0.32,1); }
.testi-card { min-width: calc(50% - 8px); background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 44px 40px; flex-shrink: 0; transition: border-color 0.3s; }
.testi-card:hover { border-color: var(--borderh); }
.t-stars { margin-bottom: 20px; color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.t-q { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--text); line-height: 1.65; margin-bottom: 28px; }
.t-auth { display: flex; align-items: center; gap: 14px; }
.t-av { width: 44px; height: 44px; border-radius: 8px; background: linear-gradient(135deg, #5B3DBF, #F0B030); display: flex; align-items: center; justify-content: center; font-family: var(--h); font-size: 20px; color: var(--bg); flex-shrink: 0; }
.t-nm { font-size: 14px; font-weight: 600; color: var(--text); }
.t-rl { font-family: var(--mono); font-size: 10px; letter-spacing: 1px; color: var(--dimmed); margin-top: 2px; }
.testi-ctrl { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
.t-btn { width: 44px; height: 44px; background: var(--surface); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text); transition: all 0.2s; }
.t-btn:hover { background: var(--purple); border-color: var(--purple); color: var(--bg); }
.t-dots { display: flex; gap: 6px; }
.t-dot { width: 6px; height: 6px; border-radius: 3px; background: var(--border); transition: all 0.3s; }
.t-dot.active { background: var(--purple); width: 24px; }

/* ── DONATE ── */
.donate { background: var(--bg); }
.donate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
.don-big { font-family: var(--h); font-size: clamp(64px,9vw,118px); line-height: 0.9; letter-spacing: -1px; text-transform: uppercase; color: var(--text); margin-bottom: 22px; }
.don-big .saf { color: var(--purple); }
.don-big .out { -webkit-text-stroke: 1.5px rgba(237,233,248,0.18); color: transparent; }
.don-sub { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--muted); line-height: 1.65; margin-bottom: 30px; }
.don-trust { display: flex; flex-direction: column; gap: 10px; }
.dt { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.dt-c { width: 20px; height: 20px; background: rgba(26,24,96,0.30); border: 1px solid rgba(112,85,212,0.35); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #5A9B35; flex-shrink: 0; }
.don-panel { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 36px; }
.dam-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.dam { padding: 18px 20px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; transition: all 0.2s; }
.dam:hover, .dam.sel { background: rgba(91,61,191,0.12); border-color: var(--purple); }
.dam-a { font-family: var(--h); font-size: 24px; color: var(--text); line-height: 1; margin-bottom: 4px; }
.dam-i { font-family: var(--mono); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dimmed); }
.dam.sel .dam-i { color: var(--purple); }
.cust-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 16px 20px; margin-bottom: 14px; transition: border-color 0.2s; }
.cust-wrap:focus-within { border-color: var(--purple); }
.cust-lbl { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--dimmed); margin-bottom: 10px; }
.cust-row { display: flex; align-items: center; gap: 8px; }
.cust-rs { font-family: var(--h); font-size: 30px; color: var(--text); line-height: 1; }
.cust-inp { flex: 1; font-family: var(--h); font-size: 30px; color: var(--text); background: transparent; border: none; outline: none; width: 100%; }
.cust-inp::placeholder { color: var(--dimmed); }
.cust-inp::-webkit-inner-spin-button, .cust-inp::-webkit-outer-spin-button { -webkit-appearance: none; }
.cust-hint { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--purple); margin-top: 6px; min-height: 16px; }
.don-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 14px; }
.don-total-l { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--dimmed); }
.don-total-v { font-family: var(--h); font-size: 34px; color: var(--purple); letter-spacing: -0.5px; }
.pay-tabs { display: flex; gap: 6px; margin-bottom: 14px; }
.pay-tab { flex: 1; padding: 10px 8px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; font-family: var(--mono); font-size: 10px; letter-spacing: 1px; color: var(--dimmed); transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 5px; }
.pay-tab:hover { color: var(--text); border-color: var(--borderh); }
.pay-tab.active { background: rgba(91,61,191,0.12); border-color: var(--purple); color: var(--purple); }
.pay-panel { display: none; }
.pay-panel.active { display: block; }
.upi-box { display: flex; gap: 18px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 18px; }
.upi-qr { flex-shrink: 0; border: 1px solid var(--border); border-radius: 6px; padding: 6px; background: #fff; }
.upi-det { display: flex; flex-direction: column; gap: 7px; }
.upi-id-l { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--dimmed); }
.upi-id { font-family: var(--mono); font-size: 12px; color: var(--text); }
.upi-copy { background: var(--surface); border: 1px solid var(--border); border-radius: 5px; padding: 7px 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 1px; color: var(--text); transition: all 0.2s; }
.upi-copy:hover { background: var(--purple); border-color: var(--purple); color: var(--bg); }
.pay-link { display: block; text-align: center; padding: 14px; background: var(--purple); color: var(--text); border-radius: 8px; font-family: var(--b); font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; margin-top: 8px; }
.pay-link:hover { background: var(--purple2); transform: translateY(-1px); }
.pay-secure { font-family: var(--mono); font-size: 10px; color: var(--dimmed); text-align: center; margin-top: 10px; }

/* ── FAQ ── */
.faq { background: var(--bg2); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 96px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--borderh); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; font-size: 15px; font-weight: 500; color: var(--text); gap: 14px; transition: color 0.2s; }
.faq-q:hover { color: var(--purple); }
.faq-ico { width: 28px; height: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: all 0.3s; color: var(--muted); }
.faq-item.open .faq-ico { background: var(--purple); border-color: var(--purple); color: var(--bg); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-in { padding: 0 22px 20px; font-size: 14px; color: var(--muted); line-height: 1.82; }

/* ── CTA BANNER ── */
.cta { background: var(--bg); padding: 120px 48px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(91,61,191,0.12) 0%, transparent 68%); pointer-events: none; }
.cta-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--purple); margin-bottom: 22px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.cta-h { font-family: var(--h); font-size: clamp(52px,8vw,112px); line-height: 0.92; letter-spacing: -1px; text-transform: uppercase; color: var(--text); max-width: 800px; margin: 0 auto 24px; }
.cta-h .saf { color: var(--purple); }
.cta-sub { font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--muted); margin-bottom: 44px; line-height: 1.6; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── RESPONSIVE (HOME) ── */
@media(max-width:1024px) {
  .pillar-grid, .impact-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .proj-item, .story-grid, .donate-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .proj-item.flip { direction: ltr; }
  .story-vis { display: none; }
  .testi-card { min-width: 100%; }
}
@media(max-width:640px) {
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .hs { min-width: calc(50% - 0.5px); }
  .impact-grid, .team-grid, .pillar-grid { grid-template-columns: 1fr; }
  .dam-grid { grid-template-columns: 1fr; }
  .cta { padding: 80px 24px; }
}

/* ── REVIEW FORM ── */
.review-form-wrap {
  margin-bottom: 40px;
}
.review-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 36px;
  max-width: 680px;
  animation: slideDown 0.3s cubic-bezier(0.23,1,0.32,1);
}
@keyframes slideDown { from { opacity:0; transform:translateY(-12px); } to { opacity:1; transform:none; } }
.review-form-header {
  font-family: var(--h); font-size: 22px; letter-spacing: 0.5px;
  color: var(--text); margin-bottom: 18px; text-transform: uppercase;
}
.rf-stars { display: flex; gap: 6px; margin-bottom: 18px; }
.rf-star {
  font-size: 26px; color: var(--border);
  cursor: pointer; transition: color 0.15s;
}
.rf-star.active, .rf-star:hover { color: var(--gold); }
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.rf-input {
  width: 100%; padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--b); font-size: 14px;
  color: var(--text); outline: none;
  transition: border-color 0.2s;
}
.rf-input::placeholder { color: var(--dimmed); }
.rf-input:focus { border-color: var(--purple); }
.rf-textarea {
  resize: none; height: 90px;
  margin-bottom: 6px; display: block;
}
.rf-chars {
  font-family: var(--mono); font-size: 10px; letter-spacing: 1px;
  color: var(--dimmed); text-align: right; margin-bottom: 16px;
}
.rf-actions { display: flex; gap: 10px; }
.rf-msg {
  font-family: var(--mono); font-size: 11px; letter-spacing: 1px;
  margin-top: 12px; min-height: 16px;
}
.rf-msg.ok { color: var(--gold); }
.rf-msg.err { color: #f66; }

/* ── REVIEWS EMPTY STATE ── */
.reviews-empty {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; padding: 56px 0; text-align: center;
}
.re-icon { font-size: 48px; }
.re-text { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--muted); }

/* ── TESTI CARD — concise ── */
.testi-card { min-width: calc(50% - 8px); background: var(--bg3); border: 1px solid var(--border); border-radius: 14px; padding: 28px 30px; flex-shrink: 0; transition: border-color 0.3s; }
.testi-card:hover { border-color: var(--borderh); }
.t-stars { margin-bottom: 10px; color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.t-q { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--text); line-height: 1.55; margin-bottom: 18px; }
.t-auth { display: flex; align-items: center; gap: 10px; }
.t-av { width: 36px; height: 36px; border-radius: 7px; background: linear-gradient(135deg, #5B3DBF, #F0B030); display: flex; align-items: center; justify-content: center; font-family: var(--h); font-size: 16px; color: var(--bg); flex-shrink: 0; }
.t-nm { font-size: 13px; font-weight: 600; color: var(--text); }
.t-rl { font-family: var(--mono); font-size: 9px; letter-spacing: 1px; color: var(--dimmed); margin-top: 2px; }
