/* TOMORI Lab — corporate site v3 ("Signal Night × Blueprint")
   Brand hierarchy: Navy + Off-white + Gold (corporate). Orange = emergency & live signal only.
   Signature: the emblem's elongated octagon is the "signal node"; the thesis
   平時 → 発災 → 状況把握 → 意思決定 → 実行 → 復旧 is drawn as a blueprint (day) and lit as a signal (night). */

:root {
  --paper: #fbfaf7;
  --paper-2: #f4f2ec;
  --paper-3: #eae7df;
  --bp-paper: #f5f7fb;
  --bp-grid: rgba(3, 34, 94, 0.08);
  --bp-grid-major: rgba(3, 34, 94, 0.15);
  --ink: #0f1a33;
  --ink-2: #3b4661;
  --muted: #6b7386;
  --line: rgba(3, 34, 94, 0.12);
  --line-strong: rgba(3, 34, 94, 0.24);
  --navy: #03225e;
  --navy-hover: #021a4a;
  --deep: #04122f;
  --deep-2: #0a1a3f;
  --navy-3: #12306b;
  --navy-line: rgba(255, 255, 255, 0.12);
  --navy-text: #eef2fa;
  --navy-muted: #9aa8c8;
  --gold: #cd9425;
  --gold-soft: rgba(205, 148, 37, 0.16);
  --gold-line: rgba(205, 148, 37, 0.55);
  --signal: #f04e1a;
  --signal-soft: rgba(240, 78, 26, 0.16);
  --font-latin: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-jp:
    "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    Meiryo, sans-serif;
  --font-mono:
    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-latin), var(--font-jp);
  font-feature-settings:
    "palt" 1,
    "kern" 1;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
:lang(ja) {
  font-family: var(--font-jp), var(--font-latin);
}
.latin {
  font-family: var(--font-latin);
}
img,
video,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.night .eyebrow {
  color: var(--navy-muted);
}
.h-section {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.22;
  letter-spacing: -0.014em;
  text-wrap: balance;
  margin-top: 18px;
  color: var(--navy);
}
.night .h-section {
  color: #fff;
}
.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.85;
  color: var(--ink-2);
  max-width: 44em;
}
.night .lede {
  color: var(--navy-muted);
}
.note {
  font-size: 0.82rem;
  color: var(--muted);
}
.accent {
  color: var(--gold);
}
.num {
  font-family: var(--font-latin);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.section {
  padding-block: clamp(72px, 10vw, 140px);
  position: relative;
}
.section + .section {
  border-top: 1px solid var(--line);
}
.section-head {
  max-width: 780px;
}
.section-head .lede {
  margin-top: 20px;
}
.night {
  background: var(--deep);
  color: var(--navy-text);
}
.night + .section,
.section + .night {
  border-top: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  border: 1px solid transparent;
  transition:
    transform 0.25s var(--ease),
    background-color 0.25s,
    border-color 0.25s,
    color 0.25s,
    box-shadow 0.25s;
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-hover);
  box-shadow: 0 14px 34px -14px rgba(3, 34, 94, 0.65);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(3, 34, 94, 0.04);
}
.night .btn-primary,
.hero-sn .btn-primary {
  background: #fff;
  color: var(--navy);
}
.night .btn-primary:hover,
.hero-sn .btn-primary:hover {
  background: #f3f5fa;
  box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.6);
}
.night .btn-ghost,
.hero-sn .btn-ghost {
  color: var(--navy-text);
  border-color: rgba(255, 255, 255, 0.3);
}
.night .btn-ghost:hover,
.hero-sn .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn svg {
  width: 16px;
  height: 16px;
}
.btn-sm {
  padding: 11px 18px;
  font-size: 0.9rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s,
    gap 0.2s;
  color: var(--navy);
}
.night .link-arrow {
  color: #fff;
}
.link-arrow:hover {
  border-color: var(--gold);
  gap: 10px;
}
.link-arrow svg {
  width: 14px;
  height: 14px;
}

