:root {
  color-scheme: dark;
  --black: #050505;
  --panel: #101114;
  --ink: #fbfbf2;
  --paper: #fff;
  --mist: #edf3f7;
  --lime: #d8ff1f;
  --blue: #245dff;
  --red: #ff4b35;
  --muted: rgba(251,251,242,.66);
  --muted-dark: rgba(5,5,5,.56);
  --line: rgba(251,251,242,.16);
  --line-dark: rgba(5,5,5,.14);
  --max: 1240px;
  --px: max(40px, calc((100vw - var(--max)) / 2));
  --sy: clamp(7.8rem, 10vw, 11rem);
  --sy2: clamp(8.6rem, 12vw, 13rem);
  --hg: clamp(2.8rem, 5vw, 4.8rem);
  --cp: clamp(1.35rem, 2vw, 1.9rem);
  --font-body: clamp(1rem,.96rem + .18vw,1.12rem);
  --font-copy: clamp(1.08rem,1rem + .32vw,1.28rem);
  --font-lead: clamp(1.18rem,1.04rem + .56vw,1.52rem);
  --scene: 0;
  --story-progress: 0;
  --story-local: 0;
  --stage-x: 0px;
  --stage-y: 0px;
  --stage-rotate: 0deg;
  --glass-one-x: 0px;
  --glass-one-y: 0px;
  --glass-one-rotate: -22deg;
  --glass-two-x: 0px;
  --glass-two-y: 0px;
  --glass-two-rotate: -16deg;
  --glass-three-x: 0px;
  --glass-three-y: 0px;
  --glass-three-rotate: -30deg;
  --signal-scale: 0.2;
  --hero-image-y: 0px;
  --hero-image-scale: 1;
  --hero-content-y: 0px;
  --hero-content-opacity: 1;
  --hero-mark-y: 0px;
  --hero-line-shift: 0px;
  --mx: 0;
  --my: 0;
  --gloss-x: 50%;
  --gloss-y: 28%;
  --pluuug-crop: 60px;
  --pluuug-initial-height: 1080px;
  --pluuug-frame-height: 2140px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--ink);
  font-family: "Pretendard Variable", Pretendard, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--font-body);
  line-height: 1.5;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-rendering: geometricPrecision;
}

::selection {
  background: var(--lime);
  color: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}

.brand-cursor {
  display: none;
}

@media (pointer: fine) and (hover: hover) {
  html.cursor-ready,
  html.cursor-ready * {
    cursor: none;
  }

  html.cursor-ready .start__form,
  html.cursor-ready .start__form * {
    cursor: auto;
  }

  .brand-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10000;
    display: block;
    width: 46px;
    height: 46px;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: difference;
    transform: translate3d(-80px, -80px, 0) translate(-50%, -50%) scale(1);
    transition: opacity 110ms ease;
    contain: layout paint style;
    will-change: transform, opacity;
  }

  html.cursor-on .brand-cursor {
    opacity: 1;
  }

  html.cursor-muted .brand-cursor {
    opacity: 0;
  }

  .brand-cursor::before,
  .brand-cursor::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
  }

  .brand-cursor::before {
    border: 1px solid rgba(251,251,242,.76);
    background: radial-gradient(circle at 34% 30%, rgba(216,255,31,.72), rgba(251,251,242,.08) 42%, transparent 68%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.52), 0 0 26px rgba(216,255,31,.24);
  }

  .brand-cursor::after {
    inset: 19px;
    background: var(--lime);
    box-shadow: 0 0 18px rgba(216,255,31,.72);
  }

  html.cursor-link .brand-cursor::before {
    background: rgba(216,255,31,.92);
    border-color: rgba(216,255,31,.92);
  }

  html.cursor-text .brand-cursor::before {
    inset: 4px 18px;
    border-radius: 4px;
    background: var(--ink);
  }
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
ol {
  margin: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

#film,
#about,
#service,
#work,
#clients,
#edit,
#start {
  scroll-margin-top: 72px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  transform: translateY(-150%);
  background: var(--lime);
  color: var(--black);
  padding: 0.7rem 0.9rem;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(5,5,5,.42), rgba(5,5,5,.16) 68%, transparent);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(14px) saturate(1.18);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 8% 0%, rgba(216,255,31,.16), transparent 18rem),
    radial-gradient(circle at 88% 0%, rgba(36,93,255,.14), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  opacity: 0.62;
  pointer-events: none;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: -2;
  height: 76px;
  background: linear-gradient(180deg, rgba(5,5,5,.22), transparent);
  backdrop-filter: blur(18px);
  mask-image: linear-gradient(180deg, #000, transparent);
  pointer-events: none;
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.66));
  border-bottom: 1px solid rgba(5,5,5,.08);
  color: var(--black);
  box-shadow: 0 18px 70px rgba(5,5,5,.09);
  backdrop-filter: blur(24px) saturate(1.28);
}

.site-header.is-scrolled::before {
  opacity: 0.88;
  background:
    radial-gradient(circle at 10% 0%, rgba(216,255,31,.12), transparent 18rem),
    radial-gradient(circle at 92% 0%, rgba(36,93,255,.1), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.28));
}

.site-header.is-scrolled::after {
  background: linear-gradient(180deg, rgba(255,255,255,.62), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.76rem;
  font-family: "Unbounded", "Space Grotesk", "Pretendard Variable", sans-serif;
  font-size: 1.26rem;
  font-weight: 800;
  line-height: 1;
}

.brand__mark {
  width: 2.18rem;
  height: 2.18rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 16px rgba(216,255,31,.28));
}

.brand__word {
  display: block;
  transform: translateY(0.01em);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 3.6rem;
  font-size: 0.86rem;
  font-weight: 900;
}

.nav a {
  position: relative;
  padding-block: 0.35rem;
  opacity: 0.72;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), var(--blue), transparent);
  box-shadow: 0 0 18px rgba(216,255,31,.4);
  opacity: 0;
  transform: scaleX(0.2);
  transition: opacity 180ms ease, transform 220ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
  color: var(--lime);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.hero__actions a,
