:root {
  --night: #000000;
  --ink: #ffffff;
  --paper: #000000;
  --cream: #111111;
  --dust: #b8b8b8;
  --line: rgba(255, 255, 255, 0.14);
  --muted: #9a9a9a;
  --stitch: #ffd100;
  --flood: #ffd100;
  --pine: #8fd9a8;
  --white: #ffffff;
  --on-gold: #000000;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --header-bar: 76px;
  --header: calc(var(--header-bar) + var(--safe-top));
  --wrap: 1180px;
  --gutter: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", sans-serif;
  --serif: "Pretendard Variable", Pretendard, "Apple SD Gothic Neo", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 20px);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

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

h1,
h2,
h3 {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

ul {
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--stitch);
  color: #fff;
}

.skip:focus {
  top: 12px;
}

.wrap {
  width: min(var(--wrap), calc(100% - (max(var(--gutter), var(--safe-left)) + max(var(--gutter), var(--safe-right)))));
  margin-inline: auto;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--stitch);
}

.display {
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.serif {
  font-family: var(--font);
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.02em;
}

.accent {
  color: var(--flood);
  font-style: normal;
  font-weight: 700;
}

.line-head {
  white-space: nowrap;
}

.muted {
  color: var(--muted);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  isolation: isolate;
  height: var(--header);
  padding-top: var(--safe-top);
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
  color: var(--white);
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(220px, 58vw);
  mix-blend-mode: lighten;
}

.logo-mark {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  position: relative;
  font-size: 17px;
  font-weight: 500;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--stitch);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-fill,
.btn-gold {
  background: var(--flood);
  color: var(--on-gold);
}

.btn-fill:hover,
.btn-gold:hover {
  background: #ffe500;
}

.btn-ghost {
  border-color: currentColor;
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
}

.header-cta {
  font-size: 15px;
  min-height: 44px;
  padding: 0 22px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle span {
  top: 21px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.nav-open .menu-toggle span {
  background: transparent;
}

.nav-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.page-home .site-header,
.site-header {
  color: var(--white);
}

.nav-open .site-header {
  color: var(--white);
}

.home-stage {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: #000;
}

.hero {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 100svh;
  color: var(--white);
  background: #000;
  padding: calc(var(--header) + 12px) 0 28px;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.15s ease;
}

.hero-slides img.is-on {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.58) 48%, rgba(0, 0, 0, 0.78) 100%);
}

.hero-copy-block {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  min-height: 100%;
}

.hero h1 {
  margin: 0;
  font-size: clamp(32px, 5.2vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.hero h1 em,
.hero h1 .accent {
  display: inline;
  margin: 0;
  color: var(--flood);
  font-family: var(--font);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.hero-copy {
  max-width: 28ch;
  margin-top: 28px;
  color: rgba(250, 247, 241, 0.72);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-actions .btn {
  min-height: 56px;
  padding: 0 32px;
  font-size: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.field {
  position: relative;
  min-height: 380px;
  height: 100%;
}

.diamond {
  position: absolute;
  inset: 10% 8%;
  width: auto;
  height: auto;
}

.diamond-base,
.diamond-run {
  fill: none;
}

.diamond-base {
  stroke: rgba(250, 247, 241, 0.28);
  stroke-width: 1.2;
}

.diamond-run {
  stroke: var(--flood);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 14 86;
  animation: round-bases 5.5s linear infinite;
}

.node {
  fill: var(--cream);
}

.node.home {
  fill: var(--stitch);
}

@keyframes round-bases {
  to {
    stroke-dashoffset: -100;
  }
}

.ticker {
  flex-shrink: 0;
  overflow: hidden;
  border-block: 1px solid rgba(250, 247, 241, 0.12);
  background: var(--night);
  color: var(--dust);
}

.ticker-track {
  display: flex;
  width: max-content;
  padding: 14px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: tick 28s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  white-space: nowrap;
}

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

.section {
  padding: 108px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 52px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 36px 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}

a.panel:hover {
  transform: translateY(-4px);
}

.panel-gold {
  background:
    linear-gradient(165deg, rgba(232, 184, 109, 0.42), rgba(250, 247, 241, 0.92) 72%),
    var(--cream);
  border-color: rgba(232, 184, 109, 0.48);
}

.panel h3 {
  margin: 16px 0 12px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.section-head.section-head-solo {
  display: block;
  text-align: center;
  margin-bottom: 64px;
}

.section-head.section-head-solo h2 {
  font-size: clamp(28px, 4.4vw, 44px);
}

.concern-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.concern-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--flood);
}

.concern-mark svg {
  width: 100%;
  height: 100%;
}

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

.text-link {
  display: inline-flex;
  width: fit-content;
  border-bottom: 1px solid var(--ink);
  font-weight: 500;
}

.page-home .home-manifesto {
  padding: 200px 0 160px;
  text-align: center;
}

.page-home .home-manifesto .wrap {
  container-type: inline-size;
}

.page-home .home-manifesto h2,
.page-home .home-manifesto p.manifesto-close {
  font-size: min(64px, calc(100cqw / 19));
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--ink);
  white-space: nowrap;
}

.page-home .home-manifesto p {
  max-width: none;
  margin: 28px auto 0;
  color: var(--ink);
  font-size: min(18px, calc(100cqw / 36));
  line-height: 1.75;
  white-space: nowrap;
  word-break: keep-all;
}

.page-home .home-manifesto p + p {
  max-width: 20em;
  margin-top: 48px;
  color: var(--ink);
  font-weight: 500;
}

.page-home .home-manifesto p.manifesto-setup {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.4em;
  width: 100%;
  max-width: none;
  white-space: nowrap;
  font-size: calc(100cqw / 34);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--ink);
}

.page-home .home-manifesto p.manifesto-close {
  max-width: none;
  font-weight: 700;
}

.page-home .home-manifesto strong {
  color: var(--flood);
  font-weight: 700;
}

.page-home .home-concern {
  padding: 96px 0 48px;
}

.page-home .home-concern > .wrap {
  width: min(1080px, calc(100% - (var(--gutter) * 2)));
}

.page-home .home-setup-cut {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: calc(var(--header) + 12px) 24px 18vh;
  text-align: center;
}

.page-home .home-setup-cut h2 {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.05em;
  word-break: keep-all;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.8s var(--ease), opacity 0.8s var(--ease);
}

.page-home .home-setup-cut h2.is-in {
  opacity: 1;
  transform: none;
}

.concern-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.concern-cols article {
  padding: 28px 28px 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
}

.concern-cols h3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.concern-index {
  color: var(--flood);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.concern-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.concern-list li {
  display: block;
  padding: 16px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

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

.concern-list span {
  display: none;
}

.setup-bands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.setup-band {
  display: grid;
  overflow: hidden;
  min-height: 560px;
  border-radius: 28px;
  color: var(--ink);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}

.setup-band:hover {
  transform: translateY(-4px);
}

.setup-band-media {
  position: relative;
  overflow: hidden;
  background: #111;
}

.setup-band-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72);
  transition: transform 0.7s var(--ease);
}

.setup-band.is-team {
  position: relative;
  isolation: isolate;
}

.setup-band.is-team .setup-band-media {
  position: absolute;
  inset: 0;
}

.setup-band.is-team::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 12%, rgba(0, 0, 0, 0.86) 100%);
}

.setup-band.is-team .setup-band-body {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 40px 36px 44px;
  color: #fff;
}

.setup-band.is-team .setup-band-body p {
  color: rgba(255, 255, 255, 0.78);
}

.setup-band.is-team:hover .setup-band-media img {
  transform: scale(1.05);
}

.setup-band.is-brand {
  grid-template-rows: auto 1fr;
  background: var(--cream);
}

.setup-band.is-brand .setup-band-body {
  padding: 36px 32px 8px;
}

.setup-band.is-brand .setup-band-media {
  margin: 16px 20px 20px;
  border-radius: 18px;
  min-height: 220px;
}

.setup-band.is-brand:hover .setup-band-media img {
  transform: scale(1.04);
}

.setup-band-body h3 {
  margin: 0 0 10px;
  color: var(--flood);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.setup-band-sub {
  margin: 0 0 12px;
  color: inherit;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.3;
  word-break: keep-all;
}

.setup-band-body p {
  color: var(--muted);
  word-break: keep-all;
}

.setup-band-go {
  display: inline-block;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.setup-band-go::after {
  content: " →";
  color: var(--stitch);
}

.home-tools {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}

.home-tools-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 480px;
  border-radius: 28px;
  background: #1b1713;
}

.home-tools-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.home-tools-list {
  display: flex;
  flex-direction: column;
}

.home-tool {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
}

.home-tool:first-child {
  border-top: 1px solid var(--line);
}

.home-tool:hover {
  transform: translateX(6px);
}

.home-tool span {
  font-family: var(--mono);
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--flood);
}

.home-tool h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.04em;
}

