/* ===================== Theme tokens ===================== */
:root {
  --bg: hsl(0 0% 98%);
  --fg: hsl(0 0% 10%);
  --muted: hsl(0 0% 38%);
  /* light mode borrows the brand purple (from the hero blobs / glass lens)
     as its accent — vivid and ~6.8:1 on white, vs. unreadable lime */
  --accent: #5227ff;
  /* vivid lime reserved for decorative glows/blobs (any background) */
  --accent-bright: #c3e41d;
  --card-bg: hsl(0 0% 100%);
  --border: hsl(0 0% 86%);
  --toggle-track: hsl(0 0% 88%);
  --toggle-knob: hsl(0 0% 10%);
  --section-alt: hsl(0 0% 96%);
  --header-bg: hsla(0 0% 98% / 0.72);
  --shadow: 0 20px 45px -16px rgba(0, 0, 0, 0.25);
  --accent-glow: rgba(82, 39, 255, 0.4);
}

html.dark {
  --bg: hsl(0 0% 0%);
  --fg: hsl(0 0% 100%);
  --muted: hsl(0 0% 56%);
  --accent: #c3e41d;
  --accent-bright: #c3e41d;
  --card-bg: hsl(0 0% 7%);
  --border: hsl(0 0% 16%);
  --toggle-track: hsl(0 0% 15%);
  --toggle-knob: hsl(0 0% 100%);
  --section-alt: hsl(0 0% 4%);
  --header-bg: hsla(0 0% 0% / 0.6);
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
  --accent-glow: rgba(195, 228, 29, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--fg);
  font-family: "Antic", system-ui, sans-serif;
  transition: background-color 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
}

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

/* Visible keyboard focus for all interactive elements */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===================== Header ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.5rem;
  transition: background-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
/* Frosted backdrop once the user scrolls past the hero — keeps the
   signature and menu icon legible over section content & project images */
.header.scrolled {
  background-color: var(--header-bg);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1536px;
  margin: 0 auto;
}

/* Menu button */
.menu-wrap { position: relative; }

.menu-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.3s;
  display: flex;
}
.menu-btn:hover { color: var(--fg); }

.icon-close { display: none; }
.menu-btn.open .icon-menu { display: none; }
.menu-btn.open .icon-close { display: block; }

/* Dropdown menu */
.menu {
  position: absolute;
  top: 100%;
  left: 1rem;
  margin-top: 0.5rem;
  width: 220px;
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  padding: 1rem;
  z-index: 100;
  animation: menu-in 0.18s ease-out;
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-item {
  display: block;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.25rem;
  padding: 0.375rem 0.5rem;
  color: var(--fg);
  transition: color 0.3s;
}
.menu-item:hover { color: var(--accent); }
.menu-item.highlight { color: var(--accent); }

/* Signature */
.signature {
  font-size: 2.25rem;
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  color: var(--fg);
}

/* Theme toggle */
.theme-toggle {
  position: relative;
  width: 4rem;
  height: 2rem;
  border: none;
  border-radius: 9999px;
  background-color: var(--toggle-track);
  cursor: pointer;
  transition: opacity 0.2s;
}
.theme-toggle:hover { opacity: 0.8; }

.theme-knob {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background-color: var(--toggle-knob);
  transition: transform 0.3s;
  z-index: 2;
}
html.dark .theme-knob { transform: translateX(2rem); }

/* Sun / moon hints sit under the sliding knob */
.theme-ico {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  transition: opacity 0.3s, color 0.3s;
  z-index: 1;
}
.theme-ico--sun  { left: 0.55rem; }
.theme-ico--moon { right: 0.55rem; }
/* highlight the icon for the mode you can switch TO (the opposite side of the knob) */
html.dark   .theme-ico--sun  { opacity: 0.35; }
html.dark   .theme-ico--moon { opacity: 1; color: var(--fg); }
html:not(.dark) .theme-ico--sun  { opacity: 1; color: var(--fg); }
html:not(.dark) .theme-ico--moon { opacity: 0.35; }

/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* keep hero content above the animated blobs */
.hero-center, .tagline, .scroll-indicator { z-index: 2; }

/* ===================== Fluid-glass background blobs ===================== */
.hero-blob {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.blob-1 {
  width: 46vw; height: 46vw;
  top: -8%; left: -6%;
  background: radial-gradient(circle at 30% 30%, #5227ff, transparent 65%);
  animation: drift1 16s ease-in-out infinite;
}
.blob-2 {
  width: 40vw; height: 40vw;
  bottom: -10%; right: -8%;
  background: radial-gradient(circle at 50% 50%, #c3e41d, transparent 62%);
  opacity: 0.35;
  animation: drift2 20s ease-in-out infinite;
}
.blob-3 {
  width: 34vw; height: 34vw;
  top: 35%; left: 55%;
  background: radial-gradient(circle at 50% 50%, #7a5bff, transparent 60%);
  animation: drift3 18s ease-in-out infinite;
}
@keyframes drift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(8vw, 6vh) scale(1.15); }
}
@keyframes drift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-7vw, -5vh) scale(1.1); }
}
@keyframes drift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(-6vw, 7vh) scale(0.9); }
}
html:not(.dark) .blob { opacity: 0.4; }

