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

:root {
  --black: #000;
  --white: #fff;
  --accent: #5b5bff;
  --accent-2: #00e5c3;
  --muted: rgba(255, 255, 255, .38);
  --border: rgba(255, 255, 255, .08);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none
}

/* ─── CURSOR ──────────────────────────────────────── */
#cursor {
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .3s;
  box-shadow: 0 0 12px 3px rgba(0, 229, 195, .6);
  mix-blend-mode: normal
}

#cursor-ring {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 229, 195, .25);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .4s cubic-bezier(.23,1,.32,1), height .4s cubic-bezier(.23,1,.32,1), border-color .3s, background .3s;
  background: radial-gradient(circle, rgba(0,229,195,.04) 0%, transparent 70%)
}

body:has(a:hover) #cursor {
  width: 14px;
  height: 14px;
  background: var(--accent);
  box-shadow: 0 0 20px 6px rgba(91, 91, 255, .55)
}

body:has(a:hover) #cursor-ring {
  width: 64px;
  height: 64px;
  border-color: rgba(91, 91, 255, .35);
  background: radial-gradient(circle, rgba(91,91,255,.06) 0%, transparent 70%)
}

/* ─── LOADER ──────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transition: opacity .8s, visibility .8s
}

#loader.hide {
  opacity: 0;
  visibility: hidden
}

.loader-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  overflow: hidden
}

.loader-name span {
  display: inline-block;
  transform: translateY(120%);
  animation: slideUp .7s cubic-bezier(.16, 1, .3, 1) .2s forwards
}

.loader-pct {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .18);
  letter-spacing: .02em;
  line-height: 1
}

.loader-line {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, .1);
  position: relative;
  overflow: hidden;
  border-radius: 1px
}

.loader-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .05s linear
}

@keyframes slideUp {
  to {
    transform: translateY(0)
  }
}

/* ─── BG CANVAS ───────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transition: background 1.2s ease;
  background: radial-gradient(ellipse 80% 60% at 50% 110%, #1a0533 0%, #0d0020 50%, #000 90%)
}

/* ─── ORBS ────────────────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: .12
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #5b5bff, transparent 70%);
  top: -200px;
  left: -150px;
  animation: orbFloat1 12s ease-in-out infinite
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00e5c3, transparent 70%);
  bottom: -200px;
  right: -100px;
  animation: orbFloat2 14s ease-in-out infinite
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #b47dff, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: .06;
  animation: orbFloat3 18s ease-in-out infinite
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(60px, 40px)
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-50px, -30px)
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3)
  }
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: backdrop-filter .4s
}

nav.scrolled {
  backdrop-filter: blur(12px)
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none
}

.nav-links a {
  font-size: .8rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width .3s cubic-bezier(.4, 0, 0, 1)
}

.nav-links a:hover {
  color: var(--white)
}

.nav-links a:hover::after {
  width: 100%
}

.nav-cta {
  padding: .55rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--white) !important
}

.nav-cta:hover {
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .5) !important
}

.nav-cta::after {
  display: none !important
}

/* ─── SECTIONS ────────────────────────────────────── */
section {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3rem
}

/* ─── HERO ────────────────────────────────────────── */
#hero {
  padding-top: 8rem;
  flex-direction: column;
  justify-content: center
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem;
  overflow: hidden
}

.hero-eyebrow-inner {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  transform: translateY(100%);
  opacity: 0;
  animation: revealUp .7s cubic-bezier(.16, 1, .3, 1) .9s forwards
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: scale(0);
  animation: scaleDot .4s ease 1s forwards
}

@keyframes scaleDot {
  to {
    transform: scale(1)
  }
}

@keyframes revealUp {
  to {
    transform: translateY(0);
    opacity: 1
  }
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.04em;
  margin-bottom: 2.5rem
}

.hero-name .line {
  overflow: hidden;
  display: block
}

.hero-name .line span {
  display: block;
  transform: translateY(110%);
  animation: revealLine .9s cubic-bezier(.16, 1, .3, 1) forwards
}

