/* Stitchify · shared static LP styles. Fonts are supplied by assets/fonts.css. */
:root {
  --purple: #4e35e8;
  --purple-hover: #3d27c4;
  --lime: #a3e635;
  --orange: #f97316;
  --ink: #1a1a2e;
  --muted: #6b7280;
  --paper: #fff;
  --off-white: #fafafb;
  --line: #e5e5ec;
  --soft-purple: #f2f0ff;
  --radius: 16px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-h: 67px;
  --content: 1184px;
  --font: "Hind", "Noto Sans JP", sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
:lang(ja) { line-break: strict; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; text-underline-offset: 5px; }
button, input, summary { font: inherit; }
figure, p, h1, h2, h3, ol { margin: 0; }
h1, h2, h3 { font-weight: 600; line-height: 1.45; text-wrap: pretty; }
h1 { letter-spacing: -.025em; }
h2 { font-size: clamp(28px, 3.05vw, 42px); letter-spacing: -.025em; }
h3 { font-size: 19px; letter-spacing: -.01em; }
p { text-wrap: pretty; }
a, p, h1, h2, h3, summary { overflow-wrap: anywhere; }
:lang(en) h1, :lang(en) h2 { line-height: 1.13; letter-spacing: -.035em; }
:lang(en) h3 { line-height: 1.35; }
::selection { background: var(--lime); color: var(--ink); }
:focus-visible { outline: 3px solid var(--purple); outline-offset: 5px; }
.button:focus-visible, .hero a:focus-visible, .site-footer a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 5px;
  box-shadow: 0 0 0 8px var(--ink);
}
[id] { scroll-margin-top: 112px; }
.wrap { width: min(var(--content), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.wrap > *, .split > *, .header-inner > *, .detail-layout > *, .faq-layout > * { min-width: 0; }
.section { padding-block: clamp(64px, 7.5vw, 104px); }
.eyebrow {
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
.number { display: inline-block; margin-right: 14px; font-variant-numeric: tabular-nums; }

/* Section-first desktop navigation; a native disclosure on small screens. */
.skip-link {
  position: fixed;
  z-index: 100;
  inset: 8px auto auto 16px;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--purple);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
/* Overlay the dark hero instead of capping it with a white slab.
   After the hero, scroll-driven fill returns the paper header. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgb(15 15 25 / 45%);
  border-bottom: 1px solid transparent;
  color: var(--paper);
}
.header-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding: 10px clamp(20px, 2.5vw, 40px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 0 24px;
}
.logo-link {
  display: inline-flex;
  position: relative;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
  grid-column: 1;
  grid-row: 1;
  width: 130px;
}
.logo, .logo-on-hero { width: 130px; height: 30px; object-fit: contain; }
.site-header .logo { opacity: 0; }
.logo-on-hero {
  position: absolute;
  left: 0;
  pointer-events: none;
  opacity: 1;
}
/* Over-pull by 1px so body paper never seams through at the viewport top. */
.hero, .kinetic-hero { margin-top: calc(-1 * var(--header-h) - 1px); }
@keyframes header-fill {
  from { background-color: transparent; border-bottom-color: transparent; color: #fff; }
  to { background-color: var(--paper); border-bottom-color: var(--line); color: var(--ink); }
}
@keyframes header-mark-paper { from { opacity: 0; } to { opacity: 1; } }
@keyframes header-mark-hero { from { opacity: 1; } to { opacity: 0; } }
@supports (animation-timeline: scroll()) {
  .site-header.scroll-fill {
    background-color: transparent;
    animation: header-fill linear both;
    animation-timeline: scroll();
    animation-range: 0 48vh;
  }
  .site-header .logo.scroll-fill {
    animation: header-mark-paper linear both;
    animation-timeline: scroll();
    animation-range: 0 48vh;
  }
  .logo-on-hero.scroll-fill {
    animation: header-mark-hero linear both;
    animation-timeline: scroll();
    animation-range: 0 48vh;
  }
}
.audience-nav, .section-nav, .language-nav, .header-actions { display: flex; align-items: center; }
.audience-nav { gap: 4px; }
.audience-nav a, .section-nav a, .language-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}
.audience-nav [aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }
.section-nav { grid-column: 2; grid-row: 1; justify-content: center; gap: 14px; }
.section-nav a { padding-inline: 7px; }
.header-actions { grid-column: 3; grid-row: 1; justify-content: end; gap: 12px; }
.header-login { display: inline-flex; align-items: center; min-height: 44px; font-size: 13px; }
.header-utility { grid-column: 3; grid-row: 1; display: flex; justify-content: end; }
.audience-switch { display: inline-flex; align-items: center; min-height: 44px; font-size: 12px; color: var(--muted); }
.audience-switch:hover, .header-login:hover { text-decoration: underline; }
.mobile-menu { display: none; }
.mobile-menu summary {
  display: flex; align-items: center; justify-content: center;
  min-width: 76px; min-height: 44px; padding: 8px 12px;
  border: 1px solid color-mix(in srgb, currentColor 45%, transparent);
  border-radius: 4px; cursor: pointer; list-style: none; font-size: 14px;
  color: inherit;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu[open] summary { background: var(--paper); color: var(--ink); border-color: var(--line); }
.mobile-menu-panel {
  position: absolute; top: 100%; left: var(--gutter); right: var(--gutter);
  display: flex; flex-direction: column; align-items: stretch; gap: 4px;
  max-height: calc(100dvh - 88px); overflow-y: auto; padding: 16px;
  border: 1px solid var(--line); border-radius: 0 0 8px 8px;
  background: var(--paper); color: var(--ink);
  box-shadow: 0 12px 24px rgb(26 26 46 / 8%);
}
.mobile-menu-panel > a { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 12px; font-size: 14px; }
.mobile-menu-panel > .audience-switch { margin-top: 8px; border-top: 1px solid var(--line); padding-top: 12px; font-size: 12px; }
.language-nav { flex-shrink: 0; gap: 2px; }
.language-nav a { min-width: 44px; padding-inline: 6px; }
.language-nav [aria-current="page"] { text-decoration: underline; text-decoration-thickness: 2px; }
.review-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 16px;
  padding: 0 var(--gutter);
  background: var(--off-white);
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
}
.review-bar span { padding-block: 10px; }
.review-bar a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink); }

/* The inset dashed stitch is decorative; the complete pill remains clickable. */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 56px;
  max-width: 100%;
  padding: 16px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--purple);
  color: var(--paper);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  transition: background-color 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.button::before { content: ""; position: absolute; inset: 5px; border: 1px dashed rgb(255 255 255 / 52%); border-radius: inherit; pointer-events: none; }