/* ===================== Cursor fluid-glass lens ===================== */
.glass-lens {
  position: fixed;
  top: 0; left: 0;
  width: 190px; height: 190px;
  margin: -95px 0 0 -95px;          /* center on pointer */
  border-radius: 50%;
  pointer-events: none;
  z-index: 60;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.35s ease;
  /* low blur so content refracts THROUGH the glass; contrast/saturate = IOR feel */
  backdrop-filter: blur(1.5px) saturate(1.9) brightness(1.05) contrast(1.08);
  -webkit-backdrop-filter: blur(1.5px) saturate(1.9) brightness(1.05) contrast(1.08);
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,0.28), rgba(255,255,255,0.05) 48%, rgba(255,255,255,0) 70%);
  box-shadow:
    inset 0 0 22px rgba(255,255,255,0.30),       /* inner glow */
    inset 12px 14px 32px rgba(82,39,255,0.28),   /* purple refraction (#5227ff) */
    inset -12px -14px 32px rgba(195,228,29,0.20),/* lime refraction (accent)   */
    inset 0 0 0 1.5px rgba(255,255,255,0.45),    /* crisp rim */
    0 16px 50px rgba(0,0,0,0.35);                /* drop shadow */
}
.glass-lens.visible { opacity: 1; }

/* Chromatic aberration: red edge one side, cyan edge the other (like ior split) */
.glass-lens::before,
.glass-lens::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
}
.glass-lens::before { box-shadow: inset 4px 0 10px -2px rgba(255, 40, 90, 0.65); }
.glass-lens::after  { box-shadow: inset -4px 0 10px -2px rgba(0, 170, 255, 0.65); }

.glass-lens-shine {
  position: absolute;
  top: 14%; left: 20%;
  width: 40%; height: 26%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.75), transparent 70%);
  filter: blur(2px);
  transform: rotate(-18deg);
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
  .glass-lens { transition: opacity 0.35s ease; }
}
@media (hover: none) {
  .glass-lens { display: none; }   /* skip on touch devices */
}

.hero-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 1rem;
}

.hero-name {
  position: relative;
  text-align: center;
}

.big-name {
  font-family: "Fira Code", monospace;
  font-weight: 700;
  color: var(--accent);
  font-size: clamp(100px, 18vw, 210px);
  line-height: 0.75;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: center;
}

/* Profile picture overlapping the name */
.profile-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.profile {
  width: 65px; height: 110px;
  border-radius: 9999px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  cursor: pointer;
}
.profile:hover { transform: scale(1.1); }
.profile img { width: 100%; height: 100%; object-fit: cover; }

@media (min-width: 640px)  { .profile { width: 90px;  height: 152px; } }
@media (min-width: 768px)  { .profile { width: 110px; height: 185px; } }
@media (min-width: 1024px) { .profile { width: 129px; height: 218px; } }

/* Tagline */
.tagline {
  position: absolute;
  bottom: 4rem; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 640px)  { .tagline { bottom: 5rem; } }
@media (min-width: 768px)  { .tagline { bottom: 6rem; } }
@media (min-width: 1024px) { .tagline { bottom: 8rem; } }

