/* ============================================================
   EXPERIENCE.CSS
   ============================================================ */

#experience {
  background: #050505;
  padding: clamp(5rem, 10vh, 9rem) clamp(1.5rem, 5vw, 6rem);
  border-top: 1px solid #1a1a1a;
  position: relative;
}

#experience::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.exp-header { margin-bottom: 4rem; }

.exp-header .s-title {
  font-size: clamp(3.5rem, 9vw, 9rem);
  margin-top: 0.5rem;
  color: #f5f5f0;
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.exp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

/* ─── TIMELINE ───────────────────────────────────────────── */
.exp-timeline {
  position: relative;
}

.exp-timeline-line {
  position: absolute;
  left: 0;
  top: 1.5rem;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, #A855F7, transparent);
}

.exp-item {
  padding-left: 2rem;
  position: relative;
}

.exp-dot {
  position: absolute;
  left: -5px;
  top: 1.5rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #A855F7;
  box-shadow: 0 0 12px rgba(168,85,247,0.6);
  border: 2px solid #050505;
}

.exp-date {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: #A855F7;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.exp-card {
  padding: 2rem;
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-left: 2px solid #A855F7;
  position: relative;
}

.exp-company {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: #f5f5f0;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.exp-role {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #A855F7;
  margin-bottom: 0.3rem;
}

.exp-location {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: #444;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.exp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.exp-bullets li {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  padding-left: 1.2rem;
  position: relative;
}

.exp-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #A855F7;
}

.exp-bullets strong { color: #f5f5f0; font-weight: 600; }

/* ─── EDUCATION SIDE ─────────────────────────────────────── */
.exp-education {}

.edu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.edu-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #1a1a1a;
  align-items: start;
}

.edu-item:first-child { border-top: 1px solid #1a1a1a; }

.edu-year {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: #A855F7;
  letter-spacing: 0.1em;
  padding-top: 0.2rem;
}

.edu-degree {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #f5f5f0;
  margin-bottom: 0.3rem;
}

.edu-inst {
  font-size: 0.82rem;
  color: #555;
  margin-bottom: 0.3rem;
  line-height: 1.5;
}

.edu-grade {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: #333;
  letter-spacing: 0.1em;
}

/* ─── CERTIFICATIONS ─────────────────────────────────────── */
.cert-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

.cert-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid #1a1a1a;
  gap: 1rem;
  transition: padding-left 0.25s;
}

.cert-item:first-child { border-top: 1px solid #1a1a1a; }
.cert-item:hover { padding-left: 0.5rem; }

.cert-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #f5f5f0;
}

.cert-issuer {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: #444;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .exp-layout { grid-template-columns: 1fr; gap: 3rem; }
}