.button > span { flex-shrink: 0; font-size: 21px; line-height: 1; }
.button.header-cta { min-height: 46px; padding: 11px 21px; gap: 13px; font-size: 13px; }
.cta-hint { margin-top: 15px; font-size: 14px; line-height: 1.9; }
.cta-hint span { font-size: inherit; }
.text-cta:not(.button) { display: inline-flex; align-items: center; min-height: 44px; color: var(--purple); font-weight: 600; text-decoration: underline; }

/* Option 3: fashion as a diverse, full-bleed editorial mosaic. */
.hero { position: relative; isolation: isolate; background: var(--ink); color: var(--paper); }
.hero-art { position: absolute; z-index: -2; inset: 0; display: grid; gap: 6px; overflow: hidden; }
.hero-art img { width: 100%; height: 100%; min-width: 0; min-height: 0; object-fit: cover; object-position: center 35%; }
.option-3 .hero-art { display: block; --hero-gap: 6px; }
/* Each two-panel cycle has twelve distinct photos. Only the complete cycle
   repeats, vertically, so matching photos cannot appear together in the hero. */
.hero-track {
  width: 100%; height: 400%; display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  transform: translate3d(0, -50%, 0);
  animation: hero-drift 120s linear infinite;
  will-change: transform;
}
.hero-sequence { min-width: 0; min-height: 0; display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); }
.hero-mosaic {
  min-width: 0; min-height: 0; display: grid; gap: var(--hero-gap);
  padding: 0 0 var(--hero-gap);
  grid-template-columns: 1.05fr .85fr 1.15fr .95fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}
