/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
  --bg: #07070e;
  --bg-alt: #0c0c18;
  --surface: #12121f;
  --surface-hover: #1a1a2e;
  --border: rgba(255, 255, 255, 0.06);
  --text: #e4e4ed;
  --text-secondary: #9191a8;
  --text-muted: #5e5e7a;
  --accent: #6c63ff;
  --accent-light: #8b83ff;
  --accent-glow: rgba(108, 99, 255, 0.15);
  --accent-2: #00d4aa;
  --gradient: linear-gradient(135deg, #6c63ff, #00d4aa);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'Fira Code', monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

::selection {
  background: var(--accent);
  color: #fff;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--accent-2); }

img { max-width: 100%; display: block; }

/* ============================================
   CURSOR GLOW
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: left, top;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.nav.scrolled {
  padding: 0.8rem 3rem;
  background: rgba(7, 7, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text) !important;
  letter-spacing: -0.02em;
  position: relative;
}

.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--text) !important; }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 7, 14, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary) !important;
  transition: color 0.3s;
}

.mobile-link:hover { color: var(--text) !important; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-glow);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 170, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0, 212, 170, 0); }
}

.hero-name {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
}

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

.hero-name-line.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.hero-stat-plus {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-light);
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
}

.btn-primary:hover {
  background: var(--accent-light);
  box-shadow: 0 6px 30px rgba(108, 99, 255, 0.4);
  transform: translateY(-2px);
  color: #fff !important;
}

.btn-outline {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light) !important;
  background: var(--accent-glow);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-alt {
  background: var(--bg-alt);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 3.5rem;
  letter-spacing: -0.03em;
}

.section-number {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 500;
  margin-right: 0.8rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

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

.about-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-card {
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}

.about-card:hover {
  border-color: rgba(108, 99, 255, 0.2);
  background: var(--surface-hover);
  transform: translateX(4px);
}

.about-card-icon {
  font-size: 1.3rem;
  margin-top: 2px;
}

.about-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.about-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.about-card-sub {
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
  margin-top: 0.2rem;
}

/* ============================================
   TIMELINE / EXPERIENCE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2), transparent);
  border-radius: 1px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 2px solid var(--accent);
  z-index: 1;
  transition: all 0.3s;
}

.timeline-item:hover .timeline-marker {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: all 0.3s var(--ease);
}

.timeline-content:hover {
  border-color: rgba(108, 99, 255, 0.15);
  transform: translateX(4px);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.timeline-company {
  font-size: 0.9rem;
  color: var(--accent-light);
  margin-top: 0.15rem;
}

.timeline-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--mono);
  white-space: nowrap;
}

.timeline-list {
  list-style: none;
  margin-bottom: 1.2rem;
}

.timeline-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.timeline-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.timeline-list strong {
  color: var(--text);
  font-weight: 500;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  padding: 0.25rem 0.65rem;
  background: var(--accent-glow);
  color: var(--accent-light);
  border-radius: 6px;
  font-size: 0.72rem;
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================
   PROJECTS
   ============================================ */
.project-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

.project-featured:last-child { margin-bottom: 0; }

.project-featured.reverse {
  grid-template-columns: 1fr 1.1fr;
  direction: rtl;
}

.project-featured.reverse > * {
  direction: ltr;
}

.project-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.project-featured-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.project-description p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.project-description strong {
  color: var(--text);
  font-weight: 500;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.project-tech span {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.project-tech span:not(:last-child)::after {
  content: '·';
  margin-left: 0.5rem;
  color: var(--text-muted);
}

.project-links {
  display: flex;
  gap: 1.2rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text) !important;
  transition: color 0.3s;
}

.project-link:hover { color: var(--accent-light) !important; }
.project-link svg { transition: transform 0.3s; }
.project-link:hover svg { transform: translateY(-2px); }

/* Project Mockups */
.project-mockup {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all 0.4s var(--ease);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.project-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border-color: rgba(108, 99, 255, 0.2);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mockup-body {
  padding: 1.5rem;
}

/* F1 Mockup */
.mockup-body pre {
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.8;
  overflow: hidden;
}

.code-comment { color: #5c6370; }
.code-keyword { color: #c678dd; }
.code-string { color: #98c379; }

/* Sentio Mockup */
.sentio-body { padding: 1.5rem 2rem; }

.sentio-ui { text-align: center; }

.sentio-mood-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(#6c63ff, #00d4aa, #febc2e, #6c63ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  animation: mood-spin 6s linear infinite;
}

@keyframes mood-spin {
  to { transform: rotate(360deg); }
}

.sentio-emoji {
  width: 60px;
  height: 60px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.sentio-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.sentio-bar-group {
  text-align: left;
  margin-bottom: 1rem;
}

.sentio-bar {
  position: relative;
  height: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.sentio-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 6px;
  transition: width 1.5s var(--ease);
}

.sentio-bar-fill.calm {
  background: linear-gradient(90deg, #00d4aa, #00f0c0);
}

.sentio-bar-fill.energy {
  background: linear-gradient(90deg, #febc2e, #ffd166);
}

.sentio-bar span {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--mono);
}

.sentio-friends {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* TestBench CI Mockup */
.testbench-body { padding: 1.5rem; }

.ci-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.ci-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.ci-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.ci-stage.done .ci-icon {
  background: rgba(0, 212, 170, 0.1);
  color: var(--accent-2);
  border: 2px solid var(--accent-2);
}

.ci-stage.running .ci-icon {
  background: rgba(108, 99, 255, 0.1);
  color: var(--accent);
  border: 2px solid var(--accent);
}

.ci-icon.spinner {
  animation: spin 1.5s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.ci-stage span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--mono);
}

.ci-connector {
  width: 40px;
  height: 2px;
  margin-bottom: 1.2rem;
}

.ci-connector.done { background: var(--accent-2); }
.ci-connector.running {
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.ci-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.ci-stat { text-align: center; }

.ci-stat-val {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--mono);
  color: var(--accent-2);
}

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

.ci-log {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.ci-log-ok { color: var(--accent-2); }
.ci-log-run { color: var(--accent); animation: blink 1.5s step-end infinite; }

@keyframes blink {
  50% { opacity: 0.4; }
}

/* ============================================
   SKILLS
   ============================================ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.skill-category {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
}

.skill-category:hover {
  border-color: rgba(108, 99, 255, 0.15);
  transform: translateY(-4px);
}

.skill-category-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  margin-bottom: 1.2rem;
}

.skill-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.skill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-container {
  text-align: center;
  max-width: 600px;
}

.contact-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

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

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary) !important;
  transition: all 0.3s var(--ease);
}

.contact-icon:hover {
  color: var(--accent-light) !important;
  border-color: var(--accent);
  transform: translateY(-3px);
  background: var(--accent-glow);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-featured,
  .project-featured.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .project-featured.reverse > * {
    direction: ltr;
  }

  .project-featured-visual {
    order: -1;
  }

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .nav {
    padding: 1rem 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-stats {
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .timeline-header {
    flex-direction: column;
  }

  .ci-connector {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 3rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .skill-items {
    grid-template-columns: 1fr;
  }
}