.start__actions a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --button-bg: rgba(251,251,242,.04);
  --button-fg: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(251,251,242,.46);
  padding-inline: 1.15rem;
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(255,255,255,.36), transparent 7.5rem),
    linear-gradient(135deg, rgba(255,255,255,.16), transparent 34%, rgba(216,255,31,.12) 70%, transparent),
    var(--button-bg);
  color: var(--button-fg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), inset 0 -1px 0 rgba(5,5,5,.22), 0 16px 34px rgba(0,0,0,.22);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

.header-cta::before,
.hero__actions a::before,
.start__actions a::before {
  content: "";
  position: absolute;
  top: -120%;
  bottom: -120%;
  left: -76%;
  z-index: 1;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.58), transparent);
  opacity: 0;
  transform: rotate(18deg);
  pointer-events: none;
  transition: left 620ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
}

.header-cta::after,
.hero__actions a::after,
.start__actions a::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.16), transparent 46%);
  pointer-events: none;
}

.header-cta:hover,
.header-cta:focus-visible,
.hero__actions a:hover,
.hero__actions a:focus-visible,
.start__actions a:hover,
.start__actions a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--lime);
  color: var(--black);
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(255,255,255,.62), transparent 8rem),
    linear-gradient(135deg, rgba(255,255,255,.38), transparent 38%, rgba(36,93,255,.18)),
    var(--lime);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.52), inset 0 -1px 0 rgba(5,5,5,.2), 0 18px 42px rgba(216,255,31,.22);
}

.header-cta:hover::before,
.header-cta:focus-visible::before,
.hero__actions a:hover::before,
.hero__actions a:focus-visible::before,
.start__actions a:hover::before,
.start__actions a:focus-visible::before {
  left: 124%;
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 94svh;
  isolation: isolate;
  overflow: clip;
  display: grid;
  align-items: end;
  padding: 8.5rem max(28px, calc((100vw - var(--max)) / 2)) 5rem;
  background: var(--black);
}

.hero::before {
  content: "AXIX";
  position: absolute;
  left: max(28px, calc((100vw - var(--max)) / 2));
  top: 7.4rem;
  z-index: 0;
  color: transparent;
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-size: 12rem;
  font-weight: 900;
  line-height: 0.8;
  opacity: 0.58;
  -webkit-text-stroke: 1px rgba(251,251,242,.16);
  transform: translate3d(calc(var(--mx) * -12px), calc(var(--my) * -12px + var(--hero-mark-y)), 0);
  animation: hero-mark-pulse 7.2s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 22%, rgba(216,255,31,.24), transparent 24rem),
    radial-gradient(circle at 82% 64%, rgba(36,93,255,.2), transparent 20rem),
    linear-gradient(116deg, transparent 0 48%, rgba(251,251,242,.1) 49%, transparent 52%),
    linear-gradient(160deg, transparent 0 58%, rgba(255,75,53,.12) 59%, transparent 62%);
  mix-blend-mode: screen;
  opacity: 0.9;
  background-size: 100% 100%, 100% 100%, 180% 100%, 160% 100%;
  transform: translate3d(calc(var(--mx) * 16px), calc(var(--my) * 10px), 0);
  animation: hero-aurora 9.5s ease-in-out infinite;
}

.hero__image {
  position: absolute;
  z-index: -4;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: contrast(1.06) saturate(1.08);
  transform: translate3d(0, var(--hero-image-y), 0) scale(var(--hero-image-scale));
  transform-origin: center;
  will-change: transform;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.82) 42%, rgba(5,5,5,.2) 100%),
    linear-gradient(180deg, rgba(5,5,5,.22) 0%, rgba(5,5,5,.74) 100%);
  animation: hero-shade-breathe 8s ease-in-out infinite;
}

.hero__chrome {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251,251,242,.06) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    linear-gradient(180deg, transparent, rgba(216,255,31,.08));
  transform: translate3d(0, var(--hero-line-shift), 0);
  animation: hero-grid-drift 12s linear infinite;
  will-change: transform;
}

.hero__chrome span {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,255,31,.9), transparent);
  background-size: 220% 100%;
  opacity: 0.72;
  transform: translateX(calc(var(--mx) * 18px));
  animation: hero-beam-run 4.8s ease-in-out infinite;
}

.hero__chrome span:nth-child(1) {
  left: 18%;
  right: 8%;
  top: 24%;
}

.hero__chrome span:nth-child(2) {
  left: 4%;
  right: 34%;
  bottom: 18%;
  background: linear-gradient(90deg, transparent, rgba(36,93,255,.9), transparent);
  background-size: 220% 100%;
  animation-delay: -1.8s;
}

.hero__chrome span:nth-child(3) {
  left: 48%;
  right: 9%;
  bottom: 27%;
  background: linear-gradient(90deg, transparent, rgba(255,75,53,.82), transparent);
  background-size: 220% 100%;
  animation-delay: -3.1s;
}

.hero__chrome::before,
.hero__chrome::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(251,251,242,.18);
  background:
    linear-gradient(135deg, rgba(251,251,242,.14), rgba(251,251,242,.02) 38%, rgba(216,255,31,.08)),
    rgba(5,5,5,.1);
  box-shadow: inset 0 1px 0 rgba(251,251,242,.18), 0 42px 90px rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}

.hero__chrome::before {
  right: 7%;
  top: 13%;
  width: min(32vw, 520px);
  height: min(50vh, 480px);
  transform: perspective(900px) rotateY(-24deg) rotateX(6deg) rotateZ(2deg);
  animation: hero-panel-drift-a 6.6s ease-in-out infinite;
}

.hero__chrome::after {
  right: 27%;
  bottom: 13%;
  width: min(23vw, 360px);
  height: min(24vh, 230px);
  transform: perspective(720px) rotateY(-22deg) rotateX(8deg) rotateZ(-7deg);
  animation: hero-panel-drift-b 5.8s ease-in-out infinite;
}

