:root {
  --bg: #070914;
  --bg-soft: #0d1021;
  --surface: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #a1a8bd;
  --line: rgba(255, 255, 255, 0.14);
  --primary: #8b5cf6;
  --primary-2: #22d3ee;
  --primary-3: #f97316;
  --success: #22c55e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

[data-theme="light"] {
  --bg: #f6f8ff;
  --bg-soft: #ffffff;
  --surface: rgba(7, 9, 20, 0.06);
  --surface-strong: rgba(7, 9, 20, 0.1);
  --text: #090b16;
  --muted: #596179;
  --line: rgba(9, 11, 22, 0.13);
  --shadow: 0 24px 80px rgba(31, 41, 55, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 92, 246, 0.22), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(34, 211, 238, 0.16), transparent 30%),
    radial-gradient(circle at 50% 88%, rgba(249, 115, 22, 0.12), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea {
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section-shell {
  position: relative;
  padding: 96px 0;
}

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

.cursor-glow {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22), transparent 58%);
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 100;
  padding-inline: 20px;
}

.navbar {
  width: min(100%, var(--max));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 9, 20, 0.74);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.74);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.35);
}

.brand-text {
  font-size: 0.9rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: var(--surface);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.theme-toggle,
.nav-cta,
.nav-toggle {
  display: inline-grid;
  place-items: center;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.theme-toggle {
  width: 44px;
  height: 44px;
}

.nav-cta {
  min-height: 44px;
  padding-inline: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.85), rgba(34, 211, 238, 0.75));
  color: white;
}

.theme-toggle:hover,
.nav-cta:hover,
.nav-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  gap: 4px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 132px;
  padding-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 190px;
  height: 190px;
  top: 18%;
  right: 11%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 65%);
  animation: float 8s ease-in-out infinite;
}

.hero-orb-two {
  width: 260px;
  height: 260px;
  left: 4%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 65%);
  animation: float 10s ease-in-out infinite reverse;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.12), 0 0 22px rgba(34, 197, 94, 0.8);
}

.hero-copy h1 {
  max-width: 820px;
  margin-top: 20px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #ffffff, #c4b5fd 42%, #67e8f9 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--primary-2);
}

.typing-caret {
  animation: blink 0.8s step-end infinite;
}

.hero-description {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.hero-meta,
.contact-links,
.project-links,
.tag-row,
.filter-row,
.about-pill-grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 46px rgba(139, 92, 246, 0.34);
}

.button-secondary {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary:hover {
  box-shadow: 0 22px 60px rgba(34, 211, 238, 0.25);
}

.hero-meta {
  margin-top: 24px;
}

.hero-meta a,
.contact-chip {
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.94rem;
  font-weight: 750;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.hero-meta a:hover,
.contact-chip:hover {
  color: var(--text);
  background: var(--surface-strong);
  transform: translateY(-2px);
}

.hero-card {
  perspective: 1100px;
}

.profile-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 160deg, transparent, rgba(139, 92, 246, 0.4), rgba(34, 211, 238, 0.35), transparent 62%);
  opacity: 0.6;
  z-index: -1;
  animation: spin 10s linear infinite;
}

.profile-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.2);
}

.terminal-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}
.red { background: #ff5f57; }
.yellow { background: #ffbd2e; }
.green { background: #28c840; }
.terminal-title {
  margin-left: auto;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
}

.profile-avatar {
  position: relative;
  width: min(80vw, 310px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 34px auto;
  border-radius: 38px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.6), transparent 13%),
    linear-gradient(135deg, var(--primary), var(--primary-2) 58%, var(--primary-3));
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.18), 0 34px 90px rgba(139, 92, 246, 0.38);
  overflow: visible;
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 32px;
  overflow: hidden;

}

.profile-avatar span {
  color: white;
  font-size: 6.5rem;
  font-weight: 950;
  letter-spacing: -0.12em;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.orbit {
  position: absolute;
  inset: -20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 42px;
  animation: spin 8s linear infinite;
}

.orbit-two {
  inset: -34px;
  opacity: 0.4;
  animation-duration: 12s;
  animation-direction: reverse;
}

.code-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.28);
  padding: 18px;
  overflow-x: auto;
}