.hero-name .line:nth-child(1) span {
  animation-delay: .6s
}

.hero-name .line:nth-child(2) span {
  animation-delay: .75s;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .5)
}

.hero-name .line:nth-child(3) span {
  animation-delay: .9s
}

@keyframes revealLine {
  to {
    transform: translateY(0)
  }
}

.hero-tagline span {
  font-size: clamp(2.2rem, 5.5vw, 5.5rem) !important;
  background: linear-gradient(120deg, var(--white) 30%, var(--accent-2) 70%, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em !important
}


.hero-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap
}

.hero-desc {
  max-width: 420px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  opacity: 0;
  animation: fadeIn .8s ease 1.3s forwards
}

.hero-desc strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 500
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeIn .8s ease 1.5s forwards
}

@keyframes fadeIn {
  to {
    opacity: 1
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 100px;
  transition: background .3s, transform .2s, box-shadow .3s
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  width: 22px
}

.arrow-shaft {
  stroke-dasharray: 16;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .3s cubic-bezier(.4,0,0,1)
}

.arrow-head {
  transition: transform .3s cubic-bezier(.4,0,0,1)
}

.btn-primary:hover .arrow-shaft {
  stroke-dashoffset: -6
}

.btn-primary:hover .arrow-head {
  transform: translateX(4px)
}

.btn-primary:hover {
  background: #e8e8ff;
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(91, 91, 255, .25)
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
  font-size: .9rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 100px;
  transition: border-color .3s, background .3s, transform .2s
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .05);
  transform: translateY(-2px)
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards
}

.scroll-hint span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted)
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .4), transparent);
  animation: scrollPulse 2s ease infinite 2s
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
    transform: scaleY(1)
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2)
  }
}

/* ─── MARQUEE ─────────────────────────────────────── */
.marquee-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  position: relative;
  z-index: 1
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite
}

.marquee-item {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0
}

.marquee-item::after {
  content: '✦';
  color: var(--accent);
  font-size: .5rem
}

@keyframes marqueeScroll {
  to {
    transform: translateX(-50%)
  }
}

/* ─── VIGNETTE ─────────────────────────────────────── */
#vignette {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0,0,0,.55), inset 0 0 40px rgba(0,0,0,.3)
}

/* ─── SECTION HEADER ──────────────────────────────── */
.section-header {
  margin-bottom: 5rem
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem
}


.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em
}

.outline-text {
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .4)
}

/* ─── ABOUT ───────────────────────────────────────── */
#about {
  padding: 8rem 0
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1.5rem
}

.about-text p:last-child {
  margin-bottom: 0
}

.about-text strong {
  color: var(--white);
  font-weight: 500
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem
}

.stat-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, .02);
  backdrop-filter: blur(8px);
  transition: border-color .4s, background .4s, transform .3s;
  position: relative;
  overflow: hidden
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent)
}

.stat-card:hover {
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .04);
  transform: translateY(-4px)
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .5rem;
  background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, .4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.stat-label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

/* ─── WORD REVEAL ─────────────────────────────────── */
.word-reveal {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08);
  display: flex;
  margin-bottom: 1.5rem;
  overflow: hidden
}

.word-reveal span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08)
}

.section-header.visible .word-reveal span {
  transform: translateY(0)
}

.word-reveal span:nth-child(1) { transition-delay: .0s }
.word-reveal span:nth-child(2) { transition-delay: .05s }
.word-reveal span:nth-child(3) { transition-delay: .1s }
.word-reveal span:nth-child(4) { transition-delay: .15s }
.word-reveal span:nth-child(5) { transition-delay: .2s }
.word-reveal span:nth-child(6) { transition-delay: .25s }
.word-reveal span:nth-child(7) { transition-delay: .3s }
.word-reveal span:nth-child(8) { transition-delay: .35s }

/* ─── PROJECTS ────────────────────────────────────── */
#projects {
  padding: 8rem 0
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr
}

.project-card {
  position: relative;
  padding: 3.5rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 3rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: background .4s
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .02);
  opacity: 0;
  transition: opacity .4s
}

