:root {
  --ink: #121212;
  --paper: #f0efe9;
  --acid: #d8ff00;
  --orange: #ff4d00;
  --violet: #6e41ff;
  --line: rgba(18, 18, 18, 0.2);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  cursor: none;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.cursor {
  position: fixed;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
  mix-blend-mode: difference;
}
.cursor.active {
  width: 56px;
  height: 56px;
  background: #fff;
}
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  border-bottom: 1px solid var(--line);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.logo {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.07em;
}
.logo span {
  font-size: 0.55rem;
  vertical-align: top;
  margin-left: 3px;
}
.nav nav {
  display: flex;
  gap: 32px;
  font-size: 0.86rem;
}
.nav nav a {
  position: relative;
}
.nav nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--ink);
  transition: right 0.25s;
}
.nav nav a:hover:after {
  right: 0;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  font: inherit;
  color: inherit;
}
.hero {
  min-height: 100vh;
  padding: 148px 3vw 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.eyebrow {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.showreel {
  position: absolute;
  width: min(42vw, 610px);
  aspect-ratio: 16 / 10;
  right: 3vw;
  top: 18vh;
  overflow: hidden;
  background: var(--ink);
  z-index: 1;
  transform: rotate(2.5deg);
  box-shadow: 18px 22px 0 rgba(18, 18, 18, 0.12);
}
.showreel-frame {
  position: absolute;
  inset: 0;
  padding: 24px;
  color: var(--scene-ink);
  background: var(--scene);
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.showreel-frame.is-active {
  clip-path: inset(0);
  z-index: 2;
}
.showreel-frame strong {
  position: absolute;
  left: 20px;
  bottom: 34px;
  font-size: clamp(4.8rem, 9vw, 8.8rem);
  line-height: 0.67;
  letter-spacing: -0.1em;
  transform: translateY(20%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.showreel-frame.is-active strong { transform: translateY(0); }
.reel-kicker { font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; }
.reel-orbit,.reel-pulse,.reel-square,.reel-slash { position: absolute; display: block; }
.reel-orbit { width: 52%; aspect-ratio: 1; border-radius: 50%; right: -9%; top: -15%; background: radial-gradient(circle at 32% 28%,#fff 0,#d8ff00 12%,#ff4d00 52%,#111 100%); animation: reelSpin 4s linear infinite; }
.reel-pulse { width: 45%; aspect-ratio: 1; border: 40px solid #ff4d00; border-radius: 50%; right: -8%; top: 15%; animation: reelPulse 1.4s ease-in-out infinite; }
.reel-square { width: 46%; aspect-ratio: 1; border: 34px solid #d8ff00; right: 8%; top: 15%; animation: reelSquare 3s ease-in-out infinite; }
.reel-slash { width: 125%; height: 30%; background: #121212; left: -12%; top: 34%; transform: rotate(-14deg); animation: reelSlash 1.8s ease-in-out infinite alternate; }
.reel-chrome { position:absolute; z-index:5; inset:auto 16px 12px; display:flex; justify-content:space-between; color:#fff; mix-blend-mode:difference; font-size:.58rem; letter-spacing:.15em; }
.reel-progress { position:absolute; z-index:5; right:16px; top:16px; display:flex; gap:5px; }
.reel-progress i { width:22px; height:2px; background:rgba(255,255,255,.4); }
.reel-progress i.is-active { background:#fff; }
.hero-title {
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.75;
  letter-spacing: -0.085em;
  text-transform: uppercase;
  margin: 4vh 0;
  position: relative;
  z-index: 2;
  font-weight: 900;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line > span {
  display: block;
  transform: translateY(105%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .line:nth-child(2) > span {
  animation-delay: 0.12s;
}
.hero-title .line:nth-child(3) > span {
  animation-delay: 0.24s;
}
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  padding-left: 14vw;
}
.hero-title .line:last-child {
  padding-left: 4vw;
}
.hero-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-left: 44vw;
  position: relative;
  z-index: 3;
  font-size: 1rem;
  line-height: 1.5;
}
.round-link {
  width: 72px;
  height: 72px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  transition: 0.3s;
}
.round-link:hover {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-45deg);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: float 8s ease-in-out infinite;
}
.orb-a {
  width: 31vw;
  height: 31vw;
  background: var(--acid);
  right: -9vw;
  top: 10vh;
}
.orb-b {
  width: 13vw;
  height: 13vw;
  background: var(--orange);
  left: 37vw;
  bottom: -4vw;
  animation-delay: -3s;
}
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 16px 0;
  background: var(--ink);
  color: var(--paper);
  transform: rotate(-1deg);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}
.ticker span {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.05rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.work {
  padding: 140px 3vw;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.section-head p,
.section-head h2 {
  margin: 0;
}
.section-head h2 {
  font-size: 1rem;
  font-weight: 500;
}
.project {
  margin-bottom: 72px;
}
.project-art {
  height: 70vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.project:focus {
  outline: 3px solid var(--violet);
  outline-offset: 5px;
}
.project:hover .project-art {
  transform: scale(0.985);
}
.project-info {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: baseline;
  padding-top: 14px;
}
.project-info h3 {
  font-size: 2rem;
  letter-spacing: -0.05em;
  margin: 0;
}
.project-info p {
  margin: 0;
  color: #5d5b56;
}
.project-info span {
  font-size: 0.8rem;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2vw;
}
.project-grid .project-art {
  height: 68vw;
  max-height: 850px;
}
.art-sfera {
  background: #1d22f2;
  color: #fff;
  display: grid;
  place-items: center;
}
.sfera-word {
  font-size: 15vw;
  font-weight: 900;
  letter-spacing: -0.1em;
  z-index: 2;
  mix-blend-mode: difference;
}
.sphere {
  position: absolute;
  width: 34vw;
  height: 34vw;
  border-radius: 50%;
  background: radial-gradient(
    circle at 33% 27%,
    #fff 0,
    #d8ff00 10%,
    #ff4d00 45%,
    #6e41ff 70%,
    #111 100%
  );
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.8s;
}
.project:hover .sphere {
  transform: rotate(25deg) scale(1.08);
}
.art-sfera > span {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}
.art-signal {
  background: var(--acid);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.art-signal strong {
  font-size: 14vw;
  line-height: 0.65;
  letter-spacing: -0.1em;
}
.art-signal i {
  position: absolute;
  width: 28vw;
  height: 28vw;
  border: 4vw solid var(--orange);
  border-radius: 50%;
  right: -7vw;
  top: 20%;
  mix-blend-mode: multiply;
  transition: 0.6s;
}
.project:hover .art-signal i {
  transform: translate(-5vw, 4vw) rotate(30deg);
}
.signal-bottom {
  align-self: flex-end;
}
.art-form {
  background: var(--violet);
  color: #fff;
  display: grid;
  place-items: center;
}
.art-form strong {
  font-size: 10vw;
  line-height: 0.75;
  letter-spacing: -0.08em;
  z-index: 2;
  text-align: center;
}
.form-ring {
  position: absolute;
  width: 34vw;
  height: 34vw;
  border: 5vw solid var(--acid);
  border-radius: 50%;
  transition: 0.8s;
}
.project:hover .form-ring {
  transform: scale(0.72) rotate(90deg);
  border-radius: 15%;
}
.art-form span {
  position: absolute;
  bottom: 28px;
  letter-spacing: 0.4em;
  font-size: 0.7rem;
}
.art-nova {
  background: #f5c8db;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}
.nova-box {
  width: 15vw;
  height: 15vw;
  background: #111;
  color: #f5c8db;
  display: grid;
  place-items: center;
  font-size: 9vw;
  font-weight: 900;
  border: 1px solid #f5c8db;
  transition: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.project:hover .n1 {
  transform: rotate(-8deg) translateY(-20px);
}
.project:hover .n2 {
  transform: rotate(6deg) translateY(26px);
}
.project:hover .n3 {
  transform: rotate(-5deg) translateY(-10px);
}
.project:hover .n4 {
  transform: rotate(8deg) translateY(18px);
}
.art-nova > span {
  position: absolute;
  bottom: 24px;
  letter-spacing: 0.3em;
  font-size: 0.65rem;
}
.about {
  padding: 120px 3vw 160px;
  background: var(--ink);
  color: var(--paper);
}
.section-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}
.about h2 {
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
  font-weight: 500;
  max-width: 1300px;
  margin: 64px 0 96px;
}
.about h2 em {
  color: var(--acid);
  font-family: Georgia, serif;
  font-weight: 400;
}
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 7vw;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding-top: 28px;
}
.about-grid p {
  max-width: 580px;
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0;
}
.about-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.9;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-size: 6rem;
  line-height: 0.9;
  color: var(--orange);
}
.stat span {
  margin-top: 10px;
}
.contact {
  padding: 120px 3vw 28px;
  background: var(--acid);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.contact > p {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}
.contact h2 {
  font-size: clamp(4rem, 9.8vw, 10rem);
  line-height: 0.84;
  letter-spacing: -0.075em;
  font-weight: 900;
  text-transform: uppercase;
  margin: auto 0;
}
.contact h2 span {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.contact-link {
  font-size: clamp(1.6rem, 3vw, 3.5rem);
  width: max-content;
  border-bottom: 3px solid var(--ink);
  margin: 64px 0;
}
.contact footer {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes slideUp {
  to {
    transform: none;
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translate(0) rotate(0);
  }
  50% {
    transform: translate(2vw, 3vh) rotate(15deg);
  }
}
@keyframes reelSpin { to { transform: rotate(360deg); } }
@keyframes reelPulse { 50% { transform: scale(.72); border-radius: 12%; } }
@keyframes reelSquare { 50% { transform: rotate(90deg) scale(.72); border-radius:50%; } }
@keyframes reelSlash { to { transform: rotate(8deg) translateY(55%); } }
@media (max-width: 760px) {
  body {
    cursor: auto;
  }
  .cursor {
    display: none;
  }
  .nav {
    height: 68px;
    padding: 0 20px;
  }
  .nav nav {
    position: fixed;
    inset: 0;
    background: var(--acid);
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }
  .nav.open nav {
    opacity: 1;
    pointer-events: auto;
    z-index: 5;
  }
  .logo,
  .menu-btn {
    z-index: 6;
  }
  .menu-btn {
    display: block;
  }
  .hero {
    padding: 110px 20px 32px;
  }
  .showreel {
    width: 64vw;
    right: -15vw;
    top: 15vh;
    transform: rotate(3deg);
    opacity: 0.96;
  }
  .showreel-frame { padding: 14px; }
  .showreel-frame strong { font-size: 15vw; left: 12px; bottom: 25px; }
  .reel-kicker { font-size: .48rem; }
  .reel-pulse { border-width: 18px; }
  .reel-square { border-width: 16px; }
  .hero-title {
    font-size: 20vw;
    line-height: 0.82;
  }
  .hero-title .outline {
    padding-left: 0;
    -webkit-text-stroke: 1px var(--ink);
  }
  .hero-title .line:last-child {
    padding-left: 0;
  }
  .hero-meta {
    margin: 0;
    align-items: end;
  }
  .orb-a {
    width: 70vw;
    height: 70vw;
    right: -38vw;
    top: 15vh;
  }
  .orb-b {
    width: 30vw;
    height: 30vw;
    left: 35vw;
  }
  .work {
    padding: 100px 20px;
  }
  .project-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .project-art,
  .project-grid .project-art {
    height: 120vw;
    min-height: 440px;
  }
  .project-info {
    grid-template-columns: 1fr auto;
  }
  .project-info p {
    grid-row: 2;
    grid-column: 1/3;
    margin-top: 5px;
  }
  .project-info h3 {
    font-size: 1.6rem;
  }
  .sfera-word {
    font-size: 22vw;
  }
  .sphere {
    width: 70vw;
    height: 70vw;
  }
  .art-signal strong {
    font-size: 29vw;
  }
  .art-signal i {
    width: 62vw;
    height: 62vw;
    border-width: 9vw;
  }
  .art-form strong {
    font-size: 22vw;
  }
  .form-ring {
    width: 74vw;
    height: 74vw;
    border-width: 10vw;
  }
  .nova-box {
    width: 21vw;
    height: 25vw;
    font-size: 16vw;
  }
  .about {
    padding: 90px 20px 110px;
  }
  .about h2 {
    margin: 48px 0 72px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact {
    padding: 80px 20px 24px;
    min-height: 88vh;
  }
  .contact h2 {
    font-size: 15vw;
  }
  .contact footer {
    gap: 16px;
    flex-wrap: wrap;
  }
  .contact footer span:nth-child(2) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
