@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/Pretendard-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: block;
}

:root {
  --bg: #0b0b0c;
  --bg-elevated: #111114;
  --bg-card: #14141a;
  --border: #222228;
  --border-hover: #33333a;
  --text-primary: #f8f8fa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --accent-cyan: #00f0ff;
  --accent-violet: #a78bfa;
  --accent-gold: #d6c08f;
  --radius: 16px;
  --radius-sm: 10px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: auto;
  overscroll-behavior-y: none;
  background: #0b0b0c;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: #0b0b0c;
  color: var(--text-primary);
  font-family: "Pretendard";
  line-height: 1.5;
  overflow-x: hidden;
  overscroll-behavior: none;
}
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
body.intro-lock { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
a { color: inherit; }
img { display: block; max-width: 100%; }
::selection {
  background: #fff;
  color: #0b0b0c;
}
::-moz-selection {
  background: #fff;
  color: #0b0b0c;
}
button,
.btn {
  user-select: none;
  -webkit-user-select: none;
}

body.js-ready .animate-ready {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  filter: blur(10px);
}

body.js-ready .animate-ready.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition:
    opacity .82s cubic-bezier(.22, 1, .36, 1),
    transform .82s cubic-bezier(.22, 1, .36, 1),
    filter .82s cubic-bezier(.22, 1, .36, 1),
    border-color .25s ease,
    background-color .25s ease,
    color .25s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

body.js-ready .section-reveal-item {
  will-change: opacity, transform, filter, clip-path;
}
body.js-ready .section-reveal-item:not(.is-section-visible) {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(10px);
  clip-path: none;
}
body.js-ready .section-reveal-title:not(.is-section-visible) {
  transform: translate3d(0, -18px, 0);
  filter: blur(9px);
  clip-path: inset(0 0 100% 0);
}
body.js-ready .section-reveal-item.is-section-visible {
  animation: sectionRiseUp .98s cubic-bezier(.16, .82, .28, 1) both;
  animation-delay: var(--section-reveal-delay, 0ms);
}
body.js-ready .section-reveal-title.is-section-visible {
  animation-name: sectionBlindDown;
  animation-duration: 1.04s;
  animation-timing-function: cubic-bezier(.16, .82, .28, 1);
}


.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  pointer-events: none;
}
.intro-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(180deg, transparent, rgba(255,255,255,.025), transparent);
  opacity: 0;
  animation: introAura 1.6s cubic-bezier(.77, 0, .175, 1) .2s forwards;
}
.intro-title {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1200px);
  margin: 0 auto;
  text-align: center;
  font-size: clamp(24px, 5.8vw, 88px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  transform: translateZ(0);
}
.intro-title em {
  display: inline-block;
  align-items: baseline;
  justify-content: center;
  padding: .04em .22em .08em;
  font-style: normal;
  opacity: 0;
  letter-spacing: 0;
  filter: blur(24px);
  transform: translateZ(0);
  transform-origin: 50% 55%;
  will-change: opacity, filter, transform;
}
body.js-ready .intro-title em {
  opacity: 1;
  filter: none;
}
.intro-title em[data-split="1"] {
  opacity: 1;
  filter: none;
}
.intro-logo {
  position: absolute;
  left: 50%;
  bottom: clamp(40px, 7.5svh, 78px);
  z-index: 1;
  width: clamp(148px, 13vw, 214px);
  height: auto;
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
  filter: none;
  will-change: opacity, filter, transform;
}
.intro-phrase {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: .24em;
  white-space: nowrap;
}
.intro-line {
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
}
.intro-char {
  --intro-x-current: var(--intro-x);
  --intro-x-out-current: var(--intro-x-out);
  --intro-delay-current: var(--intro-delay, 0ms);
  --intro-out-delay-current: var(--intro-out-delay, 0ms);
  display: inline-block;
  opacity: 0;
  filter: blur(18px);
  transform: translate3d(var(--intro-x-current), 0, 0) scale(1.08);
  backface-visibility: hidden;
  will-change: opacity, filter, transform;
}
.intro-space {
  display: inline-block;
  width: .34em;
}
body.intro-css-fallback.intro-ready .intro-title em[data-split="1"] .intro-char {
  animation: introCharIn 1.22s cubic-bezier(.16, .84, .24, 1) var(--intro-delay-current) both;
}
.intro-screen.is-leaving {
  animation: introOut .86s cubic-bezier(.77, 0, .175, 1) forwards;
}
.intro-screen.is-leaving .intro-char {
  animation: introCharOut .52s cubic-bezier(.55, .06, .68, .19) var(--intro-out-delay-current) forwards;
}
.intro-screen.is-leaving .intro-logo {
  animation: introLogoOut .38s cubic-bezier(.55, .06, .68, .19) forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 0;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}
