/* ============================================
   DESIGN SYSTEM & VARIABLES
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --c-bg: #030014;
  --c-bg-card: rgba(255, 255, 255, 0.03);
  --c-bg-card-hover: rgba(255, 255, 255, 0.06);
  --c-bg-nav: rgba(3, 0, 20, 0.7);
  --c-bg-input: rgba(255, 255, 255, 0.02);
  
  --c-border: rgba(255, 255, 255, 0.08);
  --c-border-hover: rgba(255, 255, 255, 0.16);
  
  --c-accent: #6366f1;
  --c-accent-light: rgba(99, 102, 241, 0.15);
  --c-accent-2: #a855f7;
  --c-accent-2-light: rgba(168, 85, 247, 0.15);
  --c-gradient: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  
  --c-text: #f3f4f6;
  --c-text-muted: #9ca3af;
  --c-text-dark: #6b7280;
  
  --c-green: #10b981;
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.8);
  --shadow-accent: 0 0 24px rgba(99, 102, 241, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  
  --nav-h: 76px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'Fira Code', monospace;
  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

/* ============================================
   AMBIENT GLOWS
   ============================================ */
.glow-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.2;
}
.glow-bg--1 {
  top: 10%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: var(--c-accent-2);
}
.glow-bg--2 {
  top: 60%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: var(--c-accent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  padding: 12px 24px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: var(--c-gradient);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.4);
  filter: brightness(1.1);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.02);
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn--outline:hover {
  background: var(--c-bg-card-hover);
  border-color: var(--c-text-muted);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--c-bg-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-text);
}
.nav__logo span {
  color: var(--c-accent);
}

.nav__links {
  display: flex;
  gap: 8px;
  margin-left: auto;
  margin-right: 24px;
}
.nav__links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav__links a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.05);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 16px;
  gap: 4px;
  border-top: 1px solid var(--c-border);
  background: var(--c-bg);
}
.nav__mobile a {
  padding: 10px 14px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
}
.nav__mobile a:hover {
  color: var(--c-text);
  background: rgba(255, 255, 255, 0.05);
}
.nav__mobile.open {
  display: flex;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot--green {
  background: var(--c-green);
  box-shadow: 0 0 10px var(--c-green);
  animation: pulse-green 2s infinite;
}

.hero__greeting {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  font-weight: 500;
  margin-bottom: 8px;
}

.hero__name {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 50%, var(--c-text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.hero__role {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--c-accent-2);
  font-family: var(--font-mono);
  min-height: 1.8em;
  margin-bottom: 24px;
}
.cursor {
  display: inline-block;
  animation: blink .9s steps(1) infinite;
  color: var(--c-accent-2);
}

.hero__bio {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero__socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition: all var(--transition);
}
.social-icon svg {
  width: 18px;
  height: 18px;
}
.social-icon:hover {
  color: var(--c-text);
  border-color: var(--c-text-muted);
  background: var(--c-bg-card-hover);
  transform: translateY(-3px);
}

/* Hero Avatar with Ambient Light */
.hero__avatar-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero__avatar {
  position: relative;
  width: 300px;
  height: 300px;
}
.avatar-glow {
  position: absolute;
  inset: -10px;
  background: var(--c-gradient);
  border-radius: var(--radius-lg);
  filter: blur(24px);
  opacity: 0.25;
  z-index: 1;
}
.avatar-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background: rgba(10, 5, 25, 0.7);
  border: 1px solid var(--c-border);
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-inner svg {
  width: 180px;
  height: 180px;
}
.avatar-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text);
  box-shadow: var(--shadow-md);
  z-index: 3;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-text);
}
.section-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--c-text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ============================================
   ABOUT ME
   ============================================ */
.about {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.about__layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  align-items: start;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__text {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.about__highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.highlight-item__icon {
  font-size: 1.5rem;
  padding: 10px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlight-item__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}
.highlight-item__desc {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* About Stats Grid */
.about__stats {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.stat-card {
  text-align: center;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.stat-card:hover {
  background: var(--c-bg-card-hover);
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
}
.stat-card__number {
  display: block;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--c-accent-2);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-card__label {
  display: block;
  font-size: 0.85rem;
  color: var(--c-text-muted);
  font-weight: 500;
}

/* ============================================
   TECHNICAL SKILLS
   ============================================ */
.skills__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.skill-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}
.skill-card:hover {
  border-color: var(--c-border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.skill-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.skill-card__icon {
  font-size: 1.4rem;
}
.skill-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.skill-tag {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text-muted);
  font-family: var(--font-mono);
  transition: all var(--transition);
}
.skill-card:hover .skill-tag:hover {
  color: #fff;
  border-color: var(--c-accent);
  background: rgba(99, 102, 241, 0.08);
}

/* ============================================
   EXPERIENCE & EDUCATION
   ============================================ */
.experience {
  background: rgba(255, 255, 255, 0.005);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 1.5px;
  background: var(--c-border);
}

.timeline__item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 80px;
}
.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: 21px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-bg);
  border: 3.5px solid var(--c-accent);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.3);
  z-index: 2;
  transition: all var(--transition);
}
.timeline__dot.edu-dot {
  border-color: var(--c-accent-2);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.15);
  background: var(--c-accent);
}
.timeline__item:hover .timeline__dot.edu-dot {
  background: var(--c-accent-2);
}

.timeline__time {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-bottom: 8px;
  display: inline-block;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  border-radius: 100px;
}

