@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700;800;900&family=Noto+Sans+JP:wght@400;500;600;700;800;900&family=Noto+Sans+Mono:wght@500;600;700&display=swap");

:root {
  --navy-950: #061d30;
  --navy-900: #08243a;
  --navy-800: #173f68;
  --cream-50: #f3eee4;
  --cream-100: #e7decd;
  --gold: #c59a68;
  --gold-soft: #e6c79a;
  --teal: #78c8bd;
  --white: #ffffff;
  --muted-dark: rgba(255, 255, 255, 0.84);
  --muted-light: #5f6f80;
  --line-dark: rgba(255, 255, 255, 0.18);
  --line-light: rgba(8, 36, 58, 0.18);
  --font-sans: "Noto Sans", "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Noto Sans Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--navy-900);
  background: var(--cream-50);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

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

p {
  text-wrap: pretty;
  overflow-wrap: break-word;
}

img,
video,
iframe {
  max-width: 100%;
}

img,
video {
  display: block;
}

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

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 96px), 1460px);
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

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

.section-tight {
  padding-top: 76px;
}

.section-dark {
  color: var(--white);
  background: var(--navy-950);
}

.section-light {
  color: var(--navy-900);
  background: var(--cream-50);
}

.section-cream {
  color: var(--navy-900);
  background: var(--cream-100);
}

.site-cursor {
  display: none;
}

.site-cursor::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.site-cursor.is-visible {
  opacity: 1;
}

.site-cursor.is-hovering {
  width: 58px;
  height: 58px;
  border-color: var(--teal);
  background: rgba(120, 200, 189, 0.12);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 12px 72px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(6, 29, 48, 0.95), rgba(6, 29, 48, 0.66) 74%, transparent);
  backdrop-filter: blur(12px);
}

.brand img {
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a.lang-switch {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.nav-links a:not(.nav-cta)[aria-current="page"] {
  color: var(--white);
}

.nav-cta[aria-current="page"] {
  background: var(--gold-soft);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.nav-links a:not(.nav-cta)[aria-current="page"]::after {
  right: 0;
}

.nav-links a:not(.nav-cta)::after,
.button-quiet::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold-soft);
  transition: right 220ms ease;
}

.nav-links a:hover,
.button-quiet:hover {
  color: var(--white);
}

.nav-links a:hover::after,
.button-quiet:hover::after {
  right: 0;
}

.nav-cta,
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #101d2a;
  background: var(--gold);
  border: 1px solid var(--gold);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  min-height: 54px;
  padding: 0 28px;
}

.button-primary:hover,
.nav-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 32px;
  padding-bottom: 8px;
  color: var(--navy-900);
  border-bottom: 1px solid var(--gold);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.text-link::after {
  content: "↗";
  margin-left: 12px;
  color: var(--gold);
  font-weight: 700;
}

