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

:root {
  --bg:        #09060f;
  --bg2:       #110c1c;
  --pink:      #f472b6;
  --pink-soft: #fda4cf;
  --lilac:     #c084fc;
  --grad:      linear-gradient(135deg, #f472b6 0%, #c084fc 100%);
  --grad-soft: linear-gradient(135deg, rgba(244,114,182,0.15) 0%, rgba(192,132,252,0.15) 100%);
  --white:     #f8fafc;
  --muted:     #94a3b8;
  --border:    rgba(255,255,255,0.07);
  --card:      rgba(255,255,255,0.04);
  --shadow:    0 4px 24px rgba(244,114,182,0.12);
  --radius:    18px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  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='0.75' 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;
}

.blob {
  position: fixed; border-radius: 50%;
  filter: blur(120px); pointer-events: none; z-index: 0;
}
.blob-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: rgba(244,114,182,0.12); }
.blob-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: rgba(192,132,252,0.10); }

nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 64px;
  background: rgba(9,6,15,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-weight: 800; font-size: 1rem; letter-spacing: -0.02em;
  background: var(--grad); text-decoration: none;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-right { display: flex; align-items: center; gap: 2.5rem; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
  padding: 1.2rem 0.4rem;
}
.nav-links a:hover { color: var(--pink); }

.lang-toggle {
  display: flex; background: var(--card); border: 1px solid var(--border);
  border-radius: 100px; padding: 3px; gap: 2px;
}
.lang-btn {
  border: none; background: transparent; color: var(--muted);
  padding: 0.28rem 0.75rem; border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.lang-btn.active { background: var(--grad); color: white; }

.hero {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  padding: 100px 2.5rem 80px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 1.75rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(244,114,182,0.12); border: 1px solid rgba(244,114,182,0.3);
  color: var(--pink-soft); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 100px; width: fit-content;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
}
.hero h1 .name { color: var(--white); }
.hero h1 .title {
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block;
}

.hero-sub {
  font-size: 1rem; color: var(--muted); max-width: 500px; line-height: 1.7;
}
.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--grad); color: white; border: none;
  padding: 0.8rem 1.75rem; border-radius: 100px;
  font-size: 0.9rem; font-weight: 700; cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px rgba(244,114,182,0.35);
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(244,114,182,0.5); }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 1px solid var(--border); padding: 0.8rem 1.75rem;
  border-radius: 100px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1; white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--pink); color: var(--pink); }

.hero-photo-wrap {
  position: relative; flex-shrink: 0;
  width: 300px; height: 360px;
  transition: transform 0.18s ease-out;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute; inset: -3px; border-radius: 28px;
  background: var(--grad); z-index: 0;
}
.hero-photo {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  border-radius: 26px; overflow: hidden;
  background: var(--bg2);
  border: 3px solid var(--bg);
  cursor: pointer;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.75rem;
  background: var(--grad-soft);
  color: var(--muted); font-size: 0.8rem; text-align: center; padding: 1rem;
}
.photo-placeholder .photo-icon { font-size: 2.5rem; }

.section-wrap { position: relative; z-index: 1; }
section { max-width: 1000px; margin: 0 auto; padding: 80px 2.5rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; position: relative; z-index: 1; }

.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 1rem;
}
.section-desc { font-size: 0.95rem; color: var(--muted); max-width: 100%; margin-bottom: 2.5rem; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.about-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s;
}
.about-card:hover { border-color: rgba(244,114,182,0.3); }
.about-card .icon { font-size: 1.4rem; margin-bottom: 0.75rem; display: block; }
.about-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.35rem; }
.about-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
.about-card.highlight {
  background: var(--grad-soft);
  border-color: rgba(244,114,182,0.25);
}
.about-card.highlight h3 { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.timeline { display: flex; flex-direction: column; padding-left: 1.6rem; }
.timeline-item {
  display: grid; grid-template-columns: 140px 1fr;
  gap: 2rem; padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.6rem;
  top: 2.45rem;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--muted);
  border: 2px solid var(--bg);
  z-index: 2;
}

.timeline-date { font-size: 0.75rem; color: var(--muted); font-weight: 500; padding-top: 4px; line-height: 1.5; }
.timeline-content { display: flex; flex-direction: column; gap: 0.4rem; }
.timeline-company {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.timeline-role { font-size: 1rem; font-weight: 700; color: var(--white); }
.timeline-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }
.timeline-tag {
  display: inline-block; margin-top: 0.5rem;
  background: rgba(244,114,182,0.1); border: 1px solid rgba(244,114,182,0.25);
  color: var(--pink-soft); font-size: 0.7rem; font-weight: 600;
  padding: 0.2rem 0.7rem; border-radius: 100px; width: fit-content;
}

