body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  background-color: #0a0a0a;
  padding: 0;
  margin: 0;
  height: 100vh;
  width: 100dvw;
  position: relative;
  cursor: none;
}
body.animating {
  overflow: hidden;
}

.cursor {
  position: fixed;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
  mix-blend-mode: difference;
}
.cursor.active {
  opacity: 0.5;
  transform: scale(0);
}
.cursor.hovered {
  opacity: 0.08;
}

.cursor-follower {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.3);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: translate(5px, 5px);
  mix-blend-mode: difference;
}
.cursor-follower.active {
  opacity: 0.7;
  transform: scale(3);
}
.cursor-follower.hovered {
  opacity: 0.08;
}

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  z-index: 9996;
  pointer-events: none;
  animation: grainShift 6s steps(8) infinite;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  14% {
    transform: translate(-3%, -8%);
  }
  28% {
    transform: translate(-12%, 4%);
  }
  42% {
    transform: translate(6%, -20%);
  }
  57% {
    transform: translate(-4%, 18%);
  }
  71% {
    transform: translate(12%, -2%);
  }
  85% {
    transform: translate(-8%, 12%);
  }
  100% {
    transform: translate(3%, -4%);
  }
}
.cursor-coords {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1rem;
  font-weight: 300;
  color: #cac3c3;
  z-index: 1000;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.cursor-coords span {
  display: inline-block;
  min-width: 45px;
}

.corner-meta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-size: 1rem;
  font-weight: 300;
  color: #cac3c3;
  z-index: 1000;
}

@media (max-width: 768px) {
  .corner-meta,
  .cursor-coords {
    display: none;
  }
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 1rem 1rem;
  background: transparent;
  z-index: 9999;
}
.header .logo img {
  height: 40px;
  width: 40px;
  filter: invert(1);
  opacity: 0.6;
}
.header h1 {
  color: #cac3c3;
  text-align: center;
  display: flex;
  justify-self: center;
  font-weight: 200;
  font-size: clamp(1rem, 3vw, 1.1rem);
}
.header .nav-main {
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  margin-right: 3rem;
}
.header .nav-main .nav-link {
  text-decoration: none;
  color: #cac3c3;
  font-weight: 200;
  font-size: clamp(1rem, 3vw, 1.1rem);
}
.header .nav-main .nav-link:hover {
  transform: scale(1.1);
  color: #ff9e00;
}

.hero-section {
  min-height: 100vh;
  min-width: 100vw;
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #0a0a0a;
  z-index: 4;
}
.hero-section .hero-wrapper .hero-video {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100vw;
  height: 120vh;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center center;
  will-change: transform;
  filter: brightness(0.5) contrast(1.1) sepia(0.4);
}
@keyframes bg-animation {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -5%);
  }
  20% {
    transform: translate(-10%, 5%);
  }
  30% {
    transform: translate(5%, -10%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 5%);
  }
  60% {
    transform: translate(15%, 0);
  }
  70% {
    transform: translate(0, 10%);
  }
  80% {
    transform: translate(-15%, 0);
  }
  90% {
    transform: translate(10%, 5%);
  }
  100% {
    transform: translate(5%, 0);
  }
}
.hero-section .hero-wrapper .hero-container {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 0px 0px;
  grid-auto-flow: row;
  justify-items: center;
  align-items: center;
  position: relative;
}
.hero-section .hero-wrapper .hero-container h1 {
  color: #cac3c3;
  grid-area: 2/3/5/6;
  font-size: clamp(1rem, 11vw, 20rem);
  justify-self: center;
  align-self: center;
  z-index: 3;
  margin: 0;
  padding: 0;
  line-height: 0.6;
}
.hero-section .hero-wrapper .hero-container h1 span {
  font-family: "Rouge Script", cursive;
  color: #ff9e00;
  font-weight: 300;
}
.hero-section .hero-wrapper .hero-container h2 {
  color: white;
  grid-area: 4/5/5/7;
  font-size: clamp(1rem, 5vw, 3rem);
  justify-self: center;
  align-self: center;
  z-index: 0;
  padding: 0;
  line-height: 0.6;
  margin-left: 6rem;
  margin-bottom: 1rem;
  font-weight: 100;
  filter: brightness(0.8);
}
.hero-section .hero-wrapper .hero-container h6 {
  color: #cac3c3;
  font-size: clamp(1rem, 5vw, 1rem);
  margin-top: 1rem;
  font-weight: 100;
}
.hero-section .hero-wrapper .hero-container .scroll-indicator {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  bottom: 5rem;
  opacity: 0.5;
  left: 50%;
  transform: translateX(-50%);
  cursor: none;
}
.hero-section .hero-wrapper .hero-container .scroll-indicator .arrow {
  width: 1rem;
  height: 1rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  40% {
    transform: translateY(0.5rem) rotate(-45deg);
  }
  60% {
    transform: translateY(0.25rem) rotate(-45deg);
  }
}