.home-tool p {
  color: var(--muted);
}

.home-tools-list .text-link {
  margin-top: 28px;
}

.page-hero {
  padding: calc(var(--header) + 72px) 0 48px;
}

.page-project .page-hero {
  padding-bottom: 28px;
}

.page-project main {
  padding-top: var(--header);
}

.project-nav {
  position: sticky;
  top: var(--header);
  z-index: 20;
  padding: 16px 0 14px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-top: 14px;
  font-size: clamp(40px, 7vw, 76px);
}

.page-hero .wrap > p {
  max-width: 52ch;
  margin-top: 18px;
}

.kind-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: none;
  margin-top: 0;
}

.kind-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--cream);
  color: inherit;
  opacity: 0.5;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), background 0.3s var(--ease), opacity 0.3s var(--ease);
}

.kind-card:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.kind-card.is-on {
  opacity: 1;
  border-color: var(--flood);
  background: rgba(255, 215, 0, 0.1);
}

.kind-card .kicker {
  display: inline-flex;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--flood);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.kind-card .kicker::before {
  display: none;
}

.kind-card.is-team .kicker {
  background: var(--flood);
  color: var(--on-gold);
}

.kind-card.is-brand .kicker {
  border: 1px solid var(--flood);
}

.kind-card h2 {
  margin: 14px 0 0;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.04em;
  line-height: 1.32;
}