.timeline-group { position: relative; }
.timeline-group .timeline-item::before { display: none; }
.timeline-group::before {
  content: '';
  position: absolute;
  left: -1.155rem;
  top: calc(2.45rem + 9px);
  bottom: calc(2.45rem + 9px);
  width: 2px;
  background: linear-gradient(to bottom, #f472b6, #c084fc);
  border-radius: 2px;
  z-index: 1;
}
.timeline-group .timeline-item:not(:last-child) {
  border-bottom: 1px solid rgba(244,114,182,0.12);
}

.skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(185px, 1fr)); gap: 1rem; }
.skill-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.25rem 1.4rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, transform 0.2s;
}
.skill-card:hover { border-color: rgba(244,114,182,0.35); transform: translateY(-3px); }
.skill-card.highlight {
  background: var(--grad-soft);
  border-color: rgba(244,114,182,0.25);
}
.skill-card.highlight h4 {
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.skill-card .skill-icon { font-size: 1.3rem; margin-bottom: 0.5rem; display: block; }
.skill-card h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; }
.skill-card p { font-size: 0.78rem; color: var(--muted); }

.certs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 0.85rem; }
.cert-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.9rem 1.1rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
  backdrop-filter: blur(8px); transition: border-color 0.2s;
}
.cert-card:hover { border-color: rgba(192,132,252,0.35); }
.cert-logo {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--grad-soft); border: 1px solid rgba(244,114,182,0.2);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.cert-name { font-size: 0.8rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 2px; }
.cert-issuer { font-size: 0.72rem; color: var(--muted); }

.cert-fresh {
  margin-top: 0.85rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  background: var(--grad-soft); border: 1px solid rgba(244,114,182,0.3);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.cert-fresh:hover { border-color: rgba(244,114,182,0.55); transform: translateY(-2px); }
.cert-fresh-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(244,114,182,0.14); border: 1px solid rgba(244,114,182,0.35);
  color: var(--pink-soft); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.85rem; border-radius: 100px; flex-shrink: 0;
}
.cert-fresh-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink); animation: pulse 2s infinite;
}
.cert-fresh-body { display: flex; flex-direction: column; gap: 2px; }
.cert-fresh-name { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.cert-fresh-issuer { font-size: 0.75rem; color: var(--muted); }

.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.project-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  backdrop-filter: blur(8px); transition: border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.project-card:hover { border-color: rgba(244,114,182,0.35); transform: translateY(-3px); }
.project-card.featured {
  background: var(--grad-soft); border-color: rgba(244,114,182,0.25);
  grid-column: 1 / -1;
}
.project-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.project-icon { font-size: 1.5rem; }
.project-date { font-size: 0.7rem; color: var(--muted); font-weight: 500; white-space: nowrap; }
.project-title { font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.project-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; }
.project-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.25rem; }
.project-tag {
  background: rgba(192,132,252,0.1); border: 1px solid rgba(192,132,252,0.2);
  color: #d8b4fe; font-size: 0.68rem; font-weight: 600;
  padding: 0.18rem 0.6rem; border-radius: 100px;
}
.lang-cards { display: flex; gap: 1rem; flex-wrap: wrap; }
.lang-card {
  flex: 1; min-width: 200px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  backdrop-filter: blur(8px); transition: border-color 0.2s;
}
.lang-card:hover { border-color: rgba(244,114,182,0.3); }
.lang-initial {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--grad-soft); border: 1px solid rgba(244,114,182,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em;
  color: var(--pink-soft); margin-bottom: 1rem;
}
.lang-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.lang-level {
  display: inline-block;
  background: rgba(244,114,182,0.12); border: 1px solid rgba(244,114,182,0.25);
  color: var(--pink-soft); font-size: 0.72rem; font-weight: 700;
  padding: 0.18rem 0.65rem; border-radius: 100px; margin-bottom: 0.6rem;
}
.lang-desc { font-size: 0.8rem; color: var(--muted); }

.contact-box {
  background: var(--grad-soft); border: 1px solid rgba(244,114,182,0.2);
  border-radius: 24px; padding: 4rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.contact-box::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(244,114,182,0.08); pointer-events: none;
}
.contact-box::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(192,132,252,0.07); pointer-events: none;
}
@keyframes letsShimmer {
  0%        { background-position: -150% center; }
  60%, 100% { background-position: 250% center; }
}
.contact-box h2 {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #f472b6 0%, #c084fc 30%, #ffffff 48%, #fda4cf 52%, #c084fc 70%, #f472b6 100%);
  background-size: 250% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: letsShimmer 3.2s ease-in-out infinite;
}
.contact-box p { color: var(--muted); font-size: 1rem; margin-bottom: 2rem; }
.contact-links { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }
.contact-link {
  background: var(--card); border: 1px solid var(--border);
  color: var(--white); padding: 0.7rem 1.4rem;
  border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s, color 0.2s;
  backdrop-filter: blur(8px);
}
.contact-link:hover { border-color: var(--pink); color: var(--pink); }

footer {
  text-align: center; padding: 2.5rem;
  font-size: 0.78rem; color: var(--muted);
  border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}

