/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  --font-semi: 600;
  /*===== Colores =====*/
  /*Purple 260 - Red 355 - Blue 224 - Pink 340*/
  /* HSL color mode */
  --hue-color: 224;
  --first-color: hsl(var(--hue-color), 89%, 60%);
  --second-color: hsl(var(--hue-color), 56%, 12%);
  /*===== Fuente y tipografia =====*/
  --body-font: "Poppins", sans-serif;
  --big-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;
  --smaller-font-size: .75rem;
  /*===== Margenes =====*/
  --mb-2: 1rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  /*===== z index =====*/
  --z-back: -10;
  --z-fixed: 100;
}
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
    --smaller-font-size: .875rem;
  }
}

/*===== BASE =====*/
*, ::before, ::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--second-color);
}

h1, h2, p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

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

/*===== CLASS CSS ===== */
.section-title {
  position: relative;
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-top: var(--mb-2);
  margin-bottom: var(--mb-4);
  text-align: center;
}
.section-title::after {
  position: absolute;
  content: "";
  width: 64px;
  height: 0.18rem;
  left: 0;
  right: 0;
  margin: auto;
  top: 2rem;
  background-color: var(--first-color);
}

.section {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

/*===== LAYOUT =====*/
.bd-grid {
  max-width: 1024px;
  display: grid;
  margin-left: var(--mb-2);
  margin-right: var(--mb-2);
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: #fff;
  box-shadow: 0 1px 4px rgba(146, 161, 176, 0.15);
}

/*===== NAV =====*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--font-semi);
}
@media screen and (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    height: 100%;
    padding: 2rem;
    background-color: var(--second-color);
    transition: 0.5s;
  }
}
.nav__item {
  margin-bottom: var(--mb-4);
}
.nav__link {
  position: relative;
  color: #fff;
}
.nav__link:hover {
  position: relative;
}
.nav__link:hover::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}
.nav__logo {
  color: var(--second-color);
}
.nav__toggle {
  color: var(--second-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/*Active menu*/
.active-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.18rem;
  left: 0;
  top: 2rem;
  background-color: var(--first-color);
}

/*=== Show menu ===*/
.show {
  right: 0;
}

/*===== HOME =====*/
.home {
  position: relative;
  row-gap: 5rem;
  padding: 4rem 0 5rem;
}
.home__data {
  align-self: center;
}
.home__title {
  font-size: var(--big-font-size);
  margin-bottom: var(--mb-5);
}
.home__title-color {
  color: var(--first-color);
}
.home__social {
  display: flex;
  flex-direction: column;
}
.home__social-icon {
  width: max-content;
  margin-bottom: var(--mb-2);
  font-size: 1.5rem;
  color: var(--second-color);
}
.home__social-icon:hover {
  color: var(--first-color);
}
.home__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
}
.home__blob {
  fill: var(--first-color);
}
.home__blob-img {
  width: 360px;
}

/*BUTTONS*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: 0.75rem 2.5rem;
  font-weight: var(--font-semi);
  border-radius: 0.5rem;
  transition: 0.3s;
}
.button:hover {
  box-shadow: 0px 10px 36px rgba(0, 0, 0, 0.15);
}

/* ===== ABOUT =====*/
.about__container {
  row-gap: 2rem;
  text-align: center;
}
.about__subtitle {
  margin-bottom: var(--mb-2);
}
.about__img {
  justify-self: center;
}
.about__img img {
  width: 200px;
  border-radius: 0.5rem;
}

