:root {
  --paper: #f4f4f0;
  --ink: #1a1a1a;
  --soft: #efefef;
  --orange: #f97316;
  --gutter: clamp(1.5rem, 5vw, 6rem);
  --radius-lg: clamp(40px, 5vw, 80px);
  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  cursor: url('data:image/svg+xml;utf8,<svg width="28" height="28" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="%23111111" stroke="%23ffffff" stroke-width="2" stroke-linejoin="round" d="M4.5 3.5v16l4.5-4.5h6z"/></svg>'), auto !important;
}

html {
  background: #000;
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #000;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  display: none;
}

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

img,
svg,
canvas {
  display: block;
}

#terminal-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.85;
  pointer-events: none;
  transition: filter 0.2s linear;
}

#smoke-cursor {
  position: fixed;
  inset: 0;
  z-index: 70;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: multiply;
  filter: blur(1.5px);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent;
  overflow: hidden;
}

.status-tag {
  position: fixed;
  top: clamp(2rem, 4vw, 3rem);
  left: clamp(2rem, 4vw, 3rem);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  mix-blend-mode: difference;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.74;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.status-tag:hover {
  opacity: 1;
}

.status-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.7);
  animation: pulse-dot 1.4s ease-in-out infinite;
}

.hero-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 150svh;
  min-height: 800px;
}

.hero-inner {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem clamp(1.5rem, 6vw, 6rem);
  overflow: hidden;
  transform-origin: center;
}

.hero-type {
  position: relative;
  width: fit-content;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.8;
  text-transform: uppercase;
  will-change: transform;
}

.hero-line {
  position: relative;
  width: fit-content;
  overflow: visible;
}

.hero-line-wide {
  width: 100%;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.hero-word {
  margin: 0;
  font-size: clamp(5.8rem, 20vw, 23rem);
  line-height: 0.8;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(150px) rotate(2deg);
  animation: hero-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
  animation-delay: 0.15s;
}

.pixel-girl-wrap {
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: clamp(1rem, 3vw, 3.5rem);
  width: clamp(70px, 16vw, 220px);
  transform: translateY(-40%) scale(0.8);
  opacity: 0;
  animation: pixel-in 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
  will-change: transform;
}

.pixel-girl {
  width: 100%;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  animation: pixel-float 2.2s ease-in-out infinite alternate;
}

.pixel-girl svg {
  width: 100%;
  height: auto;
}

.scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: clamp(2rem, 4vw, 3rem);
  z-index: 3;
  width: clamp(2.5rem, 4vw, 3rem);
  height: auto;
  fill: #fff;
  opacity: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
  transform: translate(-50%, -20px);
  animation: arrow-in 1s ease 0.9s forwards, arrow-bounce 1.5s ease-in-out 1.9s infinite alternate;
}

.hero-overlay,
.project-overlay,
.macro-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: #000;
  opacity: 0;
  pointer-events: none;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1rem;
  padding-inline: var(--gutter);
}

.max-grid {
  max-width: 1800px;
  margin-inline: auto;
}

.section-raised {
  position: relative;
  z-index: 20;
  width: 100%;
  margin-top: -10vh;
  padding-block: clamp(6rem, 14vh, 12rem) 8rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 -40px 100px rgba(0, 0, 0, 0.3);
}

.about {
  min-height: 100vh;
}

.about-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(5rem, 14vw, 10rem);
  padding-top: clamp(3rem, 8vw, 6rem);
}

.clip-line {
  display: block;
  overflow: hidden;
}

.display-title,
.section-display {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 10vw, 10rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.85;
  text-transform: uppercase;
}

.display-muted,
.muted-italic {
  color: rgba(26, 26, 26, 0.36);
  font-style: italic;
  font-weight: 500;
}

.about-me-offset {
  margin-top: 0.25rem;
}

.section-index {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  color: rgba(26, 26, 26, 0.4);
}

.micro,
.section-index,
.project-caption,
.view-project,
.footer-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-media-wrap {
  position: relative;
  grid-column: 1 / -1;
  margin-bottom: 5rem;
}

