/* ── TOKENS ── */
:root {
  --bg:          #080b14;
  --surface:     rgba(255, 255, 255, 0.04);
  --border:      rgba(255, 255, 255, 0.07);
  --border-cyan: rgba(0, 245, 255, 0.15);
  --cyan:        #00f5ff;
  --purple:      #bf00ff;
  --pink:        #ff0080;
  --text:        #c0c8d8;
  --muted:       #556677;
  --grad-hero:   linear-gradient(90deg, #00f5ff, #bf00ff);
  --blur:        blur(16px);
  --radius-card: 12px;
  --radius-chip: 20px;
  --nav-height:  64px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* prevents fixed-position elements escaping body clip on iOS */
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── UTILITY ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-cyan), transparent);
}

/* Glass mixin via class */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-card);
}

/* Chips */
.chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-chip);
}
.chip-cyan   { background: rgba(0, 245, 255, 0.1); color: #00c8d4; border: 1px solid rgba(0,245,255,0.2); }
.chip-purple { background: rgba(191, 0, 255, 0.1); color: #c060ff; border: 1px solid rgba(191,0,255,0.2); }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(6, 10, 24, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
  transition: transform 0.35s ease;
}
#nav.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { transform: scaleX(1); }

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

/* Mobile nav */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: rgba(6, 10, 24, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 0.9rem 1rem; font-size: 1rem; }
}

/* ── SECTIONS — shared spacing ── */
section:not(#hero) {
  padding: 6rem 0;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

#particles-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Radial vignette over particles */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, var(--bg) 85%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
}

.hero-name {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.4;
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: var(--muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: rgba(0, 245, 255, 0.05);
  border: 1px solid var(--border-cyan);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-card);
  padding: 1.25rem 0.75rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  display: block;
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn-cta {
  display: inline-block;
  background: var(--grad-hero);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius-chip);
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-cta:hover { opacity: 0.88; transform: translateY(-2px); }

@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── ABOUT ── */
.about-bio {
  max-width: 740px;
  margin-bottom: 2.5rem;
}
.about-bio p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-bio p:last-child { margin-bottom: 0; }

.about-specialisms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.specialism-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--cyan);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-card);
  padding: 1.4rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.specialism-card:hover {
  border-color: var(--border-cyan);
  border-top-color: var(--cyan);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,245,255,0.08);
}

.specialism-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }

.specialism-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.specialism-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .about-specialisms { grid-template-columns: 1fr; }
}

/* ── EXPERIENCE ── */
.timeline {
  position: relative;
  padding-left: 2rem;
}

/* Centre line */
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--purple), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

/* Timeline dot */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 1.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  border: 2px solid var(--bg);
}

.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}
.timeline-card:hover {
  border-color: var(--border-cyan);
  transform: translateX(4px);
}

.timeline-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}

.company {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.role {
  font-size: 0.75rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.timeline-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  flex-shrink: 0;
}

.date {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}

.badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: var(--radius-chip);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-remote  { background: rgba(0,245,255,0.12);  color: var(--cyan);   }
.badge-hybrid  { background: rgba(191,0,255,0.12);  color: #c060ff;       }
.badge-onsite  { background: rgba(255,0,128,0.12);  color: var(--pink);   }
.badge-founder { background: rgba(255,200,0,0.12);  color: #ffd700;       }

.tech-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.timeline-bullets {
  padding-left: 1.1rem;
  list-style: disc;
}
.timeline-bullets li {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 0.3rem;
}
.timeline-bullets li::marker { color: var(--cyan); }

/* Early career */
.early-career {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

.early-career-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.early-career-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.early-career-items span {
  font-size: 0.8rem;
  color: var(--text);
}
.early-career-items em {
  color: var(--muted);
  font-style: normal;
  margin-left: 0.3rem;
}

@media (max-width: 768px) {
  .timeline { padding-left: 1.5rem; }
  .timeline-card-header { flex-direction: column; align-items: flex-start; }
  .timeline-meta { align-items: flex-start; }
}

/* ── SKILLS ── */

/* Icon card carousel */
.skills-carousel-outer {
  position: relative;
  overflow: hidden;
  margin: 1.75rem 0 2.5rem;
}
.skills-carousel-outer::before,
.skills-carousel-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.skills-carousel-outer::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.skills-carousel-outer::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.skills-carousel-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.75rem 0;
  will-change: transform;
  user-select: none;
}

.skills-carousel-outer { cursor: ew-resize; }
.skills-carousel-outer:active { cursor: grabbing; }

/* Individual icon card */
.mc {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,245,255,0.12);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
}
.mc:hover {
  border-color: rgba(0,245,255,0.45);
  background: rgba(0,245,255,0.05);
  box-shadow: 0 0 28px rgba(0,245,255,0.1), inset 0 0 16px rgba(0,245,255,0.04);
  transform: translateY(-6px);
}
.mc.mc-active {
  border-color: var(--cyan);
  background: rgba(0,245,255,0.08);
  box-shadow: 0 0 32px rgba(0,245,255,0.2), inset 0 0 16px rgba(0,245,255,0.06);
}

/* Skill detail panel */
.skills-detail {
  background: var(--surface);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-card);
  padding: 1.1rem 1.4rem;
  margin-top: 0.75rem;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
}
.skills-detail-name {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 0.45rem;
}
.skills-detail-desc {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}
.mc img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}
.logo-light { filter: brightness(0) invert(0.85); }
.mc-name {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Skill tabs */
.skills-tab-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.skills-tab-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-chip);
  padding: 0.48rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.skills-tab-btn:hover {
  border-color: rgba(0,245,255,0.3);
  color: var(--text);
}
.skills-tab-btn.active {
  background: rgba(0,245,255,0.1);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0,245,255,0.15);
}

