/* ============================================================
   RESET & TOKENS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #060608;
  --bg-1:     #0d0d10;
  --bg-2:     #121215;
  --bg-3:     #1a1a1e;
  --lime:     #C8FF41;
  --lime-lo:  rgba(200,255,65,0.06);
  --lime-mid: rgba(200,255,65,0.16);
  --white:    #F4F4EF;
  --muted:    #4a4a52;
  --border:   rgba(255,255,255,0.07);
  --mono:     'JetBrains Mono', monospace;
  /* rgb channels of --white, used for opacity variants */
  --text-rgb: 244,244,239;
}

::selection { background: var(--lime); color: var(--bg); }

html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--lime);
  z-index: 9999;
  pointer-events: none;
  transition: width 0.06s linear;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 34px; height: 34px;
  border: 1.5px solid rgba(200,255,65,0.32);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%,-50%);
  transition: width 0.22s ease, height 0.22s ease, border-color 0.22s ease;
}
body.link-hover .cursor-ring { width: 52px; height: 52px; border-color: rgba(200,255,65,0.55); }

/* ============================================================
   SECTION PROGRESS DOTS (right edge)
   ============================================================ */
.section-dots {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}
.sdot {
  position: relative;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
  display: block;
  transition: background 0.3s, transform 0.3s;
}
.sdot.active { background: var(--lime); transform: scale(1.5); }
/* Tooltip on hover */
.sdot::after {
  content: attr(data-label);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.sdot:hover::after { opacity: 1; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.mono  { font-family: var(--mono); }
.lime  { color: var(--lime); }

.section     { padding: 110px 0; }
.section-alt { background: var(--bg-1); }

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.section-heading {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 56px;
  letter-spacing: -0.025em;
}
.section-heading.centered { text-align: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.35s, border-color 0.35s;
}
#navbar.scrolled {
  background: rgba(6,6,8,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1100px; margin: 0 auto;
  padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.3s;
}
#navbar.scrolled .nav-container { padding: 14px 28px; }

.nav-logo {
  font-family: var(--mono);
  font-size: 17px; font-weight: 700;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.06em;
}
.bracket { color: var(--lime); }

.nav-links { display: flex; align-items: center; gap: 4px; }

/* Text-roll hover — the second span rolls up into view in lime */
.nav-link {
  position: relative;
  display: inline-flex; flex-direction: column;
  overflow: hidden; height: 1.25em;
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding: 0 14px; cursor: none;
}
.nav-link span {
  display: block; line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.38s cubic-bezier(0.76,0,0.24,1);
}
.nav-link span:first-child { color: rgba(var(--text-rgb),0.52); }
.nav-link span:last-child  { color: var(--lime); position: absolute; top: 100%; }
.nav-link:hover span:first-child,
.nav-link.active span:first-child { transform: translateY(-100%); color: var(--white); }
.nav-link:hover span:last-child,
.nav-link.active span:last-child  { transform: translateY(-100%); }

.nav-cta {
  text-decoration: none; font-size: 13.5px; font-weight: 600;
  padding: 9px 22px; border-radius: 3px;
  background: var(--lime); color: var(--bg);
  margin-left: 14px; letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  position: relative;
}
.nav-cta:hover { opacity: 0.88; }

.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: none; padding: 6px; z-index: 1002;
}
.hamburger span {
  width: 24px; height: 1.5px; background: var(--white);
  border-radius: 1px; display: block; transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--bg); overflow: hidden;
}

/* Flow-field canvas fills the hero */
#flowCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 1;
}

/* Subtle SVG film-grain overlay — adds texture depth */
.hero-noise {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2; opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

.hero-content {
  position: relative; z-index: 3;
  max-width: 1100px; width: 100%;
  margin: 0 auto;
  padding: 148px 28px 108px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  color: var(--lime); background: var(--lime-lo);
  border: 1px solid var(--lime-mid);
  padding: 6px 14px; border-radius: 2px;
  margin-bottom: 42px; letter-spacing: 0.05em;
}
.badge-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 12px var(--lime);
  animation: bpulse 2.2s ease-in-out infinite; flex-shrink: 0;
}
@keyframes bpulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.42; transform:scale(0.82); } }

/* ASYMMETRIC hero name — big first name left, surname smaller right */
.hero-name { margin-bottom: 38px; }

.hn-1 {
  display: block;
  font-size: clamp(4.5rem, 14.5vw, 13rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.045em;
  color: var(--white);
}
.hn-2 {
  display: block;
  font-size: clamp(3rem, 10.2vw, 9.2rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--white);
  text-align: right;
}
.hn-2 em { color: var(--lime); font-style: normal; }

.hero-meta {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 50px; flex-wrap: wrap;
}
.hero-role {
  font-family: var(--mono);
  font-size: clamp(0.88rem, 1.8vw, 1.15rem);
  color: rgba(var(--text-rgb),0.52);
  display: flex; align-items: center; gap: 2px;
}
#typeTarget { color: var(--lime); }
.type-cursor { color: var(--lime); animation: blink 0.9s step-end infinite; }
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0; } }