.about-media {
  position: relative;
  z-index: 2;
  width: min(90%, 620px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #dcdcd8;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-media img,
.project-image img,
.project-image video {
  width: 100%;
  height: 120%;
  object-fit: cover;
  filter: grayscale(1);
  transform: translateY(-8%) scale(1.05);
  transition: filter 0.7s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.about-media img {
  opacity: 0.9;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.25);
}

.orange-block {
  position: absolute;
  right: 4%;
  bottom: -2rem;
  z-index: 1;
  width: 55%;
  aspect-ratio: 1;
  background: var(--orange);
  opacity: 0.9;
  mix-blend-mode: multiply;
  transform: rotate(3deg);
}

.black-block {
  position: absolute;
  left: -1rem;
  top: -1.5rem;
  z-index: 1;
  width: 55%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  opacity: 0.8;
  mix-blend-mode: overlay;
}

.black-dot {
  position: absolute;
  right: 12%;
  top: 20%;
  z-index: 3;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--ink);
}

.about-details {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
}

.about-major {
  margin: 0 0 clamp(1.5rem, 5vw, 5rem);
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.about-major.strong {
  font-weight: 700;
}

.graduation {
  width: min(80%, 420px);
  margin-top: 1rem;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.graduation .micro {
  display: block;
  margin-bottom: 0.5rem;
  color: #9ca3af;
}

.graduation p {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
}

.overlap-section {
  position: relative;
  width: 100%;
  transform-origin: bottom;
  overflow: hidden;
}

.projects {
  z-index: 10;
  overflow: visible;
  background: var(--paper);
  color: var(--ink);
}

.projects-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 34vh;
  transform-origin: center;
}

.projects-header {
  margin-bottom: clamp(6rem, 12vw, 10rem);
  padding: clamp(3rem, 8vw, 6rem) var(--gutter) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.projects-header-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.section-display {
  font-size: clamp(3.5rem, 10vw, 8rem);
}

.section-display span span {
  display: block;
}

.project-caption {
  max-width: 20rem;
  color: #6b7280;
}

.project-grid {
  row-gap: clamp(5rem, 10vw, 10rem);
}

.project-card {
  position: relative;
  grid-column: 1 / -1;
  margin-bottom: clamp(3rem, 10vw, 8rem);
}

.project-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #dcdcd8;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  transform-origin: center;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.7s ease;
  pointer-events: none;
}

.project-card:hover .project-image {
  transform: scale(0.98);
}

.project-card:hover img,
.project-card:hover video {
  filter: grayscale(0);
  transform: translateY(-8%) scale(1.1);
}

.project-card:hover .project-image::after {
  background: transparent;
}

.project-one .project-image img {
  height: 100%;
}

.project-two .project-image img {
  height: 100%;
}

.project-three .project-image img {
  height: 100%;
}

.aspect-social {
  aspect-ratio: 4 / 5;
}

.aspect-portrait {
  aspect-ratio: 3 / 4;
}

.aspect-wide {
  aspect-ratio: 16 / 9;
}

.aspect-screenshot {
  aspect-ratio: 2904 / 1734;
}

.aspect-plant-data {
  aspect-ratio: 1476 / 1192;
}

.aspect-f1-video {
  aspect-ratio: 2618 / 1530;
}

.view-project {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  backdrop-filter: blur(12px);
  mix-blend-mode: difference;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transition: opacity 0.5s ease, transform 0.5s ease;
  white-space: nowrap;
}

.project-three .view-project {
  top: calc(50% - clamp(4.25rem, 7vw, 6.25rem));
  z-index: 8;
}

.project-two .view-project {
  color: #fff;
  mix-blend-mode: normal;
}

.project-card:hover .view-project {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.project-text {
  position: relative;
  z-index: 5;
}

.bottom-text {
  width: 100%;
  margin: 1.5rem auto 0;
  text-align: center;
}

.project-text h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  transition: transform 0.5s ease;
}

.project-card:hover .project-text h3 {
  transform: translateX(0.5rem);
}

.project-text p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.project-text i {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}

.top-text {
  margin-bottom: 1.5rem;
  color: #fff;
}

.top-text h3 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 0.9;
  text-transform: uppercase;
}

.top-text p {
  justify-content: flex-start;
  border: 0;
  padding: 0;
}

.inside-copy {
  display: grid;
  align-items: center;
}

.inside-copy .project-image,
.inside-text {
  grid-column: 1;
  grid-row: 1;
}

.inside-text {
  position: relative;
  z-index: 5;
  padding-inline: 1rem;
  color: #fff;
  text-align: center;
  mix-blend-mode: difference;
  pointer-events: none;
}

.inside-text h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.8;
  text-transform: uppercase;
  transform: scale(0.95);
  transition: transform 0.7s ease;
}