/* ===== SKILLS =====*/
.skills__container {
  row-gap: 2rem;
  text-align: center;
}
.skills__subtitle {
  margin-bottom: var(--mb-2);
}
.skills__text {
  margin-bottom: var(--mb-4);
}
.skills__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: var(--mb-4);
}
@media screen and (max-width: 480px) {
  .skills__grid {
    grid-template-columns: 1fr;
  }
}
.skill-card {
  position: relative;
  background: #fff;
  border: 1px solid #e9eef7;
  border-radius: 14px;
  padding: 1rem 1.15rem 1.1rem;
  text-align: left;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.skill-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.1);
  border-color: #dbe4f5;
}
.skill-card__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.skill-card__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 11px;
  background: hsla(224, 89%, 60%, 0.12);
  color: var(--first-color);
  font-size: 1.3rem;
}
.skill-card__name {
  flex: 1;
  font-size: 0.94rem;
  font-weight: 600;
  color: #1f2937;
}
.skill-card__level {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--first-color);
}
.skill-card__track {
  margin-top: 0.9rem;
  height: 6px;
  border-radius: 999px;
  background: #edf1f8;
  overflow: hidden;
}
.skill-card__bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--first-color), #60a5fa);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.skills__img {
  border-radius: 0.5rem;
  display: block;          /* penting agar margin auto bekerja */
  margin: 0 auto;          /* ini yang membuat gambar berada di tengah */
}

/* ===== WORK SECTION ===== */
.work__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 0;
}

@media screen and (max-width: 992px) {
    .work__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .work__container {
        grid-template-columns: 1fr;
        width: 85%;
    }
}

/* Work Card */
.work__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.work__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.work__card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.work__card--featured .work__card-image {
    aspect-ratio: 16/9;
}

.work__card--featured .work__card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work__card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.work__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work__card:hover .work__card-image img {
    transform: scale(1.05);
}

.work__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work__card:hover .work__card-overlay {
    opacity: 1;
}

.work__card-link {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--first-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.work__card-link:hover {
    transform: scale(1.1);
}

.work__card-content {
    padding: 1.5rem;
}

.work__card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.work__card-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.work__card-tags span {
    background: #f0f4ff;
    color: var(--first-color);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

/* Hide old work styles */
.work__item,
.work__img,
.work__overlay,
.work__overlay-title,
.work__badges,
.work__badge,
.work__overlay-cta,
.work__title,
.work__link {
    display: none !important;
}

/* ===== FEATURED CARD BADGE ===== */
.work__card--featured .work__card-title::after {
    content: '⭐ Featured';
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    margin-left: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

/* ===== PROJECT DETAILS PAGE ===== */
body {
    font-family: 'Poppins', sans-serif;
    background: #f8fafc;
    color: #333;
}

.project-container {
    max-width: 900px;
    margin: 4rem auto;
    padding: 25px;
}

.project-section {
    background: #ffffff;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 16px;
    box-shadow: 0px 8px 30px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.project-section:hover {
    transform: translateY(-4px);
}

.project-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--first-color);
    margin-bottom: 1rem;
}

.project-img {
    width: 100%;
    display: block;
    margin: 1.5rem auto;
    border-radius: 12px;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.10);
}

.project-img-group {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin: 1.5rem 0;
}

.project-img-group .project-img {
    width: 300px;
    flex-shrink: 0;
    margin: 0;
}

.project-desc {
    font-size: 1.05rem;
    line-height: 1.7rem;
    color: #475569;
    margin-bottom: 2rem;
}

/* Teknologi & Fitur menjadi 2 kolom */
.project-info {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.project-info div {
    flex: 1;
    min-width: 230px;
}

.project-info h3 {
    font-size: 1.15rem;
    margin-bottom: .8rem;
    color: #0f172a;
    font-weight: 600;
}

.project-info ul {
    margin-left: 1rem;
    line-height: 1.6rem;
    color: #334155;
}

/* Tombol */
.back-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 12px 22px;
    background: var(--first-color);
    color: white;
    font-size: 1rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0px 5px 15px rgba(37,99,235,0.3);
}

.back-btn:hover {
    background: hsl(224, 89%, 50%);
}

.work__title {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
}
.work__link {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--first-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border: 1.5px solid var(--first-color);
    border-radius: 2rem;
    transition: all 0.3s ease;
}
.work__link:hover {
    background: var(--first-color);
    color: #fff;
    text-decoration: none;
}


/* ===== CONTACT =====*/
.contact__input {
  width: 100%;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--second-color);
  outline: none;
  margin-bottom: var(--mb-4);
}
.contact__button {
  display: block;
  border: none;
  outline: none;
  font-size: var(--normal-font-size);
  cursor: pointer;
  margin-left: auto;
}