.hero-divider { width: 1px; height: 18px; background: var(--border); flex-shrink: 0; }
.hero-loc { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

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

/* Magnetic wrapper — JS adds transform for magnetic pull */
.magnetic { position: relative; display: inline-flex; }

.btn-lime {
  background: var(--lime); color: var(--bg);
  font-weight: 700; font-size: 14.5px;
  padding: 14px 30px; border-radius: 3px;
  text-decoration: none; letter-spacing: 0.01em;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-lime:hover { opacity: 0.9; }

.btn-outline {
  color: var(--white); font-weight: 600; font-size: 14.5px;
  padding: 14px 30px; border-radius: 3px; border: 1px solid var(--border);
  text-decoration: none; background: transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--lime-mid); background: var(--lime-lo); color: var(--lime); }

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 3;
}
.scroll-line-wrap { width: 1.5px; height: 52px; background: rgba(255,255,255,0.08); overflow: hidden; }
.scroll-line-inner {
  width: 100%; height: 100%; background: var(--lime);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%{transform:translateY(-100%);} 50%{transform:translateY(0);} 100%{transform:translateY(100%);} }
.hero-scroll-hint span {
  font-family: var(--mono); font-size: 10px;
  color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-band {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0; background: var(--bg-1);
}
.ticker-band:hover .ticker-track { animation-play-state: paused; }
.ticker-track {
  display: flex; align-items: center; gap: 28px;
  white-space: nowrap;
  animation: tickerScroll 36s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--mono); font-size: 12.5px;
  font-weight: 500; color: var(--muted); letter-spacing: 0.05em;
}
.td { color: var(--lime) !important; font-size: 14px !important; }
@keyframes tickerScroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ============================================================
   STATS
   ============================================================ */
