:root {
  --bg: hsl(260 25% 15%);
  --fg: hsl(0 0% 98%);
  --card: hsl(260 30% 20%);
  --muted: hsl(260 35% 25%);
  --muted-fg: hsl(260 20% 70%);
  --border: hsl(260 32% 28%);
  --primary: hsl(262 88% 62%);
  --primary-fg: hsl(260 15% 8%);

  --radius: 16px;
  --shadow-elevated: 0 30px 70px -18px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 0 70px rgba(138, 43, 226, 0.28);

  --gradient-gold: linear-gradient(135deg, hsl(262 92% 68%) 0%, hsl(280 78% 62%) 100%);
  --gradient-spotlight: radial-gradient(ellipse at 50% 30%, rgba(138, 43, 226, 0.22) 0%, transparent 55%), radial-gradient(ellipse at 70% 40%, rgba(100, 65, 225, 0.16) 0%, transparent 60%);

  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: Syne, var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(1200px 700px at 50% 0%, rgba(138, 43, 226, 0.18) 0%, transparent 55%), radial-gradient(900px 520px at 70% 20%, rgba(100, 65, 225, 0.16) 0%, transparent 60%), var(--bg);
  color: var(--fg);
  backdrop-filter: blur(8px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 3px);
  opacity: 0.12;
  mix-blend-mode: overlay;
}

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

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

.container {
  width: min(1100px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 128px 0;
  position: relative;
  overflow: hidden;
}

.section--tint {
  background: color-mix(in oklab, var(--card), transparent 50%);
}

.section--hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 140px;
}

.spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--gradient-spotlight);
  opacity: 0.55;
}

.spotlight--soft {
  opacity: 0.35;
}

.text-gradient {
  background-image: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 14px;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 12px 0;
}

.h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 8px 0;
}

.lead {
  margin: 0;
  color: var(--muted-fg);
  font-size: 18px;
}

.prose {
  color: color-mix(in oklab, var(--fg), var(--muted-fg) 35%);
  line-height: 1.75;
}

.prose p {
  margin: 0 0 14px 0;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: 300ms ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
}

.nav__links {
  display: none;
  gap: 28px;
  align-items: center;
}

.nav__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-fg);
  position: relative;
  padding: 6px 0;
  transition: 200ms ease;
}

.nav__link:hover {
  color: var(--fg);
}

.nav__link.is-active {
  color: var(--primary);
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.nav__cta {
  display: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid rgba(138, 43, 226, 0.6);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.4), 0 0 40px rgba(138, 43, 226, 0.2), var(--shadow-gold);
  transition: 200ms ease;
}

.nav__cta:hover {
  opacity: 0.92;
  border-color: rgba(138, 43, 226, 0.8);
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.6), 0 0 50px rgba(138, 43, 226, 0.3), var(--shadow-gold);
  transform: translateY(-1px);
}

.nav--scrolled {
  background: color-mix(in oklab, var(--bg), transparent 30%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid color-mix(in oklab, var(--border), transparent 50%);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }
}

/* Hero */
.hero {
  text-align: center;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 2px solid rgba(138, 43, 226, 0.4);
  background: color-mix(in oklab, var(--card), transparent 60%);
  backdrop-filter: blur(16px);
  margin-bottom: 26px;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

.hero__badge-icon {
  color: var(--primary);
  font-size: 14px;
}

.hero__badge-text {
  color: var(--muted-fg);
  font-size: 13px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  font-size: clamp(44px, 6vw, 86px);
}

.hero__name {
  display: block;
  margin-top: 10px;
}

.hero__subtitle {
  margin: 18px auto 0;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--muted-fg);
}

.hero__desc {
  margin: 10px auto 0;
  max-width: 620px;
  color: color-mix(in oklab, var(--muted-fg), white 20%);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid rgba(138, 43, 226, 0.6);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
  transition: 200ms ease;
}

.btn--primary {
  background: var(--primary);
  color: var(--primary-fg);
  border: 2px solid rgba(138, 43, 226, 0.6);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.4), 0 0 40px rgba(138, 43, 226, 0.2), var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  border-color: rgba(138, 43, 226, 0.8);
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.6), 0 0 50px rgba(138, 43, 226, 0.3), var(--shadow-gold);
}