/* ===== FOOTER =====*/
.footer {
  background-color: var(--second-color);
  color: #fff;
  text-align: center;
  font-weight: var(--font-semi);
  padding: 2rem 0;
}
.footer__title {
  font-size: 2rem;
  margin-bottom: var(--mb-4);
}
.footer__social {
  margin-bottom: var(--mb-4);
}
.footer__icon {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 var(--mb-2);
}
.footer__copy {
  font-size: var(--smaller-font-size);
}

/* ===== MEDIA QUERIES=====*/
@media screen and (max-width: 320px) {
  .home {
    row-gap: 2rem;
  }
  .home__img {
    width: 200px;
  }
}
@media screen and (min-width: 576px) {
  .home {
    padding: 4rem 0 2rem;
  }
  .home__social {
    padding-top: 0;
    padding-bottom: 2.5rem;
    flex-direction: row;
    align-self: flex-end;
  }
  .home__social-icon {
    margin-bottom: 0;
    margin-right: var(--mb-4);
  }
  .home__img {
    width: 300px;
    bottom: 25%;
  }
  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    text-align: initial;
  }
  .skills__container {
    grid-template-columns: 0.7fr;
    justify-content: center;
    column-gap: 1rem;
  }
  .work__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    padding-top: 2rem;
  }
  .contact__form {
    width: 360px;
    padding-top: 2rem;
  }
  .contact__container {
    justify-items: center;
  }
}
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
  .section {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .section-title {
    margin-bottom: var(--mb-6);
  }
  .section-title::after {
    width: 80px;
    top: 3rem;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }
  .nav__list {
    display: flex;
    padding-top: 0;
  }
  .nav__item {
    margin-left: var(--mb-6);
    margin-bottom: 0;
  }
  .nav__toggle {
    display: none;
  }
  .nav__link {
    color: var(--second-color);
  }
  .home {
    padding: 8rem 0 2rem;
  }
  .home__img {
    width: 400px;
    bottom: 10%;
  }
  .about__container {
    padding-top: 2rem;
  }
  .about__img img {
    width: 300px;
  }
  .skills__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    align-items: center;
    text-align: initial;
  }
  .work__container {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .bd-grid {
    margin-left: auto;
    margin-right: auto;
  }
  .home {
    padding: 10rem 0 2rem;
  }
  .home__img {
    width: 450px;
  }
}
/* Override grid bawaan template */
.work .bd-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
}

/* ===== ABOUT SECTION ENHANCEMENTS ===== */
.about__container { width: 70%; margin: 0 auto; }
.about__content {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}
.about__subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--first-color);
    margin-bottom: 1.5rem;
}
.about__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.about__text .highlight { color: var(--first-color); font-weight: 600; }
.about__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    flex-wrap: wrap;
}
.stat__item { text-align: center; }
.stat__number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--first-color);
}
.stat__label { font-size: 0.9rem; color: #777; margin-top: 0.3rem; }
@media screen and (max-width: 768px) {
    .about__container { width: 85%; }
    .about__stats { gap: 1.5rem; }
}

/* ===== HERO ENHANCEMENTS ===== */
.home__status {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(64, 112, 244, .08);
    color: var(--first-color);
    font-size: .85rem;
    font-weight: 600;
    padding: .4rem .9rem;
    border-radius: 2rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(64, 112, 244, .25);
}
.home__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .7);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, .7); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.home__subtitle {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    max-width: 540px;
}
.home__subtitle .highlight { color: var(--first-color); font-weight: 600; }
.home__meta {
    margin-top: .8rem;
    font-size: .9rem;
    color: #777;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .25rem;
}
.home__meta i { vertical-align: middle; }
.home__buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}
.home__buttons .button { display: inline-flex; align-items: center; gap: .5rem; }
.button--ghost {
    background: transparent !important;
    color: var(--first-color) !important;
    border: 1.5px solid var(--first-color);
}
.button--ghost:hover {
    background: var(--first-color) !important;
    color: #fff !important;
}
@media screen and (max-width: 768px) {
    .home__subtitle { font-size: .95rem; }
}

