:root {
  --ink: #172b33;
  --coral: #f06f61;
  --shell: #f7f4ed;
  --green: #3f695c;
  --mist: #bfd8d5;
  --white: #fff;
  --line: rgba(23, 43, 51, 0.18);
  --header-height: 84px;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-en: "Manrope", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--shell);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--shell);
  font-family: var(--font-sans);
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* 日本語の段落ち（文節の途中改行）を抑える */
html {
  /* Chromium: 文節（フレーズ）単位で改行。非対応ブラウザは従来動作にフォールバック */
  word-break: auto-phrase;
  /* 小書き仮名・長音・約物の前後で不自然に切れないようにする */
  line-break: strict;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p,
li,
summary,
dd,
figcaption,
.hero-lead,
.large-copy {
  text-wrap: pretty;
}

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

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

.mobile-break {
  display: none;
}

button {
  color: inherit;
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 4vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  transition: color 0.35s ease, background 0.35s ease, height 0.35s ease;
}

.site-header.scrolled {
  height: 68px;
  color: var(--ink);
  background: rgba(247, 244, 237, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  width: 150px;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}

.site-header.scrolled .brand {
  filter: none;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: grid;
  place-items: center;
  min-width: 112px;
  height: 44px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: hero-in 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes hero-in {
  to {
    transform: scale(1);
  }
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 20, 25, 0.84) 0%, rgba(8, 20, 25, 0.48) 42%, rgba(8, 20, 25, 0.06) 72%),
    linear-gradient(0deg, rgba(8, 20, 25, 0.55), transparent 45%);
}

.hero-content {
  width: min(100%, 1500px);
  padding: 18vh 7vw 10vh;
}

.eyebrow {
  margin: 0 0 24px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

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

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(40px, 4.9vw, 78px);
  line-height: 1.23;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.hero-lead {
  margin: 34px 0 0;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 2;
}

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

.button {
  min-width: 270px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 20px 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-coral {
  background: var(--coral);
  color: var(--white);
}

.button-ink {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.light {
  color: var(--white);
}

.hero-side-note {
  position: absolute;
  right: 3vw;
  bottom: 10vh;
  display: flex;
  align-items: center;
  gap: 16px;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.hero-side-note i {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.7);
}

.creator-float {
  position: absolute;
  top: calc(var(--header-height) + 38px);
  right: 4vw;
  width: 155px;
  height: 155px;
  display: grid;
  place-content: center;
  padding: 20px;
  background: rgba(247, 244, 237, 0.9);
  border-radius: 50%;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  backdrop-filter: blur(8px);
  animation: float 4s ease-in-out infinite;
}

.creator-float span {
  display: block;
  margin-bottom: 7px;
  color: var(--coral);
  font: 700 8px var(--font-en);
  letter-spacing: 0.14em;
}

@keyframes float {
  50% {
    transform: translateY(8px);
  }
}

.intro-numbers {
  display: flex;
  align-items: center;
  padding: 11vh 7vw;
  background: var(--shell);
}

.section-shell {
  width: 100%;
  display: block;
}

.numbers-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 6vh;
}

.numbers-heading h2,
.strengths-top h2,
.use-cases-heading h2,
.flow-heading h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.25;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.numbers-heading > p:last-child,
.use-cases-heading > p:last-child,
.flow-heading > p {
  max-width: 520px;
  margin: 32px 0 0;
  color: rgba(23, 43, 51, 0.72);
  font-size: 15px;
}

.numbers-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -2vh;
}

.numbers-heading h2 {
  white-space: nowrap;
}

.numbers-heading > p:last-child {
  margin: 0;
}

.numbers-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.number-line {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 14px;
  padding: 42px 3vw 36px;
  border-right: 1px solid var(--line);
}

.number-line:first-child {
  padding-left: 0;
}

.number-line:last-child {
  padding-right: 0;
  border-right: 0;
}

.number {
  margin: 0;
  font: 500 clamp(72px, 9vw, 132px)/1 var(--font-en);
  letter-spacing: -0.07em;
}

.number small {
  margin-left: 8px;
  color: var(--coral);
  font-size: 0.28em;
  letter-spacing: 0;
}

.stat-label-en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 43, 51, 0.5);
}

.stat-jp {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(23, 43, 51, 0.8);
}

.about {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 150vh;
  background: var(--ink);
  color: var(--white);
}

