:root {
  color-scheme: light;
  --bg: #f5f5f7;
  --bg-soft: #fbfbfd;
  --surface: #ffffff;
  --surface-strong: #fbfbfd;
  --line: #e5e5ea;
  --line-strong: #d2d2d7;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --muted-strong: #424245;
  --blue: #146ef5;
  --cyan: #00a8a8;
  --teal: #0fbf9f;
  --amber: #b7791f;
  --green: #15803d;
  --danger: #c2414b;
  --max: 1320px;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(29, 29, 31, 0.04);
  --page-background:
    radial-gradient(circle at 7% 9%, rgba(255, 181, 231, 0.34), transparent 31rem),
    radial-gradient(circle at 91% 12%, rgba(102, 199, 255, 0.48), transparent 36rem),
    radial-gradient(circle at 76% 58%, rgba(177, 149, 255, 0.23), transparent 34rem),
    linear-gradient(145deg, #fff9ff 0%, #f4f7ff 38%, #e4f4ff 70%, #d5efff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 359px) {
  .home-page .hero-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-backdrop,
  .mobile-menu-sheet { transition: none; }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--page-background);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.62;
}

.home-page {
  background: var(--page-background);
  background-attachment: fixed;
}

.showcase-page {
  min-height: 100vh;
  background: var(--page-background);
  background-attachment: fixed;
}

body.modal-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(210, 210, 215, 0.72);
  background: rgba(251, 251, 253, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 48px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.2;
}

.brand-mark {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.brand-copy strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 760;
}

.brand span,
.nav-links {
  color: var(--muted);
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 500;
}

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

.nav-link,
.nav-link-button {
  position: relative;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted-strong);
  box-shadow: none;
  font: inherit;
  cursor: pointer;
}

.language-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.language-toggle {
  appearance: none;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--muted-strong);
  font: inherit;
  cursor: pointer;
}

.language-caret {
  color: #9a9aa0;
  font-size: 10px;
  line-height: 1;
  transition: transform 160ms ease;
}

.language-toggle[aria-expanded="true"] .language-caret {
  transform: rotate(180deg);
}

.language-toggle:hover {
  color: var(--blue);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: -10px;
  z-index: 30;
  min-width: 126px;
  padding: 6px;
  border: 1px solid rgba(210, 210, 215, 0.76);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 34px rgba(29, 29, 31, 0.12);
  backdrop-filter: blur(18px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  width: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted-strong);
  font: inherit;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.active {
  background: rgba(20, 110, 245, 0.08);
  color: var(--blue);
}

.language-menu button.active::after {
  content: "✓";
  font-weight: 850;
}

.mobile-menu-capsule,
.mobile-menu-backdrop,
.mobile-menu-sheet {
  display: none;
}

body.mobile-menu-active { overflow: hidden; }

.mobile-case-back,
.mobile-back-to-top {
  display: none;
}

.nav-link.active {
  color: var(--text);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(20, 110, 245, 0.08);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
}

.button.primary.magenta {
  border-color: rgba(184, 27, 230, 0.18);
  background: linear-gradient(135deg, #d929e8, #b52cff);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(191, 44, 224, 0.22);
}

.button.glass {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.48);
  color: #3d2e91;
  backdrop-filter: blur(12px);
}

.button:hover,
.nav-cta:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

main {
  flex: 1 0 auto;
  overflow: hidden;
}

.profile-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  padding: 16px 0 0;
}

.profile-hero-card {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 28px 72px rgba(71, 63, 133, 0.14);
  backdrop-filter: saturate(150%) blur(18px);
}

.profile-hero-intro {
  min-height: 470px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  align-items: stretch;
}

.profile-hero-copy {
  align-self: center;
  padding: 38px 54px 34px;
}

.profile-hero-copy h1 {
  margin: 0;
  color: #111827;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0;
}

.profile-english-name {
  margin: 8px 0 0;
  color: #303846;
  font-size: 21px;
  font-weight: 800;
}

.profile-hero-copy h2 {
  margin: 10px 0 0;
  color: #1f2937;
  font-size: 22px;
  line-height: 1.25;
}

.profile-hero-copy h3 {
  margin: 24px 0 0;
  color: #374151;
  font-size: 16px;
  line-height: 1.25;
}

.profile-summary {
  max-width: 720px;
  margin: 12px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.68;
}

.profile-hero .hero-actions .button {
  width: 132px;
}

.profile-photo {
  position: relative;
  min-height: 470px;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}

.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.profile-achievements {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(210, 210, 215, 0.7);
  background: rgba(255, 255, 255, 0.5);
}

.profile-achievements article {
  min-height: 146px;
  padding: 24px 22px;
  border-right: 1px solid rgba(210, 210, 215, 0.7);
}

.profile-achievements article:last-child {
  border-right: 0;
}

.profile-achievements h3 {
  margin: 0;
  color: #111827;
  font-size: 16px;
  line-height: 1.3;
}

.profile-achievements p {
  margin: 13px 0 0;
  color: #5f6368;
  font-size: 13px;
  line-height: 1.55;
}

.section,
.hero,
.page-hero,
.case-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 34px;
  padding: 56px 0 34px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(38px, 6vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.case-hero p {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--muted-strong);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-showcase {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 20px;
}

.showcase-shell {
  min-height: calc(100vh - 106px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)),
    radial-gradient(circle at 18% 20%, rgba(255, 205, 244, 0.62), transparent 25rem),
    radial-gradient(circle at 78% 16%, rgba(53, 216, 235, 0.48), transparent 26rem);
  box-shadow: 0 30px 90px rgba(71, 63, 133, 0.12);
  backdrop-filter: blur(18px);
}

.showcase-content {
  min-height: 540px;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 78px 84px 32px;
}

.showcase-copy {
  position: relative;
  z-index: 2;
}

.showcase-kicker {
  margin: 0 0 20px;
  color: #2d21b8;
  font-size: 20px;
  font-weight: 850;
}

.showcase-copy h1 {
  margin: 0;
  max-width: 620px;
  color: #4020bb;
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.showcase-copy p:not(.showcase-kicker) {
  margin: 24px 0 0;
  max-width: 520px;
  color: #1f2230;
  font-size: 19px;
  line-height: 1.55;
}

.showcase-device {
  position: relative;
  min-height: 430px;
}

.device-frame {
  position: absolute;
  width: min(560px, 95%);
  aspect-ratio: 1.45;
  top: 18px;
  right: 8px;
  border: 10px solid rgba(220, 228, 248, 0.95);
  border-radius: 30px;
  background: #10131f;
  box-shadow:
    0 24px 60px rgba(48, 42, 118, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
  transform: rotate(6deg);
}

.device-screen {
  position: absolute;
  inset: 8px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(8, 13, 48, 0.2), rgba(8, 13, 48, 0.92)),
    radial-gradient(circle at 48% 40%, rgba(255, 95, 167, 0.72), transparent 17rem),
    linear-gradient(135deg, #061750, #0a39b8 42%, #ff5a9a 72%, #ffd15f);
}

.device-screen::before {
  content: "";
  position: absolute;
  inset: 22% 7% 0;
  background:
    linear-gradient(90deg, transparent 0 6%, rgba(89, 221, 255, 0.9) 6% 9%, transparent 9% 16%, rgba(255, 114, 214, 0.9) 16% 21%, transparent 21% 30%, rgba(255, 203, 83, 0.95) 30% 35%, transparent 35% 45%, rgba(93, 232, 255, 0.88) 45% 50%, transparent 50% 62%, rgba(20, 111, 255, 0.92) 62% 68%, transparent 68% 100%);
  clip-path: polygon(0 100%, 0 56%, 8% 56%, 8% 28%, 18% 28%, 18% 64%, 32% 64%, 32% 16%, 44% 16%, 44% 74%, 56% 74%, 56% 8%, 68% 8%, 68% 72%, 80% 72%, 80% 34%, 91% 34%, 91% 100%);
  filter: drop-shadow(0 0 16px rgba(80, 220, 255, 0.55));
}

.device-screen::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 8%;
  height: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 80, 173, 0.8), rgba(37, 219, 255, 0.78), transparent);
  opacity: 0.78;
  transform: skewY(-7deg);
}

.device-screen span {
  position: absolute;
  top: 24px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.device-screen span:nth-child(1) { left: 40%; }
.device-screen span:nth-child(2) { left: 48%; top: 54px; }
.device-screen span:nth-child(3) { left: 56%; top: 34px; }
.device-screen span:nth-child(4) { left: 66%; top: 70px; }

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  padding: 24px 84px 70px;
}

.gallery-tile {
  position: relative;
  min-height: 140px;
  overflow: hidden;
  border: 1px solid rgba(65, 50, 170, 0.2);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(63, 56, 131, 0.12);
}

