@keyframes statusPulse {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}
@keyframes cursorBlink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  to {
    opacity: 0;
  }
}
@keyframes scrollNudge {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
@keyframes panelPush {
  0% {
    opacity: 0;
    clip-path: inset(0 0 88%0);
    transform: translateY(-54px);
  }
  68% {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0);
  }
}
@keyframes itemDrop {
  0% {
    opacity: 0;
    transform: translateY(-35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes signalDrift {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(140vw);
  }
}
@keyframes stateScan {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(350%);
  }
}
@keyframes liveTrace {
  0% {
    translate: 0 0;
  }
  to {
    translate: 46px 0;
  }
}
@keyframes drawRoute {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes followRoute {
  0% {
    offset-distance: 0;
    opacity: 0;
  }
  8%,
  92% {
    opacity: 1;
  }
  to {
    offset-distance: 100%;
    opacity: 0;
  }
}
:root {
  --ink: #0a0a0c;
  --paper: #f2eee3;
  --white: #fffdf8;
  --blue: #2547ff;
  --orange: #ff5b35;
  --cyan: #70e4ff;
  --muted-light: #aaa8a4;
  --line-dark: rgba(8, 8, 10, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --wide: 1240px;
  --narrow: 1040px;
  --robot-y: 0px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background-color: #080a0b;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
}
::selection {
  background: var(--orange);
  color: var(--ink);
}
a {
  color: inherit;
  text-underline-offset: 0.2em;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
}
.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 500;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus {
  top: 1rem;
}
.page-wrap {
  position: relative;
  z-index: 1;
  overflow: clip;
}
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1.2rem, 3vw, 3rem);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(242, 238, 227, 0.93);
  backdrop-filter: blur(18px);
}
.mini-mark,
.nav-links a {
  position: relative;
  font-family: "Space Mono", monospace;
  text-decoration: none;
}
.mini-mark {
  z-index: 1;
  font-size: 0.76rem;
  font-weight: 700;
}
.mini-mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  transform: rotate(-3deg) scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.mini-mark:hover::before {
  transform: rotate(-3deg) scaleX(1);
}
.nav-links {
  justify-self: center;
  display: flex;
}
.nav-links a {
  padding: 1.6rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1.2rem;
  height: 2px;
  transition: right 180ms ease;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  right: 0;
}
.avatar-wrap figcaption,
.clock {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
}
.clock {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line-dark);
}
.clock svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.hero,
.hero-inner {
  position: relative;
  display: grid;
}
.hero {
  min-height: 100svh;
  place-items: center;
  padding: 9rem clamp(1.5rem, 4vw, 4rem) 6rem;
  overflow: hidden;
  background: var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  background: var(--blue);
}
.hero::after {
  position: absolute;
  left: clamp(1rem, 2.8vw, 3rem);
  bottom: 4rem;
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.hero-inner {
  z-index: 2;
  width: min(100%, var(--wide));
  grid-template-columns: minmax(0, 1.35fr) 290px;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.hero-text {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.avatar-wrap {
  order: 2;
  z-index: 2;
  margin: 0;
  align-self: center;
  text-align: center;
  transform: rotate(2.2deg);
}
.avatar-wrap,
.photo-frame,
h1 {
  position: relative;
}
.photo-frame {
  width: 270px;
  height: 330px;
  padding: 8px;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: filter 260ms ease;
}
.photo-frame:hover .avatar {
  filter: grayscale(0);
}
.photo-corner {
  position: absolute;
  width: 24px;
  height: 24px;
}
.photo-corner-one {
  top: -8px;
  left: -8px;
  border-top: 2px solid;
  border-left: 2px solid;
}
.photo-corner-two {
  right: -8px;
  bottom: -8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}
.photo-index {
  position: absolute;
  right: 15px;
  bottom: 15px;
  padding: 0.28rem 0.45rem;
  background: var(--ink);
  color: var(--cyan);
  font-family: "Space Mono", monospace;
  font-size: 0.5rem;
}
.avatar-wrap figcaption {
  display: inline-block;
  margin-top: 1.35rem;
  padding: 0.42rem 0.75rem;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: rotate(-4deg);
  border-color: #080a0b;
  background: var(--orange);
}
.hero-load {
  opacity: 0;
  transform: translateY(35px);
}
body.ready .hero-load {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}
body.ready .hero-load-two {
  transition-delay: 110ms;
}
.hero-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.9rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.eyebrow span {
  width: 18px;
  height: 5px;
  background: var(--orange);
  animation: statusPulse 2.2s ease-in-out infinite;
}
h1 {
  width: fit-content;
  margin: 0;
  color: var(--blue);
  font-size: clamp(4rem, 9.4vw, 9.2rem);
  line-height: 0.78;
  letter-spacing: -0.09em;
}
h1::before {
  content: attr(aria-label);
  position: absolute;
  z-index: -1;
  left: 0.035em;
  top: 0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  opacity: 0;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
  -webkit-text-stroke-color: var(--orange);
  opacity: calc(var(--hero-scroll) * 0.28);
  transform: translate(
    calc(var(--hero-scroll) * 1.1em),
    calc(var(--hero-scroll) * 0.08em)
  );
}
h1:hover::before {
  opacity: 0.22;
  transform: translate(0.025em, 0.025em);
}
.eyebrow,
.hero-surname,
.name-cursor {
  font-family: "Space Mono", monospace;
}
.name-cursor {
  font-weight: 400;
  animation: cursorBlink 1s steps(1) infinite;
}
.hero-surname {
  width: fit-content;
  margin: 0.7rem 0 0;
  padding: 0.24rem 0.5rem;
  background: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  gap: 0.4rem;
  padding-top: 0.3rem;
}
.hero-actions a,
.hero-actions button {
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: 0 0;
  cursor: pointer;
}
.hero-actions a:focus-visible,
.hero-actions a:hover,
.hero-actions button:focus-visible,
.hero-actions button:hover {
  background: var(--ink);
  color: var(--white);
}
.hero-actions svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-actions a:first-child svg {
  fill: currentColor;
  stroke: none;
}
.hero-paragraphs {
  max-width: 49rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
.hero-paragraphs p {
  margin: 0;
  min-height: 6.2rem;
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.94rem;
}
.hero-paragraphs p:last-child {
  grid-column: 2;
}
.hero-paragraphs a {
  color: var(--blue);
}
.line-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.scroll-invite {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.3rem;
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  text-decoration: none;
}
.scroll-invite i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  font-style: normal;
  animation: scrollNudge 1.6s ease-in-out infinite;
}
.push-section {
  position: relative;
  min-height: 80vh;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--line-light);
  background: var(--ink);
  color: var(--white);
}
.section-cap {
  width: min(100%, var(--wide));
  height: 54px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted-light);
  font-family: "Space Mono", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-cap i {
  position: relative;
  width: 58px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.section-cap i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 13px;
  height: 2px;
}
.section-shell {
  width: min(100%, var(--narrow));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  opacity: 0;
  transform: translateY(-54px);
  clip-path: inset(0 0 88%0);
}
.wide-shell {
  max-width: var(--wide);
}
.push-section.visible .section-shell {
  animation: panelPush 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.section-heading h2 {
  font-size: clamp(3.7rem, 9vw, 8.8rem);
}
.contact-heading h2,
.section-heading h2 {
  margin: 0;
  line-height: 0.78;
  letter-spacing: -0.08em;
}
.section-heading p {
  margin: 1rem 0 0;
  color: var(--muted-light);
}
.section-code {
  padding: 0.4rem 0.55rem;
  border: 1px solid var(--line-light);
  font-family: "Space Mono", monospace;
  font-size: 0.55rem;
}
.drop-item {
  opacity: 0;
  transform: translateY(-35px);
}
.push-section.visible .drop-item {
  animation: itemDrop 650ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(280ms + var(--delay, 0ms));
}
.project-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-light);
}
.project-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.72fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-bottom: 1px solid var(--line-light);
  perspective: 1200px;
}
.project-item:nth-child(even) {
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.18fr);
}
.project-item:nth-child(even) .project-image {
  order: 2;
}
.project-image {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #19191e;
  color: inherit;
  text-decoration: none;
}
.project-image::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
}
.project-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.8);
  transform: translateY(var(--image-shift, 0px)) translateZ(8px) scale(1.08);
  transition:
    filter 350ms ease,
    transform 550ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-image:hover img {
  filter: grayscale(0) contrast(1.03);
}
.project-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.project-year {
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.project-text h3 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
  transition: color 180ms ease;
}
.project-text p {
  margin: 0.2rem 0;
  color: var(--muted-light);
}
.project-text ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.5rem 0;
  padding: 0;
  list-style: none;
}
.project-link,
.project-text li {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line-light);
  color: var(--muted-light);
  font-family: "Space Mono", monospace;
  font-size: 0.5rem;
}
.project-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.4rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--white);
  background: 0 0;
  color: var(--white);
  font-size: 0.57rem;
  font-weight: 700;
  text-decoration: none;
}
.project-link:hover {
  background: var(--orange);
  color: var(--ink);
}
#skills {
  background: var(--blue);
}
#skills,
#skills .section-cap,
#skills .section-code {
  border-color: rgba(255, 255, 255, 0.28);
}
#skills .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}
#education {
  border-color: var(--line-dark);
  background: var(--paper);
  color: var(--ink);
}
#education .section-cap {
  border-color: var(--line-dark);
  color: #66635d;
}
#education .section-heading p {
  color: #65635e;
}
#education .section-code {
  border-color: var(--line-dark);
  color: var(--blue);
}
.achievement-grid article > span,
.achievement-grid small {
  font-family: "Space Mono", monospace;
  font-size: 0.55rem;
}
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}
.achievement-grid article {
  position: relative;
  min-height: 310px;
  padding: 1.6rem;
  overflow: hidden;
  background: var(--ink);
  transition:
    background 220ms ease,
    color 220ms ease;
}
.achievement-grid article::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.achievement-grid article:hover {
  background: var(--white);
  color: var(--ink);
}
.achievement-grid article:hover::after {
  transform: scale(1);
}
.achievement-grid article > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
}
.achievement-grid small {
  display: block;
  margin-top: 3.2rem;
  color: var(--muted-light);
}
.achievement-grid h3 {
  position: relative;
  z-index: 1;
  max-width: 11ch;
  margin: 0.65rem 0;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.04em;
}
.achievement-grid p {
  position: relative;
  z-index: 1;
  color: var(--muted-light);
  font-size: 0.9rem;
}
.achievement-grid article:hover p,
.achievement-grid article:hover small {
  color: #5c5a55;
}
.contact-section {
  min-height: 100vh;
  border-color: var(--line-dark);
  color: var(--ink);
}
.contact-section .section-cap {
  border-color: var(--line-dark);
  color: rgba(10, 10, 12, 0.65);
}
.contact-section .section-cap i {
  border-color: rgba(10, 10, 12, 0.55);
}
.contact-section .section-cap i::after {
  background: var(--blue);
}
.contact-heading p {
  margin: 0 0 1.2rem;
  font-family: "Space Mono", monospace;
  font-size: 0.65rem;
}
.contact-heading h2 {
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(4.6rem, 12vw, 11rem);
}
.contact-row {
  margin-top: clamp(3rem, 8vw, 7rem);
  display: grid;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.contact-row > div {
  min-width: 0;
  padding: 1.25rem;
  border-right: 1px solid var(--ink);
}
.contact-row > div:last-child {
  border-right: 0;
}
.contact-row p,
footer {
  font-family: "Space Mono", monospace;
  font-size: 0.54rem;
}
.contact-row p {
  margin: 0 0 0.5rem;
  color: #66635d;
}
.contact-row a,
.contact-row span {
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}
.contact-row span {
  color: var(--ink);
}

.contact-row a {
  color: var(--blue);
  font-weight: 700;
}
footer {
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(10, 10, 12, 0.65);
}
footer a {
  color: var(--ink);
  text-decoration: none;
}
.robot-rail {
  position: fixed;
  z-index: 65;
  right: clamp(12px, 1.8vw, 26px);
  top: 12vh;
  width: 72px;
  height: 75vh;
  pointer-events: none;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.28));
}
.ambient-grid span {
  position: absolute;
  background: var(--blue);
}
.scroll-bot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 62px;
  height: 112px;
  transform: translate(-50%, var(--robot-y));
  transition: transform 80ms linear;
}
.ambient-grid,
.pointer-light {
  position: fixed;
  pointer-events: none;
}
.pointer-light {
  z-index: 2;
  top: 0;
  left: 0;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 71, 255, 0.1), transparent 68%);
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 250ms ease;
  will-change: transform;
}
.ambient-grid {
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ambient-grid span {
  width: 22vw;
  height: 6px;
  top: 18%;
  left: -20vw;
  opacity: 0.18;
  animation: signalDrift 14s linear infinite;
}
.ambient-grid span:last-child {
  top: 78%;
  left: auto;
  right: -20vw;
  background: var(--orange);
  animation-direction: reverse;
  animation-duration: 19s;
}
.cursor-dot,
.cursor-ring {
  position: fixed;
  z-index: 400;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  will-change: transform, width, height;
}
.cursor-ring {
  border: 1px solid rgba(255, 255, 255, 0.82);
}
.cursor-ring::after,
.cursor-ring::before {
  background: currentColor;
}
.cursor-ring::before {
  top: 50%;
  left: calc(50% - 4px);
}
.cursor-ring > i:nth-child(1) {
  border-top: 1px solid;
  border-left: 1px solid;
}
.cursor-ring > i:nth-child(2) {
  border-top: 1px solid;
  border-right: 1px solid;
}
.cursor-ring > i:nth-child(3) {
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.cursor-ring > i:nth-child(4) {
  border-left: 1px solid;
  border-bottom: 1px solid;
}
#cursor-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 5px;
  color: currentColor;
  font-size: 0.44rem;
  text-align: center;
  opacity: 0;
}
.cursor-dot {
  transition:
    width 100ms ease,
    height 100ms ease,
    background 150ms ease,
    opacity 150ms ease;
}
body.cursor-ready,
body.cursor-ready a,
body.cursor-ready button {
  cursor: none;
}
.photo-frame[data-tilt]:hover::after,
.project-image[data-tilt]:hover::after,
body.cursor-ready.cursor-visible .cursor-dot,
body.cursor-ready.cursor-visible .cursor-ring,
body.cursor-ready.cursor-visible .pointer-light {
  opacity: 1;
}

.motion-status i::after {
  background: var(--orange);
}
.cursor-ring.is-invert {
  border-color: var(--ink);
}
.cursor-dot.is-invert {
  background: var(--blue);
  box-shadow: none;
}
#cursor-label,
.motion-status {
  font-family: "Space Mono", monospace;
}
.motion-status {
  position: fixed;
  z-index: 70;
  left: 1.4rem;
  bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #777780;
  font-size: 0.47rem;
  pointer-events: none;
}
.motion-status i {
  width: 29px;
  height: 2px;
  overflow: hidden;
  background: #29292f;
}
.motion-status i::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  animation: stateScan 1.4s linear infinite;
}
.motion-status b {
  color: #9a9aa2;
  font-weight: 400;
}
[data-tilt] {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-lift: 0px;
  --shine-x: 50%;
  --shine-y: 50%;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateY(var(--tilt-lift));
  transform-style: preserve-3d;
  transition: transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
[data-tilt]:hover {
  --tilt-lift: -5px;
}
.photo-frame[data-tilt]::after,
.project-image[data-tilt]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--shine-x) var(--shine-y),
    rgba(255, 255, 255, 0.13),
    transparent 30%
  );
  opacity: 0;
  transition: opacity 180ms ease;
}
.hero-actions > *,
.mini-mark,
.nav-links a,
.project-link,
.scroll-invite {
  transition:
    translate 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 500;
  padding: 0.7rem 1rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  font-size: 0.56rem;
  opacity: 0;
  transform: translate(-50%, 0.5rem);
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 1180px) {
  .robot-rail {
    display: none;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 245px;
    gap: 3rem;
  }
  .photo-frame {
    width: 235px;
    height: 290px;
  }
}
@media (max-width: 900px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding-top: 8.5rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .hero-text {
    order: 1;
  }
  .avatar-wrap {
    order: 2;
    justify-self: start;
    margin-left: 2rem;
  }
  .hero::before {
    right: -12rem;
    bottom: -10rem;
    top: auto;
  }
  .hero-paragraphs {
    grid-template-columns: 1fr;
  }
  .hero-paragraphs p,
  .hero-paragraphs p:last-child {
    grid-column: auto;
    min-height: auto;
  }
  .project-item,
  .project-item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .project-item:nth-child(even) .project-image {
    order: 0;
  }
  .achievement-grid,
  .contact-row {
    grid-template-columns: 1fr;
  }
  .achievement-grid article {
    min-height: 230px;
  }
  .contact-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  .contact-row > div:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 600px) {
  .site-nav {
    padding-inline: 1rem;
  }
  .clock {
    padding: 0.35rem 0.5rem;
  }
  .hero {
    padding-inline: 1.2rem;
  }
  .hero-heading {
    display: block;
  }
  .hero-actions {
    margin-top: 1.2rem;
  }
  h1 {
    font-size: clamp(3.8rem, 20vw, 6.4rem);
  }
  .section-heading {
    align-items: flex-start;
  }
  .hero::after,
  .section-code {
    display: none;
  }
  .project-image,
  .project-image img {
    min-height: 250px;
    height: 250px;
  }
  .contact-heading h2 {
    font-size: clamp(4rem, 20vw, 6rem);
  }

  footer {
    grid-template-columns: 1fr auto;
  }
  footer > span:nth-child(2) {
    display: none;
  }
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring,
  .motion-status,
  .pointer-light {
    display: none;
  }
  [data-tilt] {
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  ::after,
  ::before {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .drop-item,
  .hero-load,
  .section-shell {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }
  .cursor-dot,
  .cursor-ring,
  .motion-status,
  .pointer-light,
  .robot-rail {
    display: none;
  }
}
:root {
  --paper: #cbd1d2;
  --white: #f3f5f4;
  --blue: #ff6a00;
  --orange: #f5c928;
  --cyan: #56e8ff;
}
.site-nav {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 11, 0.9);
}
.mini-mark,
.nav-links a.active,
.nav-links a:hover,
.site-nav {
  color: var(--white);
}

.mini-mark::before,
.section-cap i::after {
  background: var(--orange);
}
.mini-mark span {
  color: var(--blue);
}
.nav-links a {
  color: #8c9295;
}
.achievement-grid article::after,
.eyebrow span,
.nav-links a::after,
.project-link:hover {
  background: var(--blue);
}
.clock,
.hero-paragraphs p {
  border-color: rgba(255, 255, 255, 0.16);
  color: #aeb4b6;
}
.hero {
  background:
    linear-gradient(90deg, rgba(255, 106, 0, 0.08), transparent 25%), #080a0b;
  color: var(--white);
}
.hero::before {
  right: clamp(-7rem, -3vw, -1rem);
  top: clamp(9rem, 17vh, 13rem);
  width: clamp(28rem, 46vw, 44rem);
  height: clamp(32rem, 68vh, 43rem);
  aspect-ratio: auto;
  border: 2px solid #5d6568;
  border-radius: 0;
  background:
    radial-gradient(circle, #080a0b 0 4px, transparent 4.5px) 0 0/38px 38px,
    linear-gradient(135deg, #a8b0b3, #555e61 55%, #262b2d);
  box-shadow:
    -28px 28px 0 rgba(255, 106, 0, 0.9),
    -42px 42px 0 rgba(245, 201, 40, 0.14);
  clip-path: polygon(10%0, 100%0, 100% 88%, 90% 100%, 0 100%, 0 12%);
  opacity: 0.82;
}
.hero::after {
  content: "BUILD // DRIVE // ITERATE";
  color: rgba(255, 255, 255, 0.32);
}
.eyebrow {
  color: #9da4a7;
}
h1 {
  color: #dce1e2;
  text-shadow: 8px 8px 0 rgba(255, 106, 0, 0.18);
}
.name-cursor {
  color: var(--blue);
}
.hero-surname,
.scroll-invite i {
  background: var(--orange);
  color: var(--ink);
}
.line-icon {
  color: var(--orange);
}
.scroll-invite {
  color: #92999b;
}
.scroll-invite i {
  border-color: #687174;
}
.hero-actions a,
.hero-actions button {
  border-color: #667074;
  color: var(--white);
}
.hero-actions a:hover,
.hero-actions button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #080a0b;
}
.photo-frame {
  border: 2px solid #1b1e20;
  background: #aab2b5;
  box-shadow:
    20px 20px 0 var(--blue),
    25px 25px 0#171a1b;
}
.photo-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 14px;
  bottom: 14px;
  left: -15px;
  width: 9px;
  background: radial-gradient(circle, #080a0b 0 2px, transparent 2.5px) 0 0/9px
    18px;
}
.photo-corner {
  border-color: var(--orange);
}
.push-section {
  background: #0c0f10;
}
.push-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: repeating-linear-gradient(
    to bottom,
    var(--blue) 0 22px,
    transparent 22px 42px
  );
}
.section-cap {
  border-color: rgba(255, 255, 255, 0.16);
}
.section-code {
  color: var(--orange);
}
.project-image {
  background: #202527;
  clip-path: polygon(7%0, 100%0, 100% 88%, 93% 100%, 0 100%, 0 12%);
}
.project-image::before {
  border-color: #6c7578;
  border-width: 2px;
}
.project-image::after {
  mix-blend-mode: screen;
}
.achievement-grid article > span,
.project-item:hover .project-text h3 {
  color: var(--orange);
}
.project-year {
  color: var(--blue);
}
.project-link:hover {
  border-color: var(--blue);
}
#skills {
  background:
    linear-gradient(135deg, rgba(255, 106, 0, 0.09), transparent 45%), #171b1d;
}
#education {
  background:
    linear-gradient(rgba(8, 10, 11, 0.055) 1px, transparent 1px), #cbd1d2;
  background-size: 100% 48px;
}
.contact-section {
  background: var(--orange);
}
.contact-section::before {
  background: repeating-linear-gradient(
    to bottom,
    #080a0b 0 22px,
    transparent 22px 42px
  );
}
.contact-row {
  background: #cbd1d2;
}
.contact-row a {
  color: #d35400;
}
.cursor-ring {
  border-color: rgba(86, 232, 255, 0.85);
}
.cursor-ring::before {
  transform: rotate(45deg);
}
.cursor-ring::after {
  left: calc(50% - 3px);
}
.cursor-dot,
.cursor-ring::after {
  background: var(--orange);
}
.cursor-ring {
  background: 0 0;
  box-shadow: none;
  transition:
    width 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 180ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 150ms ease;
  filter: drop-shadow(0 0 7px rgba(86, 232, 255, 0.28));
}
.cursor-ring::before {
  border: 0;
  background:
    linear-gradient(
        90deg,
        transparent 0 34%,
        var(--cyan) 35% 65%,
        transparent 66%
      )
      center/100% 2px no-repeat,
    linear-gradient(145deg, #243033, #070a0b 65%);
  clip-path: polygon(22%0, 78%0, 100% 50%, 78% 100%, 22% 100%, 0 50%);
  box-shadow:
    inset 0 0 0 1px var(--cyan),
    0 0 8px rgba(86, 232, 255, 0.42);
}
.cursor-ring::after {
  top: calc(50% - 1px);
  background: linear-gradient(90deg, transparent, var(--orange));
  box-shadow: -8px 0 8px rgba(245, 201, 40, 0.4);
}
.cursor-ring > i {
  position: absolute;
  width: 17px;
  height: 4px;
  border: 0 !important;
  background: linear-gradient(90deg, transparent, currentColor);
  opacity: 0.88;
  transform-origin: right center;
  transition:
    inset 180ms ease,
    width 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}
.cursor-ring > i:nth-child(1) {
  left: 4px;
  top: 3px;
  transform: rotate(28deg);
}
.cursor-ring > i:nth-child(2) {
  right: 4px;
  top: 3px;
  transform: scaleX(-1) rotate(28deg);
}
.cursor-ring > i:nth-child(3) {
  right: 4px;
  bottom: 3px;
  transform: scaleX(-1) rotate(-28deg);
}
.cursor-ring > i:nth-child(4) {
  left: 4px;
  bottom: 3px;
  transform: rotate(-28deg);
}
.cursor-dot {
  background: #fff2ac;
  clip-path: polygon(50%0, 100% 50%, 50% 100%, 0 50%);
  box-shadow:
    0 0 4px var(--orange),
    0 0 11px var(--orange);
}
.cursor-ring.is-invert {
  color: #071011;
}
.cursor-dot.is-invert {
  background: var(--orange);
}
.nav-links {
  gap: clamp(0.58rem, 1.35vw, 1.25rem);
}
.nav-links a {
  font-size: 0.56rem;
}
.team-section {
  background:
    linear-gradient(135deg, rgba(86, 232, 255, 0.055), transparent 34%),
    linear-gradient(315deg, rgba(255, 106, 0, 0.08), transparent 38%), #090c0d;
}
.team-section::after {
  inset: 54px 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}
.team-number strong,
.team-section .section-shell {
  position: relative;
  z-index: 1;
}
.team-stage {
  position: relative;
  min-height: 580px;
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  border: 1px solid #596467;
  background: rgba(9, 12, 13, 0.76);
  clip-path: polygon(
    28px 0,
    100%0,
    100% calc(100% - 28px),
    calc(100% - 28px) 100%,
    0 100%,
    0 28px
  );
}
.team-section::after,
.team-stage::after,
.team-stage::before {
  content: "";
  position: absolute;
  pointer-events: none;
}
.team-stage::before {
  inset: 16px;
  border: 1px solid rgba(86, 232, 255, 0.12);
  clip-path: polygon(
    18px 0,
    100%0,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    0 100%,
    0 18px
  );
}
.team-stage::after {
  left: 0;
  right: 0;
  bottom: 82px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange) 12% 34%,
    transparent 34% 66%,
    var(--cyan) 66% 88%,
    transparent
  );
  box-shadow: 0 0 12px rgba(86, 232, 255, 0.22);
}
.team-number {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid #657074;
  background:
    radial-gradient(circle, #50595c 0 2px, transparent 2.5px) 13px 13px/35px
      35px,
    linear-gradient(145deg, #202527, #0c0f10 72%);
  box-shadow: 15px 15px 0 rgba(255, 106, 0, 0.19);
  transform: perspective(900px) rotateY(var(--tilt-y, 0deg))
    rotateX(var(--tilt-x, 0deg));
  transition: transform 160ms ease;
}
.team-number::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.team-number small,
.team-number span {
  position: relative;
  z-index: 1;
  font-family: "Space Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.team-number span {
  color: var(--cyan);
  font-size: 0.58rem;
}
.team-number strong {
  margin: 0.45rem 0;
  color: var(--orange);
  line-height: 0.8;
  letter-spacing: -0.09em;
  text-shadow: 8px 8px 0#1c2426;
}
.team-number small {
  color: #99a1a4;
  font-size: 0.48rem;
}
.team-copy,
.team-number {
  position: relative;
  z-index: 2;
}
.team-kicker {
  margin: 0 0 1.1rem;
  color: var(--blue);
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}
.team-copy h3 {
  margin: 0 0 1.4rem;
  color: #f0f3f2;
  font-size: clamp(2.7rem, 5.5vw, 5.4rem);
  line-height: 0.84;
  letter-spacing: -0.07em;
}
.team-copy > p:not(.team-kicker) {
  max-width: 42rem;
  color: #a2aaac;
}
.team-links,
.team-tags {
  display: flex;
  flex-wrap: wrap;
}
.team-tags {
  gap: 0.45rem;
  margin: 1.4rem 0;
}
.team-links a,
.team-tags span {
  font-family: "Space Mono", monospace;
}
.team-tags span {
  padding: 0.36rem 0.55rem;
  border: 1px solid #586164;
  color: var(--cyan);
  font-size: 0.48rem;
}
.team-links {
  gap: 0.6rem;
}
.team-links a {
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.52rem;
  font-weight: 700;
  text-decoration: none;
}
.team-links a:hover {
  background: var(--orange);
  color: #080a0b;
}
.certification-section {
  background:
    linear-gradient(120deg, rgba(245, 201, 40, 0.07), transparent 32%), #0c0f10;
}
.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}
.certificate-card,
.social-row a {
  position: relative;
  min-width: 0;
  text-decoration: none;
}
.certificate-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  overflow: hidden;
  border: 1px solid #555f62;
  background: #14191a;
  color: inherit;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition:
    transform 160ms ease,
    border-color 180ms ease,
    translate 180ms ease;
}
.certificate-card:hover {
  border-color: var(--cyan);
  translate: 0-5px;
}
.certificate-card::before {
  content: "VERIFIED / 2026";
  position: absolute;
  z-index: 3;
  right: 10px;
  top: 10px;
  padding: 0.3rem 0.42rem;
  border: 1px solid #080a0b;
  background: var(--orange);
  color: #080a0b;
  font-family: "Space Mono", monospace;
  font-size: 0.43rem;
  font-weight: 700;
}
.certificate-image {
  height: 270px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(86, 232, 255, 0.08), transparent 45%), #080b0c;
}
.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.72) contrast(1.07) brightness(0.76);
  transition:
    filter 280ms ease,
    transform 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.certificate-card:hover .certificate-image img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.025);
}
.certificate-copy {
  min-height: 150px;
  padding: 1.25rem 1.4rem 1.45rem;
  border-top: 1px solid #555f62;
}
.certificate-copy span {
  color: var(--blue);
  font-family: "Space Mono", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}
