:root {
  --ink: #070a10;
  --muted: #667085;
  --paper: #fffdf9;
  --soft: #f2eee7;
  --line: #d9d1c5;
  --teal: #00897f;
  --dark: #08090d;
  --blue: #eaf3fb;
  --page-a: 230, 246, 242;
  --page-b: 248, 238, 222;
  --page-c: 232, 242, 255;
  --radius: 8px;
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(var(--page-a), .9), transparent 38vw),
    radial-gradient(circle at 18% 45%, rgba(var(--page-b), .72), transparent 42vw),
    linear-gradient(180deg, rgba(var(--page-c), .22), var(--paper) 42vh);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-weight: 400;
  transition: background .45s ease;
}
body[data-theme="jempo"] { --page-a: 216, 246, 232; --page-b: 236, 247, 255; --page-c: 0, 137, 127; }
body[data-theme="snapcast"] { --page-a: 225, 235, 255; --page-b: 236, 232, 246; --page-c: 10, 18, 32; }
body[data-theme="zoomoon"] { --page-a: 255, 237, 184; --page-b: 222, 244, 237; --page-c: 255, 184, 82; }
body[data-theme="archive"] { --page-a: 42, 245, 224; --page-b: 255, 82, 130; --page-c: 10, 12, 18; }
body[data-theme="contact"] { --page-a: 20, 24, 32; --page-b: 0, 137, 127; --page-c: 8, 9, 13; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p { margin: 0; color: var(--muted); line-height: 1.55; }
h1, h2, h3 { margin: 0; line-height: .95; letter-spacing: 0; font-weight: 400; }
h1 { font-size: clamp(64px, 8vw, 132px); }
h2 { font-size: clamp(44px, 5.5vw, 86px); }
h3 { font-size: clamp(28px, 3.6vw, 58px); }
.hub-copy h1,
.section-head h2,
.lineup-copy h2,
.contact-hero h2 {
  font-weight: 850;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  min-height: 84px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .9);
  backdrop-filter: blur(14px);
}
.brand-lockup {
  --brand-type-size: 23px;
  --brand-mark-height: var(--brand-type-size);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  white-space: nowrap;
}
.brand-symbol {
  width: auto;
  height: var(--brand-mark-height);
  flex: 0 0 auto;
  object-fit: contain;
}
.brand-wordmark {
  display: inline-flex;
  align-items: center;
  gap: .34em;
  color: inherit;
  font-size: var(--brand-type-size);
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1;
}
.brand-wordmark i {
  position: relative;
  top: -.02em;
  font-size: .48em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
}
.brand-lockup.is-reversed { color: #fff; }
.brand-lockup.is-reversed .brand-symbol { filter: brightness(0) invert(1); }
.brand-link { display: inline-flex; }
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.desktop-nav a {
  color: #252d3b;
  font-size: 15px;
  font-weight: 400;
}
.desktop-nav a.is-active { color: var(--teal); }
.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}
.language-switch a {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
}
.language-switch a.is-active {
  background: var(--ink);
  color: #fff;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}
.menu-button span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
}
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 100;
  width: min(86vw, 360px);
  padding: 26px;
  border-left: 1px solid var(--line);
  background: var(--paper);
  box-shadow: -22px 0 60px rgba(0, 0, 0, .18);
  transform: translateX(105%);
  transition: transform .25s ease;
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-close {
  display: block;
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 36px;
  line-height: 1;
}
.mobile-drawer .brand-lockup { margin: 20px 0 42px; }
.mobile-drawer nav { display: grid; }
.mobile-drawer a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 24px;
  font-weight: 400;
}

