:root {
  color-scheme: dark;
  background: #0b0b0b;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #0b0b0b;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 800vh;
  overflow-x: hidden;
  color: #f8f6f2;
  font-family: Arial, Helvetica, sans-serif;
}

canvas {
  position: fixed;
  inset: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background: #0b0b0b;
  z-index: 0;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 1120px);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  padding: 28px 28px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border-radius: 0 0 54px 54px;
}

.navigation,
.nav-links,
.hero-copy,
.service-list,
.trusted,
.showcase-intro,
.project-grid {
  display: flex;
}

.navigation {
  position: fixed;
  top: 8px;
  left: 50%;
  z-index: 10;
  width: min(calc(100% - 156px), 1280px);
  min-height: 72px;
  padding: 14px 18px 14px 22px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  background-image: none;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
  transform: translateX(-50%);
  overflow: hidden;
}

.navigation::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01) 30%, rgba(255, 255, 255, 0.03) 100%);
  pointer-events: none;
}

.navigation::after {
  content: "";
  position: absolute;
  inset: -28% -10% auto 0;
  height: 170%;
  background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.14) 52%, rgba(255, 255, 255, 0.02) 68%, transparent 78%);
  transform: translateX(-8%) rotate(10deg);
  pointer-events: none;
}

.navigation>* {
  position: relative;
  z-index: 1;
}

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