.kind-card h2 + p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 28px;
}

.filter-bar {
  position: sticky;
  top: var(--header);
  z-index: 20;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.filter-bar .filters {
  margin: 0;
  padding: 12px 0;
}

.filter {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.filter[data-filter="team"],
.filter[data-filter="brand"] {
  letter-spacing: 0.1em;
}

.filter.is-on,
.filter:hover {
  background: var(--flood);
  color: var(--on-gold);
  border-color: var(--flood);
}

.case-chapter {
  padding: 12px 0 96px;
  scroll-margin-top: calc(var(--header) + 16px);
  background: var(--paper);
}

.cases {
  display: grid;
  gap: 0;
}

.case {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header) + 160px);
}

.case:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.case.is-flip {
  grid-template-columns: 0.95fr 1.05fr;
}

.case.is-flip .case-art {
  order: 2;
}

.case-art {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #1b1713;
}

.case-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.case:hover .case-art img {
  transform: scale(1.04);
}

.case-body {
  padding: 8px 8px 8px 0;
}

.case.is-flip .case-body {
  padding: 8px 0 8px 8px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--flood);
  color: var(--on-gold);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.case[data-kind="brand"] .tag {
  background: transparent;
  color: var(--flood);
  border: 1px solid var(--flood);
}

.case-index {
  margin-bottom: 16px;
  font-family: var(--mono);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--flood);
}

.case-body h3 {
  margin: 14px 0 10px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.did {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 22px;
}

.did li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--dust);
}

.work-label {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--flood);
}

.tools-grid {
  display: grid;
  gap: 28px;
}

.tool {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  border-radius: 32px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.tool-index {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 36px;
}

.tool-index a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
}

.tool-index a:hover,
.tool-index a:focus-visible {
  border-bottom-color: var(--ink);
}

.tool-index span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--stitch);
}

.page-tools .tool-chapter:first-of-type {
  padding-top: calc(var(--header) + 48px);
}

.page-tools .tools-extend {
  padding: 28px 0 88px;
}

.tool-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.tool-pick {
  display: grid;
  overflow: hidden;
  border-radius: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}

.tool-pick:hover {
  transform: translateY(-4px);
}

.tool-pick-night {
  background: var(--night);
  color: var(--ink);
  border-color: rgba(250, 247, 241, 0.12);
}

.tool-pick-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: #1b1713;
}

.tool-pick-night .tool-pick-media {
  background: #161310;
}

.tool-pick-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.tool-pick:hover .tool-pick-media img {
  transform: scale(1.05);
}

.tool-pick-media .card-stage {
  width: min(220px, 64%);
  height: auto;
  aspect-ratio: 63 / 88;
  transition: transform 0.5s var(--ease);
}

.tool-pick-media .playing-card {
  width: 100%;
  height: 100%;
  padding: 20px 16px;
}

.tool-pick-media .playing-card strong {
  margin-top: 18px;
  font-size: 20px;
}

.tool-pick:hover .card-stage {
  transform: rotate(-3deg) translateY(-6px);
}

.tool-pick-body {
  display: grid;
  gap: 8px;
  padding: 28px 28px 32px;
}

.tool-pick-body .kicker {
  color: var(--stitch);
}

.tool-pick-body .kicker span {
  font-family: var(--serif);
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}

.tool-pick-night .tool-pick-body .kicker {
  color: var(--flood);
}

