/* =============================================
   DESIGN TOKENS — EXACT FROM bytez.wtf
   ============================================= */
:root {
  --bg:           #050507;
  --surface:      #0a0a0f;
  --surface-2:    #111118;
  --border:       #1a1a24;
  --border-hover: #2a2a38;

  --text:         #f0f0f5;
  --text-sec:     #8888a0;
  --text-muted:   #555568;

  --accent:       #6366f1;
  --accent-muted: rgba(99,102,241,0.15);
  --accent-glow:  rgba(99,102,241,0.4);

  --role-color:   #2b7fff;
  --available:    #22c55e;
  --limited:      #eab308;
  --unavailable:  #ef4444;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Selection */
::selection { background: rgba(99,102,241,.3); color: #fff; }

/* =============================================
   BACKGROUND LAYERS
   ============================================= */
.bg-layers {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Code terminal */
.code-terminal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  filter: blur(10px);
  opacity: .35;
}

.code-text {
  white-space: pre;
  color: #d4d4d4;
  margin: 0;
  padding: 3rem;
  font-family: 'Fira Code', 'JetBrains Mono', 'Cascadia Code', monospace;
  font-size: clamp(14px, 1.8vw, 22px);
  line-height: 1.7;
}

.code-cursor {
  display: inline-block;
  vertical-align: text-bottom;
  width: 2px;
  height: 1.2em;
  margin-left: 1px;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e, 0 0 20px rgba(34,197,94,.4);
}

/* VS Code colours */
.kw  { color: #569cd6; }  /* keywords */
.tp  { color: #4ec9b0; }  /* types */
.vr  { color: #9cdcfe; }  /* variables */
.fn  { color: #dcdcaa; }  /* functions */
.st  { color: #ce9178; }  /* strings */
.cm  { color: #6a9955; }  /* comments */
.an  { color: #dcdcaa; }  /* annotations */
.pl  { color: #d4d4d4; }  /* plain */
.nm  { color: #b5cea8; }  /* numbers */

/* Noise texture */
.noise-texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .03;
  pointer-events: none;
}

/* Vignette */
.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%,
    transparent 0%,
    rgba(5,5,7,.3) 40%,
    rgba(5,5,7,.75) 100%);
}

/* Radial top glow */
.radial-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%,
    rgba(43,127,255,.04) 0%, transparent 70%);
}

/* =============================================
   NAVBAR
   ============================================= */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
#nav.scrolled {
  background: rgba(5,5,7,.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: .25rem;
  margin-left: auto;
}

.nav-link {
  padding: .45rem .8rem;
  border-radius: .5rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-sec);
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.05); }

.nav-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem;
  border-radius: .6rem;
  font-size: .8rem;
  font-weight: 600;
  transition: all .2s;
  border: 1px solid var(--border);
}

.nav-btn-discord {
  background: var(--surface);
  color: var(--text);
}
.nav-btn-discord:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(99,102,241,.1);
  transform: scale(1.05);
}

.nav-btn-ghost {
  background: transparent;
  color: var(--text-sec);
}
.nav-btn-ghost:hover {
  color: var(--text);
  background: rgba(255,255,255,.05);
  border-color: var(--accent);
  transform: scale(1.05);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: .5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-sec);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.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); }

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: .75rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(5,5,7,.95);
  backdrop-filter: blur(20px);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  padding: .75rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-sec);
  border-radius: .5rem;
  transition: color .15s, background .15s;
}
.nav-mobile-link:hover { color: var(--text); background: rgba(255,255,255,.05); }

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
section {
  position: relative;
  z-index: 2;
}

.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 8rem 2rem 8rem;
}

.section-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 5rem;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.anim-slide {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0s);
}
.anim-slide.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 2rem 6rem;
}

.hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .9;
  color: #ffffff;
  margin-bottom: 2.5rem;
  min-height: 1em;
}

.hero-caret {
  display: inline-block;
  width: .08em;
  height: .78em;
  margin-left: .06em;
  background: #ffffff;
  vertical-align: -.05em;
  animation: hero-caret-blink .85s step-end infinite;
}

.hero-caret.done {
  animation: none;
  opacity: 0;
  transition: opacity .4s ease;
}

@keyframes hero-caret-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--text-sec);
  line-height: 1.625;
  margin-bottom: 3rem;
  max-width: 42rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Chrome button */
.chrome-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 600;
  color: #000;
  background: linear-gradient(135deg,#fff,#e0e7ff,#fff,#c7d2fe,#fff) 0 0/300% 300%;
  animation: chrome-shift 4s ease infinite;
  transition: box-shadow .3s, transform .2s;
  white-space: nowrap;
}
.chrome-btn:hover {
  box-shadow: 0 0 40px rgba(165,180,252,.4), 0 0 80px rgba(165,180,252,.15);
  transform: scale(1.04);
}