.text-link:hover {
  color: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: transparent;
  border: 1px solid var(--line-dark);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

html[lang="ja"] body {
  font-family: "Noto Sans JP", "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[lang="ja"] .eyebrow,
html[lang="ja"] .story-signal {
  letter-spacing: 0.13em;
}

html[lang="ja"] .hero-title,
html[lang="ja"] .page-title,
html[lang="ja"] .section-heading h2,
html[lang="ja"] .section-intro h2,
html[lang="ja"] .vision-layout h2,
html[lang="ja"] .founder-story h2,
html[lang="ja"] .cta-band h2,
html[lang="ja"] .direct-contact h2 {
  line-height: 1.16;
}

.section-light .eyebrow,
.section-cream .eyebrow,
.page-hero .eyebrow {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: min(100svh, 980px);
  overflow: hidden;
  padding: 164px 0 96px;
  background: var(--navy-950) url("/assets/hero-warehouse-poster.jpg") center / cover no-repeat;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(6, 29, 48, 0.95), rgba(6, 29, 48, 0.78) 44%, rgba(6, 29, 48, 0.42)),
    linear-gradient(180deg, rgba(6, 29, 48, 0.12), rgba(6, 29, 48, 0.94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(720px, 0.96fr) minmax(540px, 0.84fr);
  align-items: center;
  gap: 64px;
}

.hero-title,
.page-title,
.section-heading h2,
.section-intro h2,
.vision-layout h2,
.founder-story h2,
.cta-band h2,
.direct-contact h2 {
  margin-bottom: 30px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-title {
  max-width: 920px;
  font-size: clamp(2.3rem, 2.5vw, 2.8rem);
}

.page-title span,
.section-intro h2 span {
  display: block;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title span + span::before {
  content: "";
}

.hero-lede,
.page-lede,
.section-intro p:not(.eyebrow),
.vision-layout p,
.founder-story p {
  max-width: 780px;
  color: var(--muted-dark);
  font-size: clamp(1.08rem, 1.25vw, 1.38rem);
  line-height: 1.48;
}

.hero-lede span,
.cta-copy p:not(.eyebrow) span {
  display: block;
  white-space: nowrap;
}

.section-light .section-intro p:not(.eyebrow),
.section-cream .section-intro p:not(.eyebrow),
.section-cream .vision-layout p,
.section-cream .founder-story p,
.page-hero .page-lede {
  color: var(--muted-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
}

.button {
  min-width: 220px;
  min-height: 66px;
  padding: 0 34px;
  font-size: 18px;
}

.button-quiet {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: auto;
  color: var(--white);
  font-weight: 900;
}

.product-loop {
  min-width: 0;
  padding: 42px;
  border: 1px solid var(--line-dark);
  background: rgba(8, 36, 58, 0.68);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.product-loop h2 {
  margin-bottom: 42px;
  font-size: 27px;
  line-height: 1.25;
  letter-spacing: 0;
}

.signal-line {
  position: relative;
  height: 72px;
  margin-left: 52px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.signal-line span {
  position: absolute;
  bottom: -9px;
  left: -9px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold);
}

.loop-card {
  padding: 34px;
  border-left: 4px solid var(--gold);
  background: rgba(6, 29, 48, 0.88);
}

.loop-card h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.75rem, 2.2vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.loop-card p:not(.eyebrow) {
  color: var(--muted-dark);
  font-size: 20px;
  line-height: 1.52;
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.loop-step {
  min-width: 0;
  min-height: 138px;
  padding: 22px 10px;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line-dark);
  text-align: left;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease;
}

html[lang="en"] .loop-step {
  padding-inline: 8px;
}

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

.loop-step span,
.story-number,
.industry-card span {
  display: block;
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
}

.loop-step span {
  margin-bottom: 20px;
}

.loop-step strong,
.loop-step small {
  display: block;
}

.loop-step strong {
  margin-bottom: 12px;
  font-size: clamp(0.92rem, 0.82vw, 1rem);
  line-height: 1.18;
}

html[lang="ja"] .loop-step strong {
  font-size: clamp(1.05rem, 1.05vw, 1.24rem);
}

.loop-step small {
  font-size: 15px;
  line-height: 1.35;
  max-width: 18ch;
}

html[lang="ja"] .loop-step small {
  font-size: 13px;
  line-height: 1.32;
  white-space: nowrap;
}

.loop-step.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 3px 0 var(--gold-soft);
}

.loop-step:focus-visible {
  position: relative;
  z-index: 1;
}

.split-layout,
.vision-layout,
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 88px;
  align-items: start;
}

.vision-layout {
  grid-template-columns: minmax(460px, 0.9fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: stretch;
}

.split-layout {
  width: min(calc(100% - 96px), 1720px);
  grid-template-columns: minmax(520px, 0.58fr) minmax(0, 0.88fr);
  gap: 72px;
}

.section-heading h2,
.vision-layout h2,
.founder-story h2,
.direct-contact h2 {
  max-width: 15ch;
  font-size: clamp(2.15rem, 2.8vw, 3.45rem);
}

.vision-layout h2 {
  max-width: 720px;
  font-size: clamp(2.3rem, 2.6vw, 3.15rem);
  line-height: 1.08;
}

.vision-layout h2 span {
  display: block;
  white-space: nowrap;
}

.vision-points {
  display: grid;
  max-width: 680px;
  margin: 34px 0 36px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.vision-points span {
  padding: 15px 0;
  color: var(--muted-light);
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(1.05rem, 1.15vw, 1.25rem);
  font-weight: 650;
  line-height: 1.35;
  white-space: nowrap;
}

.vision-points span:last-child {
  border-bottom: 0;
}

.split-layout .section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.15rem, 2.58vw, 3.25rem);
  line-height: 1.05;
}

html[lang="ja"] .split-layout .section-heading h2 {
  font-size: clamp(2.15rem, 2.62vw, 3.25rem);
}

.split-layout .section-heading h2 span {
  display: block;
  white-space: nowrap;
}

.founder-story {
  margin-bottom: 38px;
}

.founder-story-copy {
  max-width: 920px;
}

.founder-story-copy h2 {
  max-width: 17ch;
}

.founder-video-card {
  max-width: min(calc(100% - 96px), 1280px);
  margin-inline: auto;
  overflow: hidden;
}

.section-intro {
  margin-bottom: 68px;
}

.section-intro h2,
.cta-band h2 {
  max-width: 20ch;
  font-size: clamp(2.15rem, 2.9vw, 3.55rem);
}

.selected-industries {
  padding-top: 104px;
}

.selected-industries .section-intro {
  display: block;
  width: min(calc(100% - 96px), 1460px);
  margin-bottom: 48px;
  margin-inline: auto;
  text-align: left;
}

.selected-industries .section-intro h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 3.35vw, 3.85rem);
  line-height: 1.08;
}

.selected-industries .section-intro h2 span {
  display: inline;
}

.selected-industries .section-intro h2 span + span::before {
  content: " ";
}

.selected-industries .section-intro p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 30px;
  margin-bottom: 0;
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  line-height: 1.5;
}

#how-it-works .section-intro {
  margin-bottom: 54px;
}

#how-it-works .section-intro h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 2.65vw, 3.35rem);
}

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