/* ---------- Header (adapts over the night hero) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.35s,
    border-color 0.35s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
}
.site-header.is-dark {
  background: rgba(4, 18, 47, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 6px 12px;
  border: 1px solid var(--line);
}
.brand img {
  height: 34px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-2);
}
.site-header.is-dark .nav-links {
  color: var(--navy-muted);
}
.nav-links a {
  padding: 6px 0;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="true"]::after {
  transform: scaleX(1);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header.is-dark .nav-cta .btn-primary {
  background: #fff;
  color: var(--navy);
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.site-header.is-dark .nav-toggle {
  color: #fff;
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
}
.nav-toggle .x {
  display: none;
}
.nav-toggle[aria-expanded="true"] .bars {
  display: none;
}
.nav-toggle[aria-expanded="true"] .x {
  display: block;
}
@media (max-width: 960px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 49;
  background: var(--paper);
  padding: 18px var(--gutter) 40px;
  overflow: auto;
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}
.mobile-menu .btn {
  margin-top: 24px;
  width: 100%;
  color: #fff;
  background: var(--navy);
}

/* ---------- Signal primitives ---------- */
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px var(--signal-soft);
  display: inline-block;
  flex: none;
}
.dot-live {
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px var(--signal-soft);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(240, 78, 26, 0.05);
  }
}
@keyframes signal-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(240, 78, 26, 0));
  }
  50% {
    filter: drop-shadow(0 0 6px rgba(240, 78, 26, 0.7));
  }
}
.oct {
  width: 22px;
  height: 32px;
  flex: none;
}
.oct .o {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.4;
}
.oct .c {
  fill: var(--gold);
}
.sig .oct .o {
  stroke: var(--signal);
}
.sig .oct .c {
  fill: var(--signal);
}
.sig .oct {
  animation: signal-pulse 1.6s infinite;
}

/* ---------- HERO — Signal Night ---------- */
.hero-sn {
  position: relative;
  overflow: hidden;
  background: radial-gradient(90% 60% at 70% 20%, #0a2560 0%, var(--deep) 60%);
  color: var(--navy-text);
}
.streaks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.streaks i {
  position: absolute;
  top: -30%;
  width: 1px;
  height: 160%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(205, 148, 37, 0) 30%,
    rgba(205, 148, 37, 0.42) 55%,
    rgba(205, 148, 37, 0) 75%,
    transparent
  );
  animation: rise 14s linear infinite;
}
.streaks i.sig {
  background: linear-gradient(
    180deg,
    transparent,
    rgba(240, 78, 26, 0) 30%,
    rgba(240, 78, 26, 0.55) 50%,
    rgba(240, 78, 26, 0) 70%,
    transparent
  );
  animation-duration: 7s;
}
@keyframes rise {
  from {
    transform: translateY(14%);
  }
  to {
    transform: translateY(-14%);
  }
}
.sn-copy {
  position: relative;
  z-index: 2;
  padding-top: clamp(40px, 5vw, 64px);
}
.sn-eyebrow {
  color: var(--navy-muted);
  letter-spacing: 0.16em;
}
.sn-eyebrow::before {
  display: none;
}
.sn-h1 {
  margin-top: 20px;
  font-family: var(--font-jp), var(--font-latin);
  font-weight: 900;
  font-size: clamp(2.8rem, 7.4vw, 6.9rem);
  line-height: 1;
  letter-spacing: -0.035em;
  color: #fff;
}
.sn-h1 .hollow {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(205, 148, 37, 0.95);
  white-space: nowrap;
}
.sn-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: end;
  margin-top: 22px;
}
.sn-row .lede {
  color: var(--navy-muted);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.8;
  max-width: 38em;
}
.sn-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.phase {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--navy-muted);
}
.phase li {
  padding: 12px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}