@keyframes chrome-shift {
  0%, 100% { background-position: 0%; }
  50%       { background-position: 100%; }
}

.arrow-icon {
  transition: transform .2s;
}
.chrome-btn:hover .arrow-icon {
  transform: translateX(5px);
}

/* Ghost button */
.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.ghost-btn:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(99,102,241,.15);
  transform: scale(1.04);
}
.ghost-btn:hover .arrow-icon {
  transform: translateX(5px);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
#about { background: transparent; }

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

.about-col-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .625rem 0;
  cursor: default;
}

.about-line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent);
  margin-top: .7rem;
  flex-shrink: 0;
  transition: width .3s ease;
}
.about-item:hover .about-line { width: 1rem; }

.about-item-label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-sec);
  transition: color .2s;
}
.about-item:hover .about-item-label { color: var(--text); }

.about-item-value {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =============================================
   EXPERIENCE SECTION — DESKTOP STICKY
   ============================================= */
#experience {
  position: relative;
  z-index: 2;
}

/* Mobile */
.exp-mobile { display: none; }
.exp-count {
  font-size: .875rem;
  color: var(--text-muted);
  margin-top: -4.5rem;
  margin-bottom: 2.5rem;
}

.exp-mobile-card {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.exp-mobile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.exp-mobile-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: .55rem;
  box-shadow: 0 0 12px var(--accent-glow);
}

.exp-mobile-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.exp-mobile-role {
  font-size: .7rem;
  font-weight: 700;
  color: var(--role-color);
}

.exp-mobile-dates {
  font-size: .7rem;
  color: var(--text-muted);
}

.exp-active-badge {
  margin-left: auto;
  font-size: .7rem;
  font-weight: 600;
  padding: .15rem .6rem;
  border-radius: 999px;
  background: var(--accent-muted);
  color: var(--accent);
}

.exp-desc {
  font-size: .875rem;
  color: var(--text-sec);
  line-height: 1.625;
  margin-bottom: 1rem;
}

.exp-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.exp-link-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .75rem;
  border-radius: .5rem;
  font-size: .75rem;
  font-weight: 500;
  color: var(--text-sec);
  border: 1px solid var(--border);
  transition: color .15s, background .15s, transform .15s, border-color .15s;
}
.exp-link-btn:hover { color: var(--text); background: rgba(255,255,255,.05); border-color: var(--accent); transform: scale(1.05); }

/* Desktop */
.exp-desktop {
  display: block;
}

.exp-desktop-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  height: 100%;
}

/* Left sticky panel */
.exp-left {
  width: 28%;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 4rem;
  /* Sticky positioning requires parent to have explicit height */
}

.exp-left-title {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 2rem;
}

.exp-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.exp-counter-current {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--text);
}

.exp-counter-sep {
  font-size: .875rem;
  color: var(--text-muted);
}

.exp-progress-track {
  width: 1px;
  height: 8rem;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.exp-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  box-shadow: 0 0 8px var(--accent-glow);
  transition: transform .05s linear;
}

/* Right slides */
.exp-right {
  width: 72%;
  flex-shrink: 0;
  padding-left: 2rem;
}

.exp-slide {
  height: 100vh;
  display: flex;
  align-items: center;
}

.exp-slide-inner {
  width: 100%;
}

.exp-slide-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.exp-slide-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: .45rem;
  box-shadow: 0 0 18px var(--accent-glow);
}

.exp-slide-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .5rem;
}

.exp-slide-role {
  font-size: 1rem;
  font-weight: 700;
  color: var(--role-color);
}

.exp-slide-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.exp-slide-dates {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-sec);
}

.exp-slide-active {
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 999px;
  background: var(--accent-muted);
  color: var(--accent);
}

.exp-slide-desc {
  font-size: 1.05rem;
  line-height: 1.625;
  color: var(--text-sec);
  max-width: 42rem;
  margin-bottom: 2rem;
}

.exp-slide-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.exp-slide-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.exp-slide-link:hover {
  background: rgba(255,255,255,.07);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(99,102,241,.1);
  transform: scale(1.04);
}

.exp-ip-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.exp-ip-btn:hover { background: rgba(255,255,255,.07); border-color: var(--accent); transform: scale(1.04); }
.exp-ip-btn.copied { color: var(--available); }

/* =============================================
   TECHNOLOGIES SECTION
   ============================================= */
#skills { background: transparent; }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 4rem;
}

.skill-list { list-style: none; }

.skill-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .625rem 0;
  cursor: default;
}