.tagline-text {
  font-size: clamp(15px, 2vw, 22px);
  text-align: center;
  color: var(--muted);
  transition: color 0.3s;
}
.tagline-text:hover { color: var(--fg); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  transition: color 0.3s;
  animation: bob 2s ease-in-out infinite;
}
.scroll-indicator:hover { color: var(--fg); }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ===================== BlurText animation ===================== */
.blur-text { display: inline-flex; flex-wrap: wrap; }
.blur-text span {
  display: inline-block;
  filter: blur(10px);
  opacity: 0;
  transform: translateY(-20px);
  transition: filter 0.5s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out;
}
.blur-text.in-view span {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

/* ===================== Sections ===================== */
.section { padding: 6rem 1.5rem; }
.section-alt { background-color: var(--section-alt); }

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

.section-title {
  font-family: "Fira Code", monospace;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: var(--fg);
}
.section-title::after {
  content: "";
  display: block;
  width: 48px; height: 4px;
  background: var(--accent);
  margin-top: 0.75rem;
  border-radius: 2px;
}

.section-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 60ch;
}

/* Skills chips */
.skills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.chip {
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--fg);
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); }
.card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card-body { padding: 1.25rem; }
.card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--fg); }
.card-body p { color: var(--muted); line-height: 1.6; margin-bottom: 0.75rem; }
.card.simple .card-body p { margin-bottom: 0.5rem; }
.card-body .tech {
  font-family: "Fira Code", monospace;
  font-size: 0.8rem;
  color: var(--fg);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
.card-links { display: flex; gap: 1.25rem; }
.card-link { color: var(--accent); font-weight: 600; }

/* ===================== Magic Bento (projects) ===================== */
:root {
  /* glow colour matches the hero blobs / glass lens (#5227ff) */
  --glow-rgb: 82, 39, 255;
}

.bento-section { position: relative; user-select: none; }

.bento-subtitle { margin: -1rem 0 2.5rem; }

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 230px;
  padding: 1.5rem;
  border-radius: 0.9rem;
  /* border: 1px solid var(--border); */
  background: var(--card-bg);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;

  /* driven by JS for the cursor-following border glow */
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 220px;
}

.bento-card:hover,
.bento-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25),
              0 0 28px rgba(var(--glow-rgb), 0.18);
  outline: none;
}

/* cursor-following border glow (masked ring) */
.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(var(--glow-rgb), calc(var(--glow-intensity) * 0.9)) 0%,
    rgba(var(--glow-rgb), calc(var(--glow-intensity) * 0.4)) 35%,
    transparent 65%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* background image layer */
.bento-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
}
.bento-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.42;
  transition: opacity 0.35s ease, transform 0.5s ease;
}
.bento-card:hover .bento-card__media img,
.bento-card:focus-visible .bento-card__media img {
  opacity: 0.6;
  transform: scale(1.06);
}
/* gradient keeps the lower text area legible over the image */
.bento-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card-bg) 22%, rgba(0, 0, 0, 0) 80%);
}

.bento-card__header,
.bento-card__content { position: relative; z-index: 2; }

.bento-card__header {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: "Fira Code", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.bento-card__index { color: var(--fg); opacity: 0.55; }
.bento-card__label {
  color: var(--accent);
}
.bento-card__title { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--fg); }
.bento-card__desc { color: var(--muted); line-height: 1.6; margin-bottom: 0.75rem; }
.bento-card__desc em { color: var(--fg); font-style: normal; }
.bento-card__tech {
  font-family: "Fira Code", monospace;
  font-size: 0.8rem;
  color: var(--fg);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}
.bento-card__links { display: flex; gap: 1.25rem; }

/* particle stars spawned on hover */
.bento-particle {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(var(--glow-rgb), 1);
  box-shadow: 0 0 6px rgba(var(--glow-rgb), 0.6);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}

/* click ripple */
.bento-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--glow-rgb), 0.4) 0%, rgba(var(--glow-rgb), 0.2) 30%, transparent 70%);
  pointer-events: none;
  z-index: 4;
}