/* ===== RESUME (EXPERIENCE + EDUCATION) ===== */
.resume__container {
    width: 70%;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}
@media screen and (max-width: 768px) {
    .resume__container { grid-template-columns: 1fr; width: 85%; }
}
.resume__column h2 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.resume__column h2 i { color: var(--first-color); font-size: 1.5rem; }
.resume__item {
    background: #fff;
    border-left: 3px solid var(--first-color);
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
    border-radius: .5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.resume__period {
    font-size: .8rem;
    font-weight: 600;
    color: var(--first-color);
    text-transform: uppercase;
    letter-spacing: .5px;
}
.resume__role {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin: .25rem 0;
}
.resume__org { font-size: .9rem; color: #64748b; margin-bottom: .5rem; }
.resume__desc { font-size: .9rem; line-height: 1.6; color: #475569; }
.resume__desc ul { margin-left: 1.1rem; }
.resume__desc li { margin-bottom: .25rem; }

/* ===== TESTIMONIALS ===== */
.testimonials__container {
    width: 70%;
    margin: 0 auto;
    padding: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
@media screen and (max-width: 768px) {
    .testimonials__container { width: 85%; }
}
.testimonial__card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}
.testimonial__card::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    left: 18px;
    font-size: 4rem;
    color: var(--first-color);
    opacity: .2;
    font-family: Georgia, serif;
    line-height: 1;
}
.testimonial__text {
    font-size: .95rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 1rem;
}
.testimonial__author { font-size: .95rem; font-weight: 700; color: #0f172a; }
.testimonial__role { font-size: .8rem; color: #64748b; }

/* ===== EXTRA SKILLS (CHIPS) ===== */
.skills__extras {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.5rem;
}
.skill-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: #fff;
    color: #334155;
    font-size: .85rem;
    font-weight: 500;
    padding: .45rem .85rem;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}
.skill-chip i { color: var(--first-color); font-size: 1rem; }

/* ===== PROJECT BUTTONS, BADGES, ROLE, IMPACT ===== */
.project-actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin: 1.2rem 0 .5rem;
}
.btn-demo, .btn-source {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.1rem;
    font-size: .9rem;
    font-weight: 500;
    border-radius: .5rem;
    text-decoration: none;
    transition: all .25s ease;
}
.btn-demo { background: var(--first-color); color: #fff; }
.btn-demo:hover { background: hsl(224, 89%, 45%); color: #fff; }
.btn-source { background: #0f172a; color: #fff; }
.btn-source:hover { background: #1e293b; color: #fff; }
.btn-disabled {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .55rem 1.1rem;
    font-size: .9rem;
    font-weight: 500;
    border-radius: .5rem;
    background: #e2e8f0;
    color: #64748b;
    cursor: not-allowed;
}
.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 1rem;
}
.tech-badge {
    display: inline-block;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 2rem;
    border: 1px solid #dbeafe;
}
.project-role {
    display: inline-block;
    background: #fef3c7;
    color: #92400e;
    font-size: .78rem;
    font-weight: 600;
    padding: .3rem .7rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}
.project-impact {
    background: #f0fdf4;
    border-left: 3px solid #22c55e;
    padding: .8rem 1rem;
    border-radius: .4rem;
    margin: 1rem 0;
    font-size: .92rem;
    color: #166534;
}
.project-impact strong { color: #14532d; }
