*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --card: #1a1a1a;
  --border: #2a2a2a;
  --border2: #333;
  --accent: #c8f53d;
  --accent2: #a8d424;
  --text: #f0f0f0;
  --text2: #a0a0a0;
  --text3: #666;
  --radius: 14px;
  --radius2: 20px;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.nav-logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  font-size: 0.88rem;
  color: var(--text2);
}
.nav-links a {
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-cta {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.84rem;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  transition:
    background 0.2s,
    transform 0.1s;
}
.nav-cta:hover {
  background: var(--accent2);
  transform: scale(1.03);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(200, 245, 61, 0.08) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(200, 245, 61, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  color: var(--text2);
  margin-bottom: 2rem;
  width: fit-content;
}
.hero-label-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}
.hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.8rem;
}
.hero-title .line2 {
  color: var(--text2);
}
.hero-title .highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  border: 1px solid var(--border2);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-secondary:hover {
  border-color: var(--text3);
  background: var(--card);
}
.hero-stats {
  margin-top: 5rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.stat {
  border-top: 1px solid var(--border);
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  padding-top: 0.75rem;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text3);
  margin-top: 0.2rem;
}

/* SECTIONS */
section {
  padding: 6rem 3rem;
}
.section-label {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text2);
  max-width: 480px;
  font-size: 0.97rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 3.5rem;
}
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1000px;
}
.about-text p {
  color: var(--text2);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.about-text p strong {
  color: var(--text);
  font-weight: 500;
}
.about-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: border-color 0.2s;
}
.info-item:hover {
  border-color: var(--border2);
}
.info-icon {
  width: 38px;
  height: 38px;
  background: rgba(200, 245, 61, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-content {
  min-width: 0;
}
.info-label {
  font-size: 0.75rem;
  color: var(--text3);
  margin-bottom: 0.1rem;
}
.info-value {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* EXPERIENCE */
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
}
.exp-item {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  cursor: default;
}
.exp-item:first-child {
  border-top: 1px solid var(--border);
}
.exp-item:hover .exp-role {
  color: var(--accent);
}
.exp-date {
  font-size: 0.8rem;
  color: var(--text3);
  padding-top: 0.25rem;
  font-variant-numeric: tabular-nums;
}
.exp-duration {
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 0.3rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  display: inline-block;
  margin-top: 0.5rem;
}
.exp-role {
  font-family: "Syne", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  transition: color 0.2s;
}
.exp-company {
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.exp-desc {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.7;
  font-weight: 300;
}
.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.exp-tag {
  font-size: 0.75rem;
  background: rgba(200, 245, 61, 0.07);
  color: var(--accent);
  border: 1px solid rgba(200, 245, 61, 0.15);
  border-radius: 100px;
  padding: 0.25rem 0.8rem;
}

/* SKILLS */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
}
.skill-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 1.5rem;
  transition:
    border-color 0.25s,
    transform 0.2s;
}
.skill-card:hover {
  border-color: rgba(200, 245, 61, 0.25);
  transform: translateY(-3px);
}
.skill-cat {
  font-size: 0.72rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.skill-pill {
  font-size: 0.8rem;
  color: var(--text2);
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.skill-pill:hover {
  background: rgba(200, 245, 61, 0.07);
  color: var(--accent);
  border-color: rgba(200, 245, 61, 0.2);
}
.skill-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.skill-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* PROJECTS */
.projects-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
}
.project-item {
  padding: 2.2rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  cursor: default;
  transition: background 0.2s;
}
.project-item:first-child {
  border-top: 1px solid var(--border);
}
.project-item:hover .project-title {
  color: var(--accent);
}
.project-left {
  min-width: 0;
}
.project-number {
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  color: var(--text3);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}
.project-title {
  font-family: "Syne", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.project-desc {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.75;
  font-weight: 300;
  max-width: 580px;
  margin-bottom: 1.1rem;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.project-tag {
  font-size: 0.75rem;
  background: rgba(200, 245, 61, 0.07);
  color: var(--accent);
  border: 1px solid rgba(200, 245, 61, 0.15);
  border-radius: 100px;
  padding: 0.25rem 0.8rem;
}
.project-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
  padding-top: 0.3rem;
  flex-shrink: 0;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.project-link:hover {
  border-color: rgba(200, 245, 61, 0.35);
  color: var(--accent);
  background: rgba(200, 245, 61, 0.04);
}
.project-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.project-status {
  font-size: 0.72rem;
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  border: 1px solid;
  white-space: nowrap;
}
.project-status.live {
  background: rgba(200, 245, 61, 0.07);
  color: var(--accent);
  border-color: rgba(200, 245, 61, 0.2);
}
.project-status.wip {
  background: rgba(255, 180, 60, 0.07);
  color: #f5a623;
  border-color: rgba(255, 180, 60, 0.2);
}

/* CERTIFICATIONS */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  max-width: 1000px;
}
.cert-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.cert-card:hover {
  border-color: rgba(200, 245, 61, 0.25);
  transform: translateY(-2px);
}
.cert-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(200, 245, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.cert-name {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.cert-org {
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 0.25rem;
}

/* CONTACT */
.contact-inner {
  max-width: 800px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.contact-headline {
  font-family: "Syne", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.contact-sub {
  color: var(--text2);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text2);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.social-link:hover {
  border-color: rgba(200, 245, 61, 0.3);
  color: var(--text);
  background: rgba(200, 245, 61, 0.04);
}
.social-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--text3);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: stroke 0.2s;
}
.social-link:hover svg {
  stroke: var(--accent);
}
.social-link-label {
  flex: 1;
}
.social-link-arr {
  color: var(--text3);
  font-size: 0.75rem;
  transition: transform 0.2s;
}
.social-link:hover .social-link-arr {
  transform: translateX(3px);
  color: var(--accent);
}

/* FOOTER */
footer {
  padding: 2rem 3rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text3);
}
.footer-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text2);
}
.footer-logo span {
  color: var(--accent);
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
    transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
html {
  scrollbar-width: none;
}

/* IE and old Edge */
body {
  -ms-overflow-style: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .hero,
  section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .exp-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