.hero__inner {
  width: min(840px, 100%);
  opacity: var(--hero-content-opacity);
  transform: translate3d(0, var(--hero-content-y), 0);
  will-change: transform, opacity;
  animation: hero-copy-enter 820ms cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

.eyebrow {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.error-title,
.sequence h2,
.work__intro h2,
.proof__line h2,
.start h2 {
  font-family: "Unbounded", "Space Grotesk", "Pretendard Variable", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: normal;
}

.hero h1 {
  margin-top: 1rem;
  font-size: 7.6rem;
  line-height: 1.05;
  word-break: normal;
  overflow-wrap: normal;
}

.hero__line {
  max-width: 520px;
  margin-top: 1.25rem;
  color: rgba(251,251,242,.78);
  font-size: 1.08rem;
  font-weight: 800;
}

.hero__actions,
.start__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__actions a:first-child,
.start__actions a:first-child {
  --button-bg: rgba(251,251,242,.92);
  --button-fg: var(--black);
  border-color: rgba(251,251,242,.76);
  color: var(--black);
}

.site-header.is-scrolled .header-cta {
  --button-bg: rgba(5,5,5,.92);
  --button-fg: var(--ink);
  border-color: rgba(5,5,5,.28);
}

.hero__meta {
  position: absolute;
  left: max(28px, calc((100vw - var(--max)) / 2));
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 1.1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(251,251,242,.54);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--black);
}

.ticker div {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 24s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  padding: 0.72rem 0;
  color: rgba(251,251,242,.72);
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.ticker span::after {
  content: "/";
  display: inline-block;
  margin-inline: 1.05rem;
  color: rgba(216,255,31,.82);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(4.2rem, 6.4vw, 7rem);
  min-height: auto;
  padding: var(--sy) var(--px) var(--sy2);
  background: var(--paper);
  color: var(--black);
}

.about__copy {
  align-self: center;
}

.about__copy .eyebrow,
.service__head .eyebrow,
.clients__head .eyebrow {
  color: var(--red);
}

.about h2,
.service__head h2,
.clients__head h2 {
  max-width: 920px;
  margin-top: 1rem;
  font-family: "Unbounded", "Space Grotesk", "Pretendard Variable", sans-serif;
  font-size: 6.4rem;
  font-weight: 800;
  line-height: 1.12;
  overflow-wrap: normal;
}

.about__text {
  align-self: center;
  display: grid;
  gap: clamp(2.4rem, 4vw, 3.4rem);
}

.about__text > p {
  max-width: 560px;
  color: var(--muted-dark);
  font-size: var(--font-lead);
  font-weight: 760;
  line-height: 1.62;
}

.about dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.about dl div {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 108px;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  padding: var(--cp);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(255,255,255,.72), transparent 9rem),
    linear-gradient(135deg, rgba(255,255,255,.44), rgba(255,255,255,.06) 50%, rgba(216,255,31,.12)),
    rgba(255,255,255,.12);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.about dl div::after {
  content: "";
  position: absolute;
  inset: -90% auto -90% -70%;
  z-index: 0;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.86), transparent);
  opacity: 0;
  transform: rotate(19deg);
  pointer-events: none;
  transition: left 660ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
}

.about dl div > * {
  position: relative;
  z-index: 1;
}

.about dl div:hover {
  border-color: rgba(5,5,5,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 24px 60px rgba(5,5,5,.12);
  transform: translateY(-2px);
}

.about dl div:hover::after {
  left: 124%;
  opacity: 1;
}

.about dt {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about dd {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
}

.service {
  padding: var(--sy) var(--px) var(--sy2);
  background: var(--black);
  color: var(--ink);
}

.service__head {
  min-height: auto;
  display: grid;
  align-content: end;
  padding-bottom: calc(var(--hg) + 2.6rem);
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service__grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --gloss-x: 18%;
  --gloss-y: 12%;
  min-height: 310px;
  display: grid;
  align-content: end;
  gap: 1rem;
  padding: var(--cp);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(255,255,255,.1), transparent 12rem),
    linear-gradient(180deg, rgba(251,251,242,.03), transparent),
    rgba(251,251,242,.02);
  box-shadow: inset 0 1px 0 rgba(251,251,242,.08);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, filter 220ms ease, transform 220ms ease;
}

.service__grid article::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(216,255,31,.22), transparent 10rem),
    linear-gradient(135deg, rgba(251,251,242,.18), transparent 36%, rgba(36,93,255,.12) 58%, transparent 74%);
  opacity: 0.42;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.service__grid article::after {
  content: "";
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -68%;
  width: 42%;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(251,251,242,.32), transparent);
  opacity: 0;
  transform: rotate(18deg);
  transition: left 620ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 220ms ease;
  pointer-events: none;
}

.service__grid article > * {
  position: relative;
  z-index: 2;
}

.service__grid article:hover,
.service__grid article:focus-within {
  border-color: rgba(216,255,31,.52);
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(216,255,31,.16), transparent 12rem),
    linear-gradient(180deg, rgba(251,251,242,.08), rgba(251,251,242,.02)),
    rgba(216,255,31,.035);
  box-shadow: inset 0 1px 0 rgba(251,251,242,.2), 0 28px 80px rgba(0,0,0,.24);
  transform: translateY(-3px);
}

.service__grid article:hover::before,
.service__grid article:focus-within::before {
  opacity: 0.86;
}

.service__grid article:hover::after,
.service__grid article:focus-within::after {
  left: 124%;
  opacity: 1;
}

.service__grid span,
.project-list span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service__grid strong {
  font-family: "Space Grotesk", "Pretendard Variable", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.04;
}

.service__grid p {
  max-width: 340px;
  color: var(--muted);
  font-size: var(--font-copy);
  font-weight: 760;
  line-height: 1.62;
}