.about-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh 5vw 8vh 7vw;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.about-sticky h2 {
  margin: 0;
  font-size: clamp(38px, 3.5vw, 54px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.about-content {
  padding: 13vh 7vw 10vh;
}

.about-copy {
  max-width: 680px;
  margin-bottom: 8vh;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.about-copy .large-copy {
  margin-bottom: 50px;
  color: var(--white);
  font-size: clamp(23px, 2.2vw, 36px);
  line-height: 1.65;
}

.about-photo {
  width: min(100%, 760px);
  margin: 0 0 9vh auto;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ecosystem {
  position: relative;
  width: min(46vw, 650px);
  aspect-ratio: 1;
  margin: 0 auto 11vh;
}

.ecosystem-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
  object-fit: contain;
  pointer-events: none;
}

.ecosystem-center {
  position: absolute;
  inset: 30%;
  display: grid;
  place-items: center;
  text-align: center;
}

.ecosystem-center img {
  width: clamp(94px, 10vw, 150px);
  aspect-ratio: 1;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  filter: none;
  object-fit: cover;
  object-position: 54% 42%;
}

.ecosystem-center strong {
  font: 600 17px var(--font-en);
  letter-spacing: 0.1em;
}

.ecosystem-center span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.ecosystem-node {
  position: absolute;
  display: grid;
  gap: 5px;
  min-width: 145px;
}

.ecosystem-node span {
  color: var(--coral);
  font: 700 10px var(--font-en);
}

.ecosystem-node strong {
  font-size: 16px;
}

.ecosystem-node small {
  color: rgba(255, 255, 255, 0.58);
}

.node-company {
  top: 3%;
  left: 8%;
}

.node-creator {
  right: -4%;
  top: 46%;
}

.node-people {
  bottom: 2%;
  left: 4%;
}

.about-statement {
  margin: 0;
  color: var(--coral);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.strengths {
  padding: 12vh 7vw;
  background: var(--shell);
}

.strengths-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  margin-bottom: 5vh;
}

.strengths-top .eyebrow {
  margin-top: 18px;
}

.strength-row {
  display: grid;
  grid-template-columns: 0.35fr 1.1fr 1fr;
  gap: 5vw;
  align-items: start;
  padding: 52px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.35s ease, color 0.35s ease;
}

.strength-row:last-child {
  border-bottom: 1px solid var(--line);
}

.strength-row:hover {
  padding-left: 18px;
  color: var(--green);
}

.strength-index {
  color: var(--coral);
  font: 600 13px var(--font-en);
}

.strength-row h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 1.45;
  font-weight: 500;
}

.strength-row p {
  max-width: 520px;
  margin: 0;
  color: rgba(23, 43, 51, 0.68);
  font-size: 14px;
}

.service-preview {
  position: relative;
  min-height: 105svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.service-preview-media,
.service-preview-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.service-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-preview-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 20, 25, 0.88), rgba(8, 20, 25, 0.3) 62%, rgba(8, 20, 25, 0.18)),
    linear-gradient(0deg, rgba(8, 20, 25, 0.8), transparent 55%);
}

.service-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6vh 7vw 0;
}

.service-preview-top .eyebrow {
  margin: 0;
}

.service-preview-top a {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 600;
}

.service-preview-copy {
  align-self: center;
  padding: 5vh 7vw;
}

.service-preview-copy > p:first-child {
  margin: 0 0 8px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 600;
}

.service-preview-copy h2 {
  margin: 0 0 30px -0.06em;
  font: 500 clamp(110px, 18vw, 280px)/0.85 var(--font-en);
  letter-spacing: -0.09em;
}

.service-preview-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.service-preview-types {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 18px;
  max-width: 720px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.68);
  font: 700 10px/1 var(--font-en);
  letter-spacing: 0.16em;
}

.service-preview-types i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--coral);
  opacity: 0.85;
}

.service-preview-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 7vw 6vh;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.service-preview-plans a {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 2.5vw;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  transition: background 0.3s ease;
}

.service-preview-plans a:first-child {
  padding-left: 0;
}

.service-preview-plans a:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-preview-plans a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.service-preview-plans span {
  font: 700 10px var(--font-en);
  letter-spacing: 0.14em;
}

.service-preview-plans strong {
  white-space: nowrap;
  font: 500 clamp(44px, 5vw, 76px)/1 var(--font-en);
  letter-spacing: -0.06em;
}

