@import url("https://fonts.googleapis.com/css2?family=Anton&family=Cedarville+Cursive&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Jersey+10&family=Pixelify+Sans:wght@400..700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #fffdf1;
  --text: #000000;
  --grid: rgba(0, 0, 0, 0.08);
  --menu-bg: #fffdf1;
  --menu-text: #000000;
  --switch-bg: #e9e6d9;
  --switch-knob: #111111;
  --light: #f9f4eb;
  --dark: #0f0f0f;
  --light2: #f0ece5;
  --accent-1: #463f3a;
  --accent-2: #8a817c;
  --accent-3: #bcb8b1;
  --card-1-stroke: #e67339;
  --card-2-stroke: #a66363;
  --card-3-stroke: #eb3828;
  --card-4-stroke: #a6a09d;
  --card-5-stroke: #99938a;
  --card-6-stroke: #5f7c98;
  --card-base-stroke: #e0e0e0;
  --card-copy: #000;
}
body.dark {
  --bg: #101114;
  --text: #f2f2f2;
  --grid: rgba(255, 255, 255, 0.08);
  --menu-bg: rgba(255, 255, 255, 0.1);
  --menu-text: #f2f2f2;
  --switch-bg: #2a2c33;
  --switch-knob: #f2f2f2;
}
html,
body {
  width: 100%;
  height: auto;
  font-family: "Anton", sans-serif;
  position: relative;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  overflow-y: auto;
}
html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

body.menu-open {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body.menu-open::-webkit-scrollbar {
  width: 0;
  height: 0;
}

html.is-loading,
body.is-loading {
  overflow: hidden;
  position: fixed;
  width: 100%;
  inset: 0;
  overscroll-behavior: none;
  touch-action: none;
}

html.is-loading,
body.is-loading {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

html.is-loading::-webkit-scrollbar,
body.is-loading::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

html.is-loading *::-webkit-scrollbar,
body.is-loading *::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(to right, var(--grid) 1px, transparent 1px);
  background-size: 120px 100%;
  pointer-events: none;
  z-index: 0;
}
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-left {
  position: fixed;
  top: 24px;
  left: 24px;
  font-size: 14px;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 1px;
  color: var(--text);
  z-index: 10002;
  opacity: 0;
  transform: translateY(-6px);
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease;
} /* MENU */
.top-left img {
  width: 72px;
  height: auto;
  display: block;
}
.top-left .logo-dark {
  display: none;
}
body.dark .top-left .logo-light {
  display: none;
}
body.dark .top-left .logo-dark {
  display: block;
}
.top-left.scrolled {
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  backdrop-filter: blur(10px);
}
.menu {
  position: fixed;
  top: 40px;
  right: 40px;
  background: var(--menu-bg);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--menu-text);
  z-index: 10001;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    background 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background-color: #1a1a1a;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
  z-index: 10000;
}
.menu-overlay canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.menu-links {
  position: relative;
  width: min(50%, 560px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2em;
  padding: 2rem;
  z-index: 1;
}
.menu-item a {
  color: #4d4d4d;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  background:
    linear-gradient(120deg, #ffffff 0%, #c9fff1 35%, #ffd6ff 65%, #ffffff 100%)
      no-repeat,
    #4d4d4d;
  background-size: 0% 100%;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #4d4d4d;
  position: relative;
  display: inline-block;
  padding-bottom: 0.08em;
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition:
    color 0.25s ease,
    background-size 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.4s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    text-shadow 0.45s ease;
}
.menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.08em;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.9),
    rgba(201, 255, 241, 0.9),
    rgba(255, 214, 255, 0.9),
    rgba(255, 255, 255, 0.9),
    transparent
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-item a::before {
  content: "";
  position: absolute;
  inset: -0.2em -0.25em -0.3em -0.25em;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 255, 255, 0.08),
    transparent 55%
  );
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: -1;
}
.menu-item a:hover {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background-size: 100% 100%;
  letter-spacing: 0.12em;
  transform: translateX(12px) skewX(-2deg);
  text-shadow:
    0 8px 22px rgba(255, 255, 255, 0.28),
    0 2px 6px rgba(255, 255, 255, 0.2);
}
.menu-item a:hover::after {
  transform: scaleX(1);
}
.menu-item a:hover::before {
  opacity: 1;
}
.menu-socials {
  position: absolute;
  right: 2.5em;
  bottom: 2em;
  display: grid;
  grid-auto-flow: column;
  gap: 2em;
  font-family: "Work Sans", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 1;
}
.menu-social-link {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease,
    text-shadow 0.35s ease,
    letter-spacing 0.35s ease;
}

