:root {
  --ink: #10151b;
  --ink-soft: #202932;
  --paper: #f3f1e9;
  --paper-deep: #e8e4d9;
  --white: #ffffff;
  --muted: #a5adb7;
  --muted-dark: #5c6670;
  --line: rgba(16, 21, 27, 0.14);
  --line-dark: rgba(255, 255, 255, 0.13);
  --lime: #d3f25b;
  --lime-deep: #b9dc37;
  --blue: #85a7ff;
  --coral: #ff796d;
  --radius-lg: 32px;
  --radius-md: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

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

button {
  color: inherit;
  font: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

main > section[id] {
  scroll-margin-top: 83px;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  background: rgba(11, 15, 20, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  color: #ced3d8;
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links .nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white);
}

.nav-links .nav-cta:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease;
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  padding-top: 172px;
  padding-bottom: 54px;
}

.hero-grid {
  display: grid;
  min-height: 610px;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 76px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  top: 5%;
  right: -12%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(133, 167, 255, 0.15), transparent 67%);
}

.hero-glow-two {
  bottom: -18%;
  left: 15%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(211, 242, 91, 0.09), transparent 68%);
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(211, 242, 91, 0.1);
}

.hero-intro {
  margin: 0 0 13px;
  color: #c7cdd3;
  font-size: 18px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(50px, 6.3vw, 88px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero h1 span {
  color: var(--lime);
}

.hero-summary {
  max-width: 650px;
  margin: 30px 0 0;
  color: #aeb6bf;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.hero-proof-grid {
  display: grid;
  max-width: 690px;
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.hero-proof-grid div {
  min-height: 96px;
  padding: 18px 20px;
  border-right: 1px solid var(--line-dark);
}

.hero-proof-grid div:last-child {
  border-right: 0;
}

.hero-proof-grid strong {
  display: block;
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.hero-proof-grid span {
  display: block;
  margin-top: 7px;
  color: #aab3bc;
  font-size: 13px;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
}

.button-primary:hover {
  background: #e0ff6a;
}

.button-secondary {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
  color: #87909a;
  font-size: 13px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbit-one {
  width: 500px;
  height: 500px;
}

.orbit-two {
  width: 370px;
  height: 370px;
  border-style: dashed;
  animation: spin 35s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.profile-card {
  position: relative;
  z-index: 2;
  width: min(370px, 88%);
  padding: 12px 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    #151c23;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.profile-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(211, 242, 91, 0.08), transparent 40%);
  content: "";
  pointer-events: none;
}

.profile-card-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.profile-photo-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 23px;
  background: #232c35;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.88) contrast(1.03);
}

.monogram {
  position: relative;
  width: 148px;
  height: 168px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(211, 242, 91, 0.94), rgba(133, 167, 255, 0.88)),
    var(--blue);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 73px;
  font-weight: 800;
  letter-spacing: -0.13em;
  line-height: 1;
  overflow: hidden;
}

.monogram span:first-child {
  position: absolute;
  top: 19px;
  left: 16px;
}

.monogram span:last-child {
  position: absolute;
  right: 17px;
  bottom: 16px;
}

.profile-label {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(11, 15, 20, 0.78);
  color: #d7dde3;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.profile-role {
  position: relative;
  display: grid;
  margin-top: 26px;
  padding-inline: 14px;
  gap: 9px;
}

.profile-role strong {
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.profile-role div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.profile-role span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #aeb8c1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-role span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.profile-divider {
  height: 1px;
  margin: 23px 0 17px;
  margin-inline: 14px;
  background: var(--line-dark);
}

.profile-focus {
  display: flex;
  justify-content: space-between;
  padding-inline: 14px;
  color: #939da7;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 202px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(24, 31, 39, 0.93);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}

.floating-card-one {
  top: 77px;
  right: -15px;
}

.floating-card-two {
  bottom: 70px;
  left: -30px;
}

.floating-icon {
  display: grid;
  flex: 0 0 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
}

.check-icon {
  background: rgba(211, 242, 91, 0.13);
  color: var(--lime);
}

.chart-icon {
  background: rgba(133, 167, 255, 0.14);
  color: var(--blue);
}

.floating-card div {
  display: grid;
}

.floating-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  line-height: 1.1;
}

.floating-card small {
  margin-top: 3px;
  color: #8d97a1;
  font-size: 10px;
  line-height: 1.35;
}

.tool-strip {
  display: flex;
  align-items: center;
  gap: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.tool-strip p {
  flex: 0 0 auto;
  margin: 0;
  color: #727d88;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tool-strip div {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.tool-strip .tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #bac1c8;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.tool-chip img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.targeting-section {
  padding: 78px 0;
  background: var(--lime);
  color: var(--ink);
}

.targeting-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  gap: 80px;
}

.targeting-heading .kicker {
  margin-bottom: 15px;
  color: #5d6d0f;
}

.targeting-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(37px, 4vw, 55px);
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.targeting-heading > p:not(.kicker) {
  max-width: 390px;
  margin: 20px 0 0;
  color: #596512;
  font-size: 15px;
}

.targeting-matrix {
  border-top: 1px solid rgba(16, 21, 27, 0.2);
}

.targeting-row {
  display: grid;
  align-items: start;
  padding: 19px 0;
  border-bottom: 1px solid rgba(16, 21, 27, 0.2);
  grid-template-columns: 115px 1fr;
  gap: 24px;
}

.targeting-row strong {
  padding-top: 7px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.targeting-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.targeting-row span {
  padding: 6px 10px;
  border: 1px solid rgba(16, 21, 27, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 11px;
  font-weight: 700;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 70px;
}

.section-light .kicker {
  color: #657516;
}

.section-heading h2,
.skills-intro h2,
.contact-card h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.section-heading-row {
  display: grid;
  max-width: none;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  gap: 70px;
}

.section-heading-row > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 16px;
}

.about-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 110px;
}

.about-copy p {
  max-width: 600px;
  margin: 0 0 19px;
  color: var(--muted-dark);
  font-size: 17px;
}

.about-copy .lead {
  margin-bottom: 28px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.about-copy .lead strong {
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.about-facts {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.about-facts article {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-facts span {
  display: block;
  margin-bottom: 28px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.about-facts article:nth-child(2) span {
  color: #6e59c9;
}

.about-facts article:nth-child(3) span {
  color: #b24e42;
}

.about-facts article:nth-child(4) span {
  color: #687817;
}

.about-facts p {
  max-width: 210px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.5;
}

.capability-grid {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.flip-card {
  position: relative;
  border-radius: var(--radius-md);
  cursor: pointer;
  outline: none;
  perspective: 1400px;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.flip-card:hover {
  filter: drop-shadow(0 14px 24px rgba(11, 15, 20, 0.14));
  transform: translateY(-3px);
}

.flip-card:focus-visible {
  box-shadow:
    0 0 0 3px #f7f5ed,
    0 0 0 6px #829520;
}

.capstone-flip-card:focus-visible {
  box-shadow:
    0 0 0 3px #0b0f14,
    0 0 0 6px var(--lime);
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.22, 0.7, 0.25, 1);
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f7f5ed;
  backface-visibility: hidden;
  flex-direction: column;
  -webkit-backface-visibility: hidden;
}

.flip-card-back {
  background: var(--white);
  transform: rotateY(180deg);
}

.capability-flip-card {
  height: 370px;
}

.card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.section-icon,
.credential-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
}

.section-icon {
  width: 44px;
  height: 44px;
}

.section-icon svg,
.credential-icon svg,
.accordion-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.section-icon svg {
  width: 22px;
  height: 22px;
}

.section-icon-light {
  border: 1px solid rgba(16, 21, 27, 0.13);
  background: rgba(16, 21, 27, 0.035);
  color: #687817;
}

.section-icon-dark {
  border: 1px solid rgba(211, 242, 91, 0.18);
  background: rgba(211, 242, 91, 0.07);
  color: var(--lime);
}

.card-number,
.project-index {
  color: #8a9298;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.capability-flip-card h3 {
  margin: 42px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.capability-flip-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.7;
}

.flip-card-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.flip-card-preview span {
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(16, 21, 27, 0.055);
  color: #4f5962;
  font-size: 11px;
  font-weight: 700;
}

.flip-card-label {
  color: #687817 !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.flip-card-back h3 {
  margin-top: 12px;
}

.capability-output {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.capability-output strong {
  margin-bottom: 3px;
  color: #687817;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-output span {
  position: relative;
  padding-left: 16px;
  color: #4f5962;
  font-size: 12px;
  font-weight: 700;
}

.capability-output span::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #829520;
  content: "";
}

.projects-section {
  background: #0b0f14;
}

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

.project-card {
  position: relative;
  display: flex;
  min-height: 490px;
  overflow: hidden;
  padding: 36px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: #151b22;
}

.project-featured {
  min-height: 690px;
}

.project-index {
  position: absolute;
  top: 37px;
  right: 38px;
}

.project-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: 58%;
  align-items: flex-start;
  flex-direction: column;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.project-meta span {
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #aeb6bf;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card h3 {
  max-width: 620px;
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(31px, 4vw, 48px);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.project-card p {
  max-width: 620px;
  margin: 0;
  color: #9ca5af;
}

.project-details {
  display: grid;
  margin-top: 32px;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.project-details strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-details p {
  font-size: 13px;
}

.project-evidence {
  max-width: 620px;
  margin-top: 22px;
  padding: 16px 18px;
  border-left: 2px solid var(--lime);
  border-radius: 0 12px 12px 0;
  background: rgba(211, 242, 91, 0.06);
}

.project-evidence span {
  display: block;
  margin-bottom: 5px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-evidence p {
  color: #aeb6bf;
  font-size: 12px;
}

.project-proof-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.project-proof-list p {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  line-height: 1.6;
}

.project-proof-list strong {
  color: var(--white);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 30px;
}

.tag-list span {
  padding: 6px 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.065);
  color: #bec5cc;
  font-size: 10px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}

.project-link span {
  transition: transform 160ms ease;
}

.project-link:hover span {
  transform: translate(3px, -3px);
}

.project-art {
  position: absolute;
  right: -35px;
  bottom: -20px;
  display: grid;
  width: 44%;
  height: 75%;
  place-items: center;
}

.qa-art {
  background: radial-gradient(circle, rgba(211, 242, 91, 0.18), transparent 62%);
}

.browser-frame {
  width: 92%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(7, 10, 13, 0.82);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  transform: rotate(-4deg);
}

.browser-bar {
  display: flex;
  gap: 5px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #515b64;
}

.browser-bar i:first-child {
  background: var(--coral);
}

.browser-bar i:nth-child(2) {
  background: #f2bf55;
}

.browser-bar i:nth-child(3) {
  background: var(--lime);
}

.test-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line-dark);
  color: #aeb7bf;
  font-size: 12px;
}

.test-row b {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(211, 242, 91, 0.12);
  color: var(--lime);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.test-progress {
  height: 7px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.test-progress span {
  display: block;
  width: 88%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--blue));
}

.project-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.project-pair .project-content {
  width: 100%;
}

.project-pair .project-card:first-child {
  background:
    radial-gradient(circle at 80% 90%, rgba(133, 167, 255, 0.15), transparent 34%),
    #151b22;
}

.process-card {
  background:
    radial-gradient(circle at 80% 90%, rgba(255, 121, 109, 0.14), transparent 34%),
    #151b22;
}

.mini-chart {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  width: 190px;
  height: 112px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 15px 0;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.mini-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(var(--blue), rgba(133, 167, 255, 0.25));
}

.process-flow {
  position: absolute;
  right: 34px;
  bottom: 44px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-flow span {
  flex: 1;
  padding: 10px 8px;
  border: 1px solid rgba(255, 121, 109, 0.3);
  border-radius: 9px;
  background: rgba(255, 121, 109, 0.07);
  color: #e5b5af;
  font-size: 10px;
  text-align: center;
}

.process-flow i {
  color: var(--coral);
  font-style: normal;
}

.project-summary-grid {
  display: grid;
  margin-top: -16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-summary-card {
  position: relative;
  display: flex;
  min-height: 455px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(133, 167, 255, 0.1), transparent 32%),
    #141a21;
  flex-direction: column;
}

.project-summary-card::before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  content: "";
}

.project-summary-process::before {
  background: linear-gradient(90deg, var(--coral), transparent);
}

.project-summary-bi::before {
  background: linear-gradient(90deg, var(--blue), transparent);
}

.project-summary-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.project-summary-topline span,
.project-summary-topline p {
  margin: 0;
  color: #89939d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-summary-topline span {
  color: var(--lime);
}

.project-summary-card h3 {
  max-width: 520px;
  margin: 30px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 2.5vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.project-summary-card > p {
  margin: 0;
  color: #a7b0b8;
  font-size: 14px;
  line-height: 1.7;
}

.project-deliverables {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(211, 242, 91, 0.17);
  border-radius: 15px;
  background: rgba(211, 242, 91, 0.045);
}

.project-deliverables > strong {
  display: block;
  margin-bottom: 13px;
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-deliverables ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.project-deliverables li {
  position: relative;
  padding-left: 17px;
  color: #bac2ca;
  font-size: 12px;
  line-height: 1.5;
}

.project-deliverables li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.project-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.project-summary-actions button,
.project-summary-actions a,
.project-detail-toolbar button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 15px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.project-summary-actions button {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.project-summary-actions button:hover,
.project-summary-actions a:hover,
.project-detail-toolbar button:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

.project-summary-actions button:hover {
  background: #e0ff6a;
  color: var(--ink);
}

.case-study-list {
  display: grid;
  margin-top: 28px;
  gap: 28px;
}

.case-study-list[hidden],
.case-study[hidden] {
  display: none;
}

.project-detail-toolbar {
  display: flex;
  justify-content: flex-end;
}

.project-detail-toolbar button {
  border-color: rgba(211, 242, 91, 0.35);
  color: var(--lime);
}

.case-study {
  padding: 42px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 94% 3%, rgba(133, 167, 255, 0.08), transparent 25%),
    #141a21;
  scroll-margin-top: 105px;
}

.case-study:nth-of-type(2) {
  background:
    radial-gradient(circle at 94% 3%, rgba(133, 167, 255, 0.11), transparent 25%),
    #141a21;
}

.case-study:nth-of-type(3) {
  background:
    radial-gradient(circle at 94% 3%, rgba(255, 121, 109, 0.09), transparent 25%),
    #141a21;
}

.case-study:nth-of-type(4) {
  background:
    radial-gradient(circle at 94% 3%, rgba(211, 242, 91, 0.075), transparent 25%),
    #141a21;
}

.case-study-header {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
}

.case-study-header .project-meta {
  margin-bottom: 20px;
}

.case-study-number {
  margin: 0 0 9px;
  color: #727e88;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-study h3 {
  max-width: 800px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.case-study-lede {
  max-width: 720px;
  margin: 19px 0 0;
  color: #a6afb8;
  font-size: 16px;
}

.case-study-repo {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.case-study-repo:hover {
  border-color: var(--lime);
  color: var(--lime);
  transform: translateY(-2px);
}

.case-study-actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 9px;
}

.case-study-resume {
  border-color: rgba(211, 242, 91, 0.25);
  color: var(--lime);
}

.case-study-metrics {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: repeat(4, 1fr);
}

.case-study-format {
  display: grid;
  margin: 10px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
}

.case-format-label {
  margin: 30px 0 0;
  color: #717d87;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.case-study-format div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.case-study-format div:nth-child(4n) {
  border-right: 0;
}

.case-study-format div:nth-child(-n + 4) {
  border-top: 1px solid var(--line-dark);
}

.case-study-format dt {
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.case-study-format dd {
  margin: 0;
  color: #8f9aa4;
  font-size: 11px;
  line-height: 1.55;
}

.case-study-metrics div {
  min-height: 108px;
  padding: 22px 20px;
  border-right: 1px solid var(--line-dark);
}

.case-study-metrics div:last-child {
  border-right: 0;
}

.case-study-metrics strong {
  display: block;
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.case-study-metrics span {
  display: block;
  max-width: 145px;
  margin-top: 8px;
  color: #7f8993;
  font-size: 10px;
  line-height: 1.4;
}

.case-study-layout {
  display: grid;
  align-items: start;
  margin-top: 38px;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
}

.case-study-copy {
  min-width: 0;
}

.case-study-block {
  margin: 0;
}

.case-study-block + .case-study-block {
  margin-top: 26px;
}

.case-study-block h4 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-study-block p {
  margin: 0;
  color: #9da7b0;
  font-size: 14px;
}

.case-study-block ul,
.finding-panel ul,
.analytics-subprojects ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-study-block li,
.finding-panel li,
.analytics-subprojects li {
  position: relative;
  padding-left: 15px;
  color: #98a3ad;
  font-size: 12px;
  line-height: 1.55;
}

.case-study-block li::before,
.finding-panel li::before,
.analytics-subprojects li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.case-study-columns {
  display: grid;
  margin-top: 27px;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.finding-panel {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(211, 242, 91, 0.18);
  border-radius: 16px;
  background: rgba(211, 242, 91, 0.055);
}

.finding-panel-blue {
  border-color: rgba(133, 167, 255, 0.2);
  background: rgba(133, 167, 255, 0.06);
}

.finding-panel-coral {
  border-color: rgba(255, 121, 109, 0.2);
  background: rgba(255, 121, 109, 0.055);
}

.finding-label {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finding-panel-blue .finding-label {
  color: var(--blue);
}

.finding-panel-coral .finding-label {
  color: var(--coral);
}

.finding-panel p:not(.finding-label) {
  margin: 0;
  color: #aab3bc;
  font-size: 13px;
}

.finding-panel strong {
  color: var(--white);
}

.scope-note {
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 1px solid #53606b;
  color: #818c96;
  font-size: 11px;
}

.scope-note strong {
  color: #b9c1c8;
}

.case-study .tag-list {
  margin-top: 25px;
  padding-top: 0;
}

.visible-deliverables {
  margin-top: 25px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.visible-deliverables h4 {
  margin: 0 0 15px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.visible-deliverables ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
  list-style: none;
}

.visible-deliverables li {
  position: relative;
  padding-left: 15px;
  color: #9ca6af;
  font-size: 11px;
}

.visible-deliverables li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.artifact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.artifact-links a,
.analytics-subprojects a {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(211, 242, 91, 0.45);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
}

.snapshot-gallery {
  display: grid;
  min-width: 0;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.chart-snapshot-gallery {
  grid-template-columns: 1fr;
}

.process-snapshot-gallery {
  grid-template-columns: 1fr 1fr;
}

.snapshot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: #0c1116;
}

.snapshot-wide {
  grid-column: 1 / -1;
}

.snapshot-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #0a0e12;
  cursor: zoom-in;
  overflow: hidden;
}

.snapshot-button img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  transition:
    opacity 160ms ease,
    transform 220ms ease;
}

.snapshot-button:hover img {
  opacity: 0.92;
  transform: scale(1.012);
}

.qa-snapshot-gallery .snapshot-wide img {
  aspect-ratio: 3.75 / 1;
}

.qa-snapshot-gallery .snapshot:not(.snapshot-wide) img {
  aspect-ratio: 1.7 / 1;
}

.chart-snapshot-gallery img {
  aspect-ratio: 1.67 / 1;
}

.process-snapshot-gallery img {
  height: 540px;
  object-fit: contain;
  padding: 12px;
  background: #eef0f2;
}

.dashboard-snapshot-gallery {
  margin-top: 32px;
}

.dashboard-snapshot-gallery img {
  aspect-ratio: 1.6 / 1;
}

.snapshot figcaption {
  min-height: 66px;
  padding: 13px 15px;
  color: #89949e;
  font-size: 10px;
  line-height: 1.45;
}

.snapshot figcaption span {
  display: block;
  margin-bottom: 3px;
  color: #d3dae0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.analytics-subprojects {
  display: grid;
  margin-top: 38px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.analytics-subprojects section {
  padding: 25px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.subproject-label {
  margin: 0 0 12px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.analytics-subprojects h4 {
  margin: 0 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.analytics-subprojects section > p:not(.subproject-label) {
  margin: 0 0 17px;
  color: #9ba5ae;
  font-size: 13px;
}

.analytics-subprojects ul {
  margin-bottom: 20px;
}

.analytics-tag-list {
  margin-top: 25px;
}

.confidential-work {
  margin-top: 80px;
}

.confidential-work-heading,
.credentials-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 50px;
}

.confidential-work-heading h3,
.credentials-heading h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  letter-spacing: -0.045em;
  line-height: 1.15;
}

.confidential-work-heading > p,
.credentials-heading > p {
  margin: 0;
  color: #8f9aa4;
  font-size: 13px;
}

.confidential-work-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.confidential-work-grid article {
  position: relative;
  min-height: 470px;
  padding: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(133, 167, 255, 0.1), transparent 34%),
    #141a21;
}

.confidential-work-grid .capstone-flip-card {
  height: 440px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.capstone-flip-card .flip-card-face {
  padding: 32px;
  border-color: var(--line-dark);
  background:
    radial-gradient(circle at 100% 0, rgba(133, 167, 255, 0.1), transparent 34%),
    #141a21;
  color: var(--white);
}

.capstone-flip-card .flip-card-back {
  background:
    radial-gradient(circle at 0 100%, rgba(211, 242, 91, 0.07), transparent 34%),
    #182029;
}

.capstone-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.capstone-card-topline span,
.capstone-card-topline p {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.capstone-card-topline span {
  color: var(--lime);
}

.capstone-card-topline p {
  color: #89939d;
}

.confidential-work-grid h4 {
  margin: 0 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.confidential-work-grid .section-icon {
  margin-bottom: 20px;
}

.confidential-work-grid article > p {
  margin: 0;
  color: #9ba5ae;
  font-size: 14px;
  line-height: 1.65;
}

.capstone-flip-card .flip-card-face > p {
  margin: 0;
  color: #aab3bc;
  font-size: 14px;
  line-height: 1.65;
}

.capstone-front-proof {
  margin-top: 22px !important;
  padding: 16px 18px;
  border: 1px solid rgba(211, 242, 91, 0.22);
  border-radius: 13px;
  background: rgba(211, 242, 91, 0.07);
  color: #dbe2e8 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.capstone-front-proof strong,
.capstone-proof strong {
  color: var(--lime);
  font-size: 16px;
}

.capstone-output-title {
  display: block;
  margin-top: 24px;
  color: var(--lime);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.confidential-work-grid ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.confidential-work-grid li {
  position: relative;
  padding-left: 16px;
  color: #b2bac2;
  font-size: 13px;
  line-height: 1.5;
}

.confidential-work-grid li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.confidential-work-grid article > .capstone-proof {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: #9ba5ae;
  font-size: 12px;
}

.capstone-flip-card .flip-card-back > .capstone-proof {
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(211, 242, 91, 0.18);
  border-radius: 13px;
  background: rgba(211, 242, 91, 0.055);
  color: #d2dae1;
  font-size: 14px;
  line-height: 1.55;
}

.capstone-proof strong {
  color: var(--white);
}

.project-lightbox {
  width: min(94vw, 1440px);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  background: #090d12;
  color: var(--white);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.6);
}

.deliverables-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(211, 242, 91, 0.08), transparent 24%),
    #11171e;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.deliverable-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 27px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.deliverable-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(211, 242, 91, 0.19);
  border-radius: 13px;
  background: rgba(211, 242, 91, 0.07);
  color: var(--lime);
}

.deliverable-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.deliverable-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.deliverable-card p {
  margin: 0;
  color: #97a1aa;
  font-size: 12px;
}

.deliverable-card small {
  display: block;
  margin-top: 18px;
  color: #6f7a84;
  font-size: 10px;
  line-height: 1.45;
}

.deliverable-link {
  align-self: flex-start;
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(211, 242, 91, 0.45);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
}

.deliverable-link.is-placeholder {
  border-bottom-style: dashed;
  color: #9ca96b;
}

.project-lightbox::backdrop {
  background: rgba(2, 4, 7, 0.88);
  backdrop-filter: blur(5px);
}

.project-lightbox figure {
  display: grid;
  max-height: 92vh;
  margin: 0;
  padding: 52px 22px 20px;
  grid-template-rows: minmax(0, 1fr) auto;
}

.project-lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
}

.project-lightbox figcaption {
  max-width: 900px;
  margin: 15px auto 0;
  color: #a7b0b9;
  font-size: 12px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: #151b22;
  color: var(--white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.skills-layout {
  display: grid;
  gap: 34px;
}

#skills {
  padding: 100px 0;
}

.skills-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(340px, 0.95fr) minmax(260px, 0.65fr) minmax(280px, 0.7fr);
  gap: 34px;
}

.skills-intro h2 {
  max-width: 520px;
  margin-bottom: 0;
  font-size: clamp(38px, 4.6vw, 64px);
}

.skills-summary {
  margin: 0;
  color: var(--muted-dark);
}

.skills-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
}

.skills-note span {
  color: #758716;
}

.skills-note p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.skill-card {
  min-height: 285px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.4);
}

.skill-card-heading {
  display: grid;
  align-items: center;
  padding-bottom: 18px;
  grid-template-columns: auto 1fr;
  gap: 13px;
  border-bottom: 1px solid var(--line);
}

.skill-card-heading small {
  display: block;
  margin-bottom: 3px;
  color: #8b9499;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.skill-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.skill-card ul {
  display: grid;
  margin: 19px 0 0;
  padding: 0;
  grid-template-columns: 1fr;
  gap: 9px;
  list-style: none;
}

.skill-card li {
  position: relative;
  padding-left: 16px;
  color: var(--muted-dark);
  font-size: 12px;
  line-height: 1.5;
}

.skill-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #829520;
  content: "";
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  margin: 0;
}

.accordion-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.accordion-item button span {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.accordion-item button b {
  color: #939b9f;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.accordion-icon {
  width: 36px;
  height: 36px;
  padding: 8px;
  border: 1px solid rgba(16, 21, 27, 0.12);
  border-radius: 11px;
  background: rgba(16, 21, 27, 0.035);
  color: #687817;
}

.accordion-item button i {
  position: relative;
  width: 20px;
  height: 20px;
}

.accordion-item button i::before,
.accordion-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion-panel {
  padding: 0 0 32px 58px;
}

.accordion-panel[hidden] {
  display: none;
}

.accordion-panel ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  list-style: none;
}

.accordion-panel li {
  position: relative;
  padding-left: 15px;
  color: var(--muted-dark);
  font-size: 14px;
}

.accordion-panel li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #829520;
  content: "";
}

.experience-section {
  background: #0e1319;
}

.timeline {
  margin-top: 20px;
}

.timeline-item {
  display: grid;
  min-height: 310px;
  grid-template-columns: 220px 1px minmax(0, 1fr);
  gap: 45px;
}

.timeline-date {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding-top: 5px;
  text-align: right;
}

.timeline-date span {
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.timeline-date small {
  margin-top: 6px;
  color: #6f7984;
  font-size: 11px;
}

.timeline-marker {
  position: relative;
  background: var(--line-dark);
}

.timeline-marker::before {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 11px;
  height: 11px;
  border: 3px solid #0e1319;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 1px var(--lime);
  content: "";
  transform: translateX(-50%);
}

.timeline-content {
  max-width: 760px;
  padding-bottom: 74px;
}

.timeline-company {
  margin: 0 0 6px;
  color: #7e8994;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin: 0 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.timeline-domain {
  display: inline-flex;
  margin: -5px 0 22px;
  padding: 6px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: #aeb7bf;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-content ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-content li {
  position: relative;
  padding-left: 18px;
  color: #9ba5af;
  font-size: 14px;
}

.timeline-content li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4f5b65;
  content: "";
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.experience-tags span {
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #aeb7bf;
  font-size: 9px;
  font-weight: 600;
}

.volunteer-block {
  display: grid;
  margin-top: 34px;
  padding: 44px;
  border: 1px solid rgba(211, 242, 91, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 6% 10%, rgba(211, 242, 91, 0.1), transparent 28%),
    #151b22;
  grid-template-columns: 185px minmax(0, 1fr);
  gap: 46px;
}

.volunteer-stat {
  display: grid;
  align-content: center;
  min-height: 185px;
  padding: 25px;
  border: 1px solid rgba(211, 242, 91, 0.18);
  border-radius: 20px;
  background: rgba(211, 242, 91, 0.055);
}

.volunteer-stat .section-icon {
  margin-bottom: 28px;
}

.volunteer-stat strong {
  color: var(--lime);
  font-family: "Manrope", sans-serif;
  font-size: 54px;
  letter-spacing: -0.07em;
  line-height: 1;
}

.volunteer-stat span {
  margin-top: 9px;
  color: #aab4bd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.volunteer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 18px;
  color: #87929c;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.volunteer-content h3 {
  margin: 0 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.volunteer-organization {
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
}

.volunteer-content > p:not(.kicker, .volunteer-organization) {
  max-width: 760px;
  margin: 0;
  color: #9ba5af;
  font-size: 14px;
}

.volunteer-content ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.volunteer-content li {
  position: relative;
  padding-left: 18px;
  color: #9ba5af;
  font-size: 13px;
}

.volunteer-content li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.linkedin-proof-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(211, 242, 91, 0.45);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
}

.brand-link-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.education-block {
  display: grid;
  margin-top: 30px;
  padding: 50px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: #151b22;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.education-heading h3 {
  max-width: 400px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

.education-list {
  border-top: 1px solid var(--line-dark);
}

.education-list article {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 110px 1fr;
  gap: 20px;
}

.education-list article > span {
  padding-top: 5px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 700;
}

.education-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.education-detail .section-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.education-detail .section-icon svg {
  width: 19px;
  height: 19px;
}

.education-list h4 {
  margin: 0 0 5px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.education-list p {
  margin: 0;
  color: #8f99a3;
  font-size: 13px;
}

.credentials-block {
  margin-top: 30px;
  padding: 50px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: #11171e;
}

.credentials-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.credentials-grid article {
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.credential-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid rgba(211, 242, 91, 0.18);
  background: rgba(211, 242, 91, 0.07);
  color: var(--lime);
}

.credential-icon svg {
  width: 21px;
  height: 21px;
}

.credential-logo {
  overflow: hidden;
}

.credential-logo svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.credential-icon-wide {
  width: 72px;
}

.credential-icon-wide svg {
  width: 62px;
  height: 34px;
}

.credential-logo text {
  fill: currentColor;
  stroke: none;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.35px;
}

.credential-logo .logo-mastercard-red {
  fill: #eb001b;
  stroke: none;
}

.credential-logo .logo-mastercard-yellow {
  fill: #f79e1b;
  stroke: none;
}

.credential-logo .logo-mastercard-overlap {
  fill: #ff5f00;
  stroke: none;
}

.credential-date {
  display: block;
  margin-bottom: 20px;
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credentials-grid h4 {
  margin: 0 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.credentials-grid p {
  margin: 0;
  color: #a2acb5;
  font-size: 12px;
}

.credentials-grid small {
  display: block;
  margin-top: 18px;
  color: #77838e;
  font-size: 10px;
  line-height: 1.5;
}

.contact-section {
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
}

.contact-section::before {
  position: absolute;
  top: -310px;
  right: -180px;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(16, 21, 27, 0.11);
  border-radius: 50%;
  content: "";
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(250px, 0.6fr);
  gap: 90px;
}

.contact-card .kicker {
  color: #5d6d0f;
}

.contact-card h2 {
  max-width: 760px;
}

.contact-copy > p:not(.kicker) {
  max-width: 600px;
  margin: 25px 0 0;
  color: #53600e;
  font-size: 17px;
}

.contact-copy > p.response-note {
  display: inline-flex;
  margin-top: 15px;
  padding: 6px 10px;
  border: 1px solid rgba(16, 21, 27, 0.22);
  border-radius: 999px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 34px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #202832;
}

.contact-phone {
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(16, 21, 27, 0.4);
  font-size: 14px;
  font-weight: 700;
}

.contact-links {
  align-self: center;
  border-top: 1px solid rgba(16, 21, 27, 0.18);
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 3px;
  border-bottom: 1px solid rgba(16, 21, 27, 0.18);
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.contact-link-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.contact-link-label svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(16, 21, 27, 0.2);
  border-radius: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-link-label .social-brand-icon {
  fill: currentColor;
  stroke: none;
}

.contact-link-label .linkedin-brand-icon {
  color: #0a66c2;
}

.contact-link-label .github-brand-icon {
  color: #181717;
}

.contact-links i {
  font-style: normal;
  transition: transform 160ms ease;
}

.contact-links a:hover i {
  transform: translate(3px, -3px);
}

.site-footer {
  background: #080b0f;
  color: #68737e;
  font-size: 11px;
}

.site-footer .shell {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #a4acb4;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero {
    padding-top: 155px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .floating-card-one {
    right: 10%;
  }

  .floating-card-two {
    left: 10%;
  }

  .about-grid,
  .skills-layout,
  .targeting-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .skills-intro {
    grid-template-columns: 1fr 1fr;
  }

  .skills-note {
    grid-column: 1 / -1;
  }

  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capability-grid,
  .confidential-work-grid {
    grid-template-columns: 1fr;
  }

  .capability-flip-card {
    height: 350px;
  }

  .confidential-work-grid .capstone-flip-card {
    height: 430px;
  }

  .skills-intro {
    position: static;
  }

  .project-featured .project-content {
    width: 70%;
  }

  .project-art {
    right: -80px;
    width: 43%;
    opacity: 0.75;
  }

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

  .case-study-layout {
    grid-template-columns: 1fr;
  }

  .case-study-copy {
    max-width: 780px;
  }

  .case-study-format {
    grid-template-columns: 1fr 1fr;
  }

  .case-study-format div {
    border-top: 0;
    border-right: 1px solid var(--line-dark);
  }

  .case-study-format div:nth-child(2n) {
    border-right: 0;
  }

  .case-study-format div:nth-child(-n + 2) {
    border-top: 1px solid var(--line-dark);
  }

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

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

  .section-heading-row {
    gap: 40px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 24px;
  }

  .section {
    padding: 88px 0;
  }

  main > section[id] {
    scroll-margin-top: 74px;
  }

  .site-header {
    background: rgba(11, 15, 20, 0.91);
    backdrop-filter: blur(16px);
  }

  .nav {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 36px 24px;
    background: #0b0f14;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-links.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: "Manrope", sans-serif;
    font-size: 25px;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-links .nav-cta {
    width: auto;
    margin-top: 24px;
    padding: 11px 19px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 15px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(45px, 13vw, 68px);
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .orbit-one {
    width: min(112vw, 450px);
    height: min(112vw, 450px);
  }

  .orbit-two {
    width: min(83vw, 335px);
    height: min(83vw, 335px);
  }

  .profile-card {
    width: min(340px, 88%);
    padding: 10px 10px 22px;
  }

  .profile-photo-wrap {
    height: 300px;
  }

  .monogram {
    width: 130px;
    height: 145px;
    font-size: 63px;
  }

  .floating-card {
    width: 183px;
  }

  .floating-card-one {
    top: 45px;
    right: -4px;
  }

  .floating-card-two {
    bottom: 42px;
    left: -4px;
  }

  .tool-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .tool-strip div {
    justify-content: flex-start;
  }

  .targeting-section {
    padding: 68px 0;
  }

  .targeting-grid {
    gap: 42px;
  }

  .targeting-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .targeting-row strong {
    padding-top: 0;
  }

  .section-heading,
  .section-heading-row {
    margin-bottom: 50px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .skills-intro h2,
  .contact-card h2 {
    font-size: clamp(37px, 10vw, 54px);
  }

  .about-grid {
    gap: 55px;
  }

  .about-facts {
    grid-template-columns: 1fr 1fr;
  }

  .about-facts article {
    min-height: 170px;
    padding: 20px;
  }

  .about-facts span {
    margin-bottom: 22px;
    font-size: 31px;
  }

  .capability-grid {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .capability-flip-card {
    height: 455px;
  }

  .capability-flip-card h3 {
    margin-top: 34px;
  }

  .project-card,
  .project-featured {
    min-height: 520px;
    padding: 26px;
  }

  .project-featured {
    min-height: 910px;
  }

  .project-content,
  .project-featured .project-content {
    width: 100%;
  }

  .project-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-art {
    right: -8%;
    bottom: -12px;
    width: 85%;
    height: 300px;
    opacity: 0.9;
  }

  .project-pair .project-card {
    min-height: 550px;
  }

  .project-summary-grid {
    margin-top: 0;
    grid-template-columns: 1fr;
  }

  .project-summary-card {
    min-height: 0;
  }

  .skills-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .skills-note {
    grid-column: auto;
  }

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

  .case-study {
    padding: 27px;
  }

  .case-study-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .case-study-repo {
    justify-self: start;
  }

  .case-study-actions {
    align-items: flex-start;
  }

  .case-study-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .case-study-metrics div:nth-child(2) {
    border-right: 0;
  }

  .case-study-metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .case-study-columns,
  .analytics-subprojects {
    grid-template-columns: 1fr;
  }

  .case-study-format {
    grid-template-columns: 1fr;
  }

  .case-study-format div,
  .case-study-format div:nth-child(2n),
  .case-study-format div:nth-child(4n) {
    border-top: 0;
    border-right: 0;
  }

  .case-study-format div:first-child {
    border-top: 1px solid var(--line-dark);
  }

  .visible-deliverables ul {
    grid-template-columns: 1fr;
  }

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

  .deliverable-card {
    min-height: 250px;
  }

  .confidential-work {
    padding: 0;
  }

  .confidential-work-heading,
  .credentials-heading {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .confidential-work-grid .capstone-flip-card {
    height: 470px;
  }

  .snapshot-gallery:not(.process-snapshot-gallery) {
    grid-template-columns: 1fr;
  }

  .snapshot-wide {
    grid-column: auto;
  }

  .qa-snapshot-gallery .snapshot-wide img {
    aspect-ratio: 1600 / 425;
  }

  .qa-snapshot-gallery .snapshot:nth-child(2) img {
    aspect-ratio: 1214 / 492;
  }

  .qa-snapshot-gallery .snapshot:nth-child(3) img {
    aspect-ratio: 1000 / 600;
  }

  .process-snapshot-gallery img {
    height: 460px;
  }

  .mini-chart {
    bottom: 32px;
    left: 26px;
  }

  .process-flow {
    right: 26px;
    bottom: 35px;
    left: 26px;
  }

  .accordion-item button span {
    gap: 15px;
    font-size: 19px;
  }

  .accordion-panel {
    padding-left: 0;
  }

  .accordion-panel ul {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    min-height: 0;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 20px;
  }

  .timeline-date {
    align-items: flex-start;
    padding: 0 0 18px 40px;
    grid-column: 1 / -1;
    text-align: left;
  }

  .timeline-marker {
    grid-column: 1;
    grid-row: 2;
  }

  .timeline-content {
    padding-bottom: 65px;
    grid-column: 2;
    grid-row: 2;
  }

  .volunteer-block {
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .volunteer-stat {
    min-height: 0;
  }

  .education-block {
    padding: 28px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .education-list article {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .credentials-block {
    padding: 28px;
  }

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

  .contact-card {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .site-footer .shell {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 28px 0;
  }
}

@media (max-width: 430px) {
  .brand-copy {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof-grid div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-proof-grid div:last-child {
    border-bottom: 0;
  }

  .hero-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .profile-role strong {
    font-size: 27px;
  }

  .profile-role span {
    font-size: 10px;
  }

  .capability-flip-card {
    height: 490px;
  }

  .floating-card-one {
    top: 25px;
  }

  .floating-card-two {
    bottom: 25px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts article {
    min-height: 150px;
  }

  .project-featured {
    min-height: 970px;
  }

  .project-card h3 {
    font-size: 31px;
  }

  .case-study h3 {
    font-size: 32px;
  }

  .confidential-work {
    padding: 0;
  }

  .confidential-work-heading h3,
  .credentials-heading h3 {
    font-size: 28px;
  }

  .confidential-work-grid article {
    padding: 22px;
  }

  .confidential-work-grid .capstone-flip-card {
    height: 525px;
    padding: 0;
  }

  .skill-card {
    padding: 22px;
  }

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

  .volunteer-block,
  .credentials-block {
    padding: 22px;
  }

  .volunteer-content h3 {
    font-size: 26px;
  }

  .volunteer-stat strong {
    font-size: 46px;
  }

  .case-study-metrics div {
    min-height: 95px;
    padding: 18px 15px;
  }

  .case-study-metrics strong {
    font-size: 23px;
  }

  .process-snapshot-gallery {
    gap: 8px;
  }

  .process-snapshot-gallery img {
    height: 390px;
    padding: 7px;
  }

  .project-pair .project-card {
    min-height: 590px;
  }

  .process-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .process-flow i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