.service-preview-plans small {
  margin-left: 7px;
  color: var(--coral);
  font: 600 11px var(--font-sans);
  letter-spacing: 0;
}

.creators {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--white);
}

.creators-image,
.creators-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.creators-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creators-overlay {
  z-index: -1;
  background: linear-gradient(90deg, rgba(10, 25, 29, 0.88), rgba(10, 25, 29, 0.45) 55%, rgba(10, 25, 29, 0.08));
}

.creators-content {
  width: min(880px, 78%);
  padding: 15vh 7vw 10vh;
}

.creators-content h2 {
  margin: 0;
  font-size: clamp(42px, 4.7vw, 68px);
  line-height: 1.3;
  letter-spacing: -0.05em;
  font-weight: 500;
  white-space: nowrap;
}

.creators-content > p:not(.eyebrow) {
  max-width: 580px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.creator-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 36px;
}

.creator-tags span {
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  font: 600 9px var(--font-en);
  letter-spacing: 0.12em;
}

.use-cases {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 100vh;
  background: var(--white);
}

.use-cases-heading {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12vh 6vw 12vh 7vw;
  background: var(--mist);
}

.use-cases-heading h2 {
  font-size: clamp(38px, 3.7vw, 54px);
  white-space: nowrap;
}

.use-case-list {
  padding: 8vh 0;
}

.use-case-list article {
  min-height: 270px;
  display: grid;
  grid-template-columns: 0.65fr 1.25fr 1fr;
  gap: 3vw;
  align-items: center;
  padding: 55px 7vw 55px 5vw;
  border-bottom: 1px solid var(--line);
}

.use-case-list article > span {
  align-self: start;
  color: var(--coral);
  font: 700 9px var(--font-en);
  letter-spacing: 0.1em;
}

.use-case-list h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: 500;
  line-height: 1.5;
}

.use-case-list p {
  margin: 0;
  color: rgba(23, 43, 51, 0.64);
  font-size: 13px;
}

.case-study {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: var(--white);
}

.case-image,
.case-gradient {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-gradient {
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(7, 17, 21, 0.9), rgba(7, 17, 21, 0.04) 65%),
    linear-gradient(90deg, rgba(7, 17, 21, 0.48), transparent);
}

.case-content {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8vw;
  align-items: end;
  padding: 13vh 7vw 9vh;
}

.case-title h2 {
  margin: 0;
  font-size: clamp(44px, 4.8vw, 68px);
  line-height: 1.3;
  letter-spacing: -0.05em;
  font-weight: 500;
  white-space: nowrap;
}

.case-detail {
  max-width: 560px;
}

.case-category {
  margin: 0 0 22px;
  font-size: 20px;
  font-weight: 600;
}

.case-detail > p:not(.case-category) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.case-metrics div {
  display: grid;
  gap: 4px;
}

.case-metrics strong {
  font-size: 13px;
}

.case-metrics span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.flow {
  display: block;
  min-height: 100svh;
  padding: 0;
  background: var(--shell);
}

.flow-heading {
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(110px, 15vh, 150px) 7vw clamp(72px, 10vh, 100px);
  border-right: 0;
  border-bottom: 1px solid var(--ink);
}

