
:root {
  --background: #0c0e10;
  --foreground: #e2e8f0;
  --bg2: #111418;
  --bg3: #181d22;
  --border: #1e252c;
  --border2: #252e38;
  --main: #ef4444;
  --main-dim: #dc2626;
  --cyan: #67e8f9;
  --orange: #fb923c;
  --comment: #4a5568;
  --text: #e2e8f0;
  --text2: #94a3b8;
  --text3: #475569;

  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --sans: 'Sora', sans-serif;
  --window-radius: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--text);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
  z-index: 1;
  will-change: auto;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

@media (max-width: 768px) {
  body::before, body::after { display: none; }
}

.wrapper { max-width: 960px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.topbar { position: sticky; top: 0; z-index: 50; }

@media (max-width: 640px) {
  .wrapper { padding: 0 14px; }
}

.window {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--window-radius);
  overflow: hidden;
  margin-bottom: 16px;
  animation: fadeUp 0.4s ease both;
}

.window-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
  user-select: none;
}

.dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.window-title {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text3);
  margin-left: 6px;
  letter-spacing: 0.05em;
}
.window-title span { color: var(--main); }
.window-body { padding: 24px; }

.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 14, 16, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.topbar-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 52px;
}
.topbar-logo {
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  color: var(--main); text-decoration: none; letter-spacing: 0.05em;
}
.topbar-logo::before { content: '> '; color: var(--comment); }
.topbar-nav { display: flex; gap: 0; }
.topbar-nav a {
  font-family: var(--mono); font-size: 12px;
  color: var(--text2); text-decoration: none;
  padding: 6px 14px; border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.03em;
}
.topbar-nav a:hover { color: var(--main); background: rgba(239, 68, 68, 0.07); }
.topbar-nav a::before { content: './'; color: var(--comment); font-size: 11px; }

.hero { padding: 64px 0 32px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start;
}
.hero-prompt {
  font-family: var(--mono); font-size: 13px; color: var(--comment); margin-bottom: 4px;
}
.hero-prompt::before { content: '$ '; color: var(--main); }
.hero-name {
  font-family: var(--sans);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 8px;
}
.hero-name-accent { color: var(--main); }
.hero-role {
  font-family: var(--mono); font-size: 15px; color: var(--cyan);
  margin-bottom: 20px; letter-spacing: 0.02em;
}
.hero-role::before { content: '// '; color: var(--comment); }
.hero-desc {
  font-family: var(--mono); font-size: 13px; color: var(--text2);
  max-width: 560px; line-height: 1.8; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 4px;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.03em;
  transition: all 0.15s; cursor: pointer; border: none;
}
.btn-primary { background: var(--main); color: #000; }
.btn-primary:hover { background: #f87171; }
.btn-ghost {
  background: transparent; color: var(--text2);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--main); color: var(--main); }

.status-row { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--main); box-shadow: 0 0 8px var(--main);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--main); }
  50% { opacity: 0.6; box-shadow: 0 0 14px var(--main); }
}
.status-text {
  font-family: var(--mono); font-size: 12px; color: var(--main);
  letter-spacing: 0.05em; text-transform: uppercase;
}