.brand {
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav-links {
  align-items: center;
  gap: 28px;
  font-size: 11px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 9px 11px 9px 18px;
  color: #171717;
  background: #f8f6f2;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.contact-button span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: #fff;
  background: #ff5b16;
  border-radius: 50%;
  font-size: 15px;
}

.hero-copy {
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: auto;
  padding: 12vh 0 7vh;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: #ff641f;
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(4.4rem, 10vw, 8.8rem);
  line-height: 0.84;
  letter-spacing: -0.07em;
}

.hero-note {
  width: 30%;
  padding-bottom: 7px;
}

.hero-note h2 {
  margin-bottom: 14px;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-note p,
.intro-aside p {
  max-width: 230px;
  margin-bottom: 0;
  color: rgba(248, 246, 242, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.service-list {
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
}

.service-list span {
  display: grid;
  gap: 9px;
}

.service-list b {
  color: #ff641f;
  font-size: 10px;
}

.trusted {
  min-height: 126px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 28px;
  border-radius: 0 0 54px 54px;
  background: #151515;
}

.trusted p {
  margin: 0;
  font-size: 9px;
  line-height: 1.25;
}

.trusted strong {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: -0.05em;
}

.trusted i {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.trusted .hourglass {
  border-radius: 0 0 8px 8px;
  transform: scaleY(0.78) rotate(45deg);
}

.trusted .half-circle {
  background: linear-gradient(90deg, currentColor 50%, transparent 50%);
}

.trusted .double-circle {
  position: relative;
  border: 0;
  background: currentColor;
}

.trusted .double-circle::after {
  position: absolute;
  left: 8px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: '';
}

.showcase {
  padding: 126px 28px 80px;
  background: rgba(15, 15, 15, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  -webkit-backdrop-filter: blur(22px) saturate(150%) brightness(0.9);
  backdrop-filter: blur(22px) saturate(150%) brightness(0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 28px 80px rgba(0, 0, 0, 0.32);
}

.showcase-intro {
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 70px;
  align-items: center;
}

.showcase h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.intro-aside {
  width: 34%;
  padding: 22px 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 35px rgba(0, 0, 0, 0.18);
}

.intro-aside h3 {
  margin-bottom: 42px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.intro-aside .contact-button {
  margin-top: 25px;
  background: rgba(248, 246, 242, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 10px 25px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.project-grid {
  gap: 16px;
}

.project-grid figure {
  height: 370px;
  flex: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #222;
}

.project-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: none;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-grid figure:hover img {
  transform: scale(1.04);
}

.education {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 120px);
  padding: 120px 28px 100px;
  background: transparent;
}

.showcase,
.education {
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.showcase {
  margin-bottom: 32px;
}

.education-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.education-tags {
  display: grid;
  border-top: 1px solid rgba(248, 246, 242, 0.14);
  margin-top: 36px;
}

.education-tags span {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid rgba(248, 246, 242, 0.14);
  color: rgba(248, 246, 242, 0.62);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.education-list {
  border-top: 1px solid rgba(248, 246, 242, 0.14);
}

.education-entry {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 25px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(248, 246, 242, 0.14);
}

.education-entry time {
  color: rgba(248, 246, 242, 0.45);
  font-size: 11px;
}

.education-entry h3 {
  margin: 0 0 9px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: -0.05em;
}

.education-entry p {
  margin: 0;
  color: #ff641f;
  font-size: 14px;
}

.github-activity {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 120px);
  margin-top: 32px;
  padding: 120px 28px 100px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.github-heading h2 {
  margin: 0 0 25px;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.github-heading>p:last-child {
  max-width: 250px;
  margin: 0;
  color: rgba(248, 246, 242, 0.55);
  font-size: 14px;
  line-height: 1.5;
}

.github-heading a,
.activity-header a {
  color: #ff641f;
}

.github-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 45px;
}

.github-stats div {
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(248, 246, 242, 0.13);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.14);
}

.github-stats span {
  display: block;
  margin-bottom: 22px;
  color: rgba(248, 246, 242, 0.48);
  font-size: 12px;
  line-height: 1.2;
}

.github-stats strong {
  color: #ff641f;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.contribution-block {
  margin-bottom: 45px;
}

.contribution-label {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 14px;
  color: rgba(248, 246, 242, 0.58);
  font-size: 12px;
}

.contribution-label b {
  color: #f8f6f2;
}

.contribution-legend {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.contribution-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.level-0 {
  background: rgba(248, 246, 242, 0.08);
}

.level-1 {
  background: #193d4b;
}

.level-2 {
  background: #23657a;
}

.level-3 {
  background: #39a0b6;
}

.level-4 {
  background: #ff641f;
}

.contribution-graph {
  display: grid;
  grid-template-columns: repeat(53, minmax(4px, 1fr));
  grid-template-rows: repeat(7, 1fr);
  grid-auto-flow: column;
  gap: 3px;
  width: 100%;
  aspect-ratio: 7.5 / 1;
}

.contribution-cell {
  min-width: 0;
  border-radius: 2px;
  background: rgba(248, 246, 242, 0.08);
}

.contribution-cell.level-1 {
  background: #193d4b;
}

.contribution-cell.level-2 {
  background: #23657a;
}

.contribution-cell.level-3 {
  background: #39a0b6;
}

.contribution-cell.level-4 {
  background: #ff641f;
}

.github-recent {
  border-top: 1px solid rgba(248, 246, 242, 0.14);
}

.activity-header {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  color: rgba(248, 246, 242, 0.55);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.activity-events p {
  margin: 0;
  color: rgba(248, 246, 242, 0.5);
  font-size: 14px;
}

.activity-event {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid rgba(248, 246, 242, 0.1);
  font-size: 14px;
}

.activity-event strong {
  color: #f8f6f2;
  font-weight: 400;
}

.activity-event time {
  white-space: nowrap;
}

.curricular-activities {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 120px);
  margin-top: 32px;
  padding: 120px 28px 100px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.activity-tab {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid rgba(255, 100, 31, 0.65);
  border-radius: 999px;
  color: #ff641f;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.curricular-heading h2 {
  margin: 28px 0 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.drawings-grid {
  min-width: 0;
  min-height: 240px;
  overflow: hidden;
  border-top: 1px solid rgba(248, 246, 242, 0.14);
  border-bottom: 1px solid rgba(248, 246, 242, 0.14);
}

.drawings-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 16px 0;
  animation: drawing-marquee 42s linear infinite;
  will-change: transform;
}

.drawings-track figure {
  width: 320px;
  height: 330px;
  flex: 0 0 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
}

.drawings-track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

@keyframes drawing-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.skills-expertise {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 120px);
  margin-top: 32px;
  padding: 120px 28px 100px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.skills-heading h2 {
  margin: 28px 0 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.skills-groups {
  border-top: 1px solid rgba(248, 246, 242, 0.14);
}

.skill-row {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(248, 246, 242, 0.14);
}

.skill-row h3 {
  margin: 4px 0 0;
  color: #ff641f;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.skill-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(248, 246, 242, 0.82);
  font-size: 14px;
}

.skill-chips img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.featured-projects {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 8vw, 120px);
  margin-top: 32px;
  padding: 120px 28px 100px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.featured-heading h2 {
  margin: 28px 0 25px;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.featured-heading>p:last-child {
  max-width: 250px;
  margin: 0;
  color: rgba(248, 246, 242, 0.55);
  font-size: 14px;
  line-height: 1.5;
}

.featured-heading a,
.repository-card a {
  color: #ff641f;
}

.repository-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.repository-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(248, 246, 242, 0.14);
}

.repository-card h3 {
  margin: 0 0 9px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  letter-spacing: -0.05em;
}

.repository-card p {
  max-width: 430px;
  margin: 0 0 14px;
  color: rgba(248, 246, 242, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.repository-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(248, 246, 242, 0.46);
  font-size: 12px;
  text-transform: uppercase;
}

.repository-card>a {
  align-self: center;
  white-space: nowrap;
  font-size: 13px;
}

.certifications {
  margin-top: 32px;
  padding: 120px 28px 100px;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  backdrop-filter: blur(18px) saturate(125%);
}

.certifications-heading h2 {
  margin: 28px 0 50px;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.certifications-window {
  overflow: hidden;
  border-top: 1px solid rgba(248, 246, 242, 0.14);
  border-bottom: 1px solid rgba(248, 246, 242, 0.14);
}

.certifications-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 18px 0;
  animation: certificate-marquee 36s linear infinite;
  will-change: transform;
}

.certificate-card {
  position: relative;
  width: min(52vw, 660px);
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 12, 12, 0.44);
  backdrop-filter: blur(18px);
}

.certificate-image {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.certificate-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.certificate-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 0;
  color: rgba(248, 246, 242, 0.92);
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.certificate-card--nptel .certificate-copy {
  text-align: left;
}

.certificate-card--codefest .certificate-copy {
  text-align: center;
}

.certificate-copy span {
  display: inline-block;
  max-width: 88%;
}

.showcase,
.education,
.github-activity,
.curricular-activities,
.skills-expertise,
.featured-projects,
.certifications {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: rgba(15, 15, 15, 0.42);
  -webkit-backdrop-filter: blur(22px) saturate(150%) brightness(0.9);
  backdrop-filter: blur(22px) saturate(150%) brightness(0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 28px 80px rgba(0, 0, 0, 0.24);
}

@keyframes certificate-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (max-width: 700px) {
  .site-shell {
    width: 100%;
  }

  .hero,
  .showcase {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 20px;
    border-radius: 0 0 32px 32px;
  }

  .navigation {
    top: 20px;
    width: calc(100% - 40px);
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links>a:not(.contact-button) {
    display: none;
  }

  .hero-copy,
  .showcase-intro {
    display: block;
  }

  .hero-copy {
    padding: 16vh 0 9vh;
  }

  h1 {
    font-size: clamp(4rem, 21vw, 7rem);
  }

  .hero-note,
  .intro-aside {
    width: 100%;
    margin-top: 34px;
  }

  .service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 10px;
  }

  .trusted {
    min-height: 210px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 28px 20px;
    border-radius: 0 0 32px 32px;
  }

  .showcase {
    padding-top: 80px;
  }

  .showcase-intro {
    margin-bottom: 46px;
  }

  .showcase h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-grid figure {
    height: 300px;
  }

  .education {
    display: block;
    padding: 80px 20px;
  }

  .education-heading {
    margin-bottom: 50px;
  }

  .education-entry {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .github-activity {
    display: block;
    padding: 80px 20px;
  }

  .github-heading {
    margin-bottom: 50px;
  }

  .github-stats {
    margin-bottom: 35px;
  }

  .github-stats div {
    min-height: 95px;
    padding: 14px;
  }

  .github-stats span {
    margin-bottom: 15px;
  }

  .contribution-block {
    margin-bottom: 35px;
    overflow: hidden;
  }

  .contribution-label {
    display: block;
    line-height: 1.6;
  }

  .contribution-legend {
    margin-top: 8px;
  }

  .contribution-graph {
    min-width: 520px;
  }

  .activity-event {
    display: grid;
    gap: 7px;
  }

  .curricular-activities {
    display: block;
    padding: 80px 20px;
  }

  .curricular-heading {
    margin-bottom: 50px;
  }

  .drawings-grid {
    min-height: 180px;
  }

  .drawings-track {
    gap: 10px;
    padding: 12px 0;
    animation-duration: 32s;
  }

  .drawings-track figure {
    width: 230px;
    height: 260px;
    flex-basis: 230px;
    border-radius: 12px;
  }

  .skills-expertise {
    display: block;
    padding: 80px 20px;
  }

  .skills-heading {
    margin-bottom: 50px;
  }

  .skill-row {
    display: block;
  }

  .skill-row h3 {
    margin-bottom: 15px;
  }

  .featured-projects {
    display: block;
    padding: 80px 20px;
  }

  .featured-heading {
    margin-bottom: 50px;
  }

  .repository-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .repository-card>a {
    justify-self: start;
  }

  .certifications {
    padding: 80px 20px;
  }

  .certificate-card {
    width: 280px;
    flex-basis: 280px;
  }

  .certifications-track {
    animation-duration: 34s;
  }
}

.navigation,
.showcase,
.education,
.github-activity,
.curricular-activities,
.skills-expertise,
.featured-projects,
.certifications {
  background: transparent;
}

.navigation,
.showcase,
.education,
.github-activity,
.curricular-activities,
.skills-expertise,
.featured-projects,
.certifications {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.navigation {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 55px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  backdrop-filter: blur(14px) saturate(118%);
}

/* Editorial portfolio sections */
.status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 24px 28px;
  border-top: 1px solid rgba(248, 246, 242, 0.14);
  border-bottom: 1px solid rgba(248, 246, 242, 0.14);
  color: rgba(248, 246, 242, 0.7);
  font-size: 11px;
}

.status-strip p {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  vertical-align: 1px;
  background: #ff641f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 100, 31, 0.12);
}

.accent,
.section-kicker {
  color: #ff641f;
}

.muted {
  color: rgba(248, 246, 242, 0.45);
}

.portfolio-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 9vw, 150px);
  padding: 140px 28px;
  border-bottom: 1px solid rgba(248, 246, 242, 0.14);
}

.section-kicker {
  margin: 0 0 28px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.section-copy {
  align-self: end;
  max-width: 420px;
  padding-bottom: 4px;
}

.section-copy p {
  margin-bottom: 28px;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-copy .muted {
  max-width: 300px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0;
}

.timeline-list {
  border-top: 1px solid rgba(248, 246, 242, 0.14);
}

.timeline-item {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(248, 246, 242, 0.14);
}

time,
small,
.work-card>div>span,
.education-card>strong span {
  color: rgba(248, 246, 242, 0.45);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-item h3,
.education-card h3,
.work-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  letter-spacing: -0.05em;
}

.timeline-item p,
.education-card p,
.work-card p {
  margin: 0 0 24px;
  color: rgba(248, 246, 242, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.education-card {
  display: grid;
  grid-template-columns: 135px 1fr auto;
  gap: 25px;
  padding: 28px 0;
  border-top: 1px solid rgba(248, 246, 242, 0.14);
  border-bottom: 1px solid rgba(248, 246, 242, 0.14);
}

.education-card>strong {
  color: #ff641f;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.85;
  letter-spacing: -0.08em;
  text-align: right;
}

.education-card>strong span {
  display: block;
  margin-top: 8px;
  color: rgba(248, 246, 242, 0.45);
  font-size: 9px;
  letter-spacing: 0;
}

.skill-groups {
  border-top: 1px solid rgba(248, 246, 242, 0.14);
}

.skill-groups>div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 25px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(248, 246, 242, 0.14);
}

.skill-groups span {
  color: #ff641f;
  font-size: 10px;
  text-transform: uppercase;
}

.skill-groups p {
  margin: 0;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.work-list {
  display: grid;
  gap: 20px;
}

.work-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(248, 246, 242, 0.14);
  background: rgba(21, 21, 21, 0.82);
}

.work-card>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}

.work-card h3 {
  margin-top: auto;
  margin-bottom: 8px;
  color: #f8f6f2;
  font-size: clamp(2rem, 4vw, 4rem);
}

.work-card p {
  margin-bottom: 22px;
}

.work-card a {
  color: #ff641f;
  font-size: 11px;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.site-footer {
  padding: 110px 28px 38px;
}

.site-footer h2 {
  margin: 0 0 120px;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.84;
  letter-spacing: -0.08em;
}

.site-footer h2 a {
  color: #ff641f;
}

.site-footer>div {
  display: flex;
  gap: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 246, 242, 0.14);
  font-size: 11px;
}

.site-footer>div .muted {
  margin-left: auto;
}

@media (max-width: 700px) {
  .status-strip {
    display: grid;
    gap: 10px;
    padding: 20px;
  }

  .status-strip p:last-child {
    display: none;
  }

  .portfolio-section {
    display: block;
    padding: 90px 20px;
  }

  .section-heading {
    margin-bottom: 54px;
  }

  .section-copy {
    max-width: none;
  }

  .timeline-item,
  .education-card {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .education-card>strong {
    text-align: left;
  }

  .skill-groups>div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .work-card {
    grid-template-columns: 1fr;
  }

  .work-card img {
    min-height: 190px;
    grid-row: 1;
  }

  .work-card>div {
    min-height: 235px;
  }

  .site-footer {
    padding: 80px 20px 25px;
  }

  .site-footer h2 {
    margin-bottom: 80px;
    font-size: clamp(3.7rem, 18vw, 6rem);
  }

  .site-footer>div {
    flex-wrap: wrap;
  }

  .site-footer>div .muted {
    width: 100%;
    margin-left: 0;
  }
}