/* ============================================
   PORTFOLIO — "Quiet Luxury" Dark Theme
   ============================================ */

/* ---------- Reset & Base ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg-primary: #09090b;
  --bg-card: rgba(24, 24, 27, 0.5);
  --bg-card-hover: rgba(39, 39, 42, 0.5);
  --border: rgba(39, 39, 42, 0.6);
  --border-hover: rgba(63, 63, 70, 0.8);
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --text-dim: #52525b;
  --accent-purple: #8B5CF6;
  --accent-blue: #3B82F6;
  --accent-cyan: #06B6D4;
  --accent-pink: #EC4899;
  --accent-amber: #F59E0B;
  --accent-emerald: #10B981;
  --accent-red: #EF4444;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

::selection {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #3f3f46; border-radius: 999px; }

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

/* ---------- Utility Classes ---------- */
.section-padding {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .section-padding { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .section-padding { padding-left: 3rem; padding-right: 3rem; }
}
@media (min-width: 1280px) {
  .section-padding { padding-left: 5rem; padding-right: 5rem; }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(to bottom, #ffffff, #d4d4d8, #71717a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Glass Card ---------- */
.glass-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
}

.glass-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(161, 161, 170, 0.04);
  transform: translateY(-2px);
}

/* ---------- Animations ---------- */
/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Gradient mesh floats */
@keyframes mesh-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(8%, 5%) scale(1.08); }
  66% { transform: translate(-3%, -6%) scale(0.95); }
}
@keyframes mesh-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-6%, -4%) scale(1.1); }
  66% { transform: translate(4%, 6%) scale(0.92); }
}

/* Glow pulse */
@keyframes glow-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}

/* Status dot pulse */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* Marquee */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(39, 39, 42, 0.5);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  transition: color var(--transition);
}
.nav-logo:hover { color: #a1a1aa; }
.nav-logo span { color: #52525b; }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.875rem;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.nav-cta {
  margin-left: 16px;
  padding: 8px 20px !important;
  font-weight: 500;
  color: #18181b !important;
  background: #fff !important;
  border-radius: var(--radius-full) !important;
}
.nav-cta:hover { background: #e4e4e7 !important; }

.nav-toggle {
  display: flex;
  padding: 8px;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-toggle:hover { color: #fff; }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 1.5rem;
  background: rgba(9, 9, 11, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(39, 39, 42, 0.5);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all var(--transition);
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.mobile-cta {
  margin-top: 12px;
  padding: 12px 20px !important;
  text-align: center;
  font-weight: 500;
  color: #18181b !important;
  background: #fff !important;
  border-radius: var(--radius-full) !important;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
}


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Gradient Mesh */
.hero-mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-mesh::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(120, 119, 198, 0.12) 0%, transparent 70%);
  animation: mesh-float-1 12s ease-in-out infinite;
}
.hero-mesh::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  animation: mesh-float-2 15s ease-in-out infinite;
}

/* Glow orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: glow-pulse 3s ease-in-out infinite;
}
.glow-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(99, 102, 241, 0.15);
  top: 20%;
  left: -80px;
}
.glow-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.08);
  bottom: 20%;
  right: -60px;
  animation-delay: 1.5s;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 720px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(12px);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-badge-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-sub strong {
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; justify-content: center; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #18181b;
  background: #fff;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.btn-primary:hover {
  background: #e4e4e7;
  box-shadow: 0 0 24px rgba(255,255,255,0.1);
}
.btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}
.btn-primary:hover svg { transform: translateY(2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid #3f3f46;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.btn-secondary:hover {
  border-color: #71717a;
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.btn-secondary svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.btn-secondary:hover svg { opacity: 1; }

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
}


/* ============================================
   SECTION HEADERS
   ============================================ */
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.section-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
.section-desc {
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 480px;
  line-height: 1.7;
}


/* ============================================
   TECH STACK
   ============================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .tech-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .tech-grid { grid-template-columns: repeat(6, 1fr); } }

.tech-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(39, 39, 42, 0.4);
  background: rgba(24, 24, 27, 0.3);
  cursor: default;
  transition: all 0.5s ease;
  overflow: hidden;
}
.tech-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.tech-item:hover {
  background: rgba(39, 39, 42, 0.4);
  border-color: rgba(63, 63, 70, 0.6);
}
.tech-item:hover::before { opacity: 1; }

.tech-icon {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(39, 39, 42, 0.6);
  transition: all 0.5s ease;
}
.tech-item:hover .tech-icon { transform: scale(1.1); border-color: transparent; }

.tech-name {
  position: relative;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.tech-item:hover .tech-name { color: var(--text-secondary); }


/* ============================================
   PROJECTS — Bento Grid
   ============================================ */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(3, 1fr); }
}

