:root {
  --current-gradient: linear-gradient(180deg, #ffeeee, #fcdfdf, #f9cecf, #f8cacb, #f9d2d4, #fad9dc);
  --ink: #0b0b0b;
  --muted: #6b6861;
  --paper: #f7f6f3;
  --paper-deep: #ece9e1;
  --line: rgba(11, 11, 11, 0.16);
  --sakura: linear-gradient(180deg, #ffeeee, #f8cacb, #fad9dc);
  --ocean: linear-gradient(180deg, #2d8abf, #1864a5, #0d3d6a);
  --kyoto: linear-gradient(180deg, #e4a63c, #cc6b3c, #a2221f);
  --zen: linear-gradient(180deg, #b1aaa0, #d5d0c8);
  --plum: linear-gradient(180deg, #c77dff, #591899, #240046);
  --matcha: linear-gradient(180deg, #e4f1e4, #adbf9e, #6f912b);
  --sunrise: linear-gradient(180deg, #fe9d1d, #ec523c, #c0052f);
  --wood: linear-gradient(180deg, #c17f39, #6e3f20);
  --fog: linear-gradient(180deg, #f4f8fe, #c2d0da, #a7bbc7);
  --pearl: linear-gradient(180deg, #dfc3af, #fbf8e9);
  --camellia: linear-gradient(180deg, #ea78a5, #d61363);
  --inkwash: linear-gradient(180deg, #b9bdbe, #121a22);
  --aizome: linear-gradient(180deg, #6d87cc, #0c2345);
  --gold: linear-gradient(180deg, #ffd61c, #ffaf08);
  --yuzu: linear-gradient(180deg, #ffc64c, #ff6d2a);
  --silver: linear-gradient(180deg, #f2f2f2, #868683);
  --rice: linear-gradient(180deg, #f6edd8, #dcc3a4);
  --seal: linear-gradient(180deg, #d72a2a, #eb4a4a, #fe6a6a);
  --twilight: linear-gradient(180deg, #90cfbb, #116c7b, #00121a);
  --hero-progress: 0;
  --hero-copy-color: #0b0b0b;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  text-rendering: geometricPrecision;
}

body::selection {
  color: #f7f6f3;
  background: #0b0b0b;
}

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

img,
canvas {
  display: block;
}

em {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: 400;
}

.site-nav {
  position: fixed;
  z-index: 20;
  top: 20px;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(470px, calc(100% - 32px));
  height: 52px;
  padding: 0 18px;
  color: #111;
  background: rgba(247, 246, 243, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -14px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.nav-visible .site-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav a:not(.site-mark) {
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a:last-child {
  justify-self: end;
}

.site-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 26px;
}

.site-mark img {
  width: 100%;
  height: auto;
}

.hero-transition {
  position: relative;
  z-index: 1;
  height: 145svh;
  background: var(--paper);
}

.hero-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  padding: calc(22px * var(--hero-progress));
  background: var(--paper);
}

.hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  isolation: isolate;
  overflow: hidden;
  background: var(--current-gradient);
  border: 0;
  border-radius: calc(18px * var(--hero-progress));
  box-shadow: none;
  transform: scale(calc(1 - (0.035 * var(--hero-progress))));
  transform-origin: center center;
}

#stage {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-note {
  position: absolute;
  z-index: 2;
  bottom: clamp(22px, 4.8vh, 42px);
  left: 50%;
  display: flex;
  width: auto;
  align-items: center;
  color: var(--hero-copy-color);
  color: color-mix(in srgb, var(--hero-copy-color), transparent 34%);
  line-height: 1.1;
  transform: translateX(-50%);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.hero-cta svg {
  width: 11px;
  height: 11px;
}

.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;
}

main {
  position: relative;
  z-index: 2;
  background: var(--paper);
}

section[id] {
  scroll-margin-top: 96px;
}

.section-pad {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 92px 20px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.2;
  text-transform: uppercase;
}

.statement {
  display: grid;
  min-height: 78svh;
  align-content: end;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  padding-top: clamp(128px, 13vw, 220px);
  padding-bottom: clamp(74px, 8vw, 132px);
  border-bottom: 1px solid var(--line);
}

.statement .eyebrow {
  margin-top: 0.6em;
}

.statement h1,
.section-heading h2,
.approach-lead h2 {
  max-width: 1220px;
  margin: 0;
  font-size: clamp(76px, 8.4vw, 148px);
  font-weight: 780;
  line-height: 0.86;
  letter-spacing: 0;
  word-spacing: 0;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-wrap: balance;
}

.statement h1,
.statement-grid,
.approach-lead h2 {
  grid-column: 2;
}

.statement h1 em,
.section-heading h2 em,
.approach-lead h2 em {
  word-spacing: 0;
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.54fr) minmax(220px, 0.46fr);
  gap: 34px;
  width: min(980px, 100%);
  margin: 58px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 11, 11, 0.24);
}

.statement-grid p,
.case-copy p,
.process-list p,
.approach-grid p {
  margin: 0;
  color: #383832;
  font-size: 20px;
  line-height: 1.32;
}

.approach {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  padding-top: clamp(64px, 8vw, 118px);
  padding-bottom: clamp(58px, 7vw, 104px);
  border-bottom: 1px solid var(--line);
}

.approach-lead {
  display: contents;
}

.approach .eyebrow {
  margin-top: 0.7em;
}

.approach-lead h2 {
  max-width: 960px;
  font-size: clamp(58px, 6.1vw, 108px);
  line-height: 0.88;
  word-spacing: 0;
}

.approach-grid {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 50px;
  background: var(--line);
}

.approach-grid article {
  display: grid;
  min-height: 276px;
  align-content: space-between;
  padding: 20px;
  color: var(--ink);
  background: #efeee9;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.approach-grid article:hover {
  transform: translateY(-2px);
}

.approach-grid article:nth-child(1):hover {
  background: var(--fog);
}

.approach-grid article:nth-child(2):hover {
  color: #f7f6f3;
  background: var(--sunrise);
}

.approach-grid article:nth-child(3):hover {
  color: #f7f6f3;
  background: var(--ocean);
}

.approach-grid span,
.process-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.approach-grid strong {
  align-self: end;
  margin-top: 72px;
  font-size: clamp(26px, 2.45vw, 40px);
  font-weight: 780;
  line-height: 0.96;
  word-spacing: 0;
}

.approach-grid p {
  margin-top: 18px;
  font-size: 16px;
}

.approach-grid article:hover span,
.approach-grid article:hover p {
  color: currentColor;
  opacity: 0.76;
}

.jump {
  display: grid;
  grid-template-columns: minmax(130px, 0.24fr) repeat(5, minmax(0, 1fr));
  gap: 1px;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.jump-label {
  display: flex;
  min-height: 150px;
  align-items: flex-start;
  margin: 0;
  padding: 18px 18px 0;
  color: var(--muted);
  background: var(--paper);
  font-size: 13px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.jump-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 0;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.jump-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.jump-card strong {
  max-width: 260px;
  font-size: 23px;
  font-weight: 780;
  line-height: 1.02;
  word-spacing: 0;
}

.jump-card:hover {
  color: #f7f6f3;
  background: var(--plum);
  transform: translateY(-3px);
}

.jump-card:hover span {
  color: currentColor;
  opacity: 0.7;
}

.jump-card:nth-of-type(1):hover {
  color: #0b0b0b;
  background: var(--sakura);
}

.jump-card:nth-of-type(2):hover {
  background: var(--ocean);
}

.jump-card:nth-of-type(3):hover {
  color: #221c18;
  background: var(--matcha);
}

.jump-card:nth-of-type(4):hover {
  background: var(--twilight);
}

.jump-card:nth-of-type(5):hover {
  background: var(--seal);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  margin-top: 0.8em;
}

.section-heading h2 {
  max-width: 980px;
  font-size: clamp(54px, 5.6vw, 104px);
  line-height: 0.9;
  word-spacing: 0;
}

.work {
  padding-top: clamp(56px, 6vw, 92px);
}

.works-page-main {
  min-height: 100svh;
  background: var(--paper);
}

.works-archive {
  padding-top: 142px;
}

.works-header {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 44px;
}

.works-header h1 {
  max-width: 900px;
  margin: 0;
  font-size: 76px;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
  word-spacing: 0;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

.case-study {
  margin-bottom: clamp(96px, 13vw, 184px);
}

.work-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 42px;
}

.work-filter button {
  min-height: 34px;
  padding: 0 12px;
  color: #383832;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.work-filter button:hover,
.work-filter button[aria-pressed="true"] {
  color: #f7f6f3;
  background: #0b0b0b;
  border-color: #0b0b0b;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px 20px;
}

.case-card[hidden] {
  display: none;
}

.case-frame {
  position: relative;
  display: block;
  height: 92svh;
  min-height: 660px;
  overflow: hidden;
  background: #090909;
  border-radius: 6px;
}

.case-frame::after {
  display: none;
}

.case-art {
  position: absolute;
  inset: -9% 0;
  min-height: 118%;
  overflow: hidden;
  will-change: transform;
}

.case-image {
  position: absolute;
  inset: -55% 0;
  width: 100%;
  height: 210%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.case-image-clear {
  object-position: center 46%;
}

.case-image-juicy-quest {
  object-fit: contain;
  background:
    radial-gradient(circle at 62% 48%, rgba(4, 193, 199, 0.76), transparent 48%),
    linear-gradient(180deg, #087f8d 0%, #06aab4 48%, #07b6bc 100%);
}

/* Keep the homepage project artwork readable at a glance. The homepage uses
   tall editorial frames, so the image layer only needs a light parallax crop. */
.work .case-frame {
  height: 78svh;
  min-height: 560px;
}

.work .case-image {
  inset: -18% 0;
  height: 136%;
}

.work .case-image-juicy-quest {
  inset: 0;
  height: 100%;
}

.work .case-image-dallas {
  inset: 0;
  height: 100%;
  object-position: center;
}

/* Juicy Quest is a wide key visual; give it a wide stage so the full scene
   stays visible instead of forcing it into the tall portrait crop. */
.work .case-study:has(.case-image-juicy-quest) .case-frame {
  height: auto;
  min-height: 0;
  aspect-ratio: 1672 / 941;
}

.work .case-study:has(.case-image-dallas) .case-frame {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.case-copy {
  display: grid;
  grid-template-columns: minmax(42px, 0.12fr) minmax(280px, 0.5fr) minmax(260px, 0.38fr);
  gap: 28px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(11, 11, 11, 0.18);
}

.case-copy > p:not(.case-index) {
  grid-column: 3;
}

.case-index {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.case-copy h3 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 74px);
  font-weight: 780;
  line-height: 0.91;
  letter-spacing: 0;
  word-spacing: 0;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-wrap: balance;
}

.case-tags {
  grid-column: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  align-content: start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-tags li {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
  text-transform: uppercase;
}

.case-tags li:not(:last-child)::after {
  margin-left: 10px;
  content: "/";
  color: rgba(11, 11, 11, 0.3);
}

.works-archive .case-frame {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
}

.works-archive .case-image,
.project-related .case-image {
  inset: 0;
  height: 100%;
}

.works-archive .case-copy {
  grid-template-columns: 34px 1fr;
  gap: 6px 12px;
  padding: 16px 0 0;
  border-top: 0;
}

.works-archive .case-copy > p:not(.case-index) {
  grid-column: 2;
}

.works-archive .case-index {
  grid-row: 1 / span 3;
  margin: 5px 0 0;
  font-size: 12px;
}

.works-archive .case-copy h3 {
  font-size: 26px;
}

.works-archive .case-tags {
  grid-column: 2;
  gap: 0 8px;
  margin: 3px 0 0;
}

.works-archive .case-tags li {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.works-archive .case-tags li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: rgba(11, 11, 11, 0.28);
}

.project-page-main {
  min-height: 100svh;
  background: var(--paper);
}

.project-detail {
  padding-top: clamp(140px, 13vw, 210px);
  padding-bottom: clamp(70px, 7vw, 112px);
}

.project-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 54px;
}

.project-heading .eyebrow {
  margin-top: 0.8em;
}

.project-heading h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(66px, 7.3vw, 132px);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: 0;
  word-spacing: 0;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-wrap: balance;
}

.project-cover {
  height: min(84svh, 920px);
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: #090909;
  border-radius: 6px;
}

.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-story {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.46fr) minmax(260px, 0.3fr);
  gap: 24px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 11, 11, 0.18);
}

.project-story > p {
  grid-column: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.3vw, 54px);
  font-weight: 760;
  line-height: 0.98;
  text-wrap: balance;
}

.project-story dl {
  display: grid;
  grid-column: 3;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.project-story dl div {
  display: grid;
  gap: 18px;
  min-height: 122px;
  padding: 16px;
  background: #efeee9;
}

.project-story dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  line-height: 1;
  text-transform: uppercase;
}

.project-story dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0 9px;
  align-content: start;
  margin: 0;
  color: #383832;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.35;
}

.project-story dd span:not(:last-child)::after {
  margin-left: 9px;
  content: "/";
  color: rgba(11, 11, 11, 0.28);
}

.project-related {
  padding-top: clamp(72px, 8vw, 126px);
  border-top: 1px solid var(--line);
}

.project-related .case-frame {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
}

.project-related .case-copy {
  grid-template-columns: 34px 1fr;
  gap: 6px 12px;
  padding: 16px 0 0;
  border-top: 0;
}

.project-related .case-copy > p:not(.case-index),
.project-related .case-tags {
  grid-column: 2;
}

.project-related .case-index {
  grid-row: 1 / span 3;
  margin: 5px 0 0;
  font-size: 12px;
}

.project-related .case-copy h3 {
  font-size: 30px;
  line-height: 0.96;
}

.art-clarity {
  display: grid;
  place-items: center;
  color: #f4f4f1;
  background:
    radial-gradient(circle at 16% 22%, rgba(244, 244, 241, 0.26), transparent 18%),
    radial-gradient(circle at 72% 70%, rgba(54, 225, 205, 0.34), transparent 24%),
    linear-gradient(135deg, #131313 0%, #292929 42%, #d83f31 100%);
}

.signal-grid {
  position: absolute;
  inset: 12%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.signal-grid span {
  display: grid;
  place-items: center;
  color: rgba(244, 244, 241, 0.76);
  border: 1px solid rgba(244, 244, 241, 0.22);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 720;
  text-transform: uppercase;
}

.art-panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(520px, calc(100% - 48px));
  min-height: 260px;
  place-content: center;
  padding: 42px;
  color: #0b0b0b;
  background: #f4f4f1;
  border-radius: 8px;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.35);
}

.art-panel span,
.ai-card span {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  text-transform: uppercase;
}

.art-panel strong {
  margin-top: 16px;
  font-size: 58px;
  line-height: 0.92;
}

.art-panel em {
  margin-top: 18px;
  color: #454540;
  font-size: 18px;
  font-style: normal;
  line-height: 1.25;
}

.art-launch {
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(135deg, #1855ff 0%, #ff533c 52%, #f6cf4a 100%);
  background-size:
    64px 64px,
    64px 64px,
    auto;
}

.launch-stack {
  position: absolute;
  inset: 10% auto auto 12%;
  display: grid;
  gap: 16px;
}

.launch-stack span {
  display: block;
  width: 230px;
  height: 72px;
  background: rgba(11, 11, 11, 0.88);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.launch-stack span:nth-child(2) {
  margin-left: 72px;
  background: #f4f4f1;
}

.launch-stack span:nth-child(3) {
  margin-left: 28px;
  background: #111;
}

.device-shell {
  position: relative;
  display: grid;
  width: min(440px, calc(100% - 60px));
  aspect-ratio: 0.58;
  place-items: center;
  padding: 22px;
  background: #121212;
  border: 8px solid #242424;
  border-radius: 34px;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.38);
  transform: rotate(-6deg);
}

.device-shell div {
  display: grid;
  width: 100%;
  height: 100%;
  place-content: end start;
  padding: 28px;
  color: #f4f4f1;
  background:
    radial-gradient(circle at 68% 28%, #36e1cd 0 12%, transparent 13%),
    linear-gradient(160deg, #ff533c 0 46%, #0b0b0b 46% 100%);
  border-radius: 24px;
}

.device-shell strong {
  font-size: 42px;
  line-height: 0.95;
}

.device-shell span {
  max-width: 230px;
  margin-top: 12px;
  color: rgba(244, 244, 241, 0.72);
  font-size: 15px;
  font-weight: 720;
}

.art-ai {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(54, 225, 205, 0.34), transparent 26%),
    linear-gradient(135deg, #050505 0%, #1d2b2b 52%, #baf05c 100%);
}

.ai-map {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(244, 244, 241, 0.18);
  border-radius: 8px;
}

.ai-map span {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background: #f4f4f1;
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(244, 244, 241, 0.08);
}

.ai-map span:nth-child(1) {
  top: 18%;
  left: 24%;
}

.ai-map span:nth-child(2) {
  top: 36%;
  right: 18%;
  background: #36e1cd;
}

.ai-map span:nth-child(3) {
  right: 30%;
  bottom: 20%;
}

.ai-map span:nth-child(4) {
  bottom: 34%;
  left: 18%;
  background: #baf05c;
}

.ai-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(620px, calc(100% - 56px));
  min-height: 300px;
  place-content: end start;
  padding: 34px;
  color: #f4f4f1;
  background: rgba(11, 11, 11, 0.72);
  border: 1px solid rgba(244, 244, 241, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(20px);
}

.ai-card span {
  color: rgba(244, 244, 241, 0.62);
}

.ai-card strong {
  max-width: 500px;
  margin-top: 18px;
  font-size: 62px;
  line-height: 0.95;
}

.process {
  padding-top: clamp(82px, 9vw, 138px);
  border-top: 1px solid var(--line);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.process-list li {
  position: relative;
  display: grid;
  min-height: clamp(270px, 25vw, 380px);
  align-content: space-between;
  overflow: hidden;
  padding: 20px;
  color: var(--ink);
  background: #efeee9;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.process-list li::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  background: var(--cell-gradient, var(--sakura));
  opacity: 0;
  transform: scaleX(0.22);
  transform-origin: left center;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.process-list li:hover {
  color: var(--cell-ink, #0b0b0b);
  background: var(--cell-gradient, var(--sakura));
  transform: translateY(-2px);
}

.process-list li:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.process-list li:nth-child(1) {
  --cell-gradient: var(--sakura);
}

.process-list li:nth-child(2) {
  --cell-gradient: var(--ocean);
  --cell-ink: #f7f6f3;
}

.process-list li:nth-child(3) {
  --cell-gradient: var(--matcha);
}

.process-list li:nth-child(4) {
  --cell-gradient: var(--sunrise);
  --cell-ink: #f7f6f3;
}

.process-list li:nth-child(5) {
  --cell-gradient: var(--inkwash);
  --cell-ink: #f7f6f3;
}

.process-list strong {
  display: block;
  margin-top: clamp(72px, 8vw, 134px);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 780;
  line-height: 0.92;
  word-spacing: 0;
}

.process-list p {
  margin-top: 18px;
  font-size: 16px;
}

.process-list li:hover span,
.process-list li:hover p {
  color: currentColor;
  opacity: 0.76;
}

.capabilities {
  padding-top: clamp(80px, 9vw, 128px);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.capability-grid span {
  display: flex;
  min-height: clamp(118px, 12vw, 188px);
  align-items: flex-end;
  padding: 18px;
  color: var(--ink);
  background: #efeee9;
  font-size: clamp(23px, 2.45vw, 38px);
  font-weight: 780;
  line-height: 0.96;
  word-spacing: 0;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.capability-grid span:hover {
  color: var(--capability-ink, #0b0b0b);
  background: var(--capability-gradient, var(--fog));
  transform: translateY(-2px);
}

.capability-grid span:nth-child(1) {
  --capability-gradient: var(--fog);
}

.capability-grid span:nth-child(2) {
  --capability-gradient: var(--sakura);
}

.capability-grid span:nth-child(3) {
  --capability-gradient: var(--seal);
  --capability-ink: #f7f6f3;
}

.capability-grid span:nth-child(4) {
  --capability-gradient: var(--ocean);
  --capability-ink: #f7f6f3;
}

.capability-grid span:nth-child(5) {
  --capability-gradient: var(--rice);
}

.capability-grid span:nth-child(6) {
  --capability-gradient: var(--plum);
  --capability-ink: #f7f6f3;
}

.capability-grid span:nth-child(7) {
  --capability-gradient: var(--sunrise);
  --capability-ink: #f7f6f3;
}

.capability-grid span:nth-child(8) {
  --capability-gradient: var(--matcha);
}

.capability-grid span:nth-child(9) {
  --capability-gradient: var(--kyoto);
  --capability-ink: #f7f6f3;
}

.capability-grid span:nth-child(10) {
  --capability-gradient: var(--twilight);
  --capability-ink: #f7f6f3;
}

.business-partners {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding-top: clamp(86px, 10vw, 150px);
  padding-bottom: clamp(86px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.business-partners .section-heading {
  width: min(100%, 1480px);
  margin-right: auto;
  margin-left: auto;
}

.business-partners::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 7px;
  content: "";
  background: linear-gradient(
    90deg,
    #f8cacb,
    #2d8abf,
    #c77dff,
    #e53845,
    #6f912b,
    #a7bbc7,
    #90cfbb
  );
  border-radius: 0 0 999px 999px;
}

.partner-carousel {
  display: grid;
  gap: 14px;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.logo-track-a {
  animation: logo-marquee 42s linear infinite;
}

.logo-track-b {
  animation: logo-marquee-reverse 38s linear infinite;
}

.logo-set {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.logo-card {
  display: grid;
  width: clamp(168px, 14vw, 238px);
  height: clamp(96px, 8.5vw, 132px);
  flex: 0 0 auto;
  place-items: center;
  padding: 24px 28px;
  background: #efeee9;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.logo-card img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  transition: filter 180ms ease;
}

.logo-card:hover {
  color: var(--logo-hover-ink, #0b0b0b);
  background: var(--logo-hover, var(--sakura));
  border-color: transparent;
  transform: translateY(-2px);
}

.logo-card:hover img {
  filter: var(--logo-hover-filter, grayscale(1) contrast(1.12));
}

.logo-track-a .logo-card:nth-child(1) {
  --logo-hover: var(--sakura);
}

.logo-track-a .logo-card:nth-child(2) {
  --logo-hover: var(--ocean);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-a .logo-card:nth-child(3) {
  --logo-hover: var(--camellia);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-a .logo-card:nth-child(4) {
  --logo-hover: var(--rice);
}

.logo-track-a .logo-card:nth-child(5) {
  --logo-hover: var(--inkwash);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-a .logo-card:nth-child(6) {
  --logo-hover: var(--twilight);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-a .logo-card:nth-child(7) {
  --logo-hover: var(--fog);
}

.logo-track-a .logo-card:nth-child(8) {
  --logo-hover: var(--matcha);
}

.logo-track-a .logo-card:nth-child(9) {
  --logo-hover: var(--yuzu);
}

.logo-track-a .logo-card:nth-child(10) {
  --logo-hover: var(--gold);
}

.logo-track-b .logo-card:nth-child(1) {
  --logo-hover: var(--plum);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-b .logo-card:nth-child(2) {
  --logo-hover: var(--pearl);
}

.logo-track-b .logo-card:nth-child(3) {
  --logo-hover: var(--kyoto);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-b .logo-card:nth-child(4) {
  --logo-hover: var(--aizome);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-b .logo-card:nth-child(5) {
  --logo-hover: var(--seal);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-b .logo-card:nth-child(6) {
  --logo-hover: var(--wood);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

.logo-track-b .logo-card:nth-child(7) {
  --logo-hover: var(--silver);
}

.logo-track-b .logo-card:nth-child(8) {
  --logo-hover: var(--zen);
}

.logo-track-b .logo-card:nth-child(9) {
  --logo-hover: var(--sunrise);
  --logo-hover-ink: #f7f6f3;
  --logo-hover-filter: brightness(0) invert(1) contrast(1.08);
}

@keyframes logo-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes logo-marquee-reverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.contact {
  width: 100%;
  max-width: none;
  padding: clamp(88px, 10vw, 158px) max(20px, calc((100vw - 1480px) / 2 + 20px));
  color: #f7f6f3;
  background: #0b0b0b;
  border-top: 0;
}

.contact .eyebrow {
  color: rgba(247, 246, 243, 0.58);
}

.contact-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  margin-bottom: 50px;
}

.contact-heading h2 {
  max-width: 960px;
  margin: 0;
  color: inherit;
  font-size: clamp(58px, 6.8vw, 124px);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: 0;
  word-spacing: 0;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  background: rgba(247, 246, 243, 0.04);
  border-top: 1px solid rgba(247, 246, 243, 0.2);
  border-left: 1px solid rgba(247, 246, 243, 0.2);
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 470px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(247, 246, 243, 0.08), rgba(247, 246, 243, 0));
  border-right: 1px solid rgba(247, 246, 243, 0.2);
  border-bottom: 1px solid rgba(247, 246, 243, 0.2);
  font-style: normal;
}

.contact-details span {
  margin-top: 20px;
  color: rgba(247, 246, 243, 0.56);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.contact-details span:first-child {
  margin-top: 0;
}

.contact-details a {
  width: fit-content;
  color: #f7f6f3;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 780;
  line-height: 1.03;
  word-break: break-word;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid rgba(247, 246, 243, 0.2);
}

.contact-form label {
  display: grid;
  align-content: start;
  min-height: 128px;
  padding: 18px;
  border-right: 1px solid rgba(247, 246, 243, 0.2);
  border-bottom: 1px solid rgba(247, 246, 243, 0.2);
}

.contact-form label:nth-child(2n) {
  border-right: 0;
}

.contact-form label span {
  color: rgba(247, 246, 243, 0.56);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 24px;
  padding: 0;
  color: #f7f6f3;
  caret-color: #f7f6f3;
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 22px;
  font-weight: 680;
  line-height: 1.15;
  resize: vertical;
}

.contact-form textarea {
  min-height: 156px;
}

.contact-message {
  grid-column: 1 / -1;
}

.contact-form button {
  display: inline-flex;
  min-width: 246px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  justify-self: start;
  margin: 18px;
  padding: 7px 18px 7px 7px;
  color: #0b0b0b;
  background: #f7f6f3;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 780;
  transition:
    gap 180ms ease,
    transform 180ms ease;
}

.contact-form button:hover {
  gap: 16px;
  transform: translateY(-2px);
}

.contact-button-emblem {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  background: #0b0b0b;
  border-radius: 50%;
}

.contact-button-emblem img {
  display: block;
  width: 56%;
  height: auto;
  filter: invert(1);
}

.contact-button-label {
  white-space: nowrap;
}

.contact-form button svg {
  width: 16px;
  height: 16px;
}

.form-status {
  align-self: center;
  margin: 0 18px 0 0;
  color: rgba(247, 246, 243, 0.6);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  color: #f7f6f3;
  background: #0b0b0b;
  border-top: 1px solid rgba(247, 246, 243, 0.16);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1120px) {
  .statement,
  .approach {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .statement h1,
  .statement-grid,
  .approach-lead h2,
  .approach-grid {
    grid-column: 1;
  }

  .statement h1,
  .section-heading h2,
  .approach-lead h2 {
    font-size: 58px;
    line-height: 0.94;
  }

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

  .jump-label {
    grid-column: 1 / -1;
    min-height: auto;
    padding-bottom: 18px;
  }

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

  .section-heading,
  .case-copy,
  .works-header,
  .project-heading,
  .project-story,
  .contact-heading {
    grid-template-columns: 1fr;
  }

  .case-copy > p:not(.case-index) {
    grid-column: auto;
  }

  .case-tags {
    grid-column: auto;
    justify-content: flex-start;
  }

  .project-story > p,
  .project-story dl {
    grid-column: 1;
  }

  .works-archive .case-copy {
    grid-template-columns: 34px 1fr;
  }

  .works-archive .case-copy > p:not(.case-index),
  .works-archive .case-tags {
    grid-column: 2;
  }

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

  .works-header h1,
  .project-heading h1,
  .contact-heading h2 {
    font-size: 58px;
    line-height: 0.94;
  }

  .project-cover {
    min-height: 540px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-details {
    min-height: 0;
  }

  .process-list,
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-nav {
    top: 8px;
    width: calc(100% - 16px);
    height: 44px;
    padding: 0 14px;
  }

  .site-mark {
    width: 86px;
  }

  .hero-transition {
    height: 132svh;
  }

  .hero-pin {
    padding: calc(12px * var(--hero-progress));
  }

  .hero {
    min-height: 480px;
    transform: scale(calc(1 - (0.025 * var(--hero-progress))));
  }

  .hero-note {
    bottom: 24px;
  }

  .section-pad {
    padding: 64px 14px;
  }

  .statement {
    padding-top: 84px;
    padding-bottom: 64px;
  }

  .statement h1,
  .section-heading h2,
  .approach-lead h2,
  .project-heading h1,
  .works-header h1 {
    font-size: 42px;
    line-height: 0.96;
    word-spacing: 0;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .statement-grid p,
  .case-copy p,
  .approach-grid p {
    font-size: 18px;
  }

  .approach {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .approach-grid article {
    min-height: 210px;
    padding: 16px;
  }

  .approach-grid strong {
    margin-top: 46px;
  }

  .jump {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .jump-card {
    min-height: 126px;
  }

  .work-filter {
    flex-wrap: nowrap;
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 0 14px 4px;
    overflow-x: auto;
  }

  .work-filter button {
    flex: 0 0 auto;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-frame {
    height: 76svh;
    min-height: 520px;
  }

  .work .case-frame {
    height: 68svh;
    min-height: 460px;
  }

  .project-detail {
    padding-top: 112px;
    padding-bottom: 64px;
  }

  .project-heading {
    margin-bottom: 34px;
  }

  .project-cover {
    height: 72svh;
    min-height: 460px;
  }

  .project-story {
    gap: 20px;
  }

  .project-story > p {
    font-size: 26px;
    line-height: 1.02;
  }

  .case-copy {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px 14px;
  }

  .case-copy > p:not(.case-index),
  .case-tags {
    grid-column: 2;
  }

  .works-archive .case-frame {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .case-copy h3 {
    font-size: 32px;
  }

  .works-archive .case-copy h3 {
    font-size: 30px;
  }

  .signal-grid {
    inset: 8%;
    grid-template-columns: 1fr;
  }

  .art-panel {
    min-height: 220px;
    padding: 26px;
  }

  .art-panel strong,
  .ai-card strong {
    font-size: 40px;
  }

  .launch-stack {
    left: 8%;
  }

  .launch-stack span {
    width: 170px;
    height: 56px;
  }

  .device-shell {
    width: min(320px, calc(100% - 44px));
  }

  .device-shell strong {
    font-size: 30px;
  }

  .process-list,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 190px;
  }

  .process-list strong {
    margin-top: 42px;
  }

  .capability-grid span {
    min-height: 82px;
  }

  .business-partners::before {
    right: 14px;
    left: 14px;
  }

  .logo-card {
    width: 158px;
    height: 92px;
    padding: 18px 20px;
  }

  .logo-card img {
    max-height: 42px;
  }

  .contact-heading h2 {
    font-size: 42px;
    line-height: 0.96;
  }

  .contact-details {
    padding: 16px;
  }

  .contact-details a {
    font-size: 20px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .contact-form label:nth-child(2n) {
    min-height: 104px;
    border-right: 0;
  }

  .contact-form input,
  .contact-form textarea {
    margin-top: 16px;
    font-size: 18px;
  }

  .contact-form button {
    margin: 14px;
  }

  .form-status {
    margin: 0 14px 14px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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

  .hero,
  .jump-card {
    transition: none;
  }

  .case-art,
  .case-image {
    transform: none !important;
  }

  .logo-track {
    animation: none;
  }
}

/* Sunnyness Juicy Quest project showcase */
body[data-project-id="sunnyness-juicy-quest"] {
  --jq-cyan: #18c7d8;
  --jq-deep-cyan: #047f9a;
  --jq-teal: #003f4e;
  --jq-orange: #ff6b13;
  --jq-red: #ff3b2f;
  --jq-yellow: #ffc91b;
  --jq-cream: #fff4d8;
  --jq-wood: #8c4f1d;
  background: var(--paper);
}

body[data-project-id="sunnyness-juicy-quest"] .project-heading h1 {
  max-width: 1240px;
}

body[data-project-id="sunnyness-juicy-quest"] .project-story > p {
  max-width: 850px;
}

.jq-project-cover {
  --jq-cover-progress: 0.45;
  position: relative;
  height: min(83svh, 930px);
  isolation: isolate;
  overflow: hidden;
  background: #077fa1;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 54, 65, 0.18);
}

.jq-project-cover::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 36, 48, 0.7) 0%, rgba(0, 36, 48, 0.2) 38%, transparent 63%),
    linear-gradient(0deg, rgba(0, 36, 48, 0.32), transparent 46%);
  content: "";
  pointer-events: none;
}

.jq-project-cover > img {
  transform: scale(1.08) translate3d(0, calc((var(--jq-cover-progress) - 0.5) * 6%), 0);
  transition: transform 80ms linear;
}

.jq-cover-lockup {
  position: absolute;
  z-index: 2;
  bottom: clamp(26px, 4vw, 58px);
  left: clamp(24px, 4vw, 64px);
  display: flex;
  max-width: min(420px, 44vw);
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  color: #fff;
}

.jq-cover-lockup img {
  width: clamp(210px, 24vw, 370px);
  height: auto;
  filter: drop-shadow(0 16px 18px rgba(0, 37, 48, 0.22));
}

.jq-cover-lockup span {
  padding: 9px 14px;
  background: var(--jq-orange);
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(92, 36, 0, 0.24);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.jq-showcase {
  --jq-page-progress: 0;
  width: 100vw;
  margin-top: clamp(82px, 9vw, 140px);
  margin-left: calc(50% - 50vw);
  overflow: clip;
  color: #062d36;
}

.jq-section-inner {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding-right: clamp(18px, 4.5vw, 72px);
  padding-left: clamp(18px, 4.5vw, 72px);
}

.jq-kicker {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jq-showcase h2,
.jq-showcase h3,
.jq-showcase p {
  margin-top: 0;
}

.jq-showcase h2 {
  margin-bottom: 0;
  font-size: clamp(54px, 7.2vw, 128px);
  font-weight: 830;
  line-height: 0.84;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

[data-jq-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 800ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

.jq-portal {
  position: relative;
  min-height: 142svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.36), transparent 22%),
    linear-gradient(155deg, #28d6df 0%, var(--jq-cyan) 45%, #0ca2bd 100%);
}

.jq-portal::before,
.jq-portal::after {
  position: absolute;
  width: clamp(320px, 44vw, 740px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.jq-portal::before {
  top: 9%;
  right: -18%;
  box-shadow:
    0 0 0 64px rgba(255, 255, 255, 0.04),
    0 0 0 136px rgba(255, 255, 255, 0.035);
}

.jq-portal::after {
  bottom: -22%;
  left: -17%;
  box-shadow:
    0 0 0 54px rgba(255, 255, 255, 0.04),
    0 0 0 114px rgba(255, 255, 255, 0.03);
}

.jq-portal-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
  min-height: 142svh;
  padding-top: clamp(90px, 10vw, 160px);
  padding-bottom: clamp(90px, 10vw, 160px);
}

.jq-portal-copy {
  position: sticky;
  top: 128px;
  max-width: 700px;
  padding-bottom: 120px;
}

.jq-portal-copy > p:not(.jq-kicker) {
  max-width: 580px;
  margin: 34px 0 0;
  font-size: clamp(20px, 2vw, 31px);
  font-weight: 690;
  line-height: 1.12;
}

.jq-loop {
  display: flex;
  margin-top: 38px;
  gap: 9px;
  align-items: center;
  flex-wrap: wrap;
}

.jq-loop span {
  padding: 11px 15px;
  color: #fff;
  background: #064553;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.jq-loop i {
  color: rgba(3, 50, 60, 0.5);
  font-style: normal;
  font-weight: 900;
}

.jq-direct-stage {
  position: relative;
  display: grid;
  min-height: 1110px;
  place-items: start center;
  padding-top: 30px;
}

.jq-phone-frame {
  position: sticky;
  z-index: 2;
  top: 98px;
  width: min(370px, 74vw);
  padding: 12px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 48px;
  box-shadow: 0 44px 90px rgba(0, 63, 78, 0.32);
  transform: rotate(2.5deg);
}

.jq-phone-frame::before {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  width: 92px;
  height: 24px;
  background: #0a0a0a;
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.jq-phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 37px;
}

.jq-floating-coin,
.jq-floating-pack {
  position: absolute;
  z-index: 3;
  height: auto;
  filter: drop-shadow(0 22px 22px rgba(0, 58, 69, 0.22));
  pointer-events: none;
}

.jq-floating-coin {
  width: clamp(78px, 10vw, 136px);
  animation: jq-float 4.6s ease-in-out infinite;
}

.jq-floating-coin-a {
  top: 21%;
  left: 0;
  transform: rotate(-18deg);
}

.jq-floating-coin-b {
  top: 56%;
  right: -2%;
  animation-delay: -2.1s;
  transform: rotate(16deg) scale(0.76);
}

.jq-floating-pack {
  right: -7%;
  bottom: 1%;
  width: clamp(230px, 29vw, 420px);
  transform: rotate(-7deg);
}

@keyframes jq-float {
  0%,
  100% {
    translate: 0 -8px;
  }
  50% {
    translate: 0 14px;
  }
}

.jq-games {
  color: #f4fff9;
  background:
    radial-gradient(circle at 82% 7%, rgba(24, 199, 216, 0.2), transparent 23%),
    linear-gradient(180deg, #003d4d, #002d38);
}

.jq-games .jq-section-inner {
  padding-top: clamp(90px, 10vw, 160px);
  padding-bottom: clamp(100px, 11vw, 180px);
}

.jq-games-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.46fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(60px, 7vw, 110px);
}

.jq-games-heading > p {
  max-width: 470px;
  margin-bottom: 8px;
  color: rgba(244, 255, 249, 0.72);
  font-size: 18px;
  font-weight: 620;
  line-height: 1.35;
}

.jq-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.jq-game-card {
  overflow: hidden;
  color: #092d34;
  background: var(--jq-cream);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 11, 15, 0.25);
}

.jq-game-card:nth-child(2) {
  transition-delay: 100ms;
}

.jq-game-card:nth-child(3) {
  transition-delay: 200ms;
}

.jq-game-media {
  position: relative;
  aspect-ratio: 0.76;
  overflow: hidden;
  background: #0c9eb3;
}

.jq-game-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(transparent, rgba(0, 36, 48, 0.45));
  content: "";
  pointer-events: none;
}

.jq-game-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.jq-game-card:hover video {
  transform: scale(1.035);
}

.jq-game-number {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #073946;
  background: var(--jq-yellow);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 880;
}

.jq-game-copy {
  display: flex;
  min-height: 210px;
  padding: 24px;
  gap: 24px;
  flex-direction: column;
  justify-content: space-between;
}

.jq-game-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.jq-game-copy > div p {
  max-width: 390px;
  margin-bottom: 0;
  color: #416168;
  font-size: 14px;
  font-weight: 620;
  line-height: 1.4;
}

.jq-player-count {
  display: flex;
  margin-bottom: 0;
  gap: 10px;
  align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid rgba(6, 45, 54, 0.15);
}

.jq-player-count strong {
  color: var(--jq-orange);
  font-size: clamp(34px, 3.1vw, 52px);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.jq-player-count span {
  color: #49676d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jq-economy {
  position: relative;
  overflow: hidden;
  color: #4a2504;
  background:
    radial-gradient(circle at 110% -2%, rgba(255, 255, 255, 0.5), transparent 27%),
    linear-gradient(155deg, #ffd526 0%, #ffbf13 62%, #ff9418 100%);
}

.jq-economy .jq-section-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(100px, 11vw, 180px);
  padding-bottom: clamp(100px, 11vw, 180px);
}

.jq-economy-coin {
  position: absolute;
  top: -11vw;
  right: -8vw;
  width: clamp(280px, 42vw, 720px);
  height: auto;
  opacity: 0.28;
  filter: saturate(1.2);
  transform: rotate(calc(-16deg + (var(--jq-page-progress) * 100deg)));
}

.jq-economy-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.45fr);
  gap: 36px 72px;
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 120px);
}

.jq-economy-heading .jq-kicker,
.jq-economy-heading h2 {
  grid-column: 1;
}

.jq-economy-heading h2 {
  max-width: 1040px;
}

.jq-economy-heading > p:not(.jq-kicker) {
  grid-row: 1 / span 2;
  grid-column: 2;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 680;
  line-height: 1.35;
}

.jq-mechanics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(75, 35, 0, 0.24);
  border: 1px solid rgba(75, 35, 0, 0.17);
  gap: 1px;
}

.jq-mechanic {
  min-height: 290px;
  padding: clamp(22px, 2.6vw, 40px);
  background: rgba(255, 247, 204, 0.42);
  backdrop-filter: blur(8px);
}

.jq-mechanic-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.jq-mechanic-topline span {
  font-size: 12px;
  font-weight: 880;
}

.jq-mechanic-topline img {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 7px 6px rgba(118, 49, 0, 0.18));
  transform: rotate(11deg);
}

.jq-mechanic h3 {
  max-width: 290px;
  margin: 58px 0 14px;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.jq-mechanic p {
  max-width: 340px;
  margin-bottom: 0;
  color: rgba(74, 37, 4, 0.72);
  font-size: 14px;
  font-weight: 620;
  line-height: 1.42;
}

.jq-stories {
  padding-top: clamp(100px, 11vw, 180px);
  padding-bottom: clamp(100px, 11vw, 180px);
  color: #eafffa;
  background:
    radial-gradient(circle at 20% 10%, rgba(24, 199, 216, 0.26), transparent 25%),
    var(--jq-teal);
}

.jq-stories-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.4fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(52px, 6vw, 90px);
}

.jq-stories-heading > p {
  max-width: 440px;
  margin-bottom: 6px;
  color: rgba(234, 255, 250, 0.7);
  font-size: 18px;
  font-weight: 620;
  line-height: 1.38;
}

.jq-story-scroll {
  position: relative;
  min-height: 180svh;
}

.jq-story-pin {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  height: 100svh;
  align-items: center;
  overflow: hidden;
}

.jq-story-track {
  display: flex;
  width: max-content;
  gap: clamp(14px, 2vw, 28px);
  padding: 0 clamp(18px, 4.5vw, 72px);
  will-change: transform;
}

.jq-story-card {
  width: min(31vw, 420px);
  min-width: 290px;
  margin: 0;
  flex: 0 0 auto;
}

.jq-story-card:nth-child(2n) {
  transform: translate3d(0, 42px, 0);
}

.jq-story-card:nth-child(2n).is-visible {
  transform: translate3d(0, 24px, 0);
}

.jq-story-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  box-shadow: 0 24px 64px rgba(0, 18, 24, 0.3);
}

.jq-products {
  color: #073641;
  background:
    radial-gradient(circle at 96% 4%, rgba(24, 199, 216, 0.2), transparent 24%),
    #eef7ed;
}

.jq-products .jq-section-inner {
  padding-top: clamp(100px, 11vw, 180px);
  padding-bottom: clamp(100px, 11vw, 180px);
}

.jq-products-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.45fr);
  gap: 36px 72px;
  align-items: end;
  margin-bottom: clamp(62px, 8vw, 118px);
}

.jq-products-heading .jq-kicker,
.jq-products-heading h2 {
  grid-column: 1;
}

.jq-products-heading > p:not(.jq-kicker) {
  grid-row: 1 / span 2;
  grid-column: 2;
  margin-bottom: 5px;
  color: rgba(7, 54, 65, 0.68);
  font-size: 18px;
  font-weight: 640;
  line-height: 1.38;
}

.jq-product-lineup {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(0, 62, 76, 0.18);
  border: 1px solid rgba(0, 62, 76, 0.14);
  border-radius: 24px;
}

.jq-product-card {
  position: relative;
  display: grid;
  min-height: 390px;
  margin: 0;
  place-items: center;
  padding: 22px 10px 48px;
  overflow: hidden;
  background: #8ee7e3;
  grid-column: span 3;
}

.jq-product-card:nth-last-child(-n + 3) {
  grid-column: span 4;
}

.jq-product-card:nth-child(3n + 2) {
  background: #ffd54a;
}

.jq-product-card:nth-child(3n) {
  background: #ff8b45;
}

.jq-product-card img {
  width: min(245px, 100%);
  height: auto;
  filter: drop-shadow(0 20px 16px rgba(0, 47, 56, 0.2));
  transition: transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.jq-product-card:hover img {
  transform: translateY(-8px) rotate(2deg);
}

.jq-product-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  color: #073641;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.jq-kv-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 0.72fr);
  gap: 24px;
  align-items: start;
  margin-top: clamp(100px, 12vw, 190px);
  margin-bottom: clamp(46px, 6vw, 88px);
  padding-top: 28px;
  border-top: 1px solid rgba(7, 54, 65, 0.18);
}

.jq-kv-heading h3 {
  margin: 0;
  font-size: clamp(52px, 6.5vw, 104px);
  font-weight: 830;
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.jq-kv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 26px);
}

.jq-kv-card,
.jq-creator-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #073c47;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 37, 45, 0.18);
}

.jq-kv-card:nth-child(2),
.jq-creator-card:nth-child(2) {
  transition-delay: 80ms;
}

.jq-kv-card:nth-child(3),
.jq-creator-card:nth-child(3) {
  transition-delay: 160ms;
}

.jq-kv-card:nth-child(4),
.jq-creator-card:nth-child(4) {
  transition-delay: 240ms;
}

.jq-kv-card video,
.jq-creator-card video {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.jq-kv-card > span,
.jq-creator-card > span {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #053b46;
  background: var(--jq-yellow);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  pointer-events: none;
}

.jq-creators {
  color: #f4fff9;
  background:
    radial-gradient(circle at 12% 5%, rgba(24, 199, 216, 0.22), transparent 25%),
    #002f3b;
}

.jq-creators .jq-section-inner {
  padding-top: clamp(100px, 11vw, 180px);
  padding-bottom: clamp(100px, 11vw, 180px);
}

.jq-creators-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.5fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(58px, 8vw, 112px);
}

.jq-creator-reach {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(235, 255, 249, 0.18);
  border: 1px solid rgba(235, 255, 249, 0.15);
  border-radius: 18px;
}

.jq-creator-stat {
  display: flex;
  min-height: 150px;
  padding: 20px;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, 0.06);
}

.jq-creator-stat strong {
  color: var(--jq-yellow);
  font-size: clamp(50px, 5vw, 76px);
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.jq-creator-stat span {
  margin-top: 18px;
  color: rgba(244, 255, 249, 0.68);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.jq-creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 26px);
}

.jq-creator-card {
  box-shadow: 0 28px 70px rgba(0, 10, 15, 0.3);
}

.jq-results {
  position: relative;
  overflow: hidden;
  color: #451400;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 211, 33, 0.55), transparent 21%),
    linear-gradient(145deg, var(--jq-orange) 0%, var(--jq-red) 100%);
}

.jq-results::before {
  position: absolute;
  top: 17%;
  right: -15vw;
  width: 48vw;
  min-width: 420px;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 250, 220, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 250, 220, 0.05),
    0 0 0 150px rgba(255, 250, 220, 0.035);
  content: "";
}

.jq-results .jq-section-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(100px, 11vw, 180px);
  padding-bottom: clamp(100px, 11vw, 180px);
}

.jq-results-heading {
  max-width: 1120px;
  margin-bottom: clamp(64px, 8vw, 120px);
}

.jq-reach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 24px;
  overflow: hidden;
  background: rgba(67, 18, 0, 0.28);
  border-radius: 28px;
}

.jq-reach-result {
  display: flex;
  min-height: 240px;
  padding: clamp(24px, 3.2vw, 46px);
  flex-direction: column;
  justify-content: flex-end;
  color: #451600;
  background: rgba(255, 239, 198, 0.66);
  backdrop-filter: blur(8px);
}

.jq-reach-result strong {
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.jq-reach-result span {
  margin-top: 22px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.jq-results-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
}

.jq-headline-result {
  position: relative;
  display: flex;
  min-height: 520px;
  padding: clamp(28px, 4vw, 58px);
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  color: #3b1a00;
  background: var(--jq-yellow);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(104, 24, 0, 0.2);
}

.jq-headline-result img {
  position: absolute;
  top: -4%;
  right: -6%;
  width: min(65%, 360px);
  height: auto;
  filter: drop-shadow(0 18px 14px rgba(129, 46, 0, 0.22));
  transform: rotate(14deg);
}

.jq-headline-result strong {
  position: relative;
  font-size: clamp(94px, 12vw, 190px);
  font-weight: 900;
  line-height: 0.7;
  letter-spacing: -0.085em;
}

.jq-headline-result span {
  position: relative;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jq-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(67, 18, 0, 0.28);
  border-radius: 28px;
  gap: 1px;
}

.jq-result {
  display: flex;
  min-height: 260px;
  padding: clamp(24px, 3.2vw, 48px);
  flex-direction: column;
  justify-content: flex-end;
  color: #451600;
  background: rgba(255, 239, 198, 0.56);
  backdrop-filter: blur(8px);
}

.jq-result:last-child {
  grid-column: 1 / -1;
}

.jq-result strong {
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 880;
  line-height: 0.8;
  letter-spacing: -0.065em;
}

.jq-result span {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.jq-gallery {
  padding-top: clamp(100px, 11vw, 180px);
  padding-bottom: clamp(100px, 11vw, 180px);
  color: #042e37;
  background: #eef7ed;
}

.jq-gallery-heading {
  margin-bottom: clamp(56px, 7vw, 100px);
}

.jq-gallery-heading h2 {
  max-width: 1200px;
}

.jq-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 18px);
  padding: 0 clamp(8px, 1.2vw, 18px);
}

.jq-gallery-card {
  margin: 0;
  overflow: hidden;
  background: #11a9bf;
  border-radius: 20px;
}

.jq-gallery-card:nth-child(2) {
  transition-delay: 100ms;
}

.jq-gallery-card:nth-child(3) {
  transition-delay: 200ms;
}

.jq-gallery-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 0.8;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.jq-gallery-card:hover img {
  transform: scale(1.025);
}

@media (max-width: 1100px) {
  .jq-portal-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(350px, 1.12fr);
  }

  .jq-game-copy {
    padding: 19px;
  }

  .jq-game-copy > div p {
    font-size: 13px;
  }

  .jq-mechanic {
    min-height: 270px;
  }

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

  .jq-product-card,
  .jq-product-card:nth-last-child(-n + 3) {
    grid-column: auto;
  }

  .jq-product-card {
    min-height: 350px;
  }

  .jq-results-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 900px) {
  .case-study .case-image.parallax-layer {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center;
    transform: scale(1.5) !important;
    will-change: auto;
  }

  .case-study .case-image.parallax-layer.case-image-juicy-quest {
    object-fit: cover;
    object-position: 62% center;
    background: #079ca8;
    transform: none !important;
  }

  .jq-project-cover {
    min-height: 540px;
    border-radius: 20px;
  }

  .jq-project-cover > img {
    object-position: 58% center;
  }

  .jq-portal,
  .jq-portal-grid {
    min-height: 0;
  }

  .jq-portal-grid {
    grid-template-columns: 1fr;
  }

  .jq-portal-copy,
  .jq-phone-frame {
    position: relative;
    top: auto;
  }

  .jq-portal-copy {
    max-width: 760px;
    padding-bottom: 0;
  }

  .jq-direct-stage {
    min-height: 930px;
    padding-top: 20px;
  }

  .jq-phone-frame {
    width: min(420px, 68vw);
  }

  .jq-floating-pack {
    right: 4%;
  }

  .jq-games-heading,
  .jq-economy-heading,
  .jq-stories-heading,
  .jq-products-heading,
  .jq-creators-heading {
    grid-template-columns: 1fr;
  }

  .jq-games-heading > p,
  .jq-stories-heading > p {
    max-width: 620px;
  }

  .jq-game-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .jq-game-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  }

  .jq-game-media {
    min-height: 560px;
    aspect-ratio: auto;
  }

  .jq-game-copy {
    min-height: auto;
    padding: 28px;
  }

  .jq-economy-heading .jq-kicker,
  .jq-economy-heading h2,
  .jq-economy-heading > p:not(.jq-kicker) {
    grid-row: auto;
    grid-column: 1;
  }

  .jq-economy-heading > p:not(.jq-kicker) {
    max-width: 650px;
  }

  .jq-products-heading .jq-kicker,
  .jq-products-heading h2,
  .jq-products-heading > p:not(.jq-kicker) {
    grid-row: auto;
    grid-column: 1;
  }

  .jq-products-heading > p:not(.jq-kicker) {
    max-width: 650px;
  }

  .jq-kv-heading {
    grid-template-columns: 1fr;
  }

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

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

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

  .jq-results-layout {
    grid-template-columns: 1fr;
  }

  .jq-headline-result {
    min-height: 430px;
  }
}

@media (max-width: 620px) {
  .case-study .case-image.parallax-layer {
    transform: scale(2.05) !important;
  }

  .jq-project-cover {
    height: 70svh;
    min-height: 470px;
    border-radius: 16px;
  }

  .jq-project-cover::after {
    background:
      linear-gradient(0deg, rgba(0, 38, 49, 0.7), transparent 72%),
      linear-gradient(90deg, rgba(0, 38, 49, 0.22), transparent 70%);
  }

  .jq-project-cover > img {
    object-position: 63% center;
    transform: scale(1.13) translate3d(0, calc((var(--jq-cover-progress) - 0.5) * 4%), 0);
  }

  .jq-cover-lockup {
    bottom: 22px;
    left: 20px;
    max-width: calc(100% - 40px);
    gap: 8px;
  }

  .jq-cover-lockup img {
    width: 190px;
  }

  .jq-cover-lockup span {
    padding: 7px 10px;
    font-size: 9px;
  }

  .jq-showcase {
    margin-top: 72px;
  }

  .jq-showcase h2 {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.86;
  }

  .jq-portal-grid,
  .jq-games .jq-section-inner,
  .jq-economy .jq-section-inner,
  .jq-products .jq-section-inner,
  .jq-creators .jq-section-inner,
  .jq-results .jq-section-inner {
    padding-top: 86px;
    padding-bottom: 90px;
  }

  .jq-portal-copy > p:not(.jq-kicker) {
    margin-top: 26px;
    font-size: 19px;
  }

  .jq-loop {
    margin-top: 28px;
  }

  .jq-direct-stage {
    min-height: 660px;
    padding-top: 0;
  }

  .jq-phone-frame {
    width: min(300px, 76vw);
    padding: 9px;
    border-radius: 38px;
  }

  .jq-phone-frame img {
    border-radius: 30px;
  }

  .jq-phone-frame::before {
    top: 15px;
    width: 74px;
    height: 19px;
  }

  .jq-floating-coin-a {
    top: 17%;
    left: -2%;
  }

  .jq-floating-coin-b {
    top: 52%;
    right: 0;
  }

  .jq-floating-pack {
    right: -7%;
    bottom: -2%;
    width: 210px;
  }

  .jq-games-heading,
  .jq-economy-heading,
  .jq-stories-heading,
  .jq-products-heading,
  .jq-creators-heading {
    gap: 26px;
    margin-bottom: 52px;
  }

  .jq-games-heading > p,
  .jq-stories-heading > p,
  .jq-economy-heading > p:not(.jq-kicker) {
    font-size: 16px;
  }

  .jq-game-card {
    display: block;
    border-radius: 20px;
  }

  .jq-game-media {
    min-height: 0;
    aspect-ratio: 0.78;
  }

  .jq-game-copy {
    min-height: 230px;
    padding: 22px;
  }

  .jq-mechanics-grid {
    grid-template-columns: 1fr;
  }

  .jq-mechanic {
    min-height: 245px;
    padding: 24px;
  }

  .jq-mechanic h3 {
    margin-top: 42px;
  }

  .jq-stories {
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .jq-story-card {
    width: 78vw;
    min-width: 260px;
  }

  .jq-story-card:nth-child(2n).is-visible {
    transform: translate3d(0, 14px, 0);
  }

  .jq-product-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }

  .jq-product-card {
    min-height: 270px;
  }

  .jq-kv-heading {
    gap: 14px;
    margin-top: 86px;
    margin-bottom: 42px;
  }

  .jq-kv-heading h3 {
    font-size: 48px;
  }

  .jq-kv-grid,
  .jq-creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .jq-kv-card,
  .jq-creator-card {
    border-radius: 16px;
  }

  .jq-creator-reach {
    border-radius: 14px;
  }

  .jq-creator-stat {
    min-height: 130px;
    padding: 16px;
  }

  .jq-reach-grid {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .jq-reach-result {
    min-height: 180px;
    padding: 26px;
  }

  .jq-reach-result strong {
    font-size: 52px;
  }

  .jq-results-heading {
    margin-bottom: 52px;
  }

  .jq-headline-result {
    min-height: 370px;
    padding: 26px;
    border-radius: 22px;
  }

  .jq-headline-result strong {
    font-size: 90px;
  }

  .jq-results-grid {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .jq-result,
  .jq-result:last-child {
    min-height: 190px;
    grid-column: 1;
  }

  .jq-result strong {
    font-size: 58px;
  }

  .jq-gallery {
    padding-top: 86px;
    padding-bottom: 92px;
  }

  .jq-gallery-grid {
    display: flex;
    padding: 0 14px 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .jq-gallery-card {
    width: 84vw;
    margin: 0;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-jq-reveal] {
    opacity: 1;
    transform: none !important;
    transition: none;
  }

  .jq-floating-coin {
    animation: none;
  }

  .jq-project-cover > img,
  .jq-game-media video,
  .jq-gallery-card img {
    transform: none;
    transition: none;
  }

  .jq-story-scroll {
    height: auto !important;
    min-height: 0;
  }

  .jq-story-pin {
    position: relative;
    height: auto;
    overflow: visible;
  }

  .jq-story-track {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    transform: none !important;
  }

  .jq-story-card {
    width: auto;
    min-width: 0;
  }
}

@media (max-width: 620px) and (prefers-reduced-motion: reduce) {
  .jq-story-track {
    grid-template-columns: 1fr;
  }
}

/* Homepage refresh: concise positioning, direct actions, and a smaller story. */
.text-link,
.trend-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span,
.trend-link span {
  font-size: 17px;
  line-height: 0.8;
}

.intro-section,
.services-section,
.trend-section {
  border-bottom: 1px solid var(--line);
}

.intro-section {
  display: grid;
  min-height: 62svh;
  grid-template-columns: minmax(160px, 0.24fr) minmax(0, 0.76fr);
  gap: 24px;
  align-items: end;
  padding-top: clamp(112px, 14vw, 220px);
  padding-bottom: clamp(72px, 9vw, 136px);
}

.intro-section .eyebrow {
  align-self: start;
  margin-top: 0.8em;
}

.intro-section-copy {
  max-width: 1000px;
}

.intro-section-copy h2,
.services-section h2,
.trend-card h2 {
  margin: 0;
  font-size: clamp(52px, 6.2vw, 110px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.intro-section-copy p {
  max-width: 790px;
  margin: 44px 0 0;
  color: #383832;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.18;
}

.services-section {
  padding-top: clamp(80px, 10vw, 148px);
  padding-bottom: clamp(72px, 9vw, 132px);
}

.services-section .section-heading {
  margin-bottom: 0;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1140px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.service-pill {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 14px 20px;
  color: #0b0b0b;
  background: var(--sakura);
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(11, 11, 11, 0.08);
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.service-pill:hover {
  box-shadow: 0 18px 32px rgba(11, 11, 11, 0.14);
  transform: translateY(-4px) rotate(-1deg);
}

.service-pill-ocean,
.service-pill-kyoto,
.service-pill-plum,
.service-pill-twilight,
.service-pill-sunrise {
  color: #f7f6f3;
}

.service-pill-ocean {
  background: var(--ocean);
}

.service-pill-kyoto {
  background: var(--kyoto);
}

.service-pill-plum {
  background: var(--plum);
}

.service-pill-twilight {
  background: var(--twilight);
}

.service-pill-sunrise {
  background: var(--sunrise);
}

.work {
  padding-top: clamp(82px, 10vw, 148px);
  padding-bottom: clamp(84px, 10vw, 152px);
}

.work-heading {
  margin-bottom: 54px;
}

.work-heading > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.work-heading .text-link {
  margin-top: 28px;
}

.home-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-work-grid .case-study {
  min-width: 0;
  margin-bottom: 0;
}

.home-work-grid .case-frame {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
}

.home-work-grid .case-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-work-grid .case-image-juicy-quest {
  object-fit: contain;
}

.home-work-grid .case-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding-top: 18px;
  border-top: 0;
}

.home-work-grid .case-copy h3 {
  grid-column: 1;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 0.94;
}

.home-work-grid .case-copy > p:not(.case-index),
.home-work-grid .case-tags {
  grid-column: 1;
}

.home-work-grid .case-copy > p:not(.case-index) {
  max-width: 34ch;
  font-size: 16px;
}

.home-work-grid .case-tags {
  margin-top: 0;
}

.trend-section {
  padding-top: clamp(68px, 8vw, 112px);
  padding-bottom: clamp(68px, 8vw, 112px);
  background: var(--paper-deep);
}

.trend-card {
  padding: clamp(28px, 5vw, 72px);
  color: #f7f6f3;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 214, 28, 0.72), transparent 28%),
    linear-gradient(135deg, #0b1d39, #116c7b 58%, #18c7d8);
}

.trend-card .section-heading {
  margin-bottom: 54px;
}

.trend-card .eyebrow {
  color: rgba(247, 246, 243, 0.66);
}

.trend-card > p {
  max-width: 920px;
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.22;
}

.trend-link {
  color: inherit;
}

.case-frame-coming-soon {
  position: relative;
}

.case-frame-coming-soon::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.6));
  content: "";
  pointer-events: none;
}

.case-status {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 9px 12px;
  color: #0b0b0b;
  background: #f7f6f3;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-fallback {
  margin: 0;
  color: var(--muted);
}

.works-archive .case-card-coming-soon .case-copy {
  grid-template-columns: minmax(0, 1fr);
}

.works-archive .case-card-coming-soon .case-copy h3,
.works-archive .case-card-coming-soon .case-copy > p:not(.case-index),
.works-archive .case-card-coming-soon .case-tags {
  grid-column: 1;
}

@media (max-width: 1120px) {
  .home-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-work-grid .case-study:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 760px) {
  .intro-section {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 86px;
    padding-bottom: 72px;
  }

  .intro-section .eyebrow {
    margin-top: 0;
  }

  .intro-section-copy h2,
  .services-section h2,
  .trend-card h2 {
    font-size: 42px;
    line-height: 0.96;
  }

  .intro-section-copy p {
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.26;
  }

  .services-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .services-section .section-heading {
    display: block;
  }

  .services-list {
    gap: 8px;
    margin-top: 34px;
  }

  .service-pill {
    min-height: 46px;
    padding: 12px 15px;
    font-size: 18px;
  }

  .work {
    padding-top: 74px;
    padding-bottom: 80px;
  }

  .work-heading {
    display: block;
    margin-bottom: 36px;
  }

  .work-heading .eyebrow {
    margin-bottom: 30px;
  }

  .home-work-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .home-work-grid .case-study:last-child {
    grid-column: auto;
    max-width: none;
  }

  .home-work-grid .case-copy h3 {
    font-size: 32px;
  }

  .trend-section {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .trend-card {
    padding: 28px 18px 32px;
  }

  .trend-card .section-heading {
    display: block;
    margin-bottom: 34px;
  }

  .trend-card > p {
    font-size: 19px;
    line-height: 1.28;
  }
}

/* Current visual pass: restrained monochrome pills, editorial work composition,
   and a Trend-inspired media panel. */
.service-pill {
  color: #0b0b0b;
  background: #fafafa;
  border: 1px solid #0b0b0b;
  box-shadow: none;
}

.service-pill-ocean,
.service-pill-kyoto,
.service-pill-plum,
.service-pill-twilight,
.service-pill-sunrise {
  color: #fafafa;
  background: #0b0b0b;
}

.service-pill:hover {
  color: #fafafa;
  background: #0b0b0b;
  box-shadow: none;
  transform: translateY(-3px);
}

.service-pill-ocean:hover,
.service-pill-kyoto:hover,
.service-pill-plum:hover,
.service-pill-twilight:hover,
.service-pill-sunrise:hover {
  color: #0b0b0b;
  background: #fafafa;
}

.work {
  width: 100%;
  max-width: none;
  padding-right: 20px;
  padding-left: 20px;
  background: #fafafa;
}

.work-showcase-shell {
  position: relative;
  isolation: isolate;
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 76px);
  overflow: hidden;
  color: #fafafa;
  background:
    radial-gradient(circle at 92% 0%, rgba(3, 53, 183, 0.58), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(50, 196, 232, 0.24), transparent 30%),
    #0b0b0b;
  border-radius: 28px;
}

.work-showcase-shell::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(250, 250, 250, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(250, 250, 250, 0.04),
    0 0 0 56px rgba(250, 250, 250, 0.03);
  content: "";
}

.work-showcase-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.work-showcase-intro {
  max-width: 880px;
}

.work-showcase-shell .eyebrow {
  color: rgba(250, 250, 250, 0.62);
}

.work-showcase-shell h2 {
  max-width: 820px;
  margin: 0;
  color: #fafafa;
  font-size: clamp(50px, 6.5vw, 112px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.work-showcase-aside {
  display: grid;
  min-width: 210px;
  justify-items: end;
  gap: 18px;
}

.work-showcase-note {
  max-width: 190px;
  margin: 0;
  color: rgba(250, 250, 250, 0.66);
  font-size: 12px;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
}

.work-showcase-shell .text-link {
  margin: 0;
  padding: 12px 16px;
  color: #0b0b0b;
  background: #fafafa;
  border: 1px solid #fafafa;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.work-showcase-shell .text-link:hover {
  color: #fafafa;
  background: #0335b7;
  border-color: #0335b7;
  transform: translateY(-3px);
}

.work-showcase-shell .home-work-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
  grid-template-rows: repeat(2, minmax(270px, 1fr));
  gap: 14px;
}

.work-showcase-shell .home-work-grid .case-study {
  position: relative;
  min-width: 0;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: #161616;
  border-radius: 20px;
}

.work-showcase-shell .home-work-grid .case-study:first-child {
  grid-row: 1 / span 2;
  min-height: 620px;
}

.work-showcase-shell .home-work-grid .case-study::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.8) 100%);
  content: "";
  pointer-events: none;
}

.work-showcase-shell .home-work-grid .case-study::before {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  padding: 9px 12px;
  color: #0b0b0b;
  background: #fafafa;
  border-radius: 999px;
  content: "View case ↗";
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.work-showcase-shell .home-work-grid .case-study:hover::before {
  color: #fafafa;
  background: #0335b7;
  transform: translateY(-2px);
}

.work-showcase-shell .home-work-grid .case-frame,
.work-showcase-shell .home-work-grid .case-study:has(.case-image-juicy-quest) .case-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 0;
}

.work-showcase-shell .home-work-grid .case-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-showcase-shell .home-work-grid .case-image-juicy-quest {
  object-fit: contain;
}

.work-showcase-shell .home-work-grid .case-study:hover .case-image {
  transform: scale(1.045);
}

.work-showcase-shell .home-work-grid .case-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: clamp(20px, 3vw, 34px);
  color: #fafafa;
  border: 0;
}

.work-showcase-shell .home-work-grid .case-copy h3 {
  max-width: 15ch;
  color: #fafafa;
  font-size: clamp(29px, 3.3vw, 58px);
  line-height: 0.9;
}

.work-showcase-shell .home-work-grid .case-copy > p:not(.case-index) {
  max-width: 42ch;
  margin: 12px 0 0;
  color: rgba(250, 250, 250, 0.78);
  font-size: 14px;
  line-height: 1.3;
}

.work-showcase-shell .home-work-grid .case-study:not(:first-child) .case-copy > p:not(.case-index) {
  display: none;
}

.work-showcase-shell .home-work-grid .case-tags {
  display: flex;
  grid-column: auto;
  gap: 6px;
  margin-top: 16px;
}

.work-showcase-shell .home-work-grid .case-tags li {
  padding: 7px 10px;
  color: #fafafa;
  background: rgba(250, 250, 250, 0.16);
  border: 1px solid rgba(250, 250, 250, 0.3);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
}

.work-showcase-shell .home-work-grid .case-tags li:not(:last-child)::after {
  display: none;
}

.trend-section {
  padding-top: clamp(68px, 8vw, 112px);
  padding-bottom: clamp(68px, 8vw, 112px);
  background: #f7f8fa;
}

.trend-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 5vw, 76px);
  color: #0b1629;
  background: linear-gradient(135deg, #f7f8fa 0%, #edf4ff 100%);
  border: 1px solid #dfe5ef;
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(3, 53, 183, 0.1);
}

.trend-card::before {
  display: none;
}

.trend-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(54px, 8vw, 108px);
}

.trend-brand-link {
  display: block;
  width: 150px;
}

.trend-brand-link img {
  width: 100%;
  height: auto;
}

.trend-brand-row > span {
  color: #0335b7;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trend-card .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 54px;
}

.trend-card .eyebrow {
  color: #0335b7;
}

.trend-card h2 {
  color: #030462;
}

.trend-card > p {
  position: relative;
  z-index: 1;
  max-width: 920px;
  color: #0b1629;
}

.trend-card .trend-link {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  padding: 14px 18px;
  color: #fafafa;
  background: #0335b7;
  border: 1px solid #0335b7;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(3, 53, 183, 0.22);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.trend-card .trend-link:hover {
  color: #fafafa;
  background: #030462;
  border-color: #030462;
  transform: translateY(-3px);
}

.works-archive .work-filter {
  display: none;
}

@media (max-width: 760px) {
  .work {
    padding-right: 12px;
    padding-left: 12px;
  }

  .work-showcase-shell {
    padding: 24px 14px 14px;
    border-radius: 20px;
  }

  .work-showcase-header {
    display: block;
    margin-bottom: 30px;
  }

  .work-showcase-shell h2 {
    font-size: 46px;
  }

  .work-showcase-aside {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
  }

  .work-showcase-note {
    max-width: 160px;
    text-align: left;
  }

  .work-showcase-shell .home-work-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
  }

  .work-showcase-shell .home-work-grid .case-study,
  .work-showcase-shell .home-work-grid .case-study:first-child {
    grid-row: auto;
    min-height: 380px;
  }

  .work-showcase-shell .home-work-grid .case-copy {
    padding: 20px;
  }

  .work-showcase-shell .home-work-grid .case-copy h3 {
    max-width: 13ch;
    font-size: 34px;
  }

  .work-showcase-shell .home-work-grid .case-copy > p:not(.case-index) {
    font-size: 13px;
  }

  .work-showcase-shell .home-work-grid .case-study:not(:first-child) .case-copy > p:not(.case-index) {
    display: none;
  }

  .trend-card {
    padding: 26px 18px 32px;
    border-radius: 20px;
  }

  .trend-brand-row {
    align-items: flex-start;
    margin-bottom: 58px;
  }

  .trend-brand-link {
    width: 118px;
  }

  .trend-brand-row > span {
    max-width: 120px;
    font-size: 9px;
    line-height: 1.3;
    text-align: right;
  }
}

/* Selected work uses deBRIEF's own identity system: warm paper, gradient
   canvases and the circular de mark. */
.work {
  padding-right: 20px;
  padding-bottom: 0;
  padding-left: 20px;
  background: var(--paper);
}

.work-showcase-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 124px) 0 clamp(36px, 4vw, 56px);
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
}

.trend-section {
  padding-top: 20px;
}

.work-showcase-shell::after {
  display: none;
}

.work-showcase-header {
  display: grid;
  grid-template-columns: minmax(150px, 0.24fr) minmax(0, 0.56fr) minmax(190px, 0.2fr);
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.work-showcase-intro {
  display: contents;
  max-width: none;
}

.work-showcase-intro .eyebrow,
.work-showcase-shell .eyebrow {
  grid-column: 1;
  align-self: start;
  color: var(--muted);
}

.work-showcase-shell h2 {
  grid-column: 2;
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(54px, 6.2vw, 104px);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.work-showcase-aside {
  grid-column: 3;
  display: flex;
  min-width: 0;
  justify-content: flex-end;
}

.work-showcase-note {
  display: none;
}

.work-showcase-shell .text-link {
  margin: 0;
  padding: 12px 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.work-showcase-shell .text-link:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-3px);
}

.work-showcase-shell .home-work-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: none;
  gap: 28px;
}

.work-showcase-shell .home-work-grid .case-study,
.work-showcase-shell .home-work-grid .case-study:first-child {
  --case-gradient: var(--sakura);
  --case-ink: #0b0b0b;
  --mark-filter: none;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  grid-template-rows: minmax(520px, auto);
  min-width: 0;
  min-height: 520px;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  color: var(--case-ink);
  background: var(--case-gradient);
  border-radius: 18px;
}

.work-showcase-shell .home-work-grid .case-study:last-child {
  grid-column: auto;
  max-width: none;
}

.work-showcase-shell .home-work-grid .case-study.case-study-sunnyness-juicy-quest {
  --case-gradient: var(--yuzu);
  --case-ink: #0b0b0b;
  --mark-filter: none;
}

.work-showcase-shell .home-work-grid .case-study.case-study-rouzaneh-calendar {
  --case-gradient: var(--fog);
  --case-ink: #0b0b0b;
  --mark-filter: none;
}

.work-showcase-shell .home-work-grid .case-study.case-study-sunsilk-website {
  --case-gradient: var(--camellia);
  --case-ink: #fafafa;
  --mark-filter: invert(1);
}

.work-showcase-shell .home-work-grid .case-study.case-study-dallas {
  --case-gradient: var(--twilight);
  --case-ink: #fafafa;
  --mark-filter: invert(1);
}

.work-showcase-shell .home-work-grid .case-study.case-study-clear-super-legends {
  --case-gradient: var(--aizome);
  --case-ink: #fafafa;
  --mark-filter: invert(1);
}

.work-showcase-shell .home-work-grid .case-study.case-study-clear-egame-campaign {
  --case-gradient: var(--ocean);
  --case-ink: #fafafa;
  --mark-filter: invert(1);
}

.work-showcase-shell .home-work-grid .case-study::before,
.work-showcase-shell .home-work-grid .case-study::after {
  display: none;
}

.work-showcase-shell .home-work-grid .case-frame,
.work-showcase-shell .home-work-grid .case-study:has(.case-image-juicy-quest) .case-frame,
.work-showcase-shell .home-work-grid .case-study:has(.case-image-dallas) .case-frame {
  position: relative;
  z-index: 0;
  inset: auto;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: auto;
  min-height: 492px;
  aspect-ratio: auto;
  overflow: hidden;
  background: #111;
  border-radius: 8px;
}

.work-showcase-shell .home-work-grid .case-study:nth-child(even) .case-frame,
.work-showcase-shell .home-work-grid .case-study:nth-child(even):has(.case-image-juicy-quest) .case-frame,
.work-showcase-shell .home-work-grid .case-study:nth-child(even):has(.case-image-dallas) .case-frame {
  grid-column: 2;
}

.work-showcase-shell .home-work-grid .case-image,
.work-showcase-shell .home-work-grid .case-image-juicy-quest,
.work-showcase-shell .home-work-grid .case-image-dallas {
  position: absolute;
  inset: -6% 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-showcase-shell .home-work-grid .case-study:hover .case-image {
  transform: scale(1.025);
}

.work-showcase-shell .home-work-grid .case-copy {
  position: relative;
  z-index: 2;
  inset: auto;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(28px, 3.6vw, 54px);
  color: var(--case-ink);
  background: transparent;
  border: 0;
}

.work-showcase-shell .home-work-grid .case-study:nth-child(even) .case-copy {
  grid-column: 1;
}

.home-case-mark {
  display: grid;
  width: clamp(78px, 7vw, 108px);
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: auto;
  background: color-mix(in srgb, var(--case-ink), transparent 91%);
  border: 1px solid color-mix(in srgb, var(--case-ink), transparent 70%);
  border-radius: 50%;
}

.home-case-mark img {
  width: 58%;
  height: auto;
  filter: var(--mark-filter);
}

.work-showcase-shell .home-work-grid .case-copy h3 {
  max-width: 13ch;
  margin: clamp(42px, 7vw, 96px) 0 0;
  color: var(--case-ink);
  font-size: clamp(42px, 4.6vw, 72px);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: -0.04em;
}

.work-showcase-shell .home-work-grid .case-copy > p:not(.case-index),
.work-showcase-shell .home-work-grid .case-study:not(:first-child) .case-copy > p:not(.case-index) {
  display: block;
  max-width: 36ch;
  margin: 20px 0 0;
  color: var(--case-ink);
  font-size: 15px;
  line-height: 1.38;
  opacity: 0.78;
}

.home-case-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-bottom: 4px;
  color: var(--case-ink);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: gap 180ms ease;
}

.home-case-link:hover {
  gap: 16px;
}

.work-showcase-shell .home-work-grid .case-tags {
  display: flex;
  grid-column: auto;
  gap: 0 9px;
  margin-top: 20px;
  opacity: 0.64;
}

.work-showcase-shell .home-work-grid .case-tags li {
  padding: 0;
  color: var(--case-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 10px;
  line-height: 1.3;
}

.work-showcase-shell .home-work-grid .case-tags li:not(:last-child)::after {
  display: inline;
  margin-left: 9px;
  color: currentColor;
  content: "/";
  opacity: 0.5;
}

@media (max-width: 900px) {
  .work-showcase-header {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .work-showcase-aside {
    grid-column: 2;
    justify-content: flex-start;
    margin-top: 12px;
  }

  .work-showcase-shell .home-work-grid .case-study,
  .work-showcase-shell .home-work-grid .case-study:first-child {
    grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.88fr);
  }
}

@media (max-width: 680px) {
  .work {
    padding-right: 12px;
    padding-left: 12px;
  }

  .work-showcase-shell {
    padding: 68px 0 28px;
  }

  .work-showcase-header {
    display: block;
    margin-bottom: 36px;
  }

  .work-showcase-intro {
    display: block;
  }

  .work-showcase-shell h2 {
    margin-top: 24px;
    font-size: clamp(46px, 14vw, 64px);
  }

  .work-showcase-aside {
    display: flex;
    margin-top: 26px;
  }

  .work-showcase-shell .home-work-grid {
    gap: 12px;
  }

  .work-showcase-shell .home-work-grid .case-study,
  .work-showcase-shell .home-work-grid .case-study:first-child {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
    padding: 10px;
    border-radius: 15px;
  }

  .work-showcase-shell .home-work-grid .case-frame,
  .work-showcase-shell .home-work-grid .case-study:nth-child(even) .case-frame,
  .work-showcase-shell .home-work-grid .case-study:has(.case-image-juicy-quest) .case-frame,
  .work-showcase-shell .home-work-grid .case-study:has(.case-image-dallas) .case-frame,
  .work-showcase-shell .home-work-grid .case-study:nth-child(even):has(.case-image-juicy-quest) .case-frame,
  .work-showcase-shell .home-work-grid .case-study:nth-child(even):has(.case-image-dallas) .case-frame {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .work-showcase-shell .home-work-grid .case-copy,
  .work-showcase-shell .home-work-grid .case-study:nth-child(even) .case-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 24px 12px 18px;
  }

  .home-case-mark {
    width: 68px;
    margin-bottom: 38px;
  }

  .work-showcase-shell .home-work-grid .case-copy h3 {
    margin-top: 0;
    font-size: clamp(40px, 12vw, 54px);
  }

  .work-showcase-shell .home-work-grid .case-copy > p:not(.case-index),
  .work-showcase-shell .home-work-grid .case-study:not(:first-child) .case-copy > p:not(.case-index) {
    font-size: 14px;
  }
}

/* Shared project discovery — one consistent ending for every published case study. */
body .project-discovery {
  padding: clamp(64px, 8vw, 116px) max(24px, 4vw);
  color: #0b0b0b;
  background: #fafafa;
  border-top: 1px solid rgba(11, 11, 11, 0.16);
}

body .project-discovery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 68px);
}

body .project-discovery-heading .eyebrow {
  margin: 0 0 18px;
  color: rgba(11, 11, 11, 0.56);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

body .project-discovery-heading h2 {
  max-width: 720px;
  margin: 0;
  color: #0b0b0b;
  font-family: inherit;
  font-size: clamp(46px, 6.5vw, 94px);
  font-style: normal;
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

body .project-discovery-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 0 6px;
  color: #0b0b0b;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

body .project-discovery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

body .project-discovery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  color: #0b0b0b;
  background: #f0efeb;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: clamp(16px, 2vw, 28px);
  text-decoration: none;
}

body .project-discovery-card figure {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  background: #deddd8;
}

body .project-discovery-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

body .project-discovery-card:hover img {
  transform: scale(1.025);
}

body .project-discovery-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 12px 24px;
  min-height: 180px;
  padding: clamp(22px, 3vw, 38px);
}

body .project-discovery-copy > span {
  grid-column: 1 / -1;
  color: rgba(11, 11, 11, 0.52);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

body .project-discovery-copy h3 {
  align-self: end;
  max-width: 14ch;
  margin: 0;
  color: #0b0b0b;
  font-family: inherit;
  font-size: clamp(30px, 3.6vw, 54px);
  font-style: normal;
  font-weight: 790;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

body .project-discovery-copy i {
  align-self: end;
  font-size: 22px;
  font-style: normal;
  line-height: 1;
  transition: transform 180ms ease;
}

body .project-discovery-card:hover .project-discovery-copy i {
  transform: translate(3px, -3px);
}

/* Coming-soon work remains visible in the archive, but reads as deliberately inactive. */
.works-archive .case-card-coming-soon .case-frame {
  background: #d9d9d4;
}

.works-archive .case-card-coming-soon .case-image {
  opacity: 0.76;
  filter: grayscale(0.68) saturate(0.52) contrast(0.94);
}

.works-archive .case-card-coming-soon .case-copy {
  opacity: 0.68;
}

@media (max-width: 700px) {
  body .project-discovery-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  body .project-discovery-all {
    justify-self: start;
  }

  body .project-discovery-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body .project-discovery-copy {
    min-height: 150px;
  }
}