@media (max-width: 720px) {
  .menu-social-link {
    margin-left: 0;
  }
  .menu-socials {
    right: 0.6em;
  }
}
.menu-social-link::before {
  content: "";
  position: absolute;
  inset: -0.35em -0.5em;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.16),
    transparent 60%
  );
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}
.menu-social-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 255, 241, 0.9),
    rgba(255, 214, 255, 0.9),
    rgba(255, 255, 255, 0.9),
    transparent
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-social-link:hover {
  color: #ffffff;
  transform: translateY(-3px);
  letter-spacing: 0.3em;
  text-shadow:
    0 10px 24px rgba(255, 255, 255, 0.28),
    0 2px 6px rgba(255, 255, 255, 0.2);
}
.menu-social-link:hover::before {
  opacity: 1;
}
.menu-social-link:hover::after {
  transform: scaleX(1);
}
.theme-switch {
  position: fixed;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  gap: 6px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  z-index: 10002;
  opacity: 0;
  transform: translateY(6px);
}
.theme-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.6);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.theme-btn:hover {
  transform: translateY(-1px);
}
body.dark .theme-switch {
  background: rgba(255, 255, 255, 0.08);
}
body.dark .theme-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #f2f2f2;
}
.theme-btn.active {
  background: rgba(0, 0, 0, 0.15);
}
body.dark .theme-btn.active {
  background: rgba(255, 255, 255, 0.25);
}
body.dark .theme-btn[data-theme="light"]:not(.active) {
  background: transparent;
}
body:not(.dark) .theme-btn[data-theme="dark"]:not(.active) {
  background: transparent;
}
.theme-icon {
  font-size: 12px;
  line-height: 1;
}
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100svh;
  background-color: var(--dark);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  will-change: clip-path;
  z-index: 0;
}

.hero-overlay .counter {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  color: var(--light);
}

.hero-overlay .counter h1 {
  font-size: 4rem;
  font-weight: 500;
}

.overlay-text-container {
  position: absolute;
  top: 2rem;
  left: 2rem;
  height: 2rem;
  overflow: hidden;
}

.overlay-text-container .overlay-text {
  display: flex;
  flex-direction: column;
  transform: translateY(2rem);
  will-change: transform;
}
.overlay-text-container .overlay-text p {
  color: var(--light);
  height: 2rem;
  display: flex;
  align-items: center;
}

.hero-images {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  gap: 10vw;
  will-change: gap;
  z-index: 2;
}

.hero-images .img {
  width: 10vw;
  aspect-ratio: 5/7;
  transform: translateY(50%) scale(0.5);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0;
  will-change: opacity, transform, clip-path;
}

.hero-header {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  z-index: 1;
}

.hero-header h1 {
  text-transform: uppercase;
  text-align: center;
  font-size: 15vw;
  font-weight: 500;
  line-height: 0.85;
}

.hero-header h1 .word {
  transform: translateY(100%);
  will-change: transform;
  display: inline-block;
}

.about.anime-text-container {
  position: relative;
  width: 100%;
  min-height: 100svh;
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-container {
  width: min(3000px, 96vw);
  min-height: 80svh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 3.5rem;
  color: #000;
}

body.dark .copy-container {
  color: #fff;
}

body.dark .anime-text p,
body.dark .anime-text .word span {
  color: #fff;
}

.anime-text {
  width: min(90ch, 100%);
}

.anime-text p {
  text-align: center;
  font-family: "Roboto", sans-serif;
  margin-bottom: 2rem;
  font-size: clamp(1.4rem, 1.2rem + 1.2vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
}

.anime-text .word {
  display: inline-block;
  position: relative;
  margin-right: 0.2rem;
  margin-bottom: 0.2rem;
  padding: 0.1rem 0.2rem;
  border-radius: 2rem;
  will-change: background-color, opacity;
}

.animate-text .word.keyword-wrapper {
  margin: 0 0.4rem 0.2rem 0.2rem;
}

.animate-text .word span {
  position: relative;
}

.animate-text .word span.keyword {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  padding: 0.1rem 0;
  color: #fff;
}

.anime-text .word span.keyword::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 1rem);
  height: calc(100% + 0.4rem);
  color: #fff;
  border-radius: 2rem;
  z-index: -1;
}

.anime-text .word span.keyword.vibrant::before,
.anime-text .word span.keyword.shape::before,
.anime-text .word span.keyword.interactive::before {
  background-color: #3a6b73;
}

.anime-text .word span.keyword.living::before,
.anime-text .word span.keyword.expression::before,
.anime-text .word span.keyword.storytelling::before {
  background-color: #8c7c6c;
}

.anime-text .word span.keyword.clarity::before,
.anime-text .word span.keyword.intuitive::before,
.anime-text .word span.keyword.vision::before {
  background-color: #5d8aa8;
}

.anime-text .word,
.anime-text .word span {
  opacity: 0;
}