.stats-band { padding: 60px 0; border-bottom: 1px solid var(--border); }
.stats-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 0 52px; }
.stat-value {
  font-family: var(--mono);
  font-size: clamp(2.4rem,5vw,3.4rem); font-weight: 900;
  color: var(--lime); line-height: 1; margin-bottom: 8px; letter-spacing: -0.025em;
}
.stat-sfx { font-size: 0.56em; font-weight: 700; }
.stat-label {
  font-family: var(--mono); font-size: 11.5px;
  color: var(--muted); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
}
.stat-sep { width: 1px; height: 50px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.code-window {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(200,255,65,0.04);
}
.code-titlebar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; background: var(--bg-3); border-bottom: 1px solid var(--border);
}
.code-dots { display: flex; gap: 7px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r{background:#ff5f57;} .dot-y{background:#febc2e;} .dot-g{background:#28c840;}
.code-filename { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-left: 6px; }
.code-body {
  font-family: var(--mono); font-size: 13.5px; line-height: 1.82;
  padding: 26px 28px; color: rgba(var(--text-rgb),0.48); white-space: pre; overflow-x: auto;
}
.kw{color:#c792ea;} .cl{color:#82aaff;} .fn{color:#82aaff;}
.st{color:#c3e88d;} .nm{color:#f78c6c;} .cm{color:#2d3d4a; font-style:italic;}

.about-p { font-size: 16px; color: rgba(var(--text-rgb),0.72); line-height: 1.85; margin-bottom: 20px; }
.about-p strong { color: var(--white); font-weight: 600; }

.about-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.pill {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  padding: 7px 15px; border-radius: 2px;
  background: var(--lime-lo); border: 1px solid var(--lime-mid); color: var(--lime);
  letter-spacing: 0.03em; transition: background 0.2s, border-color 0.2s;
}
.pill:hover { background: rgba(200,255,65,0.12); border-color: rgba(200,255,65,0.3); }

/* ============================================================
   SKILLS — big text row flip (pixel.melbourne inspired)
   ============================================================ */
.skills-list { border-top: 1px solid var(--border); }

.sr {
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden; cursor: default;
}
.sr-main, .sr-alt {
  display: flex; align-items: center; gap: 22px; padding: 18px 0;
  transition: transform 0.54s cubic-bezier(0.76,0,0.24,1);
}
.sr-alt { position: absolute; top: 100%; left: 0; right: 0; }
.sr:hover .sr-main { transform: translateY(-100%); }
.sr:hover .sr-alt   { transform: translateY(-100%); }

.sr-idx {
  font-family: var(--mono); font-size: 12px;
  color: var(--muted); min-width: 26px; flex-shrink: 0;
  transition: color 0.3s;
}
.sr:hover .sr-alt .sr-idx { color: rgba(200,255,65,0.42); }
.sr-name, .sr-reveal {
  font-size: clamp(2.1rem, 5.4vw, 4.8rem);
  font-weight: 800; line-height: 1; letter-spacing: -0.03em;
}
.sr-name   { color: var(--white); }
.sr-reveal { color: var(--lime); }
.sr-cat {
  margin-left: auto; font-family: var(--mono); font-size: 11.5px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em;
  flex-shrink: 0; transition: color 0.3s;
}
.sr:hover .sr-cat { color: rgba(200,255,65,0.48); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline { position: relative; }
.tl-item { display: grid; grid-template-columns: 22px 1fr; gap: 0 36px; margin-bottom: 30px; }
.tl-connector { display: flex; flex-direction: column; align-items: center; padding-top: 5px; }
.tl-node {
  width: 13px; height: 13px; border-radius: 50%;
  border: 2px solid var(--muted); background: var(--bg);
  flex-shrink: 0; position: relative; z-index: 1; transition: border-color 0.3s;
}
.tl-node.active { border-color: var(--lime); box-shadow: 0 0 14px rgba(200,255,65,0.42); }
.tl-node.active::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(200,255,65,0.18);
  animation: nodeRipple 2.4s ease-out infinite;
}
@keyframes nodeRipple { 0%{transform:scale(1);opacity:.8;} 100%{transform:scale(2.2);opacity:0;} }
.tl-line { width: 1px; flex: 1; margin-top: 5px; background: linear-gradient(to bottom,var(--border),transparent); }

/* 3D tilt cards — JS handles rotateX/Y via GSAP */
.tl-card, .ach-card {
  will-change: transform;
  transform-style: preserve-3d;
}

.tl-card {
  background: var(--bg-1); border: 1px solid var(--border);
  border-radius: 8px; padding: 26px 30px; margin-bottom: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.tl-card:hover { border-color: rgba(200,255,65,0.18); box-shadow: 0 8px 40px rgba(0,0,0,0.4); }

.tl-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.tl-period {
  font-family: var(--mono); font-size: 11.5px; color: var(--muted);
  padding: 4px 10px; border-radius: 2px; background: var(--bg-3);
  display: inline-block; margin-bottom: 8px;
}
.tl-period.current { color: var(--lime); background: var(--lime-lo); border: 1px solid var(--lime-mid); }
.tl-location { font-family: var(--mono); font-size: 12px; color: var(--muted); flex-shrink: 0; }
.tl-role { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.tl-company { font-size: 13.5px; color: rgba(200,255,65,0.62); font-weight: 500; margin-bottom: 14px; }
.tl-company em { color: var(--muted); font-style: normal; }
.tl-project {
  display: inline-block; font-family: var(--mono); font-size: 11px;
  color: var(--lime); background: var(--lime-lo);
  border: 1px solid var(--lime-mid); padding: 3px 10px; border-radius: 2px; margin-bottom: 16px;
}
.tl-points { list-style: none; margin-bottom: 20px; }
.tl-points li {
  position: relative; padding-left: 18px; margin-bottom: 9px;
  font-size: 14px; color: rgba(var(--text-rgb),0.68); line-height: 1.68;
}
.tl-points li::before { content:'→'; position:absolute; left:0; color:var(--lime); font-size:12px; top:2px; }
.tl-points li strong { color: var(--white); font-weight: 600; }
.tl-stack { display: flex; flex-wrap: wrap; gap: 6px; }
.tl-stack span {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  padding: 4px 10px; background: var(--lime-lo);
  border: 1px solid var(--lime-mid); color: rgba(200,255,65,0.72); border-radius: 2px;
}

/* ============================================================
   ACHIEVEMENTS
   ============================================================ */
.ach-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.ach-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ach-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--lime); opacity: 0; transition: opacity 0.3s;
}
.ach-card:hover { border-color: rgba(200,255,65,0.24); box-shadow: 0 12px 40px rgba(0,0,0,0.45); }
.ach-card:hover::before { opacity: 1; }
.ach-number {
  font-family: var(--mono); font-size: 2.35rem; font-weight: 900;
  color: var(--lime); line-height: 1; margin-bottom: 12px; letter-spacing: -0.02em;
}
.ach-title { font-size: 14.5px; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.ach-desc  { font-size: 13px; color: var(--muted); line-height: 1.62; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-top { margin-bottom: 56px; }
.contact-big {
  font-size: clamp(4.5rem,13vw,11rem); font-weight: 900;
  line-height: 0.88; letter-spacing: -0.042em;
  color: var(--white); margin-bottom: 24px;
}
.contact-sub { font-size: 17px; color: var(--muted); line-height: 1.72; max-width: 400px; }

.contact-cards { display: flex; flex-direction: column; gap: 10px; max-width: 660px; }
.contact-card {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 24px; background: var(--bg-1);
  border: 1px solid var(--border); border-radius: 6px;
  text-decoration: none; transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.contact-card:hover { border-color: var(--lime-mid); transform: translateX(6px); background: var(--lime-lo); }
.cc-icon {
  width: 44px; height: 44px; background: var(--lime-lo);
  border: 1px solid var(--lime-mid); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); flex-shrink: 0;
}
.cc-content { flex: 1; }
.cc-type {
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px;
}
.cc-value { font-size: 14.5px; font-weight: 600; color: var(--white); }
.cc-arrow { color: var(--lime); font-size: 18px; transition: transform 0.2s; }
.contact-card:hover .cc-arrow { transform: translateX(5px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer p { font-size: 12.5px; color: var(--muted); }


/* ============================================================
   CONTACT — two-column layout with avatar
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: center;
}
.contact-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   AVATAR SVG — developer character illustration
   ============================================================ */
.avatar-wrap {
  position: relative;
  width: 260px;
}
.avatar-svg {
  width: 100%;
  height: auto;
  display: block;
}
/* Lime blob breathes */
.av-blob {
  transform-origin: 120px 140px;
  animation: avBlobBreath 7s ease-in-out infinite;
}
@keyframes avBlobBreath {
  0%,100% { transform: scale(1)    rotate(0deg); }
  38%     { transform: scale(1.04, 0.97) rotate(2deg); }
  70%     { transform: scale(0.97, 1.03) rotate(-2deg); }
}
/* Floating code chip */
.av-code-float {
  animation: avChipFloat 4.5s ease-in-out infinite;
}
@keyframes avChipFloat {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-9px); }
}

/* ============================================================
   HERO DECORATIVE SHAPES — floating SVG accents
   ============================================================ */
.hero-deco {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
  overflow: hidden;
}
.deco {
  position: absolute;
  opacity: 0;
}
.deco-plus    { top: 18%; right: 22%; }
.deco-circle  { top: 60%; right: 8%;  }
.deco-diamond { top: 36%; right: 4%;  }
.deco-dots    { top: 74%; right: 32%; }
.deco-wave    { top: 14%; right: 6%;  }
.deco-star    { top: 47%; right: 19%; }

/* ============================================================
   SQUIGGLY UNDERLINE — hand-drawn SVG path under "Patil"
   ============================================================ */
.squiggle-wrap {
  position: relative;
  display: inline-block;
  font-style: normal;
  color: var(--lime);
}
.squiggle-svg {
  position: absolute;
  bottom: -10px; left: 0;
  width: 100%; height: 16px;
  overflow: visible; pointer-events: none;
}
.squiggle-path {
  stroke-dasharray: 295;
  stroke-dashoffset: 295;
}

/* ============================================================
   CURSOR TRAIL — lime particle history tail
   ============================================================ */
.trail-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0;
  mix-blend-mode: screen;
}

/* ============================================================
   CONFETTI DOT — burst on button click
   ============================================================ */
.confetti-dot {
  position: fixed;
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
}

/* ============================================================
   CHARACTER HOVER — individual letter bounce on hero name
   ============================================================ */
.hn-1 .char { display: inline-block; cursor: default; }

/* ============================================================
   ABOUT — hover underline sweep on key terms
   ============================================================ */
.about-p strong {
  background-image: linear-gradient(var(--lime), var(--lime));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 1.5px;
  transition: background-size 0.42s ease, color 0.28s;
  padding-bottom: 1px;
}
.about-p strong:hover {
  background-size: 100% 1.5px;
  color: rgba(200,255,65,0.9);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; gap: 44px; }
  .ach-grid      { grid-template-columns: 1fr 1fr; }
  .sr-cat        { display: none; }
  .section-dots  { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-right { display: none; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .hero-deco { display: none; }
  .nav-links {
    position: fixed; inset: 0;
    background: rgba(6,6,8,0.97); backdrop-filter: blur(24px);
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); z-index: 1001;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 24px; height: 1.4em; }
  .nav-cta  { font-size: 20px; padding: 12px 28px; }
  .hn-2     { text-align: left; }
  .stat-item{ padding: 0 28px; }
  .stat-sep { height: 36px; }
  .tl-item  { grid-template-columns: 16px 1fr; gap: 0 18px; }
  .tl-card  { padding: 20px 20px; }
  .section  { padding: 80px 0; }
  .hero-content { padding: 125px 28px 85px; }
  .hero-divider { display: none; }
}
@media (max-width: 560px) {
  .ach-grid    { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 36px; }
  .stat-sep    { display: none; }
  .cursor, .cursor-ring { display: none; }
  .trail-dot   { display: none; }
  body         { cursor: auto; }
  .contact-cards { max-width: 100%; }
}