.certificate-copy h3 {
  margin: 0.55rem 0 0.6rem;
  max-width: 18ch;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.certificate-copy p {
  margin: 0;
  color: #90999b;
  font-size: 0.78rem;
}
.contact-row {
  grid-template-columns: 1.35fr 1fr 1.05fr;
}
.social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
  border: 2px solid #080a0b;
  background: #111617;
}
.social-row a {
  border-right: 1px solid #515b5e;
  color: #f0f3f2;
  transition:
    background 180ms ease,
    color 180ms ease;
}
.social-row a:last-child {
  border-right: 0;
}
.social-row a:hover {
  background: var(--blue);
}
.social-row span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--cyan);
  font-family: "Space Mono", monospace;
  font-size: 0.48rem;
  text-transform: uppercase;
}
.social-row a:hover span {
  color: #080a0b;
  color: var(--cyan);
}
.social-row b {
  font-size: 0.84rem;
}
.social-row i {
  position: absolute;
  right: 1rem;
  top: 50%;
  font-style: normal;
  translate: 0-50%;
}
@media (max-width: 1000px) {
  .team-stage {
    grid-template-columns: 1fr;
  }
  .team-copy {
    padding-bottom: 11rem;
  }
  .contact-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-row > div:nth-child(2) {
    border-right: 0;
  }
  .contact-row > div:nth-child(-n + 2) {
    border-bottom: 1px solid #080a0b;
  }
}
@media (max-width: 760px) {
  .team-stage {
    padding: 1.2rem;
    min-height: 820px;
  }
  .team-number {
    min-height: 270px;
  }
  .team-copy {
    align-self: start;
    padding-bottom: 12rem;
  }
  .certificate-grid {
    grid-template-columns: 1fr;
  }
  .social-row {
    grid-template-columns: 1fr;
  }
  .social-row a {
    border-right: 0;
    border-bottom: 1px solid #515b5e;
  }
  .social-row a:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 520px) {
  .team-number {
    min-height: 220px;
    padding: 1.2rem;
  }
  .team-stage {
    min-height: 850px;
  }
  .contact-row {
    grid-template-columns: 1fr;
  }
  .contact-row > div {
    border-right: 0 !important;
    border-bottom: 1px solid #080a0b !important;
  }
  .contact-row > div:last-child {
    border-bottom: 0 !important;
  }
}
:root {
  --hero-scroll: 0;
  --project-progress: 0;
  --project-x: 0px;
}
.avatar-wrap,
.hero-heading,
.hero-paragraphs p,
.scroll-invite {
  will-change: translate, scale, opacity;
}
.hero-heading {
  translate: calc(var(--hero-scroll) * -5.5vw) calc(var(--hero-scroll) * -5vh);
  scale: calc(1 - var(--hero-scroll) * 0.08);
}
.avatar-wrap {
  translate: calc(var(--hero-scroll) * 7vw) calc(var(--hero-scroll) * -4vh);
  scale: calc(1 + var(--hero-scroll) * 0.16);
  opacity: calc(1 - var(--hero-scroll) * 1.05);
}
.hero-paragraphs p:nth-child(even),
.hero-paragraphs p:nth-child(odd) {
  translate: calc(var(--hero-scroll) * -8vw) calc(var(--hero-scroll) * 2vh);
  opacity: calc(1 - var(--hero-scroll) * 1.3);
}
.hero-paragraphs p:nth-child(even) {
  translate: calc(var(--hero-scroll) * 8vw) calc(var(--hero-scroll) * 2vh);
}
.scroll-invite {
  translate: 0 calc(var(--hero-scroll) * 5vh);
  opacity: calc(1 - var(--hero-scroll) * 1.8);
}
body.is-scrolling .ambient-grid {
  opacity: 0.9;
}
body.is-scrolling .section-cap i::after {
  animation: liveTrace 520ms linear infinite;
}