.stack-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}

.stack-list span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
}

.stack-list h3 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.05vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.stack-list p,
.story-card p:not(.eyebrow),
.industry-card p,
.team-card li,
.locations p,
.locations a,
.direct-contact,
.footer-contact p,
.footer-contact a,
.footer-grid p {
  color: var(--muted-light);
  font-size: 20px;
  line-height: 1.5;
}

.section-dark .industry-card p,
.section-dark .story-card p:not(.eyebrow) {
  color: var(--muted-dark);
}

.vision-lines {
  display: grid;
  align-content: center;
  border-top: 1px solid var(--line-light);
}

.vision-lines article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  min-height: 190px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line-light);
}

.vision-lines span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
}

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

.story-bullets li {
  position: relative;
  padding-left: 16px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.65;
  white-space: nowrap;
}

.story-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.story-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
}

.story-card-wide {
  grid-column: auto;
  border-top: 0;
  border-right: 0;
}

.story-card img,
.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 700ms ease, filter 700ms ease;
}

.story-overlay,
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 29, 48, 0.34), rgba(6, 29, 48, 0.88));
}

.story-content,
.industry-card div {
  position: relative;
  z-index: 2;
}

.story-content {
  min-height: inherit;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 118px 28px 30px;
}

.story-signal {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 26px;
  right: 26px;
  width: auto;
  max-width: none;
  padding: 9px 12px;
  color: var(--gold-soft);
  background: rgba(6, 29, 48, 0.72);
  border: 1px solid rgba(230, 199, 154, 0.58);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.story-signal-left {
  left: 26px;
  right: 26px;
}

.story-signal-right {
  left: 26px;
  right: 26px;
}

.story-number {
  position: static;
  z-index: auto;
  margin: 0 0 18px;
}

.story-number,
.industry-card span {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 96px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
}

.story-number {
  width: 44px;
  height: 44px;
  margin: 0 0 18px;
}

.story-card h3,
.industry-card h2 {
  margin-bottom: 18px;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: 0;
}

.story-card h3 {
  font-size: clamp(1.4rem, 1.22vw, 1.58rem);
  min-height: 3.45em;
}

.story-card .eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.industry-card h2 {
  font-size: clamp(1.95rem, 2.7vw, 3.1rem);
}

.story-card p:not(.eyebrow) {
  font-size: 17px;
  max-width: 32ch;
}

.story-bullets {
  display: grid;
  gap: 4px;
  max-width: 36ch;
}

.story-card-wide .story-content {
  max-width: none;
}

.story-card:hover img,
.industry-card:hover img {
  transform: scale(1.035);
  filter: saturate(0.98) contrast(1.08);
}

.industry-preview,
.team-grid,
.locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.industry-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--navy-900);
}