.phase li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: fill 9s linear infinite;
}
.phase li:nth-child(1)::before {
  animation-delay: 0s;
}
.phase li:nth-child(2)::before {
  animation-delay: 1.5s;
  background: var(--signal);
}
.phase li:nth-child(3)::before {
  animation-delay: 3s;
}
.phase li:nth-child(4)::before {
  animation-delay: 4.5s;
}
.phase li:nth-child(5)::before {
  animation-delay: 6s;
}
.phase li:nth-child(6)::before {
  animation-delay: 7.5s;
}
@keyframes fill {
  0% {
    width: 0;
    opacity: 1;
  }
  16% {
    width: 100%;
    opacity: 1;
  }
  95% {
    width: 100%;
    opacity: 0.35;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
.phase .oct {
  width: 14px;
  height: 20px;
  margin-top: 2px;
}
.phase .oct .o {
  stroke: rgba(255, 255, 255, 0.45);
}
.phase b {
  display: block;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 700;
  margin-top: 2px;
}
.phase li.sig b {
  color: var(--signal);
}
.sn-stage {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  height: clamp(360px, 44vw, 620px);
  perspective: 1800px;
}
.obj {
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1160px, 100%);
  transform: translateX(-50%) rotateX(26deg) rotateZ(-3deg);
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}
.panel {
  border-radius: 14px;
  overflow: hidden;
  background: #0c1730;
  border: 1px solid rgba(205, 148, 37, 0.4);
  box-shadow: 0 80px 140px -60px rgba(0, 0, 0, 0.9);
}
.panel .bar {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 40px;
  padding: 0 16px;
  background: var(--deep-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--navy-muted);
  white-space: nowrap;
  overflow: hidden;
}
.panel .bar .live {
  color: #fff;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.panel .bar .url {
  margin-left: auto;
}
.panel .body {
  position: relative;
  aspect-ratio: 16 / 8.6;
}
.panel video,
.panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(4, 18, 47, 0) 30%,
    rgba(4, 18, 47, 0.6)
  );
  color: #fff;
  z-index: 2;
}
.video-play span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-weight: 600;
  font-size: 0.95rem;
}
.video-play svg {
  width: 18px;
  height: 18px;
}
.video-play[hidden] {
  display: none;
}
.fl {
  position: absolute;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
  transform: translateZ(90px);
}
.fl-phone {
  left: -2%;
  bottom: -6%;
  width: 15%;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
}
.fl-phone img {
  display: block;
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9);
}
.fl-task {
  right: -1%;
  top: 14%;
  width: 25%;
  padding: 12px 14px 14px;
}
.fl-task .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.fl-task .t {
  font-weight: 700;
  color: var(--navy);
  margin-top: 6px;
  font-size: 0.95rem;
}
.fl-task .d {
  font-size: 12.5px;
  color: var(--ink-2);
  margin-top: 4px;
  line-height: 1.5;
}
.chip {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
}
.chip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}
.fl-task .chip {
  margin-top: 10px;
}
.sn-proof {
  position: relative;
  z-index: 2;
  margin-top: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.sn-proof li {
  padding: 22px 22px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.sn-proof li:last-child {
  border-right: 0;
}
.sn-proof li + li {
  padding-left: 22px;
}
.sn-proof .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-muted);
}
.sn-proof .v {
  margin-top: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 900px) {
  .sn-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sn-ctas {
    justify-content: flex-start;
  }
  .phase {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 10px;
  }
  .sn-stage {
    height: auto;
    perspective: none;
    margin-top: 28px;
  }
  .obj {
    position: relative;
    left: 0;
    width: 100%;
    transform: none !important;
  }
  .panel .body {
    aspect-ratio: 16 / 10;
  }
  .fl-task {
    display: none;
  }
  .fl-phone {
    width: 24%;
    left: auto;
    right: 2%;
    bottom: -8%;
    transform: none;
  }
  .streaks i:nth-child(n + 7) {
    display: none;
  }
  .sn-proof {
    grid-template-columns: 1fr 1fr;
    margin-top: 64px;
  }
  .sn-proof li:nth-child(2n) {
    border-right: 0;
  }
  .sn-proof li:nth-child(3) {
    padding-left: 0;
  }
  .sn-proof li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 18px;
  }
}
@media (max-width: 520px) {
  .sn-proof {
    grid-template-columns: 1fr;
  }
  .sn-proof li {
    border-right: 0;
    padding-left: 0 !important;
  }
  .sn-proof li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 16px;
  }
}

