/* ===== ROOT ===== */
:root {
  --we-gradient: linear-gradient(135deg, #8b5cf6, #ff8a56);
  --we-bg: rgba(12, 12, 16, 0.9);
  --we-text-muted: #9ca3af;
}

/* ===== SECTION ===== */
.profile-section {
  padding: 100px 6%;
  background: radial-gradient(circle at top, #141417, #0b0b0e);
  color: #fff;
}

/* ===== GRID (MAX 2 KOL) ===== */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ===== UNIVERSAL CARD STYLE ===== */
.profile-card,
.we-card,
.profile-grid > .card {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: var(--we-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  overflow: hidden;
}

/* GRADIENT BORDER */
.profile-card::before,
.we-card::before,
.profile-grid > .card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: var(--we-gradient);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* SOFT GLOW */
.profile-card::after,
.we-card::after,
.profile-grid > .card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: var(--we-gradient);
  opacity: .1;
  filter: blur(90px);
  z-index: 0;
}

.profile-card > *,
.we-card > *,
.profile-grid > .card > * {
  position: relative;
  z-index: 1;
}

/* ===== PROFILE IMAGE ===== */
.profile-card img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* ===== WORK EXPERIENCE ===== */
.we-card-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px; /* sebelumnya 24px */
  padding: 15px 35px;  /* lebih tebal */
  font-size: 28px;     /* BESARIN */
  font-weight: 600;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  
  background: linear-gradient(to right, #8b5cf6, 40%, #FF8A56, #FFA84B);
   
}

.we-role {
  font-size: 36px;
  font-weight: 800;
  margin: 2px 0 2px;
  background: linear-gradient(to right, #8b5cf6, 40%, #FF8A56, #FFA84B);
   -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.we-timeline {
  list-style: none;
}

.we-timeline li{
  margin-left:  24px; 
  padding: 26px 0px; 
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.we-timeline small {
  font-size: 20px;
  letter-spacing: .3px;
  color: var(--we-text-muted);
  font-weight: 10;
}

.we-timeline p {
  font-size: 22px;
  color: #F0F2F5;
  font-weight: 10;
}

.we-role.gradient {
  background: linear-gradient(to right, #8b5cf6, 15%, #FF8A56, #FFA84B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== EDUCATION & SKILLS ===== */
.card-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px; /* sebelumnya 24px */
  padding: 15px 35px;  /* lebih tebal */
  font-size: 40px;     /* BESARIN */
  font-weight: 600;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  
  background: linear-gradient(to right, #8b5cf6, 40%, #FF8A56, #FFA84B);
}

.timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}


.timeline small {
  font-size: 12.5px;
  color: var(--we-text-muted);
  display: block;
  margin-bottom: 4px;
}


.timeline h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;

  background: linear-gradient(80deg, #c084fc, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline p {
  font-size: 13.5px;
  color: #e5e7eb;
  margin: 0;
}


/* ===== SKILLS ===== */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.skills span {
  position: relative;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  z-index: 0;
}

/* Gradient border */
.skills span::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #8b5cf6, #ff8a56);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Hover glow */
.skills span:hover {
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08),
              0 10px 25px rgba(139,92,246,.25);
  transform: translateY(-1px);
}
/* tools------------------------------------------- */
.tools {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.tool-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  position: relative;
  transition: .3s ease;
}

/* GRADIENT BORDER */
.tool-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, #8b5cf6, #ff8a56);

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* ICON */
.tool-icon img {
  width: 22px;
  height: 22px;
}

/* HOVER */
.tool-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139,92,246,.35);
}


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

/* ===== ROOT ===== */
:root {
  --we-gradient: linear-gradient(135deg, #8b5cf6, #ff8a56);
  --we-bg: rgba(12, 12, 16, 0.9);
  --we-text-muted: #9ca3af;
}

/* ===== SECTION ===== */
.profile-section {
  padding: 100px 6%;
  background: radial-gradient(circle at top, #141417, #0b0b0e);
  color: #fff;
}

/* ===== GRID (MAX 2 KOL) ===== */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ===== UNIVERSAL CARD STYLE ===== */
.profile-card,
.we-card,
.profile-grid > .card {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: var(--we-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  overflow: hidden;
}

/* GRADIENT BORDER */
.profile-card::before,
.we-card::before,
.profile-grid > .card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: var(--we-gradient);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* SOFT GLOW */
.profile-card::after,
.we-card::after,
.profile-grid > .card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: var(--we-gradient);
  opacity: .1;
  filter: blur(90px);
  z-index: 0;
}

.profile-card > *,
.we-card > *,
.profile-grid > .card > * {
  position: relative;
  z-index: 1;
}

/* ===== PROFILE IMAGE ===== */
.profile-card img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* ===== WORK EXPERIENCE ===== */
.we-card-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px; /* sebelumnya 24px */
  padding: 15px 35px;  /* lebih tebal */
  font-size: 28px;     /* BESARIN */
  font-weight: 600;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  
  background: linear-gradient(to right, #8b5cf6, 40%, #FF8A56, #FFA84B);
   
}

.we-role {
  font-size: 36px;
  font-weight: 800;
  margin: 2px 0 2px;
  background: linear-gradient(to right, #8b5cf6, 40%, #FF8A56, #FFA84B);
   -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.we-timeline {
  list-style: none;
}

.we-timeline li{
  margin-left:  24px; 
  padding: 26px 0px; 
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.we-timeline small {
  font-size: 20px;
  letter-spacing: .3px;
  color: var(--we-text-muted);
  font-weight: 10;
}

.we-timeline p {
  font-size: 22px;
  color: #F0F2F5;
  font-weight: 10;
}

.we-role.gradient {
  background: linear-gradient(to right, #8b5cf6, 15%, #FF8A56, #FFA84B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== EDUCATION & SKILLS ===== */
.card-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px; /* sebelumnya 24px */
  padding: 15px 35px;  /* lebih tebal */
  font-size: 40px;     /* BESARIN */
  font-weight: 600;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  
  background: linear-gradient(to right, #8b5cf6, 40%, #FF8A56, #FFA84B);
}

.timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}


.timeline small {
  font-size: 12.5px;
  color: var(--we-text-muted);
  display: block;
  margin-bottom: 4px;
}


.timeline h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;

  background: linear-gradient(80deg, #c084fc, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline p {
  font-size: 13.5px;
  color: #e5e7eb;
  margin: 0;
}


/* ===== SKILLS ===== */
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.skills span {
  position: relative;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  z-index: 0;
}

/* Gradient border */
.skills span::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #8b5cf6, #ff8a56);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

/* Hover glow */
.skills span:hover {
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08),
              0 10px 25px rgba(139,92,246,.25);
  transform: translateY(-1px);
}
/* tools------------------------------------------- */
.tools {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.tool-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  position: relative;
  transition: .3s ease;
}

/* GRADIENT BORDER */
.tool-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, #8b5cf6, #ff8a56);

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* ICON */
.tool-icon img {
  width: 22px;
  height: 22px;
}

/* HOVER */
.tool-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139,92,246,.35);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {

  .profile-section {
    padding: 60px 18px;
  }

  .profile-card,
  .we-card,
  .profile-grid > .card {
    padding: 20px;
    border-radius: 18px;
  }

  /* IMAGE */
  .profile-card img {
    border-radius: 14px;
  }

  /* WORK EXPERIENCE */
  .we-card-title {
    font-size: 18px;
    padding: 10px 20px;
  }

  .we-role {
    font-size: 22px;
  }

  .we-timeline li {
    margin-left: 12px;
    padding: 18px 0;
    gap: 8px;
  }

  .we-timeline p {
    font-size: 15px;
    line-height: 1.6;
  }

  .we-timeline small {
    font-size: 13px;
  }

  /* EDUCATION */
  .card-title {
    font-size: 22px;
    padding: 10px 22px;
  }

  .timeline h4 {
    font-size: 15px;
  }

  .timeline p {
    font-size: 13px;
  }

  /* SKILLS */
  .skills {
    gap: 10px;
  }

  .skills span {
    font-size: 12px;
    padding: 7px 14px;
  }

  /* TOOLS */
  .tools {
    flex-wrap: wrap;
    gap: 12px;
  }

  .tool-icon {
    width: 34px;
    height: 34px;
  }

  .tool-icon img {
    width: 18px;
    height: 18px;
  }
}