.tool-pick-body h2 {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.tool-pick-body p {
  color: var(--muted);
  max-width: none;
  margin: 0;
}

.tool-pick-night .tool-pick-body p {
  color: rgba(250, 247, 241, 0.62);
}

.tool-pick-go {
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
}

.tool-pick-go::after {
  content: " →";
  color: var(--stitch);
}

.tool-pick-night .tool-pick-go::after {
  color: var(--flood);
}

.tool-chapter {
  padding: 88px 0 108px;
  scroll-margin-top: calc(var(--header) + 16px);
}

.tool-chapter-night {
  background: var(--night);
  color: var(--ink);
}

.tool-chapter-head {
  margin-bottom: 48px;
}

.tool-chapter-head h1,
.tool-chapter-head h2 {
  margin-top: 10px;
  font-size: clamp(48px, 8vw, 92px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.tool-chapter-en {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--muted);
}

.tool-chapter-night .tool-chapter-en,
.tool-chapter-night .kicker {
  color: var(--flood);
}

.tool-chapter-body {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

.tool-chapter-body.is-flip {
  grid-template-columns: 1.22fr 0.78fr;
}

.tool-chapter-body.is-flip .tool-portrait {
  order: 2;
}

.tool-portrait {
  position: sticky;
  top: calc(var(--header) + 28px);
  overflow: hidden;
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 28px;
  background: #1b1713;
}

.tool-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-portrait-card {
  display: grid;
  place-items: center;
  background: #161310;
}

.tool-portrait-card .card-stage {
  width: min(230px, 62%);
  height: auto;
  aspect-ratio: 63 / 88;
}

.tool-portrait-card .playing-card {
  width: 100%;
  height: 100%;
}

.tool-lead {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.tool-spec {
  display: grid;
  gap: 18px;
  margin: 28px 0 8px;
}

.tool-spec div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.tool-spec dt {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.tool-chapter-night .tool-spec div {
  border-top-color: rgba(250, 247, 241, 0.16);
}

.tool-chapter-night .tool-spec dt,
.tool-chapter-night .note,
.tool-chapter-night .tool-steps p {
  color: rgba(250, 247, 241, 0.62);
}

.tool-chapter-night .note {
  background: rgba(250, 247, 241, 0.08);
}

.tool-chapter-night .chips li,
.tool-chapter-night .tool-questions li {
  border-color: rgba(250, 247, 241, 0.2);
}

.tool-steps {
  display: grid;
  gap: 0;
  margin: 32px 0 8px;
  padding: 0;
  list-style: none;
  counter-reset: tool-step;
}

.tool-steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  counter-increment: tool-step;
}

.tool-steps li::before {
  content: counter(tool-step, decimal-leading-zero);
  grid-row: 1 / span 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--stitch);
  line-height: 1.4;
}

.tool-steps strong {
  font-size: 16px;
  letter-spacing: -0.03em;
}

.tool-steps p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 15px;
}

.tool-chapter-night .tool-steps li {
  border-top-color: rgba(250, 247, 241, 0.16);
}

.tool-chapter-night .tool-steps li::before {
  color: var(--flood);
}

.tool-questions {
  margin-top: 36px;
}

.tool-questions ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.tool-questions li {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.tool-chapter-night .tool-questions li {
  background: rgba(250, 247, 241, 0.06);
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.tool-visual {
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  background: #ece6da;
}

.tool-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.playing-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(230px, 70%);
  aspect-ratio: 63 / 88;
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 18px 22px 40px rgba(0, 0, 0, 0.22);
  transform: rotate(-8deg);
}

.playing-card.back {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(9deg) translate(16px, 8px);
  opacity: 0.45;
}

.card-stage {
  position: relative;
  width: 260px;
  height: 340px;
  display: grid;
  place-items: center;
}

.card-whor {
  background: #111;
  color: #fff;
  border: 1px solid var(--line);
}

.card-root {
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(255, 215, 0, 0.55);
}

.card-root em {
  color: var(--flood);
}

.playing-card small {
  font-family: var(--mono);
  letter-spacing: 0.14em;
  font-size: 10px;
  color: var(--flood);
}

.playing-card strong {
  display: block;
  margin-top: 28px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: #fff;
}

.playing-card em {
  display: block;
  margin-top: auto;
  font-family: var(--font);
  font-style: normal;
  font-weight: 700;
  color: var(--flood);
}

.tool-copy {
  padding: 0;
}

.tool-copy h2 {
  margin: 12px 0 14px;
  font-size: clamp(32px, 4vw, 44px);
}

.tool-copy .btn {
  margin-top: 0;
}

.tool-copy > .btn {
  margin-top: 28px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.chips li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
}

.note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
}

.page-about .about-main {
  padding-top: calc(var(--header) + 48px);
}

.page-about .about-main > .wrap > .kicker {
  margin-bottom: 40px;
}

.about-stats {
  padding: 80px 0;
  background: var(--night);
  color: var(--cream);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.about-founder + .about-stats-grid {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.about-founder + .about-stats-grid .about-stat {
  padding: 8px 32px;
}

.about-founder + .about-stats-grid .about-stat strong {
  font-size: clamp(44px, 6vw, 72px);
}

.about-stat {
  padding: 8px 48px;
  border-left: 1px solid rgba(250, 247, 241, 0.12);
}

.about-stat:first-child {
  padding-left: 0;
  border-left: 0;
}

.about-stat strong {
  display: block;
  color: var(--flood);
  font-family: var(--font);
  font-size: clamp(56px, 8vw, 96px);
  font-style: normal;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.about-stat span {
  display: block;
  margin-top: 18px;
  color: var(--dust);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-stat p {
  margin-top: 8px;
  color: rgba(250, 247, 241, 0.62);
  font-size: 15px;
}

.about-founder {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: start;
}

.about-founder-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: var(--night);
}

.about-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-founder-copy blockquote {
  margin: 0 0 28px;
  font-family: var(--font);
  font-size: clamp(28px, 3.6vw, 44px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -0.04em;
}

.about-founder-who {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

.about-founder-bio {
  max-width: 42ch;
  margin-top: 18px;
  color: var(--muted);
}

.about-founder-bio p + p {
  margin-top: 16px;
}

.contact-hero {
  position: relative;
  isolation: isolate;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("../assets/images/문의하기/문의하기대체.png") center / cover no-repeat;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.62);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border-radius: 28px;
  background: #111;
  border: 1px solid var(--line);
}

label span {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  color: var(--white);
  padding: 14px 14px;
  outline: none;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--flood) 50%), linear-gradient(135deg, var(--flood) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

select option {
  background: #111;
  color: #fff;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--flood);
}

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--muted);
}

.check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.privacy {
  font-size: 13px;
  color: var(--muted);
  max-height: 180px;
  overflow: auto;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--paper);
}

.privacy p + p {
  margin-top: 10px;
}

.privacy strong {
  color: var(--ink);
}

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

.form-status {
  min-height: 24px;
  font-size: 14px;
  font-weight: 600;
}

.form-status.ok {
  color: var(--pine);
}

.form-status.err {
  color: var(--stitch);
}

.cta {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  padding: 64px 40px;
  background: var(--night);
  color: var(--cream);
  text-align: center;
}

.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

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

.cta h2 {
  margin: 12px 0 18px;
  font-size: clamp(28px, 5vw, 44px);
  color: #fff;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: minmax(240px, 28vw) minmax(240px, 28vw);
  gap: 14px;
}

.preview {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 24px;
  min-height: 220px;
  padding: 24px;
  color: var(--cream);
  position: relative;
  transition: transform 0.4s var(--ease);
}

.preview:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.preview:nth-child(2) {
  grid-column: 2 / 4;
}

.preview:nth-child(1) strong {
  font-size: clamp(24px, 2.6vw, 34px);
}

.preview:hover {
  transform: translateY(-4px);
}

.preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.preview:hover img {
  transform: scale(1.05);
}

.preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 12, 10, 0.08), rgba(14, 12, 10, 0.78));
}