.btn--secondary {
  border: 2px solid rgba(138, 43, 226, 0.4);
  background: transparent;
  color: var(--fg);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

.btn--secondary:hover {
  background: color-mix(in oklab, var(--card), transparent 20%);
  border-color: rgba(138, 43, 226, 0.6);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.3);
}

.btn--outline {
  border: 2px solid rgba(138, 43, 226, 0.6);
  color: var(--primary);
  background: transparent;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.2);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: rgba(138, 43, 226, 0.8);
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.6), 0 0 50px rgba(138, 43, 226, 0.3);
}

.btn--full {
  width: 100%;
  border-radius: 14px;
  border: 2px solid rgba(138, 43, 226, 0.6);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.4), 0 0 40px rgba(138, 43, 226, 0.2);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -60px;
}

.scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-fg);
}

.scroll:hover {
  color: var(--fg);
}

.scroll__label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll__arrow {
  animation: bounce 1.4s infinite;
}

.float-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  opacity: 0.45;
  animation: float 6s ease-in-out infinite;
}

.dot-1 {
  top: 25%;
  left: 10%;
  width: 8px;
  height: 8px;
}

.dot-2 {
  top: 32%;
  right: 12%;
  width: 12px;
  height: 12px;
  opacity: 0.35;
  animation-delay: 0.3s;
}

.dot-3 {
  bottom: 30%;
  left: 24%;
  width: 9px;
  height: 9px;
  opacity: 0.4;
  animation-delay: 0.6s;
}

/* Layout helpers */
.grid-2 {
  display: grid;
  gap: 28px;
}

@media (min-width: 980px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

/* About */
.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.highlight {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: color-mix(in oklab, var(--card), transparent 60%);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(138, 43, 226, 0.3);
  transition: 200ms ease;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.15);
}

.highlight:hover {
  border-color: rgba(138, 43, 226, 0.5);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.25);
}

.highlight__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(138, 43, 226, 0.12);
}

.highlight__label {
  font-weight: 600;
  font-size: 13px;
}

.profile {
  position: relative;
}

.profile__frame {
  position: absolute;
  inset: -16px;
  border-radius: 20px;
  border: 2px solid rgba(138, 43, 226, 0.18);
  transform: rotate(-3deg);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.1);
}

.profile__frame--b {
  border-color: rgba(138, 43, 226, 0.12);
  transform: rotate(2deg);
}

.profile__card {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--card), transparent 40%), color-mix(in oklab, var(--muted), transparent 30%));
  backdrop-filter: blur(24px);
  border: 2px solid rgba(138, 43, 226, 0.3);
  padding: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-elevated), 0 0 20px rgba(138, 43, 226, 0.15);
}

.profile__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  filter: blur(45px);
  background: rgba(138, 43, 226, 0.14);
}

.profile__glow--a {
  top: -40px;
  right: -40px;
}

.profile__glow--b {
  bottom: -40px;
  left: -40px;
  opacity: 0.6;
}

.profile__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.avatar {
  width: 220px;
  height: 220px;
  border-radius: 24px;
  border: 3px solid rgba(138, 43, 226, 0.6);
  overflow: hidden;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: color-mix(in oklab, var(--muted), transparent 30%);
  box-shadow: 0 0 0 6px rgba(138, 43, 226, 0.1), 0 22px 50px rgba(0, 0, 0, 0.55), 0 0 25px rgba(138, 43, 226, 0.2);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  background: color-mix(in oklab, var(--bg), white 4%);
}

.avatar__placeholder {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  color: var(--primary);
}

.profile__role {
  margin: 0;
  color: var(--primary);
  font-weight: 600;
}

.stats {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
}

.stat__label {
  color: var(--muted-fg);
  font-size: 12px;
}

.stats__divider {
  width: 1px;
  height: 38px;
  background: var(--border);
}

/* Internship Section */
.internship-container {
  max-width: 900px;
  margin: 0 auto;
}

.internship-card {
  border: 2px solid rgba(138, 43, 226, 0.4);
  background: color-mix(in oklab, var(--card), transparent 50%);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.15);
  transition: 250ms ease;
}