.project-scroll-stage {
  position: relative;
}
.achievement-grid-logo article::after {
  display: none;
}
@media (min-width: 901px) {
  #projects {
    min-height: 440vh;
    padding-inline: clamp(1.5rem, 4vw, 4rem);
    overflow: visible;
  }
  #projects .section-cap,
  .project-scroll-stage::after {
    position: absolute;
    z-index: 4;
    inset: 0 0 auto;
  }
  #projects .section-shell {
    position: sticky;
    z-index: 2;
    top: 72px;
    width: min(100%, var(--wide));
    height: calc(100vh - 72px);
    padding: clamp(2.2rem, 4vh, 3.2rem) 0 1.4rem;
    overflow: hidden;
    opacity: 1;
    clip-path: none;
    transform: none;
    animation: none !important;
  }
  #projects .section-heading {
    position: relative;
    z-index: 4;
    align-items: flex-end;
    margin-bottom: clamp(1.4rem, 3vh, 2.2rem);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  #projects .section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: calc(var(--project-progress) * 100%);
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--orange));
    box-shadow: 0 0 12px rgba(86, 232, 255, 0.22);
  }
  #projects .section-heading h2 {
    font-size: clamp(4rem, 7.3vw, 7rem);
  }
  #projects .section-heading p {
    margin-top: 0.65rem;
  }
  .project-scroll-stage {
    height: calc(100vh - 245px);
    overflow: visible;
    perspective: 1300px;
  }
  .project-scroll-stage::after {
    content: "";
    z-index: 5;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(86, 232, 255, 0.65),
      transparent
    );
    transform: translateX(calc((var(--project-progress) - 0.5) * 72%));
    box-shadow: 0 0 18px rgba(86, 232, 255, 0.36);
    pointer-events: none;
  }
  #projects .project-list {
    position: relative;
    z-index: 2;
    width: max-content;
    height: 100%;
    flex-direction: row;
    align-items: stretch;
    gap: clamp(2.5rem, 6vw, 6rem);
    border: 0;
    transform: translate3d(var(--project-x), 0, 0);
    will-change: transform;
  }
  #projects .project-item,
  #projects .project-item:nth-child(even) {
    --card-focus: 0.3;
    flex: 0 0 min(78vw, 1030px);
    width: min(78vw, 1030px);
    height: 100%;
    min-height: 0;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.72fr);
    gap: clamp(2rem, 4vw, 4.5rem);
    padding: 1.15rem 1.3rem;
    border: 1px solid rgba(255, 255, 255, calc(0.08 + var(--card-focus) * 0.22));
    background: rgba(9, 12, 13, calc(0.36 + var(--card-focus) * 0.54));
    opacity: calc(0.36 + var(--card-focus) * 0.64);
    scale: calc(0.91 + var(--card-focus) * 0.09);
    transform-origin: center;
    transition:
      opacity 100ms linear,
      scale 100ms linear,
      border-color 100ms linear,
      background 100ms linear;
  }
  #projects .project-item:nth-child(even) .project-image {
    order: 0;
  }
  #projects .project-image {
    height: 100%;
    min-height: 0;
    box-shadow: calc(7px + var(--card-focus) * 11px)
      calc(7px + var(--card-focus) * 11px) 0
      rgba(255, 106, 0, calc(0.06 + var(--card-focus) * 0.18));
  }
  #projects .project-image img {
    height: 100%;
    min-height: 0;
    filter: grayscale(calc(1 - var(--card-focus))) contrast(1.06)
      brightness(calc(0.54 + var(--card-focus) * 0.46));
    transform: translateY(var(--image-shift, 0px)) translateZ(8px)
      scale(calc(1.09 - var(--card-focus) * 0.035));
  }
  #projects .project-text h3 {
    font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  }
  #projects .project-text p {
    max-width: 34rem;
  }
}
@media (max-width: 900px) {
  .avatar-wrap,
  .hero-heading,
  .hero-paragraphs p,
  .scroll-invite {
    translate: none;
    scale: 1;
    opacity: 1;
  }
  .project-scroll-stage {
    overflow: visible;
  }
}
@media (prefers-reduced-motion: reduce) {
  #projects {
    min-height: auto;
  }
  #projects .section-shell {
    position: static;
    height: auto;
    overflow: visible;
    padding-block: clamp(5.5rem, 10vw, 9rem);
  }
  #projects .project-list {
    width: 100%;
    height: auto;
    flex-direction: column;
    transform: none;
  }
  #projects .project-item,
  #projects .project-item:nth-child(even) {
    width: 100%;
    height: auto;
    grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.72fr);
    opacity: 1;
    scale: 1;
  }
}
.team-stage {
  grid-template-columns: minmax(210px, 0.6fr) minmax(420px, 1.4fr);
  grid-template-rows: auto 1fr;
  align-items: stretch;
}
.team-copy,
.team-number {
  grid-column: 1;
  grid-row: 1;
}
.team-copy {
  grid-row: 2;
  align-self: end;
  padding: 2rem 0 0;
}
.project-image {
  clip-path: none;
}
.project-media {
  position: absolute;
  inset: 0;
  display: grid;
  overflow: hidden;
  background: #090c0d;
}
.project-image .project-media > img {
  filter: grayscale(0.82) contrast(1.07) brightness(0.75);
  transform: translateY(var(--image-shift, 0px)) translateZ(8px) scale(1.035);
}
.project-image .project-media-detail {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  object-position: center;
}
.project-image:hover .project-media > img {
  filter: grayscale(0) contrast(1.02) brightness(1);
}
@media (min-width: 901px) {
  #projects .project-image .project-media > img {
    height: 100%;
    min-height: 0;
    filter: grayscale(calc(1 - var(--card-focus))) contrast(1.05)
      brightness(calc(0.55 + var(--card-focus) * 0.45));
    transform: translateY(var(--image-shift, 0px)) translateZ(8px)
      scale(calc(1.055 - var(--card-focus) * 0.02));
  }
}
@media (max-width: 900px) {
  .team-stage {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .team-copy,
  .team-number {
    grid-column: 1;
    grid-row: auto;
  }
  .team-copy {
    padding: 0;
  }
  .project-image .project-media > img {
    min-height: 0;
    height: 100%;
  }
}
@media (max-width: 560px) {
  .project-media {
    grid-template-columns: minmax(0, 1fr) 32%;
  }
}
.mini-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.mini-mark img {
  width: 34px;
  height: 34px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px #111617;
}
.mini-mark b {
  color: #eef1f0;
  font-weight: 700;
}
.mini-mark b span {
  color: var(--blue);
}
.mini-mark::before {
  inset: -5px -8px;
  border-radius: 99px;
}
.hero-logo-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 10, 11, 0.74);
}
.hero-logo-rail > span {
  min-width: 0;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  padding: 0.7rem 0.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #9da6a9;
  font-family: "Space Mono", monospace;
  font-size: 0.42rem;
  text-align: center;
}
.hero-logo-rail > span:last-child,
.team-software-badges a:last-child,
.telemetry-strip span:last-child {
  border-right: 0;
}
.hero-logo-rail img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.hero-logo-rail span:nth-child(2) img {
  width: 42px;
}
.software-console {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 1/3;
  min-width: 0;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #697477;
  background: #070a0b;
  box-shadow: 18px 18px 0 rgba(255, 106, 0, 0.18);
  transform: perspective(1100px) rotateY(var(--tilt-y, 0deg))
    rotateX(var(--tilt-x, 0deg));
  transition:
    transform 160ms ease,
    border-color 220ms ease;
}
.software-console:hover {
  border-color: var(--cyan);
}
.console-top {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid #394246;
  background: #111617;
  color: #939da0;
  font-family: "Space Mono", monospace;
  font-size: 0.48rem;
  letter-spacing: 0.08em;
}
.console-top span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.console-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #465055;
}
.console-top i:first-child {
  background: var(--orange);
}
.console-top i:nth-child(2) {
  background: var(--yellow);
}
.console-top i:nth-child(3) {
  background: var(--cyan);
}
.console-top b,
.telemetry-strip b {
  color: var(--cyan);
  font-weight: 400;
}
.console-main {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(330px, 1.22fr);
}
.code-window,
.path-window {
  position: relative;
  overflow: hidden;
}
.code-window {
  padding: 1.6rem 0.75rem 1rem 1rem;
  border-right: 1px solid #394246;
  background: #0b0f10;
}
.code-window::before {
  content: "AUTO.JAVA";
  display: block;
  margin-bottom: 1.25rem;
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: 0.48rem;
  letter-spacing: 0.14em;
}
.code-window ol {
  margin: 0;
  padding-left: 2rem;
  color: #586366;
}
.code-window li {
  padding: 0.55rem 0;
  font-family: "Space Mono", monospace;
  font-size: 0.55rem;
}
.code-window code {
  color: #d9dfe0;
  white-space: nowrap;
}
.code-window code em {
  color: var(--cyan);
  font-style: normal;
}
.code-window code strong {
  color: var(--yellow);
  font-weight: 400;
}
.code-window code span {
  color: var(--orange);
}
.path-window {
  min-height: 390px;
  color: #687477;
  background: #0d1213;
}
.path-visualizer {
  width: 100%;
  height: 100%;
  display: block;
}
.route-line,
.route-shadow {
  fill: none;
  stroke-linecap: round;
}
.route-shadow {
  stroke: rgba(86, 232, 255, 0.14);
  stroke-width: 19;
}
.route-line {
  stroke: var(--cyan);
  stroke-width: 5;
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  filter: drop-shadow(0 0 7px rgba(86, 232, 255, 0.65));
}
.path-point {
  fill: #0d1213;
  stroke: var(--orange);
  stroke-width: 5;
}
.path-point-end {
  stroke: var(--yellow);
}
.path-agent {
  offset-path: path("M62 338 C136 180 240 348 315 210 S470 62 558 124");
  offset-rotate: auto 90deg;
  transform-box: fill-box;
  transform-origin: center;
}
.path-agent rect {
  fill: var(--orange);
  stroke: #0a0d0e;
  stroke-width: 4;
}
.path-agent path {
  stroke: #0a0d0e;
  stroke-width: 3;
}
.team-section.visible .route-line {
  animation: drawRoute 1.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.45s forwards;
}
.team-section.visible .path-agent {
  animation: followRoute 5.4s cubic-bezier(0.55, 0.1, 0.3, 0.92) 1.05s infinite;
}
.field-label {
  position: absolute;
  color: #8d989b;
  font-family: "Space Mono", monospace;
  font-size: 0.42rem;
  letter-spacing: 0.12em;
}
.label-start {
  left: 7%;
  bottom: 8%;
}
.label-end {
  right: 6%;
  top: 20%;
}
.telemetry-strip {
  min-height: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #394246;
  border-bottom: 1px solid #394246;
  background: #101516;
}
.team-software-badges a,
.telemetry-strip span {
  display: flex;
  align-items: center;
  border-right: 1px solid #394246;
}
.telemetry-strip span {
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.8rem;
  color: #778285;
  font-family: "Space Mono", monospace;
  font-size: 0.43rem;
}
.team-software-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.team-software-badges a {
  min-height: 94px;
  gap: 1rem;
  padding: 1rem;
  color: #e7eaea;
  text-decoration: none;
  transition: background 180ms ease;
}
.team-software-badges a:hover {
  background: #171d1f;
}
.team-software-badges img {
  width: 56px;
  height: 48px;
  object-fit: contain;
}
.team-software-badges span {
  display: flex;
  flex-direction: column;
}
.team-software-badges b {
  font-size: 0.88rem;
}
.team-software-badges small {
  margin-top: 0.25rem;
  color: #7e898c;
  font-family: "Space Mono", monospace;
  font-size: 0.46rem;
}
.software-skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.software-skill-lane {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #576164;
  background: #0c1011;
  box-shadow: 10px 10px 0 rgba(86, 232, 255, 0.12);
}
.software-skill-lane header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 64px;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid #3a4346;
}
.software-skill-lane header span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: #080a0b;
  font-family: "Space Mono", monospace;
  font-size: 0.5rem;
}
.software-skill-lane h3 {
  margin: 0;
  color: #eef1f0;
  font-size: 1.05rem;
  text-transform: uppercase;
}
.skill-logo-list {
  display: grid;
}
.skill-logo-list > div {
  min-height: 84px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #2d3538;
  transition:
    background 180ms ease,
    translate 180ms ease;
}
.skill-logo-list > div:last-child {
  border-bottom: 0;
}
.skill-logo-list > div:hover {
  background: #151b1d;
  translate: 5px 0;
}
.skill-logo-list img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.skill-logo-list div:nth-child(2) img {
  width: 50px;
}
.skill-logo-list > div > span {
  display: flex;
  flex-direction: column;
}
.skill-logo-list b {
  color: #f0f2f1;
  font-size: 0.83rem;
}
.skill-logo-list small {
  margin-top: 0.22rem;
  color: #7f898c;
  font-family: "Space Mono", monospace;
  font-size: 0.43rem;
}
.text-logo > strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  font-family: "Space Mono", monospace;
  font-size: 0.52rem;
}
.project-logo-rack {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  margin-top: 1.5rem;
  border: 1px solid #566063;
  background: #0a0e0f;
}
.project-logo-rack a,
.project-logo-rack > span {
  min-height: 105px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border-right: 1px solid #394245;
}
.project-logo-rack > span {
  color: var(--orange);
  font-family: "Space Mono", monospace;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
}
.project-logo-rack a:last-child {
  border-right: 0;
}
.project-logo-rack a {
  color: #e9eceb;
  text-decoration: none;
  transition: background 180ms ease;
}
.project-logo-rack a:hover {
  background: #171d1f;
}
.project-logo-rack img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 10px;
}
.project-logo-rack b {
  font-size: 0.8rem;
}
.achievement-grid-logo article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.achievement-grid-logo article:hover {
  background: #111617;
  color: #f2f4f3;
  outline: 2px solid var(--cyan);
  outline-offset: -2px;
}
.achievement-grid-logo article > img {
  width: 100%;
  height: 92px;
  margin: 1.8rem 0 0.4rem;
  object-fit: contain;
  object-position: left center;
}
.achievement-grid-logo article:nth-child(1) > img {
  width: 130px;
}
.achievement-grid-logo article:nth-child(2) > img {
  width: 145px;
  background: #f1f0ec;
}
.achievement-grid-logo small {
  margin-top: 0.5rem;
}
.achievement-grid-logo article:hover p,
.achievement-grid-logo article:hover small {
  color: #9ea8aa;
}
@media (max-width: 1100px) {
  .console-main {
    grid-template-columns: 1fr;
  }
  .code-window {
    display: none;
  }
  .software-skill-grid {
    grid-template-columns: 1fr 1fr;
  }
  .software-skill-lane:last-child {
    grid-column: 1/-1;
  }
  .software-skill-lane:last-child .skill-logo-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .software-console {
    grid-column: 1;
    grid-row: auto;
    min-height: 560px;
  }
  .team-copy {
    padding-bottom: 0;
  }
  .hero-logo-rail {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-logo-rail > span:nth-child(3) {
    border-right: 0;
  }
  .hero-logo-rail > span:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .software-skill-grid {
    grid-template-columns: 1fr;
  }
  .software-skill-lane:last-child {
    grid-column: auto;
  }
  .software-skill-lane:last-child .skill-logo-list {
    grid-template-columns: 1fr;
  }
  .project-logo-rack {
    grid-template-columns: 1fr 1fr;
  }
  .project-logo-rack a,
  .project-logo-rack > span {
    border-bottom: 1px solid #394245;
  }
  .project-logo-rack > :nth-child(2n) {
    border-right: 0;
  }
  .project-logo-rack > :nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}
@media (max-width: 560px) {
  .mini-mark b {
    display: none;
  }
  .hero-logo-rail > span {
    min-height: 64px;
  }
  .software-console {
    min-height: 500px;
  }
  .path-window {
    min-height: 320px;
  }
  .project-logo-rack,
  .team-software-badges,
  .telemetry-strip {
    grid-template-columns: 1fr;
  }
  .telemetry-strip span {
    min-height: 38px;
    border-right: 0;
    border-bottom: 1px solid #394246;
  }
  .team-software-badges a:last-child,
  .telemetry-strip span:last-child {
    border-bottom: 0;
  }
  .team-software-badges a {
    border-right: 0;
    border-bottom: 1px solid #394246;
  }
  .project-logo-rack a,
  .project-logo-rack > span {
    min-height: 86px;
    border-right: 0 !important;
    border-bottom: 1px solid #394245 !important;
  }
  .project-logo-rack a:last-child {
    border-bottom: 0 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .team-section.visible .route-line {
    stroke-dashoffset: 0;
    animation: none;
  }
  .team-section.visible .path-agent {
    display: none;
    animation: none;
  }
}
.push-section {
  --section-x: 0px;
  --section-x-reverse: 0px;
  --section-y: 0px;
  --section-y-reverse: 0px;
  --section-tilt: 0deg;
  --section-tilt-reverse: 0deg;
  --section-scan: 0%;
}
.path-window::after {
  content: "";
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  top: var(--section-scan);
  height: 2px;
  opacity: 0.82;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cyan) 22%,
    var(--yellow) 54%,
    transparent
  );
  box-shadow: 0 0 16px rgba(86, 232, 255, 0.55);
  pointer-events: none;
}
.certificate-image {
  overflow: hidden;
}
.certificate-image img {
  translate: 0 var(--certificate-shift, 0px);
  scale: 1.055;
  will-change: translate, scale;
}
.certificate-card:hover .certificate-image img {
  scale: 1.095;
}
@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .achievement-grid article,
  .certificate-card,
  .contact-heading,
  .contact-row,
  .project-logo-rack,
  .push-section:not(#projects) .section-code,
  .push-section:not(#projects) .section-heading h2,
  .push-section:not(#projects) .section-heading p,
  .social-row,
  .software-console,
  .software-skill-lane,
  .team-copy,
  .team-number {
    will-change: translate, rotate;
  }
  .push-section:not(#projects) .section-heading h2 {
    translate: var(--section-x-reverse) 0;
  }
  .push-section:not(#projects) .section-heading p {
    translate: var(--section-x) 0;
  }
  .push-section:not(#projects) .section-code {
    translate: var(--section-x) var(--section-y-reverse);
    rotate: var(--section-tilt);
  }
  #team .team-number {
    translate: 0 var(--section-y);
    rotate: var(--section-tilt-reverse);
  }
  #team .team-copy {
    translate: 0 var(--section-y-reverse);
  }
  #team .software-console {
    translate: 0 var(--section-y);
    rotate: var(--section-tilt);
  }
  #skills .software-skill-lane:nth-child(1) {
    translate: 0 var(--section-y);
    rotate: var(--section-tilt-reverse);
  }
  #skills .software-skill-lane:nth-child(2) {
    translate: 0 var(--section-y-reverse);
    rotate: var(--section-tilt);
  }
  #certifications .certificate-card:nth-child(odd),
  #skills .software-skill-lane:nth-child(3) {
    translate: 0 var(--section-y);
    rotate: var(--section-tilt-reverse);
  }
  #skills .project-logo-rack {
    translate: var(--section-x-reverse) 0;
  }
  #certifications .certificate-card:nth-child(even) {
    translate: 0 var(--section-y-reverse);
    rotate: var(--section-tilt);
  }
  #achievements .achievement-grid article:nth-child(1) {
    translate: var(--section-x-reverse) var(--section-y);
    rotate: var(--section-tilt-reverse);
  }
  #achievements .achievement-grid article:nth-child(2) {
    translate: 0 var(--section-y-reverse);
  }
  #achievements .achievement-grid article:nth-child(3) {
    translate: var(--section-x) var(--section-y);
    rotate: var(--section-tilt);
  }
  #contact .contact-heading {
    translate: var(--section-x-reverse) 0;
  }
  #contact .contact-row {
    translate: 0 0;
  }
  #contact .social-row {
    translate: var(--section-x-reverse) 0;
  }
}
.cursor-ring,
.cursor-ring.is-down,
.cursor-ring.is-invert {
  width: 30px !important;
  height: 30px !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(7, 10, 11, 0.08) !important;
  color: var(--cyan) !important;
  clip-path: none !important;
  box-shadow:
    inset 0 0 0 1px rgba(86, 232, 255, 0.92),
    0 0 8px rgba(86, 232, 255, 0.18) !important;
  filter: none !important;
  transition:
    opacity 140ms ease,
    scale 100ms ease !important;
}

