@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces-display.woff2") format("woff2");
  font-weight: 400 650;
  font-display: swap;
}

@font-face {
  font-family: "Shippori Mincho";
  src: url("/assets/fonts/shippori-mincho-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --night: #0d0d0f;
  --night-soft: #151417;
  --night-raised: #1c1a1e;
  --paper: #f3efe7;
  --paper-warm: #e9e1d4;
  --paper-bright: #fbf8f2;
  --ink: #1a1719;
  --cream: #f6f0e7;
  --muted: #625c57;
  --muted-dark: #aaa29b;
  --line: rgba(26, 23, 25, 0.14);
  --line-dark: rgba(246, 240, 231, 0.14);
  --accent: #db6448;
  --accent-deep: #b84431;
  --accent-soft: #ef9e87;
  --serif: "Fraunces", ui-serif, "Iowan Old Style", "Palatino Linotype", Georgia,
    "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Hiragino Sans", "Noto Sans JP", "Yu Gothic", sans-serif;
  --content: 1280px;
  --pad: clamp(22px, 5vw, 72px);
  --section-space: clamp(104px, 14vw, 196px);
  color-scheme: light dark;
}

html[lang="ja"] {
  --serif: "Fraunces", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho",
    "Noto Serif JP", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  background: var(--night);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  color: inherit;
  font: inherit;
}

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

::selection {
  background: var(--accent);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: none;
}

.wrap {
  width: min(var(--content), 100%);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.nav {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto;
  color: var(--cream);
  transition:
    background-color 240ms ease,
    border-color 240ms ease;
}

.nav.scrolled {
  border-bottom: 1px solid var(--line-dark);
  background: rgba(13, 13, 15, 0.86);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  color: var(--muted-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="true"] {
  color: var(--cream);
}

.nav-links a[aria-current="true"]::after {
  opacity: 1;
  transform: none;
}

.language {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
}

.language button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--muted-dark);
  padding: 6px 12px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.language button[aria-pressed="true"] {
  background: var(--cream);
  color: var(--night);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-deep);
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  padding: 11px 23px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  border-color: var(--accent-soft);
  background: #963623;
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-quiet {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--cream);
}

.button-quiet:hover {
  border-color: rgba(246, 240, 231, 0.36);
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

.nav-cta {
  min-height: 44px;
  padding: 8px 17px;
  font-size: 12px;
}

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 36%, rgba(219, 100, 72, 0.1), transparent 26%),
    radial-gradient(circle at 68% 78%, rgba(175, 126, 142, 0.08), transparent 27%),
    var(--night);
  color: var(--cream);
  padding: 108px 0 56px;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: radial-gradient(circle at 68% 45%, #000, transparent 66%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.74fr);
  gap: clamp(48px, 7vw, 110px);
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  width: 30px;
  height: 1px;
  margin-right: 13px;
  background: currentColor;
  content: "";
}

.hero h1,
.display,
.chapter-title,
.join-title,
.interlude-quote {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

html[lang="ja"] .hero h1,
html[lang="ja"] .display,
html[lang="ja"] .chapter-title,
html[lang="ja"] .join-title,
html[lang="ja"] .interlude-quote,
html[lang="ja"] .flow-step h3,
html[lang="ja"] .proof-item h3,
html[lang="ja"] .form-done {
  font-feature-settings: "palt" 1;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 11.5ch;
  margin-top: 30px;
  font-size: clamp(64px, 7.3vw, 108px);
  line-height: 0.91;
}

html[lang="ja"] .hero h1 {
  max-width: none;
  font-size: clamp(50px, 5.6vw, 84px);
  line-height: 1.14;
}

.hero-lead {
  max-width: 49ch;
  margin-top: 32px;
  color: var(--muted-dark);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.hero-note {
  margin-top: 20px;
  color: #918991;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.hero-stack {
  position: relative;
  justify-self: end;
  width: min(41vw, 560px, calc((100svh - 190px) * 0.86));
}

.hero-stack::before {
  position: absolute;
  z-index: -1;
  inset: 6% -18% -10% 10%;
  border-radius: 50%;
  background: rgba(205, 126, 116, 0.14);
  content: "";
  filter: blur(80px);
}

.stack-canvas {
  position: relative;
  aspect-ratio: 100 / 126;
}

.stack-card {
  position: absolute;
  background: #fff;
  border-radius: 3px;
  padding: 3.6% 3.6% 4.2%;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.24) inset;
  transform: rotate(var(--rot, 0deg)) translate3d(0, var(--parallax-y, 0px), 0);
}

.stack-card img {
  width: 100%;
  height: auto;
  border-radius: 1px;
}

.stack-back-left {
  --rot: -7deg;
  z-index: 1;
  top: 7%;
  left: -7%;
  width: 57%;
}

.stack-back-right {
  --rot: 5.5deg;
  z-index: 2;
  top: 0;
  right: -5%;
  width: 55%;
}

.stack-front {
  --rot: -1.8deg;
  z-index: 3;
  top: 13%;
  left: 9%;
  width: 70%;
  box-shadow:
    0 70px 130px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.24) inset;
}

.stack-front .stage-badge {
  right: 6%;
  bottom: 6%;
}

.art-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  color: #827c83;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

html[lang="ja"] .art-caption {
  letter-spacing: 0.08em;
}

.art-caption::after {
  flex: none;
  width: 46px;
  height: 1px;
  margin-left: 16px;
  background: var(--line-dark);
  content: "";
}

.section {
  padding-block: var(--section-space);
}

.section-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.63fr);
  gap: clamp(40px, 8vw, 120px);
}