.hero-mosaic img:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.hero-mosaic img:nth-child(2) { grid-column: 2; grid-row: 1; }
.hero-mosaic img:nth-child(3) { grid-column: 2; grid-row: 2; }
.hero-mosaic img:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }
.hero-mosaic img:nth-child(5) { grid-column: 4; grid-row: 1; }
.hero-mosaic img:nth-child(6) { grid-column: 4; grid-row: 2; }
@keyframes hero-drift {
  from { transform: translate3d(0, -50%, 0); }
  to { transform: translate3d(0, 0, 0); }
}
.hero-motion-toggle { position: absolute; width: 1px; height: 1px; clip-path: inset(50%); overflow: hidden; }
.hero-motion-control {
  position: absolute; top: 18px; right: var(--gutter); z-index: 1;
  display: inline-flex; align-items: center; min-height: 44px; padding: 8px 14px;
  border: 1px solid rgb(255 255 255 / 50%); border-radius: 4px;
  background: rgb(15 15 25 / 70%); color: #fff; font-size: 12px; cursor: pointer;
}
.hero-motion-control .motion-resume { display: none; }
.hero-motion-toggle:checked ~ .hero-art .hero-track { animation-play-state: paused; }
.hero-motion-toggle:checked ~ .hero-motion-control .motion-pause { display: none; }
.hero-motion-toggle:checked ~ .hero-motion-control .motion-resume { display: inline; }
.hero-motion-toggle:focus-visible ~ .hero-motion-control { outline: 3px solid var(--lime); outline-offset: 4px; }
.option-3 .hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(15 15 25 / 88%) 0%, rgb(15 15 25 / 75%) 45%, rgb(15 15 25 / 24%) 100%);
}
.hero-copy {
  min-height: 666px;
  padding-top: calc(84px + var(--header-h));
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero .eyebrow { color: var(--lime); margin-bottom: 23px; }
.hero h1 { max-width: 920px; font-size: clamp(38px, 4.8vw, 66px); font-weight: 600; line-height: 1.35; }
.hero-body { max-width: 550px; margin-block: 25px 29px; font-size: 17px; line-height: 1.9; }
.hero .cta-hint { color: #f0eef5; }
.hero-signature { position: absolute; right: var(--gutter); bottom: 24px; left: var(--gutter); font-size: 11px; letter-spacing: .2em; line-height: 1.5; text-align: right; color: #fff; }
:lang(en) .hero h1 { max-width: 920px; font-size: clamp(42px, 5.2vw, 72px); line-height: 1.08; }
:lang(en) .hero-body { font-size: 18px; line-height: 1.65; }
.option-3 .hero-copy { align-items: center; text-align: center; }
.option-3.audience-brand .hero-copy { min-height: 100vh; min-height: 100dvh; }

/* Option 1: a solid purple field with a separate, generous photo grid. */
.option-1 .hero { background: var(--purple); }
.option-1 .hero-art { inset: 28px 28px 28px 56%; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 10px; border-radius: var(--radius); }
.option-1 .hero-art img { border-radius: 10px; }
.option-1 .hero-copy { padding-right: 49%; min-height: 674px; }
.option-1 .hero h1 { font-size: clamp(36px, 4vw, 56px); }
:lang(en) .option-1 .hero h1 { font-size: clamp(38px, 4.1vw, 58px); line-height: 1.12; }
.option-1 .hero .button { background: var(--purple); border-color: rgb(255 255 255 / 85%); }
.option-1 .hero-signature { left: 56%; right: 28px; bottom: 34px; padding: 10px; background: rgb(15 15 25 / 72%); border-radius: 0 0 10px 10px; text-align: center; }

/* MAKE: typography and a real screen, not an invented feature dashboard. */
.split { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.section-copy > p:not(.eyebrow) { margin-top: 22px; color: var(--muted); }
.spec-explainer { margin-block: 27px; padding-top: 23px; border-top: 1px solid var(--line); }
.spec-explainer h3 { font-size: 15px; margin-bottom: 8px; }
.spec-explainer p { color: var(--muted); font-size: 14px; }
.make-figure { position: relative; padding-block: 30px 0; }
.make-phone-mockup { display: block; width: 100%; max-width: 480px; height: auto; margin-inline: auto; object-fit: contain; }
.make-figure figcaption { margin-top: 17px; color: var(--muted); font-size: 11px; line-height: 1.8; }
.quote-note { display: grid; grid-template-columns: 80px minmax(0, 1fr); gap: 28px; margin-top: 62px; padding-top: 30px; border-top: 1px solid var(--line); }
.quote-note .rule { height: 2px; width: 64px; margin-top: 13px; background: var(--purple); }
.quote-note h3 { margin-bottom: 9px; }
.quote-note p { max-width: 850px; color: var(--muted); font-size: 15px; }

/* Editorial detail spread: image pair on one side, ruled text on the other. */
.detail-section { background: var(--off-white); }
.section-heading { max-width: 770px; margin-bottom: 38px; }
.section-heading > p:not(.eyebrow) { margin-top: 20px; color: var(--muted); }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); align-items: center; gap: clamp(28px, 5vw, 72px); }
.detail-photo { display: grid; grid-template-columns: 1.18fr .82fr; gap: 14px; align-items: center; }
.detail-photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); }
.detail-photo img:nth-child(2) { margin-top: 50px; aspect-ratio: 3 / 4.5; }
.detail-list, .flow-grid { list-style: none; padding: 0; }
.detail-list li { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 7px 16px; padding-block: 23px; border-top: 1px solid var(--line); }
.step-number { color: var(--purple); font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; letter-spacing: .08em; }
.detail-list .step-number { grid-row: 1 / 3; padding-top: 3px; }
.detail-list h3 { font-size: 20px; }
.detail-list p { grid-column: 2; color: var(--muted); font-size: 14px; }
.production-note { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 24px 48px; margin-top: 40px; padding-top: 27px; border-top: 1px solid var(--line); }
.production-note p { color: var(--muted); font-size: 14px; }