.cursor-ring.is-invert::before,
.cursor-ring::before {
  content: "" !important;
  position: absolute !important;
  inset: 8px !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  border: 1px solid var(--orange) !important;
  border-radius: 50% !important;
  background: 0 0 !important;
  clip-path: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.cursor-ring.is-invert::after,
.cursor-ring::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: 50% !important;
  bottom: auto !important;
  width: 4px !important;
  height: 4px !important;
  display: block !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #fff5bd !important;
  box-shadow: 0 0 0 2px var(--orange) !important;
  opacity: 1 !important;
  transform: translate(-50%, -50%) !important;
  animation: none !important;
}
.cursor-ring #cursor-label,
.cursor-ring > i,
.project-image::after,
.project-image::before,
.project-scroll-stage::after {
  display: none !important;
}
.cursor-ring.is-down {
  scale: 0.82;
}
.cursor-dot,
.cursor-dot.is-down,
.cursor-dot.is-invert {
  width: 3px !important;
  height: 3px !important;
  border-radius: 50% !important;
  background: var(--cyan) !important;
  clip-path: none !important;
  box-shadow: 0 0 5px rgba(86, 232, 255, 0.8) !important;
}
.motion-status {
  display: none;
}
.project-media {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0 !important;
  padding: clamp(0.55rem, 1vw, 0.9rem);
  background: #080b0c;
}
#projects .project-image .project-media > img,
.project-image .project-media > img {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: none !important;
  transform: translateY(var(--image-shift, 0px)) scale(0.98) !important;
}
#projects .project-image:hover .project-media > img,
.project-image:hover .project-media > img {
  filter: none !important;
  transform: translateY(var(--image-shift, 0px)) scale(1) !important;
}
.project-image {
  border: 1px solid #536064;
  background: #080b0c;
  box-shadow: 12px 12px 0 rgba(255, 106, 0, 0.13) !important;
}
.achievement-grid-logo article:nth-child(2) > img {
  padding: 0.75rem;
  border: 1px solid #3e494c;
  background: #080b0c;
}
.social-row a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 0.85rem;
  padding: 1rem 1.15rem;
  min-height: 76px;
}
.social-row a:hover {
  background: #1a2224;
  color: #f4f6f5;
}
.social-icon {
  grid-column: 1;
  grid-row: 1/3;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-row a:nth-child(2) .social-icon {
  stroke: none;
}
.youtube-icon .youtube-mark {
  fill: #ff0033;
}
.youtube-icon .youtube-play {
  fill: #fff;
  stroke: none;
}
.social-row a:nth-child(3) .social-icon {
  stroke: var(--cyan);
}
.social-row b,
.social-row span {
  grid-column: 2;
}
@media (max-width: 900px) {
  .project-media {
    padding: 0.45rem;
  }
}
.team-number {
  min-height: 350px;
  justify-content: center;
}
.team-logo {
  position: relative;
  z-index: 1;
  width: min(170px, 72%);
  height: 150px;
  margin-bottom: 0.35rem;
  object-fit: contain;
  border-radius: 8px;
  background: #050505;
}
.team-number strong {
  font-size: clamp(3.8rem, 7vw, 6.5rem);
}
.team-software-badges a:last-child img {
  width: 70px;
  height: 68px;
  border-radius: 8px;
  background: #050505;
}
.project-item[data-project-url] {
  cursor: pointer;
}
.project-item[data-project-url]:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}
.education-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.education-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  overflow: hidden;
  border: 2px solid #121617;
  background: #e5e8e7;
  box-shadow: 12px 12px 0 rgba(8, 10, 11, 0.14);
}
.education-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--orange);
}
.education-card-current::before {
  background: var(--blue);
}
.education-card > span {
  position: absolute;
  left: clamp(1.5rem, 3vw, 2.6rem);
  top: clamp(1.5rem, 3vw, 2.6rem);
  color: #61696b;
  font-family: "Space Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
}
.education-card h3 {
  max-width: 11ch;
  margin: 0;
  color: #0b0e0f;
  font-size: clamp(2.2rem, 4.7vw, 4.4rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}
.education-card p {
  margin: 1rem 0 0.55rem;
  color: #535b5d;
}
.education-card b {
  color: #111516;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.achievement-grid-logo article:nth-child(3) > img {
  width: 135px;
  height: 110px;
  padding: 0.45rem;
  border: 1px solid #3e494c;
  border-radius: 8px;
  background: #050505;
}
@media (max-width: 760px) {
  .education-timeline {
    grid-template-columns: 1fr;
  }
  .education-card {
    min-height: 270px;
  }
}