.project-card:hover::before {
  opacity: 1
}

.project-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent-color, var(--accent));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s cubic-bezier(.4, 0, 0, 1)
}

.project-card:hover::after {
  transform: scaleY(1)
}

.project-card[data-color="blue"] {
  --accent-color: #5b8fff
}

.project-card[data-color="green"] {
  --accent-color: #00e5c3
}

.project-card[data-color="purple"] {
  --accent-color: #b47dff
}

.project-num {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--muted);
  min-width: 3rem
}

.project-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: .75rem;
  transition: color .3s
}

.project-card:hover .project-title {
  color: var(--accent-color, var(--white))
}

.project-desc {
  font-size: .9rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 540px
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem
}

.tag {
  padding: .25rem .75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .68rem;
  letter-spacing: .08em;
  color: var(--muted);
  transition: border-color .3s, color .3s
}

.project-card:hover .tag {
  border-color: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .6)
}

.project-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color .3s, color .3s, transform .3s, background .3s;
  flex-shrink: 0
}

.project-card:hover .project-arrow {
  border-color: var(--white);
  color: var(--white);
  transform: rotate(-45deg);
  background: rgba(255, 255, 255, .05)
}

/* ─── VISION ──────────────────────────────────────── */
#vision {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.quote-text {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.04em
}

.q-outline {
  color: rgba(255, 255, 255, 0.22)
}

.q-accent {
  color: var(--accent)
}

/* ─── SKILLS ──────────────────────────────────────── */
#skills {
  padding: 8rem 0
}

.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start
}

.skill-category {
  margin-bottom: 3rem
}

.skill-category:last-child {
  margin-bottom: 0
}

.skill-cat-title {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem
}

.skill-cat-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border)
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem
}

.skill-pill {
  padding: .45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .03);
  transition: border-color .3s, background .3s, color .3s, transform .2s
}

.skill-pill:hover {
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  transform: translateY(-2px)
}

/* ─── CONTACT ─────────────────────────────────────── */
#contact {
  padding: 8rem 0 6rem;
  flex-direction: column
}

.contact-big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .9;
  margin-bottom: 4rem
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: 100%
}

.contact-left p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 2rem
}

.contact-email {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  transition: color .3s
}

.contact-email:hover {
  color: var(--accent)
}

.contact-email svg {
  transition: transform .3s
}

.contact-email:hover svg {
  transform: translateX(4px)
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 2rem
}

.contact-detail-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  text-decoration: none;
  color: var(--white);
  transition: border-color .3s, background .3s, transform .3s
}

.contact-detail-row:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  transform: translateX(4px)
}

.contact-detail-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  flex-shrink: 0
}

.contact-detail-label {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .15rem
}

.contact-detail-val {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600
}


.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, .02);
  transition: border-color .3s, background .3s, transform .3s
}

.social-link:hover {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .04);
  transform: translateX(4px)
}

.social-link-left {
  display: flex;
  align-items: center;
  gap: 1rem
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center
}

.social-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700
}

.social-handle {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .15rem
}

.social-arrow {
  color: var(--muted);
  transition: color .3s, transform .3s
}

.social-link:hover .social-arrow {
  color: var(--white);
  transform: translateX(4px)
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  padding: 2rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-left,
.footer-right {
  font-size: .78rem;
  color: var(--muted)
}

/* ─── SCROLL REVEAL ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .35s
}

.reveal-delay-4 {
  transition-delay: .5s
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media(max-width:900px) {
  nav {
    padding: 1.25rem 1.5rem
  }

  .nav-links {
    display: none
  }

  .container {
    padding: 0 1.5rem
  }

  .hero-name {
    font-size: clamp(3rem, 14vw, 6rem)
  }

  .about-grid,
  .skills-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .project-card {
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem
  }

  .project-arrow {
    display: none
  }

  .contact-big {
    font-size: clamp(2.5rem, 12vw, 6rem)
  }

  footer {
    padding: 1.5rem
  }
}