.internship-card:hover {
  border-color: rgba(138, 43, 226, 0.6);
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.25);
}

.internship-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 24px;
}

.internship-company {
  flex: 1;
}

.internship-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--fg);
}

.internship-company-name {
  margin-bottom: 12px;
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: 200ms ease;
}

.company-link:hover {
  color: var(--primary);
  opacity: 0.8;
}

.external-link {
  font-size: 14px;
  opacity: 0.7;
}

.internship-period {
  display: flex;
  align-items: center;
  gap: 12px;
}

.period-badge {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.period-text {
  color: var(--muted-fg);
  font-size: 14px;
  font-weight: 500;
}

.internship-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), color-mix(in oklab, var(--primary), black 20%));
  display: grid;
  place-items: center;
  border: 2px solid rgba(138, 43, 226, 0.3);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
  overflow: hidden;
  padding: 8px;
}

.company-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.company-placeholder {
  color: var(--primary-fg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
}

.internship-content {
  display: grid;
  gap: 24px;
}

.internship-description {
  line-height: 1.7;
  color: var(--muted-fg);
  font-size: 15px;
}

.internship-description p {
  margin: 0;
}

.internship-responsibilities {
  border: 1px solid rgba(138, 43, 226, 0.2);
  background: color-mix(in oklab, var(--muted), transparent 60%);
  border-radius: 16px;
  padding: 20px;
}

.responsibilities-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--primary);
}

.responsibilities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.responsibility-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--fg);
  font-size: 14px;
  line-height: 1.5;
}

.check-icon {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.internship-skills {
  margin-top: 8px;
}

.skills-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--primary);
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  background: color-mix(in oklab, var(--primary), var(--bg) 85%);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(138, 43, 226, 0.3);
  transition: 200ms ease;
}

.skill-tag:hover {
  background: var(--primary);
  color: var(--primary-fg);
  transform: translateY(-1px);
}

.internship-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.internship-links .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.internship-progress {
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid rgba(138, 43, 226, 0.3);
  background: color-mix(in oklab, var(--card), transparent 50%);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.12);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.progress-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--fg);
}

.progress-text {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.progress-bar {
  height: 12px;
  background: var(--muted);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(138, 43, 226, 0.2);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), color-mix(in oklab, var(--primary), white 20%));
  border-radius: 999px;
  transition: width 900ms ease;
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.progress-milestones {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.milestone-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--muted);
  border: 2px solid rgba(138, 43, 226, 0.2);
  transition: 200ms ease;
}

.milestone.completed .milestone-dot {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.milestone.current .milestone-dot {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
  animation: pulse 2s infinite;
}

.milestone-label {
  font-size: 11px;
  color: var(--muted-fg);
  font-weight: 500;
}

.milestone.completed .milestone-label,
.milestone.current .milestone-label {
  color: var(--primary);
  font-weight: 600;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.6);
  }

  50% {
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.8);
  }
}

@media (max-width: 768px) {
  .internship-header {
    flex-direction: column;
    gap: 16px;
  }

  .internship-logo {
    width: 60px;
    height: 60px;
  }

  .company-placeholder {
    font-size: 20px;
  }

  .internship-title {
    font-size: 24px;
  }

  .progress-milestones {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .milestone {
    gap: 8px;
  }

  .internship-links {
    flex-direction: column;
  }

  .internship-links .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Cards (skills) */
.cards {
  gap: 18px;
}

.card {
  position: relative;
  border: 2px solid rgba(138, 43, 226, 0.4);
  background: color-mix(in oklab, var(--card), transparent 50%);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 22px;
  transition: 200ms ease;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.15);
}

.card:hover {
  border-color: rgba(138, 43, 226, 0.6);
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.25);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(138, 43, 226, 0.06);
  opacity: 0;
  transition: 250ms ease;
}

.card:hover::before {
  opacity: 1;
}

.card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}

.card__title {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0;
  position: relative;
}

.card__pct {
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
  position: relative;
}

.card__desc {
  margin: 10px 0 14px;
  color: var(--muted-fg);
  position: relative;
}