.preview strong {
  position: relative;
  z-index: 1;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.preview span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.preview-more {
  color: var(--white);
  background: #111;
  border: 1px solid var(--line);
  justify-content: center;
}

.preview-more::after {
  display: none;
}

.preview-more strong::after {
  content: " →";
  color: var(--flood);
}

.preview-more:hover {
  background: var(--flood);
  color: var(--on-gold);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--stitch);
  outline-offset: 3px;
}

.site-footer {
  padding: 56px 0 calc(48px + var(--safe-bottom));
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 40px;
}

.footer-legal {
  display: flex;
  gap: 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: var(--stitch);
}

.footer-heading {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  max-width: 640px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.footer-meta b {
  margin-right: 8px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-meta a,
.footer-copy a {
  text-underline-offset: 3px;
}

.footer-meta a:hover {
  text-decoration: underline;
}

.footer-copy {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.legal {
  max-width: 72ch;
  display: grid;
  gap: 32px;
  padding-bottom: 80px;
}

.legal h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 15px;
}

.legal p + p {
  margin-top: 10px;
}

.legal ul {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding-left: 1.2em;
  list-style: disc;
}

.legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: up 0.9s var(--ease) forwards;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.16s; }
.d3 { animation-delay: 0.28s; }

@keyframes up {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 18px;
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .nav {
    position: fixed;
    inset: var(--header) 0 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 36px max(24px, var(--safe-right)) calc(48px + var(--safe-bottom)) max(24px, var(--safe-left));
    overflow: auto;
    background: var(--paper);
    color: var(--ink);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.35s var(--ease);
  }

  .nav-open .nav {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav a {
    font-size: 28px;
    font-weight: 700;
  }

  .header-cta {
    display: none;
  }

  .home-stage {
    min-height: 100svh;
  }

  .hero {
    overflow: hidden;
    flex: 1 0 auto;
    padding: calc(var(--header) + 20px) 0 24px;
    min-height: 100svh;
  }

  .hero-slides img {
    object-fit: contain;
    object-position: center;
  }

  .hero h1,
  .line-head {
    white-space: normal;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 52px);
    line-height: 1.18;
  }

  .hero-grid,
  .section-head,
  .split,
  .case,
  .case.is-flip,
  .tool,
  .contact-grid,
  .concern-cols,
  .setup-bands,
  .preview-grid,
  .home-tools,
  .tool-compare,
  .tools-extend-grid,
  .tool-chapter-body,
  .tool-chapter-body.is-flip,
  .about-stats-grid,
  .about-founder {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
    min-height: 0;
  }

  .hero h1 {
    font-size: clamp(32px, 9vw, 52px);
    line-height: 1.18;
  }

  .hero-copy {
    max-width: none;
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .btn {
    min-height: 52px;
    padding: 0 26px;
    font-size: 16px;
  }

  .field {
    width: min(300px, 78%);
    min-height: 0;
    height: auto;
    aspect-ratio: 1;
    margin: 8px auto 0;
  }

  .diamond {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }

  .about-stat {
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid rgba(250, 247, 241, 0.12);
  }

  .about-stat:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .about-founder {
    gap: 28px;
  }

  .about-founder + .about-stats-grid {
    margin-top: 40px;
    padding-top: 8px;
  }

  .about-founder + .about-stats-grid .about-stat {
    padding: 28px 0;
  }

  .about-founder-photo {
    max-width: 420px;
  }

  .section {
    padding: 72px 0;
  }

  .panel {
    padding: 28px 22px;
  }

  .page-home .home-manifesto {
    padding: 160px 0 120px;
  }

  .page-home .home-concern {
    padding: 72px 0 32px;
  }

  .page-about .about-main {
    padding-top: calc(var(--header) + 32px);
  }

  .page-home .home-setup-cut h2 {
    font-size: clamp(28px, 8vw, 48px);
  }

  .concern-cols {
    gap: 16px;
  }

  .concern-cols article {
    padding: 24px 22px 12px;
  }

  .concern-cols h3 {
    font-size: 24px;
    padding-bottom: 16px;
  }

  .concern-head {
    gap: 14px;
  }

  .concern-mark {
    width: 52px;
    height: 52px;
  }

  .concern-list li {
    font-size: 16px;
    padding: 14px 0;
  }

  .setup-bands {
    grid-template-columns: 1fr;
  }

  .setup-band {
    min-height: 0;
  }

  .setup-band.is-team {
    min-height: 460px;
  }

  .setup-band.is-team .setup-band-body,
  .setup-band.is-brand .setup-band-body {
    padding: 28px 22px 30px;
  }

  .setup-band.is-brand .setup-band-media {
    min-height: 200px;
    margin: 8px 16px 16px;
  }

  .preview-grid {
    grid-template-rows: none;
  }

  .preview:nth-child(1),
  .preview:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .preview:nth-child(1) {
    min-height: 280px;
  }

  .home-tools {
    gap: 32px;
  }

  .home-tools-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .tool-copy,
  .form {
    padding: 28px 22px;
  }

  .kind-split {
    margin-top: 0;
    gap: 10px;
  }

  .kind-card {
    padding: 16px 14px 14px;
    border-radius: 18px;
  }

  .kind-card h2 + p {
    display: none;
  }

  .case-chapter {
    padding-bottom: 72px;
  }

  .case-body,
  .case.is-flip .case-body,
  .tool-copy {
    padding: 0;
  }

  .cases {
    gap: 0;
  }

  .case {
    gap: 18px;
    padding: 36px 0;
  }

  .case.is-flip .case-art,
  .tool-chapter-body.is-flip .tool-portrait {
    order: 0;
  }

  .tool-chapter {
    padding: 64px 0 72px;
  }

  .tool-chapter-head {
    margin-bottom: 28px;
  }

  .tool-chapter-head h1,
  .tool-chapter-head h2 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .page-tools .tool-chapter:first-of-type {
    padding-top: calc(var(--header) + 36px);
  }

  .page-tools .tools-extend {
    min-height: 0;
    padding: 12px 0 64px;
  }

  .tool-compare {
    gap: 16px;
    margin-top: 32px;
  }

  .tool-pick-body {
    padding: 22px 22px 26px;
  }

  .tool-pick-media {
    aspect-ratio: 16 / 10;
  }

  .tool-portrait {
    position: static;
    aspect-ratio: 4 / 5;
  }

  .tool-steps li {
    grid-template-columns: 32px 1fr;
  }

  .tool-visual,
  .tool-photo {
    min-height: 280px;
  }

  .case-art {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }

  .cta {
    padding: 52px 28px;
  }

  .page-hero h1 {
    font-size: clamp(32px, 9vw, 56px);
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 16px;
  }

  body {
    font-size: 16px;
  }

  .nav {
    gap: 18px;
    padding: 28px max(20px, var(--safe-right)) calc(40px + var(--safe-bottom)) max(20px, var(--safe-left));
  }

  .nav a {
    font-size: 24px;
  }

  .page-hero {
    padding: calc(var(--header) + 48px) 0 32px;
  }

  .project-nav {
    padding: 8px 0;
  }

  .kind-split {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .kind-card {
    padding: 12px 12px 14px;
    border-radius: 18px;
  }

  .kind-card:hover {
    transform: none;
  }

  .kind-card h2 {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.35;
  }

  .kind-card h2 + p {
    display: none;
  }

  .case-chapter {
    padding-bottom: 56px;
  }

  .case {
    padding: 28px 0;
    scroll-margin-top: calc(var(--header) + 128px);
  }

  .page-hero h1 br,
  .cta h2 br,
  .section-head h2 br {
    display: none;
  }

  .about-stats {
    padding: 48px 0;
  }

  .about-founder + .about-stats-grid {
    margin-top: 32px;
    padding-top: 4px;
  }

  .about-stat strong {
    font-size: clamp(44px, 16vw, 64px);
  }

  .about-founder-photo {
    max-width: none;
    border-radius: 22px;
  }

  .about-founder-copy blockquote {
    font-size: clamp(24px, 7vw, 32px);
    margin: 12px 0 22px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 28px;
  }

  .section-head h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .panel {
    border-radius: 22px;
    padding: 22px 18px;
  }

  .page-home .home-manifesto {
    padding: 128px 0 104px;
  }

  .page-home .home-concern {
    padding: 56px 0 28px;
  }

  .concern-cols article {
    padding: 20px 18px 10px;
    border-radius: 22px;
  }

  .panel h3,
  .case-body h3,
  .home-tool h3 {
    font-size: 22px;
  }

  .case-chapter-head h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .setup-band,
  .home-tools-photo {
    border-radius: 22px;
  }

  .setup-band.is-team {
    min-height: 400px;
  }

  .setup-band.is-team .setup-band-body,
  .setup-band.is-brand .setup-band-body {
    padding: 22px 18px 24px;
  }

  .home-tool {
    grid-template-columns: 40px 1fr;
    padding: 22px 0;
  }

  .home-tool span {
    font-size: 22px;
  }

  .case-art,
  .tool-portrait,
  .tool-pick {
    border-radius: 22px;
  }

  .tool-visual,
  .tool-photo,
  .case-art {
    min-height: 220px;
  }

  .tool-copy,
  .form {
    padding: 22px 18px;
  }

  .case-body,
  .tool-copy {
    padding: 0;
  }

  .tool-copy h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .cta {
    padding: 44px 20px;
    border-radius: 0;
  }

  .cta h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .card-stage {
    width: min(220px, 100%);
    height: 280px;
  }

  .playing-card {
    width: min(190px, 68%);
  }

  .tool-pick-media .card-stage {
    width: min(176px, 56%);
    height: auto;
  }

  .tool-pick-media .playing-card {
    width: 100%;
    height: 100%;
  }

  .preview {
    min-height: 180px;
    border-radius: 18px;
    padding: 20px;
  }

  .site-footer {
    padding: 40px 0 calc(36px + var(--safe-bottom));
    padding-left: var(--safe-left);
    padding-right: var(--safe-right);
  }

  .footer-inner {
    gap: 28px;
  }

  .filters {
    margin: 24px 0 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .page-home .home-setup-cut h2,
  .page-home .home-setup-cut h2.is-in,
  [data-expand],
  [data-expand].is-in {
    opacity: 1;
    transform: none;
  }

  .expand-core,
  [data-expand] .expand-core {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .expand-mid,
  [data-expand] .expand-mid {
    opacity: 1;
    transform: none;
  }

  .expand-drop,
  [data-expand] .expand-drop {
    height: 28px;
  }

  .expand-rays path,
  [data-expand] .expand-rays path {
    stroke-dashoffset: 0;
  }

  .expand-node,
  .expand-out,
  .expand-caption,
  [data-expand] .expand-node,
  [data-expand] .expand-out,
  [data-expand] .expand-caption {
    opacity: 1;
    transform: none;
  }
}

/* HOME: moments mosaic + tools object */
.page-home .home-moments {
  padding-top: 120px;
  padding-bottom: 40px;
  border-top: 1px solid var(--line);
}

.home-moments-head {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.home-moments-head h2 {
  font-size: clamp(32px, 4.6vw, 56px);
}

.home-moments-head p {
  color: var(--muted);
  word-break: keep-all;
}

.moment-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 52px;
  min-height: 780px;
}

.moment {
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
  transition: transform 0.55s var(--ease), z-index 0s;
}

.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.moment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72) 100%);
}

.moment span,
.moment strong {
  position: absolute;
  left: 18px;
  z-index: 1;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.moment span {
  bottom: 42px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--flood);
}

.moment strong {
  bottom: 16px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.moment.m1 {
  grid-column: 1 / 7;
  grid-row: 2 / 12;
  transform: rotate(-3.6deg);
  z-index: 2;
}

.moment.m2 {
  grid-column: 6 / 12;
  grid-row: 1 / 8;
  transform: rotate(4.4deg);
  z-index: 3;
}

.moment.m3 {
  grid-column: 4 / 8;
  grid-row: 9 / 16;
  transform: rotate(-6.2deg);
  z-index: 4;
}

.moment.m4 {
  grid-column: 7 / 11;
  grid-row: 8 / 14;
  transform: rotate(6.8deg);
  z-index: 6;
}

.moment.m5 {
  grid-column: 1 / 4;
  grid-row: 11 / 16;
  transform: rotate(5.2deg);
  z-index: 1;
}

.moment:hover,
.moment.m1:hover,
.moment.m2:hover,
.moment.m3:hover,
.moment.m4:hover,
.moment.m5:hover {
  z-index: 8;
  transform: rotate(0deg) scale(1.03);
}

.moment:hover img {
  transform: scale(1.06);
}

.moment-more {
  grid-column: 8 / 13;
  grid-row: 13 / 16;
  align-self: center;
  justify-self: start;
  margin-left: 18px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--flood);
  padding-bottom: 4px;
}

.moment-more::after {
  content: " →";
  color: var(--flood);
}

.page-home .home-object {
  padding-top: 96px;
  border-top: 1px solid var(--line);
}

.home-object-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.home-object-stage {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 560px;
  border-radius: 28px;
  background: #111;
}

.home-object-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  transition: transform 0.7s var(--ease);
}

.home-object-stage:hover .home-object-photo {
  transform: scale(1.03);
}

.home-object-copy .kicker {
  margin-bottom: 16px;
  color: var(--flood);
}

.home-object-copy .kicker::before {
  background: var(--flood);
}

.home-object-copy h2 {
  margin-bottom: 32px;
  font-size: clamp(32px, 4.2vw, 52px);
}

.home-object-offer {
  display: grid;
  padding: 22px 0 8px;
  border-top: 1px solid var(--line);
}

.home-object-offer h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.home-object-offer p {
  color: var(--muted);
  word-break: keep-all;
}

.home-object-arrow {
  position: relative;
  display: block;
  width: 2px;
  height: 36px;
  margin: 10px 0 10px 18px;
  background: var(--flood);
}

.home-object-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--flood);
  border-bottom: 2px solid var(--flood);
  transform: translate(-50%, 1px) rotate(45deg);
}