.sequence {
  height: 360svh;
  background: var(--paper);
  color: var(--black);
}

.sequence__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: clip;
  display: grid;
  grid-template-columns: minmax(560px, 0.88fr) minmax(420px, 0.82fr);
  align-items: start;
  gap: clamp(4rem, 5vw, 5.8rem);
  padding: var(--sy) var(--px) 7.2rem;
}

.sequence__copy {
  position: relative;
  z-index: 2;
}

.sequence__copy .eyebrow,
.work__intro .eyebrow,
.proof__line p,
.start .eyebrow {
  color: var(--red);
}

.sequence h2 {
  margin-top: 0;
  max-width: 640px;
  min-height: 3.1em;
  font-size: clamp(5.4rem, 6.4vw, 6.1rem);
  line-height: 1.03;
}

.sequence__copy > p:last-child {
  max-width: 560px;
  margin-top: 2.15rem;
  color: rgba(5,5,5,.66);
  font-size: var(--font-lead);
  font-weight: 800;
  line-height: 1.68;
}

.sequence__stage {
  position: relative;
  min-height: 580px;
  transform-style: preserve-3d;
  transform: translate3d(var(--stage-x), var(--stage-y), 0) rotate(var(--stage-rotate));
  transition: transform 260ms ease-out;
}

.sequence__stage::before {
  content: "";
  position: absolute;
  inset: 8% 0 4% 10%;
  background:
    linear-gradient(90deg, rgba(5,5,5,.04) 1px, transparent 1px) 0 0 / 58px 100%,
    linear-gradient(180deg, rgba(5,5,5,.05) 1px, transparent 1px) 0 0 / 100% 58px;
  transform: skewY(-7deg);
}

.sequence__track {
  position: absolute;
  left: 4%;
  right: 2%;
  top: 18%;
  z-index: 6;
  height: 2px;
  overflow: hidden;
  transform: rotate(-16deg);
  background: rgba(5,5,5,.1);
}

.sequence__track span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--lime), var(--blue));
  transform: scaleX(var(--story-progress));
  transform-origin: left center;
}

.sequence__visual {
  position: absolute;
  inset: 12% 4% 10% 10%;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(5,5,5,.28);
  background: var(--black);
  box-shadow: 0 42px 110px rgba(5,5,5,.22);
  transform: perspective(900px) rotateX(3deg) rotateY(-13deg) rotateZ(-4deg);
}

.sequence__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.52), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.2), transparent 32%, rgba(5,5,5,.44));
  pointer-events: none;
}

.sequence__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08) translateX(44px);
  transition: opacity 520ms ease, transform 720ms ease;
}

.sequence__visual img.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.glass {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(5,5,5,.22);
  background:
    linear-gradient(135deg, rgba(255,255,255,.62), rgba(255,255,255,.06)),
    rgba(255,255,255,.12);
  box-shadow: 0 36px 90px rgba(5,5,5,.14);
  backdrop-filter: blur(16px);
  transition: transform 260ms ease-out, opacity 260ms ease-out;
}

.glass::before,
.glass::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(5,5,5,.14);
}

.glass::before {
  left: 10%;
  right: 12%;
  top: 16%;
  height: 16%;
  background: rgba(5,5,5,.86);
}

.glass::after {
  left: 10%;
  right: 10%;
  bottom: 14%;
  height: 30%;
  background:
    linear-gradient(90deg, var(--lime) 0 18%, transparent 18% 26%, var(--blue) 26% 34%, transparent 34%),
    rgba(5,5,5,.06);
}

.glass span {
  position: absolute;
  left: 12%;
  top: 56%;
  width: 46%;
  height: 7px;
  background: var(--lime);
  transform: scaleX(var(--signal-scale));
  transform-origin: left center;
}

.glass--one {
  width: 58%;
  height: 42%;
  left: 5%;
  top: 10%;
  transform: rotateX(54deg) rotateZ(var(--glass-one-rotate)) translate3d(var(--glass-one-x), var(--glass-one-y), 0);
}

.glass--two {
  width: 48%;
  height: 54%;
  right: 2%;
  top: 22%;
  opacity: 0.88;
  transform: rotateX(54deg) rotateZ(var(--glass-two-rotate)) translate3d(var(--glass-two-x), var(--glass-two-y), 0);
}

.glass--three {
  width: 54%;
  height: 36%;
  left: 24%;
  bottom: 3%;
  opacity: 0.8;
  transform: rotateX(54deg) rotateZ(var(--glass-three-rotate)) translate3d(var(--glass-three-x), var(--glass-three-y), 0);
}

.signal {
  position: absolute;
  z-index: 5;
  height: 8px;
  transform: rotateZ(-17deg) scaleX(var(--signal-scale));
  transform-origin: left center;
  filter: blur(0.2px);
  transition: transform 260ms ease-out;
}

.signal--lime {
  width: 52%;
  left: 18%;
  top: 42%;
  background: var(--lime);
}

.signal--blue {
  width: 32%;
  right: 2%;
  top: 58%;
  background: var(--blue);
}

.signal--red {
  width: 22%;
  left: 7%;
  bottom: 17%;
  background: var(--red);
}

.sequence__rail {
  position: absolute;
  left: var(--px);
  right: var(--px);
  bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.sequence__rail li {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 94px;
  display: grid;
  align-content: end;
  gap: 0.5rem;
  padding: 1.15rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(5,5,5,.34);
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(255,255,255,.72), transparent 8rem),
    rgba(255,255,255,.1);
  font-weight: 900;
  transition: color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.sequence__rail li::before {
  content: "";
  position: absolute;
  inset: -70% auto -70% -66%;
  z-index: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.82), transparent);
  opacity: 0;
  transform: rotate(18deg);
  pointer-events: none;
  transition: left 680ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
}

.sequence__rail li > * {
  position: relative;
  z-index: 1;
}