.bar {
  height: 8px;
  background: var(--muted);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.bar__fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--from), var(--to));
  transition: width 900ms ease;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--muted);
  color: var(--fg);
  font-size: 13px;
  font-weight: 600;
  transition: 200ms ease;
}

.tag:hover {
  background: var(--primary);
  color: var(--primary-fg);
}

/* Projects */
.projects {
  gap: 18px;
}

.project {
  border: 2px solid rgba(138, 43, 226, 0.4);
  background: color-mix(in oklab, var(--card), transparent 50%);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  overflow: hidden;
  transition: 250ms ease;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.15);
}

.project:hover {
  border-color: rgba(138, 43, 226, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 0 25px rgba(138, 43, 226, 0.25);
}

.project__media {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--muted), color-mix(in oklab, var(--muted), white 10%));
}

.project__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project:hover .project__image {
  transform: scale(1.05);
}

.project__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(138, 43, 226, 0.35);
}

.project__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(138, 43, 226, 0.92);
  color: var(--primary-fg);
  font-weight: 800;
  opacity: 0;
  transition: 250ms ease;
}

.project:hover .project__overlay {
  opacity: 1;
}

.project__overlay--disabled {
  opacity: 0.25;
  background: rgba(138, 43, 226, 0.25);
  color: var(--fg);
}

.project__body {
  padding: 22px;
}

.project__cat {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
}

.project__title {
  font-family: var(--font-display);
  margin: 10px 0 10px;
  font-size: 20px;
}

.project__desc {
  margin: 0 0 14px;
  color: var(--muted-fg);
  font-size: 13px;
  line-height: 1.6;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--muted), white 4%);
  color: var(--fg);
  font-size: 12px;
  font-weight: 700;
}

/* Contact */
.form {
  border: 2px solid rgba(138, 43, 226, 0.4);
  background: color-mix(in oklab, var(--card), transparent 50%);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.15);
}

.form__grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 620px) {
  .form__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 13px;
  font-weight: 700;
}

.field__input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 2px solid rgba(138, 43, 226, 0.2);
  background: var(--bg);
  color: var(--fg);
  outline: none;
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.1);
}

.field__input::placeholder {
  color: var(--muted-fg);
}

.field__input:focus {
  border-color: rgba(138, 43, 226, 0.6);
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.18), 0 0 20px rgba(138, 43, 226, 0.3);
}

textarea.field__input {
  resize: none;
}

.info {
  border: 2px solid rgba(138, 43, 226, 0.4);
  background: color-mix(in oklab, var(--card), transparent 50%);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.15);
}

.info__list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.info__item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.info__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(138, 43, 226, 0.14);
  color: var(--primary);
  flex: 0 0 auto;
}

.info__label {
  color: var(--muted-fg);
  font-size: 12px;
}

.info__value {
  font-weight: 700;
}

.info__divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.social__label {
  color: var(--muted-fg);
  font-size: 12px;
  margin-bottom: 10px;
}

.social__links {
  display: flex;
  gap: 10px;
}

.social__link {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--muted);
  font-weight: 800;
  transition: 200ms ease;
}

.social__link:hover {
  background: var(--primary);
  color: var(--primary-fg);
}

.quote {
  margin-top: 16px;
  border: 2px solid rgba(138, 43, 226, 0.22);
  background: linear-gradient(135deg, rgba(138, 43, 226, 0.12), rgba(100, 65, 225, 0.06));
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.15);
}

.quote__text {
  margin: 0;
  font-style: italic;
}

.quote__by {
  margin: 10px 0 0;
  color: var(--primary);
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}

.footer__meta {
  color: var(--muted-fg);
  font-size: 13px;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
  }
}

/* Reveal / Animations */
.fade-up,
.fade-in,
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(22px);
}

.fade-in {
  transform: none;
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.is-visible.fade-up,
.is-visible.fade-in,
.is-visible.reveal,
.is-visible.reveal-left,
.is-visible.reveal-right {
  opacity: 1;
  transform: none;
  transition: 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Initial hero animations */
.fade-up {
  animation: fadeUp 0.85s ease forwards;
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

.delay-800 {
  animation-delay: 0.8s;
}

.is-visible .bar__fill {
  width: var(--w);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}