.gallery-tile::before,
.gallery-tile::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.gallery-tile::before {
  width: 92px;
  height: 92px;
  left: 16px;
  bottom: 14px;
  background: linear-gradient(135deg, #146ef5, #00c7be);
}

.gallery-tile::after {
  width: 112px;
  height: 112px;
  right: -20px;
  top: -20px;
  background: linear-gradient(135deg, #ff5fa2, #ffd36a);
  opacity: 0.86;
}

.gallery-tile span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.tile-rag::before { background: linear-gradient(135deg, #22c55e, #38bdf8); }
.tile-rag::after { background: linear-gradient(135deg, #4338ca, #8b5cf6); }
.tile-listing::before { background: linear-gradient(135deg, #fb7185, #f97316); }
.tile-listing::after { background: linear-gradient(135deg, #7c3aed, #22d3ee); }
.tile-maas::before { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.tile-maas::after { background: linear-gradient(135deg, #14b8a6, #a7f3d0); }
.tile-infras::before { background: linear-gradient(135deg, #111827, #334155); }
.tile-infras::after { background: linear-gradient(135deg, #38bdf8, #2563eb); }

.metrics-section {
  padding-top: 34px;
}

.intro-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.profile-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 249, 251, 0.92));
  box-shadow: var(--shadow);
  padding: 22px;
}

.profile-card .profile-photo {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(20, 110, 245, 0.14), rgba(0, 168, 168, 0.18)),
    #e6f7fb;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.profile-card .profile-photo strong {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--blue);
  font-size: 42px;
  box-shadow: 0 18px 40px rgba(20, 110, 245, 0.13);
}

.profile-card h2 {
  margin: 18px 0 6px;
  font-size: 24px;
}

.profile-card p,
.quick-list p {
  margin: 0;
  color: var(--muted-strong);
}

.quick-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quick-list div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  font-size: 14px;
}

.quick-list span {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.metric,
.panel,
.case-card,
.timeline-item,
.content-block,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 126px;
  padding: 18px;
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 54px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2,
.page-hero h1,
.case-hero h1 {
  margin: 0;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.section-head p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.summary-grid,
.pillar-grid,
.case-grid,
.skill-matrix {
  display: grid;
  gap: 16px;
}

.summary-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.pillar-grid,
.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.capability-section {
  margin-top: 34px;
  padding: 42px 46px 46px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(48, 58, 90, 0.1);
  backdrop-filter: blur(24px) saturate(125%);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
}

.capability-section .section-head {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(38, 50, 75, 0.1);
}

.capability-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 0;
}

.capability-column {
  display: grid;
  grid-template-rows: 1.1fr 0.9fr;
}

.capability-column + .capability-column {
  border-left: 1px solid rgba(38, 50, 75, 0.1);
}

.capability-block {
  padding: 22px 30px 24px;
  background: transparent;
}

.capability-column:first-child .capability-block {
  padding-left: 0;
}

.capability-column-visual .capability-block {
  padding-left: 40px;
}

.capability-block + .capability-block {
  border-top: 1px solid rgba(38, 50, 75, 0.1);
}

.capability-block h3 {
  margin: 0 0 16px;
  color: #1f6fda;
  font-size: 21px;
}

.skill-bars {
  display: grid;
  gap: 14px;
}

.skill-bar > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.skill-bar span {
  color: #202838;
  font-size: 15px;
  font-weight: 700;
}

.skill-bar small {
  color: #7b8391;
  font-size: 12px;
}

.skill-bar > i {
  position: relative;
  display: block;
  height: 6px;
  overflow: hidden;
  background: rgba(40, 56, 81, 0.09);
}

.skill-bar > i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  background: linear-gradient(90deg, #1678f2, #37a4ef);
}

.skill-bars-code .skill-bar > i::after {
  background: linear-gradient(90deg, #00c997, #24e6a7);
}

.radar-block {
  min-height: 368px;
  padding-top: 26px;
  padding-bottom: 16px;
}

.radar-chart {
  display: flex;
  justify-content: center;
}

.radar-chart svg {
  display: block;
  width: min(100%, 560px);
  height: 300px;
  overflow: visible;
}

.radar-grid polygon,
.radar-grid line {
  fill: none;
  stroke: rgba(76, 99, 137, 0.18);
  stroke-width: 1;
}

.radar-value {
  fill: rgba(36, 123, 232, 0.22);
  stroke: #247be8;
  stroke-width: 2;
}

.radar-points circle {
  fill: #247be8;
  stroke: #fff;
  stroke-width: 2;
}

.radar-labels text {
  fill: #505a6b;
  font-size: 12px;
  font-weight: 700;
}

.language-block {
  display: grid;
  grid-template-rows: auto 1fr;
}

.language-gauges {
  display: flex;
  align-items: center;
  justify-content: space-around;
  align-self: center;
  gap: 28px;
  padding: 0 24px 10px;
}

.language-gauge {
  position: relative;
  display: grid;
  width: 142px;
  height: 142px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gauge-color) var(--score), rgba(40, 56, 81, 0.08) 0);
}

.language-gauge::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}

.language-gauge > div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  text-align: center;
}

.language-gauge strong {
  color: var(--gauge-color);
  font-size: 22px;
}

.language-gauge span {
  color: var(--gauge-color);
  font-size: 13px;
  font-weight: 800;
}

.language-gauge-en {
  --gauge-color: #247df0;
}

.language-gauge-jp {
  --gauge-color: #ff5263;
}

.education-section {
  margin-top: 34px;
  margin-bottom: 38px;
  padding: 42px 46px 46px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 24px 70px rgba(48, 58, 90, 0.09);
  backdrop-filter: blur(24px) saturate(125%);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
}

.education-section .section-head {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(38, 50, 75, 0.1);
}

.education-card {
  display: grid;
  gap: 18px;
}

.education-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 180px;
  gap: 24px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(38, 50, 75, 0.1);
}

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

.education-school {
  display: grid;
  align-content: start;
  gap: 8px;
}

.education-school strong {
  color: #111827;
  font-size: 22px;
  line-height: 1.18;
}

.education-school span {
  color: #5d6675;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.education-main {
  display: contents;
}

.education-main > div:first-child {
  grid-column: 2;
}

.education-main h3 {
  margin: 0;
  color: #111827;
  font-size: 21px;
  line-height: 1.18;
}

.education-main p {
  margin: 8px 0 0;
  color: #6d7480;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.education-meta {
  grid-column: 3;
  grid-row: 1 / span 2;
  text-align: right;
}

.education-meta strong,
.education-meta span {
  display: block;
}

.education-meta span {
  color: #111827;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.18;
}

.education-meta strong {
  margin-top: 8px;
  color: #7a7f88;
  font-size: 13px;
  line-height: 1.2;
}

.panel,
.case-card,
.content-block,
.info-card {
  padding: 24px;
}

.panel h3,
.case-card h3,
.info-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.panel p,
.case-card p,
.content-block p,
.content-block li,
.info-card p,
.info-card li {
  color: var(--muted-strong);
}

.panel p,
.case-card p,
.info-card p {
  margin: 12px 0 0;
}

.info-card ul,
.content-block ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag,
.status,
.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1;
}

.tag,
.status {
  padding: 7px 10px;
}

.status.blue {
  color: #0b55c7;
  border-color: rgba(20, 110, 245, 0.32);
  background: rgba(20, 110, 245, 0.08);
}

.status.green {
  color: #087a66;
  border-color: rgba(0, 168, 168, 0.34);
  background: rgba(0, 168, 168, 0.09);
}

.status.amber {
  color: #9a5b00;
  border-color: rgba(183, 121, 31, 0.3);
  background: rgba(183, 121, 31, 0.08);
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.case-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.case-card .value {
  margin-top: auto;
  padding-top: 20px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.case-card a {
  margin-top: 18px;
  color: var(--blue);
  font-weight: 800;
}

.case-card[hidden] {
  display: none;
}

.portfolio-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 24px;
  text-align: center;
}

.showcase-page .portfolio-hero,
.glass-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 42px auto 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.40)),
    radial-gradient(circle at 20% 20%, rgba(255, 205, 244, 0.58), transparent 24rem),
    radial-gradient(circle at 78% 18%, rgba(53, 216, 235, 0.46), transparent 24rem);
  box-shadow: 0 28px 80px rgba(71, 63, 133, 0.11);
  backdrop-filter: blur(18px);
}

.showcase-page .portfolio-hero {
  padding: 54px 28px 28px;
}

.glass-hero {
  display: grid;
  align-items: center;
  min-height: 340px;
  padding: 64px 72px;
}

.glass-hero h1 {
  margin: 0;
  max-width: 760px;
  color: #4020bb;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
}

.glass-hero p:not(.showcase-kicker) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #1f2230;
  font-size: 19px;
}

.portfolio-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.portfolio-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding: 6px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
  border: 1px solid var(--line);
}

.portfolio-tabs .filter-button {
  min-height: 36px;
  padding: 0 15px;
  border-color: transparent;
  background: transparent;
  color: #4c4c51;
  font-size: 14px;
  font-weight: 700;
}

.portfolio-tabs .filter-button.active {
  background: #1d1d1f;
  color: #ffffff;
  border-color: #1d1d1f;
}

.mobile-case-filter { display: none; }

.portfolio-grid {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.showcase-page .portfolio-grid {
  margin-bottom: 90px;
}

.portfolio-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 48px rgba(71, 63, 133, 0.10);
  backdrop-filter: blur(14px);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(71, 63, 133, 0.16);
}

.portfolio-card[hidden] {
  display: none;
}

.project-visual {
  position: relative;
  height: 220px;
  min-height: 220px;
  overflow: hidden;
  isolation: isolate;
}

.project-visual::before,
.project-visual::after,
.project-visual span {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0.2px);
}

.project-visual::before {
  width: 52%;
  aspect-ratio: 1;
  left: 8%;
  bottom: -18%;
  background: radial-gradient(circle at 36% 28%, #ffffff 0 6%, rgba(255, 255, 255, 0) 7%), linear-gradient(135deg, #1473ff, #00c7be);
  box-shadow: inset -20px -24px 54px rgba(0, 0, 0, 0.12);
}

.project-visual::after {
  width: 40%;
  aspect-ratio: 1;
  right: 10%;
  bottom: 12%;
  background: linear-gradient(135deg, #ff7a59, #ffd60a);
  box-shadow: inset -18px -22px 46px rgba(0, 0, 0, 0.12);
}

.project-visual span:nth-child(1) {
  width: 28%;
  aspect-ratio: 1;
  left: 42%;
  top: 20%;
  background: linear-gradient(135deg, #7c3aed, #22d3ee);
}

.project-visual span:nth-child(2) {
  width: 15%;
  aspect-ratio: 1;
  right: 16%;
  top: 13%;
  background: linear-gradient(135deg, #34d399, #0ea5e9);
}

.project-visual span:nth-child(3) {
  width: 70%;
  height: 44%;
  left: 15%;
  bottom: -18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.20), transparent 65%);
  z-index: -1;
}

.visual-regulation {
  background: linear-gradient(180deg, rgba(246, 249, 255, 0.84), rgba(238, 243, 251, 0.72));
}

.visual-regulation::before,
.visual-regulation::after {
  display: none;
}

.visual-regulation img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
}

.visual-rag {
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.86), rgba(238, 243, 248, 0.72));
}

.visual-listing {
  background: linear-gradient(180deg, rgba(254, 246, 239, 0.84), rgba(255, 255, 255, 0.70));
}

.visual-fire-governance {
  background: linear-gradient(180deg, rgba(255, 242, 235, 0.90), rgba(255, 249, 245, 0.74));
}

.visual-troubleshooting-agent {
  background: linear-gradient(180deg, rgba(234, 247, 255, 0.90), rgba(245, 252, 255, 0.74));
}

.visual-infringement-governance {
  background: linear-gradient(180deg, rgba(248, 239, 255, 0.90), rgba(255, 247, 241, 0.74));
}

.visual-maas {
  background: linear-gradient(180deg, rgba(236, 251, 255, 0.86), rgba(255, 255, 255, 0.70));
}

.visual-infras {
  background: linear-gradient(180deg, rgba(243, 244, 246, 0.86), rgba(251, 251, 253, 0.72));
}

.visual-investment {
  background: linear-gradient(180deg, rgba(244, 255, 249, 0.86), rgba(255, 255, 255, 0.70));
}

.visual-rag::before {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
}

.visual-rag::after {
  background: linear-gradient(135deg, #64748b, #111827);
}

.visual-listing::before {
  background: linear-gradient(135deg, #fb7185, #f97316);
}

.visual-listing::after {
  background: linear-gradient(135deg, #facc15, #22c55e);
}

.visual-fire-governance::before {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.visual-fire-governance::after {
  background: linear-gradient(135deg, #f59e0b, #7f1d1d);
}

.visual-troubleshooting-agent::before {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.visual-troubleshooting-agent::after {
  background: linear-gradient(135deg, #0f172a, #38bdf8);
}

.visual-infringement-governance::before {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.visual-infringement-governance::after {
  background: linear-gradient(135deg, #f97316, #facc15);
}

.visual-maas::before {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
}

.visual-maas::after {
  background: linear-gradient(135deg, #14b8a6, #a7f3d0);
}

.visual-infras::before {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.visual-infras::after {
  background: linear-gradient(135deg, #94a3b8, #334155);
}

.visual-investment::before {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.visual-investment::after {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.portfolio-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 24px 30px;
  text-align: center;
}

.portfolio-type {
  margin: 0 0 12px;
  color: #6e6e73;
  opacity: 1;
  font-size: 13px;
  font-weight: 800;
}

.portfolio-copy h2 {
  margin: 0;
  max-width: 360px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.08;
}

.portfolio-copy p:not(.portfolio-type) {
  margin: 14px 0 0;
  max-width: 340px;
  color: #6e6e73;
  opacity: 1;
  font-size: 14px;
  line-height: 1.55;
}

.portfolio-copy a {
  margin-top: 18px;
  color: #0066cc;
  font-size: 15px;
  font-weight: 700;
}

.portfolio-status {
  margin-top: 18px;
  color: #6e6e73;
  font-size: 15px;
  font-weight: 700;
}

.portfolio-copy a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.portfolio-card:focus-within {
  outline: 3px solid rgba(20, 110, 245, 0.34);
  outline-offset: 3px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 22px;
}

.timeline-item time {
  color: var(--cyan);
  font-weight: 800;
}

.timeline-item h3 {
  margin: 0 0 8px;
}

.timeline-item p {
  margin: 0;
}

.career-section {
  margin-top: 34px;
  padding: 42px 46px 46px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(48, 58, 90, 0.1);
  backdrop-filter: blur(24px) saturate(125%);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
}

.career-section .section-head {
  margin-bottom: 0;
}

.career-list {
  position: relative;
  display: grid;
  gap: 0;
  margin-top: 28px;
  padding-left: 0;
}

.career-entry {
  position: relative;
  display: grid;
  grid-template-columns: 118px 260px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 164px;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid rgba(38, 50, 75, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.career-entry:last-child {
  border-bottom: 1px solid rgba(38, 50, 75, 0.1);
}

.career-marker {
  display: none;
}

.career-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 4px;
  border-right: 1px solid var(--line);
}

.career-brand img {
  display: block;
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.career-brand-dual {
  flex-direction: column;
  gap: 10px;
}

.career-brand-dual img:first-child {
  width: 58px;
  height: 58px;
}

.career-brand-dual img:last-child {
  width: 82px;
  height: 28px;
}

.career-brand-wide img {
  width: 74px;
  height: 74px;
  border-radius: 10px;
}

.career-entry-grouped {
  grid-template-columns: 118px minmax(0, 1fr);
  align-items: stretch;
}

.career-entry-grouped .career-brand {
  align-self: stretch;
}

.career-group-content {
  display: grid;
}

.career-role-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 10px 0 22px;
}

.career-role-row + .career-role-row {
  padding-top: 22px;
  border-top: 1px solid rgba(38, 50, 75, 0.1);
}

.career-identity time {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.career-identity h3 {
  margin: 0 0 7px;
  font-size: 20px;
  line-height: 1.3;
}

.career-identity p,
.career-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.career-detail {
  padding-left: 4px;
}

.career-detail .team-scope {
  margin: 0 0 9px;
  color: #7b8391;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.career-detail ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #2f3747;
  font-size: 14px;
  line-height: 1.75;
}

.career-entry-placeholder {
  background: rgba(255, 255, 255, 0.18);
}

.page-hero,
.case-hero {
  padding: 72px 0 42px;
}

.case-hero h1 {
  max-width: 940px;
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 36px;
  padding: 0 14px;
  cursor: pointer;
}

.filter-button.active {
  border-color: var(--cyan);
  color: var(--text);
  background: rgba(0, 168, 168, 0.12);
}

.case-layout {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
}

.showcase-page .case-hero {
  margin-top: 42px;
  margin-bottom: 24px;
  padding: 54px 64px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.40)),
    radial-gradient(circle at 20% 18%, rgba(255, 205, 244, 0.50), transparent 24rem),
    radial-gradient(circle at 82% 18%, rgba(53, 216, 235, 0.42), transparent 24rem);
  box-shadow: 0 28px 80px rgba(71, 63, 133, 0.11);
  backdrop-filter: blur(18px);
}

.showcase-page .case-hero h1 {
  color: #4020bb;
}

.showcase-page .case-layout {
  align-items: start;
}

.case-aside {
  position: sticky;
  top: 92px;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(71, 63, 133, 0.08);
  backdrop-filter: blur(14px);
}

.case-aside a,
.case-aside span {
  display: block;
  padding: 8px 0;
  color: var(--muted-strong);
  font-size: 13px;
}

.content-stack {
  display: grid;
  gap: 16px;
}

.content-block h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.showcase-page .content-block {
  border-color: rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(71, 63, 133, 0.08);
  backdrop-filter: blur(14px);
}

.regulation-case {
  background:
    linear-gradient(180deg, rgba(6, 33, 64, 0.88) 0, rgba(10, 48, 85, 0.72) 520px, rgba(245, 250, 252, 0) 860px),
    radial-gradient(circle at 18% 12%, rgba(20, 191, 159, 0.44), transparent 28rem),
    radial-gradient(circle at 88% 16%, rgba(20, 110, 245, 0.42), transparent 30rem),
    linear-gradient(180deg, #eef8fb 0%, #f7fbfd 55%, #ffffff 100%);
}

.regulation-hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 96px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 42px;
  padding: 54px 0 46px;
}

.regulation-hero-copy {
  color: #ffffff;
}

.regulation-hero-copy .tag-row {
  margin-top: 0;
}

.regulation-hero-copy .status {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.regulation-hero-copy .status.blue,
.regulation-hero-copy .status.green {
  border-color: rgba(45, 226, 230, 0.34);
  background: rgba(45, 226, 230, 0.14);
  color: #d9feff;
}

.regulation-hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: clamp(42px, 6.8vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.regulation-hero p {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(239, 250, 255, 0.86);
  font-size: 19px;
  line-height: 1.72;
}

.regulation-hero .button {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.regulation-hero .button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #10d6d2, #1b7cff);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(14, 165, 233, 0.24);
}

.regulation-product {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(108, 230, 255, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(10, 85, 119, 0.9), rgba(4, 36, 72, 0.94)),
    radial-gradient(circle at 50% 42%, rgba(38, 217, 220, 0.26), transparent 18rem);
  box-shadow:
    0 34px 90px rgba(0, 22, 49, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.regulation-product::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent);
  pointer-events: none;
}

.hero-image-card {
  aspect-ratio: 16 / 9;
  margin: 0;
  padding: 0;
  background: #061c36;
}

.hero-image-card::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-topbar {
  position: relative;
  z-index: 1;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(108, 230, 255, 0.28);
  background: rgba(3, 24, 54, 0.56);
  color: rgba(215, 250, 255, 0.76);
  font-size: 13px;
}

.product-topbar strong {
  color: #37f6ff;
  font-size: 22px;
  letter-spacing: 0;
}

.product-screen {
  position: relative;
  z-index: 1;
  min-height: 520px;
  padding: 28px;
}

.screen-map {
  position: absolute;
  inset: 112px 30% 70px 26%;
  border: 1px solid rgba(83, 230, 255, 0.28);
  border-radius: 48% 52% 42% 58%;
  background:
    radial-gradient(circle at 54% 42%, rgba(67, 244, 255, 0.48), transparent 6rem),
    linear-gradient(135deg, rgba(55, 214, 255, 0.22), rgba(20, 191, 159, 0.08));
  box-shadow:
    0 0 38px rgba(55, 230, 255, 0.22),
    inset 0 0 42px rgba(55, 230, 255, 0.16);
}

.screen-map::before {
  content: "安徽省";
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 22px;
  font-weight: 850;
  text-shadow: 0 0 16px rgba(39, 236, 255, 0.8);
}

.screen-map::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 58% 42% 54% 46%;
}

.map-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #24f4ee;
  box-shadow: 0 0 0 7px rgba(36, 244, 238, 0.14), 0 0 18px rgba(36, 244, 238, 0.9);
}

.node-a { left: 24%; top: 34%; }
.node-b { right: 24%; top: 28%; }
.node-c { left: 36%; bottom: 26%; }
.node-d { right: 34%; bottom: 22%; }

.screen-panel {
  position: absolute;
  width: 230px;
  min-height: 148px;
  border: 1px solid rgba(66, 226, 255, 0.38);
  border-radius: 12px;
  padding: 18px;
  background: rgba(7, 63, 98, 0.72);
  color: #dffcff;
  box-shadow: inset 0 0 28px rgba(45, 226, 230, 0.12);
  backdrop-filter: blur(8px);
}

.screen-panel small,
.screen-panel span {
  display: block;
  color: rgba(223, 252, 255, 0.74);
}

.screen-panel small {
  font-size: 13px;
  font-weight: 800;
}

.screen-panel strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0;
}

.screen-panel span {
  margin-top: 8px;
  font-size: 13px;
}

.alerts {
  left: 28px;
  top: 28px;
}

.online {
  right: 28px;
  top: 72px;
}

.flow {
  right: 58px;
  bottom: 38px;
}

.bar-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.42fr;
  gap: 8px;
  align-items: end;
  height: 46px;
  margin-top: 16px;
}

.bar-row i {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #33f6ff, #1f7dff);
}

.bar-row i:nth-child(1) { height: 72%; }
.bar-row i:nth-child(2) { height: 100%; }
.bar-row i:nth-child(3) { height: 42%; }

.ring {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: conic-gradient(#26f3ef 0 79%, #276dff 79% 100%);
}

.ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: inherit;
  background: #0b4267;
}

.regulation-proof {
  padding-top: 10px;
}

.case-intro {
  padding-top: 60px;
}

.capability-band,
.workflow-section,
.dashboard-reference,
.result-section,
.contribution-section {
  position: relative;
}

.capability-grid,
.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.capability-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 251, 252, 0.88));
  box-shadow: 0 18px 44px rgba(15, 74, 116, 0.08);
}

.capability-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #073b66;
  color: #31f1e8;
  font-size: 13px;
  font-weight: 900;
}

.capability-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.capability-card p {
  margin: 0;
  color: var(--muted-strong);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(15, 74, 116, 0.08);
}

.workflow div {
  position: relative;
  min-height: 172px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.workflow div:last-child {
  border-right: 0;
}

.workflow div::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #16c7bd;
  box-shadow: 0 0 0 8px rgba(22, 199, 189, 0.12);
}

.workflow strong,
.workflow span {
  display: block;
}

.workflow strong {
  font-size: 22px;
}

.workflow span {
  margin-top: 8px;
  color: var(--muted-strong);
  font-size: 14px;
}

.dashboard-reference figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 18px;
  background: #082b45;
  box-shadow: 0 22px 60px rgba(15, 74, 116, 0.12);
}

.dashboard-reference img {
  display: block;
  width: 100%;
  height: auto;
}

.dashboard-reference figcaption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.case-artifact {
  margin: 26px 0 0;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 18px;
  background: #061c36;
  box-shadow: 0 22px 60px rgba(15, 74, 116, 0.12);
}

.case-artifact img {
  display: block;
  width: 100%;
  height: auto;
}

.case-artifact figcaption {
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

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

.case-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 18px;
  background: #061c36;
  box-shadow: 0 18px 46px rgba(15, 74, 116, 0.10);
}

.case-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.case-gallery figcaption {
  min-height: 62px;
  padding: 13px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
}

.contribution-list {
  display: grid;
  gap: 12px;
}

.contribution-list article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(15, 74, 116, 0.06);
}

.contribution-list strong {
  color: #0a6285;
  font-size: 18px;
}

.contribution-list span {
  color: var(--muted-strong);
}

.cv-hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 42px auto 22px;
  padding: 42px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 64px rgba(48, 58, 90, 0.1);
  backdrop-filter: blur(22px) saturate(125%);
}

.cv-hero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1;
}

.cv-language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 4px;
  border: 1px solid rgba(210, 210, 215, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

.cv-language-switch button,
.cv-language-switch a {
  min-width: 94px;
  height: 36px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cv-language-switch button.active,
.cv-language-switch a.active {
  background: #1d1d1f;
  color: #ffffff;
}

.cv-download-panel {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 96px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 64px rgba(48, 58, 90, 0.1);
  backdrop-filter: blur(22px) saturate(125%);
}

.cv-download-row {
  min-height: 104px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 110px 112px;
  align-items: center;
  gap: 24px;
  padding: 22px 30px;
  border-bottom: 1px solid rgba(38, 50, 75, 0.1);
}

.cv-download-row:last-child {
  border-bottom: 0;
}

.cv-role-tag {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(224, 58, 224, 0.1);
  color: #a522b4;
  font-size: 12px;
  font-weight: 800;
}

.cv-role-tag-violet {
  background: rgba(110, 76, 224, 0.1);
  color: #6040c8;
}

.cv-role-tag-blue {
  background: rgba(20, 110, 245, 0.1);
  color: #146ef5;
}

.cv-download-copy h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.cv-download-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.cv-file-meta {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.cv-download-button {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(20, 110, 245, 0.18);
  border-radius: 8px;
  background: #146ef5;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.cv-download-button:hover {
  background: #0e5fd8;
}

@media (max-width: 720px) {
  .cv-hero {
    align-items: stretch;
    flex-direction: column;
    padding: 28px 24px;
  }

  .cv-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .cv-language-switch {
    width: 100%;
  }

  .cv-language-switch button,
  .cv-language-switch a {
    min-width: 0;
    width: 100%;
  }

  .cv-download-row {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    padding: 24px;
  }

  .cv-file-meta {
    text-align: left;
  }

  .cv-download-button {
    width: 100%;
  }
}

.contact-business-card {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 96px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 64px rgba(48, 58, 90, 0.12);
  backdrop-filter: blur(22px) saturate(125%);
}

.contact-business-profile {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(38, 50, 75, 0.1);
}

.contact-business-mark {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  font-size: 25px;
  font-weight: 850;
}

.contact-business-profile h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.contact-business-profile strong {
  display: block;
  margin-top: 5px;
  color: var(--muted-strong);
  font-size: 16px;
}

.contact-business-profile p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-business-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 30px 0;
}

.contact-business-details a,
.contact-business-details div {
  min-width: 0;
}

.contact-business-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.contact-business-details strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.contact-business-action {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9px;
  background: linear-gradient(135deg, #146ef5, #00a8a8);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.contact-business-action:hover {
  filter: brightness(0.96);
}

@media (max-width: 720px) {
  .contact-business-card {
    padding: 28px 22px;
  }

  .contact-business-profile {
    align-items: flex-start;
  }

  .contact-business-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.cv-language-pending {
  min-height: 250px;
  padding: 70px 30px;
  text-align: center;
}

.cv-language-pending strong {
  font-size: 22px;
}

.cv-language-pending p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cv-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cv-card {
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 54px rgba(71, 63, 133, 0.10);
  backdrop-filter: blur(14px);
  padding: 0 28px 34px;
  text-align: center;
}

.cv-art {
  position: relative;
  width: calc(100% + 56px);
  min-height: 260px;
  margin-bottom: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 205, 244, 0.52), rgba(53, 216, 235, 0.44));
}

.cv-art::before,
.cv-art::after,
.cv-art span {
  content: "";
  position: absolute;
  border-radius: 24px;
}

.cv-art::before {
  width: 44%;
  height: 58%;
  left: 18%;
  bottom: -10%;
  background: linear-gradient(135deg, #146ef5, #00c7be);
  transform: rotate(-8deg);
}

.cv-art::after {
  width: 38%;
  height: 50%;
  right: 16%;
  bottom: 12%;
  background: linear-gradient(135deg, #d929e8, #ffd36a);
  transform: rotate(8deg);
}

.cv-art span:nth-child(1) {
  width: 54%;
  height: 10px;
  left: 23%;
  top: 32%;
  background: rgba(255, 255, 255, 0.72);
}

.cv-art span:nth-child(2) {
  width: 38%;
  height: 10px;
  left: 31%;
  top: 42%;
  background: rgba(255, 255, 255, 0.52);
}

.cv-art span:nth-child(3) {
  width: 66px;
  height: 66px;
  right: 18%;
  top: 20%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.cv-product .cv-art {
  background: linear-gradient(135deg, rgba(87, 180, 255, 0.42), rgba(184, 116, 255, 0.32));
}

.cv-classic .cv-art {
  background: linear-gradient(135deg, rgba(20, 191, 159, 0.34), rgba(255, 217, 110, 0.36));
}

.cv-card p {
  margin: 0 0 10px;
  color: #4020bb;
  font-size: 14px;
  font-weight: 800;
}

.cv-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}

.cv-card > span {
  min-height: 46px;
  margin: 16px 0 24px;
  color: var(--muted-strong);
  font-size: 15px;
}

.tabbed-case {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 96px;
  border: 1px solid rgba(255, 255, 255, 0.70);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 24px 70px rgba(71, 63, 133, 0.10);
  backdrop-filter: blur(18px);
  padding: 24px;
}

.case-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.50);
}

.case-tab {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-strong);
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
}

.case-tab.active {
  background: #1d1d1f;
  color: #ffffff;
}

.case-tab-panel {
  min-height: 420px;
  margin-top: 20px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 78% 24%, rgba(53, 216, 235, 0.24), transparent 26rem);
  padding: 46px;
}

.case-tab-panel h2 {
  margin: 0;
  color: #4020bb;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.case-tab-panel p {
  max-width: 780px;
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 18px;
}

.case-story-page {
  position: relative;
  overflow-x: clip;
  background: var(--page-background);
  background-attachment: fixed;
}

.case-story-page::before {
  display: none;
}

.case-story-page::after {
  display: none;
}

.case-story-page main {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding-top: 74px;
  padding-bottom: 96px;
}

.story-hero,
.story-section,
.story-tabs {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.story-hero {
  min-height: auto;
  padding: 34px 0 18px;
}

.story-hero > figure {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(218, 223, 235, 0.8);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(71, 63, 133, 0.12);
}

.story-hero > figure > img {
  display: block;
  width: 100%;
  height: auto;
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.story-meta > span {
  padding: 8px 12px;
  border: 1px solid rgba(190, 199, 219, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #475467;
  font-size: 14px;
  font-weight: 650;
}

.story-anchor-nav {
  position: sticky;
  top: 66px;
  z-index: 20;
  display: flex;
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px;
  gap: 6px;
  overflow-x: auto;
  border: 1px solid rgba(218, 223, 235, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 34px rgba(71, 63, 133, 0.1);
  backdrop-filter: blur(14px);
}

.story-anchor-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 12px;
  color: #475467;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.story-anchor-nav a:hover {
  background: #eef4ff;
  color: #175cd3;
}

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

.story-gallery-grid figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(218, 223, 235, 0.82);
  border-radius: 20px;
  background: #fff;
}

.story-gallery-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.story-gallery-grid figcaption {
  padding: 12px 14px 14px;
  color: #475467;
  font-size: 14px;
  font-weight: 650;
}

.story-section,
.listing-pipeline,
.rag-build-diagram {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 720px) {
  .story-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.story-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #111827;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

.story-hero-copy > p:last-child {
  max-width: 820px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.55;
}

.story-hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 26px 70px rgba(71, 63, 133, 0.16);
  backdrop-filter: blur(14px);
}

.story-hero-media::before {
  content: "";
  position: absolute;
  width: 58%;
  aspect-ratio: 1;
  right: -18%;
  top: -24%;
  border-radius: 38% 62% 56% 44%;
  background: linear-gradient(135deg, rgba(24, 211, 230, 0.78), rgba(217, 41, 232, 0.74));
  filter: blur(2px);
  opacity: 0.78;
}

.story-hero-media img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 20px;
  padding: 10px;
}

.story-tabs {
  position: sticky;
  top: 66px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(31, 41, 55, 0.08);
  backdrop-filter: saturate(180%) blur(22px);
}

.story-tabs a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #424245;
  font-size: 14px;
  font-weight: 760;
}

.story-tabs a:hover {
  background: #1d1d1f;
  color: #ffffff;
}

.story-section {
  margin-top: 24px;
  padding: 62px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
  scroll-margin-top: 136px;
}

.story-section-head {
  margin-bottom: 34px;
}

.story-section-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: 0;
}

.story-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  gap: 44px;
  align-items: center;
}

.story-copy-block h3,
.story-callout h3,
.story-table-block h3,
.story-metric-panel h3 {
  margin: 0 0 16px;
  color: #2f3742;
  font-size: 24px;
  line-height: 1.12;
}

.story-copy-block p,
.story-table-block p,
.story-metric-panel p {
  margin: 0 0 16px;
  color: #2f3037;
  font-size: 17px;
  line-height: 1.78;
}

.story-media-card,
.story-wide-image,
.story-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 52px rgba(71, 63, 133, 0.12);
}

.story-media-card img,
.story-wide-image img,
.story-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.story-callout {
  margin-top: 26px;
  padding: 30px;
  border: 1px solid rgba(64, 32, 187, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(242, 251, 252, 0.78));
  box-shadow: inset 4px 0 0 rgba(64, 32, 187, 0.72);
}

.story-callout ol,
.decision-list ul {
  margin: 0;
  padding-left: 22px;
  color: #2f3037;
  font-size: 16px;
  line-height: 1.78;
}

.story-callout li + li,
.decision-list li + li {
  margin-top: 6px;
}

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

.decision-list article,
.story-table-block,
.story-metric-panel {
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.05);
  padding: 28px;
}

.market-kpi-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #d9e6f5;
  border-radius: 18px;
  background: #fff;
}

.market-kpi-panel > h3 {
  margin: 0;
  padding: 26px 28px;
  border-bottom: 1px solid #dfe9f5;
  color: #172033;
  font-size: 24px;
}

.market-kpi-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-kpi-item {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid #e3ebf5;
  border-bottom: 1px solid #e3ebf5;
}

.market-kpi-item:nth-child(3n) { border-right: 0; }
.market-kpi-item:nth-last-child(-n + 3) { border-bottom: 0; }

.market-kpi-item span {
  display: block;
  color: #247df0;
  font-size: 14px;
  font-weight: 800;
}

.market-kpi-item strong {
  display: block;
  margin-top: 12px;
  color: #111827;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.market-kpi-item p {
  margin: 14px 0 0;
  color: #637084;
  font-size: 14px;
  line-height: 1.65;
}

.decision-list strong {
  display: block;
  margin-bottom: 12px;
  color: #111827;
  font-size: 20px;
  line-height: 1.35;
}

.story-wide-image {
  margin-bottom: 24px;
}

#flows .story-wide-image {
  margin-top: 28px;
}

.workflow-layer-details {
  margin-top: 30px;
}

.workflow-layer-heading {
  margin-bottom: 20px;
}

.workflow-layer-heading > span {
  display: block;
  margin-bottom: 8px;
  color: #635bff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workflow-layer-heading h3 {
  margin: 0;
  color: #111827;
  font-size: 26px;
  line-height: 1.2;
}

.workflow-layer-heading p {
  max-width: 860px;
  margin: 10px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}

.workflow-layer-card {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(218, 223, 235, 0.96);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.workflow-layer-card header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(218, 223, 235, 0.84);
  background: linear-gradient(135deg, rgba(246, 247, 255, 0.96), rgba(255, 255, 255, 0.9));
}

.workflow-layer-card header > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: #635bff;
  color: #ffffff;
  font-size: 15px;
  font-weight: 850;
}

.workflow-layer-card:nth-of-type(2) header > span,
.workflow-layer-card:nth-of-type(4) header > span {
  background: #2776ed;
}

.workflow-layer-card:nth-of-type(5) header > span {
  background: #13956d;
}

.workflow-layer-card h4 {
  margin: 0;
  color: #111827;
  font-size: 21px;
  line-height: 1.3;
}

.workflow-layer-card header p {
  margin: 5px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}

.workflow-layer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.workflow-layer-grid > div {
  min-width: 0;
  padding: 22px 20px 24px;
}

.workflow-layer-grid > div + div {
  border-left: 1px solid rgba(218, 223, 235, 0.8);
}

.workflow-layer-grid strong {
  display: block;
  margin-bottom: 9px;
  color: #4f46e5;
  font-size: 13px;
  font-weight: 820;
}

.workflow-layer-grid p {
  margin: 0;
  color: #3f4652;
  font-size: 14px;
  line-height: 1.72;
}

.story-table-block + .story-table-block,
.story-metric-panel {
  margin-top: 20px;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.story-table-block table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: #25262d;
  font-size: 14px;
}

.story-table-block th,
.story-table-block td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(210, 210, 215, 0.72);
  text-align: left;
  vertical-align: top;
}

.story-table-block th {
  color: #111827;
  font-weight: 820;
}

.story-table-block tbody tr:last-child td {
  border-bottom: 0;
}

.story-metric-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-metric-panel article + article {
  border-left: 1px solid rgba(210, 210, 215, 0.72);
  padding-left: 26px;
}

.story-gallery {
  display: flex;
  gap: 18px;
  width: 100%;
  will-change: transform;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-gallery-viewport {
  overflow: hidden;
  padding: 2px;
}

.result-dashboard {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.result-group-title {
  margin: 10px 0 18px;
  color: #2f3742;
  font-size: 22px;
  line-height: 1.2;
}

.result-dashboard + .result-group-title {
  margin-top: 36px;
}

.result-dashboard-regulation {
  margin-bottom: 0;
}

.result-dashboard article {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.05);
}

.result-dashboard svg {
  width: 42px;
  height: 42px;
  color: #4020bb;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.result-dashboard span,
.result-dashboard strong,
.result-dashboard p {
  display: block;
}

.text-metric-dashboard article {
  grid-template-columns: minmax(0, 1fr);
}

.text-metric-dashboard span {
  white-space: nowrap;
}

html[lang="en"] .text-metric-dashboard span {
  white-space: normal;
  overflow-wrap: anywhere;
}

html[lang="en"] .result-dashboard strong {
  font-size: clamp(28px, 2.8vw, 40px);
  overflow-wrap: anywhere;
}

html[lang="en"] .rag-commercial-dashboard article {
  grid-template-columns: minmax(0, 1fr);
}

.text-metric-dashboard p {
  min-height: 3.1em;
}

.result-dashboard span {
  align-self: center;
  color: #4020bb;
  font-size: 14px;
  font-weight: 820;
}

.result-dashboard strong {
  grid-column: 1 / -1;
  margin-top: 14px;
  color: #111827;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1;
}

.result-dashboard p {
  grid-column: 1 / -1;
  margin: 14px 0 0;
  color: #424245;
  font-size: 15px;
  line-height: 1.55;
}

.story-carousel {
  position: relative;
}

.story-gallery figure {
  flex: 0 0 calc((100% - 18px) / 2);
}

.story-gallery img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-gallery figcaption {
  padding: 14px 18px;
  color: #424245;
  font-size: 14px;
  font-weight: 760;
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  color: #111827;
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.carousel-button.prev {
  left: -18px;
}

.carousel-button.next {
  right: -18px;
}

.tab-prompt {
  max-width: 760px;
  margin-top: 28px;
  border-left: 3px solid #d929e8;
  padding: 14px 18px;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.58);
  color: #5b4a76;
}

.showcase-placeholder {
  position: relative;
  min-height: 260px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 153, 221, 0.34), rgba(24, 211, 230, 0.34)),
    rgba(255, 255, 255, 0.62);
}