.hub-hero {
  max-width: var(--max);
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: 76px 42px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: 50px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hub-copy p:not(.eyebrow),
.section-head p,
.feature-copy p,
.creative-card p,
.contact-hero p {
  font-size: 19px;
}
.hub-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
}
.button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}
.button.light {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.hub-stage {
  position: relative;
  min-height: 660px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at calc(72% - var(--scroll-progress, .35) * 18%) 24%, rgba(255, 195, 86, .42), transparent 30%),
    radial-gradient(circle at calc(16% + var(--scroll-progress, .35) * 18%) 78%, rgba(0, 137, 127, .24), transparent 36%),
    linear-gradient(135deg, #edf5ff, #f8f0e4);
  overflow: hidden;
}
.tablet-frame,
.phone-frame {
  background: #0b1220;
  box-shadow: 0 24px 60px rgba(7, 10, 16, .18);
}
.tablet-frame {
  padding: 13px;
  border-radius: 24px;
}
.tablet-frame img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
}
.phone-frame {
  padding: 9px;
  border-radius: 34px;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
  object-fit: cover;
}
.hero-tablet {
  position: absolute;
  left: 14%;
  top: 13%;
  width: 70%;
  height: 42%;
  transform: translateY(calc((1 - var(--scroll-progress, .35)) * 20px));
  transition: transform .16s linear;
}
.hero-phone-left,
.hero-phone-right {
  position: absolute;
  width: 26%;
  height: 52%;
}
.hero-phone-left {
  left: 8%;
  bottom: 8%;
  transform: translateX(calc((1 - var(--scroll-progress, .35)) * -18px)) translateY(calc((1 - var(--scroll-progress, .35)) * 18px)) rotate(calc(-4deg - var(--scroll-progress, .35) * 4deg));
  transition: transform .16s linear;
}
.hero-phone-right {
  right: 8%;
  bottom: 9%;
  transform: translateX(calc((1 - var(--scroll-progress, .35)) * 18px)) translateY(calc((1 - var(--scroll-progress, .35)) * 18px)) rotate(calc(3deg + var(--scroll-progress, .35) * 3deg));
  transition: transform .16s linear;
}
.hero-cast {
  position: absolute;
  z-index: 5;
  left: 20%;
  right: 20%;
  bottom: 2%;
  height: 45%;
  pointer-events: none;
}
.hero-cast-character {
  position: absolute;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 24px 26px rgba(0,0,0,.18));
  transition: transform .16s linear;
}
.hero-cast-character.is-maddy {
  z-index: 5;
  left: -4%;
  bottom: -5%;
  width: 35%;
  transform: rotate(-5deg) translateY(calc((1 - var(--scroll-progress, .35)) * 18px));
}
.hero-cast-character.is-yare {
  z-index: 3;
  left: 17%;
  bottom: 1%;
  width: 30%;
  transform: rotate(-2deg) translateY(calc((1 - var(--scroll-progress, .35)) * 10px));
}
.hero-cast-character.is-tabimu {
  z-index: 6;
  left: 35%;
  bottom: -5%;
  width: 32%;
  transform: translateY(calc((1 - var(--scroll-progress, .35)) * 22px)) scale(calc(.97 + var(--scroll-progress, .35) * .03));
}
.hero-cast-character.is-bbeddagi {
  z-index: 4;
  right: 15%;
  bottom: 2%;
  width: 27%;
  transform: rotate(2deg) translateY(calc((1 - var(--scroll-progress, .35)) * 12px));
}
.hero-cast-character.is-sundeck {
  z-index: 5;
  right: -4%;
  bottom: -3%;
  width: 34%;
  transform: rotate(5deg) translateY(calc((1 - var(--scroll-progress, .35)) * 17px));
}

.hub-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .72);
  backdrop-filter: blur(10px);
}
.hub-strip article {
  padding: 28px 42px;
  border-right: 1px solid var(--line);
}
.hub-strip strong {
  display: block;
  font-size: 24px;
  font-weight: 400;
}
.hub-strip span { color: var(--muted); }

.section-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 42px;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .8fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.section-head p:not(.eyebrow) {
  max-width: 680px;
}