.section-light .industry-card {
  border-color: var(--line-light);
}

.industry-card div {
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 46px;
}

.industry-card span {
  position: absolute;
  top: clamp(24px, 2.2vw, 34px);
  left: clamp(24px, 2.2vw, 34px);
  width: 64px;
  height: 64px;
  z-index: 3;
  margin: 0;
  background: rgba(5, 31, 49, 0.46);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.industry-card h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2.1rem, 3vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.industry-grid .industry-card.large {
  grid-column: span 2;
}

.video-card {
  margin: 0;
  border: 1px solid var(--navy-900);
  background: var(--navy-950);
}

.video-card.founder-video-card {
  margin-inline: auto;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-card figcaption {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 36px 44px;
  color: var(--white);
}

.video-card figcaption span {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--muted-dark);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: var(--font-mono);
}

.video-card figcaption strong,
.video-card figcaption small {
  display: block;
}

.video-card figcaption strong {
  font-size: 28px;
}

.video-card figcaption small {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.page-main {
  padding-top: 72px;
}

.page-hero {
  padding: 108px 0 92px;
}

.page-title {
  max-width: 18ch;
  font-size: clamp(3rem, 4.2vw, 5rem);
}

.industries-title {
  max-width: 1180px;
  font-size: clamp(3rem, 4vw, 4.7rem);
}

.industries-title span {
  white-space: nowrap;
}

.page-lede {
  max-width: 940px;
}

.request-hero {
  padding-top: 132px;
}

.request-title {
  max-width: 980px;
  font-size: clamp(3rem, 4.35vw, 5.15rem);
  line-height: 1.04;
}

.request-title span,
.request-lede span {
  display: block;
}

.about-title span,
.about-lede span {
  display: block;
}

.request-title span {
  white-space: nowrap;
}

.about-title {
  max-width: 1100px;
  font-size: clamp(3.1rem, 4.65vw, 5.5rem);
}

html[lang="ja"] .about-title {
  max-width: 1200px;
  font-size: clamp(3rem, 4.25vw, 5.2rem);
}

.about-title span,
.about-lede span {
  white-space: nowrap;
}

.request-lede {
  max-width: 1080px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.team-section .section-intro {
  margin-bottom: 52px;
}

.team-section .section-intro h2 {
  max-width: 980px;
  font-size: clamp(2.5rem, 3.2vw, 4rem);
}

.team-section .section-intro h2 span {
  display: block;
  white-space: nowrap;
}

.team-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 310px;
  padding: 38px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.28);
}

.team-card img {
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
}

.team-card h3 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 2.45vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
}

.team-card ul {
  margin: 0;
  padding-left: 1.2em;
}

.map-card {
  margin-block: 0;
  border-block: 1px solid var(--line-dark);
  background: transparent;
  overflow: hidden;
}

.map-card img {
  width: 100%;
  height: auto;
  opacity: 0.92;
}

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

.locations article {
  min-width: 0;
  padding: 44px;
  border-top: 1px solid var(--line-light);
}