.timeline__content {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
}
.timeline__content::before {
  content: '';
  position: absolute;
  top: 16px;
  left: -8px;
  width: 14px;
  height: 14px;
  background: rgba(10, 5, 25, 0.9);
  border-left: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  transform: rotate(45deg);
  transition: all var(--transition);
}

.timeline__item:hover .timeline__content {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.25);
  background: var(--c-bg-card-hover);
}
.timeline__item:hover .timeline__content.edu-content {
  border-color: rgba(168, 85, 247, 0.25);
}
.timeline__item:hover .timeline__content::before {
  border-color: rgba(99, 102, 241, 0.25);
  background: var(--c-bg-card-hover);
}

.timeline__role {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.timeline__company {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.timeline__content.edu-content .timeline__company {
  color: var(--c-accent-2);
}

.timeline__desc {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.timeline__bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline__bullets li {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  position: relative;
  padding-left: 18px;
  line-height: 1.52;
}
.timeline__bullets li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-accent);
  font-size: 0.8rem;
}
.timeline__content.edu-content .timeline__bullets li::before {
  color: var(--c-accent-2);
}

/* ============================================
   FEATURED PROJECTS
   ============================================ */
.projects__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.project-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
  overflow: hidden;
  align-items: center;
}
.project-card:hover {
  border-color: var(--c-border-hover);
  box-shadow: var(--shadow-lg);
}

/* Project Visual Mockups */
.project-card__visual {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(168, 85, 247, 0.04));
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px 24px 0 24px;
  height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.mockup-screen {
  width: 100%;
  height: 100%;
  background: #09090e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  display: flex;
  flex-direction: column;
}
.mockup-navbar {
  height: 28px;
  background: #12121c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mockup-dots {
  display: flex;
  gap: 5px;
}
.mockup-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.mockup-address {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--c-text-dark);
  background: rgba(255, 255, 255, 0.03);
  padding: 2px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.mockup-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mockup-hero-shape {
  height: 28px;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
  border-radius: 4px;
}
.mockup-flex {
  display: flex;
  gap: 8px;
  flex: 1;
}
.mockup-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}
.mockup-circles {
  padding: 20px;
  display: flex;
  gap: 24px;
  justify-content: center;
}
.circle-sm {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
}
.mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}
.line {
  height: 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
}
.line:nth-child(2) {
  width: 70%;
}
.mockup-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}
.chat-bubble {
  height: 22px;
  width: 60%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}
.chat-bubble.right {
  align-self: flex-end;
  background: rgba(168, 85, 247, 0.15);
  width: 50%;
}

.project-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-card.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border-color: rgba(99, 102, 241, 0.2);
}
.project-card__badge {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--c-accent);
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.project-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 12px;
}

.project-card__desc {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.62;
  margin-bottom: 20px;
}

.project-card__achievements {
  margin-bottom: 24px;
  width: 100%;
}
.project-card__achievements h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 8px;
}
.project-card__achievements ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project-card__achievements li {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  position: relative;
  padding-left: 16px;
  line-height: 1.45;
}
.project-card__achievements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-green);
  font-weight: 700;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.project-card__tags span {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--c-text-muted);
}

.project-card__links {
  display: flex;
  gap: 12px;
}

/* ============================================
   WHY HIRE ME
   ============================================ */
.why-me__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-me-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition);
}
.why-me-card:hover {
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-me-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.why-me-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 10px;
}
.why-me-card__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  border-top: 1px solid var(--c-border);
}

.contact__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}
.contact-card-item:hover {
  border-color: var(--c-accent-light);
  background: var(--c-bg-card-hover);
}
.contact-card-item__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--c-accent-light);
  border: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  flex-shrink: 0;
}
.contact-card-item__icon svg {
  width: 20px;
  height: 20px;
}
.contact-card-item__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-text-dark);
  margin-bottom: 3px;
}
.contact-card-item__value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--c-text);
  transition: color var(--transition);
}
.contact-card-item__value:hover {
  color: var(--c-accent-2);
}

/* FORM */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text-muted);
}
.form-group input,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 12px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-bg-input);
  color: var(--c-text);
  outline: none;
  transition: all var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-accent-2);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.15);
  background: rgba(255, 255, 255, 0.04);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--c-text-dark);
}

.form-turnstile {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.form-notice {
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.2em;
}
.form-notice.success {
  color: var(--c-green);
}
.form-notice.error {
  color: #ef4444;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--c-border);
  color: var(--c-text-dark);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 0.85rem;
}
.footer__links {
  display: flex;
  gap: 20px;
}
.footer__links a {
  font-size: 0.85rem;
  color: var(--c-text-dark);
  transition: color var(--transition);
}
.footer__links a:hover {
  color: var(--c-text);
}

/* ============================================
   REVEAL ANIMATIONS & KEYFRAMES
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .why-me__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero__bio {
    margin: 0 auto 32px;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__socials {
    justify-content: center;
  }
  .hero__avatar-wrap {
    order: -1;
  }
  .hero__avatar {
    width: 240px;
    height: 240px;
  }
  .avatar-inner svg {
    width: 140px;
    height: 140px;
  }
  
  .about__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__stats {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  .project-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
  .project-card__visual {
    height: 240px;
  }
  
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }
  .nav__links {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__inner .btn {
    display: none;
  }
  
  .skills__grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-me__grid {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 16px;
  }
  .timeline__item {
    padding-left: 48px;
    margin-bottom: 36px;
  }
  .timeline__dot {
    left: 4px;
    width: 20px;
    height: 20px;
    border-width: 3px;
  }
  .timeline__content {
    padding: 20px;
  }
  .timeline__content::before {
    display: none;
  }
  
  .contact__form {
    padding: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer__inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