.showcase-placeholder span {
  position: absolute;
  border-radius: 24px;
  background: linear-gradient(135deg, #146ef5, #00c7be);
}

.showcase-placeholder span:nth-child(1) {
  width: 34%;
  height: 54%;
  left: 10%;
  bottom: 16%;
}

.showcase-placeholder span:nth-child(2) {
  width: 26%;
  height: 44%;
  left: 40%;
  top: 18%;
  background: linear-gradient(135deg, #d929e8, #ffd36a);
}

.showcase-placeholder span:nth-child(3) {
  width: 20%;
  height: 34%;
  right: 11%;
  bottom: 18%;
  background: linear-gradient(135deg, #7c3aed, #22d3ee);
}

.placeholder-note {
  border-left: 3px solid var(--amber);
  padding: 12px 14px;
  margin-top: 16px;
  background: rgba(183, 121, 31, 0.08);
  color: #7c4a00;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
}

.contact-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.contact-card {
  position: relative;
  width: min(460px, 100%);
  border: 1px solid rgba(210, 210, 215, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 90px rgba(29, 29, 31, 0.18);
  padding: 32px;
  text-align: left;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #f5f5f7;
  color: #6e6e73;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.contact-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 34px;
}

.contact-mark {
  width: 56px;
  height: 56px;
  margin: 0;
  display: grid;
  place-items: center;
  flex: 0 0 56px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.contact-card h2 {
  margin: 0;
  color: #111827;
  font-size: 26px;
  line-height: 1.1;
}

.contact-identity strong {
  display: block;
  margin-top: 5px;
  color: #4f5662;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.contact-identity p {
  margin: 10px 0 0;
  color: #6d7480;
  font-size: 14px;
  font-weight: 700;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 16px;
  border: 1px solid rgba(38, 50, 75, 0.08);
  border-radius: 16px;
  background: rgba(246, 248, 252, 0.76);
  color: #303746;
  font-size: 14px;
  text-align: left;
}

.contact-lines a,
.contact-lines span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  color: #303746;
  text-decoration: none;
  font-weight: 700;
}

.contact-lines svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: #247df0;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-actions .button {
  min-width: 118px;
}

/* Public-security multimodal retrieval case */
.rag-case-page .story-hero {
  padding: 24px 0 20px;
}

.rag-case-page .story-hero h1 {
  max-width: none;
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.06;
}

.rag-background-grid {
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
  align-items: end;
}

.rag-cover-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rag-audience-strip,
.rag-governance-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  border-block: 1px solid rgba(36, 125, 240, 0.14);
}

.rag-audience-strip article,
.rag-governance-strip article {
  padding: 22px 24px;
}

.rag-audience-strip article + article,
.rag-governance-strip article + article {
  border-left: 1px solid rgba(36, 125, 240, 0.12);
}

.rag-audience-strip strong,
.rag-governance-strip strong {
  display: block;
  margin-bottom: 6px;
  color: #1674dc;
  font-size: 16px;
}

.rag-audience-strip p,
.rag-governance-strip p {
  margin: 0;
  color: #586273;
  font-size: 14px;
  line-height: 1.65;
}

.rag-core-problems {
  margin-top: 28px;
}

.rag-core-problems strong {
  color: #121827;
}

.rag-decision-list article {
  grid-template-columns: 56px minmax(220px, 0.62fr) minmax(0, 1.38fr);
}

.rag-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rag-package-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(36, 125, 240, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.rag-package-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 6px;
  background: #247df0;
  color: #fff;
  font-weight: 800;
}

.rag-package-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.rag-package-grid p {
  margin: 0;
  color: #596274;
  line-height: 1.7;
}

.rag-business-table {
  margin-top: 28px;
}

.rag-pricing-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(36, 125, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.rag-pricing-panel > div {
  display: flex;
  min-height: 132px;
  padding: 22px 26px;
  flex-direction: column;
  justify-content: center;
}

.rag-pricing-panel > div + div {
  border-left: 1px solid rgba(36, 125, 240, 0.13);
}

.rag-pricing-panel span,
.rag-economics-grid span {
  color: #247df0;
  font-size: 14px;
  font-weight: 750;
}

.rag-pricing-panel strong {
  margin-top: 7px;
  color: #121827;
  font-size: 34px;
  line-height: 1.12;
}

.rag-pricing-panel small {
  margin-top: 6px;
  color: #727b8d;
}

.rag-pricing-panel > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 17px 26px;
  border-top: 1px solid rgba(36, 125, 240, 0.13);
  color: #596274;
  line-height: 1.75;
}

.rag-unit-economics {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(36, 125, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.rag-unit-economics h3 {
  margin: 0;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(36, 125, 240, 0.13);
  font-size: 22px;
}

.rag-economics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rag-economics-grid article {
  min-height: 164px;
  padding: 24px 26px;
  border-right: 1px solid rgba(36, 125, 240, 0.13);
  border-bottom: 1px solid rgba(36, 125, 240, 0.13);
}

.rag-economics-grid article:nth-child(3n) {
  border-right: 0;
}

.rag-economics-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.rag-economics-grid strong {
  display: block;
  margin-top: 8px;
  color: #121827;
  font-size: 30px;
  line-height: 1.2;
}

.rag-economics-grid p {
  margin: 10px 0 0;
  color: #596274;
  font-size: 14px;
  line-height: 1.65;
}

.rag-unit-economics > small {
  display: block;
  padding: 15px 26px;
  border-top: 1px solid rgba(36, 125, 240, 0.13);
  color: #727b8d;
  line-height: 1.65;
}

.story-table-scroll {
  overflow-x: auto;
}

.compact-callout {
  margin-top: 24px;
  padding-block: 22px;
}

.rag-architecture {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(36, 125, 240, 0.16);
  border-radius: 8px;
  background: rgba(239, 247, 255, 0.72);
}

.rag-architecture-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid rgba(36, 125, 240, 0.14);
}

.rag-architecture-head h3,
.rag-architecture-head p {
  margin: 0;
}

.rag-architecture-head h3 {
  font-size: 22px;
}

.rag-architecture-head p {
  color: #667083;
  font-size: 14px;
}

.rag-build-diagram {
  padding: 28px 26px 26px;
  background:
    linear-gradient(rgba(36, 125, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 125, 240, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.rag-build-pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.rag-build-step {
  position: relative;
  min-height: 184px;
  padding: 20px 17px 18px;
  border: 1px solid rgba(36, 125, 240, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(36, 86, 145, 0.06);
}

.rag-build-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 17px;
  border-top: 2px solid #79b3ff;
}

.rag-build-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -17px;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-top: 2px solid #247df0;
  border-right: 2px solid #247df0;
  transform: rotate(45deg);
}

.rag-build-index {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #8a96a9;
  font-size: 11px;
  font-weight: 700;
}

.rag-build-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  color: #1672ed;
  background: #e9f3ff;
  font-size: 10px;
  font-weight: 800;
}

.rag-build-step-model {
  border-color: rgba(38, 178, 203, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(230, 249, 255, 0.88));
}

.rag-build-step-model .rag-build-symbol {
  color: #087c96;
  background: #dff8fb;
}

.rag-build-step strong,
.rag-build-stores strong,
.rag-query-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #172033;
  font-size: 15px;
}

.rag-build-step p,
.rag-build-stores p,
.rag-query-grid p {
  margin: 0;
  color: #606b7e;
  font-size: 13px;
  line-height: 1.65;
}

.rag-build-router {
  position: relative;
  height: 64px;
  margin-inline: 9%;
}

.rag-build-router::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  border-top: 1px solid #7db6f5;
}

.rag-build-router::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 23px;
  border-left: 2px solid #247df0;
}

.rag-build-router span {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 1;
  padding: 3px 12px;
  color: #247df0;
  background: #eef7ff;
  font-size: 11px;
  font-weight: 700;
  transform: translateX(-50%);
}

.rag-build-stores {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.rag-build-stores article {
  position: relative;
  display: flex;
  min-height: 106px;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-top: 3px solid #247df0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(36, 86, 145, 0.07);
}

.rag-build-stores article::before {
  content: "";
  position: absolute;
  top: -44px;
  left: 50%;
  height: 41px;
  border-left: 1px solid #7db6f5;
}

.rag-store-type {
  min-width: 54px;
  padding: 7px 6px;
  border-radius: 4px;
  color: #fff;
  background: #247df0;
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.rag-build-stores article:nth-child(2) {
  border-top-color: #15aebb;
}

.rag-build-stores article:nth-child(2) .rag-store-type {
  background: #15aebb;
}

.rag-build-stores article:nth-child(3) {
  border-top-color: #6777db;
}

.rag-build-stores article:nth-child(3) .rag-store-type {
  background: #6777db;
}

.rag-customer-database {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(36, 125, 240, 0.2);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(226, 241, 255, 0.94), rgba(241, 238, 255, 0.9));
}

.rag-customer-title strong,
.rag-customer-title span {
  display: block;
}

.rag-customer-title strong {
  color: #172033;
  font-size: 15px;
}

.rag-customer-title span {
  margin-top: 4px;
  color: #667083;
  font-size: 12px;
}

.rag-database-sizes {
  display: flex;
  gap: 8px;
}

.rag-database-sizes span {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(36, 125, 240, 0.17);
  border-radius: 4px;
  color: #46536a;
  background: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  white-space: nowrap;
}

.rag-database-sizes b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 3px;
  color: #fff;
  background: #247df0;
  font-size: 11px;
}

.rag-query-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
}

.rag-query-inputs,
.rag-query-pipeline {
  display: grid;
  gap: 0;
}

.rag-query-inputs {
  border-right: 1px solid rgba(36, 125, 240, 0.13);
}

.rag-query-inputs article,
.rag-query-pipeline article {
  padding: 22px 26px;
}

.rag-query-inputs article + article,
.rag-query-pipeline article + article {
  border-top: 1px solid rgba(36, 125, 240, 0.12);
}

.rag-effect-dashboard {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rag-commercial-dashboard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rag-commercial-dashboard article > span {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  white-space: nowrap;
}

.rag-product-heading {
  margin-top: 42px;
  padding-top: 34px;
  border-top: 1px solid rgba(36, 125, 240, 0.14);
}

.rag-product-heading .result-group-title {
  margin: 0;
}

.rag-product-heading > p {
  max-width: none;
  margin: 10px 0 0;
  color: #667083;
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
}

.rag-product-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.rag-product-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(36, 125, 240, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.66);
}

.rag-product-panel-person {
  grid-template-rows: auto 1fr 2fr 1fr;
}

.rag-product-panel-vehicle {
  grid-template-rows: auto repeat(4, minmax(0, 1fr));
}

.rag-product-panel-person .rag-result-row,
.rag-product-panel-vehicle .rag-result-row {
  min-height: 0;
}

.rag-product-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(36, 125, 240, 0.13);
  background: rgba(235, 245, 255, 0.68);
}

.rag-product-panel header > span {
  color: #172033;
  font-size: 19px;
  font-weight: 800;
}

.rag-result-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 154px 118px;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 15px 22px;
}

.rag-result-row + .rag-result-row {
  border-top: 1px solid rgba(36, 125, 240, 0.11);
}

.rag-result-copy strong,
.rag-result-copy span {
  display: block;
}

.rag-result-copy strong {
  color: #263044;
  font-size: 14px;
}

.rag-result-copy span {
  margin-top: 5px;
  color: #7a8495;
  font-size: 12px;
  line-height: 1.45;
}

.rag-result-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.rag-result-metrics > span {
  min-width: 0;
  text-align: right;
}

.rag-result-metrics small,
.rag-result-metrics b {
  display: block;
}

.rag-result-metrics small {
  margin-bottom: 4px;
  color: #8b95a6;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rag-result-metrics b {
  color: #172033;
  font-size: 19px;
  text-align: right;
  white-space: nowrap;
}

.rag-industry-reference {
  color: #818b9b;
  font-size: 11px;
  text-align: right;
  white-space: nowrap;
}

.rag-result-row.featured {
  background: linear-gradient(90deg, rgba(36, 125, 240, 0.055), rgba(21, 174, 187, 0.07));
}

.rag-result-row.featured .rag-result-metrics b {
  color: #126edb;
}

.rag-results-note {
  margin: 20px 0 0;
  color: #7a8495;
  font-size: 12px;
  line-height: 1.65;
}

.rag-acceptance {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(36, 125, 240, 0.14);
}

.rag-acceptance h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.rag-acceptance-copy p {
  color: #566174;
  line-height: 1.8;
}

.rag-acceptance-metrics dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(36, 125, 240, 0.14);
  border-left: 1px solid rgba(36, 125, 240, 0.14);
}

.rag-acceptance-metrics div {
  padding: 18px 20px;
  border-right: 1px solid rgba(36, 125, 240, 0.14);
  border-bottom: 1px solid rgba(36, 125, 240, 0.14);
  background: rgba(255, 255, 255, 0.5);
}

.rag-acceptance-metrics dt {
  color: #687386;
  font-size: 13px;
}

.rag-acceptance-metrics dd {
  margin: 7px 0 0;
  color: #172033;
  font-size: 19px;
  font-weight: 800;
}

.rag-acceptance-note,
.rag-gallery-note {
  color: #747e8f;
  font-size: 13px;
}

.rag-gallery-note {
  margin: -6px 0 22px;
}

.project-visual.project-cover {
  background: #071e45;
}

.project-visual.project-cover::before,
.project-visual.project-cover::after {
  display: none;
}

.project-visual.project-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .profile-hero-intro {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .profile-hero-copy {
    padding: 34px 28px 28px;
  }

  .profile-photo {
    min-height: 360px;
  }

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

  .profile-achievements article {
    border-top: 1px solid rgba(210, 210, 215, 0.7);
  }

  .career-section {
    padding: 34px 28px 38px;
  }

  .career-entry {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px 20px;
    align-items: start;
  }

  .career-brand {
    grid-row: 1 / 3;
    min-height: 84px;
  }

  .career-identity,
  .career-detail {
    grid-column: 2;
  }

  .career-detail {
    padding-left: 0;
  }

  .case-story-page::before {
    right: -72px;
    width: min(78vw, 420px);
    opacity: 0.38;
  }

  .case-story-page::after {
    right: 92px;
    width: 180px;
    height: 140px;
  }

  .nav {
    align-items: start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .showcase-content,
  .regulation-hero,
  .story-hero,
  .story-two-column,
  .case-layout,
  .timeline-item,
  .summary-grid,
  .contribution-list article {
    grid-template-columns: 1fr;
  }

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

  .workflow-layer-grid > div + div {
    border-left: 0;
  }

  .workflow-layer-grid > div:nth-child(even) {
    border-left: 1px solid rgba(218, 223, 235, 0.8);
  }

  .workflow-layer-grid > div:nth-child(n + 3) {
    border-top: 1px solid rgba(218, 223, 235, 0.8);
  }

  .pillar-grid,
  .case-grid,
  .metric-grid,
  .skill-matrix,
  .capability-grid,
  .result-grid,
  .case-gallery,
  .decision-list,
  .result-dashboard,
  .story-metric-panel,
  .portfolio-grid,
  .cv-grid {
    grid-template-columns: 1fr;
  }

  .rag-product-results {
    grid-template-columns: 1fr;
  }

  .rag-product-heading {
    display: block;
  }

  .rag-product-heading > p {
    text-align: left;
  }

  .story-hero {
    min-height: auto;
    gap: 28px;
    padding: 26px 0 18px;
  }

  .story-hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .story-hero-copy > p:last-child {
    font-size: 18px;
  }

  .story-tabs {
    top: 72px;
    width: calc(100% - 32px);
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    border-radius: 22px;
  }

  .story-tabs a {
    flex: 0 0 auto;
  }

  .story-section {
    padding: 30px 18px;
    border-radius: 24px;
    scroll-margin-top: 176px;
  }

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

  .story-section-head h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .rag-result-row {
    grid-template-columns: minmax(0, 1fr) 150px 112px;
    gap: 12px;
    padding-inline: 18px;
  }

  .story-copy-block h3,
  .story-callout h3,
  .story-table-block h3,
  .story-metric-panel h3 {
    font-size: 24px;
  }

  .story-metric-panel article + article {
    border-left: 0;
    border-top: 1px solid rgba(210, 210, 215, 0.72);
    padding-left: 0;
    padding-top: 22px;
  }

  .story-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
  }

  .story-gallery figure {
    flex: 0 0 min(86vw, 520px);
    scroll-snap-align: start;
  }

  .carousel-button {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }

  .carousel-button.prev {
    left: 8px;
  }

  .carousel-button.next {
    right: 8px;
  }

  .regulation-hero {
    min-height: auto;
    gap: 26px;
    padding: 34px 0 28px;
  }

  .regulation-hero h1 {
    font-size: clamp(38px, 12vw, 60px);
  }

  .regulation-hero p {
    font-size: 17px;
  }

  .regulation-product {
    border-radius: 16px;
  }

  .product-screen {
    min-height: 620px;
    padding: 18px;
  }

  .screen-map {
    inset: 210px 12% 150px;
  }

  .screen-panel {
    width: min(230px, calc(100% - 36px));
  }

  .alerts {
    left: 18px;
    top: 18px;
  }

  .online {
    right: 18px;
    top: 180px;
  }

  .flow {
    left: 18px;
    right: auto;
    bottom: 18px;
  }

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

  .workflow div {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow div:last-child {
    border-bottom: 0;
  }

  .contribution-list article {
    gap: 8px;
  }

  .portfolio-card {
    min-height: 500px;
    border-radius: 22px;
  }

  .project-visual {
    min-height: 260px;
  }

  .portfolio-copy {
    padding: 32px 24px 36px;
  }

  .section-head,
  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .case-aside {
    position: static;
  }

  .showcase-page .portfolio-hero,
  .glass-hero,
  .showcase-page .case-hero {
    margin-top: 22px;
    border-radius: 22px;
    padding: 42px 24px;
  }

  .glass-hero h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .cv-card {
    min-height: 480px;
  }

  .home-showcase {
    width: min(100% - 20px, var(--max));
    padding-top: 22px;
  }

  .showcase-shell {
    min-height: auto;
    border-radius: 22px;
  }

  .showcase-content {
    min-height: auto;
    gap: 24px;
    padding: 42px 24px 18px;
  }

  .showcase-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .showcase-copy p:not(.showcase-kicker) {
    font-size: 17px;
  }

  .showcase-device {
    min-height: 280px;
  }

  .device-frame {
    width: 94%;
    top: 16px;
    right: 3%;
    border-width: 7px;
    border-radius: 24px;
  }

  .showcase-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px 24px 36px;
  }

  .gallery-tile {
    min-height: 116px;
  }
}

@media (max-width: 560px) {
  .profile-hero-copy {
    padding: 30px 22px 24px;
  }

  .profile-hero-copy h1 {
    font-size: 42px;
  }

  .profile-photo {
    min-height: 300px;
  }

  .profile-achievements {
    grid-template-columns: 1fr;
  }

  .career-section {
    padding: 30px 20px 34px;
  }

  .career-entry {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px 16px;
  }

  .career-brand {
    min-height: 68px;
  }

  .career-brand img,
  .career-brand-wide img {
    width: 52px;
    height: 52px;
  }

  .career-brand-dual img:first-child {
    width: 44px;
    height: 44px;
  }

  .career-brand-dual img:last-child {
    width: 56px;
    height: 20px;
  }

  .career-identity h3 {
    font-size: 18px;
  }

  .workflow-layer-card header {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 18px;
  }

  .workflow-layer-card header > span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .workflow-layer-card h4 {
    font-size: 18px;
  }

  .workflow-layer-grid {
    grid-template-columns: 1fr;
  }

  .workflow-layer-grid > div {
    padding: 18px;
  }

  .workflow-layer-grid > div:nth-child(even) {
    border-left: 0;
  }

  .workflow-layer-grid > div + div {
    border-top: 1px solid rgba(218, 223, 235, 0.8);
  }

  .rag-product-panel header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .rag-result-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .rag-result-metrics {
    max-width: 220px;
  }

  .rag-result-metrics > span,
  .rag-result-metrics b,
  .rag-industry-reference {
    text-align: left;
  }
}

/* AI MaaS platform case */
.maas-business-intro {
  max-width: 900px;
  margin-bottom: 24px;
}

.maas-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.maas-service-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.maas-service-grid article.featured {
  border-color: rgba(39, 118, 237, 0.34);
  background: linear-gradient(145deg, rgba(238, 246, 255, 0.96), rgba(255, 255, 255, 0.88));
}

.maas-service-grid span,
.maas-service-grid strong,
.maas-service-grid b {
  display: block;
}

.maas-service-grid span {
  color: #2776ed;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.maas-service-grid strong {
  min-height: 2.8em;
  margin-top: 9px;
  color: #111827;
  font-size: 18px;
  line-height: 1.4;
}

.maas-service-grid b {
  margin-top: 18px;
  color: #111827;
  font-size: 27px;
  line-height: 1;
}

.maas-service-grid p {
  margin: 14px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}

.maas-value-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.maas-value-chain span {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: #303846;
  font-size: 14px;
  font-weight: 760;
}

.maas-value-chain span:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  right: -11px;
  color: #2776ed;
  font-weight: 900;
}

.maas-value-chain b {
  display: grid;
  flex: 0 0 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: #2776ed;
  color: #ffffff;
  font-size: 11px;
}

.maas-business-note p {
  margin: 0;
  color: #2f3037;
  font-size: 16px;
  line-height: 1.72;
}

.maas-lifecycle {
  margin-top: 30px;
}

.maas-lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.maas-lifecycle-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(218, 223, 235, 0.96);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.maas-lifecycle-grid article.feedback {
  border-color: rgba(19, 149, 109, 0.34);
  background: rgba(238, 251, 247, 0.9);
}

.maas-lifecycle-grid article > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 11px;
  background: #2776ed;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
}

.maas-lifecycle-grid article.feedback > span {
  background: #13956d;
  font-size: 22px;
}

.maas-lifecycle-grid strong {
  display: block;
  color: #111827;
  font-size: 17px;
  line-height: 1.35;
}

.maas-lifecycle-grid p {
  margin: 10px 0 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.65;
}

.maas-results-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.maas-results-grid article {
  min-height: 154px;
  padding: 20px;
}

.maas-results-grid strong {
  margin-top: 11px;
  font-size: clamp(28px, 2.6vw, 34px);
  line-height: 1.08;
}

.maas-results-grid p {
  min-height: auto;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
}

.maas-case-page #results {
  padding-top: 50px;
  padding-bottom: 50px;
}

.maas-case-page #results .story-section-head {
  margin-bottom: 26px;
}

.maas-case-page #results .result-group-title {
  margin-bottom: 14px;
}

