:root {
  --bg: #080808;
  --bg2: #0e0e0e;
  --card: #111111;
  --border: rgba(255, 255, 255, 0.07);
  --lime: #c6f135;
  --white: #f2f0eb;
  --muted: #666;
  --muted2: #999;
}

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

html {
  scroll-behavior: smooth;
}

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

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--lime);
}

/* CURSOR */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .3s, height .3s;
}

#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(198, 241, 53, .5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, border-color .15s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 20px;
  height: 20px;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 60px;
  height: 60px;
  border-color: var(--lime);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 10vw;
}

nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .95) 0%, transparent 100%);
  pointer-events: none;
}

.nav-logo {
  font-family: 'Bebas Neue';
  font-size: 1.6rem;
  letter-spacing: .1em;
  color: var(--white);
  text-decoration: none;
  position: relative;
}

.nav-logo span {
  color: var(--lime);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  position: relative;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .3s;
  position: relative;
  padding-bottom: 2px;
}

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

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

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

.nav-cta {
  background: var(--lime);
  color: var(--bg);
  padding: 9px 22px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 241, 53, .3);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue';
  font-size: clamp(140px, 22vw, 320px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .04);
  letter-spacing: .02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  animation: bgDrift 20s ease-in-out infinite;
}

@keyframes bgDrift {

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

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

.hero-photo-wrap {
  position: absolute;
  right: 6vw;
  top: 50%;
  transform: translateY(-50%);
  animation: floatPhoto 1s .5s ease both;
}

@keyframes floatPhoto {
  from {
    opacity: 0;
    transform: translateY(-40%) scale(.95)
  }

  to {
    opacity: 1;
    transform: translateY(-50%) scale(1)
  }
}

.hero-photo {
  width: clamp(260px, 28vw, 420px);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 200px 200px 40px 40px;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  border: 1px solid var(--border);
}

.hero-photo-fallback {
  width: clamp(260px, 28vw, 420px);
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1a1a1a, #141414);
  border-radius: 200px 200px 40px 40px;
  border: 1px solid var(--border);
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue';
  font-size: 5rem;
  color: rgba(255, 255, 255, .06);
}

.hero-photo-badge {
  position: absolute;
  bottom: 30px;
  left: -60px;
  background: var(--lime);
  color: var(--bg);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 20px 60px rgba(198, 241, 53, .25);
  animation: badgePop .6s 1.2s ease both;
  opacity: 0;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(.8) translateY(10px)
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0)
  }
}

.hero-photo-badge strong {
  display: block;
  font-size: 1.2rem;
}

.hero-bottom {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.hero-heading {
  font-family: 'Bebas Neue';
  font-size: clamp(68px, 10vw, 150px);
  line-height: .9;
  letter-spacing: .01em;
  animation: heroIn 1s ease both;
}

.hero-heading .line2 {
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
}

.hero-heading .dot {
  color: var(--lime);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(60px)
  }

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

.hero-right {
  max-width: 500px;
  padding-bottom: 12px;
  animation: heroIn 1s .3s ease both;
}

.hero-desc {
  color: var(--muted2);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hero-tags-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-pill {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(198, 241, 53, .3);
  color: var(--lime);
}

.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-lime {
  background: var(--lime);
  color: var(--bg);
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  transition: transform .3s, box-shadow .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-lime:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(198, 241, 53, .35);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--muted2);
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  font-size: .85rem;
  transition: border-color .3s, color .3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeIn 1s 2s ease both;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollDrop 2s infinite;
}

@keyframes scrollDrop {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* TICKER */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  background: var(--bg2);
}

.ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tick 35s linear infinite;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.ticker-item .sep {
  color: var(--lime);
  font-size: 1.1rem;
}

@keyframes tick {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* SECTIONS */
section {
  padding: 120px 5vw;
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
}

.sec-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--lime);
}

.sec-title {
  font-family: 'Bebas Neue';
  font-size: clamp(52px, 6vw, 90px);
  line-height: .92;
  letter-spacing: .02em;
  margin-bottom: 16px;
}

.sec-sub {
  color: var(--muted2);
  font-size: .95rem;
  max-width: 440px;
  line-height: 1.7;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.vis {
  opacity: 1;
  transform: none;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-l.vis {
  opacity: 1;
  transform: none;
}

.reveal-r {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal-r.vis {
  opacity: 1;
  transform: none;
}

/* ABOUT */
#about {
  padding-top: 100px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
  margin-top: 60px;
}

.about-text p {
  color: rgba(242, 240, 235, .7);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

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

.about-text p em {
  color: var(--lime);
  font-style: normal;
}

.about-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.about-num-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 22px 20px;
  text-align: center;
  transition: border-color .3s, background .3s;
}

.about-num-item:first-child {
  border-radius: 12px 0 0 12px;
}

.about-num-item:last-child {
  border-radius: 0 12px 12px 0;
}

.about-num-item:hover {
  background: #161616;
  border-color: rgba(198, 241, 53, .25);
}

.num-big {
  font-family: 'Bebas Neue';
  font-size: 2.8rem;
  color: var(--lime);
  line-height: 1;
}

.num-label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* tools grid */
.tools-section {
  margin-top: 36px;
}

.tools-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.tool-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--muted2);
  transition: border-color .3s, color .3s;
}