.skill-line {
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
  transition: width .3s ease;
}
.skill-item:hover .skill-line { width: 1rem; }

.skill-item span:last-child {
  font-size: 1.1rem;
  color: var(--text-sec);
  transition: color .2s;
}
.skill-item:hover span:last-child { color: var(--text); }

/* =============================================
   PRICING SECTION
   ============================================= */
#pricing { background: transparent; }

.pricing-sub {
  font-size: 1rem;
  color: var(--text-sec);
  line-height: 1.7;
  margin-top: -4.5rem;
  margin-bottom: 3rem;
  max-width: 36rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color .25s, background .25s, transform .25s;
}
.pricing-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-2);
  transform: translateY(-4px);
}

.pricing-card-featured {
  border-color: rgba(99,102,241,.3);
  background: rgba(99,102,241,.06);
}
.pricing-card-featured:hover { border-color: rgba(99,102,241,.5); }

.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-tier {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

.pricing-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 999px;
  background: var(--accent-muted);
  color: var(--accent);
}

.pricing-desc {
  font-size: .875rem;
  color: var(--text-sec);
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--text-sec);
}

.pricing-dot {
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--role-color);
  flex-shrink: 0;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  font-size: .8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--surface-2);
  transition: background .2s, border-color .2s;
  text-align: center;
}
.pricing-btn:hover { background: rgba(255,255,255,.07); border-color: var(--border-hover); }

.pricing-btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.pricing-btn-accent:hover { background: #4f52d1; border-color: #4f52d1; }

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem;
  position: relative;
}

/* Subtle blue glow top */
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%,
    rgba(43,127,255,.04) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 48rem;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  background: var(--accent-muted);
  border: 1px solid rgba(99,102,241,.2);
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.contact-title {
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.contact-desc {
  font-size: 1.125rem;
  color: var(--text-sec);
  line-height: 1.625;
  max-width: 28rem;
  margin: 0 auto 3.5rem;
}

/* Discord widget */
.discord-widget {
  display: inline-flex;
  align-items: center;
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: 0 0 15px rgba(99,102,241,.06);
  margin-bottom: 2.5rem;
  transition: box-shadow .25s;
}
.discord-widget:hover { box-shadow: 0 0 25px rgba(99,102,241,.15); }

.discord-name {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: .75rem 1.25rem;
  font-family: 'Fira Code', 'Cascadia Code', monospace;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
}

.discord-username { color: var(--text); }

.discord-divider {
  width: 1px;
  height: 2rem;
  background: var(--border);
  flex-shrink: 0;
}

.discord-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-width: 110px;
  padding: .75rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  transition: background .2s, color .2s;
}
.discord-copy-btn:hover { background: rgba(255,255,255,.05); }
.discord-copy-btn.copied { color: var(--available); }

.contact-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.contact-id {
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: .75rem;
  color: var(--text-muted);
}

.footer-privacy {
  font-size: .75rem;
  color: var(--text-muted);
  transition: color .15s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-privacy:hover { color: var(--text-sec); }

/* =============================================
   PRIVACY OVERLAY
   ============================================= */
.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.privacy-overlay.open { opacity: 1; pointer-events: all; }

.privacy-panel {
  max-width: 42rem;
  margin: 0 auto;
  padding: 8rem 1.5rem 6rem;
}

.privacy-back {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 3rem;
  cursor: pointer;
  transition: color .15s;
}
.privacy-back:hover { color: var(--text); }

.privacy-header { margin-bottom: 3.5rem; }

.privacy-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--role-color);
  margin-bottom: 1rem;
}

.privacy-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}

.privacy-date { font-size: .875rem; color: var(--text-muted); }

.privacy-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 3.5rem;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.privacy-entry-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--role-color);
  min-width: 1.5rem;
}

.privacy-entry-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.privacy-entry-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.privacy-entry-body {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 2.5rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .exp-desktop { display: none; }
  .exp-mobile { display: block; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }

  .hero-name { font-size: clamp(4rem, 18vw, 8rem); }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section-container { padding: 5rem 1.25rem; }
  .skills-grid { grid-template-columns: 1fr; }
  .hero-sub br { display: none; }
  .contact-title { font-size: clamp(2.5rem, 15vw, 5rem); }
}

/* =============================================
   STATS & SERVICES SECTION
   ============================================= */
#stats { position: relative; z-index: 2; }

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

.stat-card {
  text-align: center;
  padding: 2.25rem 1.5rem;
  border-radius: 1rem;
  transition: background .2s;
}
.stat-card:hover {
  background: #09090f;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: .625rem;
}

.stat-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--text-sec);
}

.services-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.service-pill {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
}

.service-sep {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