.locations a,
.direct-contact a,
.footer-contact a {
  color: var(--navy-800);
  overflow-wrap: break-word;
  word-break: normal;
}

.booking-layout {
  align-items: stretch;
}

.booking-layout > * {
  min-width: 0;
}

.calendly-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 760px;
  border: 1px solid var(--line-light);
  overflow: hidden;
  background: white;
}

.calendly-card iframe {
  display: block;
  width: 100%;
  min-width: 0;
  height: 760px;
  border: 0;
}

.direct-contact {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 54px;
  border: 1px solid var(--line-light);
  background: var(--cream-100);
}

.direct-contact h2 {
  max-width: 100%;
  font-size: clamp(2rem, 2.25vw, 3rem);
  white-space: nowrap;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

.cta-band {
  padding: 96px 0;
}

.cta-band h2 {
  color: var(--white);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(660px, 0.98fr) minmax(0, 1.02fr);
  gap: 72px;
  align-items: center;
}

.cta-copy h2 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.15rem, 2.28vw, 2.75rem);
  line-height: 1.08;
}

.cta-copy h2 span {
  display: block;
  white-space: nowrap;
}

.cta-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 36px;
  color: var(--muted-dark);
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  line-height: 1.5;
}

.cta-outcomes {
  display: grid;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.cta-outcomes article {
  display: grid;
  grid-template-columns: 68px minmax(320px, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}

.cta-outcomes article:last-child {
  border-bottom: 0;
}

.cta-outcomes span {
  color: var(--gold-soft);
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 800;
}

.cta-outcomes article > div {
  min-width: 0;
}

.cta-outcomes strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 23px;
  line-height: 1.2;
}

.cta-outcomes p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.45;
}

.site-footer {
  color: var(--white);
  background: var(--navy-800);
  padding: 80px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(220px, 0.6fr) minmax(360px, 1fr);
  gap: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.footer-grid img {
  width: 260px;
  margin-bottom: 26px;
}

.footer-grid nav {
  display: grid;
  gap: 18px;
  align-content: start;
  font-size: 21px;
  font-weight: 700;
}

.footer-contact p,
.footer-contact a,
.footer-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  margin-top: 54px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--font-mono);
}

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

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1340px) {
  .site-nav {
    padding-inline: 40px;
  }

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

  .product-loop {
    max-width: 900px;
  }

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

  .story-card:nth-child(2n) {
    border-right: 0;
  }

  .story-card:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }
}