/* A quiet pause connects making clothes with the people who wear them. */
.statement { padding-block: clamp(76px, 8vw, 114px); background: #f5f3ef; }
.statement-inner { max-width: 960px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); gap: 0 70px; }
.statement .eyebrow { grid-column: 1 / -1; color: #595660; font-size: 11px; }
.statement h2 { max-width: 13em; font-size: clamp(30px, 3.1vw, 43px); line-height: 1.65; letter-spacing: .015em; }
.statement-body { padding-top: 6px; font-size: 15px; line-height: 2.1; }
.statement-body p + p { margin-top: 10px; }
.statement-body p:nth-child(3) { margin-block: 23px; }
.statement-signature { grid-column: 1 / -1; margin-top: 35px; color: var(--purple); font-size: 16px; letter-spacing: .025em; }
:lang(en) .statement h2 { line-height: 1.25; }
:lang(en) .statement-body { line-height: 1.85; }

/* Option 3: a spare, centered statement — scale and whitespace carry it.
   Chapter pauses match the hero's viewport height instead of reading as bands. */
.option-3 .statement,
.option-3 .final-section,
.option-3 .kinetic-final {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.option-3 .statement { text-align: center; padding-block: clamp(100px, 13vw, 176px); }
.option-3 .statement-inner { display: block; max-width: 900px; margin-inline: auto; }
.option-3 .statement h2 { max-width: none; margin-inline: auto; font-size: clamp(36px, 6.4vw, 78px); line-height: 1.35; letter-spacing: -.015em; }
.option-3 .statement-signature { grid-column: auto; margin-top: 48px; font-size: 14px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--purple); }
:lang(en) .option-3 .statement h2 { line-height: 1.08; letter-spacing: -.03em; }

.showroom-section .section-heading .eyebrow { color: #a5420a; }
.showroom-section .number { color: var(--ink); }
.roles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.role-card { min-width: 0; }
.role-image { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius); margin-bottom: 22px; background: var(--off-white); }
.role-image img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: center 30%; }
.role-image::after { content: ""; position: absolute; z-index: 0; inset: 45% 0 0; background: linear-gradient(transparent, rgb(15 15 25 / 76%)); pointer-events: none; }
.role-image span { position: absolute; z-index: 1; left: 22px; right: 18px; bottom: 17px; color: white; font-size: clamp(25px, 3vw, 40px); font-weight: 600; line-height: 1.25; overflow-wrap: anywhere; }
.role-card .eyebrow { color: #9b410d; margin-bottom: 8px; font-size: 11px; letter-spacing: .08em; }
.role-card h3 { font-size: 21px; margin-bottom: 9px; }
.role-card > p:last-child { color: var(--muted); font-size: 14px; }
.terms-note { margin-top: 38px; padding: 23px 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--off-white); }
.terms-note h3 { font-size: 15px; margin-bottom: 8px; }
.terms-note p { color: var(--muted); font-size: 13px; line-height: 1.9; }
.showroom-section .terms-note { border-top: 2px solid var(--orange); }
.option-3 .roles-grid { align-items: start; }
.option-3 .role-card:nth-child(2) { padding-top: 36px; }
.option-3 .role-card:nth-child(3) { padding-top: 72px; }

