/* ═══════════════════════════════════════════════
   ROOT VARIABLES & RESET
═══════════════════════════════════════════════ */
:root {
  /* Colors */
  --bg:          #090b10;
  --bg-alt:      #0d1017;
  --surface:     #111620;
  --surface-2:   #161d2b;
  --border:      rgba(255,255,255,0.07);
  --accent:      #5b8dee;
  --accent-2:    #a855f7;
  --accent-glow: rgba(91,141,238,0.25);
  --text:        #e2e8f0;
  --text-muted:  #64748b;
  --text-faint:  #334155;

  /* Typography */
  --font-body:  'Space Grotesk', sans-serif;
  --font-mono:  'JetBrains Mono', monospace;

  /* Spacing */
  --section-pad: 120px;
  --container:   1160px;

  /* Transitions */
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --fast:  0.2s var(--ease);
  --med:   0.4s var(--ease);
  --slow:  0.7s var(--ease);
}

/* ── Accessibility & SEO utilities ──────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection {
  background: var(--accent);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ═══════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-alt); }

/* Mono helper */
.mono { font-family: var(--font-mono); }

/* Accent color */
.accent { color: var(--accent); }

/* Glass card */
.glass {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
}

/* Tags */
.tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(91,141,238,0.1);
  border: 1px solid rgba(91,141,238,0.2);
  color: var(--accent);
  letter-spacing: 0.04em;
}
.tag-lang { background: rgba(168,85,247,0.1); border-color: rgba(168,85,247,0.2); color: #a855f7; }
.tag-type { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); color: #10b981; }

/* Section label */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

/* Section titles */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--fast);
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--slow), transform var(--slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }
.reveal:nth-child(7) { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--med), border-color var(--med);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(9,11,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--fast);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--fast);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: rgba(9,11,16,0.97);
  border-top: 1px solid var(--border);
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 40px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--fast), background var(--fast);
}
.mobile-menu ul li a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 40px 80px;
}

/* Grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91,141,238,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: float-orb 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.12) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
  animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 0.2s forwards;
}

.hero-name {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #e2e8f0 0%, rgba(226,232,240,0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 0.35s forwards;
}

.hero-headline {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 0.5s forwards;
}

/* Typing effect */
.typed-wrapper {
  color: var(--text);
  font-weight: 600;
}
.cursor {
  display: inline-block;
  color: var(--accent);
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-sub {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 44px;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 0.65s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 0.8s forwards;
}

/* ─── Hero live-links strip ─── */
.hero-links {
  margin-top: 48px;
  opacity: 0;
  animation: fade-up 0.8s var(--ease) 1s forwards;
}

.hero-links-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}

.hero-link-cards {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
  min-width: 220px;
}
.hero-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91,141,238,0.35);
  box-shadow: 0 8px 32px rgba(91,141,238,0.12);
}

.hlc-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.hlc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.hlc-name {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hlc-url {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hlc-arrow {
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--fast);
}
.hero-link-card:hover .hlc-arrow {
  transform: translate(2px, -2px);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-faint);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 1s var(--ease) 1.2s forwards;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Trait pills */
.trait-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trait {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(91,141,238,0.08);
  border: 1px solid rgba(91,141,238,0.18);
  color: var(--accent);
  transition: all var(--fast);
}
.trait:hover {
  background: rgba(91,141,238,0.15);
  transform: translateY(-2px);
}

/* Stat cards grid */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--fast), border-color var(--fast);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91,141,238,0.3);
}
.stat-num {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  font-family: var(--font-mono);
}
.stat-suffix {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hobby icons */
.hobby-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 16px 0 8px;
}
.hobby-icon {
  font-size: 1.5rem;
  cursor: default;
  transition: transform var(--fast);
  filter: grayscale(0.3);
}
.hobby-icon:hover { transform: scale(1.3); filter: grayscale(0); }

/* ═══════════════════════════════════════════════
   SKILLS
═══════════════════════════════════════════════ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.skill-category {
  padding: 32px;
  transition: transform var(--fast), border-color var(--fast);
}
.skill-category:hover {
  transform: translateY(-4px);
  border-color: rgba(91,141,238,0.25);
}

.skill-cat-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-family: var(--font-mono);
}

.skill-items { display: flex; flex-direction: column; gap: 20px; }

.skill-item {}
.skill-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.skill-pct {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 0.8rem;
}
.skill-bar {
  height: 4px;
  background: var(--surface-2);
  border-radius: 4px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 4px;
  transition: width 1.2s var(--ease);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* Skill tags */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ═══════════════════════════════════════════════
   PROJECTS
═══════════════════════════════════════════════ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.project-card {
  padding: 32px;
  position: relative;
  transition: transform var(--fast), border-color var(--fast), box-shadow var(--fast);
  overflow: hidden;
}
.project-card::before {
  /* Top gradient accent line */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--fast);
}
.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91,141,238,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.project-card:hover::before { opacity: 1; }

/* Featured badge */
.project-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(91,141,238,0.15);
  border: 1px solid rgba(91,141,238,0.3);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured .project-badge { /* keep for uniqueness card */  }

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.project-icon { font-size: 2rem; }
.project-tags-row { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }

.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.project-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.project-features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.project-features code {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  background: rgba(255,255,255,0.05);
  padding: 1px 6px;
  border-radius: 4px;
  color: #a855f7;
}

/* ═══════════════════════════════════════════════
   GITHUB / AT A GLANCE
═══════════════════════════════════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.glance-card {
  padding: 32px 28px;
  text-align: center;
  transition: transform var(--fast), border-color var(--fast);
}
.glance-card:hover {
  transform: translateY(-6px);
  border-color: rgba(91,141,238,0.3);
}
.glance-icon { font-size: 2rem; margin-bottom: 12px; }
.glance-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.glance-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.contact-tagline {
  font-size: 0.9rem !important;
  color: var(--text-faint) !important;
  margin-top: 24px;
}

/* Contact form */
.contact-form {
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--fast), background var(--fast);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(91,141,238,0.05);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #f87171;
}

.form-success {
  text-align: center;
  color: #10b981;
  font-size: 0.9rem;
  margin-top: 16px;
  font-family: var(--font-mono);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-pad: 80px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  :root { --section-pad: 64px; }

  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  #hero { padding: 100px 20px 60px; }

  .hero-name { font-size: clamp(3.5rem, 16vw, 6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .hero-link-cards { flex-direction: column; }
  .hero-link-card { min-width: 0; width: 100%; }

  .projects-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 16px; }
  .stat-num { font-size: 2rem; }

  .contact-form { padding: 28px 20px; }

  .footer-inner { flex-direction: column; text-align: center; }

  .scroll-hint { display: none; }
}

@media (max-width: 400px) {
  .stats-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