.btn-primary { background: var(--text-primary); color: var(--bg); }
.btn-primary:hover { background: var(--accent-cyan); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent-cyan); background: rgba(0,240,255,.06); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 16px 72px;
  overflow: visible;
}
.hero-shade { pointer-events: none; }
.hero-card-scene,
.hero-card-rotor { display: grid; }
.hero-card-scene {
  position: absolute;
  left: 0;
  right: 0;
  top: 66%;
  width: 100vw;
  height: 92%;
  z-index: 0;
  transform: translateY(-50%);
  overflow: visible;
  perspective: 40em;
  perspective-origin: 50% 50%;
  opacity: 1;
  pointer-events: auto;
  filter: saturate(1.08) contrast(1.04);
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
}
.hero-card-scene::before,
.hero-card-scene::after {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  z-index: 3;
  width: min(15vw, 220px);
  pointer-events: none;
}
.hero-card-scene::before {
  left: 0;
  background: linear-gradient(90deg, #0b0b0c 0%, rgba(11,11,12,0) 100%);
}
.hero-card-scene::after {
  right: 0;
  background: linear-gradient(270deg, #0b0b0c 0%, rgba(11,11,12,0) 100%);
}
.hero-card-scene.is-dragging { cursor: grabbing; }
.hero-card-scene.has-hovered-card:not(.is-dragging) { cursor: pointer; }
.hero-card-rotor {
  place-self: center;
  transform-style: preserve-3d;
  transform: rotateY(var(--card-rotation, 0deg));
  will-change: transform;
}
.hero-card {
  --w: clamp(12rem, 24vw, 23rem);
  --ba: calc(1turn / var(--n));
  --card-gap: 1.15rem;
  grid-area: 1 / 1;
  margin: 0;
  width: var(--w);
  aspect-ratio: 7 / 10;
  border-radius: .9em;
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 26px 90px rgba(0,0,0,.5);
  opacity: .5;
  overflow: hidden;
  background: transparent;
  clip-path: inset(0 round .9em);
  backface-visibility: hidden;
  will-change: opacity, box-shadow;
  pointer-events: none;
  transition: opacity .18s ease, box-shadow .18s ease;
  transform:
    rotateY(calc(var(--i) * var(--ba)))
    translateZ(calc(-1 * (.5 * var(--w) + var(--card-gap)) / tan(.5 * var(--ba))));
}
.hero-card.is-hittable {
  pointer-events: none;
}
.hero-card.is-hovered {
  opacity: 1;
  box-shadow: 0 34px 110px rgba(0,0,0,.58);
}
.hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform .18s ease;
  will-change: transform;
}
.hero-card.is-hovered img {
  transform: translate3d(0, -18px, 0) scale(1.06);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-172px);
  pointer-events: none;
}
body.js-ready .hero-content.hero-animate-ready h1,
body.js-ready .hero-content.hero-animate-ready p,
body.js-ready .hero-content.hero-animate-ready .hero-actions {
  opacity: 0;
  will-change: opacity, transform, filter, clip-path;
}
body.js-ready .hero-content.hero-animate-ready h1 {
  transform: translate3d(0, -18px, 0);
  filter: blur(9px);
  clip-path: inset(0 0 100% 0);
}
body.js-ready .hero-content.hero-animate-ready p,
body.js-ready .hero-content.hero-animate-ready .hero-actions {
  transform: translate3d(0, 24px, 0);
  filter: blur(10px);
  clip-path: none;
}
body.js-ready .hero-content.hero-animate-ready.is-visible h1 {
  animation: heroBlindDown 1.04s cubic-bezier(.16, .82, .28, 1) forwards;
}
body.js-ready .hero-content.hero-animate-ready.is-visible p {
  animation: sectionRiseUp .94s cubic-bezier(.16, .82, .28, 1) .14s forwards;
}
body.js-ready .hero-content.hero-animate-ready.is-visible .hero-actions {
  animation: sectionRiseUp .94s cubic-bezier(.16, .82, .28, 1) .28s forwards;
}

.eyebrow { display: inline-block; margin-bottom: 14px; border: 1px solid var(--border-hover); border-radius: 999px; padding: 5px 14px; color: var(--text-secondary); font: 700 11px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: 3px; }
.hero h1 { margin: 0 0 18px; font-size: clamp(24px, 5.4vw, 76px); line-height: 1.04; letter-spacing: -1px; white-space: nowrap; }
.hero h1 span { display: inline; }
.hero p { max-width: 580px; margin: 0 auto 28px; color: var(--text-secondary); font-size: clamp(14px, 2vw, 18px); }
.hero h1,
.hero p {
  pointer-events: auto;
  user-select: text;
  -webkit-user-select: text;
}
.hero-actions { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; width: 100%; }
.hero-actions,
.hero-actions .btn {
  pointer-events: auto;
}
.hero-actions .btn {
  border: 1px solid rgba(255,255,255,.82);
  background: transparent;
  color: white;
  font-weight: 600;
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background-color .28s cubic-bezier(.22, 1, .36, 1),
    border-color .28s cubic-bezier(.22, 1, .36, 1),
    color .28s cubic-bezier(.22, 1, .36, 1);
}
.hero-actions .btn:hover {
  background: #fff;
  border-color: transparent;
  color: #0b0b0c;
  box-shadow: none;
  transform: none;
}

.section { scroll-margin-top: 80px; }
main,
.section,
.works,
.services,
.about,
.contact {
  background: transparent;
}
main {
  max-width: 100%;
  background: #0b0b0c;
  overflow-x: hidden;
}
@supports (overflow: clip) {
  main { overflow-x: clip; }
}
.works { width: 100%; margin: 0; padding: 0 max(32px, calc((100% - 1360px) / 2 + 16px)) 148px; }
.services { width: min(100%, 1280px); margin: 0 auto; padding: 132px 24px 148px; }
.all-works {
  width: min(100%, 1360px);
  margin: 0 auto;
}
.section-head { margin-bottom: 32px; }
.section-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.section-head.split.featured-head {
  justify-content: center;
  text-align: center;
  margin-bottom: 62px;
}
.section-head.split.featured-head > div { width: 100%; }
.section-head.compact p { max-width: 340px; color: var(--text-secondary); font-size: 14px; }
.section-head.center { text-align: center; max-width: 620px; margin-left: auto; margin-right: auto; }
.section-head .section-intro {
  margin: 12px auto 0;
  color: rgba(248,248,250,.7);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  white-space: normal;
}
.section-head .section-intro span { display: inline; }
.section-kicker { margin-bottom: 9px; font: 700 12px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace; letter-spacing: 3px; }
.cyan { color: var(--accent-cyan); }
.violet { color: var(--accent-violet); }
.section h2 { margin: 0; font-size: clamp(34px, 5vw, 60px); font-weight: 600; line-height: 1.1; letter-spacing: -1px; }
.outline-link {
  display: inline-flex;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  background: transparent;
  color: white;
  padding: 10px 20px;
  font-weight: 500;
  transition:
    background-color .28s cubic-bezier(.22, 1, .36, 1),
    border-color .28s cubic-bezier(.22, 1, .36, 1),
    color .28s cubic-bezier(.22, 1, .36, 1);
}
.outline-link:hover {
  border-color: transparent;
  background: #fff;
  color: #0b0b0c;
  box-shadow: none;
}