.inside-copy:hover .inside-text h3 {
  transform: scale(1);
}

.inside-text p {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.5;
  text-transform: uppercase;
  opacity: 0.8;
}

.skills {
  z-index: 20;
  min-height: 100vh;
  margin-top: -20vh;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--soft);
  color: #111;
  box-shadow: 0 -40px 100px rgba(0, 0, 0, 0.15);
}

.skills-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  align-items: center;
  padding: clamp(8rem, 16vw, 12rem) 1rem 14rem;
}

.macro-title-clip {
  width: 100%;
  margin-bottom: clamp(3rem, 8vw, 5rem);
  overflow: hidden;
  text-align: center;
}

.macro-title {
  margin: 0;
  color: #111;
  font-size: 14.5vw;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.8;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(100%) rotate(3deg);
  opacity: 0;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), opacity 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-stage {
  position: relative;
  width: 100%;
  max-width: 1400px;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2.5rem;
}

.skill-list {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.25rem, 0.6vw, 0.5rem);
  color: #111;
}

.skill-list span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  transform: translateY(80px) rotate(2deg);
  opacity: 0;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), opacity 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-small {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
}

.skill-large {
  font-size: clamp(3rem, 7vw, 4rem);
}

.skill-soft {
  color: rgba(17, 17, 17, 0.7);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 500;
}

.skill-faint {
  color: rgba(17, 17, 17, 0.5);
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 500;
}

.floating-elements {
  display: none;
}

.floating-item {
  position: absolute;
  z-index: 2;
  will-change: transform, opacity, filter;
}