.tool-item:hover {
  border-color: rgba(198, 241, 53, .3);
  color: var(--white);
}

.tool-item i {
  color: var(--lime);
  width: 16px;
  text-align: center;
}

.skills-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.skill-tag {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--muted2);
  transition: all .3s;
  cursor: default;
}

.skill-tag:hover {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
  transform: translateY(-2px);
}

/* EDUCATION */
#education {
  background: var(--bg2);
}

.edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.edu-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .4s, border-color .3s;
}

.edu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.edu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 241, 53, .2);
}

.edu-card:hover::before {
  opacity: 1;
}

.edu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.edu-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(198, 241, 53, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.edu-year-badge {
  background: rgba(198, 241, 53, .1);
  border: 1px solid rgba(198, 241, 53, .2);
  color: var(--lime);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  white-space: nowrap;
}

.edu-card h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.edu-card p {
  color: var(--muted2);
  font-size: .85rem;
  line-height: 1.6;
}

/* EXPERIENCE */
#experience .exp-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}

.exp-left {
  position: sticky;
  top: 120px;
}

.exp-left p {
  color: var(--muted2);
  font-size: .92rem;
  line-height: 1.7;
  margin-top: 16px;
}

.exp-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.exp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  transition: border-color .3s, background .3s, transform .3s;
}

.exp-card:hover {
  border-color: rgba(198, 241, 53, .25);
  background: #131313;
  transform: translateX(6px);
}

.exp-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(198, 241, 53, .15);
}

.exp-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.exp-date {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime);
  font-weight: 600;
}

.exp-type {
  font-size: .7rem;
  padding: 2px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
}

.exp-role {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.exp-company {
  color: var(--muted2);
  font-size: .85rem;
  margin-bottom: 12px;
}

.exp-desc {
  color: rgba(242, 240, 235, .55);
  font-size: .88rem;
  line-height: 1.7;
}

/* WORK */
#work {
  background: var(--bg2);
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 30px;
}

.work-header-right {
  color: var(--muted2);
  font-size: .9rem;
  max-width: 300px;
  text-align: right;
  line-height: 1.7;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proj-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.23, 1, .32, 1), border-color .3s;
}

.proj-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 241, 53, .2);
}

.proj-card.featured {
  grid-column: span 2;
}

.proj-thumb {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #111;
}

.proj-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.proj-card:hover .proj-thumb-img {
  transform: scale(1.05);
}

.proj-card.featured .proj-thumb {
  height: 240px;
}

.proj-thumb-iframe {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #111;
}

.proj-thumb-iframe iframe {
  width: 200%;
  height: 200%;
  border: none;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
}

.iframe-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

.proj-body {
  padding: 24px;
}

.proj-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.proj-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(198, 241, 53, .25);
  color: var(--lime);
}

.proj-tag.blue {
  border-color: rgba(100, 180, 255, .25);
  color: #64b4ff;
}

.proj-tag.orange {
  border-color: rgba(255, 170, 80, .25);
  color: #ffaa50;
}

.proj-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.proj-card p {
  color: var(--muted2);
  font-size: .85rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.proj-note {
  font-size: .75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: -10px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.proj-link {
  text-decoration: none;
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap .3s, color .3s;
}

.proj-link:hover {
  gap: 12px;
  color: var(--lime);
}

.proj-link i {
  font-size: .72rem;
}

/* SERVICES */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-top: 60px;
}

.services-left {
  position: sticky;
  top: 120px;
}

.services-left p {
  color: var(--muted2);
  font-size: .92rem;
  line-height: 1.7;
  margin-top: 20px;
}

.services-right {
  display: flex;
  flex-direction: column;
}

.service-row {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr 44px;
  gap: 24px;
  align-items: start;
  cursor: default;
  transition: padding .3s, background .3s;
  border-radius: 8px;
}

.service-row:first-child {
  border-top: 1px solid var(--border);
}

.service-row:hover {
  padding: 28px 16px;
  background: rgba(255, 255, 255, .02);
}

.service-num {
  font-family: 'Bebas Neue';
  font-size: 2rem;
  color: var(--border);
  transition: color .3s;
  line-height: 1;
}

.service-row:hover .service-num {
  color: var(--lime);
}

.service-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color .3s;
}