.featured-section-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  margin-bottom: 160px;
  padding-block: clamp(56px, 8svh, 92px);
}
.featured-grid {
  position: relative;
  display: block;
  min-height: clamp(360px, 36vw, 500px);
  margin-bottom: 36px;
  perspective: 1200px;
}
.featured-stack {
  position: relative;
  height: clamp(360px, 36vw, 500px);
}
.featured-main, .featured-item, .work-button { border: 1px solid var(--border); background: var(--bg-elevated); color: inherit; text-align: left; overflow: hidden; transition: .25s ease; }
.featured-main:hover, .featured-item:hover, .work-card:hover .work-button { border-color: var(--accent-cyan); }
.featured-main { position: relative; min-height: 420px; border-radius: 8px; will-change: transform; }
.featured-main:not(.featured-card):hover { transform: translateY(-3px); box-shadow: 0 22px 70px rgba(0,0,0,.28); }
.featured-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 880px);
  height: 100%;
  min-height: 0;
  border-radius: 14px;
  transform-style: preserve-3d;
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1),
    filter .72s cubic-bezier(.22, 1, .36, 1),
    box-shadow .32s cubic-bezier(.22, 1, .36, 1),
    border-color .25s ease;
}
.featured-card.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translate3d(-50%, 0, 0) rotate(0deg) scale(1);
}
.featured-card.is-right {
  z-index: 2;
  opacity: .42;
  filter: saturate(.84) brightness(.88);
  transform: translate3d(calc(-50% + 122px), 20px, -110px) rotate(4deg) scale(.92);
}
.featured-card.is-left {
  z-index: 1;
  opacity: .34;
  filter: saturate(.78) brightness(.82);
  transform: translate3d(calc(-50% - 132px), 24px, -120px) rotate(-4deg) scale(.91);
}
.featured-card.is-hidden,
.featured-card:not(.is-active):not(.is-right):not(.is-left) {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  filter: saturate(.72) brightness(.78);
  transform: translate3d(calc(-50% + 160px), 28px, -150px) rotate(5deg) scale(.86);
}
.featured-card:hover,
.featured-card.is-active:hover {
  border-color: transparent;
  box-shadow: 0 0 42px rgba(31,191,234,.24), 0 22px 70px rgba(0,0,0,.28);
}
.featured-card:not(.is-active) {
  cursor: pointer;
}
.featured-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .5s ease; }
.featured-main:hover img { scale: 1.03; }
.image-dim { position: absolute; inset: 0; background: linear-gradient(to top, #000, rgba(0,0,0,.5), rgba(0,0,0,.1)); }
.featured-copy { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; }
.featured-card:not(.is-active) .image-dim,
.featured-card:not(.is-active) .featured-copy {
  opacity: 0;
}
.featured-copy strong { display: block; max-width: 720px; margin-top: 14px; font-size: clamp(28px, 4vw, 42px); line-height: 1.12; }
.featured-copy .badge,
.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #0b0b0c;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.featured-copy em, .featured-item em, .work-info em { display: block; font-style: normal; color: var(--text-secondary); }
.featured-copy em { max-width: 560px; margin-top: 12px; color: #d4d4d8; }
.watch {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #0b0b0c;
  font-size: 0;
  font-weight: 800;
}
.watch span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1fbfea;
  color: #0b0b0c;
  font-size: 20px;
  transition: opacity .26s cubic-bezier(.22, 1, .36, 1);
}
.featured-card.is-active:hover .watch span { opacity: .74; }
.featured-nav {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}
.featured-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(31,191,234,.78);
  border-radius: 50%;
  background: transparent;
  color: #1fbfea;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  pointer-events: auto;
  transform: translateY(-50%);
  transition:
    background-color .28s cubic-bezier(.22, 1, .36, 1),
    border-color .28s cubic-bezier(.22, 1, .36, 1),
    color .28s cubic-bezier(.22, 1, .36, 1),
    opacity .28s cubic-bezier(.22, 1, .36, 1);
}
.featured-arrow:hover {
  border-color: transparent;
  background: #1fbfea;
  color: #fff;
  opacity: 1;
  transform: translateY(-50%);
}
.featured-arrow.is-prev {
  left: max(0px, calc(50% - 600px));
}
.featured-arrow.is-next {
  right: max(0px, calc(50% - 600px));
}
.featured-actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.featured-side { display: grid; gap: 16px; }
.featured-item { display: grid; grid-template-columns: 150px 1fr; gap: 16px; align-items: center; min-height: 126px; border-radius: 8px; padding: 12px; will-change: transform; }
.featured-item:hover { transform: translateY(-2px); background: #16161c; }
.featured-item .thumb { aspect-ratio: 16/9; overflow: hidden; border-radius: 6px; background: #111; }
.featured-item img { width: 100%; height: 100%; object-fit: cover; }
.featured-item small {
  display: inline-flex;
  width: max-content;
  margin-bottom: 8px;
  border-radius: 999px;
  background: #1fbfea;
  color: #0b0b0c;
  padding: 4px 10px;
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
}
.featured-item strong { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.35; }
.featured-item em { margin-top: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 12px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 34px;
}
.filter-break {
  display: none;
}
.filter-pill {
  position: relative;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.5);
  border-radius: 0;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .28s cubic-bezier(.22, 1, .36, 1);
}
.filter-pill:first-child {
  padding-left: 0;
}
.filter-pill ~ .filter-pill::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,.4);
  transform: translateY(-50%);
}
.filter-pill:hover,
.filter-pill.active {
  border-color: transparent;
  background: transparent;
  color: #fff;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  column-gap: 16px;
  row-gap: 46px;
}
.work-card.is-hidden, .work-card.is-filtered { display: none; }
.work-card.pop-in { animation: cardPop .42s cubic-bezier(.22, 1, .36, 1) both; }
.work-button {
  width: 100%;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.work-button:hover {
  transform: translateY(-2px);
  box-shadow: none;
}
.video-box { display: block; position: relative; aspect-ratio: 16/9; border-radius: 10px; background: #000; overflow: hidden; }
.video-box img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22, 1, .36, 1), opacity .2s ease; }
.work-button:hover .video-box img { transform: scale(1.04); }
.empty-thumb { display: block; width: 100%; height: 100%; background: #1a1a20; }
.video-overlay { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; background: linear-gradient(to bottom, rgba(0,0,0,.1), rgba(0,0,0,.6)); transition: .2s ease; }
.work-button:hover .video-overlay { opacity: 1; }
.play-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: #1fbfea; color: #0b0b0c; }
.work-button:hover .play-icon,
.work-button:focus-visible .play-icon {
  background: #1fbfea;
  color: #0b0b0c;
}
.badge { display: inline-block; border: 1px solid var(--border); border-radius: 999px; background: rgba(0,0,0,.6); color: var(--text-secondary); padding: 3px 10px; font-size: 11px; font-weight: 700; letter-spacing: .2px; }
.card-badges {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-width: calc(100% - 24px);
}
.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border: 0;
  background: #fff;
  color: #0b0b0c;
  padding: 0 15px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.work-card .card-badge {
  min-height: 23px;
  padding: 4px 9px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0;
}
.duration { position: absolute; right: 12px; bottom: 12px; color: white; }
.video-count {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 0;
  background: rgba(11,11,12,.8);
  color: rgba(255,255,255,.78);
  padding: 4px 9px;
  font-size: 11px;
  font-weight: 400;
}
.work-info { display: flex; flex-direction: column; min-height: 0; padding: 16px 2px 0; }
.work-info strong { font-size: 18px; line-height: 1.35; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.work-info em { margin-top: 9px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-size: 14px; line-height: 1.5; }
.more-wrap { display: flex; justify-content: center; margin-top: 40px; }
.more-button {
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: transparent;
  color: white;
  padding: 12px 24px;
  font-weight: 500;
  transition:
    background-color .28s cubic-bezier(.22, 1, .36, 1),
    border-color .28s cubic-bezier(.22, 1, .36, 1),
    color .28s cubic-bezier(.22, 1, .36, 1);
}
.more-button:hover {
  border-color: transparent;
  background: #fff;
  color: #0b0b0c;
  box-shadow: none;
}
.more-button[hidden] { display: none; }
.more-button span { display: none; }

@media (min-width: 981px) {
  .all-works {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(58px, 8svh, 98px);
  }

  .all-works .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 981px) and (max-height: 980px) {
  .all-works {
    width: min(100%, 1120px);
    padding-block: clamp(34px, 5.2svh, 56px);
  }

  .all-works .section-head {
    margin-bottom: clamp(18px, 2.9svh, 26px);
  }

  .all-works h2 {
    font-size: clamp(40px, 5.7svh, 56px);
  }

  .all-works .filters {
    margin-bottom: clamp(18px, 3.1svh, 28px);
  }

  .all-works .filter-pill {
    font-size: 15px;
    padding-inline: 15px;
  }

  .all-works .filter-pill:first-child {
    padding-left: 0;
  }

  .all-works .work-grid {
    column-gap: clamp(14px, 1.3vw, 18px);
    row-gap: clamp(22px, 3.9svh, 34px);
  }

  .all-works .work-info {
    padding-top: clamp(10px, 1.5svh, 14px);
  }

  .all-works .work-info strong {
    font-size: clamp(16px, 2.05svh, 18px);
  }

  .all-works .work-info em {
    margin-top: 6px;
    font-size: clamp(12px, 1.6svh, 14px);
    line-height: 1.42;
  }

  .all-works .more-wrap {
    margin-top: clamp(20px, 3.5svh, 32px);
  }

  .all-works .more-button {
    padding: 10px 22px;
  }
}

@media (min-width: 981px) and (max-height: 860px) {
  .all-works {
    width: min(100%, 1040px);
    padding-block: clamp(24px, 4svh, 38px);
  }

  .all-works h2 {
    font-size: clamp(34px, 5.2svh, 46px);
  }

  .all-works .filters {
    margin-bottom: clamp(14px, 2.6svh, 22px);
  }

  .all-works .filter-pill {
    font-size: 14px;
    padding-inline: 13px;
  }

  .all-works .work-grid {
    row-gap: clamp(16px, 2.9svh, 24px);
  }

  .all-works .work-info strong {
    font-size: clamp(15px, 2.1svh, 17px);
  }

  .all-works .work-info em {
    -webkit-line-clamp: 1;
  }

  .all-works .more-wrap {
    margin-top: clamp(16px, 2.8svh, 24px);
  }
}

@media (min-width: 981px) and (max-height: 900px) {
  .featured-section-block,
  .about,
  .services,
  .contact {
    min-height: 100svh;
  }

  .featured-section-block {
    margin-bottom: clamp(88px, 13svh, 132px);
    padding-block: clamp(36px, 6svh, 62px);
  }

  .featured-grid,
  .featured-stack {
    min-height: 0;
    height: clamp(320px, 47svh, 430px);
  }

  .featured-main {
    min-height: 0;
  }

  .section-head.split.featured-head {
    margin-bottom: clamp(28px, 5svh, 46px);
  }

  .about {
    display: grid;
    align-items: center;
    padding-block: clamp(64px, 10svh, 104px);
  }

  .about-grid {
    gap: clamp(28px, 4vw, 42px);
  }

  .about h2 {
    font-size: clamp(38px, 5.7svh, 54px);
  }

  .profile-photo {
    min-height: clamp(280px, 44svh, 360px);
  }

  .about-body {
    font-size: clamp(15px, 2svh, 17px);
  }

  .about-body p {
    margin-bottom: 12px;
    line-height: 1.45;
  }

  .stats {
    margin-top: clamp(20px, 3.6svh, 30px);
    padding-block: clamp(20px, 3.4svh, 28px);
  }

  .services {
    display: grid;
    align-content: center;
    padding-block: clamp(58px, 9svh, 96px);
  }

  .services .section-head {
    margin-bottom: clamp(22px, 4svh, 32px);
  }

  .service-grid {
    gap: clamp(14px, 2svh, 18px);
  }

  .service-card {
    min-height: clamp(170px, 24svh, 216px);
    padding: clamp(26px, 4svh, 32px) 28px;
  }

  .contact {
    padding-block: clamp(66px, 10svh, 110px);
  }

  .contact-form {
    gap: clamp(18px, 3svh, 24px);
  }

  .message-field textarea {
    min-height: clamp(112px, 17svh, 150px);
  }
}
body.modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}
.project-detail[hidden] { display: none; }
.project-detail {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: rgba(0,0,0,.72);
  padding: clamp(18px, 4vw, 48px);
  touch-action: pan-y pinch-zoom;
  animation: detailIn .32s cubic-bezier(.22, 1, .36, 1) both;
}
.project-detail-backdrop {
  position: absolute;
  inset: 0;
}
.project-detail-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1320px);
  max-height: min(88vh, 980px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(26,26,26,.84);
  backdrop-filter: blur(28px) saturate(130%);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
  touch-action: pan-y pinch-zoom;
  animation: detailIn .42s cubic-bezier(.22, 1, .36, 1) both;
}
.detail-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.detail-category-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #fff;
  color: #0b0b0c;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.detail-head h3 { margin: 2px 0 0; font-size: 28px; }