.sequence__rail li.is-active {
  color: var(--black);
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(216,255,31,.36), transparent 8rem),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(216,255,31,.18)),
    rgba(5,5,5,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.84);
}

.sequence__rail li.is-active::before {
  left: 122%;
  opacity: 1;
}

.sequence__rail span {
  color: var(--red);
  font-size: 0.74rem;
}

.work {
  background: var(--black);
  color: var(--ink);
  padding: var(--sy2) var(--px) calc(var(--sy2) + 1rem);
}

.work__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
  gap: clamp(5rem, 9vw, 10rem);
  align-items: start;
}

.work__intro {
  position: sticky;
  top: calc(72px + 5.5svh);
  min-height: calc(100svh - 72px - 11svh);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 0;
}

.work__intro h2 {
  margin-top: 1rem;
  max-width: 440px;
  font-size: clamp(5.1rem, 5vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
  word-break: normal;
  overflow-wrap: normal;
}

.work__lead {
  max-width: 420px;
  color: var(--muted);
  font-size: var(--font-copy);
  font-weight: 760;
  line-height: 1.6;
}

.work__index {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.work__index li {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  color: rgba(251,251,242,.72);
  font-family: "Space Grotesk", "Pretendard Variable", sans-serif;
  font-weight: 700;
}

.work__index span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.case-stack {
  display: grid;
  gap: clamp(4.6rem, 9svh, 8rem);
  padding-top: 6svh;
  padding-bottom: 6svh;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.case {
  position: relative;
  min-height: min(76svh, 790px);
  overflow: hidden;
  border: 1px solid rgba(251,251,242,.18);
  background: #111;
  isolation: isolate;
  box-shadow: 0 40px 90px rgba(0,0,0,.38);
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.case::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(255,255,255,.28), transparent 15rem),
    linear-gradient(116deg, transparent 0 38%, rgba(255,255,255,.32) 45%, transparent 52%),
    linear-gradient(160deg, transparent 0 56%, rgba(216,255,31,.18) 59%, transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.34;
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * 10px), calc(var(--my) * 8px), 0);
  transition: opacity 260ms ease, transform 260ms ease;
}

.case::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,5,5,.05) 32%, rgba(5,5,5,.78) 100%),
    linear-gradient(90deg, rgba(5,5,5,.48), transparent 52%);
}

.case:hover,
.case:focus-visible {
  border-color: rgba(216,255,31,.5);
  box-shadow: 0 46px 120px rgba(0,0,0,.46), 0 0 0 1px rgba(216,255,31,.16);
  transform: translateY(-4px);
}

.case:hover::before,
.case:focus-visible::before {
  opacity: 0.7;
}

.case img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms ease, filter 900ms ease;
}

.case:hover img,
.case:focus-visible img {
  transform: scale(1.045);
  filter: contrast(1.08) saturate(1.08);
}

.case__caption {
  position: absolute;
  left: clamp(1.25rem, 3vw, 2.6rem);
  right: clamp(1.25rem, 3vw, 2.6rem);
  bottom: clamp(1.25rem, 3vw, 2.6rem);
  z-index: 3;
  display: grid;
  gap: 0.7rem;
}

.case__caption span {
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
}

.case__caption strong {
  max-width: 720px;
  color: var(--ink);
  font-size: 3.4rem;
  line-height: 1.12;
  letter-spacing: 0;
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  font-weight: 900;
}

.case--wide {
  width: min(100%, 760px);
}

.case--tall {
  width: min(92%, 700px);
  min-height: min(82svh, 860px);
  justify-self: end;
}

.case--light {
  width: min(100%, 780px);
  min-height: min(76svh, 790px);
  justify-self: center;
}

.case--light::after {
  background:
    linear-gradient(180deg, rgba(5,5,5,0) 26%, rgba(5,5,5,.7) 100%),
    linear-gradient(90deg, rgba(5,5,5,.32), transparent 55%);
}

.project-list {
  margin-top: clamp(6rem, 9vw, 8rem);
  border-top: 1px solid var(--line);
}

.project-list a {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 136px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 180px;
  align-items: center;
  gap: 2rem;
  padding-block: 1.2rem;
  border-bottom: 1px solid var(--line);
  color: rgba(251,251,242,.62);
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(255,255,255,.08), transparent 13rem),
    linear-gradient(90deg, rgba(255,255,255,.02), transparent);
  transition: color 180ms ease, background 180ms ease, padding-inline 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

.project-list a::before {
  content: "";
  position: absolute;
  inset: -90% auto -90% -64%;
  z-index: 0;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  opacity: 0;
  transform: rotate(18deg);
  pointer-events: none;
  transition: left 660ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
}

.project-list a > * {
  position: relative;
  z-index: 1;
}

.project-list a:hover,
.project-list a:focus-visible {
  padding-inline: 1rem;
  border-color: rgba(216,255,31,.3);
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(216,255,31,.18), transparent 14rem),
    linear-gradient(90deg, rgba(251,251,242,.08), rgba(251,251,242,.02));
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.project-list a:hover::before,
.project-list a:focus-visible::before {
  left: 122%;
  opacity: 1;
}

.project-list strong {
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
}