@media (max-width: 980px) {
  .maas-service-grid,
  .maas-lifecycle-grid,
  .maas-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .maas-value-chain {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .maas-value-chain span:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .maas-service-grid,
  .maas-lifecycle-grid,
  .maas-results-grid,
  .maas-value-chain {
    grid-template-columns: 1fr;
  }

  .maas-value-chain span::after {
    display: none;
  }

  .maas-service-grid strong {
    min-height: auto;
  }
}

/* Inventory case content within the shared case-story template */
.inventory-case-page .story-hero { background:none; }
.inventory-case-page .story-hero h1 { max-width:900px; color:#111827; }
.inventory-case-page .story-hero-copy>p { max-width:980px; color:#4b5563; }
.inventory-case-page .inventory-thesis { border-left-color:#ef6345; background:linear-gradient(135deg,rgba(255,255,255,.88),rgba(255,241,237,.76)); }
.inventory-case-page .inventory-thesis strong { color:#df4f34; }
.inventory-strategy-choice { margin-bottom:24px; padding:26px; border:1px solid #d8e2ef; border-radius:20px; background:linear-gradient(135deg,#f4f8ff,#fff); }
.inventory-strategy-intro span { color:#146ef5; font-size:10px; font-weight:850; letter-spacing:.1em; }
.inventory-strategy-intro h3 { margin:8px 0; color:#172033; font-size:24px; }
.inventory-strategy-intro p { max-width:980px; margin:0; color:#64748b; font-size:13px; line-height:1.75; }
.inventory-strategy-models { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:20px; }
.inventory-strategy-models article { min-height:190px; padding:20px; border:1px solid #dce4ef; border-radius:15px; background:#fff; }
.inventory-strategy-models article.recommended { border-color:#b9ddcf; background:#f1faf6; }
.inventory-strategy-models small { color:#718096; font-size:9px; font-weight:850; letter-spacing:.06em; }
.inventory-strategy-models .recommended small { color:#16856a; }
.inventory-strategy-models strong { display:block; margin-top:8px; color:#1f2b3d; font-size:16px; line-height:1.45; }
.inventory-strategy-models p { margin:10px 0 0; color:#66758a; font-size:12px; line-height:1.7; }
.inventory-problem-list { grid-template-columns:1fr 1fr; }
.inventory-decision-objective { padding:25px 28px; border-radius:18px; background:#0b2142; color:#fff; }
.inventory-decision-objective span { color:#7faeff; font-size:10px; font-weight:850; letter-spacing:.1em; }
.inventory-decision-objective strong { max-width:1060px; display:block; margin-top:10px; font-size:25px; line-height:1.48; }
.inventory-decision-objective p { margin:10px 0 0; color:#b9c8dc; font-size:15px; line-height:1.7; }
.inventory-decision-framework { display:grid; gap:10px; margin-top:18px; }
.inventory-decision-framework article { padding:22px 22px; display:grid; grid-template-columns:50px minmax(280px,.9fr) 1.4fr 165px; gap:20px; align-items:center; border:1px solid #dce4ef; border-radius:14px; background:#fff; }
.inventory-decision-framework article>span { width:42px; height:42px; display:grid; place-items:center; border-radius:10px; background:#eaf2ff; color:#1459d9; font-size:14px; font-weight:850; }
.inventory-decision-framework small { color:#718096; font-size:11px; font-weight:850; letter-spacing:.06em; }
.inventory-decision-framework h3 { margin:5px 0 0; color:#1c293b; font-size:18px; line-height:1.45; }
.inventory-decision-framework p { margin:0; color:#637187; font-size:14px; line-height:1.75; }
.inventory-decision-framework article>b { padding:11px 12px; border-radius:8px; background:#f1f6ff; color:#245b9f; text-align:center; font-size:13px; line-height:1.45; }
.inventory-decision-summary { margin-top:14px; padding:16px 20px; display:flex; justify-content:space-between; gap:18px; border-left:4px solid #16856a; border-radius:0 12px 12px 0; background:#eef9f5; }
.inventory-decision-summary b { color:#314b45; font-size:14px; }.inventory-decision-summary span { color:#16856a; font-size:14px; font-weight:800; }
.inventory-promise-formula { margin-top:30px; padding:34px 28px; display:flex; align-items:baseline; justify-content:center; flex-wrap:wrap; gap:14px; border-radius:20px; background:#0b2142; color:#fff; font-family:Georgia,serif; }
.inventory-promise-formula>span { color:#b9d0ff; font-size:clamp(30px,4vw,48px); font-style:italic; }
.inventory-promise-formula>b { color:#fff; font-size:28px; }
.inventory-promise-formula small { margin-left:3px; color:#9fb0c8; font-size:12px; font-style:normal; }
.inventory-formula-notes { display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin:16px 0 24px; }
.inventory-formula-notes p { margin:0; padding:14px; border:1px solid #dde4ee; border-radius:12px; background:#fff; color:#667085; font-size:12px; }
.inventory-formula-notes b { color:#1762df; }
.inventory-governance-layers { display:grid; gap:18px; counter-reset:inventory-layer; }
.inventory-running-example { margin-bottom:24px; padding:26px 28px; display:grid; grid-template-columns:1.35fr 1fr; gap:28px; border:1px solid #c7d7ee; border-radius:20px; background:linear-gradient(135deg,#eff5ff,#fff); }
.inventory-running-example span { color:#146ef5; font-size:10px; font-weight:850; letter-spacing:.1em; }
.inventory-running-example h3 { margin:6px 0 8px; color:#111827; font-size:22px; }
.inventory-running-example p { margin:0; color:#5b6779; font-size:13px; }
.inventory-running-example dl { margin:0; display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.inventory-running-example dl>div { padding:12px; border-radius:10px; background:rgba(255,255,255,.8); }
.inventory-running-example dt { color:#738096; font-size:9px; }.inventory-running-example dd { margin:3px 0 0; color:#1f3c63; font-size:12px; font-weight:750; }
.inventory-governance-layers>article { overflow:hidden; border:1px solid rgba(203,213,225,.9); border-radius:20px; background:rgba(255,255,255,.78); }
.inventory-governance-layers>article>header { display:grid; grid-template-columns:56px 1fr; gap:16px; align-items:center; padding:22px 26px; border-bottom:1px solid #e5eaf1; background:linear-gradient(90deg,#f4f7fb,#fff); }
.inventory-governance-layers>article>header>span { width:44px; height:44px; display:grid; place-items:center; border-radius:50%; background:#1459d9; color:#fff; font-weight:850; }
.inventory-governance-layers h3 { margin:0; color:#111827; font-size:20px; }
.inventory-governance-layers header p { margin:4px 0 0; color:#64748b; font-size:13px; }
.inventory-governance-layers .layer-body { padding:24px 28px; color:#475569; font-size:14px; }
.inventory-governance-layers .layer-body>p { margin:0 0 12px; }
.inventory-governance-layers .layer-body>p:last-child { margin-bottom:0; }
.inventory-governance-layers aside { margin-top:18px; padding:14px 18px; border-left:3px solid #ef6345; border-radius:0 12px 12px 0; background:#fff3ef; color:#77554d; font-size:12px; }
.mechanism-steps { margin-bottom:20px; padding:14px; display:flex; align-items:center; gap:9px; overflow:auto; border-radius:12px; background:#eef4ff; color:#37516f; white-space:nowrap; }
.mechanism-steps>b { color:#1459d9; font-size:11px; }.mechanism-steps>span { padding:6px 9px; border-radius:8px; background:#fff; font-size:11px; }.mechanism-steps>i { color:#4f7fc8; font-style:normal; }
.layer-example { margin-top:18px; padding:18px 20px; border:1px solid #ccd9ea; border-radius:14px; background:#f8fbff; }
.layer-example>b { display:block; margin-bottom:8px; color:#1459d9; font-size:11px; letter-spacing:.04em; }
.layer-example p { margin:6px 0; color:#5d6a7d; font-size:12px; }
.layer-example code { display:table; margin:10px auto; padding:10px 16px; border-radius:9px; background:#0b2142; color:#fff; font-family:Georgia,serif; font-size:19px; }
.layer-example ol { margin:4px 0 0; padding-left:20px; color:#566477; font-size:12px; }.layer-example li+li { margin-top:7px; }
.supplier-tier-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:4px 0 22px; }
.supplier-tier-cards>article { overflow:hidden; display:grid; grid-template-rows:auto 1fr; border:1px solid #dce4ef; border-radius:15px; background:#fff; }
.tier-title { padding:16px; display:flex; align-items:center; gap:11px; border-bottom:1px solid #e7ecf3; }
.tier-title>span { width:38px; height:38px; display:grid; place-items:center; border-radius:10px; color:#fff; font-size:19px; font-weight:900; }
.tier-a .tier-title { background:#eaf2ff; }.tier-a .tier-title>span { background:#0f57c7; }.tier-b .tier-title { background:#eef8f5; }.tier-b .tier-title>span { background:#16856a; }.tier-c .tier-title { background:#fff5e9; }.tier-c .tier-title>span { background:#c97713; }
.tier-title h4 { margin:0; color:#172033; font-size:15px; }.tier-title small { color:#748196; font-size:10px; }
.supplier-tier-cards dl { margin:0; padding:8px 16px 16px; display:grid; grid-template-rows:74px 68px 81px 1fr; }.supplier-tier-cards dl>div { padding:10px 0; border-bottom:1px dashed #dde4ed; }.supplier-tier-cards dl>div:last-child { border-bottom:0; }
.supplier-tier-cards dt { color:#748196; font-size:9px; font-weight:750; }.supplier-tier-cards dd { margin:4px 0 0; color:#526075; font-size:11px; line-height:1.55; }.supplier-tier-cards dd strong { color:#1459d9; font-size:16px; }
.inventory-trust-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:2px 0 20px; }
.inventory-trust-card { min-width:0; padding:17px; display:flex; flex-direction:column; border:1px solid #d8e2ef; border-radius:14px; background:#fff; }
.trust-card-head { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.trust-card-head>span { width:32px; height:32px; flex:0 0 32px; display:grid; place-items:center; border-radius:9px; background:#1459d9; color:#fff; font-size:10px; font-weight:850; }
.trust-card-head small { display:block; color:#7a879a; font-size:7px; font-weight:850; letter-spacing:.1em; }
.trust-card-head h4 { margin:2px 0 0; color:#182338; font-size:15px; }
.inventory-trust-card>p { min-height:50px; margin:0 0 11px; color:#66758a; font-size:10px; line-height:1.6; }
.trust-rule { padding:11px 0; border-top:1px dashed #dce4ee; }
.trust-rule b,.trust-rule strong,.trust-rule small { display:block; }
.trust-rule b { color:#47566c; font-size:9px; }
.trust-rule strong { margin-top:4px; color:#1459d9; font-size:13px; }
.trust-rule small { margin-top:4px; color:#738094; font-size:9px; line-height:1.55; }
.inventory-trust-card.forward { background:#f3fbf8; }.inventory-trust-card.forward .trust-card-head>span { background:#16856a; }.inventory-trust-card.forward .trust-rule strong { color:#14735e; }
.inventory-trust-card.supplier { background:#fffaf2; }.inventory-trust-card.supplier .trust-card-head>span { background:#c97713; }.inventory-trust-card.supplier .trust-rule strong { color:#a75e0c; }
.trust-rule.blocked strong { color:#b34832; }.trust-conclusion { margin-top:auto; padding:9px; border-radius:8px; background:#e5f6ef; color:#14735e; font-size:9px; font-weight:750; text-align:center; }
.supplier-fulfillment-map { margin:24px 0; padding:22px; border-radius:16px; background:#f3f6fb; }
.fulfillment-map-head>span { color:#146ef5; font-size:9px; font-weight:850; letter-spacing:.1em; }.fulfillment-map-head h4 { margin:5px 0 7px; color:#172033; font-size:18px; }.fulfillment-map-head p { margin:0; color:#68768a; font-size:11px; }
.fulfillment-paths { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:18px; }
.fulfillment-paths>article { padding:17px; border:1px solid #d8e1ee; border-radius:13px; background:#fff; }
.path-title { display:flex; align-items:center; gap:9px; }.path-title>span { width:27px; height:27px; display:grid; place-items:center; border-radius:50%; background:#1459d9; color:#fff; font-size:9px; font-weight:850; }.path-title h5 { margin:0; color:#1d2b40; font-size:13px; }
.path-flow { margin:14px 0; display:flex; align-items:center; gap:5px; }.path-flow b { flex:1; padding:7px 5px; border-radius:7px; background:#eef4ff; color:#31557f; font-size:8px; text-align:center; }.path-flow i { color:#5f86bd; font-style:normal; font-size:10px; }
.fulfillment-paths>article>p { min-height:80px; margin:0; color:#67758a; font-size:10px; line-height:1.65; }.path-mode { display:block; margin-top:12px; padding:8px; border-radius:8px; text-align:center; font-size:11px; }.path-mode.stocked { background:#e8f7f1; color:#14735e; }.fulfillment-paths>article>small { display:block; margin-top:6px; color:#7c8798; font-size:9px; text-align:center; }
.split-modes { margin-top:12px; display:grid; gap:7px; }.split-modes>span { padding:9px; border-radius:8px; background:#eef4ff; }.split-modes>span:last-child { background:#fff3e7; }.split-modes strong,.split-modes small { display:block; }.split-modes strong { color:#1459d9; font-size:10px; }.split-modes>span:last-child strong { color:#b46816; }.split-modes small { margin-top:3px; color:#758197; font-size:8px; }
.fulfillment-path-summary { margin:12px 0 0; padding:10px 12px; border-left:3px solid #146ef5; background:#fff; color:#5f6d82; font-size:10px; }
.fulfillment-mode-groups { display:grid; gap:14px; margin-top:14px; }
.mode-group { overflow:hidden; border:1px solid #d6e0ed; border-radius:14px; background:#fff; }
.mode-group>header { padding:16px 18px; display:flex; gap:14px; align-items:flex-start; border-bottom:1px solid #e4eaf2; }
.mode-group>header>span { padding:5px 8px; border-radius:6px; background:#1459d9; color:#fff; font-size:8px; font-weight:850; letter-spacing:.08em; white-space:nowrap; }
.mode-group>header h5 { margin:0; color:#172033; font-size:17px; }.mode-group>header p { margin:4px 0 0; color:#6b788d; font-size:10px; }
.mode-paths { padding:14px; display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.mode-paths>article,.locked-path { padding:14px; border:1px solid #e0e6ef; border-radius:11px; background:#fbfcfe; }
.mode-paths h6,.locked-path h6 { margin:0; color:#20324c; font-size:12px; }.mode-paths p,.locked-path p { margin:10px 0 0; color:#6b788c; font-size:9px; line-height:1.6; }
.mode-group>footer { padding:11px 16px; background:#eaf7f2; color:#176f5a; font-size:10px; font-weight:750; }
.source-lock>header>span { background:#c97713; }.source-lock>header { background:#fff8ee; }.locked-path { margin:14px; }.locked-path>strong { display:block; margin-top:12px; padding:8px; border-radius:7px; background:#fff0dc; color:#ae6517; font-size:10px; text-align:center; }
.example-contrast { margin-top:18px; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.example-contrast>div { padding:16px; border:1px solid #dce4ef; border-radius:12px; background:#fff; }.example-contrast>div:first-child { border-left:3px solid #ef6345; }.example-contrast>div:last-child { border-left:3px solid #146ef5; }.example-contrast b { color:#263b59; font-size:12px; }.example-contrast p { margin:6px 0 0; color:#68768a; font-size:11px; }
.calculation-items { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin:10px 0; }
.calculation-items span { padding:10px; border-radius:9px; background:#fff; color:#143b6d; font-size:18px; font-weight:850; text-align:center; }.calculation-items small { display:block; margin-bottom:4px; color:#7a8799; font-size:9px; font-weight:500; }
.channel-example { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin:10px 0; }.channel-example>div { padding:12px; border:1px solid #dce4ef; border-radius:10px; background:#fff; }.channel-example strong,.channel-example span,.channel-example small { display:block; }.channel-example strong { color:#143b6d; }.channel-example span { margin-top:6px; color:#146ef5; font-size:12px; }.channel-example small { color:#7c8798; }
.layer-levels { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.layer-levels p { padding:16px; border:1px solid #e2e8f0; border-radius:12px; background:#f8fafc; }
.layer-levels b { display:block; margin-bottom:7px; color:#174ea6; }
.inventory-model-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-bottom:18px; }
.inventory-model-grid>div { padding:16px; border-radius:12px; background:#f2f6fc; }
.inventory-model-grid b { display:block; margin-bottom:9px; color:#1e3a5f; font-size:12px; }
.inventory-model-grid code { display:block; color:#1459d9; font-family:Georgia,serif; font-size:17px; }
.replenishment-trigger { margin:18px 0; padding:18px; border:1px solid #d8e2ef; border-radius:14px; background:#f8fbff; }
.trigger-heading>span { color:#146ef5; font-size:8px; font-weight:850; letter-spacing:.12em; }.trigger-heading h4 { margin:4px 0 5px; color:#172033; font-size:17px; }.trigger-heading p { margin:0; color:#69778b; font-size:10px; }
.trigger-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:15px; }.trigger-grid article { padding:13px; border:1px solid #dde5ef; border-radius:11px; background:#fff; }.trigger-grid article.risk { background:#fff8f1; }.trigger-grid b,.trigger-grid strong { display:block; }.trigger-grid b { color:#68768a; font-size:9px; }.trigger-grid strong { margin-top:5px; color:#1459d9; font-size:12px; }.trigger-grid article.risk strong { color:#b46816; }.trigger-grid p { margin:6px 0 0; color:#6c798c; font-size:9px; line-height:1.55; }
.trigger-gate { margin-top:11px; display:grid; grid-template-columns:1fr auto 1fr auto 1fr; align-items:stretch; gap:8px; }.trigger-gate>div { padding:13px; border-radius:9px; background:#eef4ff; }.trigger-gate b,.trigger-gate code { display:block; }.trigger-gate b { color:#53657b; font-size:10px; }.trigger-gate code { margin-top:6px; color:#1b4f9f; font-family:inherit; font-size:11px; line-height:1.55; }.trigger-gate>i { align-self:center; color:#6f8fbd; font-style:normal; }.trigger-note { margin:11px 0 0; color:#69778a; font-size:11px; line-height:1.65; }
.ema-governance .layer-example code { display:block; margin:9px 0; padding:0; border-radius:0; background:transparent; color:#1459d9; text-align:left; font-size:19px; }
.inventory-rescue-flow { display:grid; grid-template-columns:repeat(9,auto); align-items:start; }
.inventory-rescue-flow article { max-width:170px; }
.inventory-rescue-flow article>span { width:36px; height:36px; display:grid; place-items:center; border:2px solid #ef6345; border-radius:50%; color:#e75538; font-size:11px; font-weight:850; }
.inventory-rescue-flow h3 { margin:14px 0 6px; font-size:15px; }
.inventory-rescue-flow p { margin:0; color:#64748b; font-size:11px; }
.inventory-rescue-flow>i { padding:9px 12px 0; color:#ef6345; font-style:normal; }
.inventory-compensation-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:24px; }
.inventory-compensation-grid article { padding:22px; border:1px solid #e4d9d5; border-radius:16px; background:#fffaf8; }
.inventory-compensation-grid span { display:block; color:#dd573b; font-size:11px; font-weight:800; }
.inventory-compensation-grid strong { display:block; margin-top:8px; color:#1f2937; font-size:17px; }
.inventory-compensation-grid p { margin:8px 0 0; color:#6b7280; font-size:12px; }
.rescue-boundary { margin:0 0 16px !important; }
.rescue-scenarios { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.rescue-scenarios>article { padding:16px; border:1px solid #dce4ef; border-radius:13px; background:#fff; }
.rescue-scenarios>article.cancel-scene { border-color:#efd8cf; background:#fff9f6; }
.rescue-scene-head { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.rescue-scene-head>span { width:32px; height:32px; display:grid; place-items:center; flex:0 0 32px; border-radius:9px; background:#1459d9; color:#fff; font-size:10px; font-weight:850; }
.cancel-scene .rescue-scene-head>span { background:#e05a3d; }
.rescue-scene-head small { display:block; color:#8190a4; font-size:7px; font-weight:850; letter-spacing:.1em; }.rescue-scene-head h4 { margin:2px 0 0; color:#172033; font-size:14px; }
.rescue-scenarios dl { margin:0; display:grid; grid-template-columns:1fr 1fr; gap:9px; }.rescue-scenarios dl>div { padding:10px; border-radius:9px; background:#f6f8fc; }.rescue-scenarios dt { color:#758399; font-size:9px; font-weight:800; }.rescue-scenarios dd { margin:4px 0 0; color:#556479; font-size:10px; line-height:1.55; }
.rescue-service-rule { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px; }.rescue-service-rule>div { padding:14px 16px; border-left:3px solid #16856a; border-radius:0 11px 11px 0; background:#f0faf6; }.rescue-service-rule>div:last-child { border-color:#e05a3d; background:#fff5f1; }.rescue-service-rule b { color:#24405f; font-size:11px; }.rescue-service-rule p { margin:5px 0 0; color:#637187; font-size:10px; line-height:1.6; }
.rescue-layers { display:grid; gap:12px; }
.rescue-layer { padding:18px; display:grid; grid-template-columns:72px 1fr; gap:18px; border:1px solid #dce4ef; border-radius:14px; background:#fff; }
.rescue-layer.cancel-layer { border-color:#efd7ce; background:#fff9f6; }
.rescue-layer-index { padding-top:2px; text-align:center; }.rescue-layer-index span { width:42px; height:42px; margin:0 auto; display:grid; place-items:center; border-radius:11px; background:#1459d9; color:#fff; font-size:13px; font-weight:850; }.cancel-layer .rescue-layer-index span { background:#e05a3d; }.rescue-layer-index small { display:block; margin-top:7px; color:#7c899c; font-size:8px; font-weight:850; letter-spacing:.08em; }
.rescue-layer-main h4 { margin:0 0 12px; color:#172033; font-size:17px; }
.rescue-layer-columns { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }.rescue-layer-columns>div { padding:13px 14px; border-radius:10px; background:#f5f8fc; }.cancel-layer .rescue-layer-columns>div { background:#fff3ee; }.rescue-layer-columns b { color:#4f6077; font-size:11px; }.rescue-layer-columns p { margin:6px 0 0; color:#56657a; font-size:12px; line-height:1.65; }
.rescue-principles { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px; }.rescue-principles>div { padding:15px 17px; border-left:4px solid #16856a; border-radius:0 11px 11px 0; background:#eef9f5; }.rescue-principles>div:last-child { border-color:#e05a3d; background:#fff4ef; }.rescue-principles b { color:#24405f; font-size:12px; }.rescue-principles p { margin:6px 0 0; color:#5e6d81; font-size:12px; line-height:1.65; }
.special-role-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:20px 0; }.special-role-grid article { padding:20px; border:1px solid #dce4ef; border-radius:15px; background:#fff; }.special-role-grid span { color:#146ef5; font-size:10px; font-weight:850; letter-spacing:.06em; }.special-role-grid strong { display:block; margin-top:7px; color:#182338; font-size:16px; }.special-role-grid p { margin:8px 0 0; color:#637187; font-size:12px; line-height:1.65; }
.special-category-tags { display:flex; flex-wrap:wrap; gap:8px; margin:10px 0 13px; }.special-category-tags span { padding:6px 10px; border:1px solid #d8e3f1; border-radius:999px; background:#f2f7ff; color:#24558f; font-size:11px; font-weight:750; }.special-category-intro>p { margin-top:0; }
.special-stage-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }.special-stage-grid>article { overflow:hidden; border:1px solid #d8e2ef; border-radius:16px; background:#fff; }.special-stage-grid header { padding:18px 20px; display:flex; gap:13px; align-items:center; border-bottom:1px solid #e3e9f1; background:#f2f7ff; }.special-stage-grid>article:last-child header { background:#eef9f5; }.special-stage-grid header>span { padding:6px 9px; border-radius:7px; background:#1459d9; color:#fff; font-size:9px; font-weight:850; }.special-stage-grid>article:last-child header>span { background:#16856a; }.special-stage-grid h3 { margin:0; color:#172033; font-size:18px; }.special-stage-grid header p { margin:4px 0 0; color:#69778b; font-size:11px; }
.special-stage-grid ol { margin:0; padding:6px 20px 18px; list-style:none; counter-reset:special-stage; }.special-stage-grid li { position:relative; padding:13px 0 13px 34px; border-bottom:1px dashed #dce4ee; counter-increment:special-stage; }.special-stage-grid li:last-child { border-bottom:0; }.special-stage-grid li::before { content:counter(special-stage); position:absolute; left:0; top:13px; width:23px; height:23px; display:grid; place-items:center; border-radius:50%; background:#eaf2ff; color:#1459d9; font-size:9px; font-weight:850; }.special-stage-grid li b { color:#32445b; font-size:12px; }.special-stage-grid li p { margin:5px 0 0; color:#627086; font-size:11px; line-height:1.65; }
.special-category-flow { margin-top:18px; display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr; align-items:stretch; gap:8px; }.special-category-flow>div { padding:14px; border-radius:11px; background:#eef4ff; }.special-category-flow small,.special-category-flow strong { display:block; }.special-category-flow small { color:#718097; font-size:9px; }.special-category-flow strong { margin-top:5px; color:#174f9f; font-size:12px; }.special-category-flow>i { align-self:center; color:#6288bf; font-style:normal; }
.special-category-principle { margin-top:14px; padding:17px 20px; display:grid; grid-template-columns:110px 1fr; gap:16px; align-items:center; border-left:4px solid #c97713; border-radius:0 12px 12px 0; background:#fff7eb; }.special-category-principle b { color:#a75e0c; font-size:11px; }.special-category-principle strong { color:#4f4a40; font-size:14px; line-height:1.6; }
.inventory-result-core { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:24px; }
.inventory-result-core article { min-height:170px; padding:25px 28px; display:flex; flex-direction:column; align-items:flex-start; border:1px solid #dce4ef; border-radius:18px; background:linear-gradient(145deg,#fff,#f6f9fd); }
.inventory-result-core span { color:#146ef5; font-size:10px; font-weight:850; letter-spacing:.08em; }
.inventory-result-core strong { display:block; margin-top:12px; color:#111827; font-size:20px; line-height:1.25; }
.inventory-result-core b { display:block; margin-top:auto; padding-top:22px; color:#1459d9; font-size:42px; line-height:1; letter-spacing:-.03em; }
.inventory-sensitive { margin-top:18px; }
@media (max-width:900px) {
  .inventory-strategy-models { grid-template-columns:1fr; }
  .inventory-strategy-models article { min-height:auto; }
  .inventory-decision-framework article { grid-template-columns:46px 1fr; }
  .inventory-decision-framework article>p,.inventory-decision-framework article>b { grid-column:2; }
  .inventory-decision-framework article>b { justify-self:start; }
  .inventory-decision-summary { flex-direction:column; gap:6px; }
  .inventory-formula-notes,.inventory-result-core { grid-template-columns:1fr 1fr; }
  .trigger-grid { grid-template-columns:1fr; }
  .trigger-gate { grid-template-columns:1fr; }.trigger-gate>i { transform:rotate(90deg); justify-self:center; }
  .inventory-rescue-flow { grid-template-columns:1fr; gap:10px; }
  .inventory-rescue-flow article { max-width:none; display:grid; grid-template-columns:48px 180px 1fr; align-items:center; }
  .inventory-rescue-flow h3,.inventory-rescue-flow p { margin:0; }.inventory-rescue-flow>i { transform:rotate(90deg); padding:0 0 0 12px; }
  .supplier-tier-cards,.fulfillment-paths { grid-template-columns:1fr; }
  .rescue-scenarios { grid-template-columns:1fr; }
  .rescue-layer { grid-template-columns:58px 1fr; gap:12px; }.rescue-layer-columns { grid-template-columns:1fr; }
  .special-stage-grid { grid-template-columns:1fr; }.special-category-flow { grid-template-columns:1fr; }.special-category-flow>i { transform:rotate(90deg); justify-self:center; }
  .inventory-trust-grid { grid-template-columns:1fr; }
  .inventory-trust-card>p { min-height:auto; }
  .supplier-tier-cards>article { display:block; }
  .supplier-tier-cards dl { display:block; }
  .mode-paths { grid-template-columns:1fr; }
  .fulfillment-paths>article>p { min-height:auto; }
}
@media (max-width:640px) {
  .inventory-problem-list,.inventory-formula-notes,.layer-levels,.inventory-model-grid,.inventory-compensation-grid,.inventory-result-core,.inventory-running-example,.example-contrast,.calculation-items,.channel-example { grid-template-columns:1fr; }
  .rescue-scenarios dl,.rescue-service-rule { grid-template-columns:1fr; }
  .rescue-layer { grid-template-columns:1fr; }.rescue-layer-index { display:flex; align-items:center; gap:10px; text-align:left; }.rescue-layer-index span { margin:0; }.rescue-layer-index small { margin:0; }.rescue-principles { grid-template-columns:1fr; }
  .special-role-grid { grid-template-columns:1fr; }.special-category-principle { grid-template-columns:1fr; gap:6px; }
  .inventory-case-page .story-hero h1 { font-size:38px; }
  .inventory-governance-layers>article>header { grid-template-columns:44px 1fr; padding:18px; }
  .inventory-governance-layers>article>header>span { width:36px; height:36px; }
  .inventory-governance-layers .layer-body { padding:20px; }
  .inventory-rescue-flow article { grid-template-columns:44px 1fr; }.inventory-rescue-flow article p { grid-column:2; }
}

/* AI Infras case */
.infras-case-page .story-hero { background:none; }
.infras-case-page .story-hero h1 { color:#111827; }
.infras-case-page .story-hero-copy>p:last-child { color:#4b5563; }
.infras-positioning { display:grid; gap:12px; }
.infras-positioning article { position:relative; padding:20px 22px; border:1px solid #dce5f1; border-radius:16px; background:#f8fafc; }
.infras-positioning article::before { content:""; position:absolute; left:-1px; top:22px; bottom:22px; width:3px; border-radius:3px; background:#a9b7ca; }
.infras-positioning article.active { border-color:#8bb4fb; background:linear-gradient(135deg,#eef5ff,#f8fbff); box-shadow:0 16px 34px rgba(39,91,170,.1); }
.infras-positioning article.active::before { background:#2f75df; }
.infras-positioning span,.infras-mechanism-head>span { display:block; margin-bottom:7px; color:#4d79b8; font-size:11px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.infras-positioning strong { display:block; color:#13233a; font-size:18px; }
.infras-positioning p { margin:6px 0 0; color:#64748b; font-size:13px; }
.infras-decision-list { grid-template-columns:repeat(2,minmax(0,1fr)); }
.infras-decision-list article { border-top:3px solid #4b82d0; }
.infras-architecture { display:grid; gap:10px; padding:24px; border:1px solid #dce5f1; border-radius:22px; background:#f3f6fa; }
.infras-architecture article { display:grid; grid-template-columns:150px minmax(0,1fr) 320px; align-items:center; gap:20px; padding:17px 20px; border:1px solid #dae3ee; border-radius:13px; background:#fff; box-shadow:0 7px 18px rgba(28,48,78,.05); }
.infras-architecture article.control,.infras-architecture article.orchestration { color:#fff; border-color:transparent; background:linear-gradient(105deg,#173b68,#245b9c); }
.infras-architecture article.ecosystem { border-left:4px solid #60a5fa; }
.infras-architecture article.infrastructure { border-left:4px solid #16a085; }
.infras-architecture article>span { font-size:12px; font-weight:800; letter-spacing:.06em; }
.infras-architecture article>div { display:flex; flex-wrap:wrap; gap:7px; }
.infras-architecture b { padding:7px 10px; border-radius:7px; background:#eef3f8; color:#233b58; font-size:12px; }
.infras-architecture .control b,.infras-architecture .orchestration b { background:rgba(255,255,255,.13); color:#fff; }
.infras-architecture p { margin:0; color:#66788d; font-size:12px; line-height:1.6; }
.infras-architecture .control p,.infras-architecture .orchestration p { color:#d8e8fb; }
.infras-capability-map { margin-top:20px; }
.infras-mechanism-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; }
.infras-mechanism-grid>article { padding:26px; border:1px solid #dce5f1; border-radius:19px; background:#fff; box-shadow:0 12px 30px rgba(24,48,82,.06); }
.infras-mechanism-grid>article.wide { grid-column:1/-1; }
.infras-mechanism-head h3 { margin:0; color:#14243a; font-size:22px; }
.infras-mechanism-head p { margin:9px 0 0; color:#64748b; font-size:14px; line-height:1.7; }
.infras-scheduling-flow { display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items:stretch; gap:10px; margin-top:22px; }
.infras-scheduling-flow>div { display:flex; min-height:112px; flex-direction:column; justify-content:center; padding:15px; border:1px solid #dbe5f0; border-radius:12px; background:#f8fafc; }
.infras-scheduling-flow>div.cloud { color:#fff; border-color:transparent; background:linear-gradient(145deg,#2468c5,#174884); }
.infras-scheduling-flow span { color:#4f80c5; font-size:11px; font-weight:800; }
.infras-scheduling-flow .cloud span { color:#bcd8ff; }
.infras-scheduling-flow b { margin-top:7px; font-size:14px; }
.infras-scheduling-flow small { margin-top:8px; color:#73839a; line-height:1.45; }
.infras-scheduling-flow .cloud small { color:#d8e8fb; }
.infras-scheduling-flow i { align-self:center; color:#88a0bd; font-style:normal; }
.infras-policy-pair { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; margin-top:20px; }
.infras-policy-pair>div { padding:17px; border-radius:13px; background:#f5f8fc; }
.infras-policy-pair span { color:#5781b8; font-size:11px; font-weight:800; text-transform:uppercase; }
.infras-policy-pair b { display:block; margin-top:5px; color:#1b314e; }
.infras-policy-pair ul { margin:13px 0 0; padding-left:18px; color:#64748b; font-size:13px; line-height:1.75; }
.infras-resilience-list { display:grid; gap:8px; margin:20px 0 0; padding:0; list-style:none; }
.infras-resilience-list li { display:flex; justify-content:space-between; gap:16px; padding:12px 14px; border-radius:9px; background:#f5f8fc; color:#68798f; font-size:13px; }
.infras-resilience-list b { color:#243a55; }
.infras-mechanism-grid>article.feedback { background:linear-gradient(140deg,#f2f7ff,#f8fbff); }
.infras-feedback-flow { display:flex; align-items:center; gap:10px; margin-top:20px; }
.infras-feedback-flow span { flex:1; padding:14px 10px; border:1px solid #cfdded; border-radius:10px; background:#fff; color:#25476f; font-size:12px; font-weight:750; text-align:center; }
.infras-feedback-flow i { color:#7496be; font-style:normal; }
.infras-results-grid { grid-template-columns:repeat(4,minmax(0,1fr)); }
.infras-results-grid strong { font-size:clamp(19px,2.2vw,27px); }
.infras-outcomes { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; margin-top:18px; }
.infras-outcomes article { padding:20px; border:1px solid #dfe6ee; border-radius:15px; background:#f8fafc; }
.infras-outcomes span { color:#4a7fca; font-size:12px; font-weight:800; }
.infras-outcomes strong { display:block; margin-top:16px; color:#1d324e; font-size:17px; }
.infras-outcomes p { margin:8px 0 0; color:#65778d; font-size:13px; line-height:1.7; }
.infras-contribution { margin-top:18px; }
.infras-gallery-note { margin:-4px 0 22px; color:#64748b; font-size:14px; }
.infras-entry-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.infras-architecture .infras-entry-grid article.entry { display:block; padding:20px; border-left:4px solid #60a5fa; }
.infras-architecture .infras-entry-grid article.business { border-left-color:#8b7ae8; }
.infras-architecture article.entry>span { color:#4778b7; font-size:11px; text-transform:uppercase; }
.infras-architecture article.entry>strong { display:block; margin:8px 0 12px; color:#172a43; font-size:17px; }
.infras-architecture article.entry>div { display:flex; margin-bottom:10px; }
.infras-core-platform { padding:24px; border-radius:16px; background:linear-gradient(135deg,#102e54,#245c99); color:#fff; }
.infras-core-platform header { display:grid; grid-template-columns:auto 1fr; align-items:end; gap:5px 18px; margin-bottom:18px; }
.infras-core-platform header span { grid-row:1/3; align-self:center; padding:8px 10px; border:1px solid rgba(255,255,255,.2); border-radius:8px; color:#bed8fa; font-size:10px; font-weight:800; letter-spacing:.1em; }
.infras-core-platform header h3 { margin:0; color:#fff; font-size:22px; }
.infras-core-platform header p { margin:0; color:#cfe2f8; }
.infras-core-modules { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:10px; }
.infras-architecture .infras-core-modules article { display:block; min-width:0; padding:17px; border:1px solid rgba(255,255,255,.15); border-radius:12px; background:rgba(255,255,255,.1); box-shadow:none; }
.infras-core-modules article>span { color:#a9cdf8; font-size:11px; }
.infras-core-modules article>strong { display:block; margin:13px 0 8px; color:#fff; font-size:15px; }
.infras-core-modules article>p { color:#dbe9f8; line-height:1.65; }
.infras-compute-layer { display:grid; grid-template-columns:120px 1fr auto 1fr 260px; align-items:center; gap:14px; padding:19px 20px; border:1px solid #cfe0dc; border-left:4px solid #16a085; border-radius:13px; background:#fff; }
.infras-compute-layer>span { color:#193852; font-size:13px; font-weight:800; }
.infras-compute-layer>div { display:flex; flex-wrap:wrap; gap:6px; }
.infras-compute-layer b { padding:7px 9px; }
.infras-compute-layer i { color:#72839a; font-size:11px; font-style:normal; }
.infras-compute-layer p { margin:0; }
@media (max-width:980px) {
  .infras-architecture article { grid-template-columns:120px minmax(0,1fr); }
  .infras-architecture p { grid-column:2; }
  .infras-scheduling-flow { grid-template-columns:1fr; }
  .infras-scheduling-flow>div { min-height:0; }
  .infras-scheduling-flow i { transform:rotate(90deg); }
  .infras-results-grid,.infras-outcomes { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .infras-core-modules { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .infras-compute-layer { grid-template-columns:120px 1fr; }
  .infras-compute-layer p { grid-column:2; }
}
@media (max-width:720px) {
  .infras-decision-list,.infras-mechanism-grid,.infras-policy-pair,.infras-results-grid,.infras-outcomes { grid-template-columns:1fr; }
  .infras-mechanism-grid>article.wide { grid-column:auto; }
  .infras-architecture { padding:14px; }
  .infras-architecture article { grid-template-columns:1fr; gap:11px; padding:16px; }
  .infras-architecture p { grid-column:auto; }
  .infras-feedback-flow { align-items:stretch; flex-direction:column; }
  .infras-feedback-flow i { align-self:center; transform:rotate(90deg); }
  .infras-resilience-list li { align-items:flex-start; flex-direction:column; gap:4px; }
  .infras-entry-grid,.infras-core-modules { grid-template-columns:1fr; }
  .infras-core-platform { padding:18px; }
  .infras-core-platform header { grid-template-columns:1fr; }
  .infras-core-platform header span { grid-row:auto; width:max-content; }
  .infras-compute-layer { grid-template-columns:1fr; }
  .infras-compute-layer p { grid-column:auto; }
}

/* IP Conflict case */
.ip-conflict-case-page .story-hero {
  background: none;
}
.ip-conflict-case-page .story-hero h1 { max-width: 820px; color: #111827; }
.ip-conflict-case-page .story-hero-copy > p:last-child { max-width: 860px; color: #4b5563; }
.ip-conflict-background-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(430px, .7fr);
  align-items: start;
  gap: 34px;
}
.ip-conflict-lead { max-width: none; }
.ip-conflict-risk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}
.ip-conflict-risk-grid article {
  min-width: 0;
  padding: 24px 21px;
  border: 1px solid #dce5f1;
  border-top: 3px solid #3978cf;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(28, 54, 90, .055);
}
.ip-conflict-risk-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 17px;
  border-radius: 10px;
  background: #edf4ff;
  color: #2e6fc8;
  font-size: 11px;
  font-weight: 850;
}
.ip-conflict-risk-grid strong { display: block; color: #162b46; font-size: 17px; line-height: 1.4; }
.ip-conflict-risk-grid p { margin: 9px 0 0; color: #66778c; font-size: 13px; line-height: 1.72; }
.ip-conflict-problem-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ip-conflict-problem-list article { border-left: 3px solid #7aa5df; }
.ip-conflict-decision-rail { display: grid; gap: 0; }
.ip-conflict-decision-rail article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #e3e8ef;
}
.ip-conflict-decision-rail article:first-child { padding-top: 0; }
.ip-conflict-decision-rail article:last-child { border-bottom: 0; }
.ip-conflict-decision-rail article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #173f73;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}
.ip-conflict-decision-rail strong { color: #172b45; font-size: 20px; }
.ip-conflict-decision-rail p { margin: 8px 0 0; color: #65768a; font-size: 15px; line-height: 1.75; }
.ip-conflict-economics {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1.08fr);
  align-items: stretch;
  gap: 12px;
  margin-top: 26px;
}
.ip-conflict-economics article {
  padding: 24px;
  border: 1px solid #dce5f1;
  border-radius: 18px;
  background: #f8fafc;
}
.ip-conflict-economics article.value { border-color: #85abdf; background: linear-gradient(145deg, #edf5ff, #f8fbff); }
.ip-conflict-economics > i { align-self: center; color: #7790ae; font-size: 25px; font-style: normal; font-weight: 800; }
.ip-conflict-economics span { color: #4779b9; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.ip-conflict-economics strong { display: block; margin-top: 14px; color: #1b314c; font-size: 16px; line-height: 1.55; }
.ip-conflict-economics p { margin: 10px 0 0; color: #6a798c; font-size: 13px; line-height: 1.65; }
.ip-conflict-scan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.ip-conflict-pipeline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  margin: 22px 0 40px;
}
.ip-conflict-pipeline article { padding: 21px; border: 1px solid #dce5ef; border-radius: 16px; background: #f8fafc; }
.ip-conflict-pipeline article.route { color: #fff; border-color: transparent; background: linear-gradient(145deg, #173e70, #2764a6); }
.ip-conflict-pipeline article > span { color: #4a7dbf; font-size: 11px; font-weight: 850; }
.ip-conflict-pipeline article.route > span { color: #b8d6fa; }
.ip-conflict-pipeline strong { display: block; margin-top: 13px; color: #19314e; font-size: 16px; line-height: 1.45; }
.ip-conflict-pipeline article.route strong { color: #fff; }
.ip-conflict-pipeline p { margin: 9px 0 0; color: #68798d; font-size: 12px; line-height: 1.68; }
.ip-conflict-pipeline article.route p { color: #d7e7f8; }
.ip-conflict-pipeline > i { align-self: center; color: #829ab7; font-style: normal; }
.ip-conflict-scan-grid article {
  display: flex;
  min-width: 0;
  min-height: 226px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid #dbe4ef;
  border-radius: 18px;
  background: #fff;
}
.ip-conflict-scan-grid article.realtime { border-color: #7ba7e1; background: #f2f7ff; }
.ip-conflict-scan-grid article.incident { color: #fff; border-color: transparent; background: linear-gradient(150deg, #163b69, #235e9e); }
.ip-conflict-scan-grid span { color: #4c7cba; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.ip-conflict-scan-grid .incident span { color: #bcd8fb; }
.ip-conflict-scan-grid strong { display: block; margin-top: 15px; color: #172d49; font-size: 18px; line-height: 1.42; }
.ip-conflict-scan-grid .incident strong { color: #fff; }
.ip-conflict-scan-grid p { margin: 10px 0 18px; color: #66778b; font-size: 13px; line-height: 1.7; }
.ip-conflict-scan-grid .incident p { color: #d7e6f7; }
.ip-conflict-scan-grid b { margin-top: auto; color: #2e6dbf; font-size: 12px; }
.ip-conflict-scan-grid .incident b { color: #c6dcf7; }
.ip-conflict-flow-heading { margin-top: 42px; }
.ip-conflict-auth-flow {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 20px;
  overflow-x: auto;
  padding: 3px 2px 12px;
}
.ip-conflict-auth-flow span {
  display: flex;
  min-width: 148px;
  flex: 1 0 148px;
  align-items: center;
  justify-content: center;
  padding: 15px 13px;
  border: 1px solid #dce5ef;
  border-radius: 11px;
  background: #f8fafc;
  color: #28415f;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
  text-align: center;
}
.ip-conflict-auth-flow span.reject { border-color: #efb4b4; background: #fff5f5; color: #a73e3e; }
.ip-conflict-auth-flow span.review { border-color: #80a9de; background: #edf5ff; color: #235faa; }
.ip-conflict-auth-flow i { align-self: center; color: #8299b5; font-style: normal; }
.ip-conflict-model-table { margin-top: 28px; }
.ip-conflict-model-table tbody tr:nth-child(odd) { background: #fff; }
.ip-conflict-model-table tbody tr:nth-child(even) { background: #f6f8fb; }
.ip-conflict-incident {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: 32px;
  margin-top: 30px;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(140deg, #132f54, #225d99);
  color: #fff;
}
.ip-conflict-compute-heading { margin-top: 34px; }
.ip-conflict-compute-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; margin-top: 20px; }
.ip-conflict-compute-grid article { padding: 24px; border: 1px solid #dce5ef; border-radius: 17px; background: #fff; }
.ip-conflict-compute-grid span { color: #3975bd; font-size: 11px; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.ip-conflict-compute-grid strong { display: block; margin-top: 15px; color: #19314d; font-size: 17px; line-height: 1.45; }
.ip-conflict-compute-grid p { margin: 9px 0 0; color: #68798d; font-size: 13px; line-height: 1.7; }
.ip-conflict-incident > div > span { color: #acd0fb; font-size: 11px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.ip-conflict-incident h3 { margin: 11px 0 0; color: #fff; font-size: 24px; line-height: 1.4; }
.ip-conflict-incident p { margin: 13px 0 0; color: #d7e7f8; font-size: 14px; line-height: 1.75; }
.ip-conflict-incident ol { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.ip-conflict-incident li { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 10px; background: rgba(255, 255, 255, .08); font-size: 13px; }
.ip-conflict-incident li b { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; border-radius: 8px; background: rgba(255, 255, 255, .13); color: #bcd8fa; font-size: 10px; }
.ip-conflict-result-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; margin-bottom: 18px; }
.ip-conflict-result-metrics article { padding: 27px 28px; border: 1px solid #cbdced; border-top: 4px solid #2f73c9; border-radius: 18px; background: linear-gradient(145deg, #f3f8ff, #fff); box-shadow: 0 12px 28px rgba(31, 78, 137, .07); }
.ip-conflict-result-metrics span { color: #477bc0; font-size: 12px; font-weight: 850; }
.ip-conflict-result-metrics strong { display: block; margin-top: 10px; color: #143d70; font-size: clamp(34px, 3vw, 48px); line-height: 1; letter-spacing: -.04em; }
.ip-conflict-result-metrics p { margin: 14px 0 0; color: #5f7187; font-size: 13px; line-height: 1.72; }
.ip-conflict-outcomes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.ip-conflict-outcomes article { padding: 24px; border: 1px solid #dfe6ef; border-radius: 17px; background: #fff; }
.ip-conflict-outcomes span { color: #477bc0; font-size: 12px; font-weight: 850; }
.ip-conflict-outcomes strong { display: block; margin-top: 16px; color: #1a304c; font-size: 18px; line-height: 1.45; }
.ip-conflict-outcomes p { margin: 9px 0 0; color: #67788d; font-size: 13px; line-height: 1.7; }
.ip-conflict-reality-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.ip-conflict-reality-grid article { padding: 27px; border: 1px solid #dce5ef; border-radius: 19px; background: #fff; }
.ip-conflict-reality-grid article.shipped { border-top: 4px solid #178b6c; }
.ip-conflict-reality-grid article.limits { border-top: 4px solid #ce8b36; background: #fffaf3; }
.ip-conflict-reality-grid article.upgrade { border-top: 4px solid #3878cf; background: #f4f8ff; }
.ip-conflict-reality-grid span { color: #537ba9; font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.ip-conflict-reality-grid h3 { margin: 14px 0 0; color: #19304d; font-size: 20px; line-height: 1.45; }
.ip-conflict-reality-grid ul { margin: 17px 0 0; padding-left: 18px; color: #65768b; font-size: 14px; line-height: 1.75; }
.ip-conflict-final-note { margin-top: 20px; }

@media (max-width: 980px) {
  .ip-conflict-pipeline { grid-template-columns: 1fr; }
  .ip-conflict-pipeline > i { justify-self: center; transform: rotate(90deg); }
  .ip-conflict-background-layout { grid-template-columns: 1fr; }
  .ip-conflict-risk-grid,
  .ip-conflict-scan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ip-conflict-economics { grid-template-columns: 1fr; }
  .ip-conflict-economics > i { justify-self: center; transform: rotate(90deg); }
  .ip-conflict-incident { grid-template-columns: 1fr; }
  .ip-conflict-compute-grid { grid-template-columns: 1fr; }
  .ip-conflict-outcomes,
  .ip-conflict-reality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ip-conflict-reality-grid article.upgrade { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .ip-conflict-risk-grid,
  .ip-conflict-problem-list,
  .ip-conflict-scan-grid,
  .ip-conflict-result-metrics,
  .ip-conflict-outcomes,
  .ip-conflict-reality-grid { grid-template-columns: 1fr; }
  .ip-conflict-scan-grid article { min-height: 0; }
  .ip-conflict-decision-rail article { grid-template-columns: 42px minmax(0, 1fr); gap: 14px; }
  .ip-conflict-decision-rail article > span { width: 38px; height: 38px; }
  .ip-conflict-incident { min-width: 0; padding: 22px 18px; }
  .ip-conflict-reality-grid article.upgrade { grid-column: auto; }
}

/* Global supply-chain clearing case */
.clearing-case-page { --cl-ink:#091b31; --cl-blue:#1263e5; --cl-cyan:#00a9b7; --cl-paper:#f7f9fc; background:#fff; color:var(--cl-ink); }
.clearing-case-page .story-section { padding-top:72px; padding-bottom:72px; }
.clearing-hero { padding:86px max(28px,calc((100vw - 1180px)/2)) 62px; background:radial-gradient(circle at 84% 16%,rgba(0,169,183,.18),transparent 28%),linear-gradient(145deg,#07172b 0%,#0a2648 62%,#0b3851 100%); color:#fff; }
.clearing-hero-copy>span,.clearing-subject-grid span,.clearing-negotiation span,.clearing-wallet-layout article>span,.clearing-conclusion>span { color:#62dce4; font-size:10px; font-weight:850; letter-spacing:.14em; }
.clearing-hero h1 { max-width:1000px; margin:14px 0 18px; font-size:clamp(43px,5.8vw,78px); line-height:1.08; letter-spacing:-.045em; }
.clearing-hero-copy>p { max-width:940px; margin:0; color:#c4d4e7; font-size:18px; line-height:1.8; }
.clearing-metrics { margin-top:42px; display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(255,255,255,.2); border-bottom:1px solid rgba(255,255,255,.2); }
.clearing-metrics article { padding:24px 20px; border-left:1px solid rgba(255,255,255,.2); }.clearing-metrics article:first-child { border-left:0; }
.clearing-metrics b { display:block; color:#fff; font-size:31px; }.clearing-metrics span { display:block; margin-top:5px; color:#9eb6ce; font-size:11px; }
.clearing-hero blockquote { max-width:980px; margin:40px 0 0; padding:3px 0 3px 22px; border-left:3px solid #3bd4de; color:#c4d4e7; font-size:19px; line-height:1.7; }.clearing-hero blockquote strong { color:#fff; }
.clearing-tensions { margin-top:30px; display:grid; grid-template-columns:repeat(4,1fr); border:1px solid #d8e1ec; }
.clearing-tensions article { padding:24px; border-left:1px solid #d8e1ec; }.clearing-tensions article:first-child { border-left:0; }.clearing-tensions span { color:var(--cl-blue); font-size:11px; font-weight:850; }.clearing-tensions b { display:block; margin-top:18px; font-size:16px; }.clearing-tensions p { margin:8px 0 0; color:#69778b; font-size:12px; line-height:1.7; }
.clearing-dark { background:var(--cl-ink); color:#fff; }.clearing-dark .story-section-head h2 { color:#fff; }.clearing-lead { max-width:940px; color:#b7c5d6; font-size:16px; line-height:1.8; }
.clearing-layer-flow { margin-top:34px; display:grid; grid-template-columns:repeat(5,auto); gap:18px; align-items:stretch; }.clearing-layer-flow article { max-width:330px; padding:26px; border:1px solid #36506d; background:#102942; }.clearing-layer-flow small { color:#66d6df; font-weight:800; letter-spacing:.1em; }.clearing-layer-flow h3 { margin:24px 0 10px; font-size:21px; }.clearing-layer-flow strong { color:#fff; font-size:13px; }.clearing-layer-flow p { margin:10px 0 0; color:#9fb1c5; font-size:12px; line-height:1.7; }.clearing-layer-flow>i { align-self:center; color:#45c9d5; font-size:25px; font-style:normal; }
.clearing-principle { margin-top:28px; padding:22px 25px; border-left:3px solid #38cbd6; background:#102942; }.clearing-principle span { display:block; color:#62dce4; font-size:9px; font-weight:850; letter-spacing:.13em; }.clearing-principle strong { display:block; margin-top:7px; color:#fff; font-size:17px; line-height:1.6; }
.clearing-subject-grid { margin-top:30px; display:grid; grid-template-columns:repeat(5,1fr); border:1px solid #d4deea; }.clearing-subject-grid article { padding:24px 20px; border-left:1px solid #d4deea; }.clearing-subject-grid article:first-child { border-left:0; }.clearing-subject-grid span { color:var(--cl-blue); }.clearing-subject-grid h3 { margin:22px 0 8px; font-size:16px; }.clearing-subject-grid p { margin:0; color:#67758a; font-size:11px; line-height:1.7; }
.clearing-time-section { background:#f2f6fb; }.clearing-clock { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; align-items:stretch; }.clearing-clock article { padding:28px; border:1px solid #cbd7e5; background:#fff; }.clearing-clock article.accent { border:2px solid var(--cl-blue); }.clearing-clock article>b { width:34px; height:34px; display:grid; place-items:center; border-radius:50%; background:#e9f1ff; color:var(--cl-blue); }.clearing-clock article>span { display:block; margin-top:22px; color:#718198; font-size:9px; font-weight:850; letter-spacing:.12em; }.clearing-clock h3 { margin:7px 0; font-size:19px; }.clearing-clock p { margin:0; color:#67758a; font-size:12px; line-height:1.7; }.clearing-clock>i { align-self:center; padding:0 14px; color:var(--cl-blue); font-size:24px; font-style:normal; }
.clearing-negotiation { margin-top:24px; display:grid; grid-template-columns:1fr 1fr; gap:18px; }.clearing-negotiation>div { padding:24px; background:#fff; border:1px solid #d7e0eb; }.clearing-negotiation span { color:var(--cl-blue); }.clearing-negotiation h3 { margin:8px 0; font-size:18px; }.clearing-negotiation p { margin:0; color:#68768a; font-size:12px; line-height:1.7; }.clearing-quote { margin:24px 0 0; padding:20px 26px; border-left:3px solid var(--cl-cyan); background:#dff6f7; color:#174957; font-size:19px; font-weight:750; }
.clearing-wallet-layout { display:grid; grid-template-columns:1.35fr .85fr; gap:22px; }.clearing-wallet-layout article,.clearing-wallet-layout aside { padding:30px; border:1px solid #d5dfeb; }.clearing-wallet-layout article>span { color:var(--cl-blue); }.clearing-wallet-layout h3 { margin:10px 0 18px; font-size:21px; }.clearing-wallet-layout ul { margin:0; padding-left:18px; color:#59687d; font-size:13px; line-height:2; }.clearing-wallet-layout aside { background:#0c2948; color:#fff; }.clearing-wallet-layout aside>b { color:#65d7df; font-size:10px; letter-spacing:.13em; }.clearing-wallet-layout aside p { color:#b8c8d9; font-size:13px; line-height:1.8; }
.clearing-cycle { display:grid; grid-template-columns:repeat(5,auto); align-items:stretch; gap:16px; }.clearing-cycle article { max-width:340px; padding:26px; border:1px solid #38506b; background:#102942; }.clearing-cycle b { font-size:17px; }.clearing-cycle p { margin:10px 0 0; color:#aebed0; font-size:12px; line-height:1.75; }.clearing-cycle>i { align-self:center; color:#55cfd8; font-size:24px; font-style:normal; }
.clearing-scenarios { display:grid; grid-template-columns:1fr 1fr; gap:22px; }.clearing-scenarios>article { overflow:hidden; border:1px solid #d4deea; }.clearing-scenarios header { padding:25px 28px; background:#0b2747; color:#fff; }.clearing-scenarios header span { color:#62dce4; font-size:9px; font-weight:850; letter-spacing:.13em; }.clearing-scenarios h3 { margin:8px 0 0; font-size:19px; }.clearing-scenarios ol { margin:0; padding:27px 28px 27px 50px; color:#536277; font-size:13px; line-height:1.75; }.clearing-scenarios li+li { margin-top:12px; }.clearing-scenarios footer { padding:20px 28px; background:#edf5ff; }.clearing-scenarios footer b { color:var(--cl-blue); }.clearing-scenarios footer p { margin:5px 0 0; color:#586a80; font-size:12px; }
.clearing-results { display:grid; grid-template-columns:1fr 1fr; gap:20px; }.clearing-results article { min-height:230px; padding:30px; border:1px solid #d2ddea; display:flex; flex-direction:column; }.clearing-results span { color:var(--cl-blue); font-size:10px; font-weight:850; letter-spacing:.12em; }.clearing-results b { margin-top:20px; color:var(--cl-blue); font-size:48px; }.clearing-results strong { font-size:18px; }.clearing-results p { margin:auto 0 0; padding-top:20px; color:#6a788c; font-size:12px; }.clearing-conclusion { margin-top:22px; padding:36px; background:linear-gradient(135deg,#081c33,#0b3a50); color:#fff; }.clearing-conclusion h3 { max-width:900px; margin:12px 0; font-size:27px; line-height:1.45; }.clearing-conclusion p { max-width:900px; margin:0; color:#b8cadb; line-height:1.8; }
.clearing-cover { display:flex; align-items:center; justify-content:center; gap:8px; background:radial-gradient(circle at 75% 20%,#17aab7,transparent 35%),linear-gradient(145deg,#07182d,#113f63); }.clearing-cover::before,.clearing-cover::after { display:none; }.clearing-cover span { padding:7px 9px; border:1px solid rgba(255,255,255,.35); color:#bdeef1; font-size:10px; }.clearing-cover b { position:absolute; right:18px; bottom:15px; color:#fff; font-size:28px; }
@media (max-width:980px) { .clearing-metrics,.clearing-tensions { grid-template-columns:1fr 1fr; }.clearing-subject-grid { grid-template-columns:repeat(2,1fr); }.clearing-subject-grid article { border-top:1px solid #d4deea; }.clearing-layer-flow,.clearing-clock,.clearing-cycle { grid-template-columns:1fr; }.clearing-layer-flow article,.clearing-cycle article { max-width:none; }.clearing-layer-flow>i,.clearing-clock>i,.clearing-cycle>i { transform:rotate(90deg); text-align:center; }.clearing-wallet-layout { grid-template-columns:1fr; } }
@media (max-width:640px) { .clearing-case-page .story-section { padding-top:46px; padding-bottom:46px; }.clearing-hero { padding:58px 20px 42px; }.clearing-hero h1 { font-size:39px; }.clearing-hero-copy>p { font-size:15px; }.clearing-metrics,.clearing-tensions,.clearing-subject-grid,.clearing-negotiation,.clearing-scenarios,.clearing-results { grid-template-columns:1fr; }.clearing-metrics article,.clearing-tensions article,.clearing-subject-grid article { border-left:0; border-top:1px solid rgba(255,255,255,.2); }.clearing-tensions article,.clearing-subject-grid article { border-top-color:#d8e1ec; } }

/* AI Listing Tool case */
.listing-case-page .story-hero { background: none; }
.listing-case-page .story-hero h1 { max-width: 820px; color: #111827; }
.listing-case-page .story-hero-copy > p { max-width: 900px; color: #4b5563; }
.listing-eyebrow { display: block; margin-bottom: 17px; color: #d85a1d; font-size: 12px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.listing-channel-row { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-top: 28px; }
.listing-channel-row span { padding: 8px 12px; border: 1px solid #f0b58f; border-radius: 999px; background: #fff9f5; color: #b94e19; font-size: 12px; font-weight: 800; }
.listing-channel-row i { margin-left: 8px; color: #768295; font-size: 12px; font-style: normal; }
.listing-section-label { color: #dd6428; font-size: 11px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.listing-background-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: 22px; align-items: stretch; }
.listing-background-grid .story-copy-block { padding: 31px; border: 1px solid #dae4ef; border-radius: 20px; background: #fff; }
.listing-background-grid h3 { margin: 12px 0 17px; color: #172b44; font-size: 25px; line-height: 1.35; }
.listing-problem-stack { display: grid; gap: 12px; }
.listing-problem-stack article { display: grid; grid-template-columns: 42px minmax(0, 1fr); column-gap: 14px; padding: 18px 20px; border: 1px solid #dce5ef; border-radius: 16px; background: #f9fbfd; }
.listing-problem-stack b { grid-row: 1 / 3; color: #e36a2d; font-size: 13px; }
.listing-problem-stack strong { color: #20344f; font-size: 16px; }
.listing-problem-stack p { margin: 6px 0 0; color: #69798d; font-size: 13px; line-height: 1.65; }
.listing-goal { margin-top: 20px; border-left-color: #ef6a29; background: linear-gradient(115deg, #fff7f1, #fff); }
.listing-goal span { color: #d05b22; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.listing-goal h3 { margin: 9px 0 6px; }
.listing-goal p { margin: 0; }
.listing-decision-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.listing-decision-grid article { min-height: 220px; padding: 28px; border: 1px solid #d9e3ed; border-radius: 19px; background: #fff; box-shadow: 0 12px 26px rgba(26, 55, 88, .05); }
.listing-decision-grid span { color: #d8662c; font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.listing-decision-grid h3 { margin: 20px 0 12px; color: #18304d; font-size: 21px; line-height: 1.4; }
.listing-decision-grid p { margin: 0; color: #64758a; font-size: 14px; line-height: 1.75; }
.listing-pipeline { display: grid; grid-template-columns: repeat(11, auto); gap: 10px; align-items: center; padding: 24px; border: 1px solid #d9e3ed; border-radius: 20px; background: #f8fafc; overflow-x: auto; }
.listing-pipeline article { min-width: 132px; padding: 18px 15px; border: 1px solid #dce5ef; border-top: 3px solid #eb6d2f; border-radius: 14px; background: #fff; }
.listing-pipeline article span { color: #da642a; font-size: 11px; font-weight: 850; }
.listing-pipeline article strong { display: block; margin-top: 10px; color: #20344f; font-size: 15px; }
.listing-pipeline article p { margin: 7px 0 0; color: #738195; font-size: 12px; line-height: 1.55; }
.listing-pipeline > i { color: #96a5b7; font-style: normal; }
.listing-solution-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; margin-top: 18px; }
.listing-solution-grid article { padding: 24px; border-radius: 17px; background: #172b44; }
.listing-solution-grid span { color: #f69b62; font-size: 12px; font-weight: 850; }
.listing-solution-grid h3 { margin: 18px 0 10px; color: #fff; font-size: 18px; line-height: 1.4; }
.listing-solution-grid p { margin: 0; color: #c4d0de; font-size: 13px; line-height: 1.7; }
.listing-architecture-flow { overflow: hidden; border: 1px solid #d7e2ed; border-radius: 22px; background: #f5f8fb; box-shadow: 0 16px 38px rgba(27, 52, 82, .06); }
.listing-architecture-intro { padding: 28px 30px 24px; border-bottom: 1px solid #dce5ee; background: linear-gradient(120deg, #fff8f3, #fff); }
.listing-architecture-intro span, .listing-architecture-loop > span { color: #d9652d; font-size: 10px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.listing-architecture-intro h3 { margin: 8px 0 6px; color: #172d47; font-size: 24px; }
.listing-architecture-intro p { margin: 0; color: #69798c; font-size: 13px; }
.listing-architecture-layer { display: grid; grid-template-columns: 215px minmax(0, 1fr); gap: 20px; padding: 22px 26px; background: #fff; }
.listing-layer-label { padding: 5px 20px 5px 4px; border-right: 1px solid #dfe7ef; }
.listing-layer-label span { color: #df692f; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.listing-layer-label strong { display: block; margin-top: 8px; color: #1c324d; font-size: 17px; line-height: 1.45; }
.listing-layer-label p { margin: 7px 0 0; color: #7a899a; font-size: 11px; line-height: 1.6; }
.listing-layer-content { min-width: 0; }
.listing-layer-content article { min-width: 0; padding: 15px 16px; border: 1px solid #dce5ee; border-radius: 12px; background: #f8fafc; }
.listing-layer-content b { display: block; color: #263d58; font-size: 13px; line-height: 1.45; }
.listing-layer-content p { margin: 6px 0 0; color: #718195; font-size: 11px; line-height: 1.55; }
.listing-layer-content em { display: inline-block; margin-top: 8px; padding: 4px 7px; border-radius: 5px; background: #fff1e8; color: #cf5d26; font-size: 10px; font-style: normal; font-weight: 800; }
.listing-context-grid, .listing-control-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.listing-layer-connector { display: grid; grid-template-columns: 215px minmax(0, 1fr); gap: 20px; align-items: center; min-height: 38px; padding: 0 26px; border-top: 1px solid #e3eaf1; border-bottom: 1px solid #e3eaf1; background: #eef3f7; }
.listing-layer-connector span { grid-column: 2; color: #7a8999; font-size: 10px; font-weight: 800; letter-spacing: .05em; text-align: center; }
.listing-layer-connector i { grid-column: 2; justify-self: center; margin-top: -10px; color: #e16a30; font-style: normal; }
.listing-ai-flow { display: grid; grid-template-columns: .75fr 18px 1.2fr 18px .9fr 18px 1fr; align-items: center; gap: 7px; }
.listing-ai-flow > i, .listing-channel-flow > i { color: #dc692f; font-style: normal; text-align: center; }
.listing-ai-flow article span, .listing-channel-flow article span { display: block; margin-bottom: 7px; color: #d7662d; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.listing-bert-decision { padding: 14px; border: 1px solid #efae84; border-radius: 13px; background: #fff6f0; }
.listing-bert-decision > b { margin-bottom: 9px; color: #8c431e; }
.listing-bert-decision > div { display: grid; grid-template-columns: 70px minmax(0, 1fr); align-items: center; padding: 7px 8px; border-radius: 7px; background: #fff; }
.listing-bert-decision > div + div { margin-top: 6px; }
.listing-bert-decision span { color: #9b765f; font-size: 9px; }
.listing-bert-decision strong { color: #263d58; font-size: 11px; }
.listing-ai-core { border-color: #e9864f !important; background: #fff5ee !important; }
.listing-channel-flow { display: grid; grid-template-columns: 1.25fr 22px .8fr .8fr; align-items: stretch; gap: 10px; }
.listing-channel-set { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 7px; }
.listing-channel-set b { display: grid; place-items: center; min-height: 68px; border: 1px solid #dbe4ed; border-radius: 11px; background: #f8fafc; }
.listing-channel-flow article.success { border-color: #b9ddc6; background: #f3fbf5; }
.listing-channel-flow article.failure { border-color: #f0d2c4; background: #fff7f3; }
.listing-architecture-loop { padding: 21px 26px 24px; background: #172d47; }
.listing-architecture-loop > span { color: #f39a65; }
.listing-architecture-loop > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr) 18px) minmax(0, 1.2fr); align-items: center; gap: 7px; margin-top: 12px; }
.listing-architecture-loop b { display: grid; min-height: 54px; place-items: center; padding: 8px; border-radius: 9px; background: rgba(255,255,255,.09); color: #fff; font-size: 11px; text-align: center; }
.listing-architecture-loop i { color: #f18a4b; font-style: normal; text-align: center; }
.listing-guardrail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 18px; }
.listing-guardrail-grid article { padding: 25px; border: 1px solid #d9e3ed; border-radius: 18px; background: #fff; }
.listing-guardrail-grid h3 { margin: 0; color: #1b304a; font-size: 19px; }
.listing-guardrail-grid p, .listing-guardrail-grid li { color: #66778a; font-size: 13px; line-height: 1.72; }
.listing-guardrail-grid ul, .listing-guardrail-grid ol { margin: 16px 0 0; padding-left: 19px; }
.listing-guardrail-grid li + li { margin-top: 7px; }
.listing-error-flow { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 18px; }
.listing-error-flow span { padding: 8px 10px; border-radius: 9px; background: #f3f6fa; color: #40556f; font-size: 11px; font-weight: 800; }
.listing-error-flow i { color: #e46c32; font-style: normal; }
.listing-lifecycle { margin-top: 20px; overflow: hidden; border: 1px solid #d9e3ed; border-radius: 20px; background: #162b45; }
.listing-lifecycle header { padding: 27px 30px 22px; border-bottom: 1px solid rgba(255,255,255,.12); }
.listing-lifecycle header span { color: #f29a65; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.listing-lifecycle header h3 { margin: 9px 0 6px; color: #fff; font-size: 24px; }
.listing-lifecycle header p { margin: 0; color: #bac8d6; font-size: 13px; }
.listing-lifecycle > div { display: grid; grid-template-columns: repeat(7, auto); gap: 11px; align-items: center; padding: 24px; overflow-x: auto; }
.listing-lifecycle article { min-width: 180px; padding: 18px; border-radius: 13px; background: rgba(255,255,255,.08); }
.listing-lifecycle article b { color: #fff; font-size: 15px; }
.listing-lifecycle article p { margin: 8px 0 0; color: #bdcad7; font-size: 12px; line-height: 1.6; }
.listing-lifecycle > div > i { color: #f18a4b; font-style: normal; }
.listing-business-model { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 16px; align-items: center; }
.listing-business-model article { min-height: 220px; padding: 28px; border: 1px solid #d9e3ed; border-radius: 19px; background: #fff; }
.listing-business-model article.active { border-color: #efa575; background: #fff7f1; }
.listing-business-model span { color: #d9622a; font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.listing-business-model strong { display: block; margin-top: 18px; color: #1a304a; font-size: 21px; }
.listing-business-model p { margin: 13px 0 0; color: #68798c; font-size: 13px; line-height: 1.72; }
.listing-business-model > i { color: #df6b30; font-style: normal; }
.listing-result-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.listing-result-grid article { min-height: 190px; padding: 27px; border: 1px solid #d8e2ec; border-top: 4px solid #ec6c2e; border-radius: 18px; background: #fff; }
.listing-result-grid article.award { border-top-color: #c8952c; background: #fffbf1; }
.listing-result-grid span { color: #78879a; font-size: 11px; font-weight: 800; }
.listing-result-grid strong { display: block; margin-top: 17px; color: #172d47; font-size: clamp(36px, 4vw, 52px); line-height: 1; letter-spacing: -.04em; }
.listing-result-grid article.award strong { font-size: clamp(28px, 3vw, 40px); }
.listing-result-grid p { margin: 14px 0 0; color: #66778a; font-size: 13px; line-height: 1.65; }
.listing-results-note { margin: 18px 0 0; padding: 20px 24px; border-radius: 14px; background: #f4f7fa; color: #64758a; font-size: 13px; line-height: 1.7; }
.listing-gallery-note { margin: -4px 0 22px; color: #64748b; font-size: 14px; }
.listing-case-page .story-gallery img { object-fit: contain; background: #f5f7fa; }

/* Distributed inventory governance — editorial research case */
.inventory-research-page { --ir-ink:#071d3a; --ir-blue:#1459d9; --ir-red:#f05a39; --ir-paper:#fff; --ir-soft:#f4f7fb; --ir-rule:#d8e0eb; background:var(--ir-paper); color:var(--ir-ink); }
.inventory-research-page main { overflow:visible; }
.inventory-paper { width:min(1420px,100%); margin:0 auto; display:grid; grid-template-columns:230px minmax(0,1fr); align-items:start; }
.inventory-toc { position:sticky; top:49px; height:calc(100vh - 49px); padding:32px 26px; border-right:1px solid var(--ir-rule); background:#f8fafd; display:flex; flex-direction:column; gap:4px; overflow:auto; }
.inventory-toc .toc-back { margin-bottom:24px; color:#4c5c72; }
.inventory-toc>strong { margin-bottom:8px; font-size:13px; }
.inventory-toc>a { padding:7px 0; color:#536177; font-size:12px; line-height:1.35; }
.inventory-toc>a:not(.toc-back):hover { color:var(--ir-blue); transform:translateX(3px); }
.inventory-glossary { margin-top:auto; padding-top:24px; border-top:1px solid var(--ir-rule); display:grid; gap:8px; font-size:10px; color:#68768a; }
.inventory-glossary b { color:var(--ir-ink); font-size:11px; }
.inventory-glossary span { display:flex; justify-content:space-between; gap:8px; }
.inventory-glossary em { color:var(--ir-blue); font-style:normal; font-weight:800; }
.inventory-content { min-width:0; background:#fff; }
.inventory-hero,.inventory-section,.inventory-conclusion { padding:58px clamp(34px,6vw,88px); }
.inventory-hero { padding-top:72px; }
.inventory-hero-copy { padding-bottom:28px; border-bottom:1px solid #bdc9d8; }
.inventory-hero h1 { max-width:920px; margin:0; font-size:clamp(42px,5.2vw,76px); line-height:1.08; letter-spacing:-.045em; font-weight:850; }
.inventory-hero-copy>p { margin:18px 0 0; color:#5b6677; font-size:21px; }
.inventory-hero blockquote { margin:28px 0 0; padding:10px 0 10px 18px; border-left:3px solid var(--ir-blue); background:linear-gradient(90deg,#f1f6ff,transparent 70%); font-size:clamp(20px,2.2vw,30px); font-weight:750; }
.inventory-hero blockquote strong { color:var(--ir-red); }
.inventory-abstract { max-width:980px; margin:24px 0 0; color:#3f4b5e; font-size:15px; line-height:1.9; }
.inventory-system-map { margin-top:42px; display:grid; grid-template-columns:1fr auto 1.35fr auto 1fr; align-items:center; gap:18px; }
.inventory-system-map>div { min-height:116px; padding:20px; border:1px solid #cbd7e6; display:flex; flex-direction:column; justify-content:center; }
.inventory-system-map .core { border:2px solid var(--ir-blue); background:#f5f8ff; }
.inventory-system-map small { color:var(--ir-blue); font-size:10px; font-weight:800; letter-spacing:.12em; }
.inventory-system-map b { margin-top:4px; font-size:17px; }
.inventory-system-map span { margin-top:8px; color:#667388; font-size:12px; }
.inventory-system-map>i { color:var(--ir-blue); font-size:24px; font-style:normal; }
.inventory-section { border-top:1px solid var(--ir-rule); }
.inventory-section>header { display:grid; grid-template-columns:42px minmax(0,1fr); gap:16px; margin-bottom:38px; }
.inventory-section>header>span { color:var(--ir-blue); font-size:14px; font-weight:850; }
.inventory-section h2 { margin:0; font-size:30px; line-height:1.2; letter-spacing:-.02em; }
.inventory-section>header p { max-width:860px; margin:10px 0 0; color:#657186; font-size:14px; }
.inventory-tensions { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--ir-rule); border-bottom:1px solid var(--ir-rule); }
.inventory-tensions article { padding:26px 22px; border-left:1px solid var(--ir-rule); }
.inventory-tensions article:first-child { border-left:0; }
.inventory-tensions b { color:var(--ir-blue); font-size:12px; }
.inventory-tensions h3 { margin:22px 0 8px; font-size:16px; }
.inventory-tensions p { margin:0; color:#647185; font-size:12px; line-height:1.7; }
.governance-spine { margin:0; padding:0; list-style:none; display:grid; grid-template-columns:1fr 1fr; column-gap:64px; }
.governance-spine li { position:relative; display:grid; grid-template-columns:36px 1fr; gap:16px; padding:0 0 28px; }
.governance-spine li::before { content:""; position:absolute; left:17px; top:34px; bottom:0; width:1px; background:#b8c9e7; }
.governance-spine li:last-child::before { display:none; }
.governance-spine li>b { width:36px; height:36px; display:grid; place-items:center; border-radius:50%; background:var(--ir-blue); color:#fff; font-size:13px; }
.governance-spine h3 { margin:0; font-size:16px; }
.governance-spine p { margin:5px 0 0; color:#68758a; font-size:12px; }
.supplier-table-wrap { overflow:auto; border:1px solid #cbd5e2; }
.supplier-table { width:100%; border-collapse:collapse; font-size:13px; }
.supplier-table th,.supplier-table td { padding:14px 16px; border-right:1px solid #dce3ec; border-bottom:1px solid #dce3ec; text-align:left; }
.supplier-table thead th { background:var(--ir-ink); color:#fff; font-size:13px; }
.supplier-table tbody th { width:130px; background:#f3f6fa; }
.supplier-boundary { margin-top:24px; padding:26px 28px; border-left:3px solid var(--ir-blue); background:var(--ir-soft); }
.supplier-boundary h3 { margin:0 0 18px; font-size:17px; }
.supplier-boundary>div { display:flex; flex-wrap:wrap; gap:26px; }
.supplier-boundary span { color:#46546a; font-size:12px; }
.supplier-boundary span b { margin-right:7px; color:var(--ir-blue); font-size:17px; }
.supplier-boundary p { margin:16px 0 0; color:#667388; font-size:12px; }
.inventory-formula-section { padding:58px clamp(34px,6vw,88px); background:var(--ir-ink); color:#fff; }
.inventory-formula-section>span { color:#79a8ff; font-size:11px; font-weight:850; letter-spacing:.12em; }
.inventory-formula-section h2 { max-width:780px; margin:12px 0 36px; font-size:30px; }
.formula { padding:30px 0; border-top:1px solid #38506d; border-bottom:1px solid #38506d; font-family:Georgia,serif; font-size:clamp(25px,4vw,46px); text-align:center; white-space:nowrap; }
.formula var { color:#9dbdf6; }
.formula sub { font-size:.42em; color:#bfcce0; }
.formula-legend { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; padding:24px 0; color:#aebcd0; font-size:11px; }
.formula-legend b { color:#fff; }
.channel-formula { padding:18px 22px; background:#102a50; display:flex; gap:20px; font-size:13px; }
.channel-formula span { color:#c4d2e6; }
.forecast-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.forecast-grid article { padding:26px; border:1px solid var(--ir-rule); }
.forecast-grid article>span,.safety-stock>div>span { color:var(--ir-blue); font-size:10px; font-weight:850; letter-spacing:.12em; }
.forecast-grid h3,.safety-stock h3 { margin:7px 0 18px; font-size:19px; }
.mini-formula { margin:8px 0; padding:13px 16px; background:#f5f8fc; color:#16365f; font-family:Georgia,serif; font-size:20px; }
.forecast-grid p,.safety-stock p { color:#68758a; font-size:12px; }
.safety-stock { margin-top:24px; padding:28px; background:#eef4ff; display:grid; grid-template-columns:1.15fr 1fr; gap:36px; align-items:center; }
.risk-states { margin-top:24px; display:grid; grid-template-columns:repeat(4,1fr); }
.risk-states article { padding:20px; border:1px solid var(--ir-rule); border-left:0; }
.risk-states article:first-child { border-left:1px solid var(--ir-rule); }
.risk-states b { display:inline-block; margin-right:8px; font-size:11px; }
.risk-states article:nth-child(1) b { color:#0c8a5b; }.risk-states article:nth-child(2) b { color:#a67900; }.risk-states article:nth-child(3) b { color:#db681f; }.risk-states article:nth-child(4) b { color:#cf3d43; }
.risk-states span { font-size:13px; font-weight:750; }
.risk-states p { margin:8px 0 0; color:#6d798c; font-size:11px; }
.rescue-section { background:#fffdfa; }
.rescue-timeline { display:grid; grid-template-columns:repeat(9,auto); align-items:start; }
.rescue-timeline article { max-width:150px; }
.rescue-timeline article>b { width:32px; height:32px; display:grid; place-items:center; border:2px solid var(--ir-red); border-radius:50%; color:var(--ir-red); }
.rescue-timeline h3 { margin:15px 0 6px; font-size:14px; }
.rescue-timeline p { margin:0; color:#776c68; font-size:11px; }
.rescue-timeline>i { padding:8px 12px 0; color:var(--ir-red); font-style:normal; }
.cross-warehouse-title { margin:42px 0 12px; font-size:17px; }
.cross-warehouse { padding:30px; border:1px solid #e9cfc5; display:grid; grid-template-columns:180px 1fr 180px 180px; gap:18px; align-items:center; background:#fff; }
.warehouse-node { padding:18px; border:1px solid #c9d5e3; display:flex; flex-direction:column; }
.warehouse-node.active { border:2px solid var(--ir-blue); }.warehouse-node.japan { border-color:#e3c4b8; }
.warehouse-node span { color:var(--ir-blue); font-size:9px; font-weight:850; letter-spacing:.1em; }.warehouse-node b { margin-top:3px; }.warehouse-node small { margin-top:7px; color:#738095; }
.route-line { position:relative; text-align:center; color:var(--ir-red); }
.route-line::after { content:""; position:absolute; top:50%; left:0; right:0; border-top:1px dashed var(--ir-red); z-index:0; }
.route-line b,.route-line span { position:relative; z-index:1; display:table; margin:0 auto; padding:2px 10px; background:#fff; }.route-line span { color:#85746d; font-size:10px; }
.rescue-rule { margin-top:20px; padding:20px 24px; display:grid; grid-template-columns:120px 1fr; background:#fff2ed; border-left:3px solid var(--ir-red); }.rescue-rule p { margin:0; color:#755e57; font-size:12px; }
.compensation { margin-top:20px; display:grid; grid-template-columns:1fr 1fr; gap:20px; }.compensation article { padding:24px; border:1px solid #eadad4; }.compensation span { color:var(--ir-red); font-size:10px; font-weight:850; }.compensation h3 { margin:8px 0; font-size:16px; }.compensation p { margin:0; color:#746966; font-size:12px; }
.outcome-equation { display:grid; grid-template-columns:1fr auto 1fr auto 1fr auto auto; align-items:stretch; gap:12px; }.outcome-equation>div { padding:22px; border:1px solid #cdd7e4; }.outcome-equation>div b { font-size:14px; }.outcome-equation>div p { margin:8px 0 0; color:#6c788b; font-size:11px; }.outcome-equation>i { align-self:center; color:var(--ir-blue); font-style:normal; font-size:22px; }.outcome-equation>strong { align-self:center; color:var(--ir-blue); font-size:25px; }
.secondary-outcomes { margin-top:18px; display:flex; flex-wrap:wrap; gap:8px; }.secondary-outcomes span { padding:8px 11px; border:1px solid #d6deea; color:#536177; font-size:11px; }
.sensitive-note { margin:24px 0 0; padding:18px 22px; background:#f1f4f8; color:#59677b; font-size:12px; }
.inventory-conclusion { border-top:1px solid var(--ir-rule); background:var(--ir-ink); color:#fff; }.inventory-conclusion h2 { margin:0; font-size:31px; }.inventory-conclusion p { max-width:850px; margin:16px 0 0; color:#becbdd; font-size:15px; line-height:1.8; }
.inventory-cover { position:relative; overflow:hidden; background:#f5f1e9; }
.inventory-cover::before,.inventory-cover::after { display:none; }
.inventory-cover img { width:100%; height:100%; display:block; object-fit:cover; object-position:center; transition:transform .55s ease; }
.portfolio-card:hover .inventory-cover img { transform:scale(1.035); }

@media (max-width: 980px) {
  .inventory-paper { grid-template-columns:1fr; }.inventory-toc { position:static; height:auto; padding:14px 20px; border-right:0; border-bottom:1px solid var(--ir-rule); flex-direction:row; overflow:auto; }.inventory-toc>strong,.inventory-toc .toc-back,.inventory-glossary { display:none; }.inventory-toc>a { white-space:nowrap; }
  .inventory-system-map { grid-template-columns:1fr; }.inventory-system-map>i { transform:rotate(90deg); text-align:center; }.inventory-tensions,.risk-states { grid-template-columns:1fr 1fr; }.governance-spine { grid-template-columns:1fr; }.formula-legend { grid-template-columns:1fr 1fr; }.rescue-timeline { grid-template-columns:1fr; gap:12px; }.rescue-timeline>i { transform:rotate(90deg); padding:0 0 0 10px; }.rescue-timeline article { max-width:none; display:grid; grid-template-columns:40px 150px 1fr; align-items:center; }.rescue-timeline h3,.rescue-timeline p { margin:0; }.cross-warehouse { grid-template-columns:1fr 1fr; }.route-line { grid-column:1/-1; order:2; }.warehouse-node.active { order:3; }.warehouse-node.japan { order:4; }.outcome-equation { grid-template-columns:1fr; }.outcome-equation>i { text-align:center; }
}
@media (max-width: 640px) {
  .inventory-research-page .nav { width:calc(100% - 24px); gap:12px; }
  .inventory-research-page .brand-copy span { display:none; }
  .inventory-research-page .nav-links { gap:14px; font-size:10px; }
  .inventory-research-page .language-toggle { min-width:48px; padding:0 6px; }
  .inventory-hero,.inventory-section,.inventory-conclusion,.inventory-formula-section { padding:38px 20px; }.inventory-hero h1 { font-size:39px; }.inventory-hero-copy>p { font-size:16px; }.inventory-tensions,.forecast-grid,.safety-stock,.risk-states,.compensation,.cross-warehouse { grid-template-columns:1fr; }.inventory-tensions article { border-left:0; border-top:1px solid var(--ir-rule); }.formula { overflow:auto; text-align:left; }.formula-legend { grid-template-columns:1fr; }.channel-formula { flex-direction:column; }.supplier-boundary>div { display:grid; }.rescue-timeline article { grid-template-columns:40px 1fr; }.rescue-timeline article p { grid-column:2; }.rescue-rule { grid-template-columns:1fr; gap:8px; }.outcome-equation { gap:8px; }
}

@media (max-width: 980px) {
  .listing-background-grid { grid-template-columns: 1fr; }
  .listing-architecture-layer { grid-template-columns: 1fr; }
  .listing-layer-label { padding: 0 0 14px; border-right: 0; border-bottom: 1px solid #dfe7ef; }
  .listing-layer-connector { grid-template-columns: 1fr; }
  .listing-layer-connector span, .listing-layer-connector i { grid-column: 1; }
  .listing-context-grid, .listing-control-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .listing-channel-flow { grid-template-columns: 1fr 18px 1fr 1fr; }
  .listing-solution-grid, .listing-guardrail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .listing-business-model { grid-template-columns: 1fr; }
  .listing-business-model > i { justify-self: center; transform: rotate(90deg); }
}

@media (max-width: 720px) {
  .listing-channel-row i { flex-basis: 100%; margin-left: 0; }
  .listing-decision-grid, .listing-solution-grid, .listing-guardrail-grid, .listing-result-grid { grid-template-columns: 1fr; }
  .listing-decision-grid article, .listing-result-grid article { min-height: 0; }
  .listing-architecture-intro { padding: 23px 20px; }
  .listing-architecture-intro h3 { font-size: 20px; }
  .listing-architecture-layer { padding: 20px; }
  .listing-context-grid, .listing-control-grid, .listing-ai-flow, .listing-channel-flow { grid-template-columns: 1fr; }
  .listing-ai-flow > i, .listing-channel-flow > i { transform: rotate(90deg); }
  .listing-channel-set { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .listing-architecture-loop { padding: 20px; }
  .listing-architecture-loop > div { grid-template-columns: 1fr; }
  .listing-architecture-loop i { transform: rotate(90deg); }
  .listing-lifecycle header { padding: 22px 20px; }
  .listing-background-grid .story-copy-block { padding: 24px 20px; }
}

/* Global clearing scenario flows — shared case-card visual language */
.settlement-flow-card { margin-top:22px; overflow:hidden; border:1px solid rgba(226,232,240,.92); border-radius:22px; background:rgba(255,255,255,.8); box-shadow:0 16px 44px rgba(15,23,42,.05); }
.settlement-flow-card+.settlement-flow-card { margin-top:28px; }
.settlement-flow-head { padding:28px 30px 24px; border-bottom:1px solid rgba(218,223,235,.86); background:linear-gradient(135deg,rgba(246,247,255,.96),rgba(255,255,255,.9)); }
.settlement-flow-head>span { color:#635bff; font-size:11px; font-weight:850; letter-spacing:.1em; }
.settlement-flow-head h3 { margin:8px 0 10px; color:#111827; font-size:23px; line-height:1.3; }
.settlement-flow-head p { max-width:980px; margin:0; color:#667085; font-size:14px; line-height:1.7; }
.settlement-flow-scroll { overflow-x:auto; padding:28px; }
.settlement-flow { min-width:1060px; display:grid; grid-template-columns:1fr 76px 1.28fr 76px 1fr 76px 1.08fr; align-items:stretch; gap:10px; }
.flow-stage { min-width:0; padding:16px; border:1px solid #dce3ed; border-radius:16px; background:#f8faff; display:flex; flex-direction:column; gap:10px; }
.flow-stage>small { min-height:27px; color:#635bff; font-size:10px; font-weight:850; letter-spacing:.08em; }
.flow-node { padding:14px; border:1px solid #d7dfeb; border-radius:12px; background:#fff; }
.flow-node b,.flow-node strong,.flow-node span { display:block; }.flow-node b { color:#59677a; font-size:10px; }.flow-node strong { margin-top:5px; color:#172033; font-size:14px; line-height:1.4; }.flow-node span { margin-top:6px; color:#758196; font-size:10px; line-height:1.5; }
.flow-node.primary { border-color:#bcb7f2; background:#f4f2ff; }.flow-node.primary strong { color:#4435bb; }.flow-node.service { border-color:#b9dbee; background:#f0f9ff; }.flow-node.service strong { color:#17628f; }.flow-node.fx { border-color:#f1ceb3; background:#fff7ef; }.flow-node.fx strong { color:#b45b1c; }.flow-node.result { border-color:#b9dfd2; background:#f0faf6; }.flow-node.result strong { color:#14745b; }
.flow-stage>i { color:#635bff; text-align:center; font-size:18px; font-style:normal; }.flow-arrow { display:grid; place-content:center; gap:8px; text-align:center; }.flow-arrow span { color:#758196; font-size:9px; line-height:1.45; }.flow-arrow i { color:#635bff; font-size:22px; font-style:normal; }
.flow-split { display:grid; grid-template-columns:1fr 1fr; gap:8px; }.flow-merge { display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:4px; color:#7d88a0; text-align:center; }.flow-merge i { color:#635bff; font-style:normal; }.flow-merge span { font-size:9px; }
.flow-deduction { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:4px; padding:10px; border-radius:10px; background:#eceaff; }.flow-deduction span { color:#4435bb; font-size:9px; font-weight:800; }.flow-deduction i { color:#887fbd; font-style:normal; }
.settlement-flow-note { padding:20px 28px; display:grid; grid-template-columns:110px 1fr; gap:18px; background:#f5f7fb; }.settlement-flow-note b { color:#4020bb; font-size:13px; }.settlement-flow-note p { margin:0; color:#5f6e82; font-size:12px; line-height:1.7; }
@media (max-width:720px) { .settlement-flow-head { padding:24px 20px; }.settlement-flow-head h3 { font-size:20px; }.settlement-flow-scroll { padding:18px; }.settlement-flow { min-width:980px; }.settlement-flow-note { grid-template-columns:1fr; gap:6px; padding:18px 20px; } }

/* Mobile-native case demos: market regulation + distributed inventory */
.mobile-case-directory { display: none; }
.case-image-trigger { display: block; width: 100%; padding: 0; border: 0; background: transparent; color: inherit; cursor: zoom-in; }
.case-image-trigger img { display: block; width: 100%; }
.story-media-card figcaption { margin-top: 10px; color: #697386; font-size: 12px; line-height: 1.5; }
.case-image-viewer { width: min(1180px, calc(100vw - 32px)); max-width: none; max-height: calc(100vh - 32px); padding: 48px 12px 16px; border: 0; border-radius: 18px; background: #fff; box-shadow: 0 24px 80px rgba(17, 24, 39, .24); }
.case-image-viewer::backdrop { background: rgba(15, 23, 42, .82); }
.case-image-viewer > button { position: absolute; top: 12px; right: 12px; padding: 8px 12px; border: 1px solid #d9e0ea; border-radius: 999px; background: #fff; font: inherit; cursor: pointer; }
.case-image-viewer img { display: block; width: 100%; max-height: calc(100vh - 120px); object-fit: contain; }
.case-image-viewer p { margin: 10px 8px 0; color: #667085; font-size: 13px; }

@media (max-width: 720px) {
  .market-case-mobile-demo,
  .inventory-case-mobile-demo { --mobile-blue: #1769e0; --mobile-ink: #172033; --mobile-muted: #5f6b7c; --mobile-rule: #e4e9f0; background: #fff; }

  .market-case-mobile-demo .story-tabs,
  .inventory-case-mobile-demo .story-tabs { display: none; }

  .market-case-mobile-demo .nav,
  .inventory-case-mobile-demo .nav { width: calc(100% - 32px); min-height: 64px; flex-flow: row nowrap; justify-content: space-between; align-items: center; gap: 16px; }
  .market-case-mobile-demo .nav-links,
  .inventory-case-mobile-demo .nav-links { width: auto; margin-left: auto; flex: 0 0 auto; }
  .market-case-mobile-demo .nav-link,
  .market-case-mobile-demo .nav-link-button,
  .inventory-case-mobile-demo .nav-link,
  .inventory-case-mobile-demo .nav-link-button { display: none; }
  .market-case-mobile-demo .brand-copy span,
  .inventory-case-mobile-demo .brand-copy span { font-size: 11px; }

  .market-case-mobile-demo .story-hero,
  .inventory-case-mobile-demo .story-hero { width: calc(100% - 40px); margin: 0 auto; padding: 38px 0 26px; }
  .market-case-mobile-demo .story-hero h1,
  .inventory-case-mobile-demo .story-hero h1 { margin: 0; color: var(--mobile-ink); font-size: clamp(34px, 10.5vw, 44px); line-height: 1.12; letter-spacing: -.035em; }
  .market-case-mobile-demo .story-hero-copy > p:last-child,
  .inventory-case-mobile-demo .story-hero-copy > p:last-child { margin-top: 14px; color: var(--mobile-muted); font-size: 16px; line-height: 1.65; }

  .mobile-case-directory { position: sticky; z-index: 20; top: 64px; display: block; width: calc(100% - 32px); margin: 0 auto 12px; }
  .mobile-case-directory > button { display: grid; width: 100%; min-height: 54px; padding: 12px 14px; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; border: 1px solid #dbe3ed; border-radius: 12px; background: rgba(255,255,255,.96); color: var(--mobile-ink); text-align: left; box-shadow: 0 8px 24px rgba(24, 39, 75, .06); backdrop-filter: blur(12px); }
  .mobile-case-directory span { color: var(--mobile-blue); font-size: 12px; font-weight: 760; }
  .mobile-case-directory strong { overflow: hidden; font-size: 14px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-case-directory i { color: var(--mobile-blue); font-size: 20px; font-style: normal; transition: transform .2s ease; }
  .mobile-case-directory button[aria-expanded="true"] i { transform: rotate(180deg); }
  .mobile-case-directory-panel { position: absolute; top: calc(100% + 8px); left: 0; right: 0; padding: 8px; border: 1px solid #dbe3ed; border-radius: 14px; background: #fff; box-shadow: 0 18px 48px rgba(24, 39, 75, .16); }
  .mobile-case-directory-panel[hidden] { display: none; }
  .mobile-case-directory-panel a { display: block; padding: 13px 12px; border-radius: 9px; color: var(--mobile-ink); font-size: 15px; font-weight: 650; text-decoration: none; }
  .mobile-case-directory-panel a + a { border-top: 1px solid var(--mobile-rule); }

  .market-case-mobile-demo .story-section,
  .inventory-case-mobile-demo .story-section { width: 100%; margin: 0; padding: 44px 20px; border-top: 1px solid var(--mobile-rule); border-radius: 0; background: #fff; scroll-margin-top: 132px; }
  .market-case-mobile-demo .story-section-head,
  .inventory-case-mobile-demo .story-section-head { display: block; margin: 0 0 24px; }
  .market-case-mobile-demo .story-section-head h2,
  .inventory-case-mobile-demo .story-section-head h2 { color: var(--mobile-ink); font-size: 27px; line-height: 1.2; letter-spacing: -.025em; }
  .market-case-mobile-demo .story-section h3,
  .inventory-case-mobile-demo .story-section h3 { font-size: 20px; line-height: 1.35; }
  .market-case-mobile-demo .story-section p,
  .market-case-mobile-demo .story-section li,
  .inventory-case-mobile-demo .story-section p,
  .inventory-case-mobile-demo .story-section li { font-size: 16px; line-height: 1.72; overflow-wrap: anywhere; }

  .market-case-mobile-demo .story-two-column,
  .market-case-mobile-demo .decision-list,
  .market-case-mobile-demo .result-dashboard,
  .market-case-mobile-demo .text-metric-dashboard,
  .inventory-case-mobile-demo .inventory-strategy-models,
  .inventory-case-mobile-demo .inventory-decision-framework,
  .inventory-case-mobile-demo .inventory-result-core,
  .inventory-case-mobile-demo .special-stage-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }

  .market-case-mobile-demo .story-media-card,
  .inventory-case-mobile-demo .story-media-card,
  .market-case-mobile-demo .story-wide-image { margin: 24px 0 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .market-case-mobile-demo .case-image-trigger,
  .inventory-case-mobile-demo .case-image-trigger { overflow: hidden; border: 1px solid #dce3ec; border-radius: 12px; background: #f5f8fc; }
  .market-case-mobile-demo .story-media-card img,
  .inventory-case-mobile-demo .story-media-card img,
  .market-case-mobile-demo .story-wide-image img { width: 100%; height: auto; min-height: 0; object-fit: contain; }
  .market-case-mobile-demo .story-wide-image figcaption { margin-top: 10px; color: var(--mobile-muted); font-size: 12px; line-height: 1.5; }

  .market-case-mobile-demo .decision-list article,
  .inventory-case-mobile-demo .decision-list article { padding: 22px 0; border: 0; border-top: 1px solid var(--mobile-rule); border-radius: 0; background: transparent; box-shadow: none; }
  .market-case-mobile-demo .decision-list article strong,
  .inventory-case-mobile-demo .decision-list article strong { display: block; color: var(--mobile-ink); font-size: 18px; line-height: 1.45; }

  .market-case-mobile-demo .story-metric-panel { display: grid; grid-template-columns: 1fr; gap: 0; padding: 0; border: 0; background: transparent; }
  .market-case-mobile-demo .story-metric-panel article { padding: 24px 20px; border: 0; border-top: 1px solid var(--mobile-rule); }
  .market-case-mobile-demo .story-table-block { overflow: visible; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .market-case-mobile-demo .story-table-block .table-scroll { overflow: visible; }
  .market-case-mobile-demo .story-table-block table { display: block; width: 100%; min-width: 0; border: 0; }
  .market-case-mobile-demo .story-table-block thead { display: none; }
  .market-case-mobile-demo .story-table-block tbody,
  .market-case-mobile-demo .story-table-block tr,
  .market-case-mobile-demo .story-table-block td { display: block; width: 100%; }
  .market-case-mobile-demo .story-table-block tr { padding: 18px 0; border-top: 1px solid var(--mobile-rule); }
  .market-case-mobile-demo .story-table-block td { padding: 4px 0; border: 0; color: var(--mobile-muted); font-size: 15px; line-height: 1.65; white-space: normal; }
  .market-case-mobile-demo .story-table-block td:first-child { color: var(--mobile-ink); font-size: 17px; font-weight: 760; }

  .market-case-mobile-demo .story-callout,
  .inventory-case-mobile-demo .story-callout { margin-top: 24px; padding: 22px 18px; border: 0; border-left: 3px solid var(--mobile-blue); border-radius: 0; background: #f4f8ff; }

  .market-case-mobile-demo .story-gallery-viewport { overflow: visible; }
  .market-case-mobile-demo .story-gallery { display: grid; grid-template-columns: 1fr; gap: 28px; overflow: visible; transform: none !important; padding: 0; }
  .market-case-mobile-demo .story-gallery figure,
  .market-case-mobile-demo .story-gallery figure[aria-hidden="true"] { display: block; width: 100%; flex: none; margin: 0; }
  .market-case-mobile-demo .story-gallery figure[aria-hidden="true"],
  .market-case-mobile-demo .carousel-button { display: none; }
  .market-case-mobile-demo .story-gallery img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; border: 1px solid #dce3ec; border-radius: 12px; background: #f5f8fc; }
  .market-case-mobile-demo .story-gallery figcaption { padding: 10px 2px 0; color: var(--mobile-ink); font-size: 15px; font-weight: 700; }
  .market-case-mobile-demo .result-dashboard article,
  .market-case-mobile-demo .text-metric-dashboard article { min-height: 0; padding: 22px 0; border: 0; border-top: 1px solid var(--mobile-rule); border-radius: 0; background: transparent; }

  .inventory-case-mobile-demo .inventory-promise-formula { display: flex; flex-wrap: nowrap; gap: 6px; margin: 22px 0; padding: 22px 12px; align-items: baseline; text-align: center; }
  .inventory-case-mobile-demo .inventory-promise-formula > span { font-size: 23px; }
  .inventory-case-mobile-demo .inventory-promise-formula > b { font-size: 18px; transform: none; }
  .inventory-case-mobile-demo .inventory-promise-formula small { display: block; margin: 3px 0 0; font-size: 8px; }
  .inventory-case-mobile-demo .inventory-formula-notes { display: grid; grid-template-columns: 1fr; gap: 0; }
  .inventory-case-mobile-demo .inventory-formula-notes p { margin: 0; padding: 15px 0; border-top: 1px solid var(--mobile-rule); }
  .inventory-case-mobile-demo .inventory-layer-list { display: grid; grid-template-columns: 1fr; gap: 20px; }
  .inventory-case-mobile-demo .inventory-layer-list > article { overflow: hidden; margin: 0; border: 1px solid #dfe5ed; border-radius: 14px; background: #fff; }
  .inventory-case-mobile-demo .inventory-layer-list > article > header { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 20px 18px; }
  .inventory-case-mobile-demo .inventory-layer-list > article > header > span { color: var(--mobile-blue); font-size: 24px; font-weight: 800; }
  .inventory-case-mobile-demo .inventory-layer-list .layer-body { padding: 20px 18px; border-top: 1px solid var(--mobile-rule); }
  .inventory-case-mobile-demo .inventory-layer-list .layer-body :is(.supplier-tier-cards,.inventory-trust-grid,.layer-levels,.example-contrast,.channel-example,.inventory-model-grid,.trigger-grid,.trigger-gate,.rescue-layer-columns,.inventory-compensation-grid) { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .inventory-case-mobile-demo .inventory-running-example { display: grid; grid-template-columns: 1fr; gap: 18px; padding: 22px 18px; border-radius: 14px; background: #f4f8ff; }
  .inventory-case-mobile-demo .inventory-running-example dl { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .inventory-case-mobile-demo .supplier-tier-cards,
  .inventory-case-mobile-demo .fulfillment-mode-groups,
  .inventory-case-mobile-demo .mode-paths,
  .inventory-case-mobile-demo .inventory-trust-grid,
  .inventory-case-mobile-demo .layer-levels,
  .inventory-case-mobile-demo .example-contrast,
  .inventory-case-mobile-demo .calculation-items,
  .inventory-case-mobile-demo .channel-example,
  .inventory-case-mobile-demo .inventory-model-grid,
  .inventory-case-mobile-demo .trigger-grid,
  .inventory-case-mobile-demo .trigger-gate,
  .inventory-case-mobile-demo .rescue-layers,
  .inventory-case-mobile-demo .rescue-layer-columns,
  .inventory-case-mobile-demo .rescue-principles,
  .inventory-case-mobile-demo .rescue-scenarios,
  .inventory-case-mobile-demo .inventory-compensation-grid,
  .inventory-case-mobile-demo .special-role-grid,
  .inventory-case-mobile-demo .special-stage-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
  .inventory-case-mobile-demo .supplier-tier-cards > article,
  .inventory-case-mobile-demo .inventory-trust-grid > article,
  .inventory-case-mobile-demo .trigger-grid > article,
  .inventory-case-mobile-demo .rescue-layer,
  .inventory-case-mobile-demo .special-stage-grid > article { min-width: 0; }
  .inventory-case-mobile-demo .rescue-layer { display: grid; grid-template-columns: 1fr; }
  .inventory-case-mobile-demo .rescue-layer-index { padding: 16px 18px 0; }
  .inventory-case-mobile-demo .rescue-layer-main { padding: 16px 18px 20px; }
  .inventory-case-mobile-demo .trigger-gate > i,
  .inventory-case-mobile-demo .special-category-flow > i { justify-self: center; transform: rotate(90deg); }
  .inventory-case-mobile-demo .mechanism-steps,
  .inventory-case-mobile-demo .path-flow,
  .inventory-case-mobile-demo .special-category-flow { display: flex; flex-direction: column; align-items: stretch; gap: 8px; }
  .inventory-case-mobile-demo .mechanism-steps i,
  .inventory-case-mobile-demo .path-flow i,
  .inventory-case-mobile-demo .special-category-flow i { align-self: center; transform: rotate(90deg); }
  .inventory-case-mobile-demo .inventory-result-core { gap: 0; }
  .inventory-case-mobile-demo .inventory-result-core article { padding: 22px 0; border: 0; border-top: 1px solid var(--mobile-rule); }

  .case-image-viewer { width: calc(100vw - 16px); max-height: calc(100vh - 16px); padding: 48px 8px 12px; border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-case-directory i { transition: none; }
}

/* Approved full-site mobile system */
@media (max-width: 720px) {
  body .nav { position: relative; width: calc(100% - 32px); min-height: 64px; flex-flow: row nowrap; justify-content: space-between; align-items: center; gap: 12px; }
  body .nav-links { display: none; }
  .mobile-menu-capsule { appearance: none; display: grid; width: 54px; height: 38px; margin-left: auto; padding: 0; flex: 0 0 54px; place-items: center; border: 1px solid #d7dee8; border-radius: 999px; background: rgba(255,255,255,.96); color: #172033; box-shadow: 0 2px 8px rgba(15,23,42,.06); cursor: pointer; }
  .mobile-menu-icon { display: block; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
  .mobile-menu-capsule[aria-expanded="true"] { border-color: #b9c9df; background: #f1f6fd; color: #1769e0; }
  .mobile-menu-backdrop { position: fixed; inset: 0; z-index: 80; display: block; border: 0; background: rgba(15,23,42,.42); opacity: 0; pointer-events: none; transition: opacity .22s ease; }
  .mobile-menu-backdrop.mobile-menu-open { opacity: 1; pointer-events: auto; }
  .mobile-menu-sheet { position: fixed; left: 8px; right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); z-index: 81; display: block; max-height: min(78vh, 620px); overflow-y: auto; padding: 18px 18px 16px; border: 1px solid rgba(222,228,237,.9); border-radius: 24px; background: #fff; box-shadow: 0 22px 70px rgba(15,23,42,.24); transform: translateY(calc(100% + 24px)); transition: transform .22s cubic-bezier(.22,.8,.32,1); }
  .mobile-menu-backdrop[hidden],
  .mobile-menu-sheet[hidden] { display: none; }
  .mobile-menu-sheet.mobile-menu-open { transform: translateY(0); }
  .mobile-menu-sheet > header { display: flex; min-height: 44px; margin: 0; padding: 0 2px 12px; align-items: center; justify-content: space-between; border-bottom: 1px solid #edf0f4; background: #fff; }
  .mobile-menu-sheet > header strong { color: #172033; font-size: 19px; line-height: 1.2; }
  .mobile-menu-sheet [data-mobile-menu-close] { appearance: none; display: grid; width: 40px; height: 40px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: #f3f5f8; color: #536174; cursor: pointer; }
  .mobile-menu-sheet [data-mobile-menu-close] span { font-size: 27px; font-weight: 300; line-height: 1; transform: translateY(-1px); }
  .mobile-menu-items { display: grid; padding: 8px 0; }
  .mobile-menu-item { appearance: none; position: relative; display: flex; width: 100%; min-height: 54px; padding: 0 14px; align-items: center; border: 0; border-radius: 12px; background: transparent; color: #172033; box-shadow: none; font: inherit; font-size: 16px; font-weight: 650; text-align: left; cursor: pointer; }
  body .mobile-menu-sheet .mobile-menu-item { display: flex; }
  .mobile-menu-item + .mobile-menu-item { border-top: 1px solid #edf0f4; border-radius: 0; }
  .mobile-menu-item.active { background: #edf5ff; color: #1769e0; }
  .mobile-menu-item.active::after { content: "✓"; position: static; display: block; width: auto; height: auto; margin-left: auto; background: transparent; color: #1769e0; font-weight: 800; }
  .mobile-language-segment { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px; margin-top: 8px; padding: 4px; border-radius: 13px; background: #f1f3f6; }
  .mobile-language-segment button { appearance: none; min-height: 44px; padding: 0 12px; border: 0; border-radius: 10px; background: transparent; color: #647185; box-shadow: none; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; }
  .mobile-language-segment button[aria-pressed="true"] { background: #fff; color: #1769e0; box-shadow: 0 2px 9px rgba(15,23,42,.09); }

  .market-kpi-panel { margin-top: 24px; border-radius: 16px; }
  .market-kpi-panel > h3 { padding: 24px 20px; font-size: 22px; }
  .market-kpi-list { grid-template-columns: 1fr; }
  .market-kpi-item { padding: 24px 20px; border-right: 0; border-bottom: 1px solid #e3ebf5; }
  .market-kpi-item:nth-last-child(-n + 3) { border-bottom: 1px solid #e3ebf5; }
  .market-kpi-item:last-child { border-bottom: 0; }
  .market-kpi-item span { font-size: 14px; }
  .market-kpi-item strong { margin-top: 10px; font-size: clamp(31px, 9vw, 42px); }
  .market-kpi-item p { margin-top: 12px; font-size: 15px; line-height: 1.65; }

  .case-story-page { background: #fff; }
  .mobile-case-back { display: inline-flex; width: max-content; margin: 0 0 24px; align-items: center; color: #1769e0; font-size: 14px; font-weight: 720; text-decoration: none; }
  .mobile-back-to-top { position: fixed; right: 18px; bottom: 22px; z-index: 40; display: grid; width: 46px; height: 46px; padding: 0; place-items: center; border: 1px solid #d6dfeb; border-radius: 50%; background: rgba(255,255,255,.94); color: #1769e0; box-shadow: 0 10px 28px rgba(24,39,75,.16); opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .18s ease, transform .18s ease; backdrop-filter: blur(12px); }
  .mobile-back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-back-to-top span { font-size: 24px; line-height: 1; }
  .case-story-page .story-tabs { display: none; }
  .case-story-page .story-hero { width: calc(100% - 40px); min-height: 0; margin: 0 auto; padding: 38px 0 26px; }
  .case-story-page .story-hero h1 { color: #172033; font-size: clamp(34px, 10vw, 44px); line-height: 1.12; letter-spacing: -.035em; overflow-wrap: anywhere; }
  .case-story-page .story-hero-copy > p:last-child { color: #5f6b7c; font-size: 16px; line-height: 1.65; }
  .case-story-page .story-section { width: 100%; margin: 0; padding: 44px 20px; border-top: 1px solid #e4e9f0; border-radius: 0; background: #fff; scroll-margin-top: 132px; }
  .case-story-page .story-section-head { display: block; margin: 0 0 24px; }
  .case-story-page .story-section-head h2 { color: #172033; font-size: 27px; line-height: 1.2; letter-spacing: -.025em; }
  .case-story-page .story-section h3 { font-size: 20px; line-height: 1.35; overflow-wrap: anywhere; }
  .case-story-page .story-section p,
  .case-story-page .story-section li { font-size: 16px; line-height: 1.72; overflow-wrap: anywhere; }
  .case-story-page .story-two-column,
  .case-story-page .story-metric-panel,
  .case-story-page .decision-list,
  .case-story-page [class*='-grid'],
  .case-story-page [class*='-dashboard'],
  .case-story-page [class*='-layout'] { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .case-story-page [class*='-flow'] { grid-template-columns: 1fr; flex-direction: column; align-items: stretch; gap: 10px; }
  .case-story-page [class*='-flow'] > i { align-self: center; justify-self: center; transform: rotate(90deg); }
  .case-story-page :is(.story-media-card,.story-wide-image) { width: 100%; margin: 24px 0 0; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .case-story-page :is(.story-media-card,.story-wide-image) img { display: block; width: 100%; max-width: 100%; height: auto; min-height: 0; object-fit: contain; border-radius: 12px; }
  .case-story-page :is(.story-media-card,.story-wide-image) figcaption { margin-top: 10px; color: #697386; font-size: 12px; line-height: 1.5; }
  .case-story-page .story-table-block { overflow: visible; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .case-story-page .story-table-block .table-scroll { overflow: visible; }
  .case-story-page .story-table-block table { display: block; width: 100%; min-width: 0; border: 0; }
  .case-story-page .story-table-block thead { display: none; }
  .case-story-page .story-table-block tbody,
  .case-story-page .story-table-block tr,
  .case-story-page .story-table-block td { display: block; width: 100%; }
  .case-story-page .story-table-block tr { margin-top: 12px; padding: 16px; border: 1px solid #dfe6ef; border-radius: 12px; background: #f8fafc; }
  .case-story-page .story-table-block td { display: grid; padding: 9px 0; grid-template-columns: minmax(88px, 32%) minmax(0, 1fr); gap: 12px; align-items: baseline; border: 0; border-top: 1px solid #e8edf3; color: #4f5f73; font-size: 14px; line-height: 1.55; white-space: normal; overflow-wrap: anywhere; }
  .case-story-page .story-table-block td::before { content: attr(data-label); color: #758398; font-size: 12px; font-weight: 700; line-height: 1.45; }
  .case-story-page .story-table-block td:first-child { display: grid; padding-top: 0; grid-template-columns: 1fr; gap: 4px; border-top: 0; color: #172033; font-size: 17px; font-weight: 760; }
  .case-story-page .story-table-block td:first-child::before { color: #1769e0; font-size: 11px; letter-spacing: .04em; }
  .case-story-page .story-gallery-viewport { overflow: visible; }
  .case-story-page .story-gallery { display: grid; grid-template-columns: 1fr; gap: 28px; overflow: visible; transform: none !important; padding: 0; }
  .case-story-page .story-gallery figure { display: block; width: 100%; margin: 0; }
  .case-story-page .story-gallery figure[aria-hidden='true'],
  .case-story-page .carousel-button { display: none; }
  .case-story-page .story-gallery img { width: 100%; height: auto; object-fit: contain; border: 1px solid #dce3ec; border-radius: 12px; background: #f5f8fc; cursor: zoom-in; }

  .case-story-page #results .result-dashboard { grid-template-columns: 1fr; gap: 14px; }
  .case-story-page #results .result-dashboard article { min-height: 0; padding: 24px 20px; border: 1px solid #dfe6ef; border-radius: 16px; background: #fff; box-shadow: 0 8px 24px rgba(24,39,75,.05); }

  .case-story-page .rag-audience-strip,
  .case-story-page .rag-governance-strip { grid-template-columns: 1fr; gap: 12px; margin-top: 22px; border: 0; }
  .case-story-page .rag-audience-strip article,
  .case-story-page .rag-governance-strip article { min-width: 0; padding: 18px 20px; border: 1px solid #dfe6ef; border-radius: 14px; background: #fff; box-shadow: 0 7px 20px rgba(24,39,75,.04); }
  .case-story-page .rag-audience-strip article + article,
  .case-story-page .rag-governance-strip article + article { border-left: 1px solid #dfe6ef; }
  .case-story-page .rag-audience-strip :is(span,strong,p),
  .case-story-page .rag-governance-strip :is(span,strong,p) { min-width: 0; overflow-wrap: normal; word-break: normal; }
  .case-story-page .rag-pricing-panel { grid-template-columns: 1fr; border-radius: 16px; }
  .case-story-page .rag-pricing-panel > div { min-width: 0; padding: 20px; }
  .case-story-page .rag-pricing-panel > div + div { border-left: 0; border-top: 1px solid rgba(36,125,240,.16); }
  .case-story-page .rag-pricing-panel > p { grid-column: 1; padding: 20px; }
  .case-story-page .rag-pricing-panel :is(span,strong,small,p) { min-width: 0; overflow-wrap: normal; word-break: normal; }
  .case-story-page .listing-pipeline { grid-template-columns: 1fr; overflow: visible; gap: 10px; padding: 18px; }
  .case-story-page .listing-pipeline article { min-width: 0; }
  .case-story-page .listing-pipeline > i { justify-self: center; transform: rotate(90deg); }
  .case-story-page .listing-pipeline :is(strong,p) { overflow-wrap: normal; word-break: normal; }

  .case-story-page .rag-architecture { margin-top: 24px; border-radius: 16px; }
  .case-story-page .rag-architecture-head { display: block; padding: 20px; }
  .case-story-page .rag-architecture-head > div { display: grid; grid-template-columns: auto minmax(0,1fr); column-gap: 10px; align-items: baseline; }
  .case-story-page .rag-architecture-head span { grid-column: 1; grid-row: 1; color: #1769e0; font-size: 13px; font-weight: 800; }
  .case-story-page .rag-architecture-head h3 { grid-column: 2; grid-row: 1; font-size: 21px; }
  .case-story-page .rag-architecture-head p { grid-column: 1 / -1; margin-top: 6px; font-size: 14px; line-height: 1.55; }
  .case-story-page .rag-build-diagram { padding: 20px 16px; background-size: 24px 24px; }
  .case-story-page .rag-build-pipeline { grid-template-columns: 1fr; gap: 12px; }
  .case-story-page .rag-build-step { min-height: 0; display: grid; grid-template-columns: 54px minmax(0,1fr); grid-template-rows: auto auto; column-gap: 14px; row-gap: 6px; padding: 17px 18px; border-radius: 12px; }
  .case-story-page .rag-build-step:not(:last-child)::after { top: auto; right: auto; bottom: -12px; left: 39px; width: 0; height: 12px; border-top: 0; border-left: 2px solid #79b3ff; }
  .case-story-page .rag-build-step:not(:last-child)::before { top: auto; right: auto; bottom: -9px; left: 36px; width: 7px; height: 7px; transform: rotate(135deg); }
  .case-story-page .rag-build-index { position: static; grid-column: 1; grid-row: 1; align-self: end; padding-left: 2px; font-size: 11px; }
  .case-story-page .rag-build-symbol { grid-column: 1; grid-row: 2; width: 42px; height: 42px; margin: 0; align-self: start; }
  .case-story-page .rag-build-step strong { grid-column: 2; grid-row: 1; align-self: end; margin: 0; font-size: 17px; overflow-wrap: normal; word-break: normal; }
  .case-story-page .rag-build-step p { grid-column: 2; grid-row: 2; font-size: 14px; line-height: 1.6; overflow-wrap: normal; word-break: normal; }
  .case-story-page .rag-build-router { height: 62px; margin: 0; }
  .case-story-page .rag-build-router::before { top: 0; bottom: 0; left: 39px; right: auto; border-top: 0; border-left: 2px solid #79b3ff; }
  .case-story-page .rag-build-router::after { top: auto; bottom: 2px; left: 36px; width: 7px; height: 7px; border-left: 0; border-bottom: 2px solid #247df0; transform: rotate(45deg); }
  .case-story-page .rag-build-router span { top: 20px; left: 68px; padding: 4px 10px; border: 1px solid rgba(36,125,240,.16); border-radius: 999px; background: #fff; font-size: 11px; transform: none; white-space: nowrap; }
  .case-story-page .rag-build-stores { grid-template-columns: 1fr; gap: 12px; }
  .case-story-page .rag-build-stores article { min-height: 0; padding: 17px 18px; border-top-width: 0; border-left: 3px solid #247df0; border-radius: 12px; }
  .case-story-page .rag-build-stores article:nth-child(2) { border-left-color: #15aebb; }
  .case-story-page .rag-build-stores article:nth-child(3) { border-left-color: #6777db; }
  .case-story-page .rag-build-stores article::before { top: -13px; left: 39px; height: 12px; }
  .case-story-page .rag-build-stores strong { font-size: 16px; overflow-wrap: normal; word-break: normal; }
  .case-story-page .rag-build-stores p { font-size: 14px; line-height: 1.6; overflow-wrap: normal; word-break: normal; }
  .case-story-page .rag-customer-database { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 14px; padding: 18px; border-radius: 12px; }
  .case-story-page .rag-database-sizes { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .case-story-page .rag-database-sizes span { white-space: normal; }

  .case-story-page .rag-query-grid { grid-template-columns: 1fr; gap: 18px; }
  .case-story-page .rag-query-grid { padding: 16px; }
  .case-story-page .rag-query-inputs,
  .case-story-page .rag-query-pipeline { gap: 12px; }
  .case-story-page .rag-query-inputs { position: relative; padding-bottom: 26px; border-right: 0; }
  .case-story-page .rag-query-inputs::after { content: ""; position: absolute; left: 50%; bottom: 2px; width: 9px; height: 9px; border-right: 2px solid #247df0; border-bottom: 2px solid #247df0; transform: translateX(-50%) rotate(45deg); }
  .case-story-page .rag-query-inputs article,
  .case-story-page .rag-query-pipeline article { min-height: 0; padding: 18px; border: 1px solid rgba(36,125,240,.15); border-radius: 12px; background: rgba(255,255,255,.88); box-shadow: 0 8px 20px rgba(36,86,145,.05); }
  .case-story-page .rag-query-inputs article + article,
  .case-story-page .rag-query-pipeline article + article { border-top: 1px solid rgba(36,125,240,.15); }
  .case-story-page .rag-query-grid strong { font-size: 16px; overflow-wrap: normal; word-break: normal; }
  .case-story-page .rag-query-grid p { font-size: 14px; line-height: 1.65; overflow-wrap: normal; word-break: normal; }

  .home-page { background: #fff; }
  .home-page main { overflow: visible; }
  .home-page .profile-hero { width: 100%; margin: 0; padding: 0; }
  .home-page .profile-hero-card { border: 0; border-radius: 0; background: #fff; box-shadow: none; backdrop-filter: none; }
  .home-page .profile-hero-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(138px, 44vw); grid-template-rows: minmax(150px, 1fr) auto auto; column-gap: 12px; padding: 20px 20px 24px; align-items: start; border-bottom: 0; }
  .home-page .profile-hero-copy { display: contents; max-width: none; }
  .home-page .profile-hero-copy h1,
  .home-page .profile-english-name,
  .home-page .profile-hero-copy h2 { grid-column: 1; align-self: end; }
  .home-page .profile-hero-copy h1 { font-size: clamp(38px, 11vw, 48px); }
  .home-page .profile-photo { grid-column: 2; grid-row: 1 / 4; min-height: 0; order: initial; width: 100%; margin: 0; padding: 0; align-self: end; }
  .home-page .profile-photo img { width: 100%; height: auto; max-height: 230px; object-fit: contain; object-position: right bottom; }
  .home-page .profile-hero-copy h3,
  .home-page .profile-summary,
  .home-page .hero-actions { grid-column: 1 / -1; }
  .home-page .profile-hero-copy h3 { margin-top: 22px; }
  .home-page .profile-achievements { display: grid; grid-template-columns: 1fr; gap: 0; margin: 0 20px 24px; padding: 0 16px; overflow: hidden; border: 1px solid #e2e9f2; border-radius: 18px; background: #f8fafc; }
  .home-page .profile-achievements article { min-height: 0; padding: 16px 0; border-top: 1px solid #e2e9f2; border-right: 0; background: transparent; }
  .home-page .profile-achievements article:first-child { border-top: 0; }
  .home-page .profile-achievements h3 { font-size: 16px; line-height: 1.35; }
  .home-page .profile-achievements p { margin-top: 5px; font-size: 13.5px; line-height: 1.55; }
  .home-page .career-section,
  .home-page .capability-section { width: 100%; margin-top: 0; padding: 36px 20px; border: 0; border-top: 1px solid #e4e9f0; border-radius: 0; background: #fff; box-shadow: none; backdrop-filter: none; }
  .home-page .career-list { margin-top: 18px; }
  .home-page .career-entry { padding: 22px 0; }
  .home-page .capability-dashboard { grid-template-columns: minmax(0, 1fr); }
  .home-page .capability-column { min-width: 0; }
  .home-page .capability-column + .capability-column { border-left: 0; border-top: 1px solid rgba(38, 50, 75, 0.1); }
  .home-page .capability-block,
  .home-page .capability-column:first-child .capability-block,
  .home-page .capability-column-visual .capability-block { padding: 22px 0; }
  .home-page .capability-block { min-width: 0; width: 100%; }
  .home-page .radar-chart svg { max-width: 100%; overflow: hidden; }
  .home-page .skill-bar span { min-width: 0; overflow-wrap: anywhere; }
  .home-page .language-gauges { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: 0; }
  .home-page .language-gauge { width: min(32vw, 128px); height: min(32vw, 128px); justify-self: center; }
  .home-page .education-section { width: 100%; margin: 0; padding: 36px 20px; border: 0; border-top: 1px solid #e4e9f0; border-radius: 0; background: #fff; box-shadow: none; backdrop-filter: none; }
  .home-page .education-card { gap: 0; }
  .home-page .education-item { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
  .home-page .education-main { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .home-page .education-main > div:first-child,
  .home-page .education-meta { grid-column: 1; grid-row: auto; text-align: left; }
  .home-page .education-meta span { font-size: 16px; }
  .home-page .capability-grid,
  .home-page .career-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
  .home-page .hero-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .home-page .hero-actions .button { width: 100%; }

  .showcase-page .portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
  .showcase-page .portfolio-tabs { display: none; }
  .showcase-page .mobile-case-filter { display: block; width: 100%; margin-top: 24px; }
  .case-filter-trigger { display: flex; width: 100%; min-height: 58px; align-items: center; justify-content: space-between; gap: 16px; padding: 0 18px; border: 1px solid #d9e3f0; border-radius: 18px; background: rgba(255,255,255,.94); color: #121826; box-shadow: 0 12px 30px rgba(42,70,120,.08); font: inherit; text-align: left; }
  .case-filter-trigger strong { font-size: 16px; }
  .case-filter-trigger > span { color: #1769e0; font-size: 14px; font-weight: 700; white-space: nowrap; }
  .case-filter-backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(18,24,38,.22); backdrop-filter: blur(2px); }
  .case-filter-sheet { position: fixed; z-index: 91; right: 12px; bottom: 12px; left: 12px; max-height: min(70vh, 520px); padding: 12px 20px calc(18px + env(safe-area-inset-bottom)); overflow: auto; border: 1px solid rgba(216,226,239,.9); border-radius: 28px; background: rgba(255,255,255,.98); box-shadow: 0 24px 80px rgba(27,45,80,.22); }
  .case-filter-sheet[hidden], .case-filter-backdrop[hidden] { display: none; }
  .case-filter-grabber { display: block; width: 38px; height: 5px; margin: 0 auto 12px; border-radius: 999px; background: #d5dce7; }
  .case-filter-sheet h2 { margin: 0 0 8px; font-size: 18px; }
  .case-filter-options { display: grid; }
  .case-filter-option { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 16px; padding: 0 6px; border: 0; border-bottom: 1px solid #e8edf4; background: transparent; color: #172033; font: inherit; font-size: 16px; text-align: left; }
  .case-filter-option:last-child { border-bottom: 0; }
  .case-filter-option.active { color: #1769e0; font-weight: 760; }
  .case-filter-count { display: inline-grid; min-width: 28px; height: 28px; place-items: center; padding: 0 8px; border-radius: 999px; background: #f0f5fc; color: #53647a; font-size: 13px; font-weight: 700; }
  body.case-filter-active { overflow: hidden; }
  .showcase-page .portfolio-card { min-height: 0; }
  .showcase-page .cv-download-row { grid-template-columns: 1fr; gap: 14px; }
  .showcase-page .cv-language-switch,
  .showcase-page .cv-download-button { width: 100%; }
  .showcase-page .contact-business-card { width: calc(100% - 32px); padding: 24px 20px; }
  .showcase-page .contact-business-details { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .showcase-page .contact-business-action { width: 100%; justify-content: center; }

  body:not([class]) .pillar-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
  body:not([class]) .page-hero,
  body:not([class]) .section { width: calc(100% - 32px); }
}