.service-row:hover .service-info h3 {
  color: var(--lime);
}

.service-info p {
  color: var(--muted2);
  font-size: .88rem;
  line-height: 1.7;
}

.service-icon2 {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: background .3s, color .3s;
}

.service-row:hover .service-icon2 {
  background: rgba(198, 241, 53, .1);
  color: var(--lime);
}

/* FREELANCE */
#freelance {
  padding-top: 0;
  padding-bottom: 100px;
}

.freelance-label {
  margin-bottom: 40px;
}

.freelance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.freelance-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .3s, transform .3s, background .3s;
  position: relative;
  overflow: hidden;
}

.freelance-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  opacity: 0;
  transition: opacity .3s;
}

.freelance-card:hover {
  border-color: rgba(198, 241, 53, .3);
  transform: translateY(-6px);
  background: #131313;
}

.freelance-card:hover::after {
  opacity: 1;
}

.fl-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(198, 241, 53, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1rem;
}

.fl-name {
  font-size: 1rem;
  font-weight: 600;
}

.fl-handle {
  font-size: .78rem;
  color: var(--muted);
  margin-top: -6px;
}

.fl-arrow {
  margin-top: auto;
  color: var(--muted);
  font-size: .75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .3s, color .3s;
}

.freelance-card:hover .fl-arrow {
  gap: 10px;
  color: var(--lime);
}

/* CONTACT */
#contact {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198, 241, 53, .05) 0%, transparent 65%);
  pointer-events: none;
}

.contact-top {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.contact-big {
  font-family: 'Bebas Neue';
  font-size: clamp(60px, 9vw, 130px);
  line-height: .9;
  letter-spacing: .02em;
  margin-bottom: 20px;
}

.contact-big .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .15);
}

.contact-big .lime {
  color: var(--lime);
}

.contact-sub {
  color: var(--muted2);
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.contact-email-link {
  font-family: 'DM Serif Display';
  font-size: 1.4rem;
  font-style: italic;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 4px;
  transition: color .3s, border-color .3s;
}

.contact-email-link:hover {
  color: var(--lime);
  border-color: var(--lime);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--white);
  transition: border-color .3s, transform .3s, background .3s;
}

.c-link:hover {
  border-color: rgba(198, 241, 53, .3);
  transform: translateX(6px);
  background: #131313;
}

.c-link-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(198, 241, 53, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: .9rem;
  flex-shrink: 0;
}

.c-link-info .label {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.c-link-info .val {
  font-size: .88rem;
  font-weight: 500;
  margin-top: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cf-field label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cf-field input,
.cf-field textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  outline: none;
  transition: border-color .3s;
  width: 100%;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: rgba(198, 241, 53, .4);
}

.cf-field textarea {
  resize: vertical;
  min-height: 120px;
}

.cf-submit {
  background: var(--lime);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  padding: 15px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: transform .3s, box-shadow .3s;
}

.cf-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(198, 241, 53, .3);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.foot-logo {
  font-family: 'Bebas Neue';
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: .08em;
}

.foot-logo span {
  color: var(--lime);
}

.foot-copy {
  color: var(--muted);
  font-size: .78rem;
}

.foot-socials {
  display: flex;
  gap: 14px;
}

.foot-socials a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  transition: border-color .3s, color .3s, background .3s;
}

.foot-socials a:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(198, 241, 53, .06);
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .proj-card.featured {
    grid-column: span 2;
  }

  #experience .exp-layout,
  .services-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .exp-left,
  .services-left {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .freelance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Hamburger button (hidden on desktop) ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 600;
  position: relative;
  /* left: -20px; */
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s, opacity .35s, width .35s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile dropdown menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  right: 5vw;
  z-index: 490;
  background: rgba(10, 10, 10, .97);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  backdrop-filter: blur(16px);
  transform: translateY(-8px) scale(.97);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), opacity .3s ease;
}

.mobile-menu.open {
  display: block;
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  display: block;
  padding: 12px 22px;
  color: var(--muted);
  text-decoration: none;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .2s, background .2s;
}

.mobile-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .05);
}

.mobile-cv {
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--lime) !important;
  font-weight: 600;
}

.mobile-cv:hover {
  background: rgba(198, 241, 53, .08) !important;
}

@media(max-width:768px) {
  .nav-burger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-photo-wrap {
    /* display: none; */
    top: 20%;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

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

  .proj-card.featured {
    grid-column: span 1;
  }

  .edu-grid {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cf-row {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .freelance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }
} 