/* ---------- Mission (quiet) ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}
.stat-block {
  border-top: 2px solid var(--navy);
  padding-top: 22px;
}
.stat-block .big {
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--navy);
}
.stat-block .big small {
  font-size: 0.35em;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-left: 6px;
}
.stat-block .cap {
  margin-top: 14px;
  color: var(--ink-2);
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}
.stat-row > div {
  border-top: 1px solid var(--gold-line);
  padding-top: 14px;
}
.stat-row .n {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.stat-row .l {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 2px;
}
.thesis {
  counter-reset: th;
}
.thesis li {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}
.thesis li:last-child {
  border-bottom: 1px solid var(--line);
}
.thesis li::before {
  counter-increment: th;
  content: "0" counter(th);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  padding-top: 6px;
}
.thesis h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.thesis p {
  margin-top: 8px;
  color: var(--ink-2);
}
.quote {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.quote .mark {
  font-size: 3rem;
  line-height: 0.6;
  color: var(--gold);
  font-family: Georgia, serif;
}
.quote blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Product — Blueprint ---------- */
.bp {
  background-color: var(--bp-paper);
  background-image:
    linear-gradient(var(--bp-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-grid) 1px, transparent 1px),
    linear-gradient(var(--bp-grid-major) 1px, transparent 1px),
    linear-gradient(90deg, var(--bp-grid-major) 1px, transparent 1px);
  background-size:
    24px 24px,
    24px 24px,
    120px 120px,
    120px 120px;
}
.bp .eyebrow b {
  color: var(--navy);
  font-weight: 500;
  margin-right: 6px;
}
.modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .modes {
    grid-template-columns: 1fr;
  }
}
.mode {
  position: relative;
  padding: 28px 26px 30px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line-strong);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.mode:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -36px rgba(3, 34, 94, 0.45);
}
.mode .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.mode .tag b {
  font-family: var(--font-jp);
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--navy);
  font-weight: 700;
}
.mode h3 {
  margin-top: 16px;
  font-size: 1.22rem;
  line-height: 1.4;
  letter-spacing: -0.008em;
  color: var(--navy);
}
.mode p {
  margin-top: 12px;
  color: var(--ink-2);
  font-size: 0.97rem;
}
.mode .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 18px;
}
.mode .icon svg {
  width: 20px;
  height: 20px;
}
.mode-accent {
  background: var(--navy);
  border-color: var(--navy);
}
.mode-accent .tag {
  color: var(--navy-muted);
}
.mode-accent .tag b,
.mode-accent h3 {
  color: #fff;
}
.mode-accent p {
  color: var(--navy-muted);
}
.mode-accent .icon {
  background: rgba(255, 255, 255, 0.1);
  color: #ffb08f;
}
.mode-accent::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px var(--signal-soft);
  animation: pulse 2.2s infinite;
}
.dwg {
  position: relative;
  margin-top: clamp(56px, 7vw, 96px);
}
.dwg-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 10px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.dwg-head b {
  color: var(--navy);
  font-weight: 500;
}
.dwg-body {
  position: relative;
}
.dwg-body::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--navy);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.4s var(--ease) 0.2s;
}
.dwg.is-in .dwg-body::before {
  transform: scaleY(1);
}
.pulse {
  position: absolute;
  left: 17.5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
  opacity: 0;
  z-index: 1;
}
.dwg.is-in .pulse {
  animation: travel 10s linear 1.2s infinite;
}
@keyframes travel {
  0% {
    top: 2%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  18% {
    top: 17%;
    background: var(--signal);
    box-shadow: 0 0 0 5px var(--signal-soft);
  }
  34% {
    top: 34%;
    background: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-soft);
  }
  62% {
    top: 62%;
  }
  82% {
    top: 82%;
  }
  95% {
    top: 97%;
    opacity: 1;
  }
  100% {
    top: 97%;
    opacity: 0;
  }
}
.rows {
  display: grid;
  gap: 22px;
}
.row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
}
.row .oct {
  margin-left: 11.5px;
  background: var(--bp-paper);
  position: relative;
  z-index: 2;
}
.lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
}
.lbl b {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0;
}
.row.sig .lbl b {
  color: var(--signal);
}
.lbl .dim {
  margin-left: auto;
  color: var(--gold);
}
.lbl .txt {
  font-family: var(--font-jp);
  letter-spacing: 0;
  font-size: 13px;
}
.row-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 14px;
  align-items: start;
  margin-top: 10px;
}
.callout {
  border: 1px solid rgba(3, 34, 94, 0.35);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 50px -32px rgba(3, 34, 94, 0.45);
  position: relative;
}
.callout::before,
.callout::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid var(--navy);
  z-index: 2;
}
.callout::before {
  left: -5px;
  top: -5px;
  border-right: 0;
  border-bottom: 0;
}
.callout::after {
  right: -5px;
  bottom: -5px;
  border-left: 0;
  border-top: 0;
}
.callout .cap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.callout .cap b {
  color: var(--navy);
  font-weight: 500;
}
.callout img {
  width: 100%;
  display: block;
}
.callout.only {
  margin-top: 10px;
  max-width: 760px;
}
.phone {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(3, 34, 94, 0.3);
  box-shadow: 0 20px 40px -24px rgba(3, 34, 94, 0.5);
}
.phone img {
  display: block;
  width: 100%;
}
.task {
  border: 1px solid rgba(3, 34, 94, 0.35);
  background: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 10px;
  max-width: 560px;
}
.task .t {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}
.task .d {
  font-size: 12.5px;
  color: var(--ink-2);
  margin-top: 4px;
  line-height: 1.5;
}
.task .chip {
  margin-top: 10px;
}
.ann {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-2);
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.ann b {
  color: var(--gold);
  font-weight: 500;
}
.ann .jp {
  font-family: var(--font-jp);
  letter-spacing: 0;
  font-size: 12.5px;
}
@media (max-width: 720px) {
  .row-grid {
    grid-template-columns: 1fr;
  }
  .row-grid .phone {
    max-width: 150px;
  }
  .lbl .dim {
    margin-left: 0;
    width: 100%;
  }
}
.product-cta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Demo (night) ---------- */
.demo-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
}
.demo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--navy-line);
  background: var(--deep-2);
}
.demo-card .window-body {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0c1730;
}
.demo-card .window-body video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.demo-card .cap {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
  color: var(--navy-muted);
  border-top: 1px solid var(--navy-line);
}
.demo-card .cap b {
  color: #fff;
  font-weight: 600;
}
.demo-links {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.demo-links .note {
  color: var(--navy-muted);
  width: 100%;
}

/* ---------- Approach ---------- */
.principles {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) {
  .principles {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .principles {
    grid-template-columns: 1fr;
  }
}
.principle {
  padding: 28px 26px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background-color 0.3s;
}
.principle:hover {
  background: #fff;
}
.principle .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.principle h3 {
  margin-top: 12px;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.principle p {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 0.95rem;
}
.pipeline {
  margin-top: 44px;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
}
.pipeline .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
.pipe {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: stretch;
}
.pipe li {
  position: relative;
  padding: 14px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  line-height: 1.5;
}
.pipe li b {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}
.pipe li em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  display: block;
}
.pipe li.human {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.pipe li.human em {
  color: rgba(3, 34, 94, 0.75);
}
.pipe li.ai {
  border-style: dashed;
}
.pipe li::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.pipe li:last-child::after {
  display: none;
}
@media (max-width: 900px) {
  .pipe {
    grid-template-columns: repeat(2, 1fr);
  }
  .pipe li::after {
    display: none;
  }
}
.pipeline .legend {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}
.pipeline .legend i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  margin-right: 6px;
  vertical-align: -2px;
}
.stack {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.stack span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

/* ---------- Home (warm) ---------- */
#home {
  background: var(--paper-2);
}
.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .home-grid {
    grid-template-columns: 1fr;
  }
}
.chain {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  margin-top: 34px;
}
.chain::before {
  content: "";
  position: absolute;
  left: 16.6%;
  right: 16.6%;
  top: 16px;
  height: 1px;
  background: var(--gold-line);
}
.chain .node {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--navy);
  position: relative;
}
.chain .node .oct {
  background: var(--paper-2);
}
.chain .node .oct .c {
  fill: transparent;
  transition: fill 0.5s;
}
.chain .node small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 0.75rem;
  margin-top: 2px;
}
.chain.is-in .node .oct .c {
  fill: var(--gold);
}
.chain.is-in .node:nth-child(2) .oct .c {
  transition-delay: 0.35s;
}
.chain.is-in .node:nth-child(3) .oct .c {
  transition-delay: 0.7s;
}
.home-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f6efe9;
  border: 1px solid var(--line);
}
.home-visual img {
  width: 100%;
}
.home-points {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}
.home-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--ink-2);
  font-size: 0.97rem;
}
.home-points svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  margin-top: 4px;
}