.flow-section { background: var(--off-white); }
.flow-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; margin-top: 40px; }
.flow-grid li { min-width: 0; border-top: 1px solid #cfcbdc; padding-top: 18px; }
.flow-grid .step-number { display: block; margin-bottom: 16px; }
.flow-grid h3 { margin-bottom: 13px; font-size: 18px; }
.flow-grid p { color: var(--muted); font-size: 14px; }
.faq-layout { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: 70px; align-items: start; }
.faq-layout h2 { font-size: clamp(27px, 2.6vw, 36px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; padding-block: 21px; cursor: pointer; font-size: 15px; font-weight: 600; line-height: 1.65; list-style: none; }
.faq-list summary::marker { content: ""; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 24px; width: 24px; color: var(--purple); font-size: 26px; font-weight: 400; line-height: 1; text-align: center; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details[open] summary { color: var(--purple); }
.faq-answer { padding: 0 46px 25px 0; font-size: 14px; color: var(--muted); }

.final-section { background: var(--soft-purple); padding-block: clamp(62px, 7vw, 90px); text-align: center; }
.final-section .wrap { max-width: 900px; }
.final-section h2 { max-width: 22em; margin-inline: auto; font-size: clamp(29px, 3.6vw, 46px); text-wrap: balance; }
.final-section h2 + p { margin-top: 20px; margin-bottom: 26px; color: #57536b; }
.final-section .cta-hint { margin-bottom: 0; color: #57536b; }
/* Footer7: brand block beside three named link groups, stacking on narrow. */
.site-footer { padding-block: clamp(56px, 8vw, 104px) 32px; background: var(--ink); color: var(--paper); }
.footer-top { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; }
.footer-brand { display: flex; width: 100%; min-width: 0; flex-direction: column; align-items: flex-start; gap: 24px; }
.footer-logo { display: inline-flex; align-items: center; min-height: 44px; }
.footer-logo .logo { width: auto; height: 32px; }
.footer-description { max-width: 70%; color: #bfc0ce; font-size: 14px; line-height: 1.8; }
.footer-brand .language-nav { gap: 16px; }
.footer-brand .language-nav a { padding-inline: 0; justify-content: flex-start; color: #bfc0ce; }
.footer-sections { display: grid; width: 100%; min-width: 0; gap: 24px; }
.footer-column { min-width: 0; }
.footer-column h3 { margin-bottom: 12px; font-size: 14px; font-weight: 600; line-height: 1.5; letter-spacing: 0; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.footer-column nav, .footer-column ul { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }
.footer-column nav a {
  display: inline-flex; align-items: center; justify-content: flex-start;
  min-width: 44px; min-height: 44px; padding: 8px 0;
  color: #bfc0ce; font-size: 14px; font-weight: 500; text-align: left;
}
.footer-bottom {
  display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
  margin-top: 32px; border-top: 1px solid rgb(255 255 255 / 8%); padding-block: 32px;
  color: #bfc0ce; font-size: 12px; font-weight: 500;
}
.footer-copyright { order: 2; flex-shrink: 0; }
.footer-legal, .footer-legal-pending { order: 1; min-width: 0; }
.footer-legal ul, .footer-legal-pending ul { display: flex; flex-direction: column; gap: 8px; }
.footer-legal a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
@media (min-width: 768px) {
  .footer-sections { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: row; align-items: center; }
  .footer-legal ul, .footer-legal-pending ul { flex-direction: row; flex-wrap: wrap; gap: 8px 20px; }
  .footer-copyright { order: 1; }
  .footer-legal, .footer-legal-pending { order: 2; }
}
@media (min-width: 1024px) {
  .footer-top { flex-direction: row; align-items: flex-start; }
  .footer-sections { gap: clamp(24px, 4vw, 64px); }
}

/* Review landing page uses the same typography and honest review notes. */
.review-index { background: var(--off-white); }
.review-index main { max-width: 1100px; padding-block: 48px 64px; }
.review-index .logo { margin-bottom: 48px; }
.review-index h1 { font-size: clamp(32px, 4.5vw, 52px); margin-bottom: 22px; }
.review-index main > p:not(.eyebrow) { max-width: 720px; color: var(--muted); }
.review-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 40px; }
.review-options article { padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.review-options h2 { font-size: 32px; line-height: 1.2; margin-bottom: 18px; }
.review-options article > p:not(.eyebrow) { color: var(--muted); font-size: 14px; }
.review-options nav { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; }
.review-options .button { font-size: 14px; }
.review-index .terms-note h2 { font-size: 18px; margin-bottom: 12px; }

@media (hover: hover) {
  .button:hover {
    background: var(--purple-hover);
    box-shadow: 0 10px 24px rgb(78 53 232 / 22%);
    filter: brightness(1.06);
  }
  .option-3.audience-creator .button.primary-cta:hover {
    background: #8fd323;
    box-shadow: 0 10px 24px rgb(26 26 46 / 18%);
    filter: none;
  }
  .option-1 .hero .button:hover { background: var(--purple-hover); }
  .audience-nav a:hover { text-decoration: underline; }
  .section-nav a:hover, .language-nav a:hover, .review-bar a:hover, .footer-top a:hover { text-decoration: underline; }
  .faq-list summary:hover { color: var(--purple); }
}

@media (max-width: 1199px) {
  [id] { scroll-margin-top: 138px; }
  .hero-copy { min-height: 620px; }
  .option-1 .hero-copy { padding-right: 47%; }
  .option-1 .hero-art { left: 57%; right: 20px; gap: 7px; }
  .option-1 .hero-signature { left: 57%; right: 20px; font-size: 9px; }
  .option-1 .hero h1 { font-size: clamp(32px, 3.9vw, 46px); }
  .split { gap: 32px; }
}

@media (max-width: 899px) {
  :root { --header-h: 69px; }
  .site-header { position: relative; }
  .header-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 12px var(--gutter); }
  .logo-link { grid-column: 1; grid-row: 1; justify-self: start; }
  .header-utility, .section-nav, .header-actions { display: none; }
  .mobile-menu { display: block; grid-column: 2; grid-row: 1; }
  [id] { scroll-margin-top: 24px; }
  .hero-copy { min-height: 610px; padding-top: calc(72px + var(--header-h)); padding-bottom: 88px; }
  .option-3 .hero::before { background: linear-gradient(90deg, rgb(15 15 25 / 86%), rgb(15 15 25 / 72%) 62%, rgb(15 15 25 / 38%)); }
  .option-1 .hero { display: flex; flex-direction: column; }
  .option-1 .hero-copy { order: 0; min-height: 0; padding: calc(54px + var(--header-h)) 0 36px; }
  .option-1 .hero-art { position: relative; z-index: 0; order: 1; inset: auto; width: calc(100% - var(--gutter) * 2); margin: 0 auto 28px; height: 270px; gap: 8px; grid-template-columns: repeat(6, minmax(0, 1fr)); grid-template-rows: minmax(0, 1fr); }
  .option-1 .hero h1, :lang(en) .option-1 .hero h1 { font-size: clamp(38px, 5.5vw, 52px); }
  .option-1 .hero-signature { position: static; order: 2; margin: -8px var(--gutter) 23px; padding: 0; background: none; text-align: right; }
  .option-1 .hero-body { max-width: 630px; }
  .split, .detail-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .section-copy { max-width: 720px; }
  .make-figure { max-width: 730px; width: 100%; padding-inline: 20px; margin-inline: auto; }

  .quote-note { margin-top: 40px; }
  .detail-photo { max-width: 660px; }
  .detail-photo img { max-height: 390px; }
  .detail-list li { grid-template-columns: 38px minmax(0, 1fr); }
  .statement-inner { gap: 0 36px; }
  .statement h2 { font-size: 31px; }
  .roles-grid { gap: 18px; }
  .role-image span { left: 15px; bottom: 15px; font-size: 28px; }
  .role-card h3 { font-size: 18px; }
  .role-card .eyebrow { font-size: 10px; letter-spacing: .045em; }
  .flow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
  .faq-layout { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .faq-layout h2 { max-width: 650px; }
}

@media (max-width: 639px) {
  :root { --gutter: 22px; }
  body { font-size: 15px; }

  .button.header-cta { min-height: 44px; }
  .review-bar { column-gap: 10px; font-size: 10px; }
  .review-bar span { padding-block: 5px; }
  .hero-copy { min-height: 590px; padding-top: calc(58px + var(--header-h)); padding-bottom: 80px; }
  .hero .eyebrow { margin-bottom: 20px; font-size: 11px; }
  .hero h1 { font-size: clamp(30px, 7.2vw, 44px); line-height: 1.45; letter-spacing: -.035em; }
  :lang(en) .hero h1 { font-size: clamp(36px, 8.5vw, 52px); line-height: 1.1; }
  .hero-body, :lang(en) .hero-body { font-size: 15px; line-height: 1.9; margin-block: 22px 26px; }
  .hero-signature { bottom: 20px; font-size: 9px; letter-spacing: .12em; }
  .option-3 .hero-art { --hero-gap: 4px; }
  .hero-mosaic { grid-template-columns: 1fr 1fr 1fr; }
  .hero-mosaic img:nth-child(n) { grid-column: auto; grid-row: auto; }
  .option-3 .hero::before { background: linear-gradient(180deg, rgb(15 15 25 / 64%), rgb(15 15 25 / 83%) 38%, rgb(15 15 25 / 79%) 100%); }
  .option-1 .hero h1 { font-size: clamp(30px, 7.2vw, 44px); }
  :lang(en) .option-1 .hero h1 { font-size: clamp(35px, 8.4vw, 51px); }
  .option-1 .hero-copy { padding-block: 46px 31px; }
  .option-1 .hero-art { height: 310px; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }
  .option-1 .hero-art img { border-radius: 8px; }
  .hero .button { min-width: min(250px, 100%); }
  .section { padding-block: 60px; }
  .section-heading { margin-bottom: 28px; }
  h2 { font-size: 28px; line-height: 1.55; }
  .section-copy > p:not(.eyebrow), .section-heading > p:not(.eyebrow) { margin-top: 18px; }
  .make-figure { padding: 18px 0 0; }

  .device-frame { padding: 5px; border-radius: 11px; }
  .device-toolbar { height: 25px; }
  .make-figure figcaption { font-size: 11px; }
  .quote-note { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .quote-note .rule { margin-top: 0; width: 44px; }
  .quote-note h3 { font-size: 18px; }
  .detail-photo { gap: 10px; }
  .detail-photo img:nth-child(2) { margin-top: 26px; }
  .production-note { grid-template-columns: minmax(0, 1fr); gap: 12px; margin-top: 24px; }
  .statement { padding-block: 66px; }
  .statement-inner { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .statement h2 { max-width: 14em; font-size: 29px; line-height: 1.65; }
  .statement .eyebrow { font-size: 10px; letter-spacing: .09em; }
  .statement-body { margin-top: 28px; padding-top: 0; font-size: 14px; }
  .statement-signature { margin-top: 27px; }
  .option-3 .statement { padding-block: 74px; }
  .option-3 .statement h2 { font-size: 34px; line-height: 1.3; }
  .option-3 .statement-signature { margin-top: 32px; font-size: 12px; letter-spacing: .18em; }
  .roles-grid { grid-template-columns: minmax(0, 1fr); gap: 35px; }
  .option-3 .role-card:nth-child(n) { padding-top: 0; }
  .role-image { margin-bottom: 18px; }
  .role-image img { aspect-ratio: 4 / 3.7; max-height: 460px; }
  .role-image span { left: 22px; bottom: 20px; font-size: 36px; }
  .role-card .eyebrow { font-size: 11px; letter-spacing: .08em; }
  .role-card h3 { font-size: 21px; }
  .terms-note { padding: 21px; margin-top: 29px; }
  .flow-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; margin-top: 28px; }
  .flow-grid li { display: grid; grid-template-columns: 30px minmax(0, 1fr); gap: 9px 14px; padding-top: 22px; }
  .flow-grid .step-number { grid-row: 1 / 3; margin-bottom: 0; }
  .flow-grid h3 { margin: 0; }
  .flow-grid p { grid-column: 2; }
  .faq-list summary { gap: 16px; padding-block: 20px; font-size: 14px; }
  .faq-answer { padding-right: 16px; }
  .final-section { padding-block: 58px; }
  .final-section h2 { font-size: 29px; }
  .final-section .eyebrow { font-size: 11px; }
  .footer-description { max-width: 100%; }
  .review-options { grid-template-columns: minmax(0, 1fr); }
  .review-index main { padding-block: 32px 44px; }
  .review-index .logo { margin-bottom: 32px; }
}

@media (max-width: 359px) {
  :root { --gutter: 16px; }
  .logo, .logo-on-hero, .logo-link { width: 120px; height: auto; }
  .review-bar { align-items: flex-start; }
  .review-bar span { padding-top: 14px; }
  .review-bar a { max-width: 155px; }
  .hero h1, .option-1 .hero h1 { font-size: 29px; letter-spacing: -.04em; }
  :lang(en) .hero h1, :lang(en) .option-1 .hero h1 { font-size: 35px; }
  .section-nav { gap: 0 4px; }
  .button { padding-inline: 24px; gap: 17px; font-size: 15px; }
  .statement h2 { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *:not(.scroll-fill), *::before, *::after { animation: none !important; transition: none !important; }
  .hero-track { will-change: auto; }
  .hero-motion-toggle, .hero-motion-control { display: none; }
}

@media (forced-colors: active) {
  .site-header { background: Canvas; color: CanvasText; }
  .button { border: 2px solid ButtonText; }
  .audience-nav [aria-current], .language-nav [aria-current] { outline: 1px solid LinkText; }
  .hero::before { background: Canvas !important; }
  .hero { color: CanvasText; }
  .hero .eyebrow, .hero .cta-hint { color: CanvasText; }
}

/* Option 3 / creators: kinetic, reel-first layout. Scoped to this one page only. */
.option-3.audience-creator .button.primary-cta { background: var(--lime); color: var(--ink); }
.option-3.audience-creator .button.primary-cta::before { border-color: rgb(26 26 46 / 30%); }
.option-3.audience-creator .text-cta:not(.button) { color: var(--purple); }
@media (hover: hover) {
  .option-3.audience-creator .button.primary-cta:hover { background: #8fd323; }
}
.kinetic-display { font-family: var(--font-display); font-weight: 400; letter-spacing: -.01em; text-wrap: balance; }
:lang(ja) .kinetic-display { font-family: var(--font); font-weight: 700; letter-spacing: 0; }
:lang(ja) .kinetic-hero .kinetic-display { word-break: auto-phrase; }
.kinetic-display-small { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.15; margin-top: 6px; }

.kinetic-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  background: var(--purple);
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(clamp(64px, 8vw, 96px) + var(--header-h));
  padding-bottom: clamp(84px, 11vw, 132px);
}
.kinetic-hero-inner { display: flex; flex-direction: column; align-items: center; max-width: 720px; position: relative; z-index: 1; }
.kinetic-hero .eyebrow { color: var(--lime); }
.kinetic-hero .kinetic-display { font-size: clamp(48px, 8.6vw, 108px); line-height: 1.02; }
.kinetic-sub { max-width: 520px; margin-block: 22px 30px; font-size: 18px; line-height: 1.6; color: #e7e2fb; }
.kinetic-hero .cta-hint { color: #d3cbf6; }
.stitch-mark { position: absolute; overflow: visible; pointer-events: none; }
.stitch-hero { top: -18px; left: -74px; width: 400px; height: auto; opacity: .55; }

/* The footage is the hero surface itself. A radial scrim keeps the copy
   readable without turning the motion into a solid purple slab. */
.kinetic-hero-media { position: absolute; inset: 0; z-index: 0; margin: 0; }
.kinetic-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 78% 62% at 50% 46%, rgb(78 53 232 / 58%), rgb(78 53 232 / 28%) 72%, rgb(78 53 232 / 18%)),
    linear-gradient(180deg, rgb(15 12 40 / 28%) 0%, rgb(78 53 232 / 22%) 42%, rgb(15 12 40 / 55%) 100%);
  pointer-events: none;
}
.kinetic-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
/* Native chrome stays in the DOM for pause-by-keyboard; it is never drawn. */
.kinetic-video::-webkit-media-controls,
.kinetic-video::-webkit-media-controls-enclosure,
.kinetic-video::-webkit-media-controls-panel,
.kinetic-video::-webkit-media-controls-start-playback-button,
.kinetic-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  opacity: 0 !important;
  appearance: none;
}
.kinetic-video:focus-visible { outline-offset: -6px; }
.kinetic-hero-media > .media-caption {
  position: absolute;
  z-index: 2;
  inset: auto var(--gutter) 14px;
  color: rgb(255 255 255 / 58%);
  text-align: center;
}
/* Motion that starts on its own is removed outright when it is unwelcome;
   the poster keeps the same framing as the first frame. */
@media (prefers-reduced-motion: reduce) {
  .kinetic-hero-media {
    background: var(--ink) url('/assets/editorial-fashion-poster.webp') center / cover no-repeat;
  }
  .kinetic-video { display: none; }
}

.kinetic-gallery { background: var(--off-white); text-align: center; }
.kinetic-gallery .eyebrow { color: var(--purple); }
.tilt-cards { position: relative; display: flex; justify-content: center; align-items: flex-end; flex-wrap: wrap; gap: 18px; margin-top: 68px; padding-bottom: 24px; }
.stitch-gallery { top: 6%; left: 4%; width: 92%; height: 64%; z-index: 0; }
.tilt-card { position: relative; z-index: 1; width: 232px; text-align: left; background: var(--paper); border-radius: 22px; padding: 14px 14px 20px; box-shadow: 0 22px 44px rgb(26 26 46 / 14%); transition: transform 200ms ease; }
.tilt-card.tilt-0 { transform: rotate(-6deg); z-index: 1; }
.tilt-card.tilt-1 { transform: rotate(3deg); z-index: 3; margin-top: -20px; }
.tilt-card.tilt-2 { transform: rotate(-2deg); z-index: 2; }
.tilt-card:hover { transform: rotate(0deg) translateY(-8px); z-index: 4; }
.tilt-photo { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 4; margin-bottom: 12px; background: var(--soft-purple); }
.tilt-photo img { width: 100%; height: 100%; object-fit: cover; }

.tilt-verb { position: absolute; left: 14px; bottom: 10px; color: #fff; font-family: var(--font-display); font-size: 28px; text-shadow: 0 2px 12px rgb(0 0 0 / 45%); }
:lang(ja) .tilt-verb { font-family: var(--font); font-weight: 700; }
.tilt-card .eyebrow { color: var(--purple); font-size: 11px; margin-bottom: 4px; }
.tilt-card h3 { font-size: 18px; margin-bottom: 6px; }
.tilt-card p { color: var(--muted); font-size: 13px; }

.kinetic-bento .eyebrow { color: var(--purple); }
.bento-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: minmax(128px, auto); gap: 18px; margin-top: 48px; }
.bento-tile { position: relative; border-radius: 24px; overflow: hidden; }
.bento-photo-a { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento-perk-1 { grid-column: 3 / 5; grid-row: 1 / 2; }
.bento-perk-2 { grid-column: 3 / 4; grid-row: 2 / 3; }
.bento-perk-3 { grid-column: 4 / 5; grid-row: 2 / 3; }
.bento-perk-4 { grid-column: 1 / 3; grid-row: 3 / 5; }
.bento-photo-b { grid-column: 3 / 5; grid-row: 3 / 5; }
.bento-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento-perk { padding: 22px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.bento-icon svg { width: 26px; height: 26px; }
.bento-perk h3 { font-size: 17px; }
.bento-perk p { font-size: 13px; margin-top: 2px; }
.bento-fill-lime { background: var(--lime); color: var(--ink); }
.bento-fill-purple { background: var(--purple); color: #fff; }
.bento-fill-purple p { color: #d9d3f7; }
.bento-fill-ink { background: var(--ink); color: #fff; }
.bento-fill-ink p { color: #bfc0ce; }
.bento-fill-paper { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.bento-fill-paper p { color: var(--muted); }
.kinetic-bento .terms-note { margin-top: 40px; }

.kinetic-flow .eyebrow { color: var(--purple); }
.kinetic-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.kinetic-steps li { border-top: 2px dashed var(--lime); }

.kinetic-faq .eyebrow { color: var(--purple); }
.kinetic-faq .faq-list { border-top: none; display: flex; flex-direction: column; gap: 12px; }
.kinetic-faq details { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.kinetic-faq summary { padding-inline: 22px; }
.kinetic-faq details[open] { border-color: var(--purple); }
.kinetic-faq .faq-answer { padding-inline: 22px; }

.kinetic-final { background: var(--lime); color: var(--ink); text-align: center; padding-block: clamp(72px, 9vw, 120px); }
.kinetic-final .eyebrow { color: var(--purple); }
.kinetic-final .kinetic-display { font-size: clamp(40px, 6.2vw, 72px); }
.kinetic-final .wrap > p:not(.eyebrow):not(.cta-hint) { max-width: 480px; margin-inline: auto; margin-block: 16px 28px; font-size: 17px; }
.kinetic-final .button.primary-cta { background: var(--ink); color: #fff; }
.kinetic-final .button.primary-cta::before { border-color: rgb(255 255 255 / 28%); }
.kinetic-final .cta-hint { color: rgb(26 26 46 / 72%); }

@media (max-width: 899px) {
  .bento-grid { grid-auto-rows: minmax(118px, auto); }
  .tilt-card { width: 200px; }
}

@media (max-width: 639px) {
  .kinetic-hero { min-height: 100svh; padding-top: calc(56px + var(--header-h)); padding-bottom: 72px; }
  .kinetic-hero .kinetic-display { font-size: clamp(38px, 11vw, 54px); }
  .stitch-hero { display: none; }
  .kinetic-display-small { font-size: 30px; }
  .tilt-cards { margin-top: 48px; }
  .tilt-card { width: 78vw; max-width: 280px; margin-inline: 0 !important; margin-top: 0 !important; transform: rotate(0deg) !important; }
  .tilt-card + .tilt-card { margin-top: 16px !important; }
  .stitch-gallery { display: none; }
  .bento-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: minmax(150px, auto); }
  .bento-photo-a { grid-column: 1 / 3; grid-row: 1 / 2; }
  .bento-perk-1 { grid-column: 1 / 3; grid-row: 2 / 3; }
  .bento-perk-2 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .bento-perk-3 { grid-column: 2 / 3; grid-row: 3 / 4; }
  .bento-perk-4 { grid-column: 1 / 3; grid-row: 4 / 5; }
  .bento-photo-b { grid-column: 1 / 3; grid-row: 5 / 6; }
  .kinetic-steps { grid-template-columns: minmax(0, 1fr); gap: 24px; }
}

/* The middle card fronts the deck, so it stays upright while the two
   surrounding photo cards keep their original rotations. */
.tilt-card.tilt-1, .tilt-card.tilt-1:hover { transform: none; }
.media-player { display: block; width: 100%; max-width: 100%; background: var(--ink); }
.media-caption { font-size: 11px; line-height: 1.4; text-align: left; }