.close-detail {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  background: transparent;
  color: var(--text-secondary);
  font-size: 22px;
  transition:
    border-color .24s cubic-bezier(.22, 1, .36, 1),
    color .24s cubic-bezier(.22, 1, .36, 1),
    opacity .24s cubic-bezier(.22, 1, .36, 1);
}
.close-detail:hover {
  border-color: rgba(255,255,255,.62);
  color: #fff;
  opacity: .82;
}
.detail-desc { white-space: pre-line; color: #c4c4c8; }
.modal-video-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; margin: 22px 0 10px; }
.modal-video-wrapper video, .modal-video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.video-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: transparent;
  color: white;
  padding: 10px;
  text-align: left;
  transition:
    background-color .24s cubic-bezier(.22, 1, .36, 1),
    border-color .24s cubic-bezier(.22, 1, .36, 1),
    color .24s cubic-bezier(.22, 1, .36, 1);
}
.video-tab:hover {
  border-color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.045);
  color: #fff;
}
.video-tab.active {
  border-color: var(--accent-cyan);
  background: rgba(31,191,234,.08);
}
.video-tab.active:hover {
  border-color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.045);
}
.video-tab img { width: 72px; aspect-ratio: 16/9; object-fit: cover; border-radius: 6px; background: #000; }
.video-tab strong { font-weight: 600; }
.video-tab small { color: rgba(255,255,255,.78); font-weight: 400; }
.detail-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
}
.tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.detail-meta-row .tools { margin-top: 0; }
.tools span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  transition:
    border-color .42s cubic-bezier(.22, 1, .36, 1),
    color .42s cubic-bezier(.22, 1, .36, 1);
}
.tools span::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, #1fbfea 0%, #7159e1 100%);
  opacity: 0;
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1);
}
.tools span:hover {
  border-color: rgba(255,255,255,0);
  color: #fff;
}
.tools span:hover::before { opacity: 1; }
.youtube-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,.86);
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color .24s cubic-bezier(.22, 1, .36, 1),
    border-color .24s cubic-bezier(.22, 1, .36, 1),
    color .24s cubic-bezier(.22, 1, .36, 1),
    opacity .24s cubic-bezier(.22, 1, .36, 1);
}
.youtube-link:hover {
  border-color: #fff;
  background: #fff;
  color: #0b0b0c;
  text-decoration: none;
}

