@font-face {
  font-family: "Local Sans";
  src: local("Arial");
  font-display: swap;
}

:root {
  --ink: #0b0b0b;
  --paper: #f4f0e8;
  --white: #fffdf8;
  --yellow: #ffd632;
  --pink: #efb6ff;
  --coral: #ff5b45;
  --blue: #4158ff;
  --green: #004d24;
  --line: rgba(11, 11, 11, 0.22);
  --radius: 28px;
  --pad: clamp(20px, 4vw, 64px);
  --display: "Arial Black", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  --body: "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

.filter-defs {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

body.is-entered {
  overflow-x: hidden;
  overflow-y: auto;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  position: relative;
  min-width: 0;
  padding: clamp(90px, 12vw, 180px) var(--pad);
}

.section--ink {
  color: var(--paper);
  background: var(--ink);
}

.section--pink {
  background: var(--pink);
}

.section--yellow {
  background: var(--yellow);
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.display-title {
  margin: 0;
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(3.35rem, 9.2vw, 9.2rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.88;
}

.display-title em {
  color: var(--yellow);
  font-style: normal;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  top: clamp(26px, 4vw, 58px);
  left: var(--pad);
}

.section-index span {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.section-index small {
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.section-index--light {
  color: var(--paper);
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Entrance */
.entrance {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 56px);
  color: var(--paper);
  background:
    radial-gradient(circle at 72% 22%, rgba(218, 183, 255, 0.2), transparent 24%),
    radial-gradient(circle at 22% 78%, rgba(255, 214, 50, 0.13), transparent 28%),
    linear-gradient(135deg, #052b1c 0%, #004d24 48%, #031c14 100%);
  transition: clip-path 0.9s cubic-bezier(0.8, 0, 0.2, 1), visibility 0.9s;
  clip-path: inset(0 0 0 0);
}

.entrance.is-leaving {
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
}

.entrance__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.entrance__topline,
.entrance__bottom {
  position: relative;
  z-index: 1;
}

.entrance__topline {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.interactive-tilt {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  transform-style: preserve-3d;
}

.entrance__wordmark {
  position: absolute;
  z-index: 1;
  top: 47%;
  left: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: min(86vw, 1120px);
  perspective: 1200px;
  transform: translate(-50%, -54%) perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.14s ease-out;
  user-select: none;
  will-change: transform;
}

.entrance__wordmark-cn,
.entrance__wordmark-seven {
  position: relative;
  display: block;
  background:
    linear-gradient(112deg, #151819 0%, #f8fbff 18%, #8b9297 30%, #ffffff 43%, #5f666a 56%, #edf3f5 72%, #191c1e 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.78;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.72);
  filter:
    drop-shadow(2px 2px 0 #0b0c0c)
    drop-shadow(5px 5px 0 #767b80)
    drop-shadow(9px 10px 0 #111314)
    drop-shadow(18px 22px 22px rgba(0, 0, 0, 0.38));
  animation: metalSweep 4.8s ease-in-out infinite;
}

.entrance__wordmark-cn {
  font-size: clamp(4.5rem, 10.5vw, 10.8rem);
}

.entrance__wordmark-seven {
  margin-left: 0.06em;
  background-image: linear-gradient(125deg, #2a132d 0%, #fff 16%, #f6b7ff 33%, #7f4cff 49%, #ffd9ff 67%, #31203d 100%);
  font-size: clamp(7rem, 17vw, 17rem);
  font-style: italic;
  transform: translateZ(36px) rotate(5deg);
  -webkit-text-stroke-color: rgba(255, 222, 255, 0.9);
}

@keyframes metalSweep {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.entrance__chrome {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 22%, white 0 4%, transparent 10%),
    conic-gradient(from 210deg, #111 0deg, #fff 52deg, #777 88deg, #f4baff 138deg, #151515 204deg, #d9e1e4 278deg, #111 360deg);
  box-shadow: inset -12px -14px 24px rgba(0, 0, 0, 0.45), 14px 18px 28px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  animation: chromeFloat 5s ease-in-out infinite alternate;
}

.entrance__chrome--one {
  top: 17%;
  left: 8%;
  width: clamp(62px, 8vw, 122px);
  aspect-ratio: 1;
}

.entrance__chrome--two {
  right: 8%;
  bottom: 19%;
  width: clamp(40px, 5vw, 76px);
  aspect-ratio: 1;
  border-radius: 40% 60% 52% 48%;
  animation-delay: -2s;
}

@keyframes chromeFloat {
  to { transform: translateY(-16px) rotate(18deg); }
}

.entrance__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.entrance__progress {
  min-width: min(34vw, 420px);
  font-family: var(--display);
  line-height: 0.8;
}

.entrance__meter {
  display: flex;
  align-items: flex-start;
  width: max-content;
  filter: drop-shadow(7px 9px 0 rgba(0, 0, 0, 0.42));
}

.entrance__meter > span {
  background:
    linear-gradient(180deg, #fff 0%, #d8ecff 28%, #7cd9ff 46%, #f6f3e8 58%, #8aa9ff 76%, #fff 100%);
  background-size: 100% 240%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3.2rem, 8vw, 8rem);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
  animation: liquidNumber 2.4s ease-in-out infinite;
}

@keyframes liquidNumber {
  0%, 100% { background-position: 50% 0%; transform: skewX(-2deg); }
  50% { background-position: 50% 100%; transform: skewX(2deg) translateY(-2px); }
}

.entrance__progress sup {
  font-size: 0.25em;
}

.entrance__bar {
  height: 3px;
  margin-top: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.entrance__bar i {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), #fff, #8edfff, var(--yellow));
  background-size: 240% 100%;
  animation: barFlow 1.4s linear infinite;
}

@keyframes barFlow { to { background-position: -240% 0; } }

.entrance__actions {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
  text-align: right;
}

.entrance__tagline {
  display: flex;
  gap: 0.45em;
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-size: clamp(0.95rem, 1.5vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  transform: perspective(500px) rotateX(10deg);
}

.entrance__tagline span {
  background: linear-gradient(180deg, #fff, #8b9297 48%, #fff 62%, #202426);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.5px white;
  filter: drop-shadow(2px 2px 0 #111) drop-shadow(5px 5px 0 rgba(255, 182, 255, 0.36));
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-width: 255px;
  min-height: 62px;
  padding: 12px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pill span {
  font-weight: 900;
}

.pill small {
  max-width: 9ch;
  text-align: right;
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.pill:hover {
  transform: translateY(-3px) rotate(-1deg);
}

.pill--light {
  color: var(--ink);
  border: 2px solid #eaf0f2;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(180,188,193,0.82) 45%, rgba(255,255,255,0.98) 64%, rgba(102,109,114,0.9));
  box-shadow:
    0 8px 0 #111516,
    0 16px 30px rgba(0, 0, 0, 0.35),
    inset 0 2px 1px white,
    inset 0 -2px 4px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px) perspective(600px) rotateX(4deg);
}

.pill--light:hover {
  color: #111;
  background: linear-gradient(145deg, #fff8c0, var(--yellow) 46%, white 70%, #a47800);
  transform: translateY(-9px) perspective(600px) rotateX(0deg) rotateZ(-1deg);
}

.pill--yellow {
  color: var(--ink);
  background: var(--yellow);
}

.pill--pink {
  color: var(--ink);
  background: var(--pink);
}

.pill:disabled {
  opacity: 0.45;
  cursor: wait;
}

.text-button {
  padding: 8px 0;
  border: 0;
  color: var(--paper);
  background: transparent;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.text-button:disabled {
  opacity: 0.35;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), 1440px);
  min-height: 58px;
  padding: 7px 10px;
  border: 1px solid rgba(11, 11, 11, 0.18);
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.86);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.site-header.is-hidden {
  opacity: 0;
  transform: translate(-50%, -120%);
}

.brand-stamp {
  width: 112px;
  height: 42px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--green);
}

.brand-stamp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.7rem);
}

.site-nav a {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  position: relative;
  font-size: 0.79rem;
  font-weight: 900;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav small {
  color: #777;
  font-size: 0.5rem;
  letter-spacing: 0.05em;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sound-control {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.sound-control i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9a9a9a;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.sound-control[aria-pressed="true"] i {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 91, 69, 0.2);
  animation: soundPulse 1.1s ease-in-out infinite alternate;
}

@keyframes soundPulse {
  to { transform: scale(0.65); }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--paper);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  grid-template-rows: 1fr auto;
  gap: clamp(24px, 4vw, 64px);
  min-height: 100svh;
  padding-top: clamp(118px, 13vw, 178px);
  padding-bottom: 42px;
  overflow: hidden;
}

.hero__grid,
.contact__tiles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(11, 11, 11, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 11, 11, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 84%);
}

.hero__copy,
.hero__portrait,
.hero__offer,
.spark-game,
.scroll-cue {
  position: relative;
  z-index: 1;
}

.hero__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 10.7vw, 11.5rem);
  font-weight: 900;
  letter-spacing: -0.105em;
  line-height: 0.74;
}

.hero__title > span {
  display: block;
}

.hero__party {
  position: relative;
  z-index: 2;
  width: max-content;
  padding-right: 0.12em;
  color: var(--coral);
  text-shadow: 5px 5px 0 var(--yellow);
  transform: rotate(-2deg);
}

.hero__party i {
  display: inline-block;
  color: var(--blue);
  font-style: normal;
  transform: rotate(8deg);
}

.hero__statement {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(230px, 1fr);
  gap: 2rem;
  max-width: 760px;
  margin-top: clamp(35px, 5vw, 72px);
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.hero__statement strong {
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
}

.hero__statement p {
  margin: 0;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero__portrait {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  height: min(66vh, 730px);
  min-height: 490px;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: 46% 46% 18px 18px;
  box-shadow: 12px 14px 0 #16191b, 22px 24px 0 rgba(172, 180, 186, 0.78);
  transform: rotate(0.6deg);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
}

.portrait-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(10, 12, 14, 0.84);
  box-shadow: 4px 4px 0 rgba(220, 226, 230, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.jelly {
  position: absolute;
  z-index: 3;
  border: 2px solid var(--ink);
  filter: drop-shadow(6px 8px 0 rgba(0, 0, 0, 0.9));
}

.jelly--pink {
  top: 12%;
  right: -8%;
  width: 108px;
  height: 80px;
  border-radius: 58% 42% 56% 44% / 45% 62% 38% 55%;
  background: radial-gradient(circle at 30% 25%, #fff 0 6%, var(--pink) 14%, #f05cff 70%);
  transform: rotate(18deg);
}

.jelly--yellow {
  bottom: 5%;
  left: -5%;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff 0 6%, var(--yellow) 18%, #f19a00 82%);
}

.phone-cord {
  position: absolute;
  z-index: 4;
  top: 13%;
  left: -18%;
  width: 48%;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 8;
  stroke-linecap: round;
  filter: drop-shadow(3px 3px 0 var(--ink));
}

.design-toolkit {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.tool-key {
  position: absolute;
  display: grid;
  place-items: center;
  width: 76px;
  aspect-ratio: 1;
  border: 1px solid #f5f7f8;
  border-radius: 14px;
  color: #17191a;
  background: linear-gradient(145deg, #fff, #a9b0b5 42%, #f7fafb 62%, #62686c);
  box-shadow: 5px 7px 0 #111, 10px 14px 22px rgba(0, 0, 0, 0.28), inset 0 2px 2px white;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
}

.tool-key--command {
  top: 12%;
  right: -7%;
  transform: rotate(8deg);
}

.tool-key--ai {
  top: 28%;
  right: -7%;
  bottom: auto;
  width: 64px;
  color: #eff4f5;
  background: linear-gradient(145deg, #5f676c, #0c0e0f 52%, #aeb5ba);
  font-size: 1.15rem;
  transform: rotate(-6deg);
}

.tool-cursor {
  position: absolute;
  top: 42%;
  left: -12%;
  color: #eef3f5;
  font-size: 6rem;
  line-height: 1;
  -webkit-text-stroke: 2px #101213;
  filter: drop-shadow(7px 8px 0 #0d0f10) drop-shadow(13px 15px 18px rgba(0, 0, 0, 0.32));
  transform: rotate(-8deg);
}

.tool-aperture {
  position: absolute;
  bottom: 15%;
  left: -10%;
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  border: 8px solid #101214;
  border-radius: 50%;
  background: repeating-conic-gradient(from 12deg, #f7fafc 0 18deg, #697075 18deg 34deg, #171a1b 34deg 48deg);
  box-shadow: 8px 10px 0 rgba(130, 138, 144, 0.8), 16px 20px 28px rgba(0, 0, 0, 0.32);
  animation: apertureTurn 10s linear infinite;
}

.tool-aperture i {
  width: 48%;
  aspect-ratio: 1;
  border: 4px solid #d7dde0;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #77d8ff, #181b1f 36%, #050506 70%);
}

@keyframes apertureTurn { to { transform: rotate(360deg); } }

.tool-panel {
  position: absolute;
  top: 5%;
  left: -14%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  width: 150px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  color: #eef2f3;
  background: rgba(18, 21, 22, 0.78);
  box-shadow: 6px 7px 0 #858d92;
  backdrop-filter: blur(14px);
  transform: rotate(-4deg);
}

.tool-panel b,
.tool-panel small {
  font-size: 0.54rem;
  letter-spacing: 0.12em;
}

.tool-panel i {
  display: block;
  width: var(--tool-w, 90%);
  height: 3px;
  background: linear-gradient(90deg, #e9eef0, #767e84);
}

.tool-panel i:nth-of-type(2) { --tool-w: 68%; }
.tool-panel i:nth-of-type(3) { --tool-w: 80%; }

.tool-focus {
  position: absolute;
  inset: 8% -5% 10% 5%;
  color: rgba(242, 246, 248, 0.9);
}

.tool-focus i {
  position: absolute;
  width: 46px;
  height: 46px;
  border-color: rgba(242, 246, 248, 0.9);
}

.tool-focus i:nth-child(1) { top: 0; left: 0; border-top: 2px solid; border-left: 2px solid; }
.tool-focus i:nth-child(2) { top: 0; right: 0; border-top: 2px solid; border-right: 2px solid; }
.tool-focus i:nth-child(3) { bottom: 0; left: 0; border-bottom: 2px solid; border-left: 2px solid; }
.tool-focus i:nth-child(4) { right: 0; bottom: 0; border-right: 2px solid; border-bottom: 2px solid; }

.hero__offer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 0 0;
  border-top: 2px solid var(--ink);
}

.hero__offer p {
  margin: 0 0 4px;
  color: #555;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero__offer strong {
  font-size: clamp(1rem, 1.45vw, 1.35rem);
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 900;
}

.arrow-link span {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

.arrow-link:hover span {
  transform: translateY(5px);
}

.spark-game {
  align-self: end;
  justify-self: end;
  width: min(100%, 310px);
  padding: 12px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.38);
}

.spark-game > span {
  display: flex;
  justify-content: space-between;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.spark-game__tokens {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 74px;
}

.spark {
  display: grid;
  place-items: center;
  border: 1px solid #eef2f4;
  color: #111416;
  background: linear-gradient(145deg, #fff, #a8b0b5 42%, #eff3f4 64%, #6c7479);
  box-shadow: 4px 5px 0 #111, inset 0 2px 1px white;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.spark:hover {
  transform: translateY(-6px) rotate(12deg);
}

.spark.is-collected {
  opacity: 0.25;
  transform: scale(0.65) rotate(20deg);
  pointer-events: none;
}

.spark--star {
  width: 44px;
  height: 44px;
  border-radius: 50% 45% 50% 42%;
  color: var(--paper);
  background: var(--blue);
  font-size: 1.5rem;
}

.spark--orb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, white, var(--pink) 30%, var(--coral));
}

.spark--cross {
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 2rem;
  font-weight: 900;
  transform: rotate(8deg);
}

.spark--cursor,
.spark--command,
.spark--lens {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.spark--cursor svg,
.spark--lens svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spark--cursor svg {
  fill: #111416;
  stroke: #111416;
}

.spark--command {
  color: #eef2f3;
  background: linear-gradient(145deg, #777f84, #111416 55%, #9da4a8);
  font-size: 1.55rem;
  font-weight: 900;
}

.spark--lens {
  border-radius: 50%;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.scroll-cue i {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--ink);
  animation: cue 1.4s ease-in-out infinite;
}

@keyframes cue {
  50% { transform: scaleX(0.35); transform-origin: right; }
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--yellow);
}

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

.ticker span,
.ticker i {
  flex: 0 0 auto;
  padding: 14px 20px;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 2.7rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.ticker i {
  color: var(--coral);
}

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

/* About */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(310px, 0.9fr) minmax(290px, 0.8fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: start;
}

.about__headline {
  grid-column: 1 / span 2;
}

.about__headline .display-title {
  max-width: 10ch;
}

.about__portrait {
  grid-column: 1;
  position: relative;
  height: 640px;
  min-width: 0;
  overflow: visible;
  border: 2px solid var(--ink);
  border-color: #2b2f31;
  background: #d8dcde;
  box-shadow: 12px 14px 0 #141617, 20px 23px 0 #a7afb4;
  transform: rotate(-0.6deg);
}

.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.sticker {
  position: absolute;
  z-index: 2;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.1;
  box-shadow: 5px 5px 0 var(--ink);
}

.sticker--hi {
  top: 18px;
  right: -34px;
  color: #111415;
  background: linear-gradient(145deg, #fff, #9ca4a9 48%, #f4f6f7);
  transform: rotate(5deg);
}

.sticker--role {
  right: -55px;
  bottom: 20px;
  color: #eef2f3;
  background: linear-gradient(145deg, #5e666b, #101213 56%, #899196);
  transform: rotate(-3deg);
}

.about__intro {
  grid-column: 2 / span 2;
  max-width: 820px;
}

.about__intro p {
  margin: 0 0 1.4rem;
  max-width: 34ch;
  font-size: clamp(1.15rem, 2vw, 1.9rem);
  line-height: 1.45;
}

.about__intro .lead {
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.profile-facts {
  grid-column: 2;
  margin: 0;
  border-top: 2px solid var(--ink);
}

.profile-facts div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 1rem;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.profile-facts dt {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.profile-facts dd {
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.about__side-note {
  grid-column: 3;
  padding: 24px;
  border-radius: 50% 50% 18px 18px;
  color: var(--paper);
  background: var(--green);
  text-align: center;
}

.about__side-note span {
  display: block;
  padding: 68px 10px 30px;
  color: var(--pink);
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.about__side-note p {
  margin: 0;
  padding: 0 8px 34px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Services */
.services {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: var(--pad);
}

.services::after {
  display: none;
}

@keyframes slowSpin { to { transform: rotate(360deg); } }

.metal-star {
  position: absolute;
  z-index: 4;
  top: 8%;
  right: 6%;
  width: clamp(92px, 10vw, 158px);
  aspect-ratio: 1;
  cursor: crosshair;
  perspective: 800px;
  transform: perspective(800px) rotateX(var(--rx)) rotateY(var(--ry)) rotate(8deg);
  transition: transform 0.16s ease-out, filter 0.25s ease;
  filter: drop-shadow(9px 12px 0 rgba(0, 0, 0, 0.72)) drop-shadow(0 0 24px rgba(223, 231, 235, 0.25));
}

.metal-star:hover,
.metal-star:focus-visible {
  filter: drop-shadow(5px 7px 0 rgba(0, 0, 0, 0.75)) drop-shadow(0 0 30px rgba(240, 247, 250, 0.65));
}

.metal-star__core,
.metal-star__halo {
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0, 61% 38%, 100% 50%, 61% 62%, 50% 100%, 39% 62%, 0 50%, 39% 38%);
}

.metal-star__core {
  z-index: 2;
  border-radius: 18%;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,0.96) 0 4%, transparent 22%),
    conic-gradient(from 20deg, #151719, #f7fbfd 14%, #747b80 27%, #fff 41%, #34383b 55%, #cfd7db 72%, #ffffff 84%, #242729);
  box-shadow: inset -12px -12px 20px rgba(0, 0, 0, 0.38), inset 10px 8px 18px rgba(255, 255, 255, 0.46);
  animation: chromeStar 5s linear infinite;
}

.metal-star__halo {
  inset: -11%;
  z-index: 1;
  background: rgba(214, 224, 228, 0.28);
  filter: blur(10px);
  animation: haloPulse 1.8s ease-in-out infinite alternate;
}

@keyframes chromeStar { to { filter: hue-rotate(18deg) brightness(1.12); transform: rotate(360deg); } }
@keyframes haloPulse { to { opacity: 0.25; transform: scale(1.14); } }

.star-particle {
  position: absolute;
  z-index: 8;
  top: 50%;
  left: 50%;
  width: var(--size, 8px);
  aspect-ratio: 1;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  background: linear-gradient(135deg, #fff, #9ea8ad 52%, #fff);
  pointer-events: none;
  animation: starBurst 0.85s cubic-bezier(0.1, 0.75, 0.25, 1) forwards;
}

@keyframes starBurst {
  to {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) rotate(var(--dr)) scale(0.1);
  }
}

.services__intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 48px;
}

.services__intro .display-title {
  max-width: 12ch;
}

.services__intro > p {
  max-width: 28ch;
  margin: 0;
  color: #aaa;
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  line-height: 1.5;
}

.service-stage {
  align-self: start;
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--paper);
  border-radius: 28px;
}

.service-stage--aigc {
  color: var(--ink);
  background: var(--coral);
}

.service-stage--vm {
  color: var(--ink);
  background: var(--blue);
}

.service-stage__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: clamp(20px, 3vw, 34px);
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.service-stage__number {
  display: grid;
  place-items: center;
  width: 56px;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.3rem;
}

.service-stage__title {
  min-width: 0;
}

.service-stage__title small {
  display: block;
  margin-bottom: 8px;
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-stage__title strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.service-stage__head > i {
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 200;
}

.service-stage__body {
  padding: 0 clamp(20px, 3vw, 34px) clamp(22px, 3vw, 34px);
}

.service-stage__body[hidden] {
  display: none;
}

.service-stage__claim {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 26px 0;
  border-top: 1px solid rgba(11, 11, 11, 0.45);
  border-bottom: 1px solid rgba(11, 11, 11, 0.45);
}

.service-stage__claim p,
.service-stage__claim strong {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-stage__claim strong {
  font-size: 1.08rem;
}

.service-stage ul {
  margin: 0;
  padding: 16px 0 28px;
  list-style: none;
}

.service-stage li {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(11, 11, 11, 0.24);
  font-weight: 800;
}

.service-stage li span {
  font-size: 0.58rem;
}

.service-stage .pill {
  width: 100%;
}

/* Showcase bridge */
.showcase-bridge {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 30px);
  min-height: 850px;
  align-items: end;
}

.showcase-bridge__copy {
  align-self: start;
  padding-top: 100px;
}

.showcase-bridge__copy .display-title {
  max-width: 7ch;
}

.showcase-bridge__copy > p:last-child {
  margin: 2rem 0 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
}

.showcase-half {
  position: relative;
  height: clamp(520px, 62vw, 720px);
  min-width: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
}

.showcase-half--aigc {
  border-radius: 48% 48% 16px 16px;
}

.showcase-half--vm {
  height: clamp(460px, 56vw, 650px);
  transform: translateY(38px) rotate(1.5deg);
}

.showcase-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.93);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s;
}

.showcase-half::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.84));
}

.showcase-half__caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: clamp(34px, 5vw, 74px);
  left: 24px;
  display: grid;
  gap: clamp(12px, 1.4vw, 20px);
  color: white;
}

.showcase-half__caption small {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.showcase-half__caption strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.showcase-half:hover img {
  transform: scale(1.07);
  filter: saturate(1.1);
}

/* Works */
.works-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  gap: 3rem;
  align-items: end;
}

.works-heading .display-title {
  max-width: 10ch;
}

.works-heading .display-title > span {
  color: var(--blue);
  font-size: 1.25em;
}

.works-heading > p {
  max-width: 34ch;
  margin: 0 0 0.8rem;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  line-height: 1.6;
}

.gallery-instruction {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 70px 0 24px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.gallery-instruction i {
  flex: 1;
  height: 1px;
  background: var(--ink);
}

.video-rail {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 28px);
  margin-right: calc(var(--pad) * -1);
  margin-left: calc(var(--pad) * -1);
  padding: 20px var(--pad) 48px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--ink) transparent;
  scrollbar-width: thin;
}

.video-card {
  flex: 0 0 clamp(230px, 22vw, 350px);
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transform: translate3d(0, var(--lift, 0), 0) rotate(var(--rotate, 0deg));
  transition: transform 0.35s ease;
}

.video-card:nth-child(3n + 2) { --lift: 42px; --rotate: 1.2deg; }
.video-card:nth-child(4n) { --lift: 18px; --rotate: -1.4deg; }

.video-card:hover {
  transform: translate3d(0, calc(var(--lift, 0) - 12px), 0) rotate(0deg);
}

.video-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.video-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.video-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.video-card__play {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  font-size: 1.15rem;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.25s ease;
}

.video-card:hover .video-card__play {
  transform: rotate(10deg) scale(1.08);
}

.video-card__status {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(11, 11, 11, 0.82);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.video-card__meta {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 126px;
  padding: 22px 4px 0;
  background: transparent;
}

.video-card__meta small {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.video-card__meta small > span:last-child {
  max-width: 72%;
  text-align: right;
}

.video-card__meta strong {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.18;
}

/* VM works */
.vm-works {
  padding-bottom: clamp(120px, 18vw, 260px);
}

.vm-works__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(70px, 10vw, 140px);
}

.vm-works__heading .eyebrow {
  grid-column: 1 / -1;
}

.vm-works__heading .display-title {
  max-width: 11ch;
}

.vm-works__heading > p:last-child {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.65;
}

.vm-stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 100px) clamp(14px, 2vw, 32px);
}

.vm-project {
  position: relative;
  grid-column: span 6;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.vm-project:nth-child(4n + 1) { grid-column: 1 / span 7; }
.vm-project:nth-child(4n + 2) { grid-column: 8 / span 5; margin-top: 130px; }
.vm-project:nth-child(4n + 3) { grid-column: 2 / span 5; margin-top: 40px; }
.vm-project:nth-child(4n) { grid-column: 7 / span 6; margin-top: -30px; }

.vm-project__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #ddd;
}

.vm-project:nth-child(3n + 2) .vm-project__visual {
  aspect-ratio: 3 / 4;
  border-radius: 48% 48% 0 0;
}

.vm-project__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.vm-project:hover .vm-project__visual img {
  transform: scale(1.05);
  filter: saturate(1.12);
}

.vm-project__number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.65rem;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}

.vm-project__arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  font-size: 1.3rem;
}

.vm-project__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
}

.vm-project__meta small {
  display: block;
  margin-bottom: 7px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.vm-project__meta strong {
  display: block;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.6vw, 3.1rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.vm-project__meta > span {
  align-self: end;
  max-width: 15ch;
  font-size: 0.72rem;
  text-align: right;
}

/* Workflow */
.workflow__heading {
  margin-bottom: clamp(70px, 10vw, 140px);
}

.workflow__heading .display-title {
  max-width: 13ch;
}

.workflow-track {
  margin-bottom: 26px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  background: var(--paper);
}

.workflow-track--dark {
  color: var(--paper);
  background: var(--ink);
}

.workflow-track__label {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 2px solid currentColor;
}

.workflow-track__label span {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 900;
}

.workflow-track__label strong {
  font-size: clamp(1rem, 1.6vw, 1.4rem);
}

.workflow-track ol {
  display: grid;
  grid-template-columns: repeat(7, minmax(150px, 1fr));
  margin: 0;
  padding: 0;
  overflow-x: auto;
  list-style: none;
}

.workflow-track--dark ol {
  grid-template-columns: repeat(6, minmax(175px, 1fr));
}

.workflow-track li {
  position: relative;
  min-height: 170px;
  padding: 72px 18px 18px;
  border-right: 1px solid currentColor;
  font-size: 0.94rem;
  font-weight: 900;
}

.workflow-track li::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 0;
  left: 0;
  height: 2px;
  background: currentColor;
}

.workflow-track li::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 18px;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--yellow);
}

.workflow-track--dark li::after {
  background: var(--pink);
}

.workflow-track li b {
  display: block;
  margin-bottom: 8px;
  font-size: 0.58rem;
}

/* Vision */
.vision {
  display: grid;
  gap: 0;
  padding-bottom: clamp(140px, 18vw, 260px);
}

.vision-line {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
  padding: clamp(36px, 5vw, 72px) 0;
  border-bottom: 1px solid #4a4a4a;
}

.vision-line small {
  color: var(--pink);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.vision-line p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 5.7vw, 6.4rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.vision-line em {
  color: var(--yellow);
  font-style: normal;
}

.vision__stamp {
  justify-self: end;
  margin-top: 80px;
  padding: 28px;
  border: 3px solid var(--paper);
  color: var(--ink);
  background: var(--coral);
  box-shadow: 10px 10px 0 var(--paper);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 0.82;
  letter-spacing: -0.07em;
  transform: rotate(5deg);
}

/* Contact */
.contact {
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--coral);
}

.contact__tiles {
  opacity: 0.55;
  mask-image: none;
  background-size: 86px 86px;
}

.contact::before,
.contact::after {
  display: none;
}

.contact::before {
  top: 12%;
  right: 6%;
  width: clamp(90px, 12vw, 180px);
  aspect-ratio: 1;
}

.contact::after {
  right: 22%;
  bottom: 19%;
  width: clamp(55px, 7vw, 100px);
  aspect-ratio: 1;
  background: var(--yellow);
  transform: rotate(12deg);
}

.contact-object {
  position: absolute !important;
  z-index: 3 !important;
  top: 9%;
  right: 7%;
  width: clamp(116px, 15vw, 230px);
  aspect-ratio: 1;
  perspective: 900px;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) rotate(-8deg);
  transition: transform 0.16s ease-out;
  cursor: crosshair;
}

.contact-object__ring,
.contact-object__core,
.contact-object__glint {
  position: absolute;
  border-radius: 50%;
}

.contact-object__ring {
  inset: 5%;
  background:
    radial-gradient(circle, transparent 0 43%, #0f1112 44% 49%, transparent 50%),
    conic-gradient(from 225deg, #191b1c, #ffffff 12%, #747b80 27%, #ecf2f4 43%, #323638 57%, #fff 72%, #81898e 88%, #17191a);
  box-shadow: 12px 16px 0 #111, 20px 24px 30px rgba(0,0,0,0.28), inset 0 0 16px rgba(255,255,255,0.52);
  transform: rotateX(64deg) rotateZ(8deg);
  animation: contactRing 9s linear infinite;
}

.contact-object__core {
  top: 30%;
  left: 30%;
  width: 40%;
  aspect-ratio: 1;
  border: 2px solid #e8eef0;
  background:
    radial-gradient(circle at 30% 24%, #fff 0 5%, transparent 12%),
    radial-gradient(circle at 62% 68%, #6520ff, #ff82df 46%, #101214 74%);
  box-shadow: inset -8px -10px 16px rgba(0,0,0,0.5), 7px 9px 0 #151718, 0 0 28px rgba(255, 142, 220, 0.38);
  transform: translateZ(68px);
}

.contact-object__glint {
  top: 21%;
  left: 23%;
  width: 18%;
  aspect-ratio: 1;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  background: white;
  filter: drop-shadow(0 0 12px white);
  animation: glintPulse 1.2s ease-in-out infinite alternate;
}

@keyframes contactRing { to { transform: rotateX(64deg) rotateZ(368deg); } }
@keyframes glintPulse { to { opacity: 0.35; transform: scale(0.65) rotate(45deg); } }

.contact > *:not(.contact__tiles) {
  position: relative;
  z-index: 1;
}

.contact__title {
  max-width: 12ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 12rem);
  font-weight: 900;
  letter-spacing: -0.105em;
  line-height: 0.78;
}

.contact__title span {
  color: var(--paper);
  text-shadow: 5px 5px 0 var(--ink);
}

.contact__lead {
  margin: clamp(42px, 6vw, 84px) 0 44px;
  font-size: clamp(1.15rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.5;
}

.contact__actions {
  display: grid;
  max-width: 1100px;
  border-top: 2px solid var(--ink);
}

.contact-link {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding 0.25s ease, background 0.25s ease;
}

.contact-link:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: var(--yellow);
}

.contact-link small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.contact-link span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.contact-link b {
  font-size: 1.8rem;
}

.contact__footer {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: clamp(90px, 13vw, 170px);
  padding-top: 22px;
  border-top: 1px solid var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.contact__footer img {
  width: 160px;
  border-radius: 8px;
}

.contact__footer p {
  margin: 0;
}

/* Cursor & Toast */
.cursor-dot {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease, background 0.2s ease;
  mix-blend-mode: difference;
}

.cursor-dot span {
  opacity: 0;
  font-size: 0.58rem;
  font-weight: 900;
  transition: opacity 0.2s ease;
}

.cursor-dot.is-active {
  opacity: 1;
}

.cursor-dot.is-play {
  width: 74px;
  height: 74px;
  color: var(--paper);
  background: var(--blue);
  mix-blend-mode: normal;
}

.cursor-dot.is-play span {
  opacity: 1;
}

.toast {
  position: fixed;
  z-index: 1200;
  right: 20px;
  bottom: 20px;
  padding: 13px 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Modal */
.work-modal {
  width: min(1320px, calc(100vw - 24px));
  max-width: none;
  max-height: calc(100svh - 24px);
  margin: auto;
  padding: 0;
  overflow: hidden auto;
  border: 2px solid var(--ink);
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
}

.work-modal::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(9px);
}

.modal-close {
  position: sticky;
  z-index: 10;
  top: 14px;
  float: right;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 14px -62px 0;
  padding: 7px 10px 7px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.modal-close span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  font-size: 1.2rem;
}

.modal-content {
  min-width: 0;
}

.video-modal {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(350px, 1.22fr);
  min-height: 760px;
}

.video-modal__player {
  position: sticky;
  top: 0;
  height: min(100svh - 28px, 900px);
  overflow: hidden;
  background: var(--ink);
}

.video-modal__player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--ink);
}

.video-modal__sound-start {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  min-width: 220px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  color: #fff;
  background: rgba(73, 51, 68, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  text-align: left;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.video-modal__sound-start b {
  grid-row: 1 / 3;
  font-size: 1rem;
}

.video-modal__sound-start span {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.video-modal__sound-start small { font-size: 0.58rem; }
.video-modal__sound-start:hover { transform: translateY(-3px); }
.video-modal__sound-start.is-hidden { opacity: 0; pointer-events: none; }

.video-modal__details,
.vm-modal__details {
  min-width: 0;
  padding: clamp(34px, 6vw, 86px);
}

.modal-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.modal-kicker span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--green);
}

.modal-title {
  margin: 30px 0 18px;
  overflow-wrap: anywhere;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.modal-lead {
  max-width: 34ch;
  margin: 0 0 45px;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 700;
  line-height: 1.55;
}

.modal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 2px solid var(--ink);
}

.modal-facts div {
  min-width: 0;
  padding: 18px 12px 18px 0;
  border-bottom: 1px solid var(--line);
}

.modal-facts div:nth-child(odd) {
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.modal-facts div:nth-child(even) {
  padding-left: 18px;
}

.modal-facts dt {
  margin-bottom: 8px;
  color: #6c6c6c;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.modal-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
  line-height: 1.45;
}

.vm-modal__hero {
  position: relative;
  height: min(70svh, 780px);
}

.vm-modal__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vm-modal__hero::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
}

.vm-modal__hero-title {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 6vw, 80px);
  bottom: clamp(26px, 6vw, 70px);
  left: clamp(24px, 6vw, 80px);
  color: white;
}

.vm-modal__hero-title small {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.vm-modal__hero-title h3 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.vm-modal__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  background: var(--ink);
}

.vm-modal__gallery img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.vm-modal__gallery img:nth-child(3n) {
  grid-column: 1 / -1;
  height: 620px;
}

/* Responsive */
@media (max-width: 1100px) {
  .site-nav a small { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr); }
  .hero__statement { grid-template-columns: 1fr; gap: 1rem; }
  .about { grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr); }
  .about__headline { grid-column: 1 / -1; }
  .about__portrait { grid-column: 1; }
  .about__intro { grid-column: 2; }
  .profile-facts { grid-column: 2; }
  .about__side-note { grid-column: 1; grid-row: 4; }
  .showcase-bridge { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .showcase-bridge__copy { grid-column: 1 / -1; }
  .vm-project:nth-child(n) { grid-column: span 6; margin-top: 0; }
}

@media (max-width: 760px) {
  :root { --pad: 18px; --radius: 20px; }
  .section { padding-top: 106px; padding-bottom: 106px; }
  .display-title { font-size: clamp(3.2rem, 16vw, 6rem); }
  .section-index { top: 26px; }
  .entrance__topline span:last-child { display: none; }
  .entrance__wordmark { top: 38%; width: 96vw; }
  .entrance__wordmark-cn { font-size: 12.8vw; }
  .entrance__wordmark-seven { font-size: 22vw; }
  .entrance__chrome--one { top: 14%; left: 7%; }
  .entrance__chrome--two { right: 6%; bottom: 27%; }
  .entrance__bottom { align-items: stretch; flex-direction: column; gap: 1.5rem; }
  .entrance__progress { min-width: 0; }
  .entrance__actions { justify-items: stretch; text-align: left; }
  .entrance__actions p { display: none; }
  .entrance__actions .entrance__tagline { display: flex; margin-bottom: 0.75rem; font-size: 0.78rem; }
  .pill { min-width: 0; width: 100%; }
  .text-button { text-align: left; }

  .site-header { top: 8px; width: calc(100% - 16px); }
  .brand-stamp { width: 100px; height: 40px; }
  .sound-control { padding: 0 10px; }
  .sound-control span { max-width: 72px; overflow: hidden; white-space: nowrap; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 66px;
    right: 8px;
    left: 8px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px;
    border: 2px solid var(--ink);
    border-radius: 22px;
    background: var(--yellow);
    box-shadow: 8px 8px 0 var(--ink);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--ink); font-size: 1rem; }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 112px;
    padding-bottom: 80px;
  }
  .hero__title { font-size: 16vw; line-height: 0.8; letter-spacing: -0.115em; }
  .hero__statement { margin-top: 36px; }
  .hero__statement p { font-size: 1.25rem; }
  .hero__portrait { order: 2; margin: 10px 0 30px; }
  .portrait-frame { height: 72svh; min-height: 560px; max-height: 720px; }
  .tool-key { width: 58px; border-radius: 11px; font-size: 1.5rem; }
  .tool-key--command { top: 10%; right: -1%; }
  .tool-key--ai { top: 28%; right: -1%; bottom: auto; width: 52px; font-size: 0.9rem; }
  .tool-cursor { top: 39%; left: -3%; font-size: 4.4rem; }
  .tool-aperture { bottom: 12%; left: -1%; width: 78px; border-width: 6px; }
  .tool-panel { top: 1%; left: -1%; width: 120px; }
  .tool-focus { inset: 6% 1% 8%; }
  .hero__offer { order: 3; }
  .spark-game { order: 4; align-self: stretch; justify-self: stretch; width: 100%; }
  .scroll-cue { display: none; }
  .ticker span, .ticker i { padding: 10px 12px; font-size: 1.25rem; }

  .about { display: flex; flex-direction: column; }
  .about__headline { order: 0; }
  .about__portrait { order: 1; width: calc(100% - 22px); height: 620px; }
  .about__intro { order: 2; }
  .about__headline .display-title { font-size: 11.5vw; }
  .about__intro .lead { font-size: 2.7rem; }
  .profile-facts { order: 3; width: 100%; }
  .about__side-note { order: 4; width: 100%; }
  .sticker--hi { right: -20px; }
  .sticker--role { right: -20px; }

  .services { display: block; }
  .metal-star { top: 5%; right: 5%; width: 82px; }
  .services__intro { display: block; margin-bottom: 42px; }
  .services__intro .display-title { font-size: 11.5vw; }
  .services__intro > p { margin-top: 28px; }
  .service-stage + .service-stage { margin-top: 18px; }
  .service-stage__head { grid-template-columns: auto minmax(0, 1fr) auto; gap: 12px; padding: 18px; }
  .service-stage__number { width: 42px; font-size: 0.95rem; }
  .service-stage__title strong { font-size: 1.65rem; }
  .service-stage__body { padding: 0 18px 18px; }

  .showcase-bridge { display: flex; flex-direction: column; min-height: 0; }
  .showcase-bridge__copy { padding-top: 0; margin-bottom: 50px; }
  .showcase-half { width: 100%; height: 68svh; min-height: 520px; }
  .showcase-half--vm { height: 56svh; min-height: 430px; transform: none; }

  .works-heading { grid-template-columns: 1fr; gap: 2rem; }
  .works-heading .display-title { font-size: 14vw; }
  .gallery-instruction { margin-top: 50px; }
  .video-rail { gap: 18px; }
  .video-card { flex-basis: 76vw; }
  .video-card:nth-child(n) { --lift: 0px; --rotate: 0deg; }

  .vm-works__heading { grid-template-columns: 1fr; gap: 2rem; }
  .vm-works__heading .display-title { font-size: 11.5vw; }
  .vm-stage { display: flex; flex-direction: column; gap: 74px; }
  .vm-project:nth-child(n) { width: 100%; margin: 0; }
  .vm-project:nth-child(3n + 2) .vm-project__visual { aspect-ratio: 4 / 3; border-radius: 0; }
  .vm-project__meta { grid-template-columns: 1fr; }
  .vm-project__meta > span { text-align: left; }

  .workflow__heading .display-title { font-size: 11.5vw; }
  .workflow-track ol { grid-template-columns: repeat(7, 158px); }
  .workflow-track--dark ol { grid-template-columns: repeat(6, 175px); }
  .workflow-track li { min-height: 150px; }

  .vision-line { grid-template-columns: 1fr; gap: 18px; }
  .vision-line p { font-size: clamp(2rem, 10vw, 4rem); }
  .vision__stamp { justify-self: start; }

  .contact__title { font-size: 12.4vw; line-height: 1.12; }
  .contact__title span { text-shadow: 3px 3px 0 var(--ink); }
  .contact-object { top: 8%; right: -7%; width: 130px; }
  .contact-link { grid-template-columns: 1fr auto; gap: 8px 16px; }
  .contact-link small { grid-column: 1 / -1; }
  .contact-link span { font-size: 1.2rem; }
  .contact__footer { grid-template-columns: 1fr; }
  .contact__footer img { width: 140px; }

  .cursor-dot { display: none; }
  .work-modal { width: calc(100vw - 12px); max-height: calc(100svh - 12px); border-radius: 20px; }
  .video-modal { grid-template-columns: 1fr; }
  .video-modal__player { position: relative; height: 72svh; min-height: 520px; }
  .video-modal__details, .vm-modal__details { padding: 30px 20px 50px; }
  .modal-facts { grid-template-columns: 1fr; }
  .modal-facts div:nth-child(n) { padding: 16px 0; border-right: 0; }
  .vm-modal__hero { height: 65svh; }
  .vm-modal__gallery { grid-template-columns: 1fr; }
  .vm-modal__gallery img, .vm-modal__gallery img:nth-child(3n) { grid-column: auto; height: 52svh; min-height: 380px; }
}

/* Visual refinement: flatter planes, integrated portrait and editorial soundwaves */
.entrance__wordmark {
  top: 45%;
  width: min(88vw, 1220px);
  height: clamp(170px, 27vw, 380px);
  overflow: hidden;
  transform: translate(-50%, -52%) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.entrance__wordmark > .entrance__main-mark {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: url("#logo-chroma") brightness(0) saturate(100%) invert(91%) sepia(88%) saturate(1243%) hue-rotate(359deg) brightness(107%) contrast(105%);
}

.entrance__logo-keys,
.entrance__logo-keys i {
  position: absolute;
  inset: 0;
}

.entrance__logo-keys { z-index: 1; }

.entrance__logo-keys i {
  --key-delay: 0s;
  background: url("public/assets/brand/creative-worker-seven.png") center / cover no-repeat;
  filter: url("#logo-chroma") brightness(0) saturate(100%) invert(91%) sepia(88%) saturate(1243%) hue-rotate(359deg) brightness(107%) contrast(105%);
  animation: logoPianoKey 4.2s cubic-bezier(0.2, 0.82, 0.2, 1) infinite;
  animation-delay: var(--key-delay);
  will-change: transform;
}

.entrance__logo-keys i:nth-child(1) { clip-path: inset(0 91.666% 0 0); --key-delay: 0s; }
.entrance__logo-keys i:nth-child(2) { clip-path: inset(0 83.333% 0 8.333%); --key-delay: 0.08s; }
.entrance__logo-keys i:nth-child(3) { clip-path: inset(0 75% 0 16.666%); --key-delay: 0.16s; }
.entrance__logo-keys i:nth-child(4) { clip-path: inset(0 66.666% 0 25%); --key-delay: 0.24s; }
.entrance__logo-keys i:nth-child(5) { clip-path: inset(0 58.333% 0 33.333%); --key-delay: 0.32s; }
.entrance__logo-keys i:nth-child(6) { clip-path: inset(0 50% 0 41.666%); --key-delay: 0.4s; }
.entrance__logo-keys i:nth-child(7) { clip-path: inset(0 41.666% 0 50%); --key-delay: 0.48s; }
.entrance__logo-keys i:nth-child(8) { clip-path: inset(0 33.333% 0 58.333%); --key-delay: 0.56s; }
.entrance__logo-keys i:nth-child(9) { clip-path: inset(0 25% 0 66.666%); --key-delay: 0.64s; }
.entrance__logo-keys i:nth-child(10) { clip-path: inset(0 16.666% 0 75%); --key-delay: 0.72s; }
.entrance__logo-keys i:nth-child(11) { clip-path: inset(0 8.333% 0 83.333%); --key-delay: 0.8s; }
.entrance__logo-keys i:nth-child(12) { clip-path: inset(0 0 0 91.666%); --key-delay: 0.88s; }

@keyframes logoPianoKey {
  0%, 8%, 100% { transform: translateY(0); }
  3.2% { transform: translateY(-13px); }
  5.5% { transform: translateY(4px); }
}

.entrance__plane {
  position: absolute;
  z-index: 0;
  width: clamp(54px, 7vw, 94px);
  aspect-ratio: 1;
  pointer-events: none;
  filter: drop-shadow(7px 9px 0 rgba(33, 38, 10, 0.3)) drop-shadow(0 0 17px rgba(255, 224, 65, 0.28));
  perspective: 500px;
  transform-style: preserve-3d;
}

.entrance__plane::before,
.entrance__plane::after {
  content: "";
  position: absolute;
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.entrance__plane::before {
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='.28'/%3E%3C/svg%3E"),
    #efff32;
  background-size: 78px 78px, 100% 100%;
  background-blend-mode: soft-light, normal;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 210, 0.72);
  animation: magicStarSpin 5.2s linear infinite;
}

.entrance__plane::after {
  inset: 34%;
  background: white;
  filter: blur(0.5px);
  animation: magicStarPulse 1.4s ease-in-out infinite alternate;
}

.entrance__plane--one {
  top: 17%;
  left: 7%;
}

.entrance__plane--two {
  right: 7%;
  bottom: 31%;
  width: clamp(42px, 5vw, 70px);
}

@keyframes magicStarSpin {
  0% { transform: rotateY(0deg) rotateZ(0deg); }
  50% { transform: rotateY(180deg) rotateZ(22deg) scale(0.9); }
  100% { transform: rotateY(360deg) rotateZ(360deg); }
}

@keyframes magicStarPulse { to { opacity: 0.35; transform: scale(0.62) rotate(45deg); } }

.entrance__progress { overflow: visible; }

.entrance__meter {
  overflow: visible;
  padding: 12px 18px 10px 6px;
  margin: -12px -18px -10px -6px;
  filter: none;
}

.entrance__meter > span {
  min-width: 2.15ch;
  background: linear-gradient(180deg, #fff 0%, #aeeaff 42%, #fff 58%, #72c9ed 100%);
  background-size: 100% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", var(--display);
  font-style: italic;
  font-stretch: condensed;
  letter-spacing: -0.11em;
  padding: 0.06em 0.08em 0.08em 0;
  line-height: 0.9;
  filter: drop-shadow(3px 4px 0 rgba(3, 42, 25, 0.58));
}

@keyframes liquidNumber {
  0%, 100% { background-position: 50% 0%; transform: skewX(-8deg) scaleX(0.84); transform-origin: left bottom; }
  50% { background-position: 50% 100%; transform: skewX(-5deg) scaleX(0.88) translateY(-2px); transform-origin: left bottom; }
}

.entrance__tagline { transform: none; }

.entrance__tagline span {
  color: rgba(255, 255, 255, 0.92);
  background: none;
  -webkit-text-stroke: 0;
  filter: none;
}

.pill--light {
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(246, 244, 238, 0.94);
  box-shadow: none;
  transform: none;
  backdrop-filter: blur(14px);
}

.pill--light > span {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.pill--light:hover {
  background: var(--yellow);
  transform: translateY(-4px);
}

.hero__copy { z-index: 5; }
.hero__title { position: relative; z-index: 6; overflow: visible; }
.hero__portrait { z-index: 2; isolation: isolate; }

.hero__statement p {
  max-width: 10ch;
  color: var(--coral);
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.6vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hero__statement {
  display: block;
  max-width: 880px;
}

.portrait-frame {
  width: min(108%, 620px);
  height: min(72vh, 790px);
  min-height: 520px;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.portrait-frame::before {
  z-index: 2;
  opacity: 1;
  background: radial-gradient(ellipse 68% 76% at 47% 48%, transparent 0 45%, rgba(244, 240, 232, 0.22) 63%, rgba(244, 240, 232, 0.92) 92%, var(--paper) 100%);
  mix-blend-mode: normal;
}

.portrait-frame::after {
  z-index: 3;
  background:
    linear-gradient(90deg, var(--paper) 0%, transparent 15%, transparent 76%, var(--paper) 100%),
    linear-gradient(180deg, transparent 68%, var(--paper) 100%);
}

.portrait-frame img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 48%;
  filter: contrast(1.03) saturate(0.94);
  -webkit-mask-image: radial-gradient(ellipse 76% 86% at 46% 49%, #000 48%, rgba(0, 0, 0, 0.92) 67%, transparent 100%);
  mask-image: radial-gradient(ellipse 76% 86% at 46% 49%, #000 48%, rgba(0, 0, 0, 0.92) 67%, transparent 100%);
}

.portrait-caption {
  z-index: 3;
  right: 8%;
  bottom: 9%;
  border: 0;
  border-left: 3px solid var(--yellow);
  border-radius: 0;
  background: rgba(11, 11, 11, 0.82);
  box-shadow: none;
}

.portrait-graphic-system {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.portrait-graphic-system__label {
  position: absolute;
  top: 10%;
  left: -5%;
  padding: 8px 11px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.portrait-graphic-system__wave {
  position: absolute;
  right: -10%;
  bottom: 18%;
  width: 118%;
  height: 112px;
  overflow: visible;
}

.portrait-graphic-system__wave path {
  fill: none;
  stroke: var(--pink);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  animation: waveformShift 5s ease-in-out infinite alternate;
}

.portrait-caption,
.portrait-graphic-system__label,
.portrait-graphic-system__axis,
.portrait-graphic-system__note { display: none; }

@keyframes waveformShift {
  to { transform: translateX(-24px) scaleY(0.72); }
}

.portrait-graphic-system__axis {
  position: absolute;
  top: 20%;
  right: 1%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  width: 7px;
  height: 46%;
  border-left: 1px solid rgba(11, 11, 11, 0.75);
}

.portrait-graphic-system__axis i {
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--coral);
  translate: -4px 0;
}

.portrait-graphic-system__note {
  position: absolute;
  right: -2%;
  bottom: 4%;
  padding-top: 8px;
  border-top: 1px solid var(--ink);
  font-size: 0.55rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-align: right;
}

.spark-game {
  padding: 12px 0;
  border: 0;
  border-block: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.spark-game__tokens { min-height: 78px; }

.spark,
.spark--cursor,
.spark--command,
.spark--lens {
  width: 72px;
  height: 48px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.spark svg,
.spark--cursor svg,
.spark--command svg,
.spark--lens svg {
  width: 64px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spark--cursor { color: var(--coral); }
.spark--command { color: var(--blue); }
.spark--lens { color: #038a49; }

.spark:hover { transform: translateY(-4px) scaleX(1.08); }
.spark.is-collected { transform: scaleX(0.65); }

.about {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.about__headline,
.about__intro { grid-column: 1 / -1; }

.about__portrait { display: none; }

.about__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(30px, 7vw, 120px);
  align-items: end;
}

.about__headline .display-title,
.about__intro .lead { font-weight: 900; }

.about__intro .lead {
  max-width: 21ch;
  font-size: clamp(1.9rem, 3.8vw, 4.2rem);
  line-height: 0.98;
}

.about__side-note span {
  font-size: clamp(1.75rem, 3vw, 3.5rem);
  line-height: 0.9;
}
.about__intro > p:last-child { max-width: 33ch; }
.profile-facts { grid-column: 1; }
.about__side-note { grid-column: 2; }

.metal-star {
  perspective: none;
  filter: none;
  transform: rotate(var(--ry));
  transition: transform 0.22s ease, opacity 0.25s ease;
}

.metal-star:hover,
.metal-star:focus-visible { filter: none; }

.metal-star__core {
  background: linear-gradient(135deg, #f7fafb 0%, #a7aeb2 28%, #fff 48%, #7d8589 72%, #e7ecee 100%);
  background-size: 180% 180%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.82);
  animation: flatSheen 4.5s ease-in-out infinite alternate;
}

.metal-star__halo {
  background: linear-gradient(135deg, rgba(255, 127, 211, 0.52), rgba(143, 115, 255, 0.18));
  filter: blur(16px);
}

@keyframes flatSheen { to { background-position: 100% 100%; } }

.star-particle {
  background: linear-gradient(135deg, #fff, var(--pink));
  box-shadow: none;
}

.video-card__play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 82px;
  height: 42px;
  aspect-ratio: auto;
  border: 1px solid var(--ink);
  border-radius: 999px;
  box-shadow: none;
}

.video-card__play b { font-size: 0.86rem; }
.video-card__play small { font-size: 0.5rem; font-weight: 900; letter-spacing: 0.08em; }

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

.showcase-bridge__copy {
  grid-column: 1 / -1;
  padding-top: 70px;
}

.showcase-bridge__copy .display-title {
  max-width: none;
  font-size: clamp(3rem, 6.8vw, 7.2rem);
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.showcase-bridge__copy > p:last-child { max-width: 46ch; }

.showcase-half,
.showcase-half--aigc,
.showcase-half--vm {
  height: clamp(500px, 58vw, 680px);
  border: 2px solid var(--ink);
  border-radius: 24px;
  transform: none;
}

.video-card__media img,
.video-card__preview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
}

.video-card:hover .video-card__preview {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.vm-works__heading .display-title span { color: var(--coral); }

.vm-works__heading .display-title em {
  display: inline-block;
  margin-right: 0.12em;
  color: var(--blue);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 0.13em;
  text-underline-offset: 0.08em;
}

.vm-stage {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 4vw, 64px);
  align-items: start;
  row-gap: clamp(96px, 11vw, 170px);
}

.vm-project:nth-child(n) {
  grid-column: auto;
  width: 100%;
  margin-top: 0;
}

.vm-project__visual,
.vm-project:nth-child(3n + 2) .vm-project__visual {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  box-shadow: 13px 13px 0 var(--project-accent, var(--yellow));
}

.vm-project:nth-child(4n + 1) { --project-accent: #efff32; }
.vm-project:nth-child(4n + 2) { --project-accent: var(--pink); }
.vm-project:nth-child(4n + 3) { --project-accent: #6e80ff; }
.vm-project:nth-child(4n) { --project-accent: var(--coral); }

.vm-project__meta {
  grid-template-columns: 1fr;
  gap: 14px;
  align-content: start;
  min-height: clamp(190px, 16vw, 250px);
}

.vm-project__meta > span:first-child {
  width: 100%;
  min-width: 0;
  max-width: none;
  text-align: left;
}

.vm-project__meta small,
.vm-project__meta strong,
.vm-mini__meta strong {
  font-weight: 900;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

.vm-project__meta strong {
  max-width: none;
  font-size: clamp(1.55rem, 2.6vw, 3.2rem);
  line-height: 0.98;
  white-space: nowrap;
  word-break: keep-all;
}

.vm-project__meta > span:last-child {
  align-self: start;
  max-width: 44ch;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: left;
}

.vm-discover {
  margin-top: clamp(150px, 18vw, 250px);
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}

.vm-discover__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.vm-discover__heading p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 6.6rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.vm-discover__heading span {
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.vm-discover__rail {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
  margin-inline: calc(var(--pad) * -1);
  padding: 8px var(--pad) 30px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.vm-mini {
  flex: 0 0 clamp(230px, 27vw, 390px);
  min-width: 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
}

.vm-mini__visual {
  position: relative;
  z-index: 0;
  display: block;
  aspect-ratio: 16 / 10;
  margin: 0 14px 16px 0;
  overflow: visible;
  background: #ddd;
}

.vm-mini__visual::before,
.vm-mini__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--yellow);
  transform: translate(8px, 8px);
}

.vm-mini__visual::after {
  z-index: -3;
  background: var(--pink);
  transform: translate(15px, 15px);
}

.vm-mini__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vm-mini__visual > i {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--paper);
  background: rgba(11, 11, 11, 0.82);
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.vm-mini:hover img { transform: scale(1.06); }

.vm-mini__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
}

.vm-mini__meta b {
  grid-row: 1 / span 2;
  color: var(--coral);
  font-size: 0.62rem;
}

.vm-mini__meta strong {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.035em;
}

.vm-mini__meta small { color: #656565; font-size: 0.56rem; font-weight: 800; }

.contact-object {
  perspective: none;
  transform: rotate(var(--ry));
}

.contact-call {
  display: grid;
  place-items: center;
  color: var(--ink);
}

.contact-call svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(7px 9px 0 rgba(11, 11, 11, 0.24));
}

.contact-call__handset {
  fill: #efff32;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linejoin: round;
}

.contact-call__signal {
  fill: none;
  stroke: var(--paper);
  stroke-width: 4;
  stroke-linecap: round;
}

.contact-call > span {
  position: absolute;
  right: -2%;
  bottom: 7%;
  padding: 7px 10px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.contact-object__ring {
  background: radial-gradient(circle, transparent 0 54%, rgba(255, 255, 255, 0.76) 55% 57%, transparent 58%), conic-gradient(from 210deg, rgba(22, 23, 24, 0.82), #fff, #a9b0b4, #f4b7e9, #1b1d1e);
  box-shadow: none;
  transform: none;
  animation: contactRingFlat 10s linear infinite;
}

.contact-object__core {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: radial-gradient(circle at 35% 30%, #fff 0 4%, #d6a2ff 12%, #7557ff 52%, #27212f 100%);
  box-shadow: none;
  transform: none;
}

.contact-object__glint { filter: none; }

@keyframes contactRingFlat { to { rotate: 360deg; } }

@media (max-width: 1100px) {
  .about { grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr); }
  .about__intro { grid-template-columns: 1fr 0.72fr; }
  .profile-facts { grid-column: 1; }
  .about__side-note { grid-column: 2; grid-row: auto; }
}

@media (max-width: 760px) {
  .entrance__wordmark {
    top: 35%;
    width: 104vw;
    height: 46vw;
    min-height: 176px;
  }
  .entrance__plane--one { top: 15%; left: 6%; width: 58px; }
  .entrance__plane--two { right: 5%; bottom: 31%; width: 42px; }

  .portrait-frame {
    width: 112%;
    height: 70svh;
    min-height: 540px;
    aspect-ratio: auto;
  }
  .portrait-graphic-system__label { top: 7%; left: 1%; }
  .portrait-graphic-system__wave { right: -16%; bottom: 18%; width: 130%; }
  .portrait-graphic-system__axis { right: 2%; }
  .portrait-graphic-system__note { right: 1%; bottom: 2%; }

  .spark,
  .spark--cursor,
  .spark--command,
  .spark--lens { width: 30%; }

  .about { display: flex; }
  .about__intro { display: block; }
  .about__intro .lead { max-width: 18ch; font-size: 2.25rem; }
  .about__intro > p:last-child { margin-top: 32px; }
  .profile-facts,
  .about__side-note { width: 100%; }

  .vm-discover__heading { align-items: flex-start; flex-direction: column; }
  .vm-mini { flex-basis: 78vw; }

  .vm-stage { row-gap: 76px; }
  .vm-project__meta { min-height: 0; }
  .vm-discover { margin-top: 130px; }

  .hero__statement p { max-width: 9ch; font-size: 2.55rem; }
  .showcase-bridge__copy .display-title { white-space: normal; font-size: 13vw; }
  .showcase-half,
  .showcase-half--aigc,
  .showcase-half--vm { height: 58svh; min-height: 460px; border-radius: 20px; }

  .contact__title { font-size: 15vw; line-height: 0.9; }
}

/* 2026-06-24 content and motion refinements */
.entrance {
  overflow: hidden;
  color: #30172c;
  background:
    radial-gradient(ellipse at 76% 28%, rgba(255, 255, 255, 0.96) 0 9%, transparent 27%),
    radial-gradient(ellipse at 21% 70%, rgba(255, 255, 255, 0.84) 0 8%, transparent 25%),
    linear-gradient(155deg, #d9edf8 0%, #9bc9e5 38%, #72a9cf 72%, #b7d6e9 100%);
}

.entrance::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -8%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 16% 26%, rgba(255, 255, 255, 0.9) 0 7%, transparent 18%),
    radial-gradient(ellipse at 47% 18%, rgba(255, 255, 255, 0.72) 0 8%, transparent 21%),
    radial-gradient(ellipse at 82% 66%, rgba(255, 255, 255, 0.82) 0 7%, transparent 20%),
    radial-gradient(ellipse at 44% 78%, rgba(255, 255, 255, 0.56) 0 9%, transparent 24%);
  filter: blur(9px);
  animation: skyDrift 16s ease-in-out infinite alternate;
}

.entrance::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -12% -20%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 14% 54%, rgba(255, 255, 255, 0.76) 0 5%, transparent 14%),
    radial-gradient(ellipse at 38% 34%, rgba(255, 255, 255, 0.62) 0 6%, transparent 15%),
    radial-gradient(ellipse at 64% 70%, rgba(255, 255, 255, 0.72) 0 5%, transparent 14%),
    radial-gradient(ellipse at 90% 42%, rgba(255, 255, 255, 0.82) 0 6%, transparent 16%);
  filter: blur(13px);
  animation: skyDriftReverse 23s ease-in-out infinite alternate;
}

@keyframes skyDrift {
  to { transform: translate3d(2.5%, -1.5%, 0) scale(1.03); }
}

@keyframes skyDriftReverse {
  from { transform: translate3d(4%, 1%, 0) scale(1.04); }
  to { transform: translate3d(-4%, -1.5%, 0) scale(1); }
}

.entrance__clouds {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.entrance__cloud {
  --cloud-width: clamp(220px, 28vw, 470px);
  --cloud-opacity: 0.74;
  --cloud-blur: 3px;
  --cloud-duration: 30s;
  --cloud-delay: 0s;
  --cloud-rise: -14px;
  position: absolute;
  top: var(--cloud-top, 20%);
  left: calc(var(--cloud-width) * -1.3);
  width: var(--cloud-width);
  height: auto;
  aspect-ratio: 1622 / 665;
  opacity: var(--cloud-opacity);
  background: url("public/assets/brand/cloud-photo.webp") center / contain no-repeat;
  filter: blur(var(--cloud-blur));
  mix-blend-mode: screen;
  animation: entranceCloudFloat var(--cloud-duration) linear infinite;
  animation-delay: var(--cloud-delay);
  will-change: transform;
}

.entrance__cloud::before,
.entrance__cloud::after {
  display: none;
}

.entrance__cloud--one {
  --cloud-top: 14%;
  --cloud-width: clamp(230px, 28vw, 470px);
  --cloud-duration: 30s;
  --cloud-delay: -8s;
  --cloud-opacity: 0.78;
  --cloud-blur: 2px;
}

.entrance__cloud--two {
  --cloud-top: 64%;
  --cloud-width: clamp(290px, 34vw, 560px);
  --cloud-duration: 38s;
  --cloud-delay: -34s;
  --cloud-opacity: 0.66;
  --cloud-blur: 5px;
  --cloud-rise: 28px;
  scale: -1 1;
}

.entrance__cloud--three {
  --cloud-top: 35%;
  --cloud-width: clamp(160px, 19vw, 320px);
  --cloud-duration: 24s;
  --cloud-delay: -21s;
  --cloud-opacity: 0.66;
  --cloud-blur: 2px;
  --cloud-rise: -30px;
}

.entrance__cloud--four {
  --cloud-top: 79%;
  --cloud-width: clamp(190px, 23vw, 370px);
  --cloud-duration: 29s;
  --cloud-delay: -3s;
  --cloud-opacity: 0.5;
  --cloud-blur: 6px;
  --cloud-rise: -20px;
  scale: -1 1;
}

.entrance__cloud--five {
  --cloud-top: 6%;
  --cloud-width: clamp(150px, 17vw, 285px);
  --cloud-duration: 26s;
  --cloud-delay: -27s;
  --cloud-opacity: 0.62;
  --cloud-blur: 3px;
  --cloud-rise: 24px;
}

.entrance__cloud--six {
  --cloud-top: 49%;
  --cloud-width: clamp(260px, 31vw, 510px);
  --cloud-duration: 35s;
  --cloud-delay: -16s;
  --cloud-opacity: 0.46;
  --cloud-blur: 7px;
  --cloud-rise: 30px;
  scale: -1 1;
}

@keyframes entranceCloudFloat {
  0% { transform: translate3d(0, 0, 0) scale(0.92); }
  28% { transform: translate3d(40vw, var(--cloud-rise), 0) scale(1.02); }
  58% { transform: translate3d(82vw, 0, 0) scale(0.96); }
  80% { transform: translate3d(111vw, var(--cloud-rise), 0) scale(1); }
  100% { transform: translate3d(calc(130vw + var(--cloud-width)), 0, 0) scale(0.94); }
}

.entrance__topline,
.entrance__bottom,
.entrance__wordmark,
.entrance__plane { z-index: 2; }

.entrance__grain {
  z-index: 4;
  opacity: 0.075;
  mix-blend-mode: multiply;
}

.entrance__topline > span:first-child {
  color: #004d24;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.entrance__topline > span:last-child,
.entrance__bottom { color: #004d24; }

.entrance__tagline span { color: #004d24; }

.entrance__wordmark > .entrance__main-mark,
.entrance__logo-keys i {
  filter:
    url("#logo-chroma")
    brightness(0)
    saturate(100%)
    invert(91%)
    sepia(88%)
    saturate(1243%)
    hue-rotate(359deg)
    brightness(107%)
    contrast(105%)
    drop-shadow(1px 1px 0 #fffbd5)
    drop-shadow(5px 6px 0 #167342)
    drop-shadow(10px 12px 0 #004d24)
    drop-shadow(16px 20px 18px rgba(0, 55, 28, 0.4));
}

.entrance__wordmark > .entrance__main-mark { opacity: 0.28; }

.entrance__wordmark::after {
  display: none;
}

@keyframes wordmarkSheen {
  0%, 28% { transform: translateX(-48%); }
  70%, 100% { transform: translateX(48%); }
}

.entrance__plane {
  filter: drop-shadow(5px 8px 8px rgba(42, 51, 58, 0.38)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.55));
}

.entrance__plane::before {
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='.19'/%3E%3C/svg%3E"),
    conic-gradient(from 218deg, #252b2f 0deg, #f8fdff 42deg, #8f999f 76deg, #fff 112deg, #525b61 164deg, #dfe6e9 232deg, #343b40 298deg, #f7fbfc 360deg);
  background-size: 82px 82px, 100% 100%;
  background-blend-mode: soft-light, normal;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.95), inset -12px -10px 20px rgba(14, 19, 22, 0.4);
}

.entrance__plane::after {
  background: radial-gradient(circle at 35% 28%, #fff 0 12%, #aab3b8 34%, #31383c 72%, #eef4f6 100%);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.72);
}

.entrance__meter {
  padding-right: 36px;
  margin-right: -36px;
}

.entrance__meter > span {
  display: inline-block;
  width: 3.15ch;
  min-width: 3.15ch;
  padding-right: 0.3em;
  overflow: visible;
  letter-spacing: -0.08em;
}

.soundwave-title {
  position: relative;
  display: flex;
  align-items: center;
  width: min(100%, 13ch);
  max-width: none !important;
  overflow: visible;
  gap: 0.01em 0.14em;
  flex-wrap: wrap;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.8vw, 3.45rem) !important;
  font-weight: 950 !important;
  letter-spacing: -0.085em;
  line-height: 0.78;
  white-space: nowrap;
  -webkit-text-stroke: 0;
  filter: none;
  text-shadow: 5px 5px 0 var(--coral);
  transform: rotate(-2deg);
}

.soundwave-title span {
  display: inline-block;
  transform-origin: left center;
  animation: sloganSoundwave 2.6s cubic-bezier(0.42, 0, 0.26, 1) infinite;
  animation-delay: calc(var(--wave) * -0.16s);
  will-change: transform;
}

.soundwave-title span:nth-child(n) { color: var(--yellow); }

@keyframes sloganSoundwave {
  0%, 100% { transform: translateY(0.06em) scale(0.78); }
  24% { transform: translateY(-0.1em) scale(1.18); }
  48% { transform: translateY(0.03em) scale(0.92); }
  72% { transform: translateY(-0.04em) scale(1.05); }
}

.about__side-note {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 26px;
  color: #fff;
  background: #493344;
  text-align: left;
}

.about__side-note::before {
  content: "AI";
  position: absolute;
  z-index: 0;
  top: 44%;
  left: -0.03em;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(12rem, 24vw, 25rem);
  font-weight: 950;
  line-height: 0.72;
  letter-spacing: -0.16em;
  opacity: 1;
  transform: translateY(-50%);
}

.about__side-note::after {
  display: none;
}

.about__side-note span,
.about__side-note p {
  position: relative;
  z-index: 1;
  text-shadow: none;
}

.about__side-note span {
  padding: 90px 12px 34px;
  color: #f1709f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 3.6vw, 4.2rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.06em;
  text-align: right;
}

.about__side-note p {
  margin: 0 22px 30px;
  padding: 0;
  border: 0;
  color: #000;
  background: transparent;
  font-weight: 650;
}

.services__intro .display-title { max-width: none; }

.services__nowrap {
  display: inline-block;
  white-space: nowrap;
}

.showcase-bridge__copy .display-title {
  color: var(--yellow);
}

.showcase-title__cross {
  display: inline-block;
  transform-origin: 50% 54%;
  animation: showcaseCrossSpin 1.45s linear infinite;
  will-change: transform;
}

@keyframes showcaseCrossSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .entrance__meter > span { width: 3.25ch; min-width: 3.25ch; }
  .entrance__cloud--four,
  .entrance__cloud--six { display: none; }
  .entrance__cloud { --cloud-opacity: 0.56; }
  .soundwave-title { width: 10ch; font-size: clamp(1.35rem, 6.8vw, 2rem) !important; }
  .services__intro .display-title { font-size: 10.2vw; }
  .about__side-note::before { font-size: 68vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
}

/* Final entrance art direction: framed green stage with moving diffuse light */
.entrance {
  display: block;
  padding: clamp(16px, 3vw, 44px);
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 25%),
    radial-gradient(circle at 82% 78%, rgba(210, 231, 242, 0.76), transparent 30%),
    linear-gradient(145deg, #a8c9dc 0%, #d7e7ef 47%, #92b9d1 100%);
  background-size: 145% 145%;
  animation: entranceBackdropDrift 14s ease-in-out infinite alternate;
}

.entrance::before,
.entrance::after {
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(54px);
}

.entrance::before {
  inset: 2% 52% 46% -8%;
  animation: entranceDiffuseOne 10s ease-in-out infinite alternate;
}

.entrance::after {
  inset: 48% -8% -12% 48%;
  animation: entranceDiffuseTwo 13s ease-in-out infinite alternate;
}

.entrance__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: clamp(18px, 2.7vw, 42px);
  overflow: hidden;
  border-radius: clamp(24px, 3vw, 48px);
  background:
    radial-gradient(circle at 12% 22%, rgba(128, 68, 142, 0.18), transparent 28%),
    radial-gradient(circle at 84% 74%, rgba(180, 213, 223, 0.13), transparent 32%),
    linear-gradient(145deg, #003b20 0%, #00572d 46%, #003c24 100%);
  background-size: 160% 160%;
  box-shadow: 0 18px 45px rgba(18, 61, 48, 0.2);
  animation: entranceStageTone 12s ease-in-out infinite alternate;
}

.entrance__stage::before,
.entrance__stage::after {
  content: none;
}

.entrance__hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: 6%;
  left: 3.8%;
  width: 93%;
  height: 74%;
  overflow: visible;
  filter:
    drop-shadow(0 20px 34px rgba(0, 35, 20, 0.22))
    drop-shadow(0 0 24px rgba(218, 236, 247, 0.2));
  transform-origin: 50% 50%;
  animation: entranceHeroShapeFloat 14s ease-in-out infinite alternate;
}

.entrance__hero-shape-fill {
  fill: rgba(205, 226, 238, 0.88);
}

.entrance__hero-shape-clouds ellipse {
  fill: rgba(255, 255, 255, 0.42);
  filter: blur(15px);
  transform-origin: center;
  animation: entranceShapeCloudPulse 10s ease-in-out infinite alternate;
}

.entrance__hero-shape-clouds ellipse:nth-child(2) { animation-delay: -2.8s; }
.entrance__hero-shape-clouds ellipse:nth-child(3) { animation-delay: -5.2s; }
.entrance__hero-shape-clouds ellipse:nth-child(4) { animation-delay: -7.1s; }

.entrance__hero-shape-stroke {
  fill: none;
  stroke: rgba(250, 248, 241, 0.92);
  stroke-width: 20;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.entrance__clouds { display: none; }

.entrance__mist {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.entrance__mist i {
  position: absolute;
  width: clamp(180px, 25vw, 430px);
  aspect-ratio: 1.7;
  border-radius: 50%;
  opacity: 0.26;
  background: radial-gradient(ellipse, rgba(243, 214, 249, 0.9), transparent 68%);
  filter: blur(34px);
  will-change: transform, opacity;
}

.entrance__mist i:nth-child(1) { top: 8%; left: 18%; animation: entranceMistOne 9s ease-in-out infinite alternate; }
.entrance__mist i:nth-child(2) { top: 34%; right: 8%; animation: entranceMistTwo 12s ease-in-out -3s infinite alternate; }
.entrance__mist i:nth-child(3) { bottom: 1%; left: 42%; animation: entranceMistOne 14s ease-in-out -6s infinite alternate-reverse; }

.entrance__topline,
.entrance__bottom { z-index: 4; color: var(--paper); }

.entrance__topline > span:first-child,
.entrance__topline > span:last-child,
.entrance__bottom,
.entrance__tagline span { color: var(--paper); }

.entrance__wordmark {
  z-index: 3;
  top: 49%;
  width: min(82vw, 1210px);
  height: clamp(120px, 20vw, 292px);
  overflow: hidden;
}

.entrance__wordmark > .entrance__main-mark {
  object-fit: contain;
  opacity: 0.14;
  filter:
    drop-shadow(4px 5px 0 #245c39)
    drop-shadow(9px 11px 0 #083e25)
    drop-shadow(16px 20px 20px rgba(0, 31, 17, 0.36));
}

.entrance__logo-keys i {
  background: url("public/assets/brand/creative-worker-seven-transparent.webp") center / contain no-repeat;
  filter:
    drop-shadow(4px 5px 0 #245c39)
    drop-shadow(9px 11px 0 #083e25)
    drop-shadow(16px 20px 20px rgba(0, 31, 17, 0.36));
}

.entrance__wordmark::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  pointer-events: none;
  background: linear-gradient(108deg, transparent 30%, rgba(255, 255, 255, 0.82) 47%, transparent 62%);
  -webkit-mask: url("public/assets/brand/creative-worker-seven-transparent.webp") center / contain no-repeat;
  mask: url("public/assets/brand/creative-worker-seven-transparent.webp") center / contain no-repeat;
  mix-blend-mode: screen;
  animation: wordmarkGloss 5.2s ease-in-out infinite;
}

.entrance__plane { z-index: 4; filter: drop-shadow(0 8px 13px rgba(13, 21, 17, 0.34)); }

.entrance__plane::before {
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='.08'/%3E%3C/svg%3E"),
    conic-gradient(from 218deg, #8e649c 0deg, #fff8ff 42deg, #d8b2e4 88deg, #fff 126deg, #a77ab6 190deg, #f0d4f6 250deg, #704e7d 312deg, #fff8ff 360deg);
  background-size: 96px 96px, 100% 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 245, 255, 0.95), inset -10px -10px 18px rgba(70, 35, 82, 0.28);
}

.entrance__plane::after {
  background: radial-gradient(circle at 34% 28%, #fff 0 12%, #dcbde8 36%, #815f8e 72%, #f8eafa 100%);
  box-shadow: 0 0 14px rgba(236, 204, 246, 0.72);
}

.entrance__grain { z-index: 8; opacity: 0.028; }

.pill--light {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(247, 244, 240, 0.95);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.pill--light:hover,
.pill--light:focus-visible,
.pill--light.is-clicked {
  color: #25152b;
  background: linear-gradient(145deg, #fff8ff 0%, #e6c4ef 48%, #f8e9fb 72%, #b88bc7 100%);
  transform: translateY(-4px);
}

.pill--light > span { transition: opacity 0.18s ease; }
.pill--light:active > span,
.pill--light.is-clicked > span { opacity: 0.34; }

@keyframes entranceBackdropDrift {
  to { background-position: 100% 74%; }
}

@keyframes entranceStageTone {
  to { background-position: 100% 100%; }
}

@keyframes entranceDiffuseOne {
  to { transform: translate3d(20vw, 9vh, 0) scale(1.16); opacity: 0.72; }
}

@keyframes entranceDiffuseTwo {
  to { transform: translate3d(-18vw, -8vh, 0) scale(1.12); opacity: 0.62; }
}

@keyframes entranceHeroShapeFloat {
  to { transform: translate3d(1.1%, 1.4%, 0) rotate(0.7deg) scale(1.012); }
}

@keyframes entranceShapeCloudPulse {
  to { transform: translate3d(18px, -10px, 0) scale(1.08); opacity: 0.72; }
}

@keyframes entranceShapeDriftOne {
  to { transform: translate3d(2.4%, 1.8%, 0) rotate(-4deg) scale(1.025); border-radius: 53% 47% 49% 51% / 47% 55% 45% 53%; }
}

@keyframes entranceShapeDriftTwo {
  to { transform: translate3d(-3%, -2%, 0) rotate(3deg) scale(1.035); border-radius: 48% 52% 44% 56% / 55% 45% 55% 45%; }
}

@keyframes entranceMistOne {
  to { transform: translate3d(90px, 24px, 0) scale(1.18); opacity: 0.42; }
}

@keyframes entranceMistTwo {
  to { transform: translate3d(-110px, -18px, 0) scale(0.88); opacity: 0.16; }
}

@keyframes wordmarkGloss {
  0%, 22% { transform: translateX(-58%); opacity: 0; }
  42% { opacity: 0.72; }
  70%, 100% { transform: translateX(58%); opacity: 0; }
}

/* Slogan below the portrait */
.hero__portrait {
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

.hero__portrait .portrait-frame { align-self: center; }

.hero__portrait .hero__statement {
  position: relative;
  z-index: 6;
  align-self: flex-end;
  width: min(88%, 360px);
  max-width: 360px;
  margin: -24px 0 0;
  padding: 0;
  border: 0;
}

.hero__portrait .soundwave-title {
  justify-content: flex-start;
  width: 100%;
  max-width: none !important;
  gap: 0.08em 0.2em;
  color: var(--yellow);
  font-size: clamp(0.78rem, 1.15vw, 1.08rem) !important;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-shadow: 2px 2px 0 var(--coral);
  transform: none;
}

/* Creative profile horizontal motion */
#about-title { overflow: visible; }

.about-title__motion {
  display: inline-block;
  animation: profileTitleDrift 5.4s cubic-bezier(0.42, 0, 0.25, 1) infinite alternate;
  will-change: transform;
}

.about-title__imagination {
  display: inline-block;
  color: var(--coral);
  transform-origin: 50% 62%;
  animation: imaginationPulseColor 3.2s cubic-bezier(0.34, 0, 0.18, 1) infinite;
  will-change: opacity, transform, color;
}

@keyframes profileTitleDrift {
  from { transform: translateX(0); }
  to { transform: translateX(clamp(18px, 3.2vw, 54px)); }
}

@keyframes imaginationPulseColor {
  0% {
    opacity: 0.34;
    color: rgba(11, 11, 11, 0.42);
    transform: scale(0.78) translateY(0.03em);
  }
  48% {
    opacity: 1;
    color: var(--ink);
    transform: scale(1);
  }
  76%, 100% {
    opacity: 1;
    color: var(--coral);
    transform: scale(1.08);
  }
}

@media (max-width: 760px) {
  .entrance { padding: 8px; }
  .entrance__stage { padding: 20px; border-radius: 24px; }
  .entrance__hero-shape { top: 14%; left: -9%; width: 118%; height: 48%; }
  .entrance__wordmark { top: 37%; width: 98vw; height: 40vw; min-height: 132px; }
  .entrance__plane--one { top: 14%; left: 5%; }
  .entrance__plane--two { right: 4%; bottom: 33%; }
  .entrance__grain { opacity: 0.022; }

  .hero__portrait .hero__statement {
    width: min(72%, 290px);
    margin: -18px 0 22px;
  }

  .hero__portrait .soundwave-title { font-size: 0.82rem !important; }
}

/* 2026-07 bold-color refresh: reference palette, bilingual copy and profile clients */
:root {
  --yellow: #fff200;
  --green: #00a650;
  --acid-green: #eaff00;
  --purple: #6d00d8;
  --pink: #f279d5;
  --blue: #89d1ef;
  --coral: #ff5b45;
  --ink: #050505;
  --paper: #f6f0df;
}

.entrance {
  color: #fff;
  background: var(--yellow) !important;
}

.entrance::before,
.entrance::after,
.entrance__grain,
.entrance__mist {
  display: none !important;
}

.entrance__stage {
  background:
    radial-gradient(circle at 18% 22%, rgba(109, 0, 216, 0.22), transparent 26%),
    radial-gradient(circle at 78% 74%, rgba(255, 242, 0, 0.16), transparent 30%),
    linear-gradient(145deg, #003f22 0%, var(--green) 52%, #00381f 100%) !important;
  box-shadow: 18px 18px 0 rgba(5, 5, 5, 0.9);
}

.entrance__topline > span:first-child,
.entrance__topline > span:last-child,
.entrance__bottom,
.entrance__tagline span {
  color: #fff !important;
}

.entrance__hero-shape-fill {
  fill: rgba(137, 209, 239, 0.86);
}

.entrance__hero-shape-clouds {
  opacity: 0.24;
}

.entrance__hero-shape-clouds ellipse {
  fill: rgba(255, 255, 255, 0.9);
  filter: blur(10px);
}

.entrance__hero-shape-stroke {
  stroke: #fff;
  stroke-width: 22;
}

.entrance__wordmark > .entrance__main-mark,
.entrance__logo-keys i {
  filter:
    drop-shadow(1px 1px 0 #fff6ff)
    drop-shadow(5px 6px 0 #0a7b42)
    drop-shadow(10px 12px 0 #004124)
    drop-shadow(18px 22px 22px rgba(0, 36, 20, 0.36)) !important;
}

.entrance__wordmark > .entrance__main-mark {
  opacity: 0.42;
}

.entrance__wordmark::after {
  display: block;
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.72) 45%, transparent 64%);
  -webkit-mask: url("public/assets/brand/creative-worker-seven-transparent.webp") center / contain no-repeat;
  mask: url("public/assets/brand/creative-worker-seven-transparent.webp") center / contain no-repeat;
  mix-blend-mode: screen;
}

.entrance__plane::before {
  background: conic-gradient(from 218deg, #6d00d8 0deg, #f5ddff 42deg, #b678ff 88deg, #fff 126deg, #8d52d9 190deg, #efd9ff 250deg, #4f009e 312deg, #fff8ff 360deg);
  box-shadow: inset 0 0 0 1px rgba(255, 246, 255, 0.96), inset -10px -10px 18px rgba(70, 0, 128, 0.28);
}

.entrance__plane::after {
  background: radial-gradient(circle at 34% 28%, #fff 0 12%, #d8b8ff 36%, #6d00d8 72%, #fff6ff 100%);
  box-shadow: 0 0 14px rgba(216, 184, 255, 0.72);
}

.pill--light:hover,
.pill--light:focus-visible,
.pill--light.is-clicked {
  color: #1e0c2a;
  background: linear-gradient(145deg, #fff8ff 0%, #f2c5ff 48%, #e2b8ff 100%);
}

.hero__offer small,
.section-translation,
.about__intro small,
.services__intro small,
.service-stage__claim small,
.service-stage li small,
.showcase-bridge__copy small,
.works-heading small,
.vm-works__heading small,
.workflow__heading .section-translation,
.workflow-track li small,
.vision-line p small,
.contact__lead small {
  display: block;
  margin-top: 0.35em;
  font-family: var(--body);
  font-size: 0.58em;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.section-translation {
  margin: 16px 0 0;
  color: var(--purple);
  font-size: clamp(0.85rem, 1.2vw, 1.08rem);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.hero__offer p,
.hero__offer strong,
.hero__offer a {
  line-height: 1.25;
}

.about {
  position: relative;
  background: var(--yellow);
  color: var(--ink);
}

.about::before {
  content: "";
  position: absolute;
  inset: 7% auto auto 4%;
  width: clamp(180px, 23vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 10deg, var(--ink) 0deg 11deg, var(--yellow) 11deg 22deg);
  opacity: 0.95;
  clip-path: polygon(50% 0, 60% 35%, 100% 8%, 68% 47%, 100% 50%, 67% 58%, 96% 92%, 58% 66%, 50% 100%, 42% 66%, 4% 92%, 33% 58%, 0 50%, 32% 47%, 0 8%, 40% 35%);
  transform: rotate(-7deg);
  pointer-events: none;
}

.about__headline,
.about__intro,
.profile-facts,
.about__side-note,
.client-logos {
  position: relative;
  z-index: 1;
}

.about__intro {
  align-self: stretch;
  padding: clamp(24px, 3vw, 46px);
  color: #fff;
  background: var(--green);
  transform: rotate(1.2deg);
  box-shadow: 16px 16px 0 var(--purple);
}

.about__intro p {
  max-width: none;
}

.about__intro small {
  color: #fff;
  font-size: 0.52em;
}

.profile-facts {
  padding: 18px;
  border: 3px solid var(--ink);
  background: var(--green);
  box-shadow: 10px 10px 0 var(--purple);
}

.profile-facts div {
  margin-bottom: 12px;
  padding: 15px 16px;
  border: 2px solid var(--ink);
  background: var(--yellow);
}

.profile-facts div:nth-child(even) {
  background: var(--blue);
}

.profile-facts div:last-child {
  margin-bottom: 0;
}

.about__side-note {
  border: 3px solid var(--ink);
  color: #fff;
  background: var(--green);
  box-shadow: 10px 10px 0 var(--yellow), 18px 18px 0 var(--ink);
}

.about__side-note::before {
  color: #fff;
  opacity: 0.9;
}

.about__side-note span {
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--purple);
}

.about__side-note p {
  color: #fff;
}

.about__side-note p small {
  color: #fff;
}

.client-logos {
  grid-column: 2 / span 2;
  padding: 18px;
  border: 3px solid var(--ink);
  background: #fff;
  box-shadow: 10px 10px 0 var(--pink);
}

.client-logos p {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.client-logos img {
  width: 100%;
  margin-top: 10px;
  border: 1px solid rgba(5, 5, 5, 0.16);
  background: #fff;
}

.video-card__status {
  max-width: calc(100% - 28px);
  text-transform: uppercase;
}

.vision-line p small {
  max-width: 34ch;
  color: rgba(255, 253, 248, 0.72);
  font-size: clamp(0.92rem, 1.35vw, 1.2rem);
  letter-spacing: 0;
}

@media (max-width: 1100px) {
  .client-logos {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .entrance__stage {
    box-shadow: 8px 8px 0 rgba(5, 5, 5, 0.92);
  }

  .about::before {
    opacity: 0.34;
  }

  .about__intro {
    transform: none;
  }

  .profile-facts,
  .about__side-note,
  .client-logos {
    box-shadow: 6px 6px 0 var(--purple);
  }
}

/* Hero palette correction: calmer bold color, less harsh collision */
.entrance {
  color: #f7f0df;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.55), transparent 26%),
    radial-gradient(circle at 85% 88%, rgba(177, 218, 237, 0.48), transparent 32%),
    linear-gradient(135deg, #c7e2ef 0%, #f7f1db 46%, #cde9f4 100%) !important;
}

.entrance__stage {
  border: 2px solid rgba(247, 240, 223, 0.92);
  background:
    radial-gradient(circle at 20% 18%, rgba(121, 83, 146, 0.18), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(255, 242, 0, 0.08), transparent 28%),
    linear-gradient(145deg, #00331f 0%, #006039 54%, #002b1d 100%) !important;
  box-shadow:
    14px 14px 0 rgba(8, 17, 10, 0.94),
    0 26px 62px rgba(0, 47, 31, 0.24) !important;
}

.entrance__hero-shape-fill {
  fill: rgba(217, 235, 246, 0.88);
}

.entrance__hero-shape-clouds {
  opacity: 0.18;
}

.entrance__hero-shape-clouds ellipse {
  fill: rgba(255, 255, 255, 0.78);
  filter: blur(18px);
}

.entrance__hero-shape-stroke {
  stroke: rgba(247, 240, 223, 0.95);
  stroke-width: 20;
}

.entrance__topline > span:first-child,
.entrance__topline > span:last-child,
.entrance__bottom,
.entrance__tagline span {
  color: #f7f0df !important;
}

.entrance__wordmark > .entrance__main-mark,
.entrance__logo-keys i {
  filter:
    drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.72))
    drop-shadow(5px 6px 0 #0f7950)
    drop-shadow(11px 13px 0 #003c2b)
    drop-shadow(20px 24px 24px rgba(0, 28, 18, 0.34)) !important;
}

.entrance__wordmark > .entrance__main-mark {
  opacity: 0.34;
}

.entrance__plane::before {
  background: conic-gradient(from 218deg, #b49bff 0deg, #f5ddff 42deg, #8a58e8 92deg, #fff 130deg, #d9c6ff 188deg, #7f55d8 252deg, #f3d8ff 318deg, #fff8ff 360deg) !important;
}

.entrance__plane::after {
  background: radial-gradient(circle at 34% 28%, #fff 0 12%, #e8d8ff 36%, #9c7aff 72%, #fff6ff 100%) !important;
  box-shadow: 0 0 14px rgba(215, 195, 255, 0.76) !important;
}

.entrance__meter > span {
  color: #c9efff !important;
  text-shadow:
    4px 5px 0 rgba(0, 64, 46, 0.62),
    8px 9px 0 rgba(0, 38, 27, 0.42);
}

.entrance__bar {
  background: rgba(247, 240, 223, 0.55) !important;
}

.entrance__bar i {
  background: linear-gradient(90deg, #f7f0df 0%, #d7eff9 54%, #fff200 100%) !important;
}

.pill--light {
  color: #00331f;
  border-color: rgba(247, 240, 223, 0.92) !important;
  background: rgba(247, 240, 223, 0.96) !important;
}

.pill--light:hover,
.pill--light:focus-visible,
.pill--light.is-clicked {
  color: #190b25 !important;
  background: linear-gradient(145deg, #fff8ff 0%, #ead4ff 52%, #c8afff 100%) !important;
}

/* Latest review: purple outer Hero background */
.entrance {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.18), transparent 26%),
    radial-gradient(circle at 86% 84%, rgba(255, 242, 0, 0.12), transparent 30%),
    linear-gradient(135deg, #7c22ff 0%, #6720ce 44%, #3b156b 100%) !important;
}

/* 2026-07 refinement: cleaner portrait, profile structure and video palette */
.portrait-frame {
  width: min(112%, 650px) !important;
  height: min(72vh, 790px) !important;
  min-height: 520px;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.portrait-frame::before,
.portrait-frame::after {
  display: none !important;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: 50% 50%;
  filter: contrast(1.05) saturate(1.02) drop-shadow(0 24px 34px rgba(6, 11, 18, 0.18)) !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.hero__portrait .hero__statement {
  margin-top: -44px;
  margin-right: clamp(18px, 4vw, 70px);
}

.about {
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding-top: clamp(72px, 9vw, 132px);
  background: #f5ec2b;
}

.about::before {
  display: none !important;
}

.about .section-index {
  grid-column: 1 / -1;
}

.about__headline {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  padding-top: clamp(8px, 2vw, 26px);
}

.about__headline .eyebrow {
  margin-bottom: 1.1rem;
}

.about__headline .display-title {
  max-width: 6.6ch;
  font-size: clamp(4rem, 8.2vw, 8.8rem);
  line-height: 0.84;
  letter-spacing: -0.1em;
}

.about__headline .section-translation {
  margin-top: 1.2rem;
  color: var(--purple);
}

.about__intro {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(210px, 0.85fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: end;
  min-height: clamp(330px, 34vw, 440px);
  margin: 0;
  padding: clamp(30px, 4vw, 58px);
  border: 3px solid #050505;
  color: #fff;
  background: #00a650;
  box-shadow: 12px 12px 0 var(--purple);
  transform: none;
}

.about__intro .lead {
  max-width: 14ch;
  font-size: clamp(2.4rem, 4.8vw, 5.6rem);
  line-height: 0.92;
}

.about__intro > p:last-child {
  max-width: 32ch;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  font-weight: 750;
}

.profile-facts {
  grid-column: 1;
  grid-row: 3;
  align-self: stretch;
  padding: 18px;
  border: 3px solid var(--ink);
  background: var(--green);
  box-shadow: 10px 10px 0 var(--purple);
}

.profile-facts div {
  grid-template-columns: 112px minmax(0, 1fr);
  margin-bottom: 12px;
  padding: 16px 18px;
  border: 2px solid var(--ink);
}

.about__side-note {
  grid-column: 2;
  grid-row: 3;
  min-height: 100%;
  padding: clamp(28px, 3vw, 46px);
  border: 3px solid var(--ink);
  border-radius: 30px;
  color: #fff;
  background: #00a650;
  box-shadow: 10px 10px 0 var(--yellow), 18px 18px 0 var(--ink);
  text-align: left;
}

.about__side-note::before {
  top: 47%;
  left: -0.07em;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--display);
  opacity: 0.86;
}

.about__side-note span {
  max-width: 12ch;
  margin-left: auto;
  padding: clamp(48px, 7vw, 92px) 0 clamp(18px, 3vw, 34px);
  color: var(--yellow);
  font-family: var(--sans), Arial, Helvetica, sans-serif !important;
  font-style: normal !important;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.88;
  text-align: right;
  text-shadow: 3px 3px 0 var(--purple);
}

.about__side-note p {
  max-width: 29ch;
  margin-left: auto;
  padding: 0;
  color: #fff;
  font-weight: 820;
}

.about__side-note p small {
  display: block;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78em;
  line-height: 1.5;
}

.client-logos {
  grid-column: 1 / -1;
  grid-row: 4;
  margin-top: clamp(10px, 2vw, 30px);
  background: #f7f0df;
  box-shadow: 10px 10px 0 var(--blue), 18px 18px 0 var(--purple);
}

#about-title {
  overflow: visible;
}

.about-title__motion {
  animation: profileTitleDrift 4.8s cubic-bezier(0.34, 0, 0.2, 1) infinite alternate;
}

.about-title__imagination {
  position: relative;
  z-index: 1;
  animation: imaginationImpact 2.2s cubic-bezier(0.2, 0.9, 0.16, 1) infinite;
}

.about-title__imagination::before,
.about-title__imagination::after {
  content: none !important;
}

@keyframes imaginationImpact {
  0% {
    opacity: 0.28;
    color: rgba(5, 5, 5, 0.34);
    transform: translateX(-0.16em) scale(0.72) skewX(-5deg);
    text-shadow: none;
  }
  34% {
    opacity: 1;
    color: #050505;
    transform: translateX(0.05em) scale(1.16) skewX(-2deg);
    text-shadow: 0.07em 0 var(--yellow), -0.045em 0 var(--purple);
  }
  66%, 100% {
    opacity: 1;
    color: #ff5b45;
    transform: translateX(0.18em) scale(1.06) skewX(0deg);
    text-shadow: 0.08em 0 #050505, 0.14em 0 var(--yellow);
  }
}

.service-stage--vm {
  background: #53c6ff !important;
}

.section--pink,
.aigc-works {
  background: #8fd8ff !important;
}

.aigc-works .gallery-instruction i {
  background: rgba(5, 5, 5, 0.72);
}

.vm-works__heading .display-title {
  max-width: 13ch;
}

.vm-works__heading .display-title span {
  color: #ff5b45;
  white-space: nowrap;
}

.vm-works__heading .display-title em {
  color: #53c6ff;
}

@media (max-width: 980px) {
  .about {
    grid-template-columns: 1fr;
  }

  .about__headline,
  .about__intro,
  .profile-facts,
  .about__side-note,
  .client-logos {
    grid-column: 1;
    grid-row: auto;
  }

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

/* Latest review: remove portrait sound curve, animate yellow portrait graphics */
.portrait-graphic-system {
  display: none !important;
}

.hero__portrait .portrait-frame {
  isolation: isolate;
}

.hero__portrait .portrait-frame::before,
.hero__portrait .portrait-frame::after {
  content: "";
  display: block !important;
  position: absolute;
  pointer-events: none;
}

.hero__portrait .portrait-frame::before {
  z-index: 0;
  inset: 16% 13% 20%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -10deg, transparent 0deg 10deg, rgba(255, 242, 0, 0.88) 10deg 20deg, transparent 20deg 35deg);
  filter: drop-shadow(0 0 18px rgba(255, 242, 0, 0.34));
  opacity: 0.56;
  transform-origin: 50% 50%;
  animation: portraitYellowOrbit 4.8s cubic-bezier(0.42, 0, 0.2, 1) infinite alternate;
}

.hero__portrait .portrait-frame::after {
  z-index: 1;
  inset: 24% 21% 29%;
  border-radius: 48%;
  border: 3px solid rgba(255, 242, 0, 0.74);
  opacity: 0.26;
  transform-origin: 50% 50%;
  animation: portraitYellowPulse 2.8s ease-in-out infinite;
}

.hero__portrait .portrait-frame img {
  position: relative;
  z-index: 2;
  animation: portraitCutoutGlow 3.4s ease-in-out infinite;
}

@keyframes portraitYellowOrbit {
  0% {
    opacity: 0.42;
    transform: rotate(-5deg) scale(0.96);
  }
  100% {
    opacity: 0.7;
    transform: rotate(8deg) scale(1.04);
  }
}

@keyframes portraitYellowPulse {
  0%, 100% {
    opacity: 0.16;
    transform: scale(0.92) rotate(8deg);
  }
  50% {
    opacity: 0.42;
    transform: scale(1.08) rotate(-5deg);
  }
}

@keyframes portraitCutoutGlow {
  0%, 100% {
    filter: contrast(1.05) saturate(1.02) drop-shadow(0 24px 34px rgba(6, 11, 18, 0.18)) !important;
  }
  50% {
    filter: contrast(1.07) saturate(1.12) drop-shadow(0 24px 34px rgba(6, 11, 18, 0.18)) drop-shadow(0 0 16px rgba(255, 242, 0, 0.18)) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__portrait .portrait-frame::before,
  .hero__portrait .portrait-frame::after,
  .hero__portrait .portrait-frame img {
    animation: none !important;
  }
}

/* Latest review: make Creative Profile read as a left/right composition */
@media (min-width: 780px) {
  .about {
    grid-template-columns: minmax(260px, 0.88fr) minmax(360px, 1.12fr) !important;
    gap: clamp(24px, 3.4vw, 54px) clamp(26px, 4vw, 64px) !important;
    align-items: start;
  }

  .about .section-index {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
  }

  .about__headline {
    grid-column: 1 !important;
    grid-row: 2 !important;
    padding-top: clamp(4px, 1.2vw, 18px);
    transform: translateY(18px) rotate(-0.8deg);
  }

  .about__headline .display-title {
    max-width: 6.2ch;
    font-size: clamp(3.7rem, 7.5vw, 8.4rem);
  }

  .about__intro {
    grid-column: 2 !important;
    grid-row: 2 !important;
    display: block;
    min-height: auto;
    padding: clamp(30px, 4vw, 58px);
    border-radius: 0 34px 0 34px;
    transform: translateY(-8px) rotate(-0.7deg);
  }

  .about__intro .lead {
    max-width: 15ch;
    margin-bottom: clamp(34px, 4vw, 58px);
    font-size: clamp(2.3rem, 4.5vw, 5.15rem);
  }

  .about__intro > p:last-child {
    max-width: 38ch;
    margin-left: auto;
  }

  .profile-facts {
    grid-column: 1 !important;
    grid-row: 3 !important;
    align-self: start;
    transform: translateY(-8px) rotate(0.6deg);
  }

  .about__side-note {
    grid-column: 2 !important;
    grid-row: 3 !important;
    display: grid;
    grid-template-columns: minmax(130px, 0.72fr) minmax(230px, 1fr);
    gap: clamp(16px, 2vw, 28px);
    align-items: center;
    min-height: clamp(350px, 30vw, 470px);
    padding: clamp(28px, 3.3vw, 48px);
    border-radius: 36px 10px 36px 10px;
    transform: translateY(-30px) rotate(0.8deg);
  }

  .about__side-note::before {
    top: 52%;
    left: -0.08em;
    font-size: clamp(13rem, 24vw, 24rem);
  }

  .about__side-note span {
    grid-column: 2;
    align-self: end;
    max-width: 13ch;
    margin: 0;
    padding: 0;
    text-align: left;
  }

  .about__side-note p {
    grid-column: 2;
    align-self: start;
    max-width: 34ch;
    margin: clamp(16px, 2vw, 24px) 0 0;
    color: #fff !important;
    font-weight: 850;
  }

  .client-logos {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    margin-top: clamp(-18px, -1.2vw, -6px);
  }
}

@media (min-width: 780px) and (max-width: 980px) {
  .about {
    padding-inline: clamp(34px, 5vw, 52px);
  }

  .profile-facts div {
    grid-template-columns: 92px minmax(0, 1fr);
    padding-inline: 14px;
  }

  .about__side-note {
    grid-template-columns: minmax(92px, 0.52fr) minmax(210px, 1fr);
  }

  .about__side-note span {
    font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  }

  .about__side-note p {
    font-size: 0.9rem;
  }
}

/* Latest review: simplify 02 profile hierarchy, less conventional and less bulky */
.about {
  position: relative;
  overflow: hidden;
}

.about::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -16vw;
  top: 8%;
  width: min(42vw, 520px);
  height: 78%;
  background: var(--purple);
  opacity: 0.16;
  transform: skewX(-12deg) rotate(2deg);
  pointer-events: none;
}

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

@media (min-width: 780px) {
  .about {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    gap: clamp(16px, 2vw, 28px) !important;
    padding-top: clamp(70px, 8vw, 118px);
  }

  .about .section-index {
    grid-column: 1 / 13 !important;
    grid-row: 1 !important;
    margin-bottom: clamp(10px, 2vw, 22px);
  }

  .about__headline {
    grid-column: 1 / 8 !important;
    grid-row: 2 !important;
    align-self: end;
    padding: 0;
    transform: translateY(10px);
  }

  .about__headline .eyebrow {
    margin-bottom: clamp(14px, 2vw, 26px);
  }

  .about__headline .display-title {
    max-width: 7ch;
    font-size: clamp(5.2rem, 10.8vw, 12rem);
    line-height: 0.78;
    letter-spacing: -0.13em;
  }

  .about__headline .section-translation {
    display: inline-flex;
    margin-top: clamp(16px, 2vw, 26px);
    padding: 8px 13px;
    color: #fff200;
    background: var(--purple);
    box-shadow: 5px 5px 0 var(--ink);
    font-size: clamp(0.78rem, 1.15vw, 1rem);
  }

  .about__intro {
    grid-column: 8 / 13 !important;
    grid-row: 2 !important;
    align-self: center;
    display: block;
    min-height: 0;
    margin: 0;
    padding: clamp(22px, 3vw, 40px);
    border: 3px solid var(--ink);
    border-radius: 0 34px 0 34px;
    background: #00a650;
    box-shadow: 9px 9px 0 var(--purple);
    transform: translateY(18px) rotate(1.2deg);
  }

  .about__intro .lead {
    max-width: 12ch;
    margin: 0 0 clamp(28px, 4vw, 54px);
    color: #fff;
    font-size: clamp(2.2rem, 4.1vw, 4.7rem);
    line-height: 0.88;
  }

  .about__intro > p:last-child {
    max-width: 36ch;
    margin: 0 0 0 auto;
    color: #fff;
    font-size: clamp(0.96rem, 1.22vw, 1.18rem);
    font-weight: 820;
    line-height: 1.52;
  }

  .about__intro small {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .profile-facts {
    grid-column: 1 / 7 !important;
    grid-row: 3 !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-self: start;
    margin-top: clamp(18px, 2.5vw, 36px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: rotate(-0.6deg);
  }

  .profile-facts div {
    display: block;
    min-height: 110px;
    margin: 0;
    padding: 16px;
    border: 3px solid var(--ink);
    background: var(--blue);
    box-shadow: 5px 5px 0 var(--ink);
  }

  .profile-facts div:nth-child(odd) {
    background: #fff200;
  }

  .profile-facts dt {
    margin-bottom: 18px;
    font-size: 0.62rem;
  }

  .profile-facts dd {
    font-size: clamp(1.05rem, 1.7vw, 1.55rem);
    line-height: 1.08;
  }

  .about__side-note {
    grid-column: 7 / 13 !important;
    grid-row: 3 !important;
    display: grid;
    grid-template-columns: minmax(130px, 0.75fr) minmax(240px, 1.25fr);
    gap: clamp(16px, 2vw, 28px);
    align-items: center;
    min-height: auto;
    margin-top: clamp(2px, 1.6vw, 20px);
    padding: clamp(22px, 3vw, 38px);
    border: 3px solid var(--ink);
    border-radius: 30px;
    color: #fff;
    background: var(--purple);
    box-shadow: 10px 10px 0 var(--ink);
    transform: rotate(0.7deg);
  }

  .about__side-note::before {
    top: 50%;
    left: -0.04em;
    color: rgba(255, 242, 0, 0.24);
    font-size: clamp(9rem, 18vw, 19rem);
    opacity: 1;
  }

  .about__side-note span {
    grid-column: 1;
    max-width: 7ch;
    margin: 0;
    padding: 0;
    color: #fff200;
    font-size: clamp(2.15rem, 3.8vw, 4.4rem);
    line-height: 0.82;
    text-align: left;
    text-shadow: 3px 3px 0 var(--green);
  }

  .about__side-note p {
    grid-column: 2;
    max-width: 40ch;
    margin: 0;
    color: #fff !important;
    font-size: clamp(0.95rem, 1.2vw, 1.16rem);
    font-weight: 850;
    line-height: 1.58;
  }

  .about__side-note p small {
    color: rgba(255, 255, 255, 0.86);
  }

  .client-logos {
    grid-column: 1 / 13 !important;
    grid-row: 4 !important;
    margin-top: clamp(22px, 3vw, 42px);
    padding: clamp(18px, 2.5vw, 30px);
    border: 3px solid var(--ink);
    background: #f7f0df;
    box-shadow: 8px 8px 0 var(--blue);
    transform: rotate(-0.25deg);
  }
}

@media (min-width: 780px) and (max-width: 980px) {
  .about {
    padding-inline: clamp(28px, 4vw, 44px);
  }

  .about__headline .display-title {
    font-size: clamp(4.5rem, 10vw, 7.8rem);
  }

  .about__intro .lead {
    font-size: clamp(2rem, 4.3vw, 3.35rem);
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .profile-facts div {
    min-height: 88px;
  }

  .about__side-note {
    grid-template-columns: 1fr;
  }

  .about__side-note span,
  .about__side-note p {
    grid-column: 1;
  }
}

/* Latest review: give Creative Profile more breathing room */
@media (min-width: 780px) {
  .about {
    min-height: auto;
    padding-top: clamp(92px, 8vw, 140px);
    padding-bottom: clamp(96px, 9vw, 150px);
    gap: clamp(22px, 2.8vw, 46px) clamp(28px, 4vw, 72px) !important;
  }

  .about::after {
    right: -22vw;
    width: min(32vw, 430px);
    opacity: 0.1;
  }

  .about__headline {
    grid-column: 1 / 7 !important;
    align-self: center;
    transform: translateY(-4px) rotate(-0.4deg);
  }

  .about__headline .display-title {
    max-width: 7.2ch;
    font-size: clamp(4rem, 7.4vw, 8.7rem);
    line-height: 0.86;
    letter-spacing: -0.105em;
  }

  .about-title__imagination {
    transform-origin: 44% 58%;
  }

  .about__headline .section-translation {
    margin-top: clamp(14px, 1.6vw, 22px);
    padding: 7px 12px;
    font-size: clamp(0.72rem, 0.95vw, 0.88rem);
  }

  .about__intro {
    grid-column: 8 / 13 !important;
    justify-self: end;
    width: min(100%, 640px);
    padding: clamp(28px, 3.4vw, 48px);
    border-radius: 28px 28px 4px 28px;
    box-shadow: 8px 8px 0 var(--purple);
    transform: translateY(8px) rotate(0.6deg);
  }

  .about__intro .lead {
    max-width: 12.5ch;
    margin-bottom: clamp(24px, 3vw, 38px);
    font-size: clamp(2.25rem, 3.55vw, 4.15rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  .about__intro > p:last-child {
    max-width: 34ch;
    font-size: clamp(0.95rem, 1.08vw, 1.08rem);
    line-height: 1.48;
  }

  .profile-facts {
    grid-column: 1 / 6 !important;
    width: min(100%, 560px);
    margin-top: clamp(34px, 4vw, 70px);
    gap: 8px;
    transform: rotate(-0.25deg);
  }

  .profile-facts div {
    min-height: 82px;
    padding: 13px 15px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .profile-facts dt {
    margin-bottom: 10px;
    font-size: 0.58rem;
  }

  .profile-facts dd {
    font-size: clamp(0.98rem, 1.3vw, 1.3rem);
  }

  .about__side-note {
    grid-column: 7 / 13 !important;
    justify-self: end;
    width: min(100%, 720px);
    margin-top: clamp(48px, 5vw, 88px);
    padding: clamp(24px, 2.7vw, 36px);
    border-radius: 26px;
    box-shadow: 8px 8px 0 var(--ink);
    transform: rotate(0.35deg);
  }

  .about__side-note::before {
    left: -0.1em;
    font-size: clamp(7rem, 13vw, 15rem);
  }

  .about__side-note span {
    max-width: 6ch;
    font-size: clamp(1.8rem, 3vw, 3.7rem);
    line-height: 0.86;
  }

  .about__side-note p {
    max-width: 36ch;
    font-size: clamp(0.9rem, 1.05vw, 1.04rem);
    line-height: 1.56;
  }

  .client-logos {
    margin-top: clamp(48px, 5vw, 82px);
  }
}

@media (min-width: 780px) and (max-width: 1100px) {
  .about__headline .display-title {
    font-size: clamp(3.55rem, 7.2vw, 5.7rem);
  }

  .about__intro .lead {
    font-size: clamp(2rem, 3.6vw, 3rem);
  }

  .profile-facts {
    grid-column: 1 / 7 !important;
  }

  .about__side-note {
    grid-column: 7 / 13 !important;
    grid-template-columns: 0.72fr 1.28fr;
  }
}

/* Latest review: quieter but more editorial 02 layout */
@media (min-width: 780px) {
  .about {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    row-gap: clamp(22px, 3vw, 42px) !important;
    column-gap: clamp(20px, 3vw, 48px) !important;
    padding-top: clamp(96px, 8vw, 140px);
    padding-bottom: clamp(86px, 8vw, 132px);
  }

  .about::after {
    right: -18vw;
    top: 12%;
    width: min(28vw, 380px);
    height: 68%;
    opacity: 0.08;
  }

  .about .section-index {
    grid-column: 1 / 13 !important;
    grid-row: 1 !important;
    margin-bottom: clamp(4px, 1vw, 12px);
  }

  .about__headline {
    grid-column: 1 / 7 !important;
    grid-row: 2 !important;
    align-self: center;
    transform: translateY(0) rotate(-0.35deg);
  }

  .about__headline .display-title {
    max-width: 7.4ch;
    font-size: clamp(4rem, 6.7vw, 7.8rem);
    line-height: 0.86;
    letter-spacing: -0.105em;
  }

  .about-title__motion {
    animation-duration: 6.8s;
  }

  .about-title__imagination {
    color: #ff5b45;
    background: none !important;
    animation: imaginationImpactSoft 3.6s cubic-bezier(0.28, 0.84, 0.24, 1) infinite;
  }

  .about__headline .section-translation {
    margin-top: clamp(14px, 1.6vw, 22px);
    padding: 7px 12px;
    color: #fff200;
    background: var(--purple);
    box-shadow: 4px 4px 0 var(--ink);
    font-size: clamp(0.72rem, 0.9vw, 0.88rem);
  }

  .about__intro {
    grid-column: 8 / 13 !important;
    grid-row: 2 !important;
    justify-self: end;
    align-self: center;
    width: min(100%, 560px);
    min-height: 0;
    padding: clamp(24px, 3vw, 40px);
    border-radius: 28px 28px 6px 28px;
    box-shadow: 7px 7px 0 var(--purple);
    transform: translateY(4px) rotate(0.45deg);
  }

  .about__intro .lead {
    max-width: 12ch;
    margin-bottom: clamp(22px, 2.6vw, 34px);
    font-size: clamp(2.05rem, 3.05vw, 3.6rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
  }

  .about__intro > p:last-child {
    max-width: 33ch;
    font-size: clamp(0.9rem, 0.98vw, 1.02rem);
    line-height: 1.48;
  }

  .profile-facts {
    grid-column: 1 / 13 !important;
    grid-row: 3 !important;
    display: grid;
    grid-template-columns: 1.05fr 1.35fr 1.05fr 1.1fr;
    gap: 10px;
    width: 100%;
    margin: clamp(8px, 1.4vw, 22px) 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .profile-facts div {
    display: grid;
    grid-template-columns: minmax(66px, 0.46fr) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 12px 14px;
    border: 3px solid var(--ink);
    background: #8fd8ff;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .profile-facts div:nth-child(odd) {
    background: #fff200;
  }

  .profile-facts dt {
    margin: 0;
    font-size: 0.55rem;
    line-height: 1.15;
  }

  .profile-facts dd {
    font-size: clamp(0.95rem, 1.18vw, 1.22rem);
    line-height: 1.08;
  }

  .about__side-note {
    grid-column: 1 / 13 !important;
    grid-row: 4 !important;
    display: grid;
    grid-template-columns: minmax(170px, 0.3fr) minmax(0, 0.7fr);
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: clamp(22px, 2.8vw, 36px) clamp(26px, 4vw, 58px);
    border-radius: 999px;
    background: var(--purple);
    box-shadow: 7px 7px 0 var(--ink);
    transform: rotate(-0.25deg);
  }

  .about__side-note::before {
    left: auto;
    right: clamp(16px, 3vw, 46px);
    top: 50%;
    color: rgba(255, 242, 0, 0.13);
    font-size: clamp(5rem, 10vw, 10rem);
    opacity: 1;
  }

  .about__side-note span {
    grid-column: 1;
    max-width: none;
    margin: 0;
    padding: 0;
    color: #fff200;
    font-size: clamp(1.85rem, 2.8vw, 3.3rem);
    line-height: 0.88;
    text-align: left;
    text-shadow: 3px 3px 0 var(--green);
  }

  .about__side-note p {
    grid-column: 2;
    max-width: 66ch;
    margin: 0;
    color: #fff !important;
    font-size: clamp(0.92rem, 1vw, 1.08rem);
    font-weight: 820;
    line-height: 1.48;
  }

  .about__side-note p small {
    margin-top: 0.52rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.42;
  }

  .client-logos {
    grid-column: 1 / 13 !important;
    grid-row: 5 !important;
    margin-top: clamp(14px, 2vw, 28px);
    padding: clamp(14px, 2vw, 24px);
    box-shadow: 6px 6px 0 var(--blue);
    transform: none;
  }
}

@media (min-width: 780px) and (max-width: 1100px) {
  .about__headline .display-title {
    font-size: clamp(3.6rem, 6.3vw, 5.4rem);
  }

  .about__intro .lead {
    font-size: clamp(1.8rem, 3vw, 2.65rem);
  }

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

  .about__side-note {
    grid-template-columns: minmax(130px, 0.32fr) minmax(0, 0.68fr);
    border-radius: 34px;
  }
}

@keyframes imaginationImpactSoft {
  0%, 100% {
    opacity: 0.76;
    transform: translateX(-0.04em) scale(0.94);
    text-shadow: 0.055em 0 var(--ink), 0.1em 0 #fff200;
  }
  50% {
    opacity: 1;
    transform: translateX(0.05em) scale(1.03);
    text-shadow: 0.07em 0 var(--ink), 0.14em 0 #fff200;
  }
}
