:root {
  --ink: #111111;
  --paper: #f2f0ea;
  --acid: #c8ff18;
  --violet: #7255ff;
  --orange: #ff5c35;
  --line: rgba(17, 17, 17, .16);
  --pad: clamp(22px, 4vw, 72px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", "Microsoft YaHei", sans-serif;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.noise {
  position: fixed; inset: 0; z-index: 100; pointer-events: none; opacity: .045;
  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-glow {
  position: fixed; width: 420px; height: 420px; z-index: 0; border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%); opacity: .22;
  background: radial-gradient(circle, rgba(200,255,24,.55), transparent 68%);
  transition: opacity .3s;
}
.scroll-progress {
  position: fixed; z-index: 101; top: 0; left: 0; height: 3px; width: 0;
  background: var(--acid); box-shadow: 0 0 12px rgba(200,255,24,.6);
}

.loader {
  position: fixed; inset: 0; z-index: 999; background: var(--ink); color: white;
  display: grid; place-content: center; transition: transform 1s var(--ease) .15s;
}
.loader.is-done { transform: translateY(-105%); }
.loader__mark { font: 800 clamp(42px, 8vw, 90px)/1 "Manrope"; letter-spacing: -.08em; }
.loader__mark span { color: var(--acid); font-size: .22em; vertical-align: top; margin-left: 8px; }
.loader__line { width: min(65vw, 480px); height: 1px; background: #333; margin-top: 28px; }
.loader__line i { display: block; height: 100%; width: 0; background: var(--acid); transition: width .08s linear; }
.loader__count { margin-top: 10px; text-align: right; color: #777; font-size: 12px; }

.nav {
  position: fixed; z-index: 90; top: 0; left: 0; width: 100%; padding: 22px var(--pad);
  display: flex; align-items: center; justify-content: space-between; mix-blend-mode: difference; color: white;
}
.logo { display: inline-flex; align-items: center; gap: 8px; font: 800 20px/1 "Manrope"; letter-spacing: -.05em; }
.logo sup { font-size: 7px; align-self: flex-start; }
.logo__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--acid); }
.nav__links { display: flex; gap: 36px; font-size: 13px; }
.nav__links a, .footer__socials a { position: relative; }
.nav__links a::after, .footer__socials a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease);
}
.nav__links a:hover::after, .footer__socials a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: flex; align-items: center; gap: 22px; font-size: 13px; }
.nav__cta b { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.menu-btn { display: none; border: 0; background: none; padding: 10px; }
.menu-btn span { display: block; width: 25px; height: 1px; background: currentColor; margin: 6px 0; }

.hero {
  min-height: 100svh; position: relative; padding: 130px var(--pad) 0; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__grid {
  position: absolute; inset: 0; opacity: .4; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: min(12vw, 150px) min(12vw, 150px);
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero__orb { position: absolute; border-radius: 50%; filter: blur(1px); will-change: transform; }
.orb--one {
  width: clamp(260px, 36vw, 580px); aspect-ratio: 1; right: -7%; top: 7%;
  background: radial-gradient(circle at 35% 30%, #fff 0, #b7a8ff 12%, var(--violet) 42%, #2b165f 75%);
  box-shadow: inset -50px -40px 90px #140735, 0 30px 120px rgba(114,85,255,.35);
  animation: float 7s ease-in-out infinite;
}
.orb--two {
  width: clamp(90px, 13vw, 190px); aspect-ratio: 1; left: 11%; bottom: 17%;
  background: radial-gradient(circle at 35% 30%, #f8ffca, var(--acid) 40%, #5b7600);
  box-shadow: 0 20px 70px rgba(200,255,24,.35); animation: float 5s ease-in-out -2s infinite reverse;
}
.hero__eyebrow {
  position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; width: 100%;
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: clamp(28px, 5vh, 60px);
}
.hero__eyebrow > span:last-child { margin-left: auto; }
.pulse { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 0 rgba(255,92,53,.6); animation: pulse 2s infinite; }
.hero__title { position: relative; z-index: 2; font: 800 clamp(72px, 13.7vw, 210px)/.79 "Manrope"; letter-spacing: -.085em; }
.title-line { overflow: hidden; padding: 0 .06em .09em 0; }
.title-line span { display: block; transform: translateY(115%); }
.is-ready .title-line span { animation: titleIn 1.25s var(--ease) forwards; }
.is-ready .title-line:nth-child(2) span { animation-delay: .1s; }
.title-line--accent { margin-left: 20%; color: var(--violet); }
.title-line i, .contact-title i { color: var(--acid); font-style: normal; }
.hero__bottom { z-index: 2; display: flex; align-items: end; justify-content: space-between; margin: 25px 0 80px; padding-left: 21%; }
.hero__intro { max-width: 460px; font-size: clamp(15px, 1.5vw, 20px); line-height: 1.6; }
.round-link { position: relative; width: 102px; height: 102px; flex: none; display: grid; place-items: center; }
.round-link svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 13s linear infinite; }
.round-link text { font-size: 8px; letter-spacing: 1.7px; }
.round-link > span { width: 52px; height: 52px; border-radius: 50%; background: var(--ink); color: white; display: grid; place-items: center; transition: .4s var(--ease); }
.round-link:hover > span { background: var(--acid); color: var(--ink); transform: scale(1.15); }
.hero__ticker { position: absolute; left: 0; bottom: 0; width: 100%; overflow: hidden; border-top: 1px solid var(--line); padding: 13px 0; }
.ticker__track { display: flex; align-items: center; gap: 28px; width: max-content; font: 600 11px "Manrope"; letter-spacing: .14em; animation: marquee 24s linear infinite; }
.ticker__track i { color: var(--violet); font-size: 17px; }

.section { position: relative; padding: clamp(90px, 12vw, 180px) var(--pad); }
.section-tag { display: flex; gap: 15px; align-items: center; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: clamp(60px, 9vw, 130px); }
.section-tag span { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid var(--line); border-radius: 50%; letter-spacing: 0; }
.section-tag--light span { border-color: rgba(255,255,255,.3); }
.reveal { opacity: 0; transform: translateY(35px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

.about { background: var(--ink); color: var(--paper); }
.about__statement { max-width: 1250px; }
.about__statement p { margin: 0; font: 500 clamp(38px, 6.3vw, 98px)/1.08 "Manrope"; letter-spacing: -.055em; color: #555; }
.about__statement p span { color: var(--paper); }
.split-reveal { background: linear-gradient(90deg, var(--paper) 50%, #555 50%); background-size: 200% 100%; background-position: 100%; -webkit-background-clip: text; background-clip: text; color: transparent !important; transition: background-position 2.2s var(--ease); }
.split-reveal.in-view { background-position: 0%; }
.about__details { display: grid; grid-template-columns: 1fr 1.1fr; gap: 10vw; align-items: center; margin-top: clamp(80px, 13vw, 190px); }
.about__visual {
  aspect-ratio: 1; max-width: 500px; position: relative; display: grid; place-items: center;
  background: var(--acid); color: var(--ink); overflow: hidden;
}
.visual__rings i { position: absolute; inset: 13%; border: 1px solid rgba(17,17,17,.3); border-radius: 50%; animation: ringPulse 4s ease-in-out infinite; }
.visual__rings i:nth-child(2) { inset: 25%; animation-delay: -.8s; }
.visual__rings i:nth-child(3) { inset: 37%; animation-delay: -1.6s; }
.visual__center { z-index: 1; text-align: center; display: flex; flex-direction: column; }
.visual__center span, .visual__center small { font-size: 10px; letter-spacing: .2em; }
.visual__center strong { font: 800 clamp(38px, 5vw, 74px)/1 "Manrope"; letter-spacing: -.07em; margin: 8px 0; }
.about__copy > p { max-width: 600px; color: #aaa; font-size: clamp(17px, 2vw, 25px); line-height: 1.6; margin: 0 0 50px; }
.text-link { display: inline-flex; gap: 35px; border-bottom: 1px solid currentColor; padding-bottom: 8px; font-size: 13px; }
.text-link span { transition: transform .35s var(--ease); }
.text-link:hover span { transform: translate(5px, -5px); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; padding-top: 70px; margin-top: 70px; border-top: 1px solid #333; }
.stats > div { display: grid; grid-template-columns: auto 1fr; align-items: start; }
.stats strong { font: 700 clamp(40px, 5vw, 68px)/1 "Manrope"; letter-spacing: -.06em; }
.stats sup { color: var(--acid); font-size: 13px; margin: 5px; }
.stats span { grid-column: 1/-1; color: #777; font-size: 11px; margin-top: 12px; }

.services { background: var(--paper); }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 90px; }
.section-heading h2, .work__heading h2 { margin: 0; font: 700 clamp(48px, 7.8vw, 120px)/.95 "Manrope"; letter-spacing: -.07em; }
.section-heading h2 em { color: var(--violet); font-style: normal; }
.section-heading > p { max-width: 390px; font-size: 16px; line-height: 1.65; color: #686868; }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  position: relative; display: grid; grid-template-columns: 70px 1.4fr 1fr 50px; align-items: center;
  min-height: 145px; border-bottom: 1px solid var(--line); transition: padding .4s var(--ease), background .4s;
}
.service-row:hover { padding-left: 20px; background: rgba(255,255,255,.55); }
.service-row__num { color: #999; font-size: 11px; }
.service-row h3 { margin: 0; font: 600 clamp(23px, 3.2vw, 46px)/1 "Manrope"; letter-spacing: -.045em; }
.service-row p { color: #777; font-size: 12px; }
.service-row__icon { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .4s var(--ease); }
.service-row:hover .service-row__icon { transform: rotate(45deg); background: var(--ink); color: white; }
.service-row__preview {
  position: absolute; z-index: 3; right: 8%; top: 50%; width: 160px; height: 110px; transform: translateY(-40%) rotate(-7deg) scale(.7);
  opacity: 0; pointer-events: none; transition: .45s var(--ease); box-shadow: 0 22px 55px rgba(0,0,0,.18);
}
.service-row:hover .service-row__preview { opacity: 1; transform: translateY(-50%) rotate(5deg) scale(1); }
.preview--brand { background: var(--orange); color: white; display: grid; place-items: center; font: 700 65px "Manrope"; }
.preview--digital { background: var(--violet); display: flex; align-items: end; gap: 8px; padding: 18px; }
.preview--digital i { flex: 1; background: var(--acid); animation: bars 1.4s ease-in-out infinite alternate; }
.preview--digital i:nth-child(2) { height: 80%; animation-delay: -.3s; }.preview--digital i:nth-child(3) { height: 50%; animation-delay: -.7s; }
.preview--product { background: var(--acid); display: grid; place-items: center; font-size: 40px; }
.preview--product span { animation: bounce 1.5s ease-in-out infinite; }
.preview--growth { background: var(--ink); color: var(--acid); display: grid; place-items: center; font: 700 25px "Manrope"; }

.work { background: #dfdcd5; }
.work__heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 90px; }
.projects { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 7vw, 110px) clamp(20px, 4vw, 65px); }
.project--large { grid-column: 1/-1; }
.project__media { display: block; position: relative; overflow: hidden; aspect-ratio: 1.25; transform-style: preserve-3d; }
.project--large .project__media { aspect-ratio: 2.05; }
.project__art { width: 100%; height: 100%; position: relative; transition: transform .8s var(--ease); overflow: hidden; }
.project__media:hover .project__art { transform: scale(1.035); }
.project__view {
  position: absolute; right: 25px; bottom: 25px; width: 80px; height: 80px; background: var(--acid);
  display: grid; place-items: center; text-align: center; border-radius: 50%; font-size: 11px;
  transform: scale(0); transition: .4s var(--ease); transform-style: preserve-3d;
}
.project__media:hover .project__view { transform: scale(1) translateZ(30px); }
.project__meta { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-top: 20px; }
.project__meta h3 { font: 600 clamp(17px, 2vw, 25px) "Manrope"; margin: 0; letter-spacing: -.03em; }
.project__meta span { color: #777; font-size: 11px; text-align: right; }
.art--a { background: #ee5b37; display: grid; place-items: center; }
.art-a__word { color: #fbccb8; font: 800 clamp(110px, 27vw, 420px)/1 "Manrope"; letter-spacing: -.12em; transform: translateX(-3%); }
.art-a__sphere {
  position: absolute; width: 32%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff2dc, #cfb58f 45%, #5b2e20); box-shadow: 0 40px 80px rgba(70,20,0,.35);
  animation: float 5s ease-in-out infinite;
}
.art--a > span { position: absolute; top: 9%; left: 5%; font: 600 11px/1.35 "Manrope"; letter-spacing: .15em; }
.art--b { background: #b9ffdf; display: grid; place-items: center; color: #13332c; }
.art--b strong { z-index: 1; font: 700 clamp(48px, 8vw, 110px) "Manrope"; letter-spacing: -.08em; }
.art--b small { position: absolute; bottom: 8%; left: 8%; letter-spacing: .14em; line-height: 1.5; }
.art-b__orbit { position: absolute; width: 65%; aspect-ratio: 1; border: 1px solid #276b5c; border-radius: 50%; animation: orbit 8s linear infinite; }
.art-b__orbit::after { content: ""; position: absolute; width: 30px; height: 30px; border-radius: 50%; background: var(--orange); left: 5%; top: 13%; }
.art--c { background: #7360ff; display: grid; place-items: center; }
.art-c__card {
  z-index: 2; width: 55%; aspect-ratio: .72; border-radius: 18px; padding: 8%; color: white;
  background: linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(15px); transform: rotate(8deg);
  box-shadow: 0 35px 70px rgba(25,10,100,.4); display: flex; flex-direction: column;
}
.art-c__card i { width: 38px; height: 38px; border-radius: 50%; background: var(--acid); margin-bottom: auto; }
.art-c__card span { font: 700 clamp(24px, 4vw, 48px) "Manrope"; letter-spacing: -.06em; }
.art-c__card b { font-size: 11px; margin-top: 8px; }
.art-c__wave { position: absolute; width: 140%; height: 30%; border-top: 2px solid var(--acid); border-radius: 50%; transform: rotate(-20deg); animation: wave 3s ease-in-out infinite; }

.contact { min-height: 100svh; background: var(--violet); color: white; overflow: hidden; display: flex; flex-direction: column; }
.contact__orb {
  position: absolute; width: min(65vw, 900px); aspect-ratio: 1; border-radius: 50%; right: -27%; top: -20%;
  background: radial-gradient(circle at 35% 35%, #fff, var(--acid) 15%, #79a000 45%, #1c3400 75%);
  box-shadow: 0 50px 160px rgba(31,11,101,.5); animation: float 8s ease-in-out infinite;
}
.contact__main { position: relative; z-index: 2; margin: auto 0; }
.contact__main > p { font-size: 13px; letter-spacing: .12em; }
.contact-title { margin: 25px 0 60px; font: 700 clamp(65px, 12.5vw, 190px)/.82 "Manrope"; letter-spacing: -.085em; }
.contact-title span { display: block; overflow: hidden; padding-bottom: .1em; }
.contact-title span:nth-child(2) { padding-left: 12%; }
.contact-title span { transform: translateY(110%); transition: transform 1.1s var(--ease); }
.contact-title.in-view span { transform: translateY(0); }
.contact-title.in-view span:nth-child(2) { transition-delay: .12s; }
.contact__button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 60px; min-width: min(100%, 430px);
  padding: 10px 10px 10px 25px; border: 1px solid rgba(255,255,255,.5); border-radius: 99px; font-size: 14px;
}
.contact__button b { display: grid; place-items: center; width: 55px; height: 55px; border-radius: 50%; background: var(--acid); color: var(--ink); transition: transform .35s; }
.contact__button:hover b { transform: rotate(45deg); }
footer { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 30px; align-items: end; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.25); }
.footer__socials { display: flex; gap: 25px; font-size: 12px; }
footer p { margin: 0; font-size: 9px; line-height: 1.6; color: rgba(255,255,255,.65); }
.back-top { font-size: 11px; }

@keyframes titleIn { to { transform: translateY(0); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-24px) rotate(2deg); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(255,92,53,0); } 100% { box-shadow: 0 0 0 0 rgba(255,92,53,0); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes ringPulse { 50% { transform: scale(1.08); opacity: .45; } }
@keyframes bars { from { height: 20%; } to { height: 95%; } }
@keyframes bounce { 50% { transform: translateY(-13px); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes wave { 50% { transform: rotate(-14deg) scaleY(1.6); } }

@media (max-width: 800px) {
  .nav__links, .nav__cta { display: none; }
  .menu-btn { display: block; }
  .nav.is-open { background: var(--ink); mix-blend-mode: normal; height: 100svh; align-items: flex-start; }
  .nav.is-open .nav__links { position: absolute; display: flex; flex-direction: column; left: var(--pad); top: 25%; font: 600 40px "Manrope"; }
  .nav.is-open .menu-btn span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav.is-open .menu-btn span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { padding-top: 110px; justify-content: center; }
  .hero__eyebrow > span:last-child { display: none; }
  .title-line--accent { margin-left: 5%; }
  .hero__bottom { padding-left: 0; margin-top: 45px; }
  .hero__intro { max-width: 270px; font-size: 14px; }
  .round-link { width: 82px; height: 82px; }
  .orb--one { right: -25%; top: 18%; }
  .orb--two { left: 5%; bottom: 24%; }
  .about__details, .projects { grid-template-columns: 1fr; }
  .about__visual { max-width: 100%; }
  .stats { padding-top: 40px; margin-top: 40px; }
  .section-heading { display: block; }
  .section-heading > p { margin: 35px 0 0; }
  .service-row { grid-template-columns: 35px 1fr 35px; min-height: 110px; }
  .service-row p { display: none; }
  .service-row__preview { display: none; }
  .work__heading { align-items: start; flex-direction: column; gap: 30px; }
  .project--large { grid-column: auto; }
  .project--large .project__media, .project__media { aspect-ratio: 1.15; }
  .project__meta { align-items: start; flex-direction: column; gap: 5px; }
  .project__meta span { text-align: left; }
  .contact-title span:nth-child(2) { padding-left: 0; }
  footer { grid-template-columns: 1fr 1fr; }
  .footer__socials { justify-content: flex-end; }
  .back-top { text-align: right; }
}

@media (pointer: coarse) { .cursor-glow { display: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .contact-title span, .title-line span { opacity: 1; transform: none; }
}