.about { border-bottom: 1px solid var(--border); background: transparent; padding: 160px 24px; }
.about-grid { width: min(100%, 1152px); margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: stretch; }
.about-left { display: grid; }
.about h2 { margin: 0 0 18px; color: #fff; font-size: clamp(42px, 5vw, 60px); font-weight: 600; line-height: 1.1; }
.profile-photo { min-height: 360px; height: 100%; border: 0; border-radius: var(--radius); background: #1a1a1a; overflow: hidden; display: grid; place-items: center; color: var(--text-muted); text-align: center; }
.profile-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.about-body { color: #c4c4c8; font-size: 18px; }
.about-body p { margin: 0 0 16px; color: rgba(196, 196, 200, .7); font-size: inherit; font-weight: 400; line-height: 1.5; }
.about-greeting { margin-bottom: 16px; }
.about-body .gold { color: rgba(196, 196, 200, .7); font-weight: 400; }
body.js-ready .about-body.animate-ready {
  opacity: 1;
  transform: none;
  filter: none;
}
body.js-ready .about-body.animate-ready.is-visible {
  transition: none;
}
body.js-ready .about-body.animate-ready > * {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(7px);
  clip-path: inset(0 0 100% 0);
}
body.js-ready .about-body.animate-ready.is-visible > * {
  animation: aboutBlindIn .92s cubic-bezier(.16, .82, .28, 1) forwards;
}
body.js-ready .about-body.animate-ready > h2 {
  transform: translate3d(0, -18px, 0);
  filter: blur(9px);
  clip-path: inset(0 0 100% 0);
}
body.js-ready .about-body.animate-ready.is-visible > h2 {
  animation-name: sectionBlindDown;
  animation-duration: 1.04s;
  animation-timing-function: cubic-bezier(.16, .82, .28, 1);
}
body.js-ready .about-body.animate-ready.is-visible > :nth-child(1) { animation-delay: 0ms; }
body.js-ready .about-body.animate-ready.is-visible > :nth-child(2) { animation-delay: 90ms; }
body.js-ready .about-body.animate-ready.is-visible > :nth-child(3) { animation-delay: 180ms; }
body.js-ready .about-body.animate-ready.is-visible > :nth-child(4) { animation-delay: 270ms; }
body.js-ready .about-body.animate-ready.is-visible > :nth-child(5) { animation-delay: 360ms; }
body.js-ready .about-body.animate-ready.is-visible > :nth-child(6) { animation-delay: 450ms; }
.about-emphasis {
  display: inline;
  color: transparent;
  white-space: normal;
  background-image:
    linear-gradient(90deg, #fff, #fff),
    linear-gradient(90deg, rgba(196, 196, 200, .58), rgba(196, 196, 200, .58));
  background-repeat: no-repeat;
  background-position: 0 0, 0 0;
  background-size: 0% 100%, 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.about-emphasis {
  font-weight: 500;
}
.about-body.is-visible .about-emphasis {
  animation: aboutLineFill 1.05s cubic-bezier(.22, 1, .36, 1) var(--about-fill-delay, 0ms) forwards;
}
.micro-title { margin: 34px 0 14px; color: var(--text-secondary); font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.tool-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-list span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  transition:
    border-color .42s cubic-bezier(.22, 1, .36, 1),
    color .42s cubic-bezier(.22, 1, .36, 1),
    transform .42s cubic-bezier(.22, 1, .36, 1);
}
.tool-list span::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, #1fbfea 0%, #7159e1 100%);
  opacity: 0;
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1);
}
.tool-list span:hover {
  border-color: rgba(255,255,255,0);
  color: #fff;
}
.tool-list span:hover::before { opacity: 1; }
.stats { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: 16px 44px; margin-top: 34px; padding-top: 30px; padding-bottom: 30px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats strong { display: block; color: #fff; font-size: 36px; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; }
.stats span { display: block; margin-top: 8px; color: var(--text-secondary); font-size: 14px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-top: 10px; overflow: visible; }
body.js-ready .services .section-reveal-item.is-section-visible:has(.service-card) {
  clip-path: none !important;
  overflow: visible;
}
body.js-ready .services .service-card.section-reveal-item.is-section-visible {
  animation-duration: 1.24s;
}
.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 230px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 13px;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 28px;
  padding: 34px 30px;
  --svc-c1: 31, 191, 234;
  --svc-c2: 51, 171, 245;
  --svc-c3: 113, 89, 225;
  --svc-base: 6, 8, 14;
  --blob-a-duration: 4.9s;
  --blob-b-duration: 5.7s;
  --blob-c-duration: 6.3s;
  --blob-a-delay: -1.2s;
  --blob-b-delay: -4.6s;
  --blob-c-delay: -7.4s;
  background: rgba(var(--svc-c2), .28);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.30),
    inset 0 0 24px rgba(255,255,255,.22),
    inset 0 0 68px rgba(255,255,255,.13),
    inset 0 0 104px rgba(255,255,255,.08),
    inset 0 0 118px rgba(var(--svc-c1), .18);
  transition:
    transform .34s cubic-bezier(.22, 1, .36, 1),
    box-shadow .34s cubic-bezier(.22, 1, .36, 1),
    border-color .34s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
  animation: none;
}
.service-liquid-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  border-radius: inherit;
  pointer-events: none;
  opacity: 1;
  overflow: hidden;
  filter: saturate(1.08) contrast(1.02);
  transform: translateZ(0);
}
.service-blob {
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 48% 52% 57% 43% / 54% 46% 50% 50%;
  background: radial-gradient(circle at 42% 38%, rgba(255,255,255,.12) 0 6%, rgba(var(--blob-color), .84) 22%, rgba(var(--blob-color), .64) 60%, rgba(var(--blob-color), 0) 86%);
  filter: blur(34px) saturate(1.28) brightness(.99);
  mix-blend-mode: screen;
  opacity: .82;
  transform-origin: 50% 50%;
  will-change: transform, border-radius;
  animation-duration: var(--blob-duration);
  animation-timing-function: cubic-bezier(.45, 0, .2, 1);
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-delay: var(--blob-delay);
}
.blob-a {
  --blob-color: var(--svc-c1);
  --blob-duration: var(--blob-a-duration);
  --blob-delay: var(--blob-a-delay);
  left: -4%;
  top: -8%;
  animation-name: serviceBlobA;
}
.blob-b {
  --blob-color: var(--svc-c2);
  --blob-duration: var(--blob-b-duration);
  --blob-delay: var(--blob-b-delay);
  right: -6%;
  top: -4%;
  animation-name: serviceBlobB;
}
.blob-c {
  --blob-color: var(--svc-c3);
  --blob-duration: var(--blob-c-duration);
  --blob-delay: var(--blob-c-delay);
  left: 14%;
  bottom: -12%;
  animation-name: serviceBlobC;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  background-size: 108px 108px;
  background-position: 0 0;
  background-repeat: repeat;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.36),
    inset 0 0 20px rgba(255,255,255,.26),
    inset 0 0 54px rgba(255,255,255,.18),
    inset 0 0 96px rgba(255,255,255,.10);
  mix-blend-mode: normal;
  opacity: .92;
  animation: none;
}
.service-card:hover {
  border-color: rgba(255,255,255,.44);
  transform: translateY(-5px);
  box-shadow:
    0 0 22px rgba(255,255,255,.20),
    0 0 54px rgba(255,255,255,.12),
    inset 0 0 0 1px rgba(255,255,255,.32),
    inset 0 0 38px rgba(255,255,255,.26),
    inset 0 0 92px rgba(var(--svc-c2), .28);
}
.service-card > :not(.service-liquid-field) { position: relative; z-index: 2; }
.service-card h3 { margin: 0; color: #fff; font-size: 24px; font-weight: 600; line-height: 1.25; text-shadow: 0 2px 18px rgba(0,0,0,.28); }
.service-card p { margin: 0; color: rgba(255,255,255,.78); line-height: 1.7; text-shadow: 0 1px 14px rgba(0,0,0,.24); }
.service-card:nth-child(1) { --svc-c1: 31, 191, 234; --svc-c2: 45, 213, 255; --svc-c3: 35, 130, 241; --blob-a-duration: 4.6s; --blob-b-duration: 5.4s; --blob-c-duration: 6.1s; }
.service-card:nth-child(2) { --svc-c1: 28, 178, 237; --svc-c2: 42, 166, 246; --svc-c3: 64, 126, 238; --blob-a-duration: 4.9s; --blob-b-duration: 5.7s; --blob-c-duration: 6.4s; --blob-a-delay: -5s; --blob-b-delay: -1.8s; }
.service-card:nth-child(3) { --svc-c1: 31, 158, 238; --svc-c2: 61, 139, 241; --svc-c3: 82, 106, 235; --blob-a-duration: 4.8s; --blob-b-duration: 5.8s; --blob-c-duration: 5.5s; --blob-c-delay: -3.4s; }
.service-card:nth-child(4) { --svc-c1: 42, 137, 239; --svc-c2: 77, 118, 236; --svc-c3: 101, 95, 229; --blob-a-duration: 5.1s; --blob-b-duration: 6s; --blob-c-duration: 5.7s; --blob-b-delay: -8s; }
.service-card:nth-child(5) { --svc-c1: 58, 119, 236; --svc-c2: 92, 101, 231; --svc-c3: 113, 89, 225; --blob-a-duration: 5.2s; --blob-b-duration: 5.9s; --blob-c-duration: 6.2s; }
.service-card:nth-child(6) { --svc-c1: 73, 106, 234; --svc-c2: 113, 89, 225; --svc-c3: 144, 107, 255; --blob-a-duration: 5s; --blob-b-duration: 6.3s; --blob-c-duration: 5.8s; --blob-a-delay: -9s; --blob-c-delay: -5.5s; }
@keyframes serviceBlobA {
  0% { transform: translate3d(0, 0, 0) scale(1.08) rotate(-6deg); border-radius: 48% 52% 56% 44% / 54% 46% 50% 50%; }
  34% { transform: translate3d(34%, 22%, 0) scale(1.25) rotate(10deg); border-radius: 58% 42% 48% 52% / 44% 56% 60% 40%; }
  68% { transform: translate3d(44%, 4%, 0) scale(1.12) rotate(-9deg); border-radius: 42% 58% 62% 38% / 60% 40% 44% 56%; }
  100% { transform: translate3d(12%, 36%, 0) scale(1.28) rotate(7deg); border-radius: 56% 44% 44% 56% / 46% 54% 62% 38%; }
}
@keyframes serviceBlobB {
  0% { transform: translate3d(0, 0, 0) scale(1.14) rotate(7deg); border-radius: 56% 44% 50% 50% / 46% 54% 58% 42%; }
  32% { transform: translate3d(-36%, 24%, 0) scale(1.28) rotate(-9deg); border-radius: 42% 58% 58% 42% / 60% 40% 44% 56%; }
  66% { transform: translate3d(-16%, 42%, 0) scale(1.10) rotate(11deg); border-radius: 60% 40% 42% 58% / 42% 58% 56% 44%; }
  100% { transform: translate3d(-46%, 8%, 0) scale(1.24) rotate(-6deg); border-radius: 48% 52% 62% 38% / 58% 42% 40% 60%; }
}
@keyframes serviceBlobC {
  0% { transform: translate3d(0, 0, 0) scale(1.16) rotate(-7deg); border-radius: 50% 50% 58% 42% / 56% 44% 48% 52%; }
  34% { transform: translate3d(-28%, -30%, 0) scale(1.30) rotate(7deg); border-radius: 60% 40% 44% 56% / 42% 58% 60% 40%; }
  70% { transform: translate3d(8%, -42%, 0) scale(1.12) rotate(-10deg); border-radius: 44% 56% 64% 36% / 62% 38% 44% 56%; }
  100% { transform: translate3d(-40%, -12%, 0) scale(1.26) rotate(8deg); border-radius: 58% 42% 48% 52% / 44% 56% 62% 38%; }
}
.services-note { text-align: center; color: var(--text-muted); margin-top: 28px; }

.contact { min-height: 100svh; border-top: 1px solid var(--border); background: transparent; padding: 140px 24px 156px; display: grid; align-items: center; }
.contact-inner { width: min(100%, 1120px); margin: 0 auto; }
.contact .section-head { max-width: 1120px; }
.contact .section-head h2 { font-size: clamp(var(--contact-title-size), 9vw, var(--contact-title-size-pc)); font-weight: 600; line-height: 1.08; white-space: nowrap; }
.contact .section-head .section-intro { font-size: clamp(14px, 2vw, 18px); white-space: normal; }
.contact-form { width: min(100%, 820px); margin: 0 auto; display: grid; gap: 24px; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); align-items: start; gap: 24px; }
.contact-form label,
.contact-form .form-field {
  display: grid;
  gap: 9px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.contact-form label > span:first-child,
.contact-form .form-field > span:first-child { display: inline-block; }
.contact-form label em {
  color: #7159e1;
  font-style: normal;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.72);
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  padding: 13px 14px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  transition:
    background-color .32s cubic-bezier(.22, 1, .36, 1),
    border-color .32s cubic-bezier(.22, 1, .36, 1),
    color .32s cubic-bezier(.22, 1, .36, 1);
}
.message-field textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,.42);
  font-size: 16px;
  font-weight: 400;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 0;
  background: #1a1a1a;
  border-color: #7159e1;
  box-shadow: none;
}
.contact-form input.has-value,
.contact-form textarea.has-value {
  background: #1a1a1a;
}
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #1a1a1a inset;
  -webkit-text-fill-color: var(--text-primary);
  caret-color: var(--text-primary);
}
.custom-select-field {
  position: relative;
}
.custom-select-field.is-open {
  z-index: 12;
}
.custom-select-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 51px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.72);
  border-radius: 0;
  background: transparent;
  color: var(--text-primary);
  padding: 13px 14px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  transition:
    border-color .32s cubic-bezier(.22, 1, .36, 1),
    color .32s cubic-bezier(.22, 1, .36, 1);
}
.custom-select-toggle:focus-visible,
.custom-select-field.is-open .custom-select-toggle {
  outline: 0;
  background: #1a1a1a;
  border-color: #7159e1;
}
.custom-select-field.has-value .custom-select-toggle {
  background: #1a1a1a;
}
.custom-select-toggle i {
  position: relative;
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.62);
  font-style: normal;
  font-size: 0;
  line-height: 0;
  transform: translateY(-1px);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1);
}
.custom-select-toggle i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translate(-50%, -62%) rotate(45deg);
}
.custom-select-field.is-open .custom-select-toggle i {
  transform: translateY(1px) rotate(180deg);
}
.custom-select-options {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scaleY(.82) translateY(-6px);
  transform-origin: top center;
  clip-path: inset(0 0 100% 0);
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-top: 0;
  pointer-events: none;
  will-change: max-height, opacity, transform, clip-path;
  transition:
    max-height .44s cubic-bezier(.16, .84, .24, 1),
    opacity .22s cubic-bezier(.22, 1, .36, 1),
    transform .44s cubic-bezier(.16, .84, .24, 1),
    clip-path .44s cubic-bezier(.16, .84, .24, 1);
}
.custom-select-field.is-open .custom-select-options {
  max-height: 360px;
  opacity: 1;
  transform: scaleY(1) translateY(0);
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}
.custom-select-options button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-top: 1px solid rgba(255,255,255,.2);
  border-radius: 0;
  background: #1a1a1a;
  color: rgba(255,255,255,.72);
  padding: 10px 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: left;
  transition:
    background-color .24s cubic-bezier(.22, 1, .36, 1),
    border-color .24s cubic-bezier(.22, 1, .36, 1),
    color .24s cubic-bezier(.22, 1, .36, 1);
}
.custom-select-options button:hover,
.custom-select-options button.active {
  color: #fff;
}
.custom-type-field.is-hidden {
  display: none;
}
.custom-type-field {
  margin-top: 12px;
  width: calc(200% + 24px);
}
.submit {
  justify-self: center;
  width: max-content;
  min-width: 184px;
  margin-bottom: 12px;
  padding-inline: 56px;
  background: #fff;
  color: #0b0b0c;
  border: 1px solid transparent;
  transition:
    background-color .28s cubic-bezier(.22, 1, .36, 1),
    border-color .28s cubic-bezier(.22, 1, .36, 1),
    color .28s cubic-bezier(.22, 1, .36, 1);
}
.submit:hover {
  background: transparent;
  border-color: rgba(255,255,255,.82);
  color: #fff;
  transform: none;
}
.contact-form p { color: var(--text-muted); font-size: 13px; }
.response-blink {
  margin: 0 auto;
  color: #fff !important;
  font-size: clamp(var(--contact-title-size), 9vw, var(--contact-title-size-pc)) !important;
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
  animation: responseBlink 2.4s ease-in-out infinite;
}
.contact-form a { color: white; }