.pixel-bar {
  width: 120px;
  height: 24px;
  color: #000;
  background:
    linear-gradient(135deg, transparent 49%, #000 50%) 4px 4px / 16px 16px,
    linear-gradient(#000 0 0) 4px 4px / 16px 16px,
    linear-gradient(#000 0 0) 28px 4px / 16px 16px,
    linear-gradient(#000 0 0) 52px 4px / 16px 16px,
    linear-gradient(#000 0 0) 76px 4px / 16px 16px,
    linear-gradient(#000 0 0) 100px 4px / 16px 16px;
  background-repeat: no-repeat;
  outline: 4px solid #000;
  outline-offset: -4px;
}

.coin-row {
  display: flex;
  gap: 0.75rem;
}

.coin-row span {
  display: block;
  width: 24px;
  height: 32px;
  background:
    linear-gradient(#000 0 0) 4px 0 / 16px 4px,
    linear-gradient(#000 0 0) 4px 28px / 16px 4px,
    linear-gradient(#000 0 0) 0 4px / 4px 24px,
    linear-gradient(#000 0 0) 20px 4px / 4px 24px,
    linear-gradient(#000 0 0) 10px 8px / 4px 16px;
  background-repeat: no-repeat;
}

.pixel-bar-a {
  top: 20%;
  left: 12%;
}

.red-stamp {
  top: 45%;
  left: 8%;
}

.coin-a {
  bottom: 5%;
  left: 16%;
}

.coin-b {
  top: 22%;
  right: 15%;
}

.pixel-bar-b {
  top: 50%;
  right: 12%;
}

.black-stamp {
  right: 18%;
  bottom: 0;
}

.stamp-box {
  position: relative;
  width: 10rem;
  height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border: 3px dashed #000;
  background: #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  padding: 0.75rem;
  overflow: hidden;
  transform: rotate(-15deg);
}

.stamp-red {
  background-clip: content-box;
}

.stamp-red::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  background: #e52222;
  z-index: 0;
}

.stamp-box span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.85;
}

.round-stamp {
  position: relative;
  width: 10rem;
  height: 10rem;
  display: grid;
  place-items: center;
  border: 4px dashed #000;
  background: #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: rotate(12deg);
}

.round-stamp::before {
  content: "";
  position: absolute;
  inset: 0.75rem;
  border-radius: 50%;
  background: #000;
}

.round-stamp span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  animation: spin 10s linear infinite;
}

.round-stamp i {
  position: absolute;
  z-index: 2;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: #fff;
}

.footer {
  z-index: 40;
  min-height: 100vh;
  margin-top: -20vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(8rem, 12vw, 10rem) var(--gutter) 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #111;
  color: #efefef;
  box-shadow: 0 -40px 100px rgba(0, 0, 0, 0.5);
}

.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: #0a0a0a;
  transform: translateY(-30%) scale(1.05);
  transform-origin: bottom;
}

.footer-content,
.footer-meta {
  position: relative;
  z-index: 2;
}

.footer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-kicker {
  margin-bottom: 1.5rem;
  color: rgba(239, 239, 239, 0.5);
}

.footer-title {
  margin: 0;
  color: #efefef;
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.8;
  text-transform: uppercase;
  mix-blend-mode: difference;
}

.footer-title span span {
  display: block;
}

.footer-offset span {
  color: rgba(239, 239, 239, 0.7);
  font-style: italic;
}

.footer-mail {
  width: fit-content;
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 500;
  transition: border-color 0.5s ease;
}

.footer-mail:hover {
  border-color: #fff;
}

.footer-line {
  display: block;
  transform: translateY(120%) rotate(4deg) scale(0.95);
  opacity: 0;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), opacity 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 5rem;
  color: rgba(239, 239, 239, 0.5);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-meta nav {
  display: flex;
  gap: 1.5rem;
}

.footer-meta a {
  transition: color 0.3s ease;
}

.footer-meta a:hover {
  color: #fff;
}

.image-reveal {
  clip-path: inset(15% 10% 15% 10%);
  transform: scale(0.95);
  transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-reveal.is-visible {
  clip-path: inset(0);
  transform: scale(1);
}

.reveal-item {
  display: block;
  transform: translateY(110%) rotate(3deg);
  transform-origin: 0 100%;
  opacity: 0;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), opacity 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-item.is-visible,
.macro-title.is-visible,
.skill-list span.is-visible,
.footer-line.is-visible {
  transform: translateY(0) rotate(0) scale(1);
  opacity: 1;
}

@media (min-width: 768px) {
  .editorial-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(1.5rem, 2vw, 2rem);
  }

  .section-index {
    display: flex;
  }

  .about-me-offset {
    margin-left: 10vw;
  }

  .about-media-wrap {
    grid-column: 2 / span 6;
    margin-bottom: 0;
  }

  .about-media {
    width: 85%;
    aspect-ratio: 4 / 5;
  }

  .orange-block {
    right: -3rem;
    bottom: -5rem;
    width: 66%;
  }

  .black-block {
    left: -2rem;
    top: -4rem;
    width: 60%;
  }

  .about-details {
    grid-column: 9 / span 4;
    align-items: flex-end;
    padding-bottom: 3rem;
    text-align: right;
  }

  .graduation {
    width: 100%;
    margin-left: auto;
  }

  .projects-header-row {
    flex-direction: row;
    align-items: flex-end;
  }

  .project-one {
    grid-column: 2 / span 6;
  }

  .project-two {
    grid-column: 9 / span 4;
    margin-top: 16rem;
  }

  .project-three {
    grid-column: 1 / -1;
    margin-top: 8rem;
  }

  .projects-inner {
    padding-bottom: 46vh;
  }

  .skills-inner {
    padding-bottom: 24rem;
  }

  .bottom-text {
    width: 80%;
    margin-top: 2rem;
    text-align: left;
  }

  .project-text p {
    justify-content: flex-start;
  }

  .top-text {
    color: var(--ink);
    mix-blend-mode: normal;
  }

  .aspect-wide {
    aspect-ratio: 21 / 9;
  }

  .floating-elements {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .footer-offset {
    margin-left: 10vw;
  }
}

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

  .hero-line:first-child {
    width: fit-content;
    margin-inline: auto;
  }

  .hero-line-wide {
    width: 100%;
  }

  .hero-word {
    font-size: clamp(4rem, 16.5vw, 7rem);
    text-align: center;
  }

  .status-tag {
    left: 1.25rem;
  }

  .section-raised {
    padding-bottom: 6rem;
  }

  .projects-inner {
    padding-bottom: 32vh;
  }

  .skills-inner {
    padding-top: 8rem;
    padding-bottom: 14rem;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes pixel-in {
  to {
    opacity: 1;
    transform: translateY(-40%) scale(1);
  }
}

@keyframes pixel-float {
  to {
    transform: translateY(-15px);
  }
}

@keyframes arrow-in {
  to {
    opacity: 0.8;
    transform: translate(-50%, 0);
  }
}

@keyframes arrow-bounce {
  from {
    transform: translate(-50%, 0);
  }
  to {
    transform: translate(-50%, 10px);
  }
}

@keyframes pulse-dot {
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

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