.display {
  max-width: 15ch;
  margin-top: 22px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 1.02;
}

html[lang="ja"] .display {
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.18;
}

html[lang="ja"] .proof-copy .display,
html[lang="ja"] .faq-title .display {
  font-size: clamp(32px, 3.4vw, 46px);
}

.lede {
  max-width: 49ch;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.8;
}

.works {
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
  padding-block: clamp(40px, 6vw, 90px) clamp(84px, 10vw, 140px);
}

.works .lede {
  color: var(--muted-dark);
}

.marquee-band {
  display: grid;
  gap: 22px;
  margin-top: clamp(56px, 7vw, 92px);
}

.marquee-row {
  display: flex;
  overflow: hidden;
  gap: 22px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: flex;
  flex: none;
  gap: 22px;
  padding-right: 22px;
  animation: marquee-left 90s linear infinite;
}

.marquee-reverse .marquee-track {
  animation: marquee-right 104s linear infinite;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

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

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

@keyframes marquee-right {
  from {
    transform: translate3d(-100%, 0, 0);
  }

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

.work-card {
  flex: none;
  border-radius: 5px;
  background: #fff;
  padding: 9px 9px 11px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.work-card:hover {
  transform: translateY(-7px) rotate(-0.6deg);
}

.work-card img {
  width: auto;
  height: clamp(190px, 24vw, 300px);
  border-radius: 2px;
}

.works-credit {
  margin-top: clamp(40px, 5vw, 60px);
  color: #827c83;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

html[lang="ja"] .works-credit {
  letter-spacing: 0.1em;
}

.experience {
  position: relative;
  overflow: hidden;
  background: var(--paper-bright);
}

.showcase {
  display: grid;
  gap: 28px;
  margin-top: clamp(66px, 9vw, 116px);
}

.showcase-card {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  grid-template-columns: minmax(260px, 0.72fr) minmax(360px, 1.28fr);
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(34px, 5vw, 68px);
}

.chapter-number {
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.chapter-title {
  max-width: 12ch;
  margin-top: 20px;
  font-size: clamp(37px, 4vw, 58px);
  line-height: 1.02;
}

html[lang="ja"] .chapter-title {
  font-size: clamp(26px, 2.65vw, 38px);
  line-height: 1.24;
}

.showcase-copy p:last-child {
  max-width: 38ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
}

.line-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 620px;
  border-left: 1px solid var(--line);
  padding: clamp(34px, 4.5vw, 64px);
  background:
    radial-gradient(circle at 30% 20%, rgba(219, 100, 72, 0.05), transparent 42%),
    linear-gradient(90deg, rgba(243, 239, 231, 0.76), transparent 18%),
    #f7f7f6;
}

.stroke-sheet {
  position: relative;
  width: min(56%, 350px);
  margin-right: 12%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 36px 74px rgba(26, 23, 25, 0.18);
}

.stroke-sheet video {
  width: 100%;
  height: auto;
  aspect-ratio: 1080 / 1462;
  object-fit: cover;
  background: #f7f7f6;
}

.stroke-sheet .media-toggle {
  right: auto;
  bottom: 12px;
  left: 12px;
}

.ink-card {
  position: absolute;
  right: 7%;
  bottom: 10%;
  width: min(30%, 215px);
  background: #fff;
  border-radius: 3px;
  padding: 2.4% 2.4% 2.8%;
  box-shadow: 0 30px 60px rgba(26, 23, 25, 0.3);
  transform: rotate(2.4deg) translate3d(0, var(--parallax-y, 0px), 0);
}

.ink-card img {
  width: 100%;
  border-radius: 1px;
}

.ink-caption {
  margin-top: 9px;
  color: #77716c;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.media-toggle {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  min-height: 36px;
  border: 1px solid rgba(13, 13, 15, 0.16);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #403b40;
  padding: 7px 12px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.media-toggle:hover {
  border-color: rgba(13, 13, 15, 0.3);
  background: rgba(251, 248, 242, 0.96);
}

.stage-badge.media-caption {
  top: 18px;
  right: 18px;
  bottom: auto;
  left: auto;
}

.stage-badge {
  position: absolute;
  right: 22px;
  bottom: 20px;
  border: 1px solid rgba(13, 13, 15, 0.15);
  border-radius: 999px;
  background: rgba(251, 248, 242, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #575158;
  padding: 8px 13px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

html[lang="ja"] .stage-badge,
html[lang="ja"] .ink-caption {
  letter-spacing: 0.06em;
}

.colour-card {
  min-height: 570px;
  border-color: var(--line-dark);
  background: var(--night);
  color: var(--cream);
  grid-template-columns: minmax(340px, 1.25fr) minmax(260px, 0.75fr);
}

.colour-card .showcase-copy {
  order: 2;
}

.colour-card .showcase-copy p:last-child {
  color: var(--muted-dark);
}

.colour-card .chapter-number {
  color: var(--accent-soft);
}

.mix-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 26px;
  border-right: 1px solid var(--line-dark);
  padding: clamp(36px, 5vw, 64px);
}

.mix-stage::before {
  position: absolute;
  inset: 14% 10%;
  border-radius: 50%;
  background: rgba(105, 151, 129, 0.08);
  content: "";
  filter: blur(60px);
}

.wipe {
  --wipe: 50%;
  position: relative;
  overflow: hidden;
  height: clamp(120px, 13vw, 180px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  cursor: ew-resize;
  touch-action: pan-y;
}

.wipe img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.wipe-top {
  clip-path: inset(0 calc(100% - var(--wipe)) 0 0);
}

.wipe-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--wipe);
  width: 2px;
  margin-left: -1px;
  background: rgba(13, 13, 15, 0.85);
  pointer-events: none;
}

.wipe-handle {
  position: absolute;
  top: 50%;
  left: var(--wipe);
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 13, 15, 0.2);
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.94);
  color: #403b40;
  cursor: ew-resize;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.wipe.dragging .wipe-handle {
  background: #fff;
}

.wipe-tag {
  position: absolute;
  top: 12px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(13, 13, 15, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.wipe-tag-left {
  left: 12px;
}

.wipe-tag-right {
  right: 12px;
}

.wipe-hint {
  position: relative;
  color: #918991;
  font-size: 11px;
}

.colour-art {
  position: relative;
  margin-top: 6px;
}

.colour-art img {
  width: 100%;
  max-height: 330px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
  object-position: 50% 26%;
}

.colour-art .stage-badge {
  right: 14px;
  bottom: 14px;
}

.interlude {
  position: relative;
  overflow: hidden;
  height: clamp(440px, 74vh, 720px);
  background: var(--night);
  color: var(--cream);
}

.interlude-art {
  position: absolute;
  inset: -14% 0;
  width: 100%;
  height: 128%;
  object-fit: cover;
  object-position: 64% 30%;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.interlude::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13, 13, 15, 0.66) 8%,
    rgba(13, 13, 15, 0.22) 46%,
    rgba(13, 13, 15, 0.05) 72%
  );
  content: "";
}

.interlude-inner {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 50%;
  width: min(var(--content), 100%);
  padding-inline: var(--pad);
  transform: translateX(-50%);
}

.interlude-quote {
  max-width: 17ch;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.14;
  text-shadow: 0 2px 30px rgba(13, 13, 15, 0.45);
}

html[lang="ja"] .interlude-quote {
  line-height: 1.3;
}

.interlude-credit {
  margin-top: 26px;
  color: rgba(246, 240, 231, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

html[lang="ja"] .interlude-credit {
  letter-spacing: 0.1em;
}

.studio {
  position: relative;
  overflow: hidden;
  background: var(--night);
  color: var(--cream);
}

.studio::before {
  position: absolute;
  top: -22%;
  right: -10%;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
}

.studio .lede {
  color: var(--muted-dark);
}

.studio-flow {
  position: relative;
  display: grid;
  margin-top: clamp(70px, 10vw, 132px);
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.flow-step {
  min-height: 350px;
  border-right: 1px solid var(--line-dark);
  padding: 28px clamp(22px, 3.5vw, 46px) 36px;
}

.flow-step:first-child {
  padding-left: 0;
}

.flow-step:last-child {
  border-right: 0;
  padding-right: 0;
}

.flow-number {
  display: block;
  color: #514c52;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 96px);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.flow-step h3 {
  margin-top: 78px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.7vw, 38px);
  font-weight: 500;
}

.flow-step p {
  max-width: 29ch;
  margin-top: 15px;
  color: var(--muted-dark);
  font-size: 14px;
}

.studio-safety {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  color: #777178;
  font-size: 12px;
}

.studio-safety strong {
  color: var(--cream);
  font-weight: 650;
}

.proof {
  background: var(--paper-warm);
}

.proof-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(290px, 0.77fr) minmax(380px, 1.23fr);
  gap: clamp(56px, 10vw, 148px);
}

.proof-copy {
  position: sticky;
  top: 126px;
}

.proof-copy .lede {
  margin-top: 28px;
}

.proof-list {
  border-top: 1px solid var(--line);
}

.proof-item {
  display: grid;
  border-bottom: 1px solid var(--line);
  padding: 32px 0 36px;
  grid-template-columns: 62px 1fr;
}

.proof-item > span {
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.proof-item h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.1;
}

html[lang="ja"] .proof-item h3 {
  line-height: 1.25;
}

.proof-item p {
  max-width: 50ch;
  margin-top: 13px;
  color: var(--muted);
  font-size: 14px;
}

.teams-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.teams-link:hover {
  color: var(--ink);
}

.faq {
  background: var(--paper-bright);
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(250px, 0.65fr) minmax(360px, 1.35fr);
  gap: clamp(50px, 10vw, 150px);
}

.faq-title {
  position: sticky;
  top: 126px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: none;
  color: var(--muted);
  content: "+";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 64ch;
  padding: 0 46px 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.join {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 110%, rgba(219, 100, 72, 0.15), transparent 38%),
    var(--night);
  color: var(--cream);
  padding-block: clamp(112px, 15vw, 190px);
  text-align: center;
}

.join::before,
.join::after {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.join::before {
  bottom: -540px;
  width: 900px;
  height: 900px;
}

.join::after {
  bottom: -410px;
  width: 650px;
  height: 650px;
}

.join-inner {
  position: relative;
  z-index: 1;
}

.join .kicker {
  justify-content: center;
}

.join-title {
  max-width: 12ch;
  margin: 28px auto 0;
  font-size: clamp(52px, 7vw, 94px);
  line-height: 0.98;
}

html[lang="ja"] .join-title {
  line-height: 1.18;
}

.join .lede {
  margin: 26px auto 0;
  color: var(--muted-dark);
}

.waitlist {
  display: flex;
  width: min(600px, 100%);
  margin: 38px auto 0;
  gap: 10px;
}

.waitlist input[type="email"] {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--cream);
  padding: 13px 20px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.waitlist input[type="email"]::placeholder {
  color: #918991;
}

.waitlist input[type="email"]:focus {
  border-color: rgba(246, 240, 231, 0.34);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-note,
.form-error {
  margin-top: 14px;
  color: #918991;
  font-size: 11px;
}

.form-error {
  color: #e8a08e;
}

.form-done {
  margin-top: 38px;
  font-family: var(--serif);
  font-size: 28px;
}

.form-status:empty {
  display: none;
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

footer {
  border-top: 1px solid var(--line-dark);
  background: var(--night);
  color: #918991;
  padding: 42px 0 58px;
  font-size: 11px;
}

.legal-page,
.error-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 82% 8%, rgba(219, 100, 72, 0.08), transparent 25%),
    var(--night);
  color: var(--cream);
}

.legal-wrap {
  width: min(820px, 100%);
  margin-inline: auto;
  padding: 34px var(--pad) 110px;
}

.legal-top {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 18px;
}

.legal-top .language {
  margin-left: auto;
}

.legal-content {
  margin-top: clamp(80px, 12vw, 140px);
}

.legal-content h1,
.error-page h1 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.legal-content h1 {
  font-size: clamp(48px, 8vw, 76px);
  line-height: 1;
}

.legal-copy {
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.legal-copy h2 {
  margin-top: 34px;
  color: var(--cream);
  font-size: 14px;
}

.legal-copy p {
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 14px;
}

.legal-copy a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-copy .updated {
  margin-top: 50px;
  color: #918991;
  font-size: 11px;
}

.experience .section-intro .kicker,
.proof .kicker,
.faq .kicker {
  color: var(--accent-deep);
}

.error-page {
  display: grid;
  place-items: center;
  padding: var(--pad);
  text-align: center;
}

.error-page h1 {
  font-size: clamp(94px, 18vw, 190px);
  line-height: 0.8;
}

.error-page p {
  margin: 34px 0 32px;
  color: var(--muted-dark);
}

.error-page .eyebrow {
  justify-content: center;
  margin: 0 0 34px;
  color: var(--accent);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--cream);
}

.legal {
  max-width: 90ch;
  margin-top: 24px;
  color: #827b83;
  font-size: 10px;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.motion-ready .reveal.in {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .section-intro,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-stack {
    width: min(76vw, 500px);
    margin-top: 26px;
    justify-self: center;
  }

  .section-intro {
    align-items: start;
  }

  .section-intro .lede {
    margin-top: 2px;
  }

  .showcase-card,
  .colour-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .line-stage {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 48px 28px 56px;
  }

  .stroke-sheet {
    width: min(62%, 350px);
  }

  .colour-card .showcase-copy {
    order: 0;
  }

  .mix-stage {
    border-top: 1px solid var(--line-dark);
    border-right: 0;
  }

  .proof-copy,
  .faq-title {
    position: static;
  }

  .proof-list,
  .faq-list {
    margin-top: 4px;
  }
}

@media (max-width: 760px) {
  :root {
    --section-space: 96px;
  }

  .nav-inner {
    min-height: 66px;
    gap: 12px;
  }

  .wordmark {
    font-size: 23px;
  }

  .language {
    margin-left: auto;
  }

  .language button {
    min-height: 44px;
    padding-inline: 10px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 7px 13px;
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 114px 0 78px;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(54px, 16vw, 76px);
  }

  html[lang="ja"] .hero h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .hero-lead {
    margin-top: 25px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-stack {
    width: min(88vw, 440px);
  }

  .display {
    font-size: clamp(43px, 12vw, 62px);
  }

  html[lang="ja"] .display {
    font-size: clamp(34px, 9.6vw, 52px);
  }

  .marquee-band {
    gap: 16px;
  }

  .marquee-row,
  .marquee-track {
    gap: 16px;
  }

  .work-card {
    border-radius: 4px;
    padding: 6px 6px 8px;
  }

  .work-card img {
    height: clamp(150px, 38vw, 210px);
  }

  .showcase {
    gap: 18px;
  }

  .showcase-card {
    border-radius: 20px;
  }

  .showcase-copy {
    padding: 32px 26px 36px;
  }

  .chapter-title {
    font-size: 39px;
  }

  html[lang="ja"] .chapter-title {
    font-size: 32px;
  }

  .stroke-sheet {
    width: min(68%, 320px);
    margin-right: 16%;
  }

  .ink-card {
    right: 5%;
    width: min(34%, 190px);
  }

  .mix-stage {
    gap: 22px;
    padding: 34px 22px 40px;
  }

  .wipe {
    height: 110px;
    border-radius: 12px;
  }

  .colour-art img {
    max-height: 250px;
  }

  .interlude {
    height: clamp(400px, 68vh, 560px);
  }

  .studio-flow {
    border-top: 0;
    grid-template-columns: 1fr;
  }

  .flow-step,
  .flow-step:first-child,
  .flow-step:last-child {
    min-height: 0;
    border-top: 1px solid var(--line-dark);
    border-right: 0;
    padding: 26px 0 34px;
  }

  .flow-step {
    display: grid;
    align-items: start;
    grid-template-columns: 72px 1fr;
  }

  .flow-number {
    font-size: 52px;
  }

  .flow-step h3 {
    margin-top: 5px;
    font-size: 29px;
  }

  .flow-step p {
    grid-column: 2;
    margin-top: 8px;
  }

  .studio-safety {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-item {
    grid-template-columns: 46px 1fr;
  }

  .faq-list summary {
    min-height: 70px;
    font-size: 15px;
  }

  .join-title {
    font-size: clamp(48px, 13vw, 70px);
  }

  html[lang="ja"] .join-title {
    font-size: clamp(38px, 10.5vw, 58px);
  }

  .waitlist {
    align-items: stretch;
    flex-direction: column;
  }

  .waitlist .button {
    width: 100%;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .nav-cta {
    display: none;
  }

  .hero-stack {
    width: 100%;
  }

  .stage-badge {
    right: 14px;
    bottom: 14px;
  }

  .proof-item {
    display: block;
  }

  .proof-item > span {
    display: block;
    margin-bottom: 13px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee-row {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .marquee-track {
    animation: none;
  }

  .marquee-track[aria-hidden="true"] {
    display: none;
  }

  [data-parallax] {
    transform: none;
  }

  .stack-card {
    transform: rotate(var(--rot, 0deg));
  }

  .ink-card {
    transform: rotate(-3deg);
  }
}