.skin-window .window-body {
  padding: 20px;
  background: linear-gradient(180deg, #0d1117 0%, #10161d 100%);
  min-height: 320px;
}
.profile-card {
  width: 100%; background: var(--bg3);
  border: 1px solid var(--border2); border-radius: 14px;
  padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
}
.skin-img {
  width: 136px; height: 136px; display: block; object-fit: cover;
  border-radius: 24px; border: 2px solid rgba(239, 68, 68, 0.35);
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.35));
}
.profile-name {
  font-family: var(--sans); font-size: 20px; font-weight: 700;
  letter-spacing: -0.01em; color: var(--text); line-height: 1.2;
}
.profile-handle {
  font-family: var(--mono); font-size: 13px; color: var(--main); letter-spacing: 0.03em;
}
.profile-note {
  font-size: 11px; color: var(--text2);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.profile-chips {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 2px;
}
.profile-chip {
  font-size: 10px; color: var(--text2);
  border: 1px solid var(--border2); border-radius: 999px;
  padding: 4px 9px; background: #0f141a;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.skin-meta {
  padding: 14px 16px; border-top: 1px solid var(--border);
  display: flex; gap: 8px;
}
.profile-meta-link {
  flex: 1; text-align: center; text-decoration: none;
  border: 1px solid var(--border2); border-radius: 6px;
  padding: 8px 10px; font-size: 11px; color: var(--text2);
  text-transform: lowercase; transition: all 0.15s;
}
.profile-meta-link:hover {
  color: var(--main); border-color: var(--main); background: rgba(239, 68, 68, 0.07);
}

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--window-radius);
  overflow: hidden;
  animation: fadeUp 0.4s ease 0.1s both;
}
.stat-cell {
  background: var(--bg2); padding: 20px 16px; text-align: center;
  transition: background 0.15s;
}
.stat-cell:hover { background: var(--bg3); }
.stat-n {
  font-family: var(--sans); font-size: 28px; font-weight: 800;
  color: var(--main); line-height: 1; letter-spacing: -0.02em;
}
.stat-l {
  font-family: var(--mono); font-size: 11px; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px;
}

section { margin-bottom: 16px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-bio {
  font-family: var(--mono); font-size: 13px;
  color: var(--text2); line-height: 1.9;
  white-space: pre-wrap;
}
.kw-string { color: var(--main); }
.kw-comment { color: var(--comment); font-style: italic; }
.kw-var { color: var(--cyan); }
.kw-fn { color: var(--orange); }

.skills-list { display: flex; flex-direction: column; gap: 8px; }
.skill-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 4px;
  font-size: 12px; transition: border-color 0.15s;
}
.skill-row:hover { border-color: var(--border2); }
.skill-row-name { color: var(--cyan); font-weight: 600; min-width: 110px; }
.skill-bar-track {
  flex: 1; height: 3px; background: var(--border2);
  border-radius: 2px; overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--main-dim), var(--main));
  border-radius: 2px; transform-origin: left;
  animation: fillBar 1.2s ease-out both;
}
@keyframes fillBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.skill-pct { font-size: 11px; color: var(--text3); min-width: 32px; text-align: right; }

.tech-group { margin-top: 16px; }
.tech-group-label {
  font-size: 11px; color: var(--comment); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: var(--mono); font-size: 11px;
  padding: 4px 10px; border-radius: 3px;
  border: 1px solid var(--border2); color: var(--text2);
  background: var(--bg3); transition: all 0.15s;
}
.tag:hover { border-color: var(--main); color: var(--main); }

.section-label {
  font-family: var(--mono); font-size: 11px;
  color: var(--comment); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

.portfolio-window .window-body { padding: 0; }
.portfolio-top {
  display: grid; grid-template-columns: 280px 1fr;
}
.portfolio-img-side {
  background: linear-gradient(135deg, #0d1a12, #0e1a23);
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--border);
  padding: 32px; min-height: 200px;
}
.portfolio-logo {
  width: 120px; height: 120px; border-radius: 20px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(239, 68, 68, 0.3));
}
.portfolio-info { padding: 28px; }
.portfolio-title {
  font-family: var(--sans); font-size: 24px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text); margin-bottom: 8px;
}
.portfolio-desc {
  font-family: var(--mono); font-size: 12px; color: var(--text2);
  line-height: 1.8; margin-bottom: 20px;
}
.portfolio-nums {
  display: flex; gap: 24px; padding-top: 16px;
  border-top: 1px solid var(--border); margin-bottom: 20px;
}
.p-num-val {
  font-family: var(--sans); font-size: 20px; font-weight: 800;
  color: var(--main); letter-spacing: -0.02em;
}
.p-num-lbl {
  font-family: var(--mono); font-size: 10px; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px;
}

.featured-wrap { padding: 22px 24px 24px; border-top: 1px solid var(--border); }
.featured-label {
  font-family: var(--mono); font-size: 11px; color: var(--comment);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px;
}