@media (max-width: 700px) {
  nav { padding: 0 1.25rem; gap: 0.75rem; }
  .nav-links { display: none; }
  .nav-logo { font-size: 0.88rem; }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 56px 1.5rem 56px;
  }
  .hero-photo-wrap { width: 190px; height: 228px; margin: 0 auto; }

  section { padding: 56px 1.5rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-card.highlight { grid-column: auto; }

  .timeline-item { grid-template-columns: 1fr; gap: 0.25rem; }

  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: 1; }

  .lang-cards { flex-direction: column; }
  .lang-card { min-width: unset; }

  .contact-box { padding: 2.5rem 1.25rem; }
  .contact-box h2 { font-size: 1.5rem; }
  .contact-links { flex-direction: column; align-items: center; }
}

@media (max-width: 400px) {
  nav { padding: 0 1rem; }
  section { padding: 48px 1rem; }
  .hero { padding: 48px 1rem 48px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-photo-wrap { width: 160px; height: 192px; }
  .lang-toggle { display: none; }
}

[data-theme="light"] {
  --bg:     #f5f3ff;
  --bg2:    #ede9fe;
  --white:  #1e1033;
  --muted:  #6b7280;
  --border: rgba(30,16,51,0.09);
  --card:   rgba(30,16,51,0.04);
  --shadow: 0 4px 24px rgba(244,114,182,0.18);
}
[data-theme="light"] nav { background: rgba(245,243,255,0.88); }
[data-theme="light"] .blob-1 { background: rgba(244,114,182,0.25); }
[data-theme="light"] .blob-2 { background: rgba(192,132,252,0.2); }
[data-theme="light"] .nav-links a { color: var(--muted); }

.theme-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--border);
  font-size: 1.05rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: border-color 0.2s, transform 0.35s ease;
}
.theme-btn:hover { border-color: var(--pink); transform: rotate(20deg) scale(1.1); }

@media (hover: hover) and (pointer: fine) {
  * { cursor: none !important; }
}
.cursor-dot {
  display: none; position: fixed; pointer-events: none; z-index: 9999;
  width: 20px; height: 18px;
  background: var(--pink); transform: translate(-50%, -50%);
  clip-path: path('M 10 16 C 10 16 1 10 1 5 C 1 2.2 3.2 0 6 0 C 7.8 0 9.4 0.9 10 2.3 C 10.6 0.9 12.2 0 14 0 C 16.8 0 19 2.2 19 5 C 19 10 10 16 10 16 Z');
}
.cursor-ring {
  display: none; position: fixed; pointer-events: none; z-index: 9998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(244,114,182,0.5);
  transform: translate(-50%, -50%);
}
@media (hover: hover) and (pointer: fine) {
  .cursor-dot, .cursor-ring { display: block; }
}
@keyframes particleFade {
  0%   { opacity: 0.8; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(0.1); }
}
.cursor-particle {
  position: fixed; pointer-events: none; z-index: 9997;
  border-radius: 50%; transform: translate(-50%,-50%);
  animation: particleFade 0.55s ease-out forwards;
}

@keyframes gradientFlow {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes titleFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}
.hero h1 .title {
  background-size: 200% 200% !important;
  animation: gradientFlow 5s ease infinite, titleFloat 4s ease-in-out infinite;
  display: inline-block;
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.blob-1 { transition: top 1.8s ease; }
.blob-2 { transition: bottom 1.8s ease; }

.nav-links a.spy-active { color: var(--pink); }

@keyframes heartFall {
  0%   { transform: translateY(0) rotate(-10deg) scale(0); opacity: 1; }
  10%  { transform: translateY(-20px) scale(1); }
  100% { transform: translateY(108vh) rotate(20deg) scale(0.6); opacity: 0; }
}
.heart-rain {
  position: fixed; pointer-events: none; z-index: 9999;
  animation: heartFall linear forwards;
}

.cv-btn {
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); padding: 0.28rem 0.65rem; border-radius: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  cursor: pointer; font-family: 'Inter', sans-serif;
  text-decoration: none; display: inline-flex; align-items: center;
  transition: border-color 0.2s, color 0.2s;
}
.cv-btn:hover { border-color: var(--pink); color: var(--pink); }

.error-page {
  position: relative; z-index: 1;
  min-height: calc(100vh - 64px - 90px);
  max-width: 700px; margin: 0 auto;
  padding: 80px 2.5rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1.25rem;
}
.error-code {
  font-size: clamp(4rem, 14vw, 7.5rem); font-weight: 900; line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.error-title {
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.02em;
  color: var(--white);
}
.error-desc { font-size: 0.95rem; color: var(--muted); max-width: 420px; }

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 10000;
  background: var(--pink); color: white; font-weight: 700;
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  text-decoration: none; transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .cursor-dot, .cursor-ring, .cursor-particle { display: none !important; }
  @media (hover: hover) and (pointer: fine) {
    * { cursor: auto !important; }
  }
}