.feature-stack {
  display: grid;
  gap: 18px;
}
.feature-service {
  --service-rgb: 0, 137, 127;
  --service-rgb-2: 232, 242, 255;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
  gap: 36px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(var(--service-rgb), .22);
  border-radius: 8px;
  background:
    radial-gradient(circle at calc(84% - var(--scroll-progress, .3) * 22%) 14%, rgba(var(--service-rgb), .22), transparent 28%),
    radial-gradient(circle at calc(8% + var(--scroll-progress, .3) * 16%) 86%, rgba(var(--service-rgb-2), .58), transparent 34%),
    rgba(255,255,255,.84);
  box-shadow: 0 28px 90px rgba(var(--service-rgb), .08);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.feature-service.jempo { --service-rgb: 0, 137, 127; --service-rgb-2: 216, 246, 232; }
.feature-service.snapcast { --service-rgb: 17, 24, 39; --service-rgb-2: 225, 235, 255; }
.feature-service.zoomoon { --service-rgb: 245, 166, 35; --service-rgb-2: 226, 246, 241; }
.feature-service:nth-child(even) {
  grid-template-columns: minmax(0, 1.22fr) minmax(360px, .78fr);
}
.feature-service:nth-child(even) .feature-copy { order: 2; }
.feature-service:nth-child(even) .device-scene { order: 1; }
.feature-copy h3 { margin-bottom: 18px; }
.feature-copy p { max-width: 580px; }
.mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
}
.mini-pills span,
.lineup-grid > article > span,
.creative-card span {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(var(--service-rgb, 0, 137, 127), .1);
  color: rgb(var(--service-rgb, 0, 137, 127));
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.service-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 500px);
  margin-top: 26px;
}
.store-badge {
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 0;
  padding: 0 12px;
  border-radius: 8px;
  background: #03050a;
  color: #fff;
  overflow: hidden;
}
.store-badge > svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
}
.app-store-badge > svg {
  width: 20px;
  height: 26px;
  flex-basis: 20px;
}
.store-badge > span {
  display: grid;
  gap: 1px;
  color: #fff;
  line-height: 1;
  min-width: 0;
}
.store-badge small {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .04em;
  white-space: nowrap;
}
.store-badge strong {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.device-scene {
  position: relative;
  min-height: 540px;
  border: 1px solid #dce3e8;
  border-radius: 8px;
  background:
    radial-gradient(circle at calc(80% - var(--scroll-progress, .25) * 18%) 18%, rgba(var(--service-rgb), .23), transparent 32%),
    radial-gradient(circle at 10% calc(82% - var(--scroll-progress, .25) * 16%), rgba(var(--service-rgb-2), .8), transparent 36%),
    linear-gradient(135deg, #eef7ff, #fbf3e7);
  overflow: hidden;
}
.device-scene.tablet-phone .tablet-frame {
  position: absolute;
  left: 11%;
  top: 14%;
  width: 70%;
  height: 56%;
  transform: translateY(calc((1 - var(--scroll-progress, .25)) * 22px));
}
.device-scene.tablet-phone .phone-frame {
  position: absolute;
  right: 9%;
  bottom: 10%;
  width: 24%;
  height: 48%;
  transform: translateX(calc((1 - var(--scroll-progress, .25)) * 24px)) translateY(calc((1 - var(--scroll-progress, .25)) * 26px));
}
.device-scene.phone-pair .phone-frame {
  position: absolute;
  top: 11%;
  width: 29%;
  height: 76%;
}
.device-scene.phone-pair .tilted-left {
  left: 25%;
  transform: translateX(calc((1 - var(--scroll-progress, .25)) * -34px)) rotate(calc(-3deg - var(--scroll-progress, .25) * 5deg));
}
.device-scene.phone-pair .tilted-right {
  right: 23%;
  transform: translateX(calc((1 - var(--scroll-progress, .25)) * 34px)) rotate(calc(3deg + var(--scroll-progress, .25) * 5deg));
}
.device-scene.phone-character .solo {
  position: absolute;
  left: 22%;
  top: 10%;
  width: 30%;
  height: 78%;
  transform: translateX(calc((1 - var(--scroll-progress, .25)) * -18px));
}
.service-character {
  position: absolute;
  right: 16%;
  bottom: 9%;
  width: 26%;
  filter: drop-shadow(0 22px 26px rgba(0,0,0,.18));
  transform: translateX(calc((1 - var(--scroll-progress, .25)) * 24px)) translateY(calc((1 - var(--scroll-progress, .25)) * 18px));
}

.lineup-block {
  position: relative;
  margin-top: 74px;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(300px, .32fr) 1fr;
  gap: 38px;
  align-items: center;
  border: 1px solid rgba(0,137,127,.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at calc(86% - var(--scroll-progress, .4) * 18%) 16%, rgba(255,192,82,.2), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(0,137,127,.15), transparent 32%),
  rgba(255,255,255,.62);
  backdrop-filter: blur(12px);
  overflow: hidden;
  scroll-margin-top: 110px;
}
.lineup-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,137,127,.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(7,10,16,.045) 0 1px, transparent 1px 96px);
  opacity: calc(.28 + var(--scroll-progress, .4) * .2);
}
.lineup-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}
.lineup-copy p:not(.eyebrow) {
  max-width: 360px;
  margin-top: 18px;
  font-size: 17px;
}
.lineup-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.lineup-grid article {
  --lineup-rgb: 0, 137, 127;
  position: relative;
  padding: 16px;
  border: 1px solid rgba(var(--lineup-rgb), .18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 18%, rgba(var(--lineup-rgb), .16), transparent 36%),
    rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transform: translateY(calc((1 - var(--scroll-progress, .45)) * 14px));
  transition: transform .16s linear;
}
.lineup-grid article.is-lead {
  padding: 16px;
}
.lineup-grid article:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
}
.lineup-card.tone-audio { --lineup-rgb: 179, 127, 30; }
.lineup-card.tone-water { --lineup-rgb: 33, 176, 194; }
.lineup-card.tone-sun { --lineup-rgb: 246, 173, 54; }
.lineup-card.tone-sound { --lineup-rgb: 90, 105, 214; }
.lineup-card.tone-oracle { --lineup-rgb: 110, 64, 190; }
.lineup-grid article::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: rgba(var(--lineup-rgb), .35);
}
.lineup-image {
  min-height: 132px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 28%, rgba(var(--lineup-rgb), .2), transparent 34%),
    var(--soft);
  overflow: hidden;
}
.lineup-grid article.is-lead .lineup-image {
  min-height: 132px;
}
.lineup-grid article:nth-child(3) .lineup-image {
  min-height: 132px;
}
.lineup-image img {
  max-height: 126px;
  object-fit: contain;
}
.lineup-grid article.is-lead .lineup-image img,
.lineup-grid article:nth-child(3) .lineup-image img {
  max-height: 126px;
}
.lineup-grid h3 {
  margin: 8px 0;
  font-size: 22px;
}
.lineup-grid article.is-lead h3,
.lineup-grid article:nth-child(3) h3 {
  font-size: 22px;
}
.lineup-grid p { font-size: 14px; }
.lineup-grid .service-links { margin-top: 14px; }
.service-links.is-icon-only {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: none;
}
.platform-icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(var(--lineup-rgb, 0, 137, 127), .24);
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  color: #111;
}
.platform-icon-button svg {
  width: 21px;
  height: 21px;
  display: block;
}
.platform-icon-button.is-apple svg {
  width: 18px;
  height: 23px;
}