.project-list em {
  justify-self: end;
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.clients {
  overflow: hidden;
  padding: var(--sy) 0 var(--sy2);
  background: var(--paper);
  color: var(--black);
}

.clients__head {
  width: min(var(--max), calc(100% - 80px));
  min-height: auto;
  display: grid;
  align-content: end;
  margin-inline: auto;
  padding-bottom: var(--hg);
}

.logo-flow {
  display: grid;
  gap: 1.35rem;
}

.logo-flow__row {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  animation: logo-flow 28s linear infinite;
}

.logo-flow__row--reverse {
  animation-direction: reverse;
  animation-duration: 34s;
}

.logo-flow a{position:relative;overflow:hidden;isolation:isolate;min-width:226px;min-height:116px;display:inline-grid;place-items:center;padding:1.25rem 1.7rem;border:1px solid var(--line-dark);background:radial-gradient(circle at var(--gloss-x) var(--gloss-y),rgba(255,255,255,.92),transparent 8rem),linear-gradient(135deg,rgba(255,255,255,.56),rgba(255,255,255,.12) 42%,rgba(36,93,255,.08)),rgba(255,255,255,.22);text-decoration:none;box-shadow:inset 0 1px 0 rgba(255,255,255,.86),0 18px 44px rgba(5,5,5,.08);transition:transform 220ms ease,border-color 220ms ease,box-shadow 220ms ease}
.logo-flow a:hover,.logo-flow a:focus-visible{outline:none;transform:translateY(-2px);box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 24px 58px rgba(5,5,5,.12)}
.logo-flow img{position:relative;z-index:1;width:min(166px,76%);max-height:48px;object-fit:contain;filter:brightness(0) opacity(.72)}
.logo-flow a:hover img,.logo-flow a:focus-visible img{transform:scale(1.035);filter:brightness(0) opacity(.94)}
.logo-flow a::after{content:"";position:absolute;inset:-90% auto -90% -74%;z-index:0;width:50%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.92),transparent);opacity:.28;transform:rotate(18deg);animation:gloss-drift 5.5s ease-in-out infinite;pointer-events:none}

.proof {
  background: var(--paper);
  color: var(--black);
  padding: var(--sy2) var(--px);
}

.proof__line {
  min-height: auto;
  display: grid;
  align-content: start;
  margin-bottom: var(--hg);
}

.proof__line p {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof__line h2 {
  max-width: min(1120px, 100%);
  margin-top: 1.2rem;
  font-size: clamp(5rem, 7.2vw, 6.85rem);
  line-height: 1.02;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.proof__grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 184px;
  display: grid;
  align-content: end;
  gap: 0.7rem;
  padding: var(--cp);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: rgba(5,5,5,.62);
  background:
    radial-gradient(circle at var(--gloss-x) var(--gloss-y), rgba(255,255,255,.76), transparent 9rem),
    linear-gradient(135deg, rgba(255,255,255,.5), rgba(255,255,255,.08) 48%, rgba(216,255,31,.1)),
    rgba(255,255,255,.1);
  font-size: 1.05rem;
  font-weight: 900;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.proof__grid article::after {
  content: "";
  position: absolute;
  inset: -90% auto -90% -74%;
  z-index: 0;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.86), transparent);
  opacity: 0.22;
  transform: rotate(18deg);
  animation: gloss-drift 6.5s ease-in-out infinite;
  pointer-events: none;
}

.proof__grid article > * {
  position: relative;
  z-index: 1;
}

.proof__grid article:hover {
  border-color: rgba(5,5,5,.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 20px 54px rgba(5,5,5,.12);
  transform: translateY(-3px);
}

.proof__grid span {
  color: var(--red);
  font-size: 0.74rem;
}

.proof__grid strong {
  color: var(--black);
  font-size: 1.3rem;
  line-height: 1;
}

.proof__grid p {
  max-width: 210px;
  color: rgba(5,5,5,.52);
  font-size: 0.98rem;
  font-weight: 760;
  line-height: 1.48;
}

.start {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: #fff;
  color: var(--black);
}

.start__hero {
  position: relative;
  isolation: isolate;
  min-height: 68svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: var(--sy) var(--px) 6.2rem;
  background: var(--black);
  color: var(--ink);
}

.start__hero > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: contrast(1.08) saturate(1.08) brightness(1.06);
}

.start__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 24% 72%, rgba(216,255,31,.24), transparent 19rem),
    radial-gradient(circle at 82% 32%, rgba(36,93,255,.22), transparent 20rem),
    linear-gradient(112deg, transparent 0 45%, rgba(255,255,255,.16) 48%, transparent 54%),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 12vw 100%;
  mix-blend-mode: screen;
  opacity: 0.82;
  pointer-events: none;
  transform: translate3d(calc(var(--mx) * 14px), calc(var(--my) * 10px), 0);
}

.start__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.72) 42%, rgba(5,5,5,.1) 100%),
    linear-gradient(180deg, rgba(5,5,5,.06), rgba(5,5,5,.78));
}

.start__form-wrap {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 5.6rem var(--px) 6.8rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(36,93,255,.12), transparent 34rem),
    radial-gradient(circle at 12% 18%, rgba(216,255,31,.12), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #fff 46%, #f6f9ff 100%),
    #fff;
}

.start__form-wrap::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(5,5,5,.1);
}

.start__inner {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
}

.start h2 {
  margin-top: 1rem;
  font-size: 8rem;
  line-height: 0.96;
}

.error-title {
  margin-top: 1rem;
  font-size: 8rem;
  line-height: 0.86;
}

.start__inner > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: clamp(1.65rem, 2.2vw, 2.35rem);
  color: var(--muted);
  font-size: var(--font-lead);
  font-weight: 800;
}

.start__form {
  position: relative;
  z-index: 1;
  --pluuug-current-height: var(--pluuug-initial-height);
  width: min(860px, 100%);
  height: calc(var(--pluuug-current-height) - var(--pluuug-crop));
  min-height: calc(var(--pluuug-current-height) - var(--pluuug-crop));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(5,5,5,.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,255,255,.72)),
    #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.94), 0 40px 120px rgba(5,5,5,.12);
  transition: height 320ms ease, min-height 320ms ease;
}

.start__form.is-expanded {
  --pluuug-current-height: var(--pluuug-frame-height);
}

.form-loading {
  position: absolute;
  inset: 4px 0 0;
  z-index: 3;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.7rem, 3.5vw, 2.6rem);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    radial-gradient(circle at 18% 8%, rgba(216,255,31,.14), transparent 16rem),
    #fff;
  color: var(--black);
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.form-loading strong {
  font-family: "Space Grotesk", "Pretendard Variable", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.35rem);
  line-height: 1;
}