@media (max-width: 1000px) {
  .top-left img {
    width: 58px;
  }
  .hero-overlay .counter {
    right: 1rem;
    bottom: 1rem;
  }

  .hero-images {
    padding: 0 0.5rem;
    gap: 2.5vw;
  }

  .hero-images .img {
    width: 20vw;
  }

  .anime-text {
    width: 100%;
  }

  .anime-text p {
    font-size: 1.25rem;
  }

  .about.anime-text-container {
    padding: 6rem 1.25rem;
  }

  .copy-container {
    width: 100%;
    min-height: calc(100svh - 12rem);
    padding: 2.5rem 1.5rem;
  }

  .animate-text .word {
    margin-right: 0.1rem;
    margin-bottom: 0.15rem;
    padding: 0.1rem 0.2rem;
  }

  .animate-text .word.keyword-wrapper {
    margin: 0 0.2rem 0.1rem 0.1rem;
  }
}

footer h1,
header h1 {
  font-size: clamp(2rem, 5vw, 7rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.05rem;
}

.row h3 {
  font-size: clamp(1.25rem, 2.5vw, 3rem);
  font-weight: 450;
  line-height: 1.25;
  letter-spacing: -0.025rem;
}

.row img,
.row svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header,
footer {
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.row {
  width: 100%;
  padding: 0 1rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1rem;
}

.card1-container {
  position: relative;
  flex: 1;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
}

.card1-container .svg-stroke {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  width: 100%;
  height: 100%;
}

#card1-1 .svg-stroke-1 svg path {
  stroke: var(--card-1-stroke);
}

#card1-2 .svg-stroke-1 svg path {
  stroke: var(--card-2-stroke);
}

#card1-3 .svg-stroke-1 svg path {
  stroke: var(--card-3-stroke);
}

#card1-4 .svg-stroke-1 svg path {
  stroke: var(--card-4-stroke);
}

#card1-5 .svg-stroke-1 svg path {
  stroke: var(--card-5-stroke);
}

#card1-6 .svg-stroke-1 svg path {
  stroke: var(--card-6-stroke);
}

.card1-container .svg-stroke-2 svg path {
  stroke: var(--card-base-stroke);
}

.card1-title {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  color: var(--card-copy);
}

.card1-title .word {
  will-change: transform;
}

.skills header h1 span {
  font-family: "Pacifico", cursive;
}

.skills header h1 {
  font-size: 8rem;
  line-height: 1.1;
}
.scroll h1 {
  font-family: "Pacifico", cursive;
}

.outro {
  height: 100svh;
  padding: 4em 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #efe9df;
}
.outro-inner {
  text-align: center;
  width: min(1200px, 92vw);
}
.outro h1,
.outro h2 {
  text-align: center;
}
.outro h2 {
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: 0.05em;
}
.outro h1 {
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.outro-kicker {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  font-family: "Work Sans", sans-serif;
  color: rgba(239, 233, 223, 0.7);
}
.outro-email {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 5vw, 4rem);
  font-family: "Pacifico", cursive;
  color: rgba(239, 233, 223, 0.9);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}
.outro-email a {
  color: inherit;
  text-decoration: none;
}
.outro-links {
  position: absolute;
  right: 2.5em;
  bottom: 2em;
  display: grid;
  grid-auto-flow: column;
  gap: 2.5em;
  font-family: "Work Sans", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.outro-link {
  color: rgba(239, 233, 223, 0.75);
  text-decoration: none;
  position: relative;
  display: inline-block;
  letter-spacing: 0.2em;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease,
    text-shadow 0.35s ease,
    letter-spacing 0.35s ease;
}
.outro-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2em;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 255, 241, 0.9),
    rgba(255, 214, 255, 0.9),
    rgba(255, 255, 255, 0.9),
    transparent
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.outro-link:hover {
  color: #ffffff;
  transform: translateY(-3px);
  letter-spacing: 0.3em;
  text-shadow:
    0 10px 24px rgba(255, 255, 255, 0.28),
    0 2px 6px rgba(255, 255, 255, 0.2);
}
.outro-link:hover::after {
  transform: scaleX(1);
}
body:not(.dark) .outro-link.instagram {
  color: #000000;
}
body:not(.dark) .outro,
body:not(.dark) .outro h1,
body:not(.dark) .outro h2,
body:not(.dark) .outro-kicker,
body:not(.dark) .outro-email,
body:not(.dark) .outro-link {
  color: #000000;
}

@media (max-width: 1000px) {
  .row {
    flex-direction: column;
  }

  .card-title {
    bottom: 1rem;
    left: 1rem;
  }

  .outro h2 {
    font-size: clamp(2.5rem, 8vw, 6rem);
  }
  .outro h1 {
    font-size: clamp(3rem, 12vw, 9rem);
  }
  .outro-links {
    right: 1.5em;
    bottom: 1.2em;
    gap: 1.5em;
    font-size: 0.85rem;
  }
}
