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

:root {
  --bg-main: #050816;
  --bg-soft: rgba(255, 255, 255, 0.075);
  --bg-strong: rgba(255, 255, 255, 0.13);
  --border: rgba(255, 255, 255, 0.16);
  --text: #f8fafc;
  --muted: #b7c4d8;
  --muted-2: #8794aa;
  --primary: #38bdf8;
  --secondary: #8b5cf6;
  --accent: #22c55e;
  --warning: #f59e0b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

body.light {
  --bg-main: #f3f7ff;
  --bg-soft: rgba(255, 255, 255, 0.72);
  --bg-strong: rgba(255, 255, 255, 0.88);
  --border: rgba(15, 23, 42, 0.12);
  --text: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

a {
  color: inherit;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.22), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(139, 92, 246, 0.22), transparent 28%),
    radial-gradient(circle at 55% 90%, rgba(34, 197, 94, 0.14), transparent 30%),
    linear-gradient(135deg, var(--bg-main), #0b1021);
}

body.light .background {
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.18), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(139, 92, 246, 0.16), transparent 28%),
    radial-gradient(circle at 55% 90%, rgba(34, 197, 94, 0.13), transparent 30%),
    linear-gradient(135deg, #eff6ff, #f8fafc);
}

.grid-layer {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

body.light .grid-layer {
  background-image:
    linear-gradient(rgba(15,23,42,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.045) 1px, transparent 1px);
}

.blur-circle {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.34;
  animation: drift 10s ease-in-out infinite;
}

.circle-1 {
  top: 80px;
  left: -110px;
  background: var(--primary);
}

.circle-2 {
  top: 250px;
  right: -140px;
  background: var(--secondary);
  animation-delay: 2s;
}

.circle-3 {
  bottom: -180px;
  left: 42%;
  background: var(--accent);
  animation-delay: 4s;
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -28px, 0) scale(1.07);
  }
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 64%);
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 50;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(10, 15, 32, 0.68);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

body.light .topbar {
  background: rgba(255, 255, 255, 0.72);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  padding: 4px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(56, 189, 248, 0.27);
}

.brand strong {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-weight: 700;
}

.menu {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 13px;
  border-radius: 999px;
  transition: 0.25s;
}

.menu a:hover,
.menu a.active {
  color: var(--text);
  background: var(--bg-soft);
}