.form-loading span {
  color: rgba(5,5,5,.64);
  font-weight: 760;
}

.form-loading::after {
  content: "";
  width: min(100%, 520px);
  height: 172px;
  margin-top: 1.8rem;
  border: 1px solid rgba(5,5,5,.08);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5,5,5,.08) 0 32%, transparent 32% 100%) 1.2rem 1.3rem / 72% 14px no-repeat,
    linear-gradient(90deg, rgba(5,5,5,.06) 0 100%) 1.2rem 4.2rem / calc(100% - 2.4rem) 48px no-repeat,
    linear-gradient(90deg, rgba(5,5,5,.06) 0 100%) 1.2rem 8.4rem / calc(100% - 2.4rem) 48px no-repeat,
    rgba(255,255,255,.64);
}

.start__form.is-ready .form-loading {
  opacity: 0;
  visibility: hidden;
}

.start__form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), var(--blue), var(--red), var(--lime));
  pointer-events: none;
}

.start__form iframe {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: var(--pluuug-current-height);
  min-height: var(--pluuug-current-height);
  border: 0;
  background: #fff;
  transform: translateY(calc(var(--pluuug-crop) * -1));
  vertical-align: top;
  opacity: 0;
  transition: opacity 260ms ease;
}

.start__form.is-ready iframe {
  opacity: 1;
}

.form-fallback {
  width: min(860px, 100%);
  margin: 1rem auto 0;
  color: rgba(5,5,5,.58);
  font-size: 0.88rem;
  font-weight: 760;
  text-align: center;
}

.form-fallback a,
.footer__info a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.form-fallback a:hover,
.form-fallback a:focus-visible,
.footer__info a:hover,
.footer__info a:focus-visible {
  color: var(--black);
}

.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 2rem;
  padding: 4.8rem var(--px) 2.8rem;
  border-top: 1px solid rgba(5,5,5,.08);
  background:
    radial-gradient(circle at 18% 0%, rgba(216,255,31,.18), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(36,93,255,.1), transparent 24rem),
    linear-gradient(180deg, #fff 0%, #f6f7f3 100%);
  color: #666;
  font-size: 0.86rem;
  font-weight: 650;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 7px;
  background: linear-gradient(90deg, var(--lime), var(--blue) 52%, var(--red));
}

.footer::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -16rem;
  z-index: -1;
  width: min(48vw, 620px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(216,255,31,.16), transparent 66%);
  filter: blur(1px);
  pointer-events: none;
}

.footer__main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.6rem;
  justify-items: start;
}

.footer .brand {
  color: #050505;
  font-size: 1.45rem;
  gap: 0.74rem;
}

.footer .brand__mark {
  width: 2.15rem;
  height: 2.15rem;
  filter: none;
}

.footer__info {
  display: grid;
  gap: 0.3rem;
  justify-items: start;
  color: #666;
  font-style: normal;
  line-height: 1.55;
  text-align: left;
}

.footer__info strong {
  color: #111;
  font-size: 0.94rem;
  font-weight: 900;
}

.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid #e9e9e9;
}

.footer__bottom p {
  color: #777;
  font-size: 0.82rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}

.footer__links a {
  position: relative;
  overflow: hidden;
  color: #555;
  font-size: 0.84rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--blue));
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #050505;
}

.footer__links a:hover::after,
.footer__links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