/* ---------- Recognition ---------- */
.recog {
  margin-top: 48px;
  border-top: 1px solid var(--line);
}
.recog li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.recog .y {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.recog .t {
  font-weight: 600;
  color: var(--navy);
}
.recog .t small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 2px;
}
.recog .badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-2);
  white-space: nowrap;
}
.recog .badge.hi {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
@media (max-width: 600px) {
  .recog li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .recog .badge {
    justify-self: start;
  }
}

/* ---------- Founder ---------- */
.founder {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 6vw, 80px);
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 760px) {
  .founder {
    grid-template-columns: 1fr;
  }
}
.founder-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-2);
  aspect-ratio: 11 / 12;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder .name {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.founder .role {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.95rem;
}
.founder .bio {
  margin-top: 22px;
  display: grid;
  gap: 14px;
  color: var(--ink-2);
  max-width: 60ch;
}
.founder-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 16px;
  padding-top: 6px;
}

.founder-stats > div {
  border-top: 1px solid var(--gold-line);
  padding-top: 12px;
}
.founder-stats .n {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.founder-stats .l {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Partnership (night) ---------- */
.partner-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 760px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }
}
.partner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 26px 26px;
  border-radius: var(--radius-lg);
  background: var(--deep-2);
  border: 1px solid var(--navy-line);
  transition:
    border-color 0.3s,
    transform 0.35s var(--ease),
    background-color 0.3s;
}
.partner:hover {
  border-color: var(--gold-line);
  transform: translateY(-3px);
  background: var(--navy-3);
}
.partner .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}
.partner h3 {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: #fff;
}
.partner p {
  color: var(--navy-muted);
  font-size: 0.95rem;
  flex: 1;
}
.partner .who {
  font-size: 0.82rem;
  color: var(--navy-muted);
  border-top: 1px solid var(--navy-line);
  padding-top: 12px;
}
.partner .who b {
  color: #fff;
  font-weight: 600;
}
.partner .link-arrow {
  color: #fff;
  margin-top: 4px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 96px);
  margin-top: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-side p {
  color: var(--ink-2);
}
.contact-side .alt {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}
.contact-side .alt a {
  color: var(--navy);
  font-weight: 600;
  border-bottom: 1px solid var(--gold-line);
}
.form {
  display: grid;
  gap: 18px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.field label span {
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
  font-size: 0.8rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(3, 34, 94, 0.1);
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) {
  .field-row {
    grid-template-columns: 1fr;
  }
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.consent input {
  margin-top: 5px;
  accent-color: var(--navy);
}
.consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.form .btn {
  justify-self: start;
}
.hp {
  position: absolute;
  left: -9999px;
}

/* ---------- Footer (night, logo on plate) ---------- */
.site-footer {
  background: var(--deep);
  color: var(--navy-text);
  padding: 64px 0 40px;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .brand {
  padding: 10px 16px;
  border: 0;
}
.footer-brand .brand img {
  height: 40px;
}
.footer-brand p {
  margin-top: 18px;
  color: var(--navy-muted);
  font-size: 0.92rem;
  max-width: 40ch;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-links li {
  padding: 6px 0;
  font-size: 0.93rem;
}
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.company dl {
  display: grid;
  grid-template-columns: 5em 1fr;
  gap: 6px 14px;
  font-size: 0.9rem;
  margin: 0;
}
.company dt {
  color: var(--navy-muted);
}
.company dd {
  margin: 0;
  color: var(--navy-text);
}
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--navy-muted);
}
.site-footer.simple {
  padding: 28px 0;
}
.ext::after {
  content: "↗";
  font-size: 0.8em;
  margin-left: 3px;
  opacity: 0.7;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.16s;
}
.reveal-d3 {
  transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .dot-live,
  .mode-accent::after,
  .sig .oct,
  .streaks i,
  .phase li::before,
  .pulse {
    animation: none !important;
  }
  .phase li::before {
    width: 100%;
  }
  .dwg-body::before {
    transform: scaleY(1);
    transition: none;
  }
  .pulse {
    display: none;
  }
  .chain .node .oct .c {
    fill: var(--gold);
  }
  .obj {
    transform: translateX(-50%) !important;
  }
}

/* ---------- Simple pages ---------- */
.page {
  padding: clamp(56px, 8vw, 100px) 0;
  max-width: 760px;
}
.page h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.015em;
  color: var(--navy);
}
.page h2 {
  font-size: 1.2rem;
  margin-top: 36px;
  color: var(--navy);
}
.page p,
.page li {
  color: var(--ink-2);
  margin-top: 12px;
}
.page ul {
  list-style: disc;
  padding-left: 1.3em;
}
.page .updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 10px;
}