.home-object-copy .text-link {
  margin-top: 28px;
}

.expand-kicker {
  justify-content: center;
  margin-bottom: 10px;
  color: var(--flood);
}

.expand-kicker::before {
  background: var(--flood);
}

.expand-lead {
  margin: 0 auto 28px;
  max-width: 22em;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  word-break: keep-all;
}

.expand-board {
  overflow-x: clip;
}

.expand-board.is-tools {
  width: min(760px, 100%);
  margin-inline: auto;
}

.expand-funnel {
  display: grid;
  gap: 0;
}

.expand-sources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.expand-outputs {
  display: grid;
  grid-template-columns: 1fr;
  width: min(520px, 100%);
  margin-inline: auto;
}

.expand-node {
  margin: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.expand-node img {
  width: min(96px, 100%);
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  background: #111;
}

.expand-node:nth-child(1) img {
  transform: rotate(-6deg);
}

.expand-node:nth-child(2) img {
  transform: rotate(2deg);
}

.expand-node:nth-child(3) img {
  transform: rotate(7deg);
}

.expand-node figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.expand-board.is-in .expand-node {
  opacity: 1;
  transform: none;
}

.expand-board.is-in .expand-node:nth-child(1) {
  transition-delay: 0.05s;
}

.expand-board.is-in .expand-node:nth-child(2) {
  transition-delay: 0.14s;
}

.expand-board.is-in .expand-node:nth-child(3) {
  transition-delay: 0.23s;
}

.expand-neck {
  position: relative;
  height: 56px;
  margin: 0;
}

.expand-rays {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.expand-rays path {
  fill: none;
  stroke: var(--flood);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
  transition: stroke-dashoffset 1.05s var(--ease);
}

.expand-board.is-in .expand-rays path {
  stroke-dashoffset: 0;
}

.expand-board.is-in .expand-rays path:nth-child(1) { transition-delay: 0.18s; }
.expand-board.is-in .expand-rays path:nth-child(2) { transition-delay: 0.26s; }
.expand-board.is-in .expand-rays path:nth-child(3) { transition-delay: 0.34s; }

.expand-mid {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease) 0.42s, transform 0.7s var(--ease) 0.42s;
}

.expand-mid strong {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.expand-mid span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.expand-board.is-in .expand-mid {
  opacity: 1;
  transform: none;
}

.expand-drop {
  display: block;
  width: 2px;
  height: 0;
  margin: 8px auto 12px;
  background: var(--flood);
  transition: height 0.7s var(--ease) 0.62s;
}

.expand-board.is-in .expand-drop {
  height: 28px;
}

.expand-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid var(--flood);
  border-radius: 50%;
  background: var(--paper);
  color: var(--flood);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition: opacity 0.6s var(--ease) 0.45s, transform 0.7s var(--ease) 0.45s;
}

.expand-board.is-in .expand-core {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.expand-out {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), border-color 0.3s var(--ease);
}

.expand-out img {
  width: 100%;
  height: 112px;
  object-fit: cover;
  object-position: 50% 38%;
  border-radius: 14px;
  background: #111;
}

.expand-out strong {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.expand-out span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  word-break: keep-all;
}

.expand-out.is-type {
  align-content: center;
  width: min(480px, 100%);
  min-height: 0;
  margin-inline: auto;
  padding: 18px 22px;
  border-color: rgba(255, 215, 0, 0.28);
  text-align: center;
}

.expand-board.is-in .expand-out {
  opacity: 1;
  transform: none;
  transition-delay: 0.78s;
}

.expand-out:hover {
  border-color: var(--flood);
}

.expand-caption {
  max-width: 18em;
  margin: 0 auto 28px;
  font-size: clamp(22px, 3.2vw, 36px);
  text-align: center;
  word-break: keep-all;
}

@media (max-width: 900px) {
  .home-moments-head h2,
  .home-object-copy h2 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .home-object-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-object-stage {
    min-height: 360px;
  }

  .home-object-arrow {
    margin-left: 0;
  }

  .expand-sources,
  .expand-outputs {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .expand-sources {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .expand-node img {
    width: 100%;
    border-radius: 12px;
  }

  .expand-neck {
    height: 44px;
  }

  .expand-caption {
    margin-bottom: 20px;
    font-size: clamp(22px, 6vw, 30px);
  }

  .page-home .home-moments {
    padding-top: 72px;
  }

  .moment-board {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    min-height: 0;
    padding: 18px 4px 28px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .moment,
  .moment.m1,
  .moment.m2,
  .moment.m3,
  .moment.m4,
  .moment.m5 {
    flex: 0 0 min(72vw, 280px);
    height: 360px;
    transform: none;
    scroll-snap-align: start;
  }

  .moment.m1,
  .moment.m3,
  .moment.m5 {
    transform: rotate(-2deg);
  }

  .moment.m2,
  .moment.m4 {
    transform: rotate(2.5deg);
  }

  .moment-more {
    flex: 0 0 auto;
    align-self: center;
    margin-left: 8px;
  }
}

@media (max-width: 600px) {
  .home-moments-head h2 br {
    display: none;
  }

  .moment,
  .moment.m1,
  .moment.m2,
  .moment.m3,
  .moment.m4,
  .moment.m5 {
    flex-basis: 78vw;
    height: 320px;
  }
}