[data-reveal] {
  opacity: 0.001;
  transform: translateY(34px);
  transition: opacity 680ms ease, transform 760ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-scroll-fx] {
  --scroll-y: 0px;
  --scroll-scale: 1;
  --scroll-opacity: 1;
  --scroll-rotate: 0deg;
  opacity: var(--scroll-opacity);
  transform: translate3d(0, var(--scroll-y), 0) scale(var(--scroll-scale)) rotate(var(--scroll-rotate));
  transition-property: opacity, transform, color, background, padding-inline, filter;
  transition-duration: 120ms, 160ms, 180ms, 180ms, 180ms, 180ms;
  transition-timing-function: linear, ease-out, ease, ease, ease, ease;
  will-change: transform, opacity;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes logo-flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes gloss-drift {
  0%,
  18% {
    left: -74%;
    opacity: 0;
  }
  38% {
    opacity: 0.56;
  }
  62%,
  100% {
    left: 124%;
    opacity: 0;
  }
}

@keyframes hero-copy-enter{from{opacity:0;transform:translateY(calc(var(--hero-content-y) + 36px))}to{opacity:var(--hero-content-opacity);transform:translateY(var(--hero-content-y))}}
@keyframes hero-mark-pulse{0%,100%{opacity:.42;-webkit-text-stroke-color:rgba(251,251,242,.11)}45%{opacity:.72;-webkit-text-stroke-color:rgba(216,255,31,.24)}70%{opacity:.5;-webkit-text-stroke-color:rgba(36,93,255,.18)}}
@keyframes hero-aurora{0%,100%{opacity:.72;background-position:70% 22%,82% 64%,0 0,0 0}42%{opacity:1;background-position:64% 18%,86% 70%,68% 0,42% 0}70%{opacity:.88;background-position:76% 28%,78% 58%,100% 0,86% 0}}
@keyframes hero-shade-breathe{0%,100%{opacity:1}50%{opacity:.88}}
@keyframes hero-grid-drift{from{background-position:0 0,0 0}to{background-position:12.5vw 0,0 100%}}
@keyframes hero-beam-run{0%,100%{opacity:.28;background-position:-120% 0}34%{opacity:.92;background-position:0 0}68%{opacity:.48;background-position:120% 0}}
@keyframes hero-panel-drift-a{0%,100%{translate:0 0}42%{translate:-22px 18px}72%{translate:16px -12px}}
@keyframes hero-panel-drift-b{0%,100%{translate:0 0}38%{translate:24px -16px}76%{translate:-14px 14px}}

@media (max-width: 1200px) {
  .nav {
    gap: 2.2rem;
  }

  .hero::before {
    font-size: 9rem;
  }

  .hero h1,
  .error-title,
  .about h2,
  .service__head h2,
  .clients__head h2,
  .sequence h2,
  .proof__line h2,
  .start h2 {
    font-size: 6rem;
  }

  .work__intro h2 {
    font-size: 5.4rem;
  }

  .case__caption strong {
    font-size: 3.1rem;
  }

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

  .about {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --px: 20px;
    --sy: 5.8rem;
    --sy2: 6.6rem;
    --hg: 2.6rem;
    --cp: 1.15rem;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
    padding-inline: 20px;
  }

  .brand {
    font-size: 1.08rem;
    gap: 0.68rem;
  }

  .brand__mark {
    width: 1.92rem;
    height: 1.92rem;
  }

  .nav {
    display: none;
  }

  .hero,
  .about,
  .work,
  .proof,
  .sequence__sticky {
    padding-inline: 20px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 6.4rem;
    padding-bottom: 4.4rem;
    align-items: center;
  }

  .hero::before {
    top: 6rem;
    left: 20px;
    font-size: 5.6rem;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(5,5,5,.4), rgba(5,5,5,.96)),
      linear-gradient(90deg, rgba(5,5,5,.92), rgba(5,5,5,.38));
  }

  .hero h1,
  .error-title,
  .about h2,
  .service__head h2,
  .clients__head h2,
  .sequence h2,
  .proof__line h2,
  .start h2 {
    font-size: 4.1rem;
  }

  .hero__line {
    font-size: 1rem;
  }

  .sequence__copy > p:last-child,
  .start__inner > p:not(.eyebrow) {
    font-size: var(--font-copy);
  }

  .hero__meta {
    display: none;
  }

  .ticker span {
    font-size: 1.35rem;
  }

  .about {
    padding-block: var(--sy) var(--sy2);
    gap: 3rem;
  }

  .about dl,
  .service__grid {
    grid-template-columns: 1fr;
  }

  .service {
    padding: var(--sy) 20px var(--sy2);
  }

  .service__head,
  .clients__head {
    min-height: auto;
  }

  .service__grid article {
    min-height: 230px;
  }

  .sequence {
    height: 300svh;
  }

  .sequence__sticky {
    position: sticky;
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(250px, 1fr) auto;
    align-items: stretch;
    gap: 1.6rem;
    padding-top: var(--sy);
    padding-bottom: 1.5rem;
  }

  .sequence__copy {
    align-self: end;
  }

  .sequence__stage {
    min-height: 0;
    height: min(42svh, 380px);
  }

  .sequence__visual {
    inset: 7% 2% 8% 5%;
    transform: perspective(760px) rotateX(2deg) rotateY(-8deg) rotateZ(-3deg);
  }

  .sequence__rail {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr 1fr;
  }

  .work {
    padding: var(--sy2) 20px calc(var(--sy2) + 0.6rem);
  }

  .work__layout {
    grid-template-columns: 1fr;
    gap: 3.25rem;
  }

  .work__intro {
    position: relative;
    top: auto;
    min-height: auto;
    display: grid;
    gap: 2rem;
  }

  .work__intro h2 {
    font-size: 4.2rem;
  }

  .work__lead {
    max-width: 310px;
  }

  .case-stack {
    gap: 2.2rem;
    padding: 0;
  }

  .case,
  .case--wide,
  .case--tall,
  .case--light {
    width: 100%;
    min-height: 430px;
    justify-self: stretch;
  }

  .case__caption strong {
    font-size: 2.45rem;
    line-height: 1.14;
  }

  .project-list a {
    min-height: 126px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0.5rem;
    padding-block: 1.25rem;
  }

  .project-list em {
    justify-self: start;
  }

  .clients {
    padding-block: var(--sy) var(--sy2);
  }

  .clients__head {
    width: calc(100% - 40px);
  }

  .start {
    min-height: auto;
  }

  .start__hero {
    min-height: 54svh;
    padding: var(--sy) 20px 4.6rem;
  }

  .start__hero > img {
    object-position: 66% center;
  }

  .start__form-wrap {
    padding: 3.2rem 20px 4.2rem;
  }

  .start__form {
    width: 100%;
    --pluuug-initial-height: 920px;
    --pluuug-frame-height: 2220px;
  }

  .start__form iframe {
    height: var(--pluuug-current-height);
    min-height: var(--pluuug-current-height);
  }

  .logo-flow a{min-width:176px;min-height:82px;padding:1rem 1.25rem}
  .logo-flow img{width:min(132px,78%);max-height:38px}

  .proof__line {
    min-height: auto;
  }

  .proof__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    display: grid;
    justify-content: start;
  }

  .footer__links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 1.04rem;
  }

  .brand__mark {
    width: 1.78rem;
    height: 1.78rem;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 0.85rem;
  }

  .hero h1,
  .error-title,
  .about h2,
  .service__head h2,
  .clients__head h2,
  .sequence h2,
  .proof__line h2,
  .start h2 {
    font-size: 2.95rem;
  }

  .hero__actions,
  .start__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .sequence__stage {
    height: min(36svh, 300px);
  }

  .case,
  .case--wide,
  .case--tall,
  .case--light {
    min-height: 360px;
  }

  .case__caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .case__caption strong {
    font-size: 2rem;
  }

  .project-list strong {
    font-size: 1.45rem;
  }

  .proof__grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.32rem, 10.55vw, 2.62rem);
    line-height: 1.1;
  }
}

@media (max-width: 700px) {
  .start__form {
    --pluuug-frame-height: 2300px;
    height: calc(var(--pluuug-current-height) - var(--pluuug-crop));
    min-height: calc(var(--pluuug-current-height) - var(--pluuug-crop));
  }

  .start__form iframe {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 100%;
    transform: translateY(calc(var(--pluuug-crop) * -1));
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-scroll-fx] {
    opacity: 1 !important;
    transform: none !important;
  }
}