.bento-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .bento-card { padding: 2rem; }
  .bento-featured { grid-column: span 2; grid-row: span 2; }
  .bento-wide { grid-column: span 2; }
}

.bento-card .card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.bento-card:hover .card-glow { opacity: 0.07; }

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.card-type-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.card-type-icon svg { width: 18px; height: 18px; }

.card-links {
  display: flex;
  gap: 8px;
}
.card-links a {
  padding: 8px;
  border-radius: 8px;
  color: var(--text-dim);
  transition: all var(--transition);
}
.card-links a:hover { color: #fff; background: rgba(255,255,255,0.05); }
.card-links a svg { width: 14px; height: 14px; }

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: all 0.5s ease;
}
@media (min-width: 768px) {
  .bento-featured .card-title { font-size: 1.35rem; }
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.75rem;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(39, 39, 42, 0.4);
  border: 1px solid rgba(63, 63, 70, 0.4);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
}
.cert-link:hover {
  color: #fff;
  background: rgba(63, 63, 70, 0.6);
  border-color: rgba(113, 113, 122, 0.5);
  transform: translateY(-1px);
}

/* ---------- App Stats (Ratings + Downloads) ---------- */
.app-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(39, 39, 42, 0.4);
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 14px;
  height: 14px;
}

.star.filled {
  fill: #F59E0B;
}

.star.empty {
  fill: #3f3f46;
}

.rating-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #F59E0B;
}

.app-downloads {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a78bfa;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-full);
}

/* ---------- App Store Button ---------- */
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  padding: 8px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
}

.appstore-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.card-tag {
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(39, 39, 42, 0.5);
  border: 1px solid rgba(39, 39, 42, 0.4);
  border-radius: var(--radius-full);
}


/* ============================================
   ABOUT + TIMELINE
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.about-text {
  color: var(--text-secondary);
  line-height: 1.7;
}
.about-text p { margin-bottom: 1.25rem; }
.about-text strong {
  color: #d4d4d8;
  font-weight: 500;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2.5rem;
}
.stat-box {
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(39, 39, 42, 0.4);
  background: rgba(24, 24, 27, 0.3);
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 44px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, #3f3f46, transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -44px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  transition: transform 0.3s ease;
  z-index: 2;
}
.timeline-item:hover .timeline-dot { transform: scale(1.1); }
.timeline-dot svg { width: 16px; height: 16px; }

.timeline-year {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.timeline-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #d4d4d8;
  margin-top: 4px;
}
.timeline-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.5;
}


/* ============================================
   CONTACT
   ============================================ */
.contact-center {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .social-grid { grid-template-columns: 1fr 1fr; }
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
}
.social-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(24, 24, 27, 0.5);
  flex-shrink: 0;
  transition: all var(--transition);
}
.social-card:hover .social-icon-box { background: rgba(39, 39, 42, 0.8); }
.social-icon-box svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.social-card:hover .social-icon-box svg { color: #fff; }

.social-info { flex: 1; min-width: 0; }
.social-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.social-card:hover .social-label { color: #fff; }
.social-desc {
  font-size: 0.75rem;
  color: var(--text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-arrow {
  flex-shrink: 0;
  color: #3f3f46;
  transition: all var(--transition);
}
.social-arrow svg { width: 14px; height: 14px; }
.social-card:hover .social-arrow {
  color: var(--text-secondary);
  transform: translate(2px, -2px);
}

.email-cta {
  margin-top: 3rem;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(39, 39, 42, 0.5);
  padding: 2rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer-text {
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-badge svg { width: 12px; height: 12px; }
.footer-badge .heart { color: rgba(239, 68, 68, 0.6); }
.footer-badge .claude { color: var(--text-muted); font-weight: 500; }