.commissions-wrap { padding: 22px 24px 24px; }
.commissions-head {
  font-family: var(--mono); font-size: 12px; color: var(--text2);
  margin-bottom: 14px; line-height: 1.8;
}
.commissions-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px;
}
.commission-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 6px; padding: 14px; transition: border-color 0.15s;
}
.commission-card:hover { border-color: var(--main); }
.commission-title {
  font-family: var(--mono); font-size: 12px; color: var(--main);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px;
}
.commission-desc {
  font-family: var(--mono); font-size: 11px; color: var(--text2); line-height: 1.7;
}

.link-sm {
  font-family: var(--mono); font-size: 12px; color: var(--text3);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.15s;
}
.link-sm:hover { color: var(--main); }
.link-sm::after { content: ' →'; }

.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.contact-item {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 4px; padding: 18px 16px;
  text-decoration: none; display: flex; align-items: center; gap: 12px;
  transition: all 0.2s;
  animation: fadeUp 0.5s cubic-bezier(.2,.7,.2,1) both;
  min-height: 92px;
}
.contact-item:hover {
  border-color: var(--main); background: rgba(239, 68, 68, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -22px rgba(239, 68, 68, 0.65);
}
.contact-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; color: var(--main);
}
.contact-text-platform {
  font-family: var(--mono); font-size: 11px; color: var(--text3);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.contact-text-handle {
  font-family: var(--mono); font-size: 13px; color: var(--text);
  font-weight: 600; margin-top: 2px;
}
.contact-text-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--text3);
  margin-top: 5px;
  line-height: 1.5;
}
.contact-item:hover .contact-text-handle { color: var(--main); }