.flow-heading h2 {
  max-width: 900px;
  font-size: clamp(52px, 6.2vw, 90px);
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.flow-heading > p {
  max-width: 620px;
  font-size: clamp(14px, 1.15vw, 17px);
}

.flow-heading .flow-note {
  margin-top: 42px;
  padding-left: 18px;
  border-left: 3px solid var(--coral);
  color: var(--ink);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.flow-list li {
  min-width: 0;
  min-height: clamp(250px, 19vw, 300px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4vh;
  padding: 3.5vh clamp(18px, 1.8vw, 30px) 3vh;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-list li:last-child {
  border-right: 0;
}

.flow-list li > span {
  color: var(--coral);
  font: 500 clamp(32px, 3.2vw, 48px)/1 var(--font-en);
  letter-spacing: -0.05em;
}

.flow-list h3 {
  min-height: 4.8em;
  margin: 0 0 18px;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.6;
}

.flow-list p {
  margin: 0;
  color: rgba(23, 43, 51, 0.66);
  font-size: clamp(10px, 0.8vw, 12px);
  line-height: 1.9;
}

.creator-entry {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--coral);
  color: var(--ink);
  overflow: hidden;
}

.creator-entry-mark {
  display: grid;
  place-items: center;
  position: relative;
}

.creator-entry-mark::before {
  content: "";
  width: 48vw;
  height: 48vw;
  position: absolute;
  border: 1px solid rgba(23, 43, 51, 0.18);
  border-radius: 50%;
}

.creator-entry-mark img {
  position: relative;
  width: min(34vw, 500px);
  aspect-ratio: 4 / 5;
  border-radius: 999px;
  box-shadow: 0 34px 90px rgba(23, 43, 51, 0.2);
  filter: none;
  object-fit: cover;
  object-position: center;
  transform: rotate(-4deg);
}

.creator-entry-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12vh 8vw 12vh 4vw;
}

.creator-entry-content h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.35;
  letter-spacing: -0.05em;
  font-weight: 500;
  white-space: nowrap;
}

.creator-entry-content > p:not(.eyebrow) {
  margin: 30px 0;
  font-size: 14px;
}

.creator-entry-content ul {
  display: grid;
  gap: 12px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.creator-entry-content li::before {
  content: "●";
  margin-right: 12px;
  font-size: 7px;
}

.creator-entry-content .button {
  align-self: flex-start;
}

.creator-entry-content small {
  margin-top: 18px;
  opacity: 0.72;
}

.contact {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 10vw;
  align-items: center;
  padding: 14vh 7vw;
  background: var(--ink);
  color: var(--white);
}

.contact-copy h2 {
  margin: 0;
  color: var(--coral);
  font-size: clamp(50px, 5.2vw, 76px);
  line-height: 1.3;
  letter-spacing: -0.05em;
  font-weight: 500;
  white-space: nowrap;
}

.contact-copy > p:last-child {
  max-width: 620px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.68);
}

.contact-actions {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-link {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 16px;
  font-weight: 600;
  transition: padding 0.25s ease, color 0.25s ease;
}

.contact-link:hover {
  padding: 0 14px;
  color: var(--coral);
}

.contact-link strong {
  font: 400 30px var(--font-en);
}

.contact-link.secondary {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  padding: 9vh 7vw 4vh;
  background: var(--shell);
}

.footer-brand img {
  width: min(260px, 55vw);
}

.footer-brand p {
  margin-top: 18px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 42px;
  margin: 8vh 0;
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font: 600 9px var(--font-en);
  letter-spacing: 0.14em;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    width: 22px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3vh;
    padding: 13vh 8vw 8vh;
    background: var(--shell);
    color: var(--ink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  }

  .mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .mobile-menu a {
    font-size: clamp(20px, 4vw, 34px);
    font-weight: 500;
  }

  .about {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-sticky {
    position: static;
    height: auto;
    padding: 15vh 7vw 8vh;
    border-right: 0;
  }

  .about-content {
    padding-top: 8vh;
  }

  .ecosystem {
    width: min(76vw, 650px);
  }

  .use-cases {
    grid-template-columns: 1fr;
  }

  .use-cases-heading {
    min-height: 70vh;
  }

  .flow {
    min-height: auto;
    padding: 0;
  }

  .flow-heading {
    height: auto;
    min-height: 0;
    padding: clamp(110px, 15vh, 150px) 7vw clamp(72px, 10vh, 100px);
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .flow-list {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
    min-height: 100svh;
    margin: 0 0 10vh;
    width: 100%;
  }

  .flow-list li:nth-child(3) {
    border-right: 0;
  }

  .flow-list li:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .creator-entry {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .brand {
    width: 128px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 20, 25, 0.9) 5%, rgba(8, 20, 25, 0.15) 70%),
      linear-gradient(90deg, rgba(8, 20, 25, 0.35), transparent);
  }

  .hero-content {
    padding: 120px 22px 64px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.2vw, 38px);
    line-height: 1.34;
  }

  .mobile-break {
    display: inline;
  }

  .hero-lead {
    font-size: 13px;
  }

  .desktop-only,
  .hero-side-note {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .creator-float {
    top: 94px;
    right: 18px;
    width: 118px;
    height: 118px;
    font-size: 10px;
  }

  .intro-numbers,
  .strengths {
    padding: 10vh 22px;
  }

  .flow {
    padding: 0;
  }

  .section-shell,
  .flow {
    grid-template-columns: 1fr;
  }

  .numbers-heading,
  .flow-heading {
    position: static;
    margin-bottom: 8vh;
  }

  .numbers-heading {
    display: block;
  }

  .numbers-heading h2,
  .strengths-top h2,
  .use-cases-heading h2,
  .flow-heading h2 {
    font-size: 40px;
    white-space: normal;
  }

  .numbers-heading > p:last-child {
    margin-top: 28px;
  }

  .numbers-list {
    grid-template-columns: 1fr;
  }

  .number-line {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .number-line:last-child {
    border-bottom: 0;
  }

  .number {
    font-size: 66px;
  }

  .about-sticky {
    padding: 9vh 22px 4vh;
  }

  .about-content {
    padding: 3vh 22px 10vh;
  }

  .about-copy {
    margin-bottom: 9vh;
  }

  .about-photo {
    margin: 0 0 10vh;
  }

  .ecosystem {
    width: min(100%, 390px);
    margin-bottom: 14vh;
  }

  .ecosystem-art {
    opacity: 0.82;
    transform: scale(1.04);
  }

  .ecosystem-center {
    inset: 29%;
  }

  .ecosystem-center img {
    width: 88px;
    margin-bottom: 12px;
  }

  .ecosystem-node {
    min-width: 132px;
    gap: 7px;
  }

  .ecosystem-node span {
    font-size: 11px;
  }

  .ecosystem-node strong {
    font-size: 15px;
    line-height: 1.35;
  }

  .ecosystem-node small {
    max-width: 128px;
    font-size: 10px;
    line-height: 1.55;
  }

  .node-company {
    top: 0;
    left: 3%;
  }

  .node-people {
    bottom: -3%;
    left: 0;
  }

  .node-creator {
    right: -1%;
  }

  .about-statement {
    font-size: 44px;
  }

  .strengths-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .strength-row {
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 38px 0;
  }

  .strength-row p {
    grid-column: 2;
  }

  .creators {
    min-height: 820px;
  }

  .service-preview {
    min-height: 900px;
  }

  .service-preview-top {
    padding: 42px 22px 0;
  }

  .service-preview-top a {
    font-size: 10px;
  }

  .service-preview-copy {
    padding: 7vh 22px;
  }

  .service-preview-copy h2 {
    margin-bottom: 34px;
    font-size: clamp(82px, 26vw, 120px);
  }

  .service-preview-copy > p:last-child {
    font-size: 13px;
  }

  .service-preview-types {
    gap: 11px 14px;
    margin-top: 28px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .service-preview-types i {
    width: 4px;
    height: 4px;
  }

  .service-preview-plans {
    grid-template-columns: 1fr;
    margin: 0 22px 40px;
  }

  .service-preview-plans a,
  .service-preview-plans a:first-child,
  .service-preview-plans a:last-child {
    min-height: 94px;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .service-preview-plans a:last-child {
    border-bottom: 0;
  }

  .service-preview-plans strong {
    font-size: 46px;
  }

  .creators-image img {
    object-position: 56% center;
  }

  .creators-overlay {
    background: linear-gradient(0deg, rgba(10, 25, 29, 0.92), rgba(10, 25, 29, 0.08) 78%);
  }

  .creators-content {
    width: 100%;
    padding: 12vh 22px 7vh;
  }

  .creators-content h2 {
    font-size: 42px;
    white-space: normal;
  }

  .use-cases-heading {
    min-height: 52vh;
    padding: 8vh 22px;
  }

  .use-case-list {
    padding: 0;
  }

  .use-case-list article {
    min-height: 245px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 38px 22px;
  }

  .case-study {
    min-height: 900px;
  }

  .case-content {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 13vh 22px 7vh;
  }

  .case-title h2 {
    font-size: 46px;
    white-space: normal;
  }

  .case-metrics {
    gap: 10px;
  }

  .flow-heading {
    height: auto;
    min-height: 0;
    margin-bottom: 0;
    padding: 92px 22px 64px;
    border-bottom: 1px solid var(--ink);
  }

  .flow-heading h2 {
    font-size: 40px;
    line-height: 1.34;
  }

  .flow-list {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    width: auto;
    margin: 0 0 10vh;
    padding: 0;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .flow-list li,
  .flow-list li:nth-child(3) {
    min-height: 145px;
    aspect-ratio: auto;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    display: grid;
    align-items: center;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-list li > span {
    font-size: 13px;
  }

  .flow-list h3 {
    min-height: 0;
    margin-bottom: 8px;
    font-size: 20px;
  }

  .flow-list p {
    font-size: 13px;
  }

  .creator-entry-content h2,
  .contact-copy h2 {
    white-space: normal;
  }

  .creator-entry {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .creator-entry-mark {
    min-height: 42vh;
  }

  .creator-entry-mark::before {
    width: 78vw;
    height: 78vw;
  }

  .creator-entry-mark img {
    width: 60vw;
  }

  .creator-entry-content {
    padding: 6vh 22px 12vh;
  }

  .creator-entry-content h2 {
    font-size: 40px;
  }

  .contact {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 8vh;
    padding: 12vh 22px;
  }

  .contact-copy h2 {
    font-size: 50px;
  }

  .contact-link {
    min-height: 105px;
    font-size: 14px;
  }

  .site-footer {
    padding: 10vh 22px 4vh;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Strengths: lead + feature photo ===== */
.strengths-lead {
  grid-column: 2;
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(23, 43, 51, 0.7);
  font-size: 15px;
}

.strengths-photo {
  margin: 0 0 7vh;
  overflow: hidden;
}

.strengths-photo img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  object-position: center 38%;
  border-radius: 6px;
}

.strengths-photo figcaption {
  margin-top: 14px;
  color: rgba(23, 43, 51, 0.6);
  font-size: 13px;
}

/* ===== Use cases: image heading panel ===== */
.use-cases-heading {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.use-cases-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.use-cases-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-cases-heading::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(7, 17, 21, 0.86), rgba(7, 17, 21, 0.42) 70%, rgba(7, 17, 21, 0.3));
}

.use-cases-heading-inner > p:last-child {
  max-width: 520px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

/* ===== FAQ ===== */
.faq {
  padding: 13vh 7vw;
  background: var(--shell);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 6vw;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 12px);
}

.faq-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.3;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.faq-heading > p {
  max-width: 420px;
  margin: 28px 0 0;
  color: rgba(23, 43, 51, 0.7);
  font-size: 15px;
}

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

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

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 44px 26px 0;
  list-style: none;
  cursor: pointer;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.25s ease;
}

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

.faq-item summary:hover {
  color: var(--green);
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 13px;
  height: 13px;
  margin-top: -6px;
  background:
    linear-gradient(var(--coral), var(--coral)) center/100% 1.5px no-repeat,
    linear-gradient(var(--coral), var(--coral)) center/1.5px 100% no-repeat;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(135deg);
}

.faq-answer {
  padding: 0 44px 28px 0;
}

.faq-answer p {
  margin: 0;
  color: rgba(23, 43, 51, 0.74);
  font-size: 14px;
  line-height: 1.95;
}

.faq-answer a {
  color: var(--green);
  border-bottom: 1px solid currentColor;
}

/* ===== Contact: form layout ===== */
.contact {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  min-height: auto;
  padding: 13vh 7vw;
}

.contact-points {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.contact-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 13px;
  height: 7px;
  border-left: 1.5px solid var(--coral);
  border-bottom: 1.5px solid var(--coral);
  transform: rotate(-45deg);
}

.contact-form-wrap {
  background: var(--shell);
  color: var(--ink);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-size: 13px;
  font-weight: 600;
}

.req {
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(240, 111, 97, 0.14);
  color: var(--coral);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid rgba(23, 43, 51, 0.22);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(240, 111, 97, 0.16);
}

.contact-form ::placeholder {
  color: rgba(23, 43, 51, 0.4);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.7;
  cursor: pointer;
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--coral);
}

.form-check a {
  color: var(--green);
  border-bottom: 1px solid currentColor;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

/* ===== Footer enhancements ===== */
.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6vw;
  align-items: start;
}

.footer-company {
  margin: 26px 0 0;
  display: grid;
  gap: 10px;
  font-size: 12px;
}

.footer-company div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
}

.footer-company dt {
  color: rgba(23, 43, 51, 0.5);
  font-weight: 600;
}

.footer-company dd {
  margin: 0;
}

.footer-company a {
  border-bottom: 1px solid var(--line);
}

.footer-links {
  justify-self: end;
  align-content: start;
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8vh;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
}

.footer-legal a {
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.footer-meta {
  display: flex;
  gap: 24px;
  font: 600 9px var(--font-en);
  letter-spacing: 0.14em;
}

@media (max-width: 1100px) {
  .faq {
    grid-template-columns: 1fr;
    gap: 5vh;
  }

  .faq-heading {
    position: static;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 6vh;
  }
}

@media (max-width: 760px) {
  .strengths-lead {
    grid-column: 1;
    margin-top: 18px;
  }

  .strengths-photo img {
    aspect-ratio: 4 / 3;
  }

  .faq {
    padding: 11vh 22px;
  }

  .faq-item summary {
    padding-right: 40px;
    font-size: 16px;
  }

  .contact {
    padding: 11vh 22px;
  }

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

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 6vh;
  }

  .footer-links {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ===== Voice / testimonials ===== */
.voice {
  padding: 13vh 7vw;
  background: var(--white);
}

.voice-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
  margin-bottom: 6vh;
}

.voice-heading {
  max-width: 720px;
}

.voice-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.voice-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.voice-results {
  margin: 5vh 0 0;
  overflow: hidden;
  border-radius: 16px;
}

.voice-results img {
  width: 100%;
  height: auto;
}

.voice-results figcaption {
  margin-top: 12px;
  color: rgba(23, 43, 51, 0.5);
  font-size: 12px;
}

.voice-heading > p:last-child {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(23, 43, 51, 0.7);
  font-size: 15px;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.voice-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 40px 34px;
  background: var(--shell);
  border-radius: 16px;
}

.voice-quote {
  position: relative;
  margin: 0;
  padding-top: 30px;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 500;
}

.voice-quote::before {
  content: "\201C";
  position: absolute;
  top: -4px;
  left: -4px;
  color: var(--coral);
  font: 700 56px/1 var(--font-en);
}

.voice-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.voice-avatar {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--mist);
}

.voice-person strong {
  display: block;
  font-size: 14px;
}

.voice-person small {
  color: rgba(23, 43, 51, 0.6);
  font-size: 12px;
}

.voice-note {
  margin: 5vh 0 0;
  color: rgba(23, 43, 51, 0.5);
  font-size: 12px;
}

@media (max-width: 760px) {
  .voice {
    padding: 11vh 22px;
  }

  .voice-top {
    grid-template-columns: 1fr;
    gap: 4vh;
    margin-bottom: 5vh;
  }

  .voice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .voice-card {
    padding: 32px 26px;
    gap: 26px;
  }
}

/* ===== English-dominant section titles ===== */
.title-en {
  display: block;
  margin: 0 0 16px;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

h2.title-sub {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  white-space: normal;
  font-weight: 600;
}

.numbers-heading .title-en {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.strengths-top {
  display: block;
}

.strengths-top .strengths-lead {
  margin-top: 18px;
}

/* Win over section body-paragraph rules that also match the title <p> */
.flow-heading > p.title-en,
.faq-heading > p.title-en,
.creators-content p.title-en,
.creator-entry-content p.title-en {
  max-width: none;
  margin: 0 0 16px;
  font-size: clamp(40px, 6.4vw, 104px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: inherit;
}

@media (max-width: 760px) {
  .title-en {
    font-size: clamp(38px, 12vw, 60px);
  }

  .flow-heading > p.title-en,
  .faq-heading > p.title-en,
  .creators-content p.title-en,
  .creator-entry-content p.title-en {
    font-size: clamp(38px, 12vw, 60px);
  }

  h2.title-sub {
    font-size: 24px;
  }
}

/* ===== Legal pages (privacy / tokushoho) ===== */
.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 8vh) 7vw 12vh;
}

.legal-page .eyebrow {
  color: var(--coral);
}

.legal-page h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.legal-note {
  margin: 0 0 6vh;
  padding: 16px 20px;
  border-left: 3px solid var(--coral);
  background: rgba(240, 111, 97, 0.08);
  font-size: 13px;
  line-height: 1.8;
}

.legal-page h2 {
  margin: 5vh 0 14px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
}

.legal-page p,
.legal-page li {
  color: rgba(23, 43, 51, 0.82);
  font-size: 15px;
  line-height: 1.95;
}

.legal-page ul {
  padding-left: 1.2em;
}

.legal-table {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.legal-table th {
  width: 34%;
  color: rgba(23, 43, 51, 0.6);
  font-weight: 600;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 7vh;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