.theme-toggle,
.mobile-menu {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle {
  padding: 11px 15px;
  border-radius: 999px;
  font-weight: 900;
}

.mobile-menu {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 10px;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 44px;
  padding: 74px 0 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(56, 189, 248, 0.32);
  background: rgba(56, 189, 248, 0.10);
  color: #b9e9ff;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 24px;
}

body.light .eyebrow {
  color: #0369a1;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 20px var(--accent);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #38bdf8, #a78bfa, #22c55e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.hero-text strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 950;
  transition: 0.25s;
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 20px 48px rgba(56, 189, 248, 0.22);
}

.btn.secondary {
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

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

.hero-metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 14px;
  max-width: 600px;
}

.hero-metrics div,
.status-card,
.profile-panel,
.glass-card,
.project-card,
.timeline,
.skills-board,
.contact-layout {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  border-radius: 20px;
  padding: 17px;
}

.hero-metrics strong {
  display: block;
  font-size: 24px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.profile-panel {
  border-radius: 36px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.profile-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(56,189,248,0.34), transparent 45%, rgba(139,92,246,0.35));
  opacity: 0.65;
  z-index: -1;
}

.profile-top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.avatar-wrap {
  width: 124px;
  height: 124px;
  border-radius: 32px;
  padding: 10px;
  background: var(--bg-strong);
  border: 1px solid var(--border);
  flex: 0 0 auto;
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  display: block;
}

.profile-top h2 {
  font-size: 30px;
  line-height: 1.1;
}

.profile-top p {
  color: var(--muted);
}

.status-card {
  margin-top: 28px;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: none;
}

.status-card p {
  color: var(--muted);
  font-size: 14px;
}

.live-dot {
  width: 13px;
  height: 13px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
  flex: 0 0 auto;
}

.tech-stack {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 11px;
  margin-top: 20px;
}

.tech-stack span {
  min-height: 50px;
  border-radius: 17px;
  border: 1px solid var(--border);
  background: var(--bg-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}

.content-section {
  padding: 76px 0;
}

.section-title {
  margin-bottom: 28px;
}

.section-title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: rgba(56, 189, 248, 0.10);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 950;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -1.4px;
  line-height: 1.12;
}

.section-title p {
  color: var(--muted);
  margin-top: 6px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.glass-card {
  border-radius: 30px;
  padding: 30px;
}

.glass-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.glass-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.focus-card ul {
  list-style: none;
}

.focus-card li {
  color: var(--muted);
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.focus-card li:last-child {
  border-bottom: 0;
}

.focus-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 950;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter-btn {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--muted);
  padding: 11px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: 0.22s;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  border-radius: 32px;
  overflow: hidden;
  transition: 0.25s;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.38);
}

.project-card.hide {
  display: none;
}

.project-image {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}

.project-image span {
  font-size: 56px;
  position: relative;
  z-index: 1;
}

.gradient-a {
  background: linear-gradient(135deg, #0284c7, #7c3aed);
}

.gradient-b {
  background: linear-gradient(135deg, #2563eb, #22c55e);
}

.gradient-c {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.project-body {
  padding: 25px;
}

.project-tag {
  display: inline-flex;
  border-radius: 999px;
  color: #bae6fd;
  background: rgba(56,189,248,0.12);
  border: 1px solid rgba(56,189,248,0.22);
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

body.light .project-tag {
  color: #0369a1;
}

.project-body h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.project-body p {
  color: var(--muted);
  margin-bottom: 18px;
}

.project-body a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 950;
}

.timeline {
  position: relative;
  border-radius: 32px;
  padding: 32px;
}

.timeline-line {
  position: absolute;
  left: 41px;
  top: 56px;
  bottom: 56px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 0 0 30px;
}

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

.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  margin-top: 9px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 0 24px rgba(56,189,248,0.45);
  z-index: 1;
}

.timeline-content {
  border: 1px solid var(--border);
  background: var(--bg-strong);
  border-radius: 22px;
  padding: 20px;
}

.timeline-content span {
  color: var(--primary);
  font-weight: 950;
  font-size: 13px;
}

.timeline-content h3 {
  font-size: 22px;
  margin: 4px 0 7px;
}

.timeline-content p {
  color: var(--muted);
}

.skills-board {
  border-radius: 32px;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skills-board span {
  border: 1px solid var(--border);
  background: var(--bg-strong);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 950;
  transition: 0.22s;
}

.skills-board span:hover {
  transform: translateY(-4px);
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.contact-layout {
  border-radius: 32px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-text h3 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.contact-text p {
  color: var(--muted);
}

.contact-list {
  margin-top: 22px;
  border: 1px solid var(--border);
  background: var(--bg-strong);
  border-radius: 22px;
  padding: 18px;
}

.contact-list p {
  margin: 7px 0;
}

.contact-list strong {
  color: var(--text);
}

.contact-form {
  border: 1px solid var(--border);
  background: var(--bg-strong);
  border-radius: 24px;
  padding: 20px;
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.16);
  color: var(--text);
  border-radius: 17px;
  padding: 14px 15px;
  outline: none;
  font: inherit;
}

body.light .contact-form input,
body.light .contact-form textarea {
  background: rgba(255,255,255,0.75);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(56,189,248,0.55);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.10);
}

.contact-form button {
  border: 0;
  cursor: pointer;
  color: white;
  border-radius: 18px;
  padding: 15px 18px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 18px 38px rgba(56,189,248,0.18);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.7s ease;
}

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

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto auto;
  }

  .mobile-menu {
    display: inline-flex;
    justify-self: end;
  }

  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    padding: 14px;
    margin: 0 4px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(10, 15, 32, 0.94);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
  }

  body.light .menu {
    background: rgba(255,255,255,0.94);
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 13px;
  }

  .hero,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .profile-panel {
    max-width: 620px;
  }

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

@media (max-width: 640px) {
  .topbar {
    width: min(100% - 20px, 1180px);
    top: 10px;
    margin-top: 10px;
    gap: 10px;
    border-radius: 22px;
  }

  .brand small {
    display: none;
  }

  .theme-toggle {
    padding: 10px 12px;
  }

  .section-shell {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding: 54px 0 56px;
    min-height: auto;
  }

  .hero h1 {
    letter-spacing: -1.8px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics,
  .tech-stack {
    grid-template-columns: 1fr;
  }

  .profile-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .content-section {
    padding: 56px 0;
  }

  .glass-card,
  .timeline,
  .skills-board,
  .contact-layout,
  .profile-panel {
    border-radius: 26px;
    padding: 22px;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-line {
    left: 29px;
  }

  .timeline-item {
    grid-template-columns: 28px 1fr;
    gap: 14px;
  }

  .footer {
    width: min(100% - 24px, 1180px);
    flex-direction: column;
  }
}


.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 24px;
}

.avatar-wrap {
  width: 112px;
  height: 112px;
  border-radius: 28px;
  padding: 8px;
  background: var(--bg-strong);
  border: 1px solid var(--border);
  flex: 0 0 auto;
  overflow: hidden;
}

@media (max-width: 640px) {
  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .avatar-wrap {
    width: 96px;
    height: 96px;
  }
}


.screenshot-project {
  min-height: 220px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(2,132,199,0.55), rgba(124,58,237,0.35));
}

.screenshot-project::after {
  inset: 12px;
  background: rgba(4, 10, 22, 0.22);
}

.screenshot-project img {
  width: 100%;
  height: 100%;
  min-height: 188px;
  object-fit: cover;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

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


.hero-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.preview-stack {
  border: 1px solid var(--border);
  background: var(--bg-soft);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 18px;
}

.preview-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.preview-head h3 {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 3px;
}

.preview-head p {
  color: var(--muted);
  font-size: 14px;
}

.preview-head span {
  border: 1px solid rgba(56, 189, 248, 0.25);
  background: rgba(56, 189, 248, 0.10);
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  white-space: nowrap;
}

.preview-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: 0.22s ease;
}

.preview-card + .preview-card {
  margin-top: 10px;
}

.preview-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(56,189,248,0.28);
}

.preview-thumb {
  width: 118px;
  height: 74px;
  object-fit: cover;
  object-position: center top;
  border-radius: 14px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.preview-info strong {
  display: block;
  font-size: 15px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.preview-info p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .hero-side {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .preview-stack {
    padding: 14px;
  }

  .preview-card {
    align-items: flex-start;
  }

  .preview-thumb {
    width: 96px;
    height: 64px;
  }

  .preview-head {
    flex-direction: column;
    align-items: flex-start;
  }
}


.project-details {
  margin-top: 18px;
  border: 1px solid var(--border);
  background: var(--bg-strong);
  border-radius: 20px;
  overflow: hidden;
}

.project-details summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  color: var(--primary);
  font-weight: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-details summary::-webkit-details-marker {
  display: none;
}

.project-details summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--primary);
}

.project-details[open] summary::after {
  content: "−";
}

.details-content {
  padding: 0 16px 18px;
  color: var(--muted);
}

.details-content h4 {
  color: var(--text);
  font-size: 18px;
  margin: 16px 0 8px;
}

.details-content p {
  margin-bottom: 12px;
}

.info-list,
.feature-list {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.info-list li,
.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.info-list li::before,
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 950;
}

.info-list strong {
  color: var(--text);
}

@media (max-width: 640px) {
  .project-details summary {
    padding: 13px 14px;
  }

  .details-content {
    padding: 0 14px 16px;
  }
}