.toast { position: fixed; left: 50%; top: 96px; z-index: 80; transform: translateX(-50%); border: 1px solid var(--border-hover); border-radius: 12px; background: #111114; color: white; padding: 12px 18px; box-shadow: 0 18px 70px rgba(0,0,0,.35); }
.toast:not([hidden]) { animation: toastIn .24s cubic-bezier(.22, 1, .36, 1) both; }

@keyframes introAura {
  0% { opacity: 0; transform: scale(1.2); filter: blur(18px); }
  58% { opacity: .42; }
  100% { opacity: .12; transform: scale(1); filter: blur(0); }
}
@keyframes introCharIn {
  from {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(var(--intro-x-current), 0, 0) scale(1.08);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes introCharOut {
  to {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(var(--intro-x-out-current), 0, 0) scale(.985);
  }
}
@keyframes introLogoOut {
  to {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(-50%, -8px, 0);
  }
}
@keyframes introOut {
  0% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); visibility: hidden; }
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@keyframes riseBlur {
  from { opacity: 0; transform: translateY(24px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroBlindDown {
  from {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
    filter: blur(9px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes aboutBlindIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(7px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes sectionBlindDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
    filter: blur(9px);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes sectionRiseUp {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}
@keyframes aboutLineFill {
  from {
    background-size: 0% 100%, 100% 100%;
  }
  to {
    background-size: 100% 100%, 100% 100%;
  }
}
@keyframes cardPop {
  from { opacity: 0; transform: translateY(14px) scale(.97); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes detailIn {
  from { opacity: 0; transform: translateY(18px) scale(.985); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes toastIn {
  from { opacity: 0; transform: translate(-50%, -8px) scale(.98); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@keyframes responseBlink {
  0%, 100% { opacity: .42; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  body.js-ready .animate-ready {
    opacity: 1;
    transform: none;
    filter: none;
  }
  body.js-ready .about-body.animate-ready > * {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0 0 0 0);
  }
  body.js-ready .hero-content.hero-animate-ready h1,
  body.js-ready .hero-content.hero-animate-ready p,
  body.js-ready .hero-content.hero-animate-ready .hero-actions {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: inset(0 0 0 0);
  }
  body.js-ready .section-reveal-item {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: inset(0 0 0 0) !important;
  }
  body.js-ready .section-reveal-item :is(h2) {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: inset(0 0 0 0) !important;
  }
  .about-emphasis {
    background-size: 100% 100%, 100% 100%;
  }
}

@media (max-width: 980px) {
  .featured-grid, .about-grid, .service-grid { grid-template-columns: 1fr; }
  .about-left { position: static; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .video-tabs { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  html,
  body {
    touch-action: pan-y pinch-zoom;
  }
  .works,
  .services,
  .about,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }
  .works,
  .services {
    padding-top: 118px;
    padding-bottom: 116px;
  }
  .about {
    padding-top: 112px;
    padding-bottom: 112px;
  }
  .contact {
    padding-top: 112px;
    padding-bottom: 124px;
  }
  .outline-link { display: none; }
  .intro-title { font-size: clamp(30px, 9.6vw, 44px); font-weight: 800; line-height: 1.14; }
  .intro-logo { bottom: clamp(34px, 8svh, 58px); width: clamp(128px, 42vw, 168px); }
  .intro-title em { padding-inline: .08em; font-weight: 800; }
  .intro-phrase { display: inline-grid; gap: 0; justify-items: center; white-space: normal; }
  .intro-line { display: inline-flex; }
  .intro-char {
    --intro-x-current: var(--intro-x-mobile);
    --intro-x-out-current: var(--intro-x-out-mobile);
    --intro-delay-current: var(--intro-delay-mobile, 0ms);
    --intro-out-delay-current: var(--intro-out-delay-mobile, 0ms);
  }
  .hero { padding-top: 128px; }
  .hero-card-scene { top: 76%; height: 80%; pointer-events: auto; touch-action: pan-y pinch-zoom; }
  .hero-content { transform: translateY(-112px); }
  .hero h1 { font-size: clamp(28px, 8.9vw, 40px); font-weight: 800; line-height: 1.16; letter-spacing: -.4px; white-space: normal; }
  .hero h1 span { display: block; }
  .section-head .service-intro span { display: block; }
  .service-grid { gap: 14px; }
  .service-card {
    min-height: 176px;
    border-radius: 24px;
    padding: 28px 22px;
  }
  .service-card h3 { font-size: 22px; }
  .service-card p { font-size: 14px; line-height: 1.6; }
  .about-greeting { font-size: 16px; line-height: 1.45; }
  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px;
    text-align: center;
  }
  .stats strong { font-size: clamp(28px, 8vw, 34px); }
  .stats span { font-size: 12px; line-height: 1.35; }
  .contact .section-head h2 {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    font-size: clamp(30px, 8.2vw, 36px);
  }
  .section-head.split { align-items: flex-start; flex-direction: column; }
  .section-head.split.featured-head {
    align-items: center;
    margin-bottom: 42px;
    text-align: center;
  }
	  .featured-section-block {
	    min-height: auto;
	    margin-bottom: 112px;
	    padding-block: 24px 34px;
	    touch-action: pan-y pinch-zoom;
	  }
  .featured-grid {
    min-height: 340px;
    margin-bottom: 36px;
  }
  .featured-stack { height: 340px; }
	  .featured-card {
	    width: calc(100% - 54px);
	  }
	  .featured-card.is-right {
	    transform: translate3d(calc(-50% + 24px), 16px, -70px) rotate(3deg) scale(.9);
	  }
	  .featured-card.is-left {
	    transform: translate3d(calc(-50% - 26px), 18px, -80px) rotate(-3deg) scale(.89);
	  }
  .featured-main { min-height: 340px; }
  .featured-copy {
    padding: 18px 70px 18px 18px;
  }
  .featured-copy strong {
    max-width: 100%;
    margin-top: 10px;
    font-size: clamp(21px, 6.4vw, 29px);
    line-height: 1.14;
  }
	  .featured-copy em {
	    max-width: min(52vw, 188px);
	    margin-top: 8px;
	    font-size: clamp(11px, 3.1vw, 13px);
	    line-height: 1.45;
	    word-break: keep-all;
	    overflow-wrap: break-word;
	    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .featured-copy .badge,
  .card-badge {
    min-height: 25px;
    padding: 0 12px;
    font-size: 11px;
  }
  .watch {
    right: 18px;
    bottom: 18px;
  }
  .watch span {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }
  .featured-nav {
    display: none;
  }
  .featured-arrow {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .featured-arrow.is-prev {
    left: 0;
  }
  .featured-arrow.is-next {
    right: 0;
  }
  .featured-actions {
    margin-top: 2px;
  }
	  .featured-actions .outline-link {
	    display: inline-flex;
	  }
	  .filters {
	    row-gap: 0;
	  }
  .filter-break {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    height: 0;
  }
	  .filter-pill {
	    padding: 0 6px;
	    font-size: 15px;
	  }
	  .filter-pill:first-child {
	    padding-left: 0;
	  }
	  .filter-pill:nth-of-type(n+5) {
	    margin-top: 10px;
	  }
	  .filter-pill:nth-of-type(4) {
	    margin-right: 0;
	    padding-right: 8px;
	  }
	  .filter-pill:nth-of-type(4)::after {
	    content: "";
	    position: absolute;
	    right: 0;
	    top: 50%;
	    width: 1px;
	    height: 13px;
	    background: rgba(255,255,255,.4);
	    transform: translateY(-50%);
	  }
	  .filter-pill:nth-of-type(5)::before {
	    display: none;
	  }
  .work-grid {
    row-gap: 40px;
  }
  .work-info {
    padding-top: 15px;
  }
  .work-info strong {
    font-size: 17px;
  }
  .work-info em {
    font-size: 14px;
    line-height: 1.48;
  }
  .project-detail {
    padding: 12px;
  }
  .project-detail-panel {
    max-height: 90svh;
    border-radius: 14px;
  }
  .detail-meta-row {
    align-items: stretch;
    flex-direction: column;
  }
  .youtube-link {
    width: max-content;
  }
  .featured-item { grid-template-columns: 118px 1fr; }
  .work-grid, .field-grid, .video-tabs { grid-template-columns: 1fr; }
  .custom-type-field { width: 100%; }
  .submit { width: max-content; }
}