.skills-tab-panels { min-height: 70px; }
.skills-tab-panel {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.skills-tab-panel.active { display: flex; }

/* ── HIGHLIGHTS ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: transform 0.2s, border-color 0.2s;
}
.highlight-card:hover { transform: translateY(-5px); border-color: var(--border-cyan); }

.highlight-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}
.highlight-card p {
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.65;
}

/* Accent borders */
.highlight-pink   { border-top: 3px solid var(--pink);   }
.highlight-cyan   { border-top: 3px solid var(--cyan);   }
.highlight-purple { border-top: 3px solid var(--purple); }

.highlight-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.highlight-stat { text-align: center; }

.highlight-num {
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.highlight-lbl {
  font-size: 0.55rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.highlight-pink   .highlight-num { color: var(--pink);   }
.highlight-cyan   .highlight-num { color: var(--cyan);   }
.highlight-purple .highlight-num { color: var(--purple); }

@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

/* ── EDUCATION ── */
.education-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.edu-card {
  flex: 1;
  min-width: 200px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.2s;
}
.edu-card:hover { border-color: var(--border-cyan); }

.edu-icon { font-size: 1.75rem; margin-bottom: 0.6rem; }

.edu-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.edu-card p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.edu-year {
  font-size: 0.65rem;
  color: var(--cyan);
  font-weight: 600;
}

/* ── CONTACT ── */
#contact {
  padding-bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}

.contact-intro {
  font-size: 1rem;
  color: var(--muted);
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 4rem;
}

.contact-links-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border-cyan);
  border-radius: var(--radius-card);
  padding: 0.85rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-contact:hover {
  background: rgba(0, 245, 255, 0.08);
  transform: translateX(4px);
}
.btn-contact-icon {
  font-size: 1rem;
  font-style: normal;
}

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
}

.btn-submit {
  background: var(--grad-hero);
  color: #000;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem;
  border-radius: var(--radius-chip);
  border: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-success {
  font-size: 0.85rem;
  color: #00ff88;
  text-align: center;
  padding: 0.5rem;
}

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

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── POLISH ── */

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,245,255,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,245,255,0.6); }

/* Text selection */
::selection { background: rgba(0, 245, 255, 0.25); color: #fff; }

/* Focus outlines (keyboard nav) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Alternating section backgrounds */
#about     { background: transparent; }
#experience { background: rgba(0,0,0,0.15); }
#skills    { background: rgba(0,0,0,0.25); padding-bottom: 0px !important; }
#highlights { background: transparent; }
#education { background: rgba(0,0,0,0.15); }

/* ── CUSTOM CURSOR ── */
@media (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }

  #cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px var(--cyan), 0 0 12px var(--cyan);
    transition: width 0.15s, height 0.15s, background 0.15s, opacity 0.15s;
    will-change: transform;
  }

  #cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0,245,255,0.18) 0%, rgba(0,245,255,0.06) 45%, transparent 70%);
    will-change: transform;
  }

  #cursor-dot.cursor-hover {
    width: 12px; height: 12px;
    background: var(--purple);
    box-shadow: 0 0 8px var(--purple), 0 0 20px var(--purple);
  }

  #cursor-dot.cursor-click {
    width: 6px; height: 6px;
    opacity: 0.6;
  }
}