@media (max-width: 1200px) {
  .hero-section .hero-wrapper .hero-container h1 {
    grid-area: 2/2/5/7;
    font-size: clamp(1rem, 12vw, 18rem);
  }
  .hero-section .hero-wrapper .hero-container h2 {
    grid-area: 4/4/5/8;
    margin-left: 4rem;
    font-size: clamp(1rem, 4.5vw, 2.8rem);
  }
}
@media (max-width: 992px) {
  .hero-section .hero-wrapper .hero-video {
    height: 100vh;
    top: -5%;
  }
  .hero-section .hero-wrapper .hero-container h1 {
    grid-area: 2/2/5/8;
    font-size: clamp(1rem, 13vw, 15rem);
  }
  .hero-section .hero-wrapper .hero-container h2 {
    grid-area: 4/3/5/9;
    margin-left: 3rem;
    font-size: clamp(1rem, 4vw, 2.5rem);
  }
  .hero-section .hero-wrapper .hero-container .scroll-indicator {
    bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .hero-section .hero-wrapper .hero-video {
    height: 100vh;
    top: 0;
    filter: brightness(0.6) contrast(1.1) sepia(0.3);
  }
  .hero-section .hero-wrapper .hero-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-section .hero-wrapper .hero-container h1 {
    grid-area: 2/1/5/5;
    font-size: clamp(1.5rem, 14vw, 12rem);
    line-height: 0.7;
  }
  .hero-section .hero-wrapper .hero-container h2 {
    grid-area: 4/1/5/5;
    margin-left: 0;
    margin-bottom: 2rem;
    font-size: clamp(1rem, 5vw, 2.2rem);
    justify-self: center;
    text-align: center;
  }
  .hero-section .hero-wrapper .hero-container h6 {
    font-size: 0.9rem;
  }
  .hero-section .hero-wrapper .hero-container .scroll-indicator {
    bottom: 3rem;
  }
  .hero-section .hero-wrapper .hero-container .scroll-indicator .arrow {
    width: 0.9rem;
    height: 0.9rem;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-wrapper .hero-video {
    height: 100vh;
    top: 0;
    filter: brightness(0.7) contrast(1.1) sepia(0.2);
  }
  .hero-section .hero-wrapper .hero-container h1 {
    grid-area: 2/1/4/5;
    font-size: clamp(1.5rem, 15vw, 10rem);
    line-height: 0.8;
  }
  .hero-section .hero-wrapper .hero-container h2 {
    grid-area: 3/1/5/5;
    margin-bottom: 3rem;
    font-size: clamp(1rem, 5.5vw, 2rem);
  }
  .hero-section .hero-wrapper .hero-container h6 {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }
  .hero-section .hero-wrapper .hero-container .scroll-indicator {
    bottom: 2rem;
    opacity: 0.6;
  }
  .hero-section .hero-wrapper .hero-container .scroll-indicator .arrow {
    width: 0.8rem;
    height: 0.8rem;
    border-width: 1.5px;
  }
}
@media (max-width: 375px) {
  .hero-section .hero-wrapper .hero-container h1 {
    font-size: clamp(1.2rem, 14vw, 8rem);
  }
  .hero-section .hero-wrapper .hero-container h2 {
    font-size: clamp(0.9rem, 5vw, 1.6rem);
    margin-bottom: 2.5rem;
  }
  .hero-section .hero-wrapper .hero-container h6 {
    font-size: 0.7rem;
  }
  .hero-section .hero-wrapper .hero-container .scroll-indicator {
    bottom: 1.5rem;
  }
  .hero-section .hero-wrapper .hero-container .scroll-indicator .arrow {
    width: 0.7rem;
    height: 0.7rem;
  }
}
@media (max-width: 320px) {
  .hero-section .hero-wrapper .hero-container h1 {
    font-size: clamp(1rem, 13vw, 6rem);
  }
  .hero-section .hero-wrapper .hero-container h2 {
    font-size: clamp(0.8rem, 4.5vw, 1.4rem);
  }
}
@media (min-width: 1600px) {
  .hero-section .hero-wrapper .hero-container h1 {
    font-size: clamp(1rem, 10vw, 22rem);
  }
  .hero-section .hero-wrapper .hero-container h2 {
    margin-left: 7rem;
    font-size: clamp(1rem, 4vw, 3.5rem);
  }
}
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section .hero-wrapper .hero-video {
    height: 150vh;
    top: -20%;
  }
  .hero-section .hero-wrapper .hero-container h1 {
    font-size: clamp(1rem, 10vw, 15rem);
  }
  .hero-section .hero-wrapper .hero-container h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(0.8rem, 4vw, 2.2rem);
  }
  .hero-section .hero-wrapper .hero-container .scroll-indicator {
    bottom: 1.5rem;
  }
}
@media (orientation: portrait) and (max-width: 480px) {
  .hero-section .hero-wrapper .hero-container h2 {
    margin-bottom: 2rem;
  }
}
.about-section {
  min-height: 70vh;
  min-width: 100vw;
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #0a0a0a;
  z-index: 3;
}
.about-section .about-wrapper .about-container {
  height: 70vh;
  width: 100vw;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 0px 0px;
  grid-auto-flow: row;
  justify-items: center;
  align-items: center;
  position: relative;
}
.about-section .about-wrapper .about-container h1 {
  color: #ff9e00;
  font-size: clamp(3rem, 15vw, 15rem);
  display: flex;
  justify-self: end;
  align-self: end;
  grid-area: 2/2/3/3;
  line-height: 0.3;
  margin: 0;
  padding: 0;
  margin-left: 1rem;
  font-style: italic;
  font-weight: 300;
}
@media (max-width: 1024px) {
  .about-section .about-wrapper .about-container h1 {
    font-size: clamp(2.5rem, 12vw, 10rem);
    grid-area: 3/1/4/3;
    margin-left: 2rem;
  }
}
@media (max-width: 768px) {
  .about-section .about-wrapper .about-container h1 {
    font-size: clamp(2rem, 10vw, 6rem);
    grid-area: 2/1/3/5;
    justify-self: start;
    margin-left: 1rem;
    line-height: 0.5;
  }
}
.about-section .about-wrapper .about-container h2 {
  color: #cac3c3;
  font-size: clamp(3rem, 15vw, 15rem);
  display: flex;
  justify-self: end;
  align-self: start;
  grid-area: 3/2/5/3;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .about-section .about-wrapper .about-container h2 {
    font-size: clamp(2.5rem, 12vw, 10rem);
    grid-area: 4/1/5/3;
    margin-left: 2rem;
  }
}
@media (max-width: 768px) {
  .about-section .about-wrapper .about-container h2 {
    font-size: clamp(2rem, 10vw, 6rem);
    grid-area: 3/1/4/5;
    justify-self: start;
    margin-left: 1rem;
  }
}
.about-section .about-wrapper .about-container .first-paragraph {
  color: #cac3c3;
  text-align: justify;
  grid-area: 2/3/4/7;
  margin-left: 5rem;
  font-size: clamp(1.5rem, 1vw, 1.5rem);
  text-justify: inter-word;
  hyphens: auto;
  line-height: 1.4;
  margin-bottom: 0rem;
  font-weight: 200;
}
.about-section .about-wrapper .about-container .first-paragraph span {
  color: #ff9e00;
  font-style: italic;
}
@media (max-width: 1024px) {
  .about-section .about-wrapper .about-container .first-paragraph {
    grid-area: 3/4/5/8;
    margin-left: 2rem;
    font-size: clamp(0.875rem, 3vw, 1.2rem);
    line-height: 1.7;
  }
}
@media (max-width: 768px) {
  .about-section .about-wrapper .about-container .first-paragraph {
    grid-area: 4/1/5/8;
    margin-left: 0;
    padding: 0 1rem;
    font-size: clamp(0.875rem, 4vw, 1rem);
    text-align: left;
    line-height: 1.8;
    margin-top: 2rem;
  }
}
.about-section .about-wrapper .about-container .tech-section {
  grid-area: 4/3/5/7;
  margin-top: 3rem;
  margin-left: 5rem;
}
@media (max-width: 1024px) {
  .about-section .about-wrapper .about-container .tech-section {
    grid-area: 5/4/6/8;
    margin-left: 2rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .about-section .about-wrapper .about-container .tech-section {
    grid-area: 5/1/6/8;
    margin-left: 0;
    padding: 0 1rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
.about-section .about-wrapper .about-container .tech-section .tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: left;
}
@media (max-width: 768px) {
  .about-section .about-wrapper .about-container .tech-section .tech-badges {
    gap: 0.75rem;
    justify-content: center;
  }
}
.about-section .about-wrapper .about-container .tech-section .tech-badges .badge {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: #cac3c3;
  font-size: 0.8rem;
  font-weight: 400;
  transition: all 0.3s ease;
  z-index: 10;
}
@media (max-width: 768px) {
  .about-section .about-wrapper .about-container .tech-section .tech-badges .badge {
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
  }
}
.about-section .about-wrapper .about-container .tech-section .tech-badges .badge:hover {
  background: rgba(255, 152, 0, 0.1);
  border-color: #ff9e00;
  color: #ff9e00;
  transform: translateY(-2px);
}

.projects-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  background-color: #0a0a0a;
}

.projects-title {
  position: absolute;
  top: 10%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  width: 100%;
  overflow: hidden;
}
.projects-title .projects-title-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-infinite 20s linear infinite;
}
.projects-title h1 {
  font-size: clamp(4rem, 12vw, 15rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  letter-spacing: -0.05em;
  white-space: nowrap;
  padding-right: 4rem;
  flex-shrink: 0;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.projects-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.projects-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.project-card {
  min-width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  position: relative;
}

.project-visual {
  position: relative;
  width: 50%;
  aspect-ratio: 2/1;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease forwards;
  animation-delay: 0.2s;
}
.project-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.6s ease;
}
.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.project-content {
  width: 50%;
  padding: 0 4rem 0 4rem;
  color: #ff9e00;
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease forwards;
  animation-delay: 0.4s;
}
.project-content .project-num {
  display: block;
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #ff9e00;
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.project-content h2 {
  font-size: clamp(2rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.project-content p {
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  line-height: 1.7;
  color: #cac3c3;
  margin-bottom: 2rem;
  font-weight: 300;
}
.project-content .tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.project-content .tech-stack span {
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
  animation: popIn 0.4s ease forwards;
}
.project-content .tech-stack span:nth-child(1) {
  animation-delay: 0.7s;
}
.project-content .tech-stack span:nth-child(2) {
  animation-delay: 0.8s;
}
.project-content .tech-stack span:nth-child(3) {
  animation-delay: 0.9s;
}
.project-content .tech-stack span:nth-child(4) {
  animation-delay: 1s;
}
.project-content .tech-stack span:nth-child(5) {
  animation-delay: 1.1s;
}
.project-content .tech-stack span:nth-child(6) {
  animation-delay: 1.2s;
}
.project-content .tech-stack span:nth-child(7) {
  animation-delay: 1.3s;
}
.project-content .tech-stack span:nth-child(8) {
  animation-delay: 1.4s;
}
.project-content .tech-stack span:nth-child(9) {
  animation-delay: 1.5s;
}
.project-content .tech-stack span:nth-child(10) {
  animation-delay: 1.6s;
}
.project-content .tech-stack span:hover {
  background: rgba(255, 152, 0, 0.15);
  border-color: #ff9e00;
  color: #ff9e00;
  transform: translateY(-2px) scale(1);
}
.project-content .view-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  border: 2px solid #ff9e00;
  color: #ff9e00;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 1.2s;
}
.project-content .view-btn:hover {
  background: #ff9e00;
  color: #000;
  transform: translateX(5px) translateY(0);
}

.project-card:hover .project-visual img {
  transform: scale(1.05);
}

.project-card:nth-child(2) .project-visual {
  animation-delay: 0.4s;
}
.project-card:nth-child(2) .project-content {
  animation-delay: 0.6s;
}
.project-card:nth-child(2) .tech-stack span:nth-child(1) {
  animation-delay: 0.9s;
}
.project-card:nth-child(2) .tech-stack span:nth-child(2) {
  animation-delay: 1s;
}
.project-card:nth-child(2) .tech-stack span:nth-child(3) {
  animation-delay: 1.1s;
}
.project-card:nth-child(2) .tech-stack span:nth-child(4) {
  animation-delay: 1.2s;
}
.project-card:nth-child(2) .tech-stack span:nth-child(5) {
  animation-delay: 1.3s;
}
.project-card:nth-child(2) .tech-stack span:nth-child(6) {
  animation-delay: 1.4s;
}
.project-card:nth-child(2) .tech-stack span:nth-child(7) {
  animation-delay: 1.5s;
}
.project-card:nth-child(2) .tech-stack span:nth-child(8) {
  animation-delay: 1.6s;
}
.project-card:nth-child(2) .tech-stack span:nth-child(9) {
  animation-delay: 1.7s;
}
.project-card:nth-child(2) .tech-stack span:nth-child(10) {
  animation-delay: 1.8s;
}
.project-card:nth-child(2) .view-btn {
  animation-delay: 1.4s;
}

.project-card:nth-child(3) .project-visual {
  animation-delay: 0.6s;
}
.project-card:nth-child(3) .project-content {
  animation-delay: 0.8s;
}
.project-card:nth-child(3) .tech-stack span:nth-child(1) {
  animation-delay: 1.1s;
}
.project-card:nth-child(3) .tech-stack span:nth-child(2) {
  animation-delay: 1.2s;
}
.project-card:nth-child(3) .tech-stack span:nth-child(3) {
  animation-delay: 1.3s;
}
.project-card:nth-child(3) .tech-stack span:nth-child(4) {
  animation-delay: 1.4s;
}
.project-card:nth-child(3) .tech-stack span:nth-child(5) {
  animation-delay: 1.5s;
}
.project-card:nth-child(3) .tech-stack span:nth-child(6) {
  animation-delay: 1.6s;
}
.project-card:nth-child(3) .tech-stack span:nth-child(7) {
  animation-delay: 1.7s;
}
.project-card:nth-child(3) .tech-stack span:nth-child(8) {
  animation-delay: 1.8s;
}
.project-card:nth-child(3) .tech-stack span:nth-child(9) {
  animation-delay: 1.9s;
}
.project-card:nth-child(3) .tech-stack span:nth-child(10) {
  animation-delay: 2s;
}
.project-card:nth-child(3) .view-btn {
  animation-delay: 1.6s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .project-card {
    flex-direction: column;
    padding: 2rem;
    justify-content: center;
  }
  .project-visual,
  .project-content {
    width: 100%;
  }
  .project-visual {
    height: 40vh;
    margin-bottom: 2rem;
  }
  .project-content {
    padding: 0 1rem;
  }
  .project-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }
  .project-content p {
    font-size: 1rem;
  }
  .projects-title h1 {
    font-size: clamp(3rem, 10vw, 8rem);
  }
}
@media (max-width: 768px) {
  .project-card {
    padding: 1.5rem;
  }
  .project-visual {
    height: 35vh;
  }
  .project-content .tech-stack {
    gap: 0.5rem;
  }
  .project-content .tech-stack span {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
  .project-content .view-btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
  }
}
.principle {
  min-height: 90vh;
  min-width: 100vw;
  overflow: visible;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  margin: 0;
  padding: 4rem 2rem;
  position: relative;
  background-color: #0a0a0a;
  z-index: 8;
}
.principle .principle-number {
  font-size: 10vw;
  font-weight: 800;
  line-height: 0.9;
  padding: 0.1em 0;
  margin-right: 2rem;
  color: #ff9e00;
  position: sticky;
  top: 25px;
  align-self: flex-start;
  flex: 0 0 auto;
  width: 160px;
  max-width: 180px;
  height: -moz-fit-content;
  height: fit-content;
}
.principle .principle-number-last {
  font-size: 10vw;
  font-weight: 800;
  line-height: 0.9;
  padding: 0.1em 0;
  margin-right: 2rem;
  color: #ff9e00;
  top: 25px;
  align-self: flex-start;
  flex: 0 0 auto;
  width: 160px;
  max-width: 180px;
  height: -moz-fit-content;
  height: fit-content;
}
.principle .principle-content {
  flex: 1 1 auto;
  max-width: clamp(400px, 50vw, 1000px);
  padding: 2rem;
  color: #ff9e00;
}
.principle .principle-content .title {
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
  color: #ff9e00;
}
.principle .principle-content .story p {
  font-size: clamp(1rem, 1.3vw, 2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-weight: 100;
}
.principle .principle-content .story p:last-child {
  margin-bottom: 0;
}
.principle .principle-content .story .highlight {
  color: #ff9e00;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .principle {
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
  .principle .principle-number {
    font-size: clamp(3rem, 10vw, 8rem);
    width: 120px;
    margin-right: 1rem;
  }
  .principle .principle-content {
    padding: 1.5rem;
  }
  .principle .principle-content .title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
  }
  .principle .principle-content .story p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .principle {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }
  .principle .principle-number {
    position: relative;
    top: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .principle .principle-content {
    padding: 1rem;
  }
  .principle .principle-content .title {
    margin-bottom: 1.5rem;
  }
  .principle .principle-content .story p {
    margin-bottom: 1.25rem;
  }
}
.contact-section {
  min-height: 40vh;
  min-width: 100vw;
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  position: sticky;
  bottom: 0;
  z-index: 0;
  background-color: black;
  z-index: 1;
}
.contact-section .contact-wrapper .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 120vh;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center center;
  will-change: transform;
  filter: brightness(0.5) contrast(1.1) sepia(0.4);
}
.contact-section .contact-wrapper .contact-container {
  height: 40vh;
  width: 100vw;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 0px 0px;
  grid-auto-flow: row;
  justify-items: center;
  align-items: center;
  position: relative;
}
.contact-section .contact-wrapper .contact-container h2 {
  color: #cac3c3;
  font-size: clamp(3rem, 10vw, 10rem);
  grid-area: 3/1/4/5;
  letter-spacing: -0.02em;
  margin: 0;
}
.contact-section .contact-wrapper .contact-container h1 {
  color: #cac3c3;
  font-size: clamp(3rem, 10vw, 10rem);
  grid-area: 2/1/4/6;
  letter-spacing: -0.02em;
  margin: 0;
  margin-right: 5rem;
}
.contact-section .contact-wrapper .contact-container h1 span {
  font-weight: 200;
  font-style: italic;
  color: #ff9e00;
}
.contact-section .contact-wrapper .contact-container .socials {
  grid-area: 2/5/5/8;
  display: flex;
  justify-self: start;
  gap: 2rem;
  z-index: 10;
}
.contact-section .contact-wrapper .contact-container .socials .image-with-label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.contact-section .contact-wrapper .contact-container .socials .image-with-label .label {
  font-size: 0.9rem;
  color: #cac3c3;
  text-decoration: none;
}
.contact-section .contact-wrapper .contact-container .socials img {
  filter: invert(1);
  height: 5rem;
  width: 5rem;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section .contact-wrapper .contact-container .socials img:hover {
  transform: scale(1.1);
}/*# sourceMappingURL=main.css.map */