/* ---------- Industry use cases (index links + pages) ---------- */
.usecases {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 760px) {
  .usecases {
    grid-template-columns: 1fr;
  }
}
.usecase {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 24px 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line-strong);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.usecase:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -36px rgba(3, 34, 94, 0.45);
}
.usecase .k {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.usecase h3 {
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.008em;
}
.usecase p {
  color: var(--ink-2);
  font-size: 0.95rem;
  flex: 1;
}
.uc-hero {
  padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 5vw, 64px);
}
.uc-hero .k {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-muted);
  display: flex;
  gap: 12px;
  align-items: center;
}
.uc-hero h1 {
  margin-top: 18px;
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}
.uc-hero h1 .hollow {
  color: transparent;
  -webkit-text-stroke: 1.3px rgba(205, 148, 37, 0.95);
  white-space: nowrap;
}
.uc-hero .lede {
  margin-top: 22px;
  color: var(--navy-muted);
  max-width: 46em;
}
.uc-hero .who {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 760px) {
  .uc-hero .who {
    grid-template-columns: 1fr;
  }
}
.uc-hero .who li {
  padding: 14px 16px;
  border: 1px solid var(--navy-line);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--navy-text);
  background: rgba(255, 255, 255, 0.04);
}
.uc-hero .who li b {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 500;
}
.scenario {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .scenario {
    grid-template-columns: repeat(2, 1fr);
  }
}
.scenario li {
  padding: 16px 18px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line-strong);
}
.scenario .n {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.scenario .n small {
  font-size: 0.6em;
  font-weight: 600;
  margin-left: 2px;
}
.scenario .l {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 2px;
}
.uc-note {
  margin-top: 14px;
}
.uc-cta {
  text-align: center;
}
.uc-cta .btns {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.uc-cta .lede {
  margin-inline: auto;
}
