/* ===== Reset & base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #070B14;
  color: #F1F5F9;
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: #22D3EE; text-decoration: none; }
a:hover { color: #A855F7; }
::selection { background: #6366F1; color: #fff; }
ul { list-style: none; }

@keyframes marqueeL { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes drift { 0% { transform: translate3d(-4%,-2%,0) scale(1); } 50% { transform: translate3d(4%,3%,0) scale(1.15); } 100% { transform: translate3d(-4%,-2%,0) scale(1); } }
@keyframes caret { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

input:focus, textarea:focus {
  outline: none;
  border-color: #22D3EE !important;
  box-shadow: 0 0 0 3px rgba(34,211,238,0.18);
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== Layout helpers ===== */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.section-divider { border-top: 1px solid #1E293B; }
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: #94A3B8;
  text-transform: uppercase;
  margin: 0 0 40px;
}
.gradient-text {
  background-image: linear-gradient(120deg,#22D3EE,#6366F1,#A855F7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* ===== Scroll progress bar ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg,#22D3EE,#6366F1,#A855F7);
  z-index: 60;
}

/* ===== Nav ===== */
header.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 82px;
  transition: all 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
header.site-nav.scrolled {
  height: 64px;
  background: rgba(15,21,36,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid #1E293B;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F1F5F9;
}
.brand-dot {
  width: 11px; height: 11px;
  border-radius: 99px;
  background: linear-gradient(120deg,#22D3EE,#6366F1,#A855F7);
  box-shadow: 0 0 12px rgba(34,211,238,0.7);
  flex-shrink: 0;
}
.brand-name {
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  color: #94A3B8;
}
.nav-links a:hover { color: #F1F5F9; }
.nav-links a.active { color: #22D3EE; }
.nav-links a.active:hover { color: #22D3EE; }
.btn-outline-pill {
  margin-left: 10px;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid #1E293B;
  color: #F1F5F9;
  font-size: 13px;
  font-weight: 500;
  font-family: "JetBrains Mono", monospace;
}
.btn-outline-pill:hover { border-color: #22D3EE; color: #22D3EE; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #1E293B;
  border-radius: 8px;
  background: rgba(15,21,36,0.7);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 0 auto;
  background: #F1F5F9;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: rgba(7,11,20,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #1E293B;
    padding: 10px 24px 20px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 12px 4px; font-size: 15px; }
  .btn-outline-pill { margin-left: 0; margin-top: 8px; text-align: center; }
}

/* ===== Hero ===== */
#home {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  opacity: 0.55;
}
.hero-glow span {
  position: absolute;
  border-radius: 99px;
  filter: blur(40px);
}
.glow-1 {
  top: 6%; left: 8%;
  width: 46vw; height: 46vw;
  background: radial-gradient(circle,#22D3EE 0%,rgba(34,211,238,0) 68%);
  opacity: 0.25;
  animation: drift 26s ease-in-out infinite;
}
.glow-2 {
  bottom: 2%; right: 4%;
  width: 42vw; height: 42vw;
  background: radial-gradient(circle,#6366F1 0%,rgba(99,102,241,0) 68%);
  opacity: 0.3;
  animation: drift 34s ease-in-out infinite reverse;
}
.glow-3 {
  top: 34%; left: 42%;
  width: 30vw; height: 30vw;
  background: radial-gradient(circle,#A855F7 0%,rgba(168,85,247,0) 68%);
  opacity: 0.18;
  animation: drift 42s ease-in-out infinite;
}
.hero-dotgrid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(#1E293B 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}
.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.hero-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: #94A3B8;
  text-transform: uppercase;
  margin: 0 0 26px;
}
.hero-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(56px,11vw,132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0;
}
.hero-role-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  min-height: 44px;
}
.role-dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: #34D399;
  box-shadow: 0 0 10px #34D399;
  flex-shrink: 0;
}
.role-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(20px,3.4vw,34px);
  color: #F1F5F9;
  letter-spacing: -0.02em;
}
.role-caret {
  display: inline-block;
  width: 3px;
  height: clamp(22px,3.4vw,34px);
  background: #22D3EE;
  animation: caret 1s steps(1) infinite;
}
.hero-sub {
  max-width: 660px;
  margin-top: 26px;
  font-size: clamp(16px,1.6vw,19px);
  line-height: 1.6;
  color: #94A3B8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.btn-gradient {
  padding: 15px 30px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 15px;
  color: #070B14;
  background-image: linear-gradient(120deg,#22D3EE,#6366F1,#A855F7);
  box-shadow: 0 10px 34px -12px rgba(99,102,241,0.9);
  transition: transform 0.2s ease;
  border: none;
  display: inline-block;
}
.btn-gradient:hover { color: #070B14; transform: translateY(-2px); }
.btn-outline {
  padding: 15px 30px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 15px;
  color: #F1F5F9;
  border: 1px solid #1E293B;
  background: rgba(15,21,36,0.7);
  transition: border-color 0.2s ease, color 0.2s ease;
  display: inline-block;
}
.btn-outline:hover { border-color: #22D3EE; color: #22D3EE; }

/* ===== Ticker ===== */
.ticker-wrap {
  position: relative;
  margin-top: clamp(56px,8vh,92px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marqueeL 46s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
}
.ticker-chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  color: #F1F5F9;
  padding: 9px 18px;
  border-radius: 99px;
  border: 1px solid #1E293B;
  background: #0F1524;
  white-space: nowrap;
}
.ticker-dot {
  width: 5px; height: 5px;
  border-radius: 99px;
  background: linear-gradient(120deg,#22D3EE,#A855F7);
  flex-shrink: 0;
}

/* ===== Stat bar ===== */
.stat-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
}
.stat-item { padding: 44px 12px 44px 0; }
.stat-value {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(34px,4.4vw,50px);
  font-weight: 500;
  color: #22D3EE;
  letter-spacing: -0.03em;
}
.stat-label {
  margin-top: 10px;
  font-size: 14.5px;
  color: #94A3B8;
  line-height: 1.5;
  max-width: 230px;
}
.stat-link {
  display: inline-block;
  margin-top: 16px;
  padding: 9px 18px;
  border-radius: 99px;
  border: 1px solid #1E293B;
  background: #0F1524;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  color: #F1F5F9;
}
.stat-link:hover { border-color: #22D3EE; color: #22D3EE; }

/* ===== Section base ===== */
section { position: relative; }
.section-pad { padding: clamp(72px,10vw,130px) 24px; }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(100%,320px),1fr));
  gap: clamp(32px,5vw,72px);
  align-items: start;
}
.about-photo {
  position: relative;
  max-width: 380px;
  width: 100%;
}
.about-photo-glow {
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background-image: linear-gradient(120deg,#22D3EE,#6366F1,#A855F7);
  opacity: 0.35;
  filter: blur(22px);
}
.about-photo img {
  position: relative;
  width: 100%;
  border-radius: 16px;
  border: 1px solid #1E293B;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
}
.about-heading {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(30px,4.4vw,52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}
.about-body p {
  font-size: 17px;
  line-height: 1.65;
  color: #94A3B8;
  margin: 0 0 20px;
}
.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
}
.about-links a {
  border-bottom: 1px solid #1E293B;
  padding-bottom: 3px;
}

/* ===== Experience ===== */
.timeline {
  position: relative;
  padding-left: clamp(26px,4vw,44px);
}
.timeline-spine {
  position: absolute;
  left: 5px; top: 8px; bottom: 8px;
  width: 2px;
  background-image: linear-gradient(180deg,#22D3EE,#6366F1,#A855F7,rgba(168,85,247,0));
}
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.timeline-entry { position: relative; }
.timeline-node {
  position: absolute;
  left: calc(clamp(26px,4vw,44px) * -1 + 1px);
  top: 30px;
  width: 12px; height: 12px;
  border-radius: 99px;
  background: #070B14;
  border: 2px solid #22D3EE;
  box-shadow: 0 0 14px rgba(34,211,238,0.8);
}
.timeline-card {
  background: #0F1524;
  border: 1px solid #1E293B;
  border-radius: 16px;
  padding: clamp(22px,3vw,32px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.timeline-card:hover {
  border-color: #334155;
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -30px rgba(34,211,238,0.8);
}
.timeline-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.timeline-role {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(19px,2.2vw,24px);
  margin: 0;
  letter-spacing: -0.02em;
}
.timeline-dates {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: #22D3EE;
  white-space: nowrap;
}
.timeline-org {
  margin: 8px 0 18px;
  font-size: 15px;
  color: #94A3B8;
}
.timeline-bullets {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.timeline-bullets li {
  list-style: disc;
  font-size: 15.5px;
  line-height: 1.6;
  color: #94A3B8;
}
.edu-strip {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.edu-pill {
  font-family: "JetBrains Mono", monospace;
  font-size: 13.5px;
  color: #94A3B8;
  padding: 12px 20px;
  border-radius: 99px;
  border: 1px solid #1E293B;
}

/* ===== Projects ===== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(320px,1fr));
  gap: 20px;
}
.project-card {
  height: 100%;
  background: #0F1524;
  border: 1px solid #1E293B;
  border-radius: 16px;
  padding: clamp(22px,3vw,30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.project-card:hover {
  border-color: #22D3EE;
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -34px rgba(99,102,241,1);
}
.project-card.featured { min-width: 0; }
.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.project-index {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: #94A3B8;
}
.project-featured-badge {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #070B14;
  padding: 5px 12px;
  border-radius: 99px;
  background-image: linear-gradient(120deg,#22D3EE,#6366F1,#A855F7);
}
.project-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(20px,2.2vw,26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}
.project-hook {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #94A3B8;
}
.project-finding {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #22D3EE;
}
.project-finding-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94A3B8;
  display: block;
  margin-bottom: 6px;
}
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}
.project-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #94A3B8;
  padding: 6px 12px;
  border-radius: 6px;
  background: #070B14;
  border: 1px solid #1E293B;
}
.project-links {
  display: flex;
  gap: 20px;
  padding-top: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}
.project-links a {
  border-bottom: 1px solid #1E293B;
  padding-bottom: 3px;
}

/* ===== Skills ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: clamp(28px,4vw,52px);
}
.skill-group-name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.skill-chip {
  font-family: "JetBrains Mono", monospace;
  font-size: 13.5px;
  color: #94A3B8;
  padding: 10px 16px;
  border-radius: 99px;
  border: 1px solid #1E293B;
  background: #0F1524;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.skill-chip:hover {
  color: #F1F5F9;
  border-color: #22D3EE;
  box-shadow: 0 0 22px -6px rgba(34,211,238,0.7);
}

/* ===== Contact ===== */
#contact { overflow: hidden; }
.contact-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(ellipse 60% 70% at 50% 120%, rgba(99,102,241,0.35), rgba(7,11,20,0));
}
.contact-inner { position: relative; max-width: 720px; }
.contact-heading {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(32px,4.6vw,54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.contact-sub {
  font-size: 17px;
  line-height: 1.65;
  color: #94A3B8;
  margin: 0 0 32px;
  max-width: 460px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-outline-dark {
  padding: 15px 30px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 15px;
  color: #F1F5F9;
  border: 1px solid #1E293B;
  background: #0F1524;
  transition: border-color 0.2s ease, color 0.2s ease;
  display: inline-block;
}
.btn-outline-dark:hover { border-color: #22D3EE; color: #22D3EE; }

/* ===== Footer ===== */
footer.site-footer .footer-top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: "JetBrains Mono", monospace;
  font-size: 13.5px;
  color: #F1F5F9;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 36px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: #94A3B8;
}

/* ===== Process Improvements page ===== */
.pi-header .pi-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pi-back {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #F1F5F9;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
}
.pi-hero { overflow: hidden; }
.pi-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(ellipse 70% 80% at 20% -10%, rgba(99,102,241,0.3), rgba(7,11,20,0));
}
.pi-hero-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(56px,9vw,104px) 24px clamp(32px,5vw,56px);
}
.pi-eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  color: #94A3B8;
  text-transform: uppercase;
  margin: 0 0 26px;
}
.pi-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(38px,6.4vw,74px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 0;
}
.pi-sub {
  max-width: 640px;
  margin-top: 24px;
  font-size: clamp(16px,1.6vw,19px);
  line-height: 1.6;
  color: #94A3B8;
}
.pi-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px clamp(64px,9vw,120px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pi-card {
  background: #0F1524;
  border: 1px solid #1E293B;
  border-radius: 16px;
  padding: clamp(24px,3.4vw,40px);
  transition: border-color 0.25s ease;
}
.pi-card:hover { border-color: #334155; }
.pi-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
  justify-content: space-between;
}
.pi-index {
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  color: #94A3B8;
}
.pi-context {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: #22D3EE;
}
.pi-card-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: clamp(22px,3vw,32px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
}
.pi-card-summary {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.65;
  color: #94A3B8;
  max-width: 680px;
}
.pi-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(min(100%,220px),1fr));
  gap: 22px;
  padding-top: 20px;
  border-top: 1px solid #1E293B;
}
.pi-detail-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #94A3B8;
  margin: 0 0 8px;
}
.pi-detail-action { margin: 0; font-size: 15.5px; line-height: 1.6; color: #F1F5F9; }
.pi-detail-impact { margin: 0; font-size: 15.5px; line-height: 1.6; color: #22D3EE; }
.pi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.pi-footer .pi-footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}