/* global spotlight that tracks the cursor across the grid */
.bento-spotlight {
  position: fixed;
  left: 0; top: 0;
  width: 700px; height: 700px;
  margin: -350px 0 0 -350px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transform: translate(-9999px, -9999px);
  mix-blend-mode: screen;
  background: radial-gradient(circle,
    rgba(var(--glow-rgb), 0.16) 0%,
    rgba(var(--glow-rgb), 0.08) 18%,
    rgba(var(--glow-rgb), 0.03) 38%,
    transparent 62%);
  transition: opacity 0.3s ease;
  will-change: transform, opacity;
}

/* keep title/desc tidy on the smaller tiles */
.bento-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bento mosaic — mixed tile sizes on a dense 4-column grid.
   Spans are tuned so the 16 cards pack into a clean, gap-free mosaic:
   xl = 2x2, wide = 2x1, tall = 1x2, default = 1x1. */
@media (min-width: 560px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-card--xl,
  .bento-card--wide { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 215px;
    grid-auto-flow: dense;
  }
  .bento-card { min-height: 0; height: 100%; }
  .bento-card--xl   { grid-column: span 2; grid-row: span 2; }
  .bento-card--wide { grid-column: span 2; grid-row: span 1; }
  .bento-card--tall { grid-column: span 1; grid-row: span 2; }

  /* bigger type + full text on the large tiles */
  .bento-card--xl .bento-card__title { font-size: 1.5rem; }
  .bento-card--xl .bento-card__desc,
  .bento-card--tall .bento-card__desc { -webkit-line-clamp: 6; }
  .bento-card--xl .bento-card__media img { opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  .bento-card { transition: border-color 0.25s ease; }
  .bento-card:hover, .bento-card:focus-visible { transform: none; }
  .bento-spotlight, .bento-particle, .bento-ripple { display: none; }
}

/* ===================== Education split ===================== */
.edu-split {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}
.edu-col { flex: 1; min-width: 0; }

/* thin, tapered diagonal stroke — an elegant "/" instead of a blocky glyph */
.edu-slash {
  flex: 0 0 auto;
  width: 3px;
  height: clamp(150px, 22vw, 260px);
  border-radius: 99px;
  transform: rotate(20deg);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--accent) 22%,
    var(--accent) 78%,
    transparent 100%
  );
  box-shadow: 0 0 18px var(--accent-glow);
  user-select: none;
}

.edu-heading {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.edu-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}
.edu-meta {
  margin-top: 0.75rem;
  font-family: "Fira Code", monospace;
  font-size: 0.95rem;
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 640px) {
  .edu-split { flex-direction: column; gap: 2rem; text-align: center; }
  .edu-slash {
    width: clamp(120px, 50vw, 220px);
    height: 3px;
    transform: rotate(20deg);
    background: linear-gradient(
      to right,
      transparent 0%,
      var(--accent) 22%,
      var(--accent) 78%,
      transparent 100%
    );
  }
}

/* Skill groups */
.skill-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.skill-group h3 {
  font-family: "Fira Code", monospace;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

/* Timeline */
.timeline { list-style: none; display: flex; flex-direction: column; gap: 2rem; }
.timeline li { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.timeline-when {
  font-family: "Fira Code", monospace;
  color: var(--accent);
  font-weight: 600;
  min-width: 120px;
}
.timeline h3 { font-size: 1.15rem; color: var(--fg); margin-bottom: 0.25rem; }
.timeline p { color: var(--muted); }

/* Writing list */
.post-list { list-style: none; }
.post-list li { border-bottom: 1px solid var(--border); }
.post-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.post-list a:hover { color: var(--accent); }
.post-date { color: var(--muted); font-family: "Fira Code", monospace; font-size: 0.9rem; }

/* Contact */
.contact { text-align: center; }
.contact .section-title::after { margin-left: auto; margin-right: auto; }
.contact-btn {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: "Fira Code", monospace;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  color: var(--accent);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.contact-btn:hover { border-color: var(--accent); }
.socials { display: flex; gap: 1.5rem; justify-content: center; margin-top: 2rem; }
.socials a { color: var(--muted); transition: color 0.2s; }
.socials a:hover { color: var(--fg); }

/* Footer */
.footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .blur-text span { filter: none; opacity: 1; transform: none; transition: none; }
  .scroll-indicator { animation: none; }
}