@media (max-width: 1180px) {
  .site-nav {
    padding-inline: 40px;
  }

  .split-layout,
  .vision-layout,
  .booking-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .industry-preview,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .story-card:nth-child(2n) {
    border-right: 0;
  }

  .story-card:nth-child(n + 3) {
    border-top: 1px solid var(--line-dark);
  }

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

@media (max-width: 820px) {
  h1,
  h2,
  h3,
  p,
  a,
  button,
  strong,
  small {
    overflow-wrap: break-word;
  }

  .container {
    width: min(100% - 40px, 1460px);
  }

  .site-nav {
    min-height: 68px;
    padding: 14px 20px;
  }

  .brand img {
    width: 156px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 24px;
    background: rgba(6, 29, 48, 0.98);
    border: 1px solid var(--line-dark);
  }

  .nav-links.is-open {
    display: grid;
    gap: 18px;
  }

  .hero,
  .page-hero,
  .section {
    padding-block: 84px;
  }

  .request-hero {
    padding-top: 104px;
  }

  .hero-grid,
  .split-layout,
  .vision-layout,
  .booking-layout,
  .product-loop,
  .story-cards,
  .industry-preview,
  .founder-video-card {
    width: min(100% - 40px, 1460px);
    max-width: 100%;
    margin-inline: auto;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-title,
  .page-title,
  .section-intro h2,
  .section-heading h2,
  .vision-layout h2,
  .founder-story h2,
  .cta-band h2 {
    font-size: clamp(2.65rem, 9.2vw, 4.15rem);
    line-height: 1.08;
    letter-spacing: 0;
    max-width: 14ch;
  }

  .hero-title span,
  .hero-lede span,
  .vision-layout h2 span,
  .cta-copy h2 span,
  .cta-copy p:not(.eyebrow) span,
  .industries-title span,
  .team-section .section-intro h2 span,
  .split-layout .section-heading h2 span,
  .team-card h3 {
    white-space: normal;
  }

  .hero-lede,
  .page-lede,
  .section-intro p:not(.eyebrow),
  .vision-layout p,
  .founder-story p {
    font-size: 1.12rem;
    line-height: 1.55;
  }

  .request-title {
    max-width: 100%;
  }

  .about-title {
    max-width: 100%;
  }

  .product-loop,
  .loop-card,
  .story-content,
  .industry-card div,
  .team-card,
  .direct-contact {
    padding: 28px;
  }

  .story-signal {
    top: 106px;
    left: 28px;
    right: 28px;
    width: auto;
    max-width: none;
    padding: 10px 14px;
    font-size: 12px;
  }

  .story-signal-left,
  .story-signal-right {
    left: 28px;
    right: 28px;
    width: auto;
  }

  .story-number {
    top: 26px;
    left: 28px;
    margin: 0;
  }

  .loop-steps,
  .story-cards,
  .industry-grid,
  .cta-layout,
  .contact-columns,
  .locations {
    grid-template-columns: 1fr;
  }

  .story-card,
  .story-card-wide,
  .industry-grid .industry-card.large {
    grid-column: auto;
  }

  .story-card {
    border-right: 0;
  }

  .story-card + .story-card {
    border-top: 1px solid var(--line-dark);
  }

  .story-card h3 {
    font-size: clamp(1.65rem, 6vw, 2.25rem);
  }

  .loop-step {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .story-bullets li {
    white-space: normal;
  }

  .vision-points span {
    white-space: normal;
  }

  .stack-list article,
  .vision-lines article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card img {
    width: 172px;
  }

  .footer-grid {
    gap: 42px;
  }

  .cta-layout {
    gap: 42px;
  }

  .cta-copy h2 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .cta-outcomes article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

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

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

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

  .site-cursor {
    display: none;
  }

  .hero-media {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .site-cursor {
    display: none;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 30px, 1460px);
  }

  .hero-grid,
  .split-layout,
  .vision-layout,
  .booking-layout,
  .product-loop,
  .story-cards,
  .industry-preview,
  .founder-video-card {
    width: min(100% - 30px, 1460px);
  }

  .hero-title,
  .page-title,
  .section-intro h2,
  .section-heading h2,
  .vision-layout h2,
  .founder-story h2,
  .cta-band h2 {
    font-size: clamp(2.1rem, 9.2vw, 2.85rem);
    max-width: 14ch;
  }

  html[lang="ja"] .hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.25rem);
  }

  html[lang="ja"] .hero-title span {
    white-space: nowrap;
  }

  .request-title {
    max-width: 100%;
    font-size: clamp(2.1rem, 8.8vw, 3rem);
  }

  .request-title span {
    white-space: normal;
  }

  .direct-contact h2 {
    white-space: normal;
  }

  .loop-card p:not(.eyebrow) {
    font-size: 18px;
  }

  .about-title span,
  .about-lede span {
    white-space: normal;
  }

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

  .story-card,
  .industry-card {
    min-height: 420px;
  }

  .nav-cta {
    width: 100%;
  }

  .story-number,
  .industry-card span {
    width: 68px;
    height: 68px;
  }

  .story-number {
    top: 22px;
    left: 22px;
    margin: 0;
  }

  .story-signal,
  .story-signal-left,
  .story-signal-right {
    top: 94px;
    left: 22px;
    right: 22px;
    width: auto;
  }

  .industry-card span {
    top: 22px;
    left: 22px;
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .video-card figcaption {
    grid-template-columns: 1fr;
  }
}