.code-card pre {
  font-family: "JetBrains Mono", monospace;
  color: #dbeafe;
  font-size: 0.83rem;
  line-height: 1.7;
}

.tech-marquee {
  width: min(100% - 40px, var(--max));
  margin: 54px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.tech-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.tech-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 54px;
  align-items: start;
}

.section-heading h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.center-heading {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}

.section-description {
  margin-top: 14px;
  color: var(--muted);
}

.about-content {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-content p + p {
  margin-top: 16px;
}

.about-pill-grid {
  margin-top: 24px;
}

.about-pill-grid span {
  padding: 10px 14px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 760;
}

.filter-row {
  justify-content: center;
  margin: 34px 0;
}

.filter-btn {
  padding: 10px 16px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(34, 211, 238, 0.72));
  transform: translateY(-2px);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.skill-card {
  position: relative;
  min-height: 146px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.skill-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent, var(--primary)) 35%, transparent);
  filter: blur(18px);
}

.skill-card i {
  font-size: 2rem;
  color: var(--accent, var(--primary-2));
}

.skill-card span {
  margin-top: auto;
  font-size: 1.05rem;
  font-weight: 900;
}

.skill-card small {
  color: var(--muted);
  font-weight: 700;
}

.skill-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--accent, var(--primary)) 50%, var(--line));
  background: var(--surface-strong);
}

.skill-card.hidden {
  display: none;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
}

.project-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.project-wide {
  grid-column: 1 / -1;
  grid-template-columns: 0.82fr 1fr;
  grid-template-rows: auto;
}

.project-card > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.project-wide > img {
  height: 100%;
  min-height: 310px;
  border-bottom: 0;
  border-right: 1px solid var(--line);
}

.project-body {
  padding: 24px;
}

.project-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.project-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.project-status {
  flex-shrink: 0;
  color: var(--primary-2);
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: rgba(34, 211, 238, 0.08);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 900;
}

.project-body p {
  margin-top: 12px;
  color: var(--muted);
}

.tag-row {
  margin-top: 18px;
}

.tag-row span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 850;
}

.project-links {
  margin-top: 22px;
}

.project-links a {
  color: var(--primary-2);
  font-weight: 900;
}

.project-card:hover {
  transform: translateY(-8px);
  background: var(--surface-strong);
  border-color: rgba(139, 92, 246, 0.42);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.stat-card,
.timeline article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.stat-card strong {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #fff, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-theme="light"] .stat-card strong,
[data-theme="light"] .hero-copy h1 span {
  background: linear-gradient(135deg, #111827, #7c3aed, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.timeline article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 950;
}

.timeline h3 {
  margin-top: 18px;
  font-size: 1.18rem;
}

.timeline p {
  margin-top: 8px;
  color: var(--muted);
}

.contact .section-description {
  max-width: 560px;
}

.contact-links {
  margin-top: 26px;
}

.contact-chip {
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--text);
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  outline: 0;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea {
  background: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.65);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.back-top {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 200;
  transform: translate(-50%, 120px);
  opacity: 0;
  padding: 12px 16px;
  border-radius: 999px;
  color: white;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
  }

  .nav-menu {
    position: fixed;
    top: 88px;
    left: 20px;
    right: 20px;
    display: grid;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(7, 9, 20, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  [data-theme="light"] .nav-menu {
    background: rgba(255, 255, 255, 0.94);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    justify-content: center;
    padding: 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    order: -1;
  }

  .skills-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-wide {
    grid-template-columns: 1fr;
  }

  .project-wide > img {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .section-shell {
    padding: 72px 0;
  }

  .site-header {
    top: 10px;
    padding-inline: 12px;
  }

  .navbar {
    min-height: 64px;
    padding: 10px 12px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

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

  .profile-avatar span {
    font-size: 4.8rem;
  }

  .footer-inner {
    align-items: flex-start;
  }

  .cursor-glow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
}