footer { border-top: 1px solid var(--border); padding: 24px; margin-top: 32px; }
.footer-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-left { font-family: var(--mono); font-size: 12px; color: var(--text3); }
.footer-left span { color: var(--comment); }
.footer-links { display: flex; gap: 16px; }
.footer-links a {
  font-family: var(--mono); font-size: 12px; color: var(--text3);
  text-decoration: none; transition: color 0.15s;
}
.footer-links a:hover { color: var(--main); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* page transition + staggered window entrance */
main.wrapper { animation: fadeIn 0.35s ease both; }
.window { animation: fadeUp 0.5s cubic-bezier(.2,.7,.2,1) both; }
.window:nth-of-type(2) { animation-delay: 0.08s; }
.window:nth-of-type(3) { animation-delay: 0.16s; }
.window:nth-of-type(4) { animation-delay: 0.24s; }
.project-card { animation: fadeUp 0.5s cubic-bezier(.2,.7,.2,1) both; }
.project-card:nth-child(2) { animation-delay: 0.08s; }
.project-card:nth-child(3) { animation-delay: 0.16s; }
.project-card:nth-child(4) { animation-delay: 0.24s; }
.project-card:nth-child(n+5) { animation-delay: 0.32s; }

.project-card { transition: transform .25s ease, border-color .2s ease, box-shadow .25s ease; }
.project-card:hover { transform: translateY(-3px); border-color: var(--main); box-shadow: 0 12px 30px -16px rgba(239,68,68,0.35); }

.hero-cursor::after {
  content: '_'; color: var(--main); margin-left: 2px;
  animation: blink 1s steps(1) infinite;
}

/* loading skeleton helper */
.skeleton-line {
  height: 12px; border-radius: 3px;
  background: linear-gradient(90deg, var(--bg3) 25%, var(--border2) 50%, var(--bg3) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

@media (max-width: 768px) {
  .hero { padding: 32px 0 16px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-skin-panel { order: -1; max-width: 320px; margin: 0 auto; width: 100%; }
  .stats-row { grid-template-columns: repeat(2, 1fr) !important; }
  .about-grid { grid-template-columns: 1fr; }
  .portfolio-top { grid-template-columns: 1fr; }
  .portfolio-img-side { padding: 20px; min-height: 140px; }
  .portfolio-logo { width: 88px; height: 88px; }
  .commissions-grid, .commissions-grid-fluid { grid-template-columns: 1fr; }
  .contact-grid, .contact-grid-fluid { grid-template-columns: 1fr; }
  .topbar-nav a::before { content: ''; }
  .window-title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .review-head { flex-wrap: wrap; }
  .stars { margin-left: auto; }
}
@media (max-width: 480px) {
  .topbar-nav a { padding: 6px 10px; font-size: 11px; }
  .topbar-logo { font-size: 12px; }
  .window-body { padding: 16px; }
  .portfolio-info { padding: 18px; }
  .project-content { padding: 16px; }
  .commissions-wrap { padding: 16px; }
  .hero-name { font-size: clamp(36px, 11vw, 56px); }
  .stat-n { font-size: 22px; }
  .project-img { height: 130px; }
}


/* nav active link */
.topbar-nav a.active { color: var(--main); background: rgba(239, 68, 68, 0.07); }

/* projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}
.commissions-grid-fluid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}
.contact-grid-fluid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: start;
}
.contact-lead {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp 0.55s cubic-bezier(.2,.7,.2,1) both;
}
.contact-kicker {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
}
.contact-title {
  font-family: var(--sans);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 12ch;
}
.contact-copy {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.9;
  color: var(--text2);
  max-width: 58ch;
}
.contact-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-note-card {
  background: linear-gradient(180deg, rgba(17,20,24,0.95), rgba(12,16,21,0.95));
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 15px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-note-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
}
.contact-note-card strong {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 600;
}
.contact-primary-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--main) 45%, var(--border));
  background:
    linear-gradient(135deg, rgba(239,68,68,0.12), rgba(103,232,249,0.06)),
    linear-gradient(180deg, rgba(17,20,24,0.98), rgba(12,15,19,0.98));
  box-shadow: 0 18px 34px -24px rgba(239, 68, 68, 0.45);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.contact-primary-card:hover {
  transform: translateY(-2px);
  border-color: var(--main);
  box-shadow: 0 22px 40px -24px rgba(239, 68, 68, 0.55);
}
.contact-primary-badge {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(239,68,68,0.25);
  background: rgba(239,68,68,0.1);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--main);
}
.contact-primary-platform {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-primary-handle {
  font-family: var(--sans);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.1;
  color: var(--text);
  font-weight: 700;
}
.contact-primary-cta {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.project-card { margin-bottom: 0; }
.project-body { display: flex; flex-direction: column; }
.project-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, #0d1a12, #0e1a23);
  border-bottom: 1px solid var(--border);
}
.project-content { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.project-head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.project-name {
  font-family: var(--sans); font-size: 18px; font-weight: 800;
  color: var(--text); letter-spacing: -0.02em;
}
.project-brand {
  font-family: var(--mono); font-size: 10px; color: var(--main);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.project-summary {
  font-family: var(--mono); font-size: 12px; color: var(--text2); line-height: 1.7;
}

.review-card {
  margin-top: 8px;
  background: linear-gradient(180deg, var(--bg3), #0f1318);
  border: 1px solid var(--border);
  border-left: 3px solid var(--main);
  border-radius: 6px;
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute; top: -6px; right: 12px;
  font-family: var(--sans); font-size: 48px; line-height: 1;
  color: var(--main); opacity: 0.2;
}
.review-head { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--border2);
  object-fit: cover; flex-shrink: 0;
}
.review-meta { flex: 1; min-width: 0; }
.review-name {
  font-family: var(--mono); font-size: 12px; color: var(--text); font-weight: 700;
  letter-spacing: 0.02em;
}
.review-handle {
  font-family: var(--mono); font-size: 10px; color: var(--text3); margin-top: 1px;
}
.stars {
  display: inline-flex; align-items: center; gap: 1px;
  font-size: 13px; letter-spacing: 1px; line-height: 1;
}
.star { display: inline-block; }
.star-full { color: var(--main); }
.star-empty { color: var(--border2); }
.star-half {
  background: linear-gradient(90deg, var(--main) 50%, var(--border2) 50%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stars-num {
  margin-left: 6px; font-family: var(--mono); font-size: 10px;
  color: var(--text3); -webkit-text-fill-color: var(--text3);
}
.review-text {
  font-family: var(--mono); font-size: 12px; color: var(--text2);
  line-height: 1.7; font-style: italic;
}

@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr; }
  .contact-shell { grid-template-columns: 1fr; }
  .contact-title { max-width: none; }
  .contact-notes { grid-template-columns: 1fr; }
}

* { border-color: var(--border); }