.creative-section {
  --artist-glow: var(--scroll-progress, .5);
  padding: 88px 42px;
  background:
    radial-gradient(circle at calc(18% + var(--artist-glow) * 20%) 10%, rgba(42,245,224,.18), transparent 34%),
    radial-gradient(circle at calc(84% - var(--artist-glow) * 18%) 62%, rgba(255,82,130,.14), transparent 36%),
    var(--dark);
  color: #fff;
}
.creative-section .section-head {
  max-width: var(--max);
  margin: 0 auto 34px;
  border-color: rgba(255,255,255,.16);
}
.on-dark p,
.creative-card p { color: rgba(255,255,255,.7); }
.creative-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 18px;
}
.creative-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #11141b;
  overflow: hidden;
}
.creative-visual {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.creative-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.04 - var(--scroll-progress, .5) * .035));
  transition: transform .16s linear;
}
.creative-visual.is-stickers {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 48% 44%, rgba(42,245,224,.21), transparent 32%),
    radial-gradient(circle at 82% 62%, rgba(255,82,130,.23), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 48%),
    #0d1119;
}
.creative-visual.is-stickers::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 8%;
  right: 8%;
  bottom: 4%;
  height: 15%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,.14), transparent 68%);
  filter: blur(8px);
}
.sticker-ensemble {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: hidden;
}
.creative-visual.is-stickers .sticker-character {
  position: absolute;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 16px rgba(0,0,0,.42));
  transition: transform .16s linear;
}
.creative-visual.is-stickers .sticker-character.is-maddy {
  z-index: 5;
  left: -3%;
  bottom: -4%;
  width: 34%;
  transform: rotate(-5deg) translateY(calc((1 - var(--scroll-progress, .5)) * 12px));
}
.creative-visual.is-stickers .sticker-character.is-yare {
  z-index: 3;
  left: 16%;
  bottom: 0;
  width: 29%;
  transform: rotate(-2deg) translateY(calc((1 - var(--scroll-progress, .5)) * 7px));
}
.creative-visual.is-stickers .sticker-character.is-tabimu {
  z-index: 6;
  left: 35%;
  bottom: -5%;
  width: 31%;
  transform: translateY(calc((1 - var(--scroll-progress, .5)) * 15px));
}
.creative-visual.is-stickers .sticker-character.is-bbeddagi {
  z-index: 4;
  right: 16%;
  bottom: 2%;
  width: 26%;
  transform: rotate(2deg) translateY(calc((1 - var(--scroll-progress, .5)) * 9px));
}
.creative-visual.is-stickers .sticker-character.is-sundeck {
  z-index: 5;
  right: -4%;
  bottom: -2%;
  width: 33%;
  transform: rotate(5deg) translateY(calc((1 - var(--scroll-progress, .5)) * 12px));
}
.sticker-stage-title {
  position: absolute;
  z-index: 1;
  top: 8%;
  right: 5%;
  color: rgba(255,255,255,.16);
  font-size: clamp(26px, 3vw, 46px);
  line-height: .88;
  letter-spacing: -.05em;
  text-align: right;
}
.creative-card div { padding: 24px; }
.creative-card .creative-visual { padding: 0; }
.creative-card .creative-visual.is-stickers { padding: 0; }
.creative-card h3 { margin: 10px 0 12px; font-size: 34px; }
.archive-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  background: #06c755;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.archive-link::after { content: "↗"; margin-left: 8px; }
.archive-link.is-artist { background: #006b63; }
.archive-link.is-project { background: #6547d9; }

.contact-hero {
  display: grid;
  place-items: center;
  min-height: 75vh;
  padding: 80px 42px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(0,137,127,.24), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(255,255,255,.08), transparent 26%),
    var(--dark);
  color: #fff;
}
.contact-hero > .brand-lockup {
  --brand-type-size: clamp(34px, 4vw, 58px);
  gap: 18px;
  max-width: 88vw;
  margin-bottom: 36px;
}
.contact-hero h2 { max-width: 900px; }
.contact-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.72);
  margin-top: 18px;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 42px;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.site-footer .brand-lockup {
  --brand-type-size: 21px;
}
.site-footer p { margin: 0; color: rgba(255,255,255,.66); }

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}
.motion-ready [data-reveal]:not(.is-visible) {
  opacity: .001;
  transform: translateY(18px);
}
.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hub-hero,
  .feature-service,
  .feature-service:nth-child(even),
  .lineup-block {
    grid-template-columns: 1fr;
  }
  .feature-service:nth-child(even) .feature-copy,
  .feature-service:nth-child(even) .device-scene {
    order: initial;
  }
  .lineup-grid { grid-template-columns: repeat(3, 1fr); }
}
