:root {
  color-scheme: light;
  --ink: #14171a;
  --muted: #5b6470;
  --soft: #8b949e;
  --line: #d8dde3;
  --line-strong: #abb4bf;
  --paper: #f5f6f3;
  --panel: #ffffff;
  --panel-alt: #ecefea;
  --carbon: #22272d;
  --teal: #1f7a76;
  --amber: #b47723;
  --red: #a94d43;
  --steel: #53616f;
  --shadow: 0 18px 48px rgba(23, 28, 32, 0.1);
  --radius: 8px;
  --max: 1180px;
  --font: "Geist", "Outfit", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:has(body.home-page) {
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.65;
  background:
    linear-gradient(rgba(20, 23, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 23, 26, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 40px 40px;
}

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

img,
svg {
  max-width: 100%;
}

button {
  font: inherit;
}

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 20;
  width: 100%;
  height: 3px;
  background: transparent;
}

.progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--red));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  border-bottom: 1px solid rgba(171, 180, 191, 0.55);
  background: rgba(245, 246, 243, 0.86);
  backdrop-filter: blur(16px);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
  will-change: transform;
}

.site-header.is-nav-hidden {
  transform: translateY(calc(-100% - 28px));
  opacity: 0;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(31, 122, 118, 0.08);
}

.language-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  width: 62px;
  min-height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(29, 29, 31, 0.58);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  overflow: visible;
  transition: color 220ms ease;
}

.language-toggle i {
  display: none;
}

.language-toggle span {
  position: relative;
  z-index: 1;
  min-width: 24px;
  text-align: center;
  transition: color 220ms ease;
}

.language-toggle span:first-child {
  color: #0071e3;
}

.language-toggle.is-en i {
  transform: translateX(35px);
}

.language-toggle.is-en span:first-child {
  color: rgba(29, 29, 31, 0.58);
}

.language-toggle.is-en span:last-child {
  color: #0071e3;
}

.language-toggle:hover {
  color: rgba(29, 29, 31, 0.72);
}

.language-toggle:focus-visible {
  outline: 2px solid rgba(0, 113, 227, 0.75);
  outline-offset: 3px;
}

.scroll-top-button {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 18;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(230, 242, 255, 0.7)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 48px rgba(29, 78, 137, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  color: #0071e3;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.92);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    background 220ms ease;
  backdrop-filter: blur(18px) saturate(1.35);
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-button span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.scroll-top-button span::before,
.scroll-top-button span::after {
  content: "";
  position: absolute;
  left: 50%;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-top-button span::before {
  top: 4px;
  width: 3px;
  height: 14px;
}

.scroll-top-button span::after {
  top: 2px;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  background: transparent;
  border-radius: 2px 0 0;
  transform: translateX(-50%) rotate(45deg);
}

.scroll-top-button:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(214, 234, 255, 0.82)),
    rgba(255, 255, 255, 0.82);
  box-shadow:
    0 24px 58px rgba(0, 113, 227, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-2px) scale(1.02);
}

.scroll-top-button:focus-visible {
  outline: 2px solid rgba(0, 113, 227, 0.72);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .scroll-top-button {
    width: 50px;
    height: 50px;
  }
}

.section {
  max-width: var(--max);
  margin: 0 auto;
}

.section.compact {
  padding-top: 48px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 40px;
  align-items: stretch;
  min-height: calc(100vh - 64px);
  padding-top: 54px;
  padding-bottom: 54px;
}

.hero-copy {
  align-self: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(21px, 3.15vw, 42px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(15px, 1.9vw, 24px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.24;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

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

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button {
  gap: 10px;
  padding: 0 16px;
  font-weight: 700;
}

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

.button:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.button.secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.icon {
  width: 18px;
  height: 18px;
  flex: none;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border: 1px solid var(--line-strong);
  background: #e8ebe6;
  box-shadow: var(--shadow);
}

.system-visual {
  position: absolute;
  inset: 0;
  padding: 28px;
  background:
    linear-gradient(120deg, rgba(31, 122, 118, 0.15), transparent 34%),
    linear-gradient(315deg, rgba(180, 119, 35, 0.17), transparent 32%),
    #eef0ec;
}

.system-frame {
  display: grid;
  grid-template-rows: 48px 1fr 96px;
  height: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.74);
}

.frame-top,
.frame-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.frame-bottom {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.status-dots {
  display: inline-flex;
  gap: 6px;
}

.status-dots span {
  width: 8px;
  height: 8px;
  background: var(--teal);
}

.frame-body {
  display: grid;
  grid-template-columns: 120px 1fr 132px;
  gap: 1px;
  background: var(--line);
}

.rail,
.inspector,
.workspace {
  background: rgba(255, 255, 255, 0.86);
}

.rail,
.inspector {
  padding: 14px;
}

.rail span,
.inspector span,
.mini-row span {
  display: block;
  height: 8px;
  margin-bottom: 12px;
  background: var(--line);
}

.rail span:nth-child(2),
.inspector span:nth-child(3) {
  background: rgba(31, 122, 118, 0.36);
}

.workspace {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.robot-cell {
  position: absolute;
  inset: 48px 38px 74px;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(rgba(83, 97, 111, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 97, 111, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}

.arm {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 148px;
  height: 148px;
  border: 12px solid var(--carbon);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: translate(-50%, -50%) rotate(-28deg);
}

.arm::before,
.arm::after {
  content: "";
  position: absolute;
  background: var(--teal);
}

.arm::before {
  right: -46px;
  top: -18px;
  width: 72px;
  height: 14px;
}

.arm::after {
  right: -64px;
  top: -28px;
  width: 24px;
  height: 34px;
  background: var(--amber);
}

.path-line {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 30px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal) 0 18px, transparent 18px 30px);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  background: var(--line);
}

.metric-strip div {
  min-height: 54px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
}

.metric-strip strong {
  display: block;
  font-size: 18px;
}

.metric-strip small {
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  color: var(--muted);
}

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

.capability,
.case-card,
.project-card,
.timeline-item,
.contact-panel,
.detail-block,
.stat-card,
.artifact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.capability {
  min-height: 212px;
  padding: 22px;
}

.capability svg {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--teal);
}

.capability p,
.case-card p,
.project-card p,
.timeline-item p,
.detail-block p,
.artifact-card p {
  color: var(--muted);
}

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

.case-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  min-height: 540px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.case-art,
.artifact-visual {
  position: relative;
  overflow: hidden;
  background: var(--panel-alt);
}

.case-art::before,
.artifact-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(83, 97, 111, 0.28);
}

.case-art::after {
  content: "";
  position: absolute;
  inset: auto 30px 34px 30px;
  height: 2px;
  background: repeating-linear-gradient(90deg, currentColor 0 22px, transparent 22px 34px);
  color: var(--teal);
}

.case-art.monitor {
  background:
    linear-gradient(90deg, rgba(31, 122, 118, 0.18), transparent),
    repeating-linear-gradient(0deg, transparent 0 21px, rgba(83, 97, 111, 0.1) 22px),
    #edf0ec;
}

.case-art.flow {
  background:
    radial-gradient(circle at 24% 42%, rgba(180, 119, 35, 0.28) 0 10%, transparent 11%),
    radial-gradient(circle at 65% 38%, rgba(31, 122, 118, 0.24) 0 8%, transparent 9%),
    #edf0ec;
}

.case-art.system {
  background:
    linear-gradient(135deg, rgba(169, 77, 67, 0.16), transparent 44%),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(83, 97, 111, 0.12) 35px),
    #edf0ec;
}

.case-body,
.project-card,
.artifact-card {
  padding: 22px;
}

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

.tag {
  border: 1px solid var(--line);
  padding: 3px 8px;
  color: var(--muted);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.meta-line {
  color: var(--soft);
  font-size: 13px;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--teal);
  font-weight: 700;
}

.project-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter {
  min-height: 36px;
  border: 1px solid var(--line-strong);
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--muted);
  cursor: pointer;
}

.filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

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

.project-card {
  min-height: 248px;
}

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

.project-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.project-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--soft);
  font-size: 13px;
}

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

.artifact-card {
  min-height: 340px;
}

.artifact-visual {
  height: 150px;
  margin: -22px -22px 20px;
}

.artifact-visual.brand {
  background: linear-gradient(135deg, rgba(31, 122, 118, 0.2), transparent 52%), #e9ece7;
}

.artifact-visual.app {
  background: linear-gradient(90deg, rgba(180, 119, 35, 0.22), transparent 46%), #e9ece7;
}

.artifact-visual.service {
  background: linear-gradient(135deg, rgba(169, 77, 67, 0.18), transparent 55%), #e9ece7;
}

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

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

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

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
  background: var(--carbon);
  color: #fff;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-panel .button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer .section {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 14px;
}

.page-hero {
  padding-top: 70px;
  padding-bottom: 38px;
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(19px, 2.5vw, 36px);
}

.case-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 34px;
  align-items: start;
}

.detail-meta {
  border: 1px solid var(--line-strong);
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.detail-meta dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-meta dt {
  color: var(--soft);
  font-size: 12px;
}

.detail-meta dd {
  margin: 2px 0 0;
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: 24px;
}

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

.detail-block {
  padding: 28px;
}

.detail-block ul,
.detail-block ol {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.stat-card {
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 13px;
}

.diagram {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.diagram-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.node {
  min-height: 86px;
  border: 1px solid var(--line);
  padding: 14px;
  background: rgba(236, 239, 234, 0.74);
}

.node strong {
  display: block;
  margin-bottom: 6px;
}

.sidebar {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 12px;
  align-self: start;
}

.toc {
  border: 1px solid var(--line);
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.toc a:hover {
  color: var(--teal);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(20, 23, 26, 0.72);
}

.image-modal.is-open {
  display: grid;
}

.modal-card {
  width: min(980px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.modal-visual {
  min-height: 460px;
  background:
    linear-gradient(rgba(83, 97, 111, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 97, 111, 0.08) 1px, transparent 1px),
    #edf0ec;
  background-size: 28px 28px;
}

@media (max-width: 980px) {
  .hero,
  .section-head,
  .case-detail-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-panel {
    min-height: 520px;
  }

  .capability-grid,
  .case-grid,
  .archive-grid,
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .sidebar {
    position: static;
  }
}

@media (max-width: 700px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .section {
    padding: 56px 18px;
  }

  .hero-panel {
    min-height: 440px;
  }

  .frame-body {
    grid-template-columns: 78px 1fr;
  }

  .inspector {
    display: none;
  }

  .capability-grid,
  .case-grid,
  .project-grid,
  .archive-grid,
  .stat-grid,
  .diagram-row {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: 0;
  }

  .project-toolbar,
  .contact-panel,
  .site-footer .section,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .timeline-item {
    display: grid;
  }
}

.art-direction {
  --ink: #101114;
  --muted: #5f6468;
  --soft: #8e928f;
  --line: #cdd1ca;
  --line-strong: #90978f;
  --paper: #f1f0e8;
  --panel: #fbfaf4;
  --panel-alt: #e4e6dc;
  --carbon: #17191c;
  --teal: #006f68;
  --amber: #c4792c;
  --red: #a23d35;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(16, 17, 20, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 78% 8%, rgba(196, 121, 44, 0.14), transparent 28%),
    var(--paper);
  background-size: 76px 76px, 38px 38px, auto, auto;
}

.art-direction .site-header {
  background: rgba(241, 240, 232, 0.78);
}

.art-direction .nav {
  min-height: 72px;
}

.intro-hero {
  padding-top: 40px;
  padding-bottom: 82px;
}

.intro-label {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  margin-bottom: 26px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: 30px;
  align-items: stretch;
}

.intro-copy {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line-strong);
}

.intro-copy h1 {
  max-width: 980px;
  margin: 14px 0 24px;
  font-size: clamp(26px, 4vw, 56px);
  line-height: 0.98;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.profile-board {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 620px;
  border: 1px solid var(--ink);
  background: var(--carbon);
  color: #fff;
  box-shadow: 18px 18px 0 rgba(16, 17, 20, 0.1);
}

.board-top,
.board-name,
.board-metrics {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px;
}

.board-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  text-transform: uppercase;
}

.board-name strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.1;
}

.board-name span {
  color: rgba(255, 255, 255, 0.68);
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  padding: 0;
}

.board-metrics div {
  padding: 18px;
  background: var(--carbon);
}

.board-metrics strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.board-metrics span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.scope-map {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.scope-map::before,
.scope-map::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%) rotate(45deg);
}

.scope-map::before {
  width: 210px;
  height: 210px;
}

.scope-map::after {
  width: 118px;
  height: 118px;
}

.scope-map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 9px;
  background: rgba(0, 111, 104, 0.88);
  font-size: 12px;
}

.capability-lab {
  border-top: 1px solid var(--line-strong);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.52fr) 1fr;
  gap: 18px;
  align-items: stretch;
}

.radar-panel,
.method-panel {
  border: 1px solid var(--line-strong);
  background: rgba(251, 250, 244, 0.78);
}

.radar-panel {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 28px;
}

.radar {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  background:
    linear-gradient(45deg, transparent 49.6%, rgba(16, 17, 20, 0.22) 50%, transparent 50.4%),
    linear-gradient(-45deg, transparent 49.6%, rgba(16, 17, 20, 0.22) 50%, transparent 50.4%),
    radial-gradient(circle, transparent 0 24%, rgba(0, 111, 104, 0.1) 24.5% 25%, transparent 25.5% 49%, rgba(0, 111, 104, 0.18) 49.5% 50%, transparent 50.5% 74%, rgba(0, 111, 104, 0.26) 74.5% 75%, transparent 75.5%);
}

.radar::before {
  content: "";
  position: absolute;
  inset: 18%;
  clip-path: polygon(52% 2%, 84% 26%, 78% 68%, 50% 92%, 16% 72%, 12% 24%);
  background: rgba(0, 111, 104, 0.28);
  border: 1px solid var(--teal);
}

.radar span {
  position: absolute;
  width: 92px;
  color: var(--muted);
  font-size: 13px;
}

.radar span:nth-child(1) { left: 38%; top: -8px; }
.radar span:nth-child(2) { right: -36px; top: 24%; }
.radar span:nth-child(3) { right: -26px; bottom: 18%; }
.radar span:nth-child(4) { left: 39%; bottom: -12px; }
.radar span:nth-child(5) { left: -34px; bottom: 20%; }
.radar span:nth-child(6) { left: -32px; top: 24%; }

.method-panel {
  display: grid;
}

.method-row {
  display: grid;
  grid-template-columns: 78px minmax(120px, 0.34fr) 1fr;
  gap: 20px;
  align-items: center;
  min-height: 124px;
  border-bottom: 1px solid var(--line);
  padding: 20px 24px;
}

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

.method-row span {
  color: var(--amber);
  font-size: 17px;
  font-weight: 800;
}

.method-row strong {
  font-size: 12px;
}

.method-row p {
  margin: 0;
  color: var(--muted);
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  background: var(--ink);
  color: #fff;
}

.capability-strip div {
  min-height: 142px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px;
}

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

.capability-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.capability-strip strong {
  display: block;
  margin-top: 36px;
  font-size: 18px;
  line-height: 1.28;
}

.case-showcase {
  border-top: 1px solid var(--line-strong);
}

.feature-case-list {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.feature-case {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(220px, 0.42fr) 1fr;
  gap: 22px;
  align-items: stretch;
  min-height: 260px;
  border-top: 1px solid var(--ink);
  padding: 18px 0;
  transition: transform 180ms ease;
}

.feature-case:hover {
  transform: translateX(8px);
}

.case-number {
  color: var(--amber);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.feature-case .case-art {
  min-height: 220px;
  border: 1px solid var(--line-strong);
}

.feature-case h3 {
  max-width: 720px;
  font-size: clamp(14px, 2vw, 27px);
}

.feature-case p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.project-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 12px;
}

.project-tile {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid var(--line-strong);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(228, 230, 220, 0.72)),
    var(--panel-alt);
}

.project-tile::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(16, 17, 20, 0.16);
  transform: rotate(28deg);
}

.project-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}

.project-tile.tall {
  grid-row: span 2;
}

.project-tile.archive {
  background:
    linear-gradient(135deg, rgba(162, 61, 53, 0.14), rgba(196, 121, 44, 0.16)),
    var(--panel);
}

.project-tile[hidden] {
  display: none;
}

.project-tile span {
  display: block;
  margin-bottom: 42px;
  color: var(--soft);
  font-size: 12px;
  text-transform: uppercase;
}

.project-tile strong {
  display: block;
  max-width: 360px;
  font-size: 12px;
  line-height: 1.15;
}

.project-tile.large strong {
  font-size: clamp(16px, 2vw, 26px);
}

.project-tile p {
  max-width: 430px;
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 34px;
  align-items: end;
  border-top: 1px solid var(--ink);
  padding-bottom: 110px;
}

.contact-stage h2 {
  max-width: 880px;
  font-size: clamp(19px, 2.8vw, 41px);
}

.contact-lines {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.contact-lines a,
.contact-lines span {
  border-bottom: 1px solid var(--line-strong);
  padding: 16px 0;
  color: var(--muted);
}

.contact-lines a {
  color: var(--ink);
  font-weight: 800;
}

.art-direction .page-hero,
body:not(.art-direction) .page-hero {
  border-bottom: 1px solid var(--line-strong);
}

.case-detail-hero {
  position: relative;
}

.case-detail-hero::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: var(--ink);
}

.detail-block {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42)),
    var(--panel);
  box-shadow: none;
}

.detail-block h2 {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 980px) {
  .intro-grid,
  .capability-layout,
  .contact-stage {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .profile-board {
    min-height: auto;
  }

  .profile-board {
    min-height: 520px;
  }

  .capability-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-case {
    grid-template-columns: 64px 1fr;
  }

  .feature-case .case-art {
    grid-column: 1 / -1;
    min-height: 190px;
  }

  .project-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .intro-label,
  .method-row,
  .feature-case {
    grid-template-columns: 1fr;
  }

  .intro-copy h1 {
    font-size: clamp(21px, 6.5vw, 34px);
  }

  .profile-board {
    box-shadow: none;
  }

  .board-metrics,
  .capability-strip,
  .project-mosaic {
    grid-template-columns: 1fr;
  }

  .radar-panel {
    min-height: 400px;
  }

  .radar span {
    position: static;
    display: inline-flex;
    width: auto;
    margin: 6px;
    border: 1px solid var(--line);
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.76);
  }

  .radar {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    gap: 4px;
    padding: 18px;
  }

  .project-tile.large,
  .project-tile.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

.apple-air {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --soft: #9a9aa0;
  --line: #e6e6ea;
  --line-strong: #d2d2d7;
  --paper: #fbfbfd;
  --panel: #ffffff;
  --panel-alt: #f5f5f7;
  --carbon: #1d1d1f;
  --teal: #0071e3;
  --amber: #bf5af2;
  --red: #ff3b30;
  --steel: #86868b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 113, 227, 0.12), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(191, 90, 242, 0.14), transparent 34%),
    radial-gradient(circle at 50% 82%, rgba(90, 200, 250, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 44%, #f5f5f7 100%);
}

.page-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.apple-air main {
  position: relative;
  overflow: hidden;
}

.apple-air main::before,
.apple-air main::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 46vw;
  max-width: 620px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.48;
  pointer-events: none;
}

.apple-air main::before {
  left: -16vw;
  top: 12vh;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.24), transparent 64%);
}

.apple-air main::after {
  right: -18vw;
  top: 34vh;
  background: radial-gradient(circle, rgba(191, 90, 242, 0.2), transparent 64%);
}

.apple-air .progress span {
  background: linear-gradient(90deg, #0071e3, #7d7aff, #bf5af2);
}

.apple-air .site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(251, 251, 253, 0.72);
  backdrop-filter: blur(22px) saturate(180%);
}

.apple-air .nav {
  max-width: 1120px;
  min-height: 58px;
}

.apple-air .brand {
  font-weight: 700;
}

.apple-air .nav-links a {
  border-radius: 999px;
  color: rgba(29, 29, 31, 0.72);
}

.apple-air .nav-links a:hover,
.apple-air .nav-links a[aria-current="page"] {
  background: rgba(0, 113, 227, 0.08);
  color: var(--ink);
}

.apple-air .section {
  max-width: 1180px;
}

.apple-air .kicker {
  color: #0071e3;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.apple-air .kicker::before {
  display: none;
}

.apple-air h1,
.apple-air h2,
.apple-air h3 {
  letter-spacing: 0;
}

.apple-air .lead {
  color: var(--muted);
  font-size: clamp(20px, 1vw, 20px);
  line-height: 1.42;
}

.apple-air .intro-hero {
  padding-top: 74px;
  padding-bottom: 112px;
}

.apple-air .intro-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 740px;
  margin: 0 auto 26px;
  border: 0;
  gap: 10px;
  padding: 0;
  text-transform: none;
}

.apple-air .intro-label span {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.apple-air .intro-grid {
  grid-template-columns: 1fr;
  gap: 52px;
}

.apple-air .intro-copy {
  min-height: auto;
  align-items: center;
  border-bottom: 0;
  text-align: center;
}

.apple-air .intro-copy h1 {
  max-width: 1040px;
  margin: 12px auto 22px;
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.05;
  font-weight: 800;
  background: linear-gradient(95deg, #1d1d1f 0%, #424245 48%, #0071e3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.apple-air .intro-copy .lead {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.apple-air .intro-actions {
  justify-content: center;
}

.apple-air .button,
.apple-air .icon-button {
  border-color: transparent;
  border-radius: 999px;
  background: #0071e3;
  box-shadow: 0 14px 34px rgba(0, 113, 227, 0.18);
}

.apple-air .button.secondary {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: #0071e3;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.apple-air .profile-board {
  grid-template-rows: auto auto auto 1fr;
  width: min(960px, 100%);
  min-height: 520px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(245, 245, 247, 0.52)),
    var(--panel);
  color: var(--ink);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(24px) saturate(180%);
}

.apple-air .board-top,
.apple-air .board-name,
.apple-air .board-metrics {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.apple-air .board-top {
  color: var(--muted);
  text-transform: none;
}

.apple-air .board-name {
  text-align: center;
  padding: 42px 24px;
}

.apple-air .board-name strong {
  font-size: clamp(15px, 2vw, 24px);
  font-weight: 800;
}

.apple-air .board-name span {
  color: var(--muted);
  font-size: 18px;
}

.apple-air .board-metrics {
  background: rgba(0, 0, 0, 0.04);
}

.apple-air .board-metrics div {
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.apple-air .board-metrics strong {
  color: var(--ink);
}

.apple-air .board-metrics span {
  color: var(--muted);
}

.apple-air .scope-map {
  min-height: 190px;
  background:
    linear-gradient(180deg, rgba(0, 113, 227, 0.06), transparent),
    #fbfbfd;
}

.apple-air .scope-map::before,
.apple-air .scope-map::after {
  border-color: rgba(0, 113, 227, 0.12);
}

.apple-air .scope-map span {
  border-color: rgba(0, 113, 227, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0071e3;
  box-shadow: 0 10px 30px rgba(0, 113, 227, 0.08);
}

.apple-air .capability-lab,
.apple-air .case-showcase,
.apple-air .contact-stage {
  border-top: 0;
}

.apple-air .section-head {
  display: block;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.apple-air .section-head h2 {
  margin-top: 10px;
  font-size: clamp(16px, 2vw, 27px);
  font-weight: 800;
}

.apple-air .section-head p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 10.5px;
}

.apple-air .capability-layout {
  grid-template-columns: minmax(320px, 0.86fr) minmax(380px, 1.14fr);
  gap: 22px;
}

.apple-air .radar-panel,
.apple-air .method-panel,
.apple-air .detail-meta,
.apple-air .detail-block,
.apple-air .toc,
.apple-air .stat-card,
.apple-air .node {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(22px) saturate(170%);
}

.apple-air .radar-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.82));
}

.apple-air .radar {
  border: 0;
  background:
    linear-gradient(45deg, transparent 49.7%, rgba(0, 113, 227, 0.14) 50%, transparent 50.3%),
    linear-gradient(-45deg, transparent 49.7%, rgba(0, 113, 227, 0.14) 50%, transparent 50.3%),
    repeating-linear-gradient(0deg, rgba(0, 113, 227, 0.08) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(90deg, rgba(0, 113, 227, 0.08) 0 1px, transparent 1px 68px);
}

.apple-air .radar::before {
  background: linear-gradient(145deg, rgba(0, 113, 227, 0.26), rgba(191, 90, 242, 0.16));
  border-color: rgba(0, 113, 227, 0.24);
}

.apple-air .method-panel {
  overflow: hidden;
}

.apple-air .method-row {
  min-height: 120px;
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.apple-air .method-row span {
  color: #0071e3;
}

.apple-air .method-row strong {
  font-weight: 800;
}

.apple-air .capability-strip {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: #f5f5f7;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.05);
}

.apple-air .capability-strip div {
  border-right-color: rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.68);
}

.apple-air .capability-strip span {
  color: var(--muted);
}

.apple-air .feature-case-list {
  gap: 28px;
  margin-top: 24px;
  margin-bottom: 52px;
}

.apple-air .feature-case {
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1.14fr);
  min-height: 470px;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(22px) saturate(170%);
}

.apple-air .feature-case:hover {
  transform: translateY(-6px);
}

.apple-air .feature-case .case-number {
  position: absolute;
  left: 26px;
  top: 24px;
  z-index: 1;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.82);
  color: #0071e3;
  font-size: 15px;
  backdrop-filter: blur(12px);
}

.apple-air .feature-case .case-art {
  min-height: 100%;
  border: 0;
}

.apple-air .case-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apple-air .feature-case > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 70px);
}

.apple-air .feature-case h3 {
  font-size: clamp(14px, 1.7vw, 22px);
  font-weight: 800;
}

.apple-air .feature-case p {
  color: var(--muted);
  font-size: 10.5px;
}

.apple-air .case-art.monitor,
.apple-air .case-art.flow,
.apple-air .case-art.system {
  background:
    linear-gradient(145deg, rgba(245, 245, 247, 0.16), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(0, 113, 227, 0.16), rgba(191, 90, 242, 0.12)),
    #f5f5f7;
}

.apple-air .case-art::before,
.apple-air .artifact-visual::before {
  inset: 34px;
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.apple-air .case-art::after {
  color: rgba(0, 113, 227, 0.42);
}

.apple-air .project-toolbar {
  justify-content: center;
}

.apple-air .filter {
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.apple-air .filter.is-active {
  border-color: transparent;
  background: #1d1d1f;
  color: #fff;
}

.apple-air .project-mosaic {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.apple-air .project-tile {
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(245, 245, 247, 0.58)),
    var(--panel-alt);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px) saturate(170%);
}

.apple-air .project-tile.has-image {
  display: grid;
  grid-template-rows: 190px 1fr;
  padding: 0;
}

.apple-air .project-tile.has-image .tile-image {
  overflow: hidden;
  background: #f5f5f7;
}

.apple-air .project-tile.has-image .tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.apple-air .project-tile.has-image .tile-content {
  padding: 18px;
}

.apple-air .case-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.apple-air .case-image-grid img,
.apple-air .case-image-wide img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.apple-air .case-image-wide {
  margin-top: 24px;
}

.apple-air .case-page-sequence {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.apple-air .case-page {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.06);
}

.apple-air .case-page figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
}

.apple-air .case-page img {
  width: 100%;
  display: block;
}

.apple-air .material-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.apple-air .material-list li {
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.62);
}

.apple-air .project-tile::after {
  display: none;
}

.apple-air .project-tile.archive {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(245, 245, 247, 0.74)),
    #fff;
}

.apple-air .project-tile span {
  color: #0071e3;
  text-transform: none;
}

.apple-air .project-tile strong,
.apple-air .project-tile.large strong {
  font-size: clamp(11px, 1.35vw, 17px);
  font-weight: 800;
}

.apple-air .contact-stage {
  grid-template-columns: 1fr;
  text-align: center;
}

.apple-air .contact-stage h2 {
  max-width: 980px;
  margin: 10px auto 0;
  font-size: clamp(16px, 2vw, 27px);
  font-weight: 800;
}

.apple-air .contact-lines {
  width: min(720px, 100%);
  margin: 18px auto 0;
  border-top-color: rgba(0, 0, 0, 0.08);
}

.apple-air .contact-lines a,
.apple-air .contact-lines span {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.apple-air .page-hero {
  text-align: center;
}

.apple-air .page-hero h1 {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(18px, 2.3vw, 30px);
  font-weight: 800;
}

.apple-air .case-detail-hero {
  grid-template-columns: 1fr;
  text-align: center;
}

.apple-air .case-detail-hero::before {
  display: none;
}

.apple-air .detail-meta {
  width: min(760px, 100%);
  margin: 24px auto 0;
  text-align: left;
}

.apple-air .detail-layout {
  grid-template-columns: minmax(0, 1fr) 260px;
}

.apple-air .detail-stack {
  gap: 24px;
}

.apple-air .detail-block {
  padding: clamp(28px, 5vw, 58px);
}

.apple-air .detail-block h2 {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  font-size: clamp(14px, 1.7vw, 23px);
  font-weight: 800;
}

.apple-air .detail-block p,
.apple-air .detail-block li {
  font-size: 18px;
}

.apple-air .site-footer {
  border-top-color: rgba(0, 0, 0, 0.06);
}

@media (max-width: 980px) {
  .apple-air .capability-layout,
  .apple-air .detail-layout {
    grid-template-columns: 1fr;
  }

  .apple-air .feature-case {
    grid-template-columns: 1fr;
  }

  .apple-air .feature-case .case-art {
    min-height: 300px;
  }

  .apple-air .project-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .apple-air .case-image-grid,
  .apple-air .material-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .apple-air .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .apple-air .intro-copy {
    text-align: left;
    align-items: flex-start;
  }

  .apple-air .intro-label,
  .apple-air .intro-actions {
    justify-content: flex-start;
  }

  .apple-air .intro-copy h1 {
    font-size: clamp(17px, 4.5vw, 26px);
  }

  .apple-air .profile-board {
    min-height: auto;
  }

  .apple-air .board-metrics,
  .apple-air .capability-strip,
  .apple-air .project-mosaic {
    grid-template-columns: 1fr;
  }

  .apple-air .method-row {
    grid-template-columns: 1fr;
  }

  .apple-air .feature-case .case-art {
    min-height: 220px;
  }
}

.taste-air {
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.95), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(83, 157, 255, 0.22), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(198, 139, 255, 0.2), transparent 34%),
    radial-gradient(circle at 52% 92%, rgba(92, 229, 218, 0.11), transparent 42%),
    #f8f9ff;
}

.taste-air .site-header {
  top: 14px;
  width: min(var(--home-safe-width, 1200px), calc(100% - var(--home-safe-gutter, clamp(32px, 5vw, 72px))));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 70px rgba(71, 88, 128, 0.12);
}

.taste-air .nav {
  min-height: 54px;
  padding: 0 18px;
}

.taste-air .intro-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
}

.taste-air .intro-grid {
  grid-template-columns: 1fr;
}

.taste-air .intro-copy {
  max-width: 1120px;
  margin: 0 auto;
}

.taste-air .intro-copy h1 {
  max-width: 1120px;
  font-size: clamp(19px, 2.5vw, 34px);
  line-height: 1.03;
  text-wrap: balance;
}

.taste-air .profile-board {
  position: relative;
  width: min(980px, 100%);
  margin-top: 66px;
  border-color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    radial-gradient(circle at 18% 18%, rgba(0, 113, 227, 0.11), transparent 38%),
    radial-gradient(circle at 82% 22%, rgba(191, 90, 242, 0.1), transparent 36%);
  backdrop-filter: blur(34px) saturate(190%);
}

.taste-air .profile-board::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.9), transparent 34%, rgba(255, 255, 255, 0.55));
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
}

.taste-air .section {

}

.taste-air .section-head {
  max-width: 940px;
  margin-bottom: 56px;
}

.taste-air .section-head h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 2.2vw, 30px);
  line-height: 1.05;
  text-wrap: balance;
}

.taste-air .taste-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  grid-auto-flow: dense;
  gap: 16px;
}

.taste-air .taste-bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 82% 18%, rgba(0, 113, 227, 0.16), transparent 34%);
  box-shadow: 0 26px 80px rgba(65, 78, 114, 0.1);
  backdrop-filter: blur(24px) saturate(180%);
  transition: transform 700ms ease, box-shadow 700ms ease;
}

.taste-air .taste-bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 110px rgba(65, 78, 114, 0.16);
}

.taste-air .taste-bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.taste-air .taste-bento-card.wide {
  grid-column: span 2;
}

.taste-air .taste-bento-card span,
.taste-air .project-tile span {
  display: block;
  margin-bottom: 18px;
  color: #0071e3;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
}

.taste-air .taste-bento-card strong {
  display: block;
  max-width: 620px;
  font-size: clamp(12px, 1.6vw, 22px);
  line-height: 1.04;
  text-wrap: balance;
}

.taste-air .taste-bento-card p {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
}

.taste-air .taste-bento-card.visual {
  padding: 0;
}

.taste-air .taste-bento-card.visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 900ms ease;
}

.taste-air .taste-bento-card.visual:hover img {
  transform: scale(1.06);
}

.taste-air .taste-bento-card.accent {
  background:
    linear-gradient(145deg, rgba(29, 29, 31, 0.94), rgba(41, 55, 84, 0.88)),
    radial-gradient(circle at 82% 18%, rgba(0, 113, 227, 0.3), transparent 40%);
  color: #fff;
}

.taste-air .taste-bento-card.accent span,
.taste-air .taste-bento-card.accent p {
  color: rgba(255, 255, 255, 0.72);
}

.taste-air .capability-system {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.taste-air .capability-axis,
.taste-air .capability-proof,
.taste-air .capability-evidence {
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42));
  box-shadow: 0 26px 80px rgba(65, 78, 114, 0.1);
  backdrop-filter: blur(24px) saturate(180%);
}

.taste-air .capability-axis {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
}

.taste-air .capability-tab {
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.taste-air .capability-tab:hover,
.taste-air .capability-tab.is-active {
  background: #1d1d1f;
  color: #fff;
  transform: translateX(4px);
}

.taste-air .capability-proof {
  min-height: 540px;
  overflow: hidden;
}

.taste-air .capability-proof-panel {
  display: none;
  min-height: 540px;
  padding: clamp(28px, 5vw, 58px);
}

.taste-air .capability-proof-panel.is-active {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.taste-air .proof-copy span {
  display: block;
  margin-bottom: 16px;
  color: #0071e3;
  font-size: 14px;
  font-weight: 700;
}

.taste-air .proof-copy h3 {
  max-width: 680px;
  font-size: clamp(16px, 2vw, 28px);
  line-height: 1.06;
  text-wrap: balance;
}

.taste-air .proof-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
}

.taste-air .proof-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.taste-air .proof-list li {
  display: grid;
  gap: 7px;
  list-style: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.taste-air .proof-list strong {
  font-size: 18px;
}

.taste-air .proof-list span {
  color: var(--muted);
}

.taste-air .capability-evidence {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.taste-air .capability-evidence div {
  min-height: 132px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.taste-air .capability-evidence div:last-child {
  border-right: 0;
}

.taste-air .capability-evidence strong {
  font-size: clamp(17px, 2vw, 28px);
  line-height: 1;
}

.taste-air .capability-evidence span {
  color: var(--muted);
}

.taste-air .feature-case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.taste-air .feature-case {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 255, 0.76));
  box-shadow: 0 28px 86px rgba(65, 78, 114, 0.1);
  backdrop-filter: blur(24px) saturate(180%);
}

.taste-air .feature-case .case-art {
  overflow: hidden;
  align-self: end;
  width: min(680px, 100%);
  height: 270px;
  margin: 0 auto -18px;
  border-radius: 8px;
  background: #f5f5f7;
  box-shadow: 0 24px 70px rgba(65, 78, 114, 0.13);
}

.taste-air .case-summary {
  max-width: 560px;
}

.taste-air .feature-case .case-art img,
.taste-air .project-tile.has-image .tile-image img {
  transition: transform 900ms ease, filter 900ms ease, opacity 900ms ease;
  will-change: transform;
}

.taste-air .feature-case:hover .case-art img,
.taste-air .project-tile.has-image:hover .tile-image img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.taste-air .feature-case h3 {
  margin-bottom: 10px;
  font-size: clamp(13px, 1.5vw, 21px);
  line-height: 1.08;
  text-wrap: balance;
}

.taste-air .feature-case p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.taste-air .case-index {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(29, 29, 31, 0.22);
  font-size: 15px;
  font-weight: 800;
}

.taste-air .feature-case .case-link {
  margin-top: 18px;
  white-space: nowrap;
}

.taste-air .feature-case:hover {
  transform: translateY(-6px);
}

.taste-air .project-mosaic {
  grid-auto-flow: dense;
  grid-auto-rows: 260px;
  gap: 16px;
}

.taste-air .project-tile.has-image {
  grid-template-rows: 1fr auto;
}

.taste-air .project-tile.has-image .tile-content {
  min-height: 170px;
}

.taste-air .contact-stage {
}

.taste-air .contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.taste-air .contact-lines a,
.taste-air .contact-lines span {
  border: 0;
  padding: 0;
  color: rgba(29, 29, 31, 0.66);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 760;
}

.taste-air .reveal-ready {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
}

.taste-air .text-reveal span {
  opacity: 0.28;
  transition: opacity 300ms ease;
}

.taste-air .case-showcase {
  max-width: none;
  margin: 0;
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  background: #f5f5f7;
}

.taste-air .case-showcase .section-head {
  margin-bottom: 42px;
}

.taste-air .case-showcase .section-head h2 {
  max-width: 820px;
}

.taste-air .case-showcase .section-head p {
  max-width: 680px;
}

.taste-air .feature-case-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.taste-air .feature-case {
  min-height: 560px;
  gap: 26px;
  border: 0;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 46px) 0;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.taste-air .case-summary {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.taste-air .feature-case h3 {
  max-width: 520px;
  margin: 8px auto 10px;
  font-size: clamp(14px, 1.5vw, 21px);
  line-height: 1.06;
}

.taste-air .feature-case p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.48;
}

.taste-air .feature-case .case-link {
  display: inline-flex;
  margin-top: 16px;
  color: #0071e3;
}

.taste-air .case-index {
  display: none;
}

.taste-air .feature-case .case-art {
  width: min(920px, 100%);
  height: 300px;
  margin: 24px auto 0;
  border-radius: 8px 8px 0 0;
  background: #f5f5f7;
  box-shadow: none;
}

.taste-air .feature-case .case-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

.taste-air .feature-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.06);
}

.taste-air .feature-case:hover .case-art img {
  transform: scale(1.025);
  filter: none;
}

@media (max-width: 980px) {
  .taste-air .taste-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .taste-air .taste-bento-card.large,
  .taste-air .taste-bento-card.wide {
    grid-column: span 2;
  }

  .taste-air .capability-system,
  .taste-air .capability-proof-panel.is-active {
    grid-template-columns: 1fr;
  }

  .taste-air .capability-axis {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
  }

  .taste-air .feature-case-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .taste-air .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    border-radius: 0;
  }

  .taste-air .intro-copy h1 {
    font-size: clamp(17px, 4.5vw, 25px);
  }

  .taste-air .taste-bento,
  .taste-air .taste-bento-card.large,
  .taste-air .taste-bento-card.wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .taste-air .project-mosaic {
    grid-auto-rows: auto;
  }

  .taste-air .feature-case-list,
  .taste-air .feature-case {
    grid-template-columns: 1fr;
  }

  .taste-air .feature-case {
    min-height: auto;
  }

  .taste-air .feature-case .case-art {
    height: 220px;
    margin: 0;
  }

  .taste-air .capability-axis,
  .taste-air .capability-evidence {
    grid-template-columns: 1fr;
  }

  .taste-air .capability-proof-panel,
  .taste-air .capability-proof-panel.is-active {
    min-height: auto;
  }

  .taste-air .capability-evidence div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
}

/* Liquid glass selected controls */
.taste-air {
  --glass-ink: #f8fbff;
  --glass-blue: rgba(0, 113, 227, 0.48);
  --glass-violet: rgba(154, 125, 255, 0.34);
  --glass-cyan: rgba(113, 215, 255, 0.28);
  --glass-rose: rgba(255, 122, 164, 0.2);
  --glass-edge: rgba(255, 255, 255, 0.82);
  --glass-shadow: 0 18px 46px rgba(32, 72, 142, 0.18), 0 6px 18px rgba(255, 255, 255, 0.52) inset;
}

.taste-air .button,
.taste-air .capability-tab.is-active,
.taste-air .nav-links a.is-active,
.taste-air .nav-links a[aria-current="page"],
.taste-air .nav-links a[aria-current="location"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--glass-edge);
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 45%, var(--glass-blue), transparent 27%),
    radial-gradient(circle at 54% 62%, var(--glass-violet), transparent 31%),
    radial-gradient(circle at 34% 40%, var(--glass-cyan), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(236, 244, 255, 0.28) 44%, rgba(255, 255, 255, 0.54));
  color: var(--glass-ink);
  box-shadow: var(--glass-shadow);
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(22px) saturate(190%);
  -webkit-backdrop-filter: blur(22px) saturate(190%);
}

.taste-air .button::before,
.taste-air .button::after,
.taste-air .capability-tab.is-active::before,
.taste-air .capability-tab.is-active::after,
.taste-air .nav-links a.is-active::before,
.taste-air .nav-links a.is-active::after,
.taste-air .nav-links a[aria-current="page"]::before,
.taste-air .nav-links a[aria-current="page"]::after,
.taste-air .nav-links a[aria-current="location"]::before,
.taste-air .nav-links a[aria-current="location"]::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.taste-air .button::before,
.taste-air .capability-tab.is-active::before,
.taste-air .nav-links a.is-active::before,
.taste-air .nav-links a[aria-current="page"]::before,
.taste-air .nav-links a[aria-current="location"]::before {
  inset: 1px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 78% 28%, rgba(255, 238, 208, 0.68), transparent 22%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 -14px 34px rgba(33, 95, 194, 0.18) inset,
    12px 0 28px rgba(255, 122, 164, 0.13) inset;
  opacity: 0.92;
}

.taste-air .button::after,
.taste-air .capability-tab.is-active::after,
.taste-air .nav-links a.is-active::after,
.taste-air .nav-links a[aria-current="page"]::after,
.taste-air .nav-links a[aria-current="location"]::after {
  inset: auto 18% 8px;
  height: 18%;
  background: rgba(255, 255, 255, 0.64);
  filter: blur(10px);
  opacity: 0.72;
}

.taste-air .button {
  min-height: 54px;
  padding: 0 26px;
  color: #ffffff;
  font-weight: 760;
}

.taste-air .button.secondary {
  color: #245fca;
  background:
    radial-gradient(circle at 75% 46%, rgba(0, 113, 227, 0.18), transparent 30%),
    radial-gradient(circle at 48% 58%, rgba(191, 90, 242, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(247, 250, 255, 0.42));
  box-shadow: 0 16px 42px rgba(54, 72, 112, 0.12), 0 8px 22px rgba(255, 255, 255, 0.74) inset;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.78);
}

.taste-air .button:hover,
.taste-air .capability-tab.is-active:hover,
.taste-air .nav-links a.is-active:hover,
.taste-air .nav-links a[aria-current="page"]:hover,
.taste-air .nav-links a[aria-current="location"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(32, 72, 142, 0.22), 0 8px 22px rgba(255, 255, 255, 0.56) inset;
}

.taste-air .filter {
  min-height: 42px;
  padding: 0 16px;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.taste-air .filter.is-active {
  border-color: rgba(0, 113, 227, 0.18);
  padding: 0 22px;
  background: rgba(0, 113, 227, 0.08);
  color: #0071e3;
  box-shadow: none;
  text-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.taste-air .capability-tab {
  border-radius: 999px;
}

.taste-air .capability-tab.is-active {
  border-color: rgba(0, 113, 227, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(218, 236, 255, 0.66)),
    radial-gradient(circle at 76% 42%, rgba(0, 113, 227, 0.2), transparent 30%);
  color: #0066d9;
  font-weight: 800;
  box-shadow:
    0 12px 34px rgba(0, 113, 227, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
  transform: translateX(4px);
  text-shadow: none;
}

.taste-air .capability-tab.is-active::before,
.taste-air .capability-tab.is-active::after {
  display: none;
}

.taste-air .capability-tab:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.56);
  color: #245fca;
}

.taste-air .nav-links {
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  padding: 5px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.88), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(237, 244, 255, 0.24));
  box-shadow: 0 14px 40px rgba(54, 72, 112, 0.08), 0 1px 0 rgba(255, 255, 255, 0.74) inset;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.taste-air .nav-links a {
  position: relative;
  min-height: 38px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transform-origin: center;
  transition:
    min-height 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.taste-air .nav-links a.is-active,
.taste-air .nav-links a[aria-current="page"],
.taste-air .nav-links a[aria-current="location"] {
  color: #ffffff;
}

.taste-air .nav-links a:hover:not(.is-active):not([aria-current="page"]):not([aria-current="location"]) {
  color: #245fca;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 8px 22px rgba(60, 86, 132, 0.08);
}

.taste-air .language-toggle {
  min-height: 32px;
  margin-left: 2px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.taste-air .intro-actions {
  gap: 14px;
}

.taste-air .intro-actions .button {
  min-width: 180px;
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(0, 113, 227, 0.92), rgba(45, 137, 245, 0.78)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  color: #ffffff;
  box-shadow:
    0 18px 42px rgba(0, 113, 227, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.84) inset,
    0 -12px 28px rgba(15, 80, 170, 0.2) inset;
  text-shadow: none;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.taste-air .intro-actions .button::before,
.taste-air .intro-actions .button::after {
  display: none;
}

.taste-air .intro-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at 76% 34%, rgba(0, 113, 227, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 255, 0.54));
  color: #1673d8;
  box-shadow:
    0 16px 38px rgba(54, 72, 112, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.94) inset,
    0 -10px 24px rgba(0, 113, 227, 0.06) inset;
}

.taste-air .intro-actions .button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 48px rgba(0, 113, 227, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.86) inset,
    0 -12px 28px rgba(15, 80, 170, 0.18) inset;
}

.taste-air .intro-actions .button.secondary:hover {
  box-shadow:
    0 18px 44px rgba(54, 72, 112, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -10px 24px rgba(0, 113, 227, 0.08) inset;
}

@media (max-width: 560px) {
  .taste-air .intro-actions {
    width: 100%;
  }

  .taste-air .intro-actions .button {
    min-width: 0;
    flex: 1 1 0;
    padding: 0 14px;
  }
}

/* Clearer liquid glass pass */
.taste-air {
  --glass-blue: rgba(0, 113, 227, 0.16);
  --glass-violet: rgba(154, 125, 255, 0.12);
  --glass-cyan: rgba(113, 215, 255, 0.14);
  --glass-edge: rgba(255, 255, 255, 0.9);
  --glass-shadow: 0 14px 38px rgba(40, 76, 132, 0.1), 0 1px 0 rgba(255, 255, 255, 0.86) inset, 0 -10px 28px rgba(38, 94, 170, 0.07) inset;
}

.taste-air .button,
.taste-air .capability-tab.is-active,
.taste-air .nav-links a.is-active,
.taste-air .nav-links a[aria-current="page"],
.taste-air .nav-links a[aria-current="location"] {
  border-color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 74% 38%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 24% 66%, var(--glass-cyan), transparent 32%),
    radial-gradient(circle at 68% 62%, var(--glass-blue), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(242, 248, 255, 0.16));
  color: #1269c7;
  box-shadow: var(--glass-shadow);
  text-shadow: none;
  backdrop-filter: blur(26px) saturate(160%);
  -webkit-backdrop-filter: blur(26px) saturate(160%);
}

.taste-air .button::before,
.taste-air .nav-links a.is-active::before,
.taste-air .nav-links a[aria-current="page"]::before,
.taste-air .nav-links a[aria-current="location"]::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.06) 48%, rgba(255, 255, 255, 0.2));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -12px 30px rgba(0, 113, 227, 0.05) inset;
  opacity: 0.62;
}

.taste-air .button::after,
.taste-air .nav-links a.is-active::after,
.taste-air .nav-links a[aria-current="page"]::after,
.taste-air .nav-links a[aria-current="location"]::after {
  inset: auto 22% 8px;
  height: 14%;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(12px);
  opacity: 0.42;
}

.taste-air .nav-links {
  border-color: rgba(255, 255, 255, 0.74);
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.taste-air .nav-links a.is-active,
.taste-air .nav-links a[aria-current="page"],
.taste-air .nav-links a[aria-current="location"] {
  min-height: 44px;
  padding-left: 22px;
  padding-right: 22px;
  color: #1269c7;
  font-weight: 760;
}

.taste-air .nav-links a.is-liquid-pop {
  animation: liquidNavPop 640ms cubic-bezier(0.16, 1.26, 0.34, 1) both;
}

.taste-air .intro-actions .button,
.taste-air .intro-actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 78% 38%, rgba(255, 255, 255, 0.64), transparent 28%),
    radial-gradient(circle at 30% 70%, rgba(120, 205, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.48), rgba(236, 246, 255, 0.18));
  color: #1269c7;
  box-shadow:
    0 16px 42px rgba(40, 76, 132, 0.11),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -10px 26px rgba(0, 113, 227, 0.06) inset;
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
}

.taste-air .intro-actions .button::before,
.taste-air .intro-actions .button::after {
  display: block;
}

.taste-air .intro-actions .button:hover,
.taste-air .intro-actions .button.secondary:hover {
  box-shadow:
    0 20px 50px rgba(40, 76, 132, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 -12px 28px rgba(0, 113, 227, 0.08) inset;
}

.taste-air .capability-tab.is-active {
  border-color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(circle at 72% 38%, rgba(255, 255, 255, 0.68), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.46), rgba(226, 241, 255, 0.2));
  color: #0066d9;
  box-shadow:
    0 12px 34px rgba(0, 113, 227, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

@keyframes liquidNavPop {
  0% {
    transform: scale(0.88);
    filter: saturate(1.08) brightness(1.04);
  }

  42% {
    transform: scale(1.16);
    filter: saturate(1.24) brightness(1.08);
    box-shadow:
      0 18px 48px rgba(40, 76, 132, 0.16),
      0 1px 0 rgba(255, 255, 255, 0.94) inset,
      0 -10px 28px rgba(0, 113, 227, 0.08) inset;
  }

  68% {
    transform: scale(0.97);
  }

  100% {
    transform: scale(1);
    filter: none;
  }
}

/* Liquid Glass spec alignment */
.taste-air {
  --liquid-text: #0969d8;
  --liquid-text-strong: #055fc8;
  --liquid-surface: rgba(255, 255, 255, 0.24);
  --liquid-surface-bright: rgba(255, 255, 255, 0.42);
  --liquid-edge: rgba(255, 255, 255, 0.82);
  --liquid-edge-blue: rgba(80, 165, 255, 0.3);
  --liquid-shadow: 0 14px 34px rgba(40, 74, 126, 0.08), 0 1px 0 rgba(255, 255, 255, 0.78) inset, 0 -12px 28px rgba(0, 93, 190, 0.045) inset;
}

.taste-air .button,
.taste-air .capability-tab.is-active,
.taste-air .nav-links a.is-active,
.taste-air .nav-links a[aria-current="page"],
.taste-air .nav-links a[aria-current="location"] {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--liquid-edge);
  border-bottom-color: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.12) 44%, rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.72), transparent 24%),
    radial-gradient(circle at 24% 78%, rgba(90, 185, 255, 0.14), transparent 34%),
    linear-gradient(145deg, var(--liquid-surface-bright), var(--liquid-surface));
  color: var(--liquid-text);
  box-shadow: var(--liquid-shadow);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(30px) saturate(180%) contrast(1.03);
  -webkit-backdrop-filter: blur(30px) saturate(180%) contrast(1.03);
  transform-origin: center;
  transition:
    min-height 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    color 220ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.taste-air .button::before,
.taste-air .capability-tab.is-active::before,
.taste-air .nav-links a.is-active::before,
.taste-air .nav-links a[aria-current="page"]::before,
.taste-air .nav-links a[aria-current="location"]::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0.18)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(0, 113, 227, 0.05), rgba(255, 255, 255, 0.14));
  opacity: 0.56;
}

.taste-air .button::after,
.taste-air .capability-tab.is-active::after,
.taste-air .nav-links a.is-active::after,
.taste-air .nav-links a[aria-current="page"]::after,
.taste-air .nav-links a[aria-current="location"]::after {
  content: "";
  position: absolute;
  inset: auto 22% 7px;
  height: 15%;
  pointer-events: none;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(12px);
  opacity: 0.34;
}

.taste-air .button {
  min-height: 54px;
  padding: 0 28px;
  font-weight: 780;
}

.taste-air .button.secondary,
.taste-air .intro-actions .button,
.taste-air .intro-actions .button.secondary {
  border-color: var(--liquid-edge);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.1) 46%, rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.7), transparent 24%),
    radial-gradient(circle at 22% 74%, rgba(80, 176, 255, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.44), rgba(240, 248, 255, 0.2));
  color: var(--liquid-text);
  box-shadow: var(--liquid-shadow);
}

.taste-air .button:hover,
.taste-air .intro-actions .button:hover,
.taste-air .intro-actions .button.secondary:hover,
.taste-air .capability-tab.is-active:hover,
.taste-air .nav-links a.is-active:hover,
.taste-air .nav-links a[aria-current="page"]:hover,
.taste-air .nav-links a[aria-current="location"]:hover {
  transform: translateY(-2px) scale(1.018);
  border-color: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 44px rgba(40, 74, 126, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 -14px 32px rgba(0, 93, 190, 0.06) inset;
}

.taste-air .capability-tab.is-active {
  color: var(--liquid-text-strong);
  font-weight: 820;
  transform: translateX(4px);
}

.taste-air .nav-links {
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.taste-air .nav-links a.is-active,
.taste-air .nav-links a[aria-current="page"],
.taste-air .nav-links a[aria-current="location"] {
  min-height: 44px;
  padding-left: 22px;
  padding-right: 22px;
  color: var(--liquid-text-strong);
  font-weight: 780;
}

.taste-air .filter.is-active {
  border-color: rgba(0, 113, 227, 0.18);
  background: rgba(0, 113, 227, 0.08);
  color: #0071e3;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.taste-air .is-liquid-press {
  animation: liquidPress 460ms cubic-bezier(0.16, 1.18, 0.34, 1) both;
}

.taste-air .nav-links a.is-liquid-pop {
  animation: liquidNavPop 640ms cubic-bezier(0.16, 1.26, 0.34, 1) both;
}

@keyframes liquidPress {
  0% {
    transform: scale(1);
    filter: none;
  }

  36% {
    transform: scale(0.94);
    filter: brightness(1.04) saturate(1.08);
  }

  72% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    filter: none;
  }
}

.skill-process-visual {
  position: relative;
  overflow: hidden;
  margin: 28px 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 113, 227, 0.16), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(126, 97, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(241, 247, 255, 0.5));
  box-shadow: 0 24px 70px rgba(65, 78, 114, 0.1);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.skill-process-visual::before {
  content: "";
  position: absolute;
  inset: 50% 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.34), transparent);
}

.skill-process-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.skill-process-head span {
  color: #0071e3;
  font-size: 13px;
  font-weight: 760;
}

.skill-process-head strong {
  max-width: 420px;
  font-size: clamp(12px, 1.5vw, 19px);
  line-height: 1.08;
  text-align: right;
}

.skill-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.skill-step {
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 32px rgba(65, 78, 114, 0.08);
}

.skill-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.1);
  color: #0071e3;
  font-weight: 800;
}

.skill-step strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.skill-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

@media (max-width: 560px) {
  .skill-process-head {
    display: block;
  }

  .skill-process-head strong {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .skill-process-grid {
    grid-template-columns: 1fr;
  }
}

.case-study-modern {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 8%, rgba(0, 113, 227, 0.12), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(154, 125, 255, 0.1), transparent 30%),
    #f5f5f7;
}

.case-hero-redesign {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  min-height: calc(100vh - 58px);
  margin: 0 auto;
  padding: clamp(84px, 10vw, 150px) 0 clamp(70px, 8vw, 120px);
}

.case-hero-copy h1 {
  max-width: 720px;
  margin: 16px 0 22px;
  font-size: clamp(22px, 3vw, 43px);
  line-height: 0.98;
  letter-spacing: 0;
}

.case-hero-copy p {
  max-width: 680px;
  color: rgba(29, 29, 31, 0.68);
  font-size: clamp(19px, 1vw, 19px);
  line-height: 1.48;
}

.demokit-case .case-hero-redesign {
  grid-template-columns: 1fr;
  align-items: stretch;
  min-height: auto;
  padding-bottom: 0;
}

.demokit-case .case-hero-copy {
  width: 100%;
}

.demokit-case .case-hero-copy h1,
.demokit-case .case-hero-copy p {
  max-width: 100%;
}

.demokit-case #case-title {
  font-size: 62px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.hero-facts div {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 16px 36px rgba(65, 78, 114, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  margin-bottom: 6px;
  color: #0071e3;
  font-size: 13px;
}

.hero-facts span {
  color: rgba(29, 29, 31, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.case-hero-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 100px rgba(43, 62, 98, 0.15);
}

.case-hero-media img {
  display: block;
  width: 100%;
  height: clamp(430px, 58vw, 720px);
  object-fit: cover;
  object-position: left top;
}

.case-anchor-strip {
  position: sticky;
  top: 58px;
  z-index: 9;
  display: flex;
  justify-content: center;
  gap: 6px;
  width: min(720px, calc(100% - 32px));
  margin: -36px auto 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 46px rgba(65, 78, 114, 0.1);
  backdrop-filter: blur(24px) saturate(180%);
}

.case-anchor-strip a {
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(29, 29, 31, 0.66);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.case-anchor-strip a:hover {
  background: rgba(0, 113, 227, 0.08);
  color: #0071e3;
}

.case-chapter,
.case-split-section,
.skill-lab-section,
.value-band {
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 160px) 0;
}

.chapter-intro {
  max-width: none;
  margin-bottom: 34px;
}

.chapter-intro span,
.split-copy > span,
.value-band span,
.skill-rule-panel > span,
.map-card span {
  display: block;
  margin-bottom: 14px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
}

.chapter-intro h2,
.split-copy h2,
.value-band h2 {
  margin: 0;
  font-size: clamp(17px, 2.4vw, 32px);
  line-height: 1.04;
  text-wrap: balance;
}

.chapter-intro p,
.split-copy p,
.value-band p {
  color: rgba(29, 29, 31, 0.68);
  font-size: 18px;
}

.cobot-case .chapter-intro h2 + p {
  margin-top: 18px;
}

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

.insight-grid article,
.map-card,
.skill-rule-panel,
.reuse-gallery article,
.value-band {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 22px 70px rgba(65, 78, 114, 0.08);
  backdrop-filter: blur(20px) saturate(170%);
}

.insight-grid article {
  min-height: 240px;
  padding: 28px;
}

.demokit-case .insight-grid article {
  min-height: 132px;
  padding: 22px 24px;
}

.demokit-case #intro {
  padding-top: 20px;
  padding-bottom: 20px;
}

.compact-insight-grid .insight-card h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.28;
  font-weight: 800;
  letter-spacing: 0;
}

.compact-insight-grid .insight-card p {
  margin: 0;
  font-size: 16px;
}

.insight-grid strong,
.map-card strong,
.reuse-gallery strong,
.skill-rule-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(11px, 1.2vw, 16px);
  line-height: 1.1;
}

.insight-grid p,
.map-card p,
.reuse-gallery p,
.skill-rule-panel li {
  color: rgba(29, 29, 31, 0.66);
  font-size: 16px;
  line-height: 1.6;
}

.case-split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 88px rgba(65, 78, 114, 0.12);
}

.split-media img {
  display: block;
  width: 100%;
  height: clamp(340px, 46vw, 560px);
  object-fit: cover;
  object-position: left top;
}

.principle-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.principle-list div {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 14px;
}

.principle-list strong,
.principle-list span {
  display: block;
}

.principle-list strong {
  font-size: 18px;
}

.principle-list span {
  color: rgba(29, 29, 31, 0.62);
}

.component-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.map-card {
  min-height: 230px;
  padding: 26px;
}

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

.skill-lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.skill-lab-grid .skill-process-visual {
  margin: 0;
}

.demokit-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 16px;
  align-items: stretch;
}

.demokit-stack .skill-process-visual {
  margin: 0;
}

.demokit-stack .skill-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demokit-stack .skill-step {
  min-height: 196px;
}

.demokit-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(300px, 0.64fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: stretch;
}

.demokit-story-layout-reverse {
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
}

.demokit-story-layout-reverse .demokit-story-copy {
  order: -1;
}

.demokit-story-layout .demokit-css-shot {
  min-height: clamp(500px, 48vw, 680px);
}

#kit .demokit-story-layout > .demokit-css-shot,
#kit .demokit-story-layout > .demokit-story-copy {
  min-height: clamp(520px, 58vw, 680px);
}

.demokit-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: clamp(22px, 3.2vw, 36px);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 70px rgba(65, 78, 114, 0.07);
}

.demokit-story-copy > span {
  display: block;
  margin-bottom: 20px;
  color: #0071e3;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: none;
}

.demokit-story-copy h2,
.demokit-story-copy h3 {
  margin: 0 0 18px;
  color: #14171a;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: 0;
}

.demokit-story-copy p {
  margin: 0;
  color: rgba(29, 29, 31, 0.68);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.62;
}

.story-proof-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.story-proof-list p {
  border-top: 1px solid rgba(20, 23, 26, 0.08);
  padding-top: 14px;
}

.story-proof-list strong {
  display: block;
  margin-bottom: 6px;
  color: #14171a;
  font-size: 15px;
}

.demokit-css-transcript {
  padding-top: clamp(80px, 10vw, 132px);
}

.demokit-slide-grid {
  display: grid;
  gap: 18px;
}

.demokit-css-shot {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(65, 78, 114, 0.08);
}

.demokit-slide-01,
.demokit-slide-02,
.demokit-slide-03,
.demokit-slide-04,
.demokit-slide-05,
.demokit-slide-06,
.demokit-slide-07,
.demokit-slide-08,
.demokit-slide-09,
.demokit-slide-10 {
  isolation: isolate;
}

.css-shot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: clamp(28px, 5vw, 56px);
  color: rgba(20, 23, 26, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.css-shot-top b {
  color: #0071e3;
  font-weight: 900;
}

.demokit-css-shot h3 {
  max-width: 920px;
  margin: 0 0 clamp(22px, 4vw, 40px);
  font-size: clamp(26px, 3.8vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.demokit-css-shot h3 span {
  color: #0071e3;
}

.css-shot-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.css-shot-hero strong,
.css-shot-hero em {
  display: block;
}

.css-shot-hero strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 10vw, 136px);
  line-height: 0.85;
  overflow-wrap: anywhere;
}

.css-shot-hero strong span,
.css-shot-hero em,
.definition-line strong {
  color: #0071e3;
}

.css-shot-hero em {
  margin-top: 18px;
  font-size: clamp(52px, 8vw, 116px);
  font-style: normal;
  font-weight: 850;
  line-height: 0.95;
}

.css-shot-hero p,
.definition-line {
  max-width: 760px;
  color: rgba(29, 29, 31, 0.7);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
}

.mini-card-stack {
  position: relative;
  min-height: 360px;
}

.mini-card-stack i {
  position: absolute;
  display: flex;
  align-items: flex-end;
  width: 72%;
  height: 76%;
  border-radius: 8px;
  padding: 20px;
  font-style: normal;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.08;
  box-shadow: 0 24px 58px rgba(20, 23, 26, 0.18);
}

.mini-card-stack i:nth-child(1) {
  left: 2%;
  top: 2%;
  z-index: 1;
  background: #171b22;
  color: #fff;
  transform: rotate(-4deg);
}

.mini-card-stack i:nth-child(2) {
  left: 18%;
  top: 13%;
  z-index: 2;
  background: #0071e3;
  color: #fff;
  transform: rotate(2deg);
}

.mini-card-stack i:nth-child(3) {
  left: 34%;
  top: 24%;
  z-index: 3;
  background: #f8f7f1;
  color: #171b22;
  transform: rotate(2.5deg);
}

.module-triplet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.module-triplet div {
  min-height: 220px;
  border: 1px solid rgba(20, 23, 26, 0.1);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
}

.module-triplet b {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 40px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: #0071e3;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
}

.module-triplet strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.14;
}

.module-triplet p {
  margin: 0;
  color: rgba(29, 29, 31, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.css-code-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: 20px;
  align-items: stretch;
}

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

.css-rule-list div {
  border-left: 3px solid rgba(0, 113, 227, 0.62);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 34px rgba(65, 78, 114, 0.08);
}

.css-rule-list b,
.css-rule-list strong,
.css-rule-list code {
  display: block;
}

.css-rule-list b {
  margin-bottom: 8px;
  color: #0071e3;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.css-rule-list strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.css-rule-list code {
  color: rgba(29, 29, 31, 0.66);
  font-size: 12px;
  white-space: normal;
}

.css-code-layout pre {
  overflow: auto;
  margin: 0;
  border-radius: 8px;
  padding: clamp(18px, 3vw, 30px);
  background: #141820;
  color: #eef4ff;
  box-shadow: 0 24px 68px rgba(20, 23, 26, 0.26);
  font-size: clamp(11px, 1.25vw, 14px);
  line-height: 1.7;
  white-space: pre-wrap;
}

.demokit-slide-03.demokit-css-shot {
  display: flex;
  height: 700px;
  min-height: 700px;
  max-height: 700px;
  flex-direction: column;
  padding: clamp(16px, 2.4vw, 26px);
}

.demokit-slide-03.demokit-css-shot h3 {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.25;
}

.demokit-slide-03 .css-shot-top {
  margin-bottom: 14px;
}

.demokit-slide-03 .css-code-layout {
  flex: 1;
  gap: 10px;
  min-height: 0;
  background: transparent;
  background-size: auto;
}

.demokit-slide-03 .css-rule-list {
  gap: 8px;
  min-height: 0;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.demokit-slide-03 .css-rule-list div {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: 11px 14px;
}

.demokit-slide-03 .css-rule-list strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.demokit-slide-03 .css-rule-list b {
  margin-bottom: 5px;
}

.demokit-slide-03 .css-rule-list code {
  font-size: 11px;
}

.demokit-slide-03 .css-code-layout pre {
  min-height: 0;
  max-height: min(680px, 100%);
  padding: 16px;
  font-size: 12px;
  line-height: 1.55;
}

.build-progress {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: clamp(24px, 5vw, 54px) 0 28px;
  border: 1px solid rgba(20, 23, 26, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
}

.build-progress div {
  position: relative;
  min-height: 148px;
  padding: 20px 14px;
  text-align: center;
}

.demokit-stepper {
  overflow: hidden;
}

.demokit-stepper [data-demokit-step-button] {
  position: relative;
  min-height: 148px;
  border: 0;
  border-left: 1px solid rgba(20, 23, 26, 0.08);
  padding: 20px 14px;
  background: transparent;
  color: inherit;
  text-align: center;
  cursor: pointer;
}

.demokit-stepper [data-demokit-step-button]:first-child {
  border-left: 0;
}

.demokit-stepper [data-demokit-step-button]:hover,
.demokit-stepper [data-demokit-step-button]:focus-visible {
  background: rgba(0, 113, 227, 0.08);
}

.demokit-stepper [data-demokit-step-button]:focus-visible {
  outline: 2px solid rgba(0, 113, 227, 0.72);
  outline-offset: -2px;
}

.build-progress div + div::before {
  content: "";
  position: absolute;
  top: 52px;
  left: -32%;
  width: 64%;
  border-top: 1px dashed rgba(20, 23, 26, 0.22);
}

.build-progress b,
.build-progress strong,
.build-progress small,
.demokit-stepper [data-demokit-step-button] b,
.demokit-stepper [data-demokit-step-button] strong,
.demokit-stepper [data-demokit-step-button] small {
  display: block;
}

.build-progress b,
.demokit-stepper [data-demokit-step-button] b {
  margin-bottom: 14px;
  color: rgba(20, 23, 26, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  font-style: italic;
  line-height: 0.9;
}

.build-progress strong,
.demokit-stepper [data-demokit-step-button] strong {
  font-size: clamp(13px, 1.4vw, 18px);
  line-height: 1.2;
}

.build-progress small,
.demokit-stepper [data-demokit-step-button] small {
  margin-top: 8px;
  color: rgba(29, 29, 31, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.build-progress .is-active b,
.build-progress .is-active strong,
.demokit-stepper [data-demokit-step-button].is-active b,
.demokit-stepper [data-demokit-step-button].is-active strong {
  color: #0071e3;
}

.build-progress .is-active::after,
.demokit-stepper [data-demokit-step-button].is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 0;
  border-right: 9px solid transparent;
  border-bottom: 10px solid rgba(0, 113, 227, 0.2);
  border-left: 9px solid transparent;
  transform: translateX(-50%);
}

.build-step-panels {
  display: grid;
}

.step-panel {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.step-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.step-panel p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(29, 29, 31, 0.66);
  font-size: 16px;
  line-height: 1.65;
}

.build-caption {
  border: 1px solid rgba(20, 23, 26, 0.1);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.5);
}

.build-caption small,
.build-caption strong {
  display: block;
}

.build-caption small {
  margin-bottom: 16px;
  color: rgba(20, 23, 26, 0.52);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.build-caption strong {
  color: #14171a;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.16;
}

.build-caption strong::first-letter,
.build-caption strong span,
.demokit-slide-10 h3 span {
  color: #0071e3;
}

.css-path-compare {
  display: grid;
  border: 1px solid rgba(20, 23, 26, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
}

.css-path-compare div {
  display: grid;
  grid-template-columns: 0.62fr 1fr 1fr;
  border-top: 1px solid rgba(20, 23, 26, 0.08);
}

.css-path-compare div:first-child {
  border-top: 0;
}

.css-path-compare span,
.css-path-compare strong,
.css-path-compare p {
  margin: 0;
  padding: 16px 18px;
}

.css-path-compare span {
  color: rgba(20, 23, 26, 0.6);
  font-weight: 780;
}

.css-path-compare strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.1;
}

.css-path-compare p {
  border-left: 2px solid rgba(0, 113, 227, 0.45);
  color: rgba(29, 29, 31, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.demokit-hero-media {
  min-height: clamp(460px, 56vw, 700px);
}

.demokit-css-hero {
  position: relative;
  display: grid;
  min-height: clamp(460px, 56vw, 700px);
  padding: clamp(24px, 4vw, 44px);
  overflow: hidden;
  background:
    linear-gradient(rgba(20, 23, 26, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 23, 26, 0.035) 1px, transparent 1px),
    #f4f6f1;
  background-size: 32px 32px;
}

.demokit-lab-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(20, 23, 26, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.demokit-lab-nav span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: #0071e3;
}

.demokit-lab-nav i {
  font-style: normal;
  color: #0071e3;
}

.demokit-hero-word {
  align-self: center;
  max-width: min(62%, 560px);
  transform: translateY(12px);
}

.demokit-hero-word strong,
.demokit-hero-word b,
.demokit-hero-word em {
  display: block;
}

.demokit-hero-word strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 9vw, 122px);
  line-height: 0.83;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.demokit-hero-word strong span,
.demokit-hero-word em {
  color: #0071e3;
}

.demokit-hero-word b {
  margin-top: 16px;
  font-size: clamp(42px, 8vw, 118px);
  line-height: 0.96;
  letter-spacing: 0;
}

.demokit-hero-word em {
  margin-top: clamp(18px, 3vw, 34px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 58px);
  font-style: italic;
  font-weight: 700;
}

.demokit-card-stack {
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  top: 27%;
  width: clamp(210px, 25vw, 360px);
  height: clamp(270px, 34vw, 430px);
}

.demokit-stack-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 78%;
  height: 78%;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(20, 23, 26, 0.18);
}

.demokit-stack-card small {
  color: inherit;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.72;
}

.demokit-stack-card strong {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1.05;
}

.demokit-stack-card span {
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.74;
}

.stack-dark {
  left: 0;
  top: 0;
  z-index: 1;
  background: #171b22;
  color: #fff;
  transform: rotate(-3deg);
}

.stack-blue {
  left: 15%;
  top: 10%;
  z-index: 2;
  background: #0071e3;
  color: #fff;
  transform: rotate(1.5deg);
}

.stack-light {
  left: 30%;
  top: 20%;
  z-index: 3;
  background: #f7f6f0;
  color: #171b22;
  transform: rotate(2deg);
}

.demokit-css-hero > p {
  align-self: end;
  max-width: 560px;
  margin: 0;
  color: rgba(29, 29, 31, 0.76);
  font-size: 16px;
  font-weight: 720;
}

.demokit-css-code-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  min-height: clamp(430px, 52vw, 660px);
  background:
    linear-gradient(rgba(20, 23, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 23, 26, 0.03) 1px, transparent 1px),
    #f4f6f1;
  background-size: 28px 28px;
}

.demokit-slide-03 .demokit-css-code-demo {
  min-height: 0;
  background: transparent;
  background-size: auto;
}

.code-demo-flow {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(18px, 4vw, 34px);
}

.code-demo-flow article {
  border-left: 3px solid rgba(0, 113, 227, 0.66);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 38px rgba(65, 78, 114, 0.08);
}

.code-demo-flow span {
  display: inline-block;
  margin-bottom: 8px;
  color: #0071e3;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 800;
}

.code-demo-flow strong,
.code-demo-flow code,
.code-demo-flow p {
  display: block;
}

.code-demo-flow strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.code-demo-flow code {
  margin-bottom: 10px;
  color: rgba(20, 23, 26, 0.72);
  font-size: 12px;
  white-space: normal;
}

.code-demo-flow p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.code-demo-window {
  align-self: center;
  overflow: hidden;
  margin: clamp(18px, 4vw, 34px);
  border-radius: 8px;
  background: #141820;
  color: #f7f8fb;
  box-shadow: 0 28px 80px rgba(20, 23, 26, 0.26);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-bar span {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.66);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
}

.window-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.code-demo-window pre {
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  overflow: auto;
  color: #e9eef7;
  font-size: clamp(11px, 1.25vw, 14px);
  line-height: 1.72;
  white-space: pre-wrap;
}

.code-demo-window code {
  color: inherit;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.demokit-css-path-table {
  display: grid;
  min-height: 360px;
  border-bottom: 1px solid rgba(20, 23, 26, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.demokit-css-path-table > div,
.path-table-head {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-top: 1px solid rgba(20, 23, 26, 0.08);
}

.demokit-css-path-table span,
.demokit-css-path-table strong,
.demokit-css-path-table p {
  margin: 0;
  padding: 16px 18px;
}

.demokit-css-path-table span {
  color: rgba(20, 23, 26, 0.62);
  font-weight: 780;
}

.demokit-css-path-table strong {
  color: #14171a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

.demokit-css-path-table p {
  border-left: 2px solid rgba(0, 113, 227, 0.54);
  color: rgba(29, 29, 31, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.demokit-home-poster {
  position: relative;
  display: grid;
  min-height: 300px;
  padding: 20px;
  overflow: hidden;
  background: #f7f9fc;
  background-size: auto;
}

.demokit-home-poster > span,
.demokit-home-poster > b {
  position: relative;
  z-index: 2;
  color: rgba(20, 23, 26, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.demokit-home-poster > strong {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 64%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 0.9;
}

.demokit-home-poster > strong span {
  color: #0071e3;
  font: inherit;
}

.demokit-home-poster > b {
  align-self: end;
  color: #0071e3;
}

.demokit-home-poster > i {
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: 36%;
  height: 62%;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #141820 0 42%, #0071e3 42% 70%, #f7f6f0 70%);
  box-shadow: -18px 16px 40px rgba(20, 23, 26, 0.18);
  transform: rotate(5deg);
}

.demokit-home-poster .demokit-lab-nav {
  position: relative;
  z-index: 3;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.demokit-home-poster .demokit-lab-nav span,
.demokit-home-poster .demokit-lab-nav i {
  color: rgba(20, 23, 26, 0.68);
  font-size: 9px;
}

.demokit-home-poster .demokit-lab-nav i {
  color: #0071e3;
}

.demokit-home-poster .demokit-hero-word {
  position: absolute;
  z-index: 2;
  left: 20px;
  top: 50%;
  max-width: 54%;
  margin-top: 0;
  transform: translateY(-50%);
}

.demokit-home-poster .demokit-hero-word strong {
  font-size: clamp(40px, 5.8vw, 64px);
  line-height: 0.82;
}

.demokit-home-poster .demokit-hero-word b {
  margin-top: 10px;
  color: #14171a;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 0.92;
}

.demokit-home-poster .demokit-hero-word em {
  margin-top: 14px;
  font-size: clamp(18px, 3vw, 30px);
}

.demokit-home-poster .demokit-card-stack {
  right: clamp(18px, 4vw, 36px);
  top: 50%;
  width: clamp(172px, 38%, 250px);
  height: clamp(220px, 64%, 292px);
  transform: translateY(-50%);
}

.demokit-home-poster .demokit-stack-card {
  padding: clamp(14px, 2vw, 18px);
}

.demokit-home-poster .demokit-stack-card small {
  font-size: clamp(8px, 1.3vw, 10px);
}

.demokit-home-poster .demokit-stack-card strong {
  font-size: clamp(18px, 2.8vw, 30px);
}

.demokit-home-poster > p {
  position: relative;
  z-index: 3;
  align-self: end;
  max-width: 72%;
  margin: 0;
  color: rgba(29, 29, 31, 0.72);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
}

.demokit-ppt-page {
  overflow: visible;
}

.demokit-ppt-stack {
  display: grid;
  width: min(1200px, calc(100% - 48px));
  margin: clamp(62px, 8vw, 104px) auto clamp(54px, 7vw, 92px);
  gap: clamp(22px, 3.5vw, 42px);
}

.demokit-ppt-sheet {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 82px rgba(65, 78, 114, 0.12);
}

.demokit-ppt-frame {
  display: block;
  width: 100%;
  height: clamp(430px, 48vw, 620px);
  border: 0;
  background: #f9fafb;
}

.demokit-path-gallery article:first-child {
  grid-column: span 2;
}

.demokit-path-gallery article:not(:first-child) {
  display: flex;
  align-items: flex-end;
  min-height: 320px;
}

.demokit-path-gallery article:not(:first-child) div {
  padding-top: 72px;
}

.skill-rule-panel {
  padding: clamp(24px, 4vw, 38px);
}

.skill-rule-panel ul {
  margin: 24px 0 0;
  padding-left: 20px;
}

.skill-rule-panel li + li {
  margin-top: 12px;
}

.reuse-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reuse-gallery article {
  overflow: hidden;
}

.reuse-gallery img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: left top;
}

.reuse-gallery div {
  padding: 24px;
}

.value-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(44px, 7vw, 76px);
  margin-bottom: clamp(80px, 10vw, 140px);
}

.value-points {
  display: grid;
  gap: 16px;
}

.value-points p {
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
}

.value-points strong {
  display: block;
  margin-bottom: 5px;
  color: #0071e3;
}

@media (max-width: 980px) {
  .warehouse-hero,
  .warehouse-ui-shell,
  .warehouse-context-grid,
  .warehouse-reference-grid,
  .warehouse-scene-grid,
  .warehouse-pain-grid,
  .warehouse-goal-board,
  .warehouse-ui-panels {
    grid-template-columns: 1fr;
  }

  .warehouse-hero-media img {
    height: auto;
  }

  .warehouse-scene-grid article,
  .warehouse-reference-grid article,
  .warehouse-pain-grid article {
    min-height: 0;
  }

  .case-hero-redesign,
  .case-split-section,
  .skill-lab-grid,
  .demokit-stack,
  .demokit-story-layout,
  .demokit-story-layout-reverse,
  .value-band {
    grid-template-columns: 1fr;
  }

  .demokit-story-layout-reverse .demokit-story-copy {
    order: 0;
  }

  .case-hero-media img {
    height: 420px;
  }

  .insight-grid,
  .reuse-gallery {
    grid-template-columns: 1fr;
  }

  .demokit-path-gallery article:first-child {
    grid-column: auto;
  }

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

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

  .demokit-css-code-demo {
    grid-template-columns: 1fr;
  }

  .css-shot-hero,
  .css-code-layout {
    grid-template-columns: 1fr;
  }

  .module-triplet {
    grid-template-columns: 1fr;
  }

  .demokit-slide-02 .module-triplet {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .demokit-slide-02 .module-triplet div {
    min-height: 180px;
    padding: 20px;
  }

  .demokit-ppt-stack {
    width: min(100% - 32px, 1200px);
    margin-top: 58px;
    gap: 22px;
  }

  .demokit-ppt-frame {
    height: clamp(420px, 112vw, 560px);
  }

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

  .css-path-compare div {
    grid-template-columns: 1fr;
  }

  .css-path-compare p {
    border-left: 0;
    border-top: 1px solid rgba(0, 113, 227, 0.22);
  }

  .demokit-css-path-table > div,
  .path-table-head {
    grid-template-columns: 1fr;
  }

  .demokit-css-path-table p {
    border-left: 0;
    border-top: 1px solid rgba(0, 113, 227, 0.22);
  }
}

@media (max-width: 640px) {
  .warehouse-hero,
  .warehouse-case .case-chapter,
  .warehouse-case .interview-snapshot,
  .warehouse-case .case-pager {
    width: min(100% - 32px, 1200px);
  }

  .warehouse-ui-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .warehouse-ui-map {
    min-height: 460px;
  }

  .warehouse-ui-map .map-card {
    left: 18px;
    right: 18px;
    min-width: 0;
  }

  .area-a { top: 22px; }
  .handover { top: 150px; }
  .charge { top: 278px; bottom: auto; }
  .route-blue,
  .route-green {
    left: 40px;
    width: 78%;
  }
  .dot-r03 { left: 42%; top: 230px; }
  .dot-worker { left: 58%; top: 346px; }

  .case-hero-redesign,
  .case-chapter,
  .case-split-section,
  .skill-lab-section,
  .value-band {
    width: min(100% - 32px, 1180px);
  }

  .hero-facts,
  .component-map {
    grid-template-columns: 1fr;
  }

  .demokit-slide-02 .module-triplet {
    grid-template-columns: 1fr;
  }

  #kit .demokit-story-layout > .demokit-css-shot,
  #kit .demokit-story-layout > .demokit-story-copy {
    min-height: 0;
  }

  .demokit-stack .skill-process-grid {
    grid-template-columns: 1fr;
  }

  .demokit-css-hero {
    min-height: 620px;
  }

  .demokit-css-shot {
    min-height: 0;
  }

  .css-shot-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .mini-card-stack {
    min-height: 280px;
  }

  .build-progress {
    grid-template-columns: 1fr;
  }

  .build-progress div,
  .demokit-stepper [data-demokit-step-button] {
    min-height: 92px;
  }

  .build-progress div + div::before {
    display: none;
  }

  .demokit-hero-word {
    max-width: 100%;
    align-self: start;
    margin-top: 54px;
  }

  .demokit-card-stack {
    right: 28px;
    top: 310px;
    width: 210px;
    height: 250px;
  }

  .demokit-stack-card {
    padding: 16px;
  }

  .demokit-css-hero > p {
    max-width: 250px;
    font-size: 14px;
  }

  .map-card.large {
    grid-column: auto;
  }

  .case-anchor-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

.humanoid-case {
  background:
    radial-gradient(circle at 70% 6%, rgba(0, 190, 180, 0.12), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(0, 113, 227, 0.1), transparent 30%),
    linear-gradient(180deg, #f7f9fb 0%, #eef5fb 54%, #f7f9fb 100%);
}

.humanoid-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  min-height: calc(100vh - 58px);
  margin: 0 auto;
  padding: clamp(88px, 11vw, 156px) 0 clamp(72px, 8vw, 120px);
}

.humanoid-hero-copy h1 {
  max-width: 760px;
  margin: 16px 0 22px;
  font-size: clamp(23px, 3.15vw, 46px);
  line-height: 0.98;
}

.humanoid-hero-copy p {
  max-width: 720px;
  color: rgba(29, 29, 31, 0.68);
  font-size: clamp(18px, 1vw, 18px);
  line-height: 1.55;
}

.humanoid-hero-visual {
  position: relative;
  min-height: clamp(560px, 62vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.95), transparent 26%),
    radial-gradient(circle at 20% 78%, rgba(0, 113, 227, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(227, 241, 248, 0.56));
  box-shadow: 0 34px 110px rgba(56, 76, 108, 0.14);
}

.robot-stage {
  position: absolute;
  inset: 42px auto 42px 34px;
  width: 45%;
  min-width: 250px;
}

.robot-body {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 190px;
  height: 470px;
  transform: translateX(-50%);
}

.robot-head {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 102px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.94), transparent 34%),
    linear-gradient(145deg, rgba(242, 248, 252, 0.86), rgba(198, 219, 232, 0.72));
  box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.88), 0 24px 54px rgba(45, 65, 90, 0.16);
  transform: translateX(-50%);
}

.robot-eye {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0071e3;
  box-shadow: 0 0 22px rgba(0, 113, 227, 0.7);
}

.robot-neck {
  position: absolute;
  top: 96px;
  left: 50%;
  width: 48px;
  height: 38px;
  border-radius: 18px;
  background: linear-gradient(180deg, #dfeaf2, #b9ccd8);
  transform: translateX(-50%);
}

.robot-torso {
  position: absolute;
  top: 130px;
  left: 50%;
  display: grid;
  align-content: center;
  width: 172px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 58px 58px 44px 44px;
  padding: 28px;
  color: rgba(29, 29, 31, 0.76);
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.96), transparent 26%),
    linear-gradient(145deg, rgba(249, 252, 255, 0.86), rgba(190, 211, 225, 0.76));
  box-shadow: inset 0 1px 26px rgba(255, 255, 255, 0.9), 0 30px 72px rgba(45, 65, 90, 0.18);
  transform: translateX(-50%);
}

.robot-torso span,
.robot-torso strong {
  display: block;
}

.robot-torso span {
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
}

.robot-torso strong {
  margin-top: 8px;
  font-size: 20px;
}

.robot-arm,
.robot-leg {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(237, 246, 251, 0.94), rgba(179, 202, 216, 0.82));
  box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.85), 0 20px 40px rgba(45, 65, 90, 0.12);
}

.robot-arm {
  top: 154px;
  width: 42px;
  height: 178px;
}

.robot-arm.left {
  left: -10px;
  transform: rotate(10deg);
}

.robot-arm.right {
  right: -10px;
  transform: rotate(-10deg);
}

.robot-leg {
  bottom: 0;
  width: 48px;
  height: 138px;
}

.robot-leg.left {
  left: 50px;
}

.robot-leg.right {
  right: 50px;
}

.robot-signal {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(29, 29, 31, 0.68);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 32px rgba(45, 65, 90, 0.12);
  backdrop-filter: blur(18px) saturate(170%);
}

.robot-signal.s1 {
  top: 92px;
  left: 4px;
}

.robot-signal.s2 {
  right: 4px;
  top: 190px;
}

.robot-signal.s3 {
  left: 22px;
  bottom: 118px;
}

.software-stack {
  position: absolute;
  right: 34px;
  top: 54px;
  bottom: 54px;
  display: grid;
  align-content: center;
  width: 48%;
  gap: 18px;
}

.phone-ui,
.console-ui,
.body-screen,
.ops-screen,
.screen-card,
.analysis-board {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 22px 68px rgba(56, 76, 108, 0.1);
  backdrop-filter: blur(20px) saturate(170%);
}

.phone-ui {
  width: min(310px, 100%);
  min-height: 250px;
  padding: 22px;
}

.ui-top {
  display: block;
  width: 74px;
  height: 7px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.16);
}

.phone-ui strong,
.phone-ui p {
  display: block;
}

.phone-ui strong {
  font-size: 12px;
  line-height: 1.15;
}

.phone-ui p {
  color: rgba(29, 29, 31, 0.58);
}

.phone-ui i {
  display: block;
  height: 12px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.18), transparent);
}

.console-ui {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  min-height: 230px;
  padding: 16px;
}

.console-map {
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.13) 1px, transparent 1px),
    linear-gradient(rgba(0, 113, 227, 0.13) 1px, transparent 1px),
    radial-gradient(circle at 58% 40%, rgba(0, 113, 227, 0.34), transparent 8%),
    rgba(236, 246, 251, 0.72);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.console-panel i {
  display: block;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(0, 113, 227, 0.1);
}

.factory-scenario-section {
  padding-top: clamp(70px, 9vw, 120px);
}

.factory-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(33, 72, 104, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(33, 72, 104, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 78% 22%, rgba(0, 190, 180, 0.14), transparent 26%),
    radial-gradient(circle at 18% 80%, rgba(0, 113, 227, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.66);
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
  box-shadow: 0 26px 88px rgba(56, 76, 108, 0.1);
}

.factory-zone {
  position: absolute;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 44px rgba(56, 76, 108, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
}

.factory-zone > span,
.material-cart span,
.factory-humanoid span,
.factory-worker span {
  color: rgba(29, 29, 31, 0.66);
  font-size: 13px;
  font-weight: 800;
}

.line-zone {
  left: 6%;
  top: 16%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 54%;
  height: 100px;
  padding: 34px 18px 14px;
}

.line-zone > span {
  position: absolute;
  left: 18px;
  top: 10px;
}

.line-zone i {
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(0, 113, 227, 0.12), rgba(0, 190, 180, 0.12)),
    #fff;
}

.arm-zone {
  right: 8%;
  top: 12%;
  width: 24%;
  height: 190px;
  padding: 18px;
}

.robotic-arm {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 150px;
  height: 86px;
  transform: translate(-50%, -50%);
}

.robotic-arm b {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.78), rgba(0, 190, 180, 0.48));
}

.robotic-arm b:nth-child(1) {
  left: 12px;
  bottom: 8px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.robotic-arm b:nth-child(2) {
  left: 46px;
  bottom: 28px;
  width: 88px;
  height: 18px;
  transform: rotate(-22deg);
}

.robotic-arm b:nth-child(3) {
  right: 8px;
  top: 18px;
  width: 56px;
  height: 16px;
  transform: rotate(30deg);
}

.charge-zone {
  right: 7%;
  bottom: 11%;
  width: 22%;
  height: 126px;
  padding: 18px;
}

.charger-icon {
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 76px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.18), rgba(0, 190, 180, 0.22));
  transform: translateX(-50%);
}

.charger-icon::before {
  content: "";
  position: absolute;
  right: -10px;
  top: 15px;
  width: 10px;
  height: 18px;
  border-radius: 0 4px 4px 0;
  background: rgba(0, 113, 227, 0.22);
}

.charger-icon::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 11px;
  width: 13px;
  height: 24px;
  background: #0071e3;
  clip-path: polygon(44% 0, 100% 0, 64% 42%, 100% 42%, 28% 100%, 46% 54%, 0 54%);
}

.factory-worker {
  position: absolute;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 7px;
}

.factory-worker b {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 32%, #fff 0 18%, transparent 19%),
    linear-gradient(180deg, rgba(29, 29, 31, 0.74), rgba(72, 85, 99, 0.64));
  box-shadow: 0 0 0 12px rgba(29, 29, 31, 0.06);
}

.factory-worker.w1 {
  left: 34%;
  top: 45%;
}

.factory-worker.w2 {
  left: 22%;
  bottom: 21%;
}

.factory-humanoid {
  position: absolute;
  left: 53%;
  top: 49%;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 5px;
}

.face-direction {
  display: grid;
  width: 44px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  background: #0071e3;
  box-shadow: 0 12px 28px rgba(0, 113, 227, 0.24);
}

.mini-head {
  width: 42px;
  height: 34px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fcff, #c8dce8);
  box-shadow: inset 0 1px 8px rgba(255, 255, 255, 0.9), 0 12px 24px rgba(56, 76, 108, 0.14);
}

.mini-body {
  width: 54px;
  height: 70px;
  border-radius: 22px 22px 18px 18px;
  background: linear-gradient(180deg, #f8fcff, #bdd3df);
  box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.9), 0 14px 30px rgba(56, 76, 108, 0.14);
}

.material-cart {
  position: absolute;
  left: 9%;
  bottom: 19%;
  z-index: 3;
  display: grid;
  gap: 8px;
  width: 110px;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.material-cart i {
  display: block;
  height: 54px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(0, 113, 227, 0.14) 1px, transparent 1px),
    rgba(0, 113, 227, 0.08);
  background-size: 16px 16px;
}

.factory-tablet {
  position: absolute;
  left: 6%;
  top: 43%;
  z-index: 4;
  width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 58px rgba(56, 76, 108, 0.14);
  backdrop-filter: blur(18px) saturate(170%);
}

.factory-tablet strong,
.factory-tablet p {
  display: block;
}

.factory-tablet strong {
  margin-bottom: 12px;
  color: #1d1d1f;
  font-size: 20px;
}

.factory-tablet p {
  margin: 8px 0 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.factory-routes {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.factory-routes path {
  fill: none;
  stroke-linecap: round;
  stroke-width: 5;
  stroke-dasharray: 10 12;
}

.route-main {
  stroke: rgba(0, 113, 227, 0.66);
}

.route-avoid {
  stroke: rgba(255, 149, 0, 0.76);
}

.route-charge {
  stroke: rgba(0, 190, 180, 0.66);
}

.task-chip {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(29, 29, 31, 0.72);
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(56, 76, 108, 0.1);
}

.task-chip.c1 {
  left: 7%;
  top: 36%;
}

.task-chip.c2 {
  left: 52%;
  top: 42%;
}

.task-chip.c3 {
  left: 39%;
  top: 59%;
}

.task-chip.c4 {
  right: 7%;
  top: 39%;
}

.task-chip.c5 {
  right: 8%;
  bottom: 34%;
}

.factory-render-map {
  min-height: auto;
  aspect-ratio: 1672 / 941;
  background: #dce7ee;
}

.factory-render-map img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-render-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 18, 30, 0.14), transparent 24%, transparent 70%, rgba(8, 18, 30, 0.1)),
    linear-gradient(180deg, transparent 50%, rgba(8, 18, 30, 0.18));
  pointer-events: none;
}

.factory-render-map .factory-routes {
  z-index: 3;
}

.factory-render-map .factory-routes path {
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: none;
  filter: drop-shadow(0 5px 8px rgba(255, 49, 35, 0.18));
}

.factory-render-map .route-main {
  stroke: rgba(255, 45, 32, 0.9);
}

.factory-render-map .route-charge {
  stroke: rgba(0, 190, 180, 0.82);
  stroke-width: 8;
}

.render-step {
  position: absolute;
  z-index: 4;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  max-width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 7px 13px 7px 7px;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(16, 24, 34, 0.62);
  box-shadow: 0 18px 42px rgba(8, 18, 30, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.render-step b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  background: #ff2d20;
  box-shadow: 0 0 0 5px rgba(255, 45, 32, 0.18);
}

.render-step span {
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 800;
  line-height: 1.28;
}

.render-step.p1 {
  right: 24%;
  bottom: 20%;
}

.render-step.p2 {
  left: 51%;
  bottom: 23%;
}

.render-step.p3 {
  left: 35%;
  top: 52%;
}

.render-step.p4 {
  left: 17%;
  top: 32%;
}

.render-step.p5 {
  right: 7%;
  top: 30%;
}

.render-legend {
  position: absolute;
  left: 4%;
  bottom: 5%;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(16, 24, 34, 0.58);
  box-shadow: 0 18px 42px rgba(8, 18, 30, 0.18);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.render-legend strong,
.render-legend span {
  display: block;
}

.render-legend strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.render-legend span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.factory-agent-blueprint {
  min-height: auto;
  aspect-ratio: 1672 / 941;
  background: #101925;
}

.factory-agent-section {
  padding-top: clamp(70px, 9vw, 118px);
}

.factory-agent-blueprint > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-agent-blueprint::before,
.factory-agent-blueprint::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.factory-agent-blueprint::before {
  z-index: 2;
  background:
    radial-gradient(circle at 48% 55%, transparent 0 34%, rgba(8, 18, 30, 0.22) 62%),
    linear-gradient(90deg, rgba(8, 18, 30, 0.55), transparent 23%, transparent 70%, rgba(8, 18, 30, 0.5)),
    linear-gradient(180deg, rgba(8, 18, 30, 0.35), transparent 34%, rgba(8, 18, 30, 0.42));
}

.factory-agent-blueprint::after {
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.blueprint-title,
.blueprint-task,
.blueprint-panel,
.blueprint-loop {
  position: absolute;
  z-index: 5;
  color: #fff;
}

.blueprint-title {
  left: 3.4%;
  top: 4.4%;
  max-width: 520px;
}

.blueprint-title span {
  display: block;
  margin-bottom: 8px;
  color: rgba(125, 220, 255, 0.9);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
}

.blueprint-title strong {
  display: block;
  font-size: clamp(11px, 1.4vw, 23px);
  line-height: 1.05;
}

.blueprint-title p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 760;
}

.blueprint-routes {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.blueprint-routes path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
  filter: drop-shadow(0 7px 9px rgba(0, 0, 0, 0.22));
}

.line-logistics {
  stroke: rgba(0, 148, 255, 0.92);
}

.line-exception {
  stroke: rgba(255, 59, 48, 0.92);
}

.line-quality {
  stroke: rgba(180, 92, 255, 0.94);
}

.line-safety {
  stroke: rgba(42, 220, 132, 0.92);
}

.line-assist {
  stroke: rgba(255, 204, 0, 0.94);
}

.blueprint-task {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  max-width: 360px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  background: rgba(17, 27, 39, 0.7);
  box-shadow: 0 18px 42px rgba(8, 18, 30, 0.22);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.blueprint-task b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
}

.blueprint-task strong,
.blueprint-task span {
  grid-column: 2;
  display: block;
}

.blueprint-task strong {
  margin: 0 0 4px;
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1.18;
}

.blueprint-task span {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(10px, 0.88vw, 13px);
  font-weight: 760;
  line-height: 1.35;
}

.blueprint-task.logistics {
  left: 3.5%;
  top: 26%;
  border-color: rgba(0, 148, 255, 0.58);
}

.blueprint-task.logistics b {
  background: #0094ff;
}

.blueprint-task.exception {
  left: 46%;
  top: 12%;
  border-color: rgba(255, 59, 48, 0.58);
}

.blueprint-task.exception b {
  background: #ff3b30;
}

.blueprint-task.quality {
  right: 3.8%;
  bottom: 25%;
  border-color: rgba(180, 92, 255, 0.6);
}

.blueprint-task.quality b {
  background: #b45cff;
}

.blueprint-task.safety {
  right: 3.2%;
  top: 28%;
  border-color: rgba(42, 220, 132, 0.56);
}

.blueprint-task.safety b {
  background: #2adc84;
}

.blueprint-task.assist {
  left: 6%;
  bottom: 19%;
  border-color: rgba(255, 204, 0, 0.58);
}

.blueprint-task.assist b {
  color: #1d1d1f;
  background: #ffcc00;
}

.blueprint-panel {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  padding: 18px;
  background: rgba(17, 27, 39, 0.68);
  box-shadow: 0 18px 42px rgba(8, 18, 30, 0.2);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.blueprint-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(15px, 0.65vw, 15px);
}

.blueprint-panel span {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 0 0;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 760;
}

.design-points {
  left: 3.4%;
  bottom: 34%;
  width: min(300px, 18vw);
  border-left: 4px solid #0094ff;
}

.architecture {
  right: 3.4%;
  top: 5%;
  width: min(330px, 20vw);
  border-left: 4px solid #2adc84;
}

.blueprint-loop {
  left: 3.4%;
  right: 3.4%;
  bottom: 3.4%;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  padding: 14px 18px;
  background: rgba(17, 27, 39, 0.72);
  box-shadow: 0 18px 42px rgba(8, 18, 30, 0.22);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.blueprint-loop strong {
  margin-right: 4px;
  color: #7ddcff;
  font-size: clamp(14px, 1.1vw, 18px);
  white-space: nowrap;
}

.blueprint-loop span {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(10px, 0.85vw, 13px);
  font-weight: 800;
  white-space: nowrap;
}

.blueprint-loop i {
  width: 18px;
  height: 2px;
  background: rgba(125, 220, 255, 0.55);
}

.agent-image-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(29, 29, 31, 0.1);
  padding-top: 18px;
}

.agent-image-note strong {
  color: #0071e3;
  font-size: 18px;
}

.agent-image-note p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 16px;
  line-height: 1.7;
}

.ued-case-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  margin-top: clamp(30px, 5vw, 54px);
  border-top: 1px solid rgba(29, 29, 31, 0.1);
  padding-top: clamp(28px, 4vw, 44px);
}

.summary-lead span {
  display: block;
  margin-bottom: 14px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
}

.summary-lead h3 {
  margin: 0;
  font-size: clamp(14px, 1.8vw, 24px);
  line-height: 1.08;
  text-wrap: balance;
}

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

.summary-grid article {
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 46px rgba(56, 76, 108, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.summary-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #1d1d1f;
  font-size: 20px;
}

.summary-grid p {
  margin: 0;
  color: rgba(29, 29, 31, 0.64);
  font-size: 15px;
  line-height: 1.62;
}

.ued-analysis-framework {
  margin-top: clamp(56px, 8vw, 96px);
}

.analysis-heading {
  max-width: 900px;
  margin-bottom: 28px;
}

.analysis-heading span {
  display: block;
  margin-bottom: 12px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
}

.analysis-heading h3 {
  margin: 0;
  font-size: clamp(15px, 2.1vw, 29px);
  line-height: 1.06;
  text-wrap: balance;
}

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

.painpoint-grid article,
.journey-stage,
.value-design-grid article {
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 46px rgba(56, 76, 108, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.painpoint-grid article {
  min-height: 310px;
  padding: 24px;
}

.painpoint-grid span {
  display: block;
  margin-bottom: 18px;
  color: #0071e3;
  font-size: 12px;
  font-weight: 800;
}

.painpoint-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(11px, 1.2vw, 15px);
  line-height: 1.12;
}

.painpoint-grid p,
.painpoint-grid em,
.journey-stage span,
.journey-stage em,
.value-design-grid p {
  color: rgba(29, 29, 31, 0.64);
  font-size: 15px;
  line-height: 1.62;
}

.painpoint-grid em,
.journey-stage em {
  display: block;
  margin-top: 16px;
  color: rgba(0, 113, 227, 0.78);
  font-style: normal;
  font-weight: 760;
}

.journey-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.journey-stage {
  position: relative;
  min-height: 280px;
  padding: 22px;
}

.journey-stage::after {
  content: "";
  position: absolute;
  top: 36px;
  right: -14px;
  z-index: 2;
  width: 18px;
  height: 2px;
  background: rgba(0, 113, 227, 0.24);
}

.journey-stage:last-child::after {
  content: none;
}

.journey-stage b {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0071e3;
}

.journey-stage strong {
  display: block;
  margin-bottom: 10px;
  font-size: 10.5px;
}

.journey-stage span {
  display: block;
}

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

.value-design-grid article {
  min-height: 180px;
  padding: 22px;
}

.value-design-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
}

.value-design-grid p {
  margin: 0;
}

.scene-callout {
  position: absolute;
  z-index: 4;
  width: min(220px, 20vw);
  border-left: 3px solid rgba(0, 113, 227, 0.86);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  color: #fff;
  background: rgba(16, 24, 34, 0.52);
  box-shadow: 0 16px 34px rgba(8, 18, 30, 0.14);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.scene-callout strong,
.scene-callout span {
  display: block;
}

.scene-callout strong {
  margin-bottom: 5px;
  font-size: clamp(13px, 1.1vw, 16px);
}

.scene-callout span {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(11px, 0.95vw, 13px);
  font-weight: 760;
  line-height: 1.35;
}

.scene-callout.tablet {
  right: 23%;
  bottom: 8%;
}

.scene-callout.worker {
  left: 14%;
  bottom: 28%;
}

.scene-callout.arm {
  left: 19%;
  top: 16%;
}

.scene-callout.charge {
  right: 5%;
  top: 16%;
  border-left-color: rgba(0, 190, 180, 0.9);
}

.research-canvas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.research-canvas article {
  min-height: 280px;
  border-top: 1px solid rgba(29, 29, 31, 0.12);
  padding-top: 24px;
}

.research-canvas span,
.screen-card span {
  display: block;
  margin-bottom: 12px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
}

.research-canvas h3 {
  margin: 0 0 14px;
  font-size: clamp(13px, 1.5vw, 19px);
}

.research-canvas p {
  color: rgba(29, 29, 31, 0.66);
  font-size: 17px;
  line-height: 1.65;
}

.analysis-board {
  margin-top: 26px;
  overflow: hidden;
}

.analysis-row {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 1.4fr;
}

.analysis-row span {
  padding: 18px;
  border-top: 1px solid rgba(29, 29, 31, 0.07);
  color: rgba(29, 29, 31, 0.66);
  line-height: 1.58;
}

.analysis-row.head span {
  border-top: 0;
  color: rgba(29, 29, 31, 0.9);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.54);
}

.humanoid-system {
  align-items: stretch;
}

.journey-device {
  display: grid;
  align-content: center;
  min-height: 620px;
  border-radius: 8px;
  padding: clamp(22px, 4vw, 40px);
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 113, 227, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.64), rgba(226, 241, 248, 0.46));
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
}

.journey-line span {
  display: grid;
  min-height: 46px;
  place-items: center;
  border-radius: 999px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.68);
}

.device-pair {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 14px;
}

.body-screen,
.ops-screen {
  min-height: 320px;
  padding: 24px;
}

.body-screen strong,
.ops-screen strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}

.body-screen p,
.ops-screen p {
  color: rgba(29, 29, 31, 0.62);
}

.body-screen i {
  display: block;
  width: 80%;
  height: 20px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 113, 227, 0.4), rgba(0, 190, 180, 0.1));
}

.ops-screen div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.ops-screen span {
  height: 48px;
  border-radius: 8px;
  background: rgba(0, 113, 227, 0.1);
}

.humanoid-screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.screen-card {
  overflow: hidden;
}

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

.screen-card > div:last-child {
  padding: 24px;
}

.screen-card strong {
  display: block;
  font-size: clamp(11px, 1.3vw, 17px);
  line-height: 1.08;
}

.screen-card p {
  color: rgba(29, 29, 31, 0.64);
  line-height: 1.62;
}

.mock-console,
.mock-mobile,
.mock-alert,
.mock-skill {
  min-height: 260px;
  padding: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 113, 227, 0.14), transparent 30%),
    rgba(239, 247, 252, 0.78);
}

.mock-console {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 14px;
}

.mock-map {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(0, 113, 227, 0.14) 1px, transparent 1px),
    rgba(255, 255, 255, 0.7);
  background-size: 36px 36px;
}

.mock-map span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0071e3;
  box-shadow: 0 0 0 8px rgba(0, 113, 227, 0.1);
}

.mock-map span:nth-child(1) {
  left: 28%;
  top: 32%;
}

.mock-map span:nth-child(2) {
  left: 62%;
  top: 46%;
}

.mock-map span:nth-child(3) {
  left: 48%;
  top: 72%;
}

.mock-side i {
  display: block;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.mock-mobile {
  display: grid;
  align-content: center;
}

.mock-mobile button {
  width: 100%;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 800;
  background: #0071e3;
}

.mock-alert b {
  display: block;
  margin-bottom: 24px;
  color: #1d1d1f;
  font-size: 11px;
}

.mock-alert i,
.mock-skill span {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.mock-alert i {
  height: 18px;
  margin-top: 14px;
}

.mock-skill {
  display: grid;
  align-content: center;
  gap: 12px;
}

.mock-skill span {
  padding: 14px 18px;
  color: #0071e3;
  font-weight: 800;
}

.humanoid-value {
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 190, 180, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.66);
}

.focus-agent-case {
  background:
    radial-gradient(circle at 78% 8%, rgba(0, 190, 180, 0.12), transparent 28%),
    radial-gradient(circle at 14% 12%, rgba(0, 113, 227, 0.1), transparent 30%),
    linear-gradient(180deg, #f7f9fb 0%, #eef5fb 52%, #f7f9fb 100%);
}

.warehouse-case {
  background:
    radial-gradient(circle at 78% 10%, rgba(0, 113, 227, 0.12), transparent 30%),
    radial-gradient(circle at 18% 16%, rgba(33, 190, 170, 0.1), transparent 32%),
    linear-gradient(180deg, #f6f9fc 0%, #eef5fa 46%, #f8fbfd 100%);
}

.warehouse-case .case-chapter,
.warehouse-case .interview-snapshot,
.warehouse-case .case-pager {
  width: min(1200px, calc(100% - 48px));
}

.warehouse-hero {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(104px, 12vw, 168px) 0 clamp(56px, 7vw, 96px);
}

.warehouse-hero h1 {
  max-width: 100%;
  margin: 16px 0 22px;
  font-size: clamp(26px, 4.2vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
}

.warehouse-hero p {
  max-width: 100%;
  color: rgba(29, 29, 31, 0.68);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.62;
}

.warehouse-hero-media,
.warehouse-reference-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 96px rgba(56, 76, 108, 0.14);
}

.warehouse-hero-media img,
.warehouse-reference-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.warehouse-hero-media img {
  height: clamp(390px, 46vw, 620px);
  object-fit: cover;
  object-position: center;
}

.warehouse-capability-poster {
  position: relative;
  isolation: isolate;
  background: #e9eef3;
}

.warehouse-capability-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #e6edf3 0%, #e6edf3 62%, rgba(230, 237, 243, 0.72) 76%, rgba(230, 237, 243, 0) 100%),
    radial-gradient(circle at 18% 68%, rgba(0, 113, 227, 0.1), transparent 38%);
}

.warehouse-capability-poster img {
  position: relative;
  z-index: 0;
  object-position: center;
}

.warehouse-capability-poster figcaption {
  position: absolute;
  left: clamp(30px, 5vw, 72px);
  top: 50%;
  z-index: 2;
  width: min(48%, 520px);
  transform: translateY(-50%);
}

.warehouse-capability-poster figcaption strong,
.warehouse-capability-poster figcaption span {
  display: block;
}

.warehouse-capability-poster figcaption strong {
  color: #2c3034;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.08;
  letter-spacing: 0;
}

.warehouse-capability-poster figcaption span {
  margin-top: 24px;
  color: rgba(44, 48, 52, 0.78);
  font-size: clamp(16px, 1.7vw, 22px);
  line-height: 1.58;
}

.warehouse-context-grid,
.warehouse-reference-grid,
.warehouse-scene-grid,
.warehouse-pain-grid,
.warehouse-goal-board {
  display: grid;
  gap: 14px;
}

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

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

.warehouse-scene-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 18px;
}

.warehouse-pain-grid,
.warehouse-goal-board {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.warehouse-context-grid article,
.warehouse-reference-grid article,
.warehouse-scene-grid article,
.warehouse-pain-grid article,
.warehouse-goal-board article {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: clamp(20px, 2.6vw, 28px);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 50px rgba(56, 76, 108, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.warehouse-scene-grid article {
  min-height: 260px;
}

.warehouse-reference-grid article {
  min-height: 300px;
}

.warehouse-pain-grid article {
  min-height: 330px;
}

.warehouse-reference-grid span,
.warehouse-scene-grid span,
.warehouse-pain-grid span {
  display: block;
  margin-bottom: 20px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.warehouse-context-grid strong,
.warehouse-reference-grid strong,
.warehouse-scene-grid strong,
.warehouse-pain-grid strong,
.warehouse-goal-board strong {
  display: block;
  margin-bottom: 12px;
  color: #1d1d1f;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.18;
}

.warehouse-context-grid p,
.warehouse-reference-grid p,
.warehouse-scene-grid p,
.warehouse-pain-grid p,
.warehouse-pain-grid em,
.warehouse-goal-board p {
  color: rgba(29, 29, 31, 0.64);
  font-size: 15px;
  line-height: 1.62;
}

.warehouse-pain-grid em {
  display: block;
  margin-top: 16px;
  font-style: normal;
  color: rgba(0, 113, 227, 0.82);
}

.warehouse-ui-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 30px 96px rgba(56, 76, 108, 0.14);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
}

.warehouse-ui-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #122033, #2d4c68);
}

.warehouse-ui-sidebar strong {
  margin-bottom: 18px;
  color: #fff;
  font-size: 18px;
}

.warehouse-ui-sidebar span {
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 800;
}

.warehouse-ui-sidebar .is-active {
  color: #0f2032;
  background: #fff;
}

.warehouse-ui-main {
  padding: clamp(22px, 3vw, 34px);
}

.warehouse-ui-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.warehouse-ui-head span,
.warehouse-ui-panels span {
  color: #0071e3;
  font-size: 12px;
  font-weight: 900;
}

.warehouse-ui-head h3 {
  margin: 6px 0 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
}

.warehouse-score {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0071e3, #18c7b4);
  box-shadow: 0 18px 48px rgba(0, 113, 227, 0.22);
}

.warehouse-score strong,
.warehouse-score span {
  display: block;
  text-align: center;
}

.warehouse-score strong {
  font-size: 28px;
}

.warehouse-score span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.warehouse-ui-map {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(0, 113, 227, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #eef7ff, #ffffff);
  background-size: 64px 64px, 64px 64px, auto;
}

.warehouse-ui-map .map-card,
.robot-dot {
  position: absolute;
  z-index: 2;
}

.warehouse-ui-map .map-card {
  min-width: 160px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 38px rgba(56, 76, 108, 0.1);
}

.warehouse-ui-map .map-card strong,
.warehouse-ui-map .map-card span {
  display: block;
}

.warehouse-ui-map .map-card span {
  margin-top: 5px;
  color: rgba(29, 29, 31, 0.58);
  font-size: 12px;
}

.area-a { left: 24px; top: 28px; }
.handover { right: 36px; top: 70px; }
.charge { right: 92px; bottom: 30px; }

.route-blue,
.route-green {
  position: absolute;
  border-radius: 999px;
  transform-origin: left center;
}

.route-blue {
  left: 190px;
  top: 158px;
  width: 58%;
  height: 10px;
  background: rgba(0, 113, 227, 0.62);
  transform: rotate(-8deg);
}

.route-green {
  left: 180px;
  top: 214px;
  width: 48%;
  height: 10px;
  background: rgba(24, 199, 180, 0.58);
  transform: rotate(12deg);
}

.robot-dot {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: #0071e3;
  box-shadow: 0 12px 34px rgba(0, 113, 227, 0.2);
}

.dot-r03 { left: 45%; top: 135px; }
.dot-worker { left: 55%; top: 208px; background: #1d1d1f; }

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

.warehouse-ui-panels article {
  min-height: 180px;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.warehouse-ui-panels strong {
  display: block;
  margin: 10px 0;
  color: #1d1d1f;
  font-size: 17px;
  line-height: 1.18;
}

.warehouse-ui-panels p {
  color: rgba(29, 29, 31, 0.62);
  font-size: 14px;
  line-height: 1.56;
}

.warehouse-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.warehouse-action-row button {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  font-weight: 900;
  background: #0071e3;
}

.hmi-showcase-grid {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

.hmi-shot {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 88px rgba(56, 76, 108, 0.12);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.hmi-topbar {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(90deg, #0c5db7, #0a3f7c);
}

.hmi-topbar strong {
  margin-right: auto;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.hmi-topbar span,
.hmi-topbar b {
  font-size: 13px;
  font-weight: 800;
}

.hmi-topbar b {
  color: #fff;
}

.hmi-body,
.control-layout,
.task-layout,
.handover-layout {
  display: grid;
  min-height: 520px;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.hmi-body {
  grid-template-columns: 180px 260px 1fr;
}

.hmi-body aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 28px 18px;
  background: #eef3f8;
}

.hmi-body aside span {
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(29, 29, 31, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.hmi-body aside .is-active {
  color: #fff;
  background: #0071e3;
}

.hmi-robot-panel {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 28px;
}

.robot-figure-mini,
.robot-waist {
  position: relative;
  width: 138px;
  height: 272px;
  border-radius: 80px 80px 38px 38px;
  background:
    radial-gradient(circle at 50% 12%, #202936 0 17%, transparent 18%),
    linear-gradient(180deg, transparent 0 24%, #e8edf3 24% 58%, transparent 58%),
    linear-gradient(180deg, transparent 58%, #d7dde5 58% 76%, transparent 76%),
    radial-gradient(circle at 50% 91%, #dfe5ed 0 42%, transparent 43%);
}

.robot-figure-mini::before,
.robot-figure-mini::after,
.robot-waist::before,
.robot-waist::after {
  content: "";
  position: absolute;
  top: 92px;
  width: 24px;
  height: 118px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8dee7, #808a96);
}

.robot-figure-mini::before,
.robot-waist::before {
  left: -28px;
}

.robot-figure-mini::after,
.robot-waist::after {
  right: -28px;
}

.hmi-robot-panel small {
  color: rgba(29, 29, 31, 0.58);
  font-weight: 900;
}

.hmi-robot-image {
  display: block;
  width: min(100%, 260px);
  max-height: 430px;
  object-fit: contain;
  border-radius: 12px;
  background: #f6f9fc;
  box-shadow: 0 18px 52px rgba(56, 76, 108, 0.12);
}

.hmi-metric-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 38px;
}

.hmi-metric-panel > div,
.control-side,
.joint-controls,
.task-summary,
.task-steps,
.workshop-map,
.current-task,
.handover-map,
.operation-card {
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(56, 76, 108, 0.06);
}

.hmi-metric-panel > div {
  min-height: 96px;
  padding: 20px;
}

.hmi-metric-panel .metric-wide {
  grid-column: 1 / -1;
}

.hmi-metric-panel span,
.control-side span,
.task-summary span,
.task-steps span,
.operation-card span,
.current-task span {
  display: block;
  margin-bottom: 10px;
  color: rgba(29, 29, 31, 0.52);
  font-size: 13px;
  font-weight: 900;
}

.hmi-metric-panel strong {
  display: block;
  color: #163d70;
  font-size: clamp(18px, 2vw, 31px);
}

.hmi-metric-panel small {
  display: block;
  margin-top: 8px;
  color: rgba(29, 29, 31, 0.5);
  font-size: 12px;
}

.progress-card em {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 10px solid rgba(0, 113, 227, 0.22);
  border-left-color: #0071e3;
  border-radius: 50%;
  color: #163d70;
  font-style: normal;
  font-weight: 900;
}

.hmi-shot footer {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-top: 1px solid rgba(29, 29, 31, 0.06);
  color: rgba(29, 29, 31, 0.64);
  background: rgba(247, 250, 255, 0.82);
}

.hmi-shot footer strong {
  color: #0071e3;
  white-space: nowrap;
}

.control-layout {
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  gap: 18px;
  padding: 26px;
}

.control-side,
.joint-controls {
  padding: 20px;
}

.control-side b {
  display: inline-flex;
  width: calc(50% - 4px);
  margin: 0 4px 12px 0;
  color: rgba(29, 29, 31, 0.72);
  font-size: 13px;
}

.control-robot {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(135deg, #eef6ff, #fff);
}

.robot-waist {
  margin: 0 auto;
  transform: scale(1.05);
}

.control-robot .hmi-robot-image {
  width: min(100%, 220px);
  max-height: 360px;
  margin: 0 auto;
}

.hmi-robot-image.compact {
  max-height: 360px;
}

.control-robot ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.control-robot li {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  color: rgba(29, 29, 31, 0.62);
  font-size: 14px;
}

.control-robot li b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0b66c3;
}

.joint-controls {
  display: grid;
  align-content: center;
  gap: 18px;
}

.joint-controls div {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 10px;
  align-items: center;
}

.joint-controls button {
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: #fff;
  font-weight: 900;
  background: #0b66c3;
}

.joint-controls strong {
  display: grid;
  height: 32px;
  place-items: center;
  border-radius: 6px;
  color: rgba(29, 29, 31, 0.62);
  background: #eef2f6;
}

.task-layout,
.handover-layout {
  grid-template-columns: 280px minmax(0, 1fr) 360px;
  gap: 18px;
  padding: 26px;
}

.task-summary,
.task-steps,
.workshop-map,
.current-task,
.handover-map,
.operation-card {
  padding: 22px;
}

.task-summary h3,
.workshop-map h3,
.current-task h3 {
  margin: 0 0 14px;
  color: #1d1d1f;
  font-size: 20px;
}

.task-summary p,
.workshop-map p,
.operation-card p {
  margin: 10px 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 14px;
}

.task-steps {
  display: grid;
  align-content: start;
  gap: 12px;
}

.task-steps > div {
  border-radius: 8px;
  padding: 14px;
  color: rgba(29, 29, 31, 0.68);
  background: #f3f6fa;
}

.task-steps .done {
  color: #178a42;
  background: rgba(43, 188, 112, 0.1);
}

.task-steps time {
  float: right;
  color: rgba(29, 29, 31, 0.42);
}

.task-steps .warning {
  display: grid;
  gap: 10px;
  color: #fff;
  background: #c99a15;
}

.task-steps .warning em {
  color: #fff;
  font-size: 46px;
  font-style: normal;
  font-weight: 900;
  text-align: center;
}

.task-steps .warning button,
.operation-card button {
  border: 0;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  font-weight: 900;
  background: #0b66c3;
}

.station-row,
.cart-row,
.cart-path {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.station-row span,
.cart-row b,
.cart-path span {
  border-radius: 6px;
  padding: 10px 12px;
  color: rgba(29, 29, 31, 0.68);
  background: #eef3f8;
}

.cart-row b,
.cart-path span {
  color: #fff;
  background: #0b66c3;
}

.human-zone {
  display: grid;
  height: 82px;
  margin-top: 26px;
  place-items: center;
  border-radius: 8px;
  color: rgba(0, 113, 227, 0.82);
  background: rgba(0, 113, 227, 0.1);
}

.current-task ol {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
}

.current-task li {
  list-style: none;
  border-radius: 8px;
  padding: 11px 12px;
  color: rgba(29, 29, 31, 0.58);
  background: #f3f6fa;
}

.current-task .done {
  color: #178a42;
}

.current-task .active {
  color: #8a6200;
  background: rgba(201, 154, 21, 0.16);
}

.handover-map {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(0, 113, 227, 0.08) 1px, transparent 1px),
    #fff;
  background-size: 62px 62px, 62px 62px, auto;
}

.position-data {
  color: rgba(29, 29, 31, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.handover-map i {
  display: block;
  width: 72%;
  height: 0;
  margin: 42px auto 30px;
  border-top: 3px dashed rgba(0, 113, 227, 0.56);
}

.handover-map b {
  display: grid;
  height: 92px;
  margin-top: 36px;
  place-items: center;
  border-radius: 8px;
  color: rgba(0, 113, 227, 0.78);
  background: rgba(0, 113, 227, 0.08);
}

.operation-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.operation-card strong {
  color: #0b66c3;
  font-size: 20px;
}

.operation-card div {
  border-radius: 8px;
  padding: 14px;
  color: #178a42;
  font-weight: 900;
  background: rgba(43, 188, 112, 0.1);
}

.operation-card small {
  margin-top: 18px;
  color: rgba(29, 29, 31, 0.5);
  font-weight: 800;
}

.warehouse-ui-evidence {
  display: grid;
  gap: clamp(46px, 7vw, 86px);
}

.ui-evidence-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding-top: clamp(24px, 3.6vw, 38px);
}

.ui-evidence-card:first-child {
  padding: 0;
}

.ui-evidence-copy {
  position: sticky;
  top: 92px;
}

.ui-evidence-copy span {
  display: block;
  color: #0071e3;
  font-size: 15px;
  font-weight: 900;
}

.ui-evidence-copy h3 {
  margin: 10px 0 12px;
  color: #1d1d1f;
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.18;
  letter-spacing: 0;
}

.ui-evidence-copy p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

.ui-evidence-card figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: transparent;
}

.ui-evidence-card img {
  display: block;
  width: 100%;
  height: auto;
}

.warehouse-case #ui-designs {
  padding-top: 0;
}

.warehouse-decision-flow {
  overflow: hidden;
  border-top: 1px solid rgba(29, 29, 31, 0.12);
  border-left: 1px solid rgba(29, 29, 31, 0.12);
}

.decision-flow-head,
.warehouse-decision-flow article {
  display: grid;
  grid-template-columns: minmax(170px, 0.26fr) minmax(0, 0.52fr) minmax(150px, 0.22fr);
}

.decision-flow-head span,
.warehouse-decision-flow article > * {
  border-right: 1px solid rgba(29, 29, 31, 0.12);
  border-bottom: 1px solid rgba(29, 29, 31, 0.12);
}

.decision-flow-head span {
  padding: 14px 18px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
  background: rgba(0, 113, 227, 0.06);
}

.warehouse-decision-flow strong,
.warehouse-decision-flow p,
.warehouse-decision-flow em {
  display: flex;
  align-items: center;
  min-height: 116px;
  margin: 0;
  padding: clamp(18px, 2.4vw, 28px);
}

.warehouse-decision-flow strong {
  color: #1d1d1f;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.18;
}

.warehouse-decision-flow p {
  color: rgba(29, 29, 31, 0.64);
  line-height: 1.62;
}

.warehouse-decision-flow em {
  color: #0071e3;
  font-style: normal;
  font-weight: 900;
}

.warehouse-decision-summary {
  display: grid;
  grid-template-columns: minmax(170px, 0.26fr) minmax(0, 0.74fr);
  border-left: 1px solid rgba(0, 113, 227, 0.2);
  border-bottom: 1px solid rgba(0, 113, 227, 0.2);
  background: rgba(0, 113, 227, 0.05);
}

.warehouse-decision-summary strong,
.warehouse-decision-summary span {
  display: block;
  border-top: 1px solid rgba(0, 113, 227, 0.2);
  border-right: 1px solid rgba(0, 113, 227, 0.2);
  padding: clamp(18px, 2.4vw, 28px);
}

.warehouse-decision-summary strong {
  color: #0071e3;
  font-size: 15px;
  font-weight: 900;
}

.warehouse-decision-summary span {
  color: rgba(29, 29, 31, 0.72);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.62;
}

@media (max-width: 980px) {
  .warehouse-hero,
  .warehouse-ui-shell,
  .warehouse-context-grid,
  .warehouse-reference-grid,
  .warehouse-scene-grid,
  .warehouse-pain-grid,
  .warehouse-goal-board,
  .warehouse-ui-panels {
    grid-template-columns: 1fr;
  }

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

  .decision-flow-head {
    display: none;
  }

  .warehouse-decision-flow article,
  .warehouse-decision-summary {
    grid-template-columns: 1fr;
  }

  .warehouse-hero-media img {
    height: auto;
  }

  .warehouse-capability-poster img {
    height: clamp(360px, 58vw, 520px);
  }

  .warehouse-reference-grid article,
  .warehouse-scene-grid article,
  .warehouse-pain-grid article {
    min-height: 0;
  }

  .hmi-body,
  .control-layout,
  .task-layout,
  .handover-layout {
    grid-template-columns: 1fr;
  }

  .hmi-body {
    min-height: 0;
  }

  .hmi-metric-panel {
    grid-template-columns: 1fr;
  }

  .control-robot,
  .hmi-shot footer {
    grid-template-columns: 1fr;
  }

  .hmi-shot footer {
    display: grid;
  }

  .hmi-topbar {
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 14px 18px;
  }
}

@media (max-width: 640px) {
  .warehouse-hero,
  .warehouse-case .case-chapter,
  .warehouse-case .interview-snapshot,
  .warehouse-case .case-pager {
    width: min(100% - 32px, 1200px);
  }

  .warehouse-capability-poster figcaption {
    left: 22px;
    right: 22px;
    width: auto;
  }

  .warehouse-capability-poster figcaption strong {
    font-size: 34px;
  }

  .warehouse-capability-poster figcaption span {
    font-size: 15px;
  }

  .warehouse-ui-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .warehouse-ui-map {
    min-height: 460px;
  }

  .warehouse-ui-map .map-card {
    left: 18px;
    right: 18px;
    min-width: 0;
  }

  .area-a { top: 22px; }
  .handover { top: 150px; }
  .charge { top: 278px; bottom: auto; }
  .route-blue,
  .route-green {
    left: 40px;
    width: 78%;
  }
}

.focus-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
  padding: clamp(96px, 12vw, 168px) 0 clamp(54px, 7vw, 96px);
}

.focus-hero h1 {
  max-width: 860px;
  margin: 16px 0 22px;
  font-size: clamp(23px, 3vw, 43px);
  line-height: 0.98;
}

.focus-hero p {
  max-width: 780px;
  color: rgba(29, 29, 31, 0.68);
  font-size: clamp(18px, 1vw, 18px);
  line-height: 1.58;
}

.focus-map-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: #101925;
  box-shadow: 0 30px 96px rgba(56, 76, 108, 0.14);
}

.focus-map-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.focus-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.focus-analysis-grid,
.focus-output-grid {
  display: grid;
  gap: 14px;
}

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

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

.focus-brief-grid article,
.focus-analysis-grid article,
.focus-output-grid article,
.focus-journey article {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 50px rgba(56, 76, 108, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.focus-brief-grid article {
  min-height: 230px;
  padding: 26px;
}

.focus-analysis-grid article {
  min-height: 310px;
  padding: 26px;
}

.focus-output-grid article {
  min-height: 220px;
  padding: 24px;
}

.focus-analysis-grid span {
  display: block;
  margin-bottom: 18px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
}

.focus-brief-grid strong,
.focus-analysis-grid strong,
.focus-output-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #1d1d1f;
  font-size: clamp(11px, 1.2vw, 16px);
  line-height: 1.12;
}

.focus-brief-grid p,
.focus-analysis-grid p,
.focus-output-grid p,
.focus-analysis-grid em,
.focus-journey span {
  color: rgba(29, 29, 31, 0.64);
  font-size: 15px;
  line-height: 1.62;
}

.tablet-interface-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.tablet-frame {
  overflow: hidden;
  border: 10px solid #202832;
  border-radius: 22px;
  background: #101722;
  box-shadow: 0 32px 92px rgba(36, 48, 72, 0.18);
}

.tablet-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.22), transparent),
    #121b28;
}

.tablet-topbar strong {
  font-size: 19px;
}

.tablet-topbar span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 760;
}

.tablet-main {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 620px;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 190, 180, 0.12), transparent 24%),
    #eef4f8;
}

.tablet-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 14px;
  background: rgba(255, 255, 255, 0.62);
  border-right: 1px solid rgba(29, 29, 31, 0.07);
}

.tablet-sidebar span {
  border-radius: 12px;
  padding: 12px 14px;
  color: rgba(29, 29, 31, 0.58);
  font-size: 14px;
  font-weight: 800;
}

.tablet-sidebar .is-active {
  color: #0071e3;
  background: rgba(0, 113, 227, 0.1);
}

.tablet-content {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.risk-hero-card,
.decision-grid article,
.task-progress-panel {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 36px rgba(56, 76, 108, 0.08);
}

.risk-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  gap: 18px;
  padding: 24px;
}

.risk-hero-card span,
.decision-grid span {
  display: block;
  margin-bottom: 8px;
  color: #0071e3;
  font-size: 12px;
  font-weight: 900;
}

.risk-hero-card h3 {
  margin: 0 0 10px;
  font-size: clamp(13px, 1.5vw, 19px);
  line-height: 1.1;
}

.risk-hero-card p,
.decision-grid p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.58;
}

.risk-meter {
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle, rgba(255, 59, 48, 0.2), transparent 62%),
    rgba(255, 59, 48, 0.08);
}

.risk-meter strong,
.risk-meter span {
  display: block;
  margin: 0;
}

.risk-meter strong {
  color: #ff3b30;
  font-size: 22px;
  line-height: 1;
}

.risk-meter span {
  color: rgba(29, 29, 31, 0.58);
  font-size: 13px;
}

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

.decision-grid article {
  padding: 18px;
}

.decision-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
}

.task-progress-panel {
  padding: 20px;
}

.progress-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.progress-head strong {
  font-size: 20px;
}

.progress-head span {
  color: rgba(29, 29, 31, 0.5);
  font-size: 13px;
  font-weight: 800;
}

.task-steps-ui {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.task-steps-ui span {
  min-height: 54px;
  border-radius: 999px;
  padding: 10px;
  color: rgba(29, 29, 31, 0.5);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  background: rgba(29, 29, 31, 0.06);
}

.task-steps-ui .done {
  color: #0071e3;
  background: rgba(0, 113, 227, 0.12);
}

.task-steps-ui .active {
  color: #fff;
  background: #0071e3;
}

.tablet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tablet-actions button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: #fff;
  font-weight: 900;
  background: #0071e3;
}

.tablet-actions .ghost {
  color: #0071e3;
  background: rgba(0, 113, 227, 0.1);
}

.interface-notes {
  display: grid;
  gap: 12px;
}

.interface-notes article {
  border-top: 1px solid rgba(29, 29, 31, 0.1);
  padding-top: 16px;
}

.interface-notes strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.interface-notes p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

.robot-status-screen {
  display: grid;
  grid-template-columns: minmax(320px, 0.44fr) minmax(0, 0.56fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.robot-render-panel,
.robot-status-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 24px 72px rgba(56, 76, 108, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.robot-render-panel {
  position: relative;
  min-height: 680px;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 190, 180, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(20, 28, 38, 0.98), rgba(126, 138, 150, 0.45));
}

.robot-render-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.robot-id-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  padding: 18px;
  color: #fff;
  background: rgba(16, 24, 34, 0.62);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.robot-id-card span,
.robot-id-card strong,
.robot-id-card p {
  display: block;
}

.robot-id-card span {
  margin-bottom: 7px;
  color: rgba(125, 220, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.robot-id-card strong {
  font-size: 13px;
}

.robot-id-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.robot-status-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.status-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 18px;
  align-items: center;
}

.status-top span {
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.status-top h3 {
  margin: 10px 0;
  font-size: clamp(14px, 1.7vw, 22px);
  line-height: 1.08;
}

.status-top p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.6;
}

.battery-ring {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.94) 0 56%, transparent 57%),
    conic-gradient(#00bea6 0 72%, rgba(29, 29, 31, 0.08) 72% 100%);
}

.battery-ring strong,
.battery-ring span {
  display: block;
  grid-area: 1 / 1;
  text-align: center;
}

.battery-ring strong {
  margin-top: -14px;
  color: #1d1d1f;
  font-size: 15px;
}

.battery-ring span {
  margin-top: 34px;
  color: rgba(29, 29, 31, 0.5);
  font-size: 12px;
  font-weight: 800;
}

.status-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.status-metrics article {
  border-radius: 8px;
  padding: 16px;
  background: rgba(0, 113, 227, 0.07);
}

.status-metrics span,
.status-metrics strong {
  display: block;
}

.status-metrics span {
  margin-bottom: 8px;
  color: rgba(29, 29, 31, 0.5);
  font-size: 12px;
  font-weight: 800;
}

.status-metrics strong {
  font-size: 16px;
}

.sensor-stack {
  display: grid;
  gap: 12px;
}

.sensor-stack div {
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  padding-top: 14px;
}

.sensor-stack strong,
.sensor-stack span,
.sensor-stack i {
  display: block;
}

.sensor-stack strong {
  margin-bottom: 6px;
  font-size: 18px;
}

.sensor-stack span {
  color: rgba(29, 29, 31, 0.6);
  font-size: 14px;
}

.sensor-stack i {
  width: 100%;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #0071e3 var(--p), rgba(29, 29, 31, 0.08) var(--p));
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.status-actions button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: #fff;
  font-weight: 900;
  background: #0071e3;
}

.status-actions .ghost {
  color: #0071e3;
  background: rgba(0, 113, 227, 0.1);
}

.robot-workbench {
  display: grid;
  grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.robot-visual-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 190, 180, 0.18), transparent 28%),
    linear-gradient(180deg, #111823, #6d7a88);
  box-shadow: 0 28px 82px rgba(48, 67, 96, 0.12);
}

.robot-visual-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.robot-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.08), rgba(8, 12, 18, 0.58)),
    radial-gradient(circle at 50% 42%, transparent 0 22%, rgba(0, 0, 0, 0.18) 54%);
}

.robot-identity,
.robot-tag {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  color: #fff;
  background: rgba(15, 24, 36, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 46px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.robot-identity {
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
}

.robot-identity span,
.robot-identity strong,
.robot-identity p,
.robot-tag strong,
.robot-tag span {
  display: block;
}

.robot-identity span {
  margin-bottom: 8px;
  color: rgba(135, 228, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
}

.robot-identity strong {
  font-size: clamp(12px, 1.5vw, 17px);
  letter-spacing: 0;
}

.robot-identity p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.robot-tag {
  width: min(220px, 48%);
  padding: 12px 14px;
}

.robot-tag::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 54px;
  height: 1px;
  background: rgba(125, 220, 255, 0.72);
}

.robot-tag strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.robot-tag span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.tag-face {
  top: 84px;
  right: 20px;
}

.tag-face::before,
.tag-energy::before {
  right: 100%;
}

.tag-sensor {
  top: 238px;
  left: 20px;
}

.tag-sensor::before,
.tag-carry::before {
  left: 100%;
}

.tag-carry {
  top: 420px;
  left: 26px;
}

.tag-energy {
  top: 520px;
  right: 20px;
}

.robot-command-ui {
  display: grid;
  align-content: start;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  padding: clamp(20px, 3.4vw, 34px);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 113, 227, 0.13), transparent 32%),
    radial-gradient(circle at 90% 14%, rgba(0, 190, 180, 0.14), transparent 34%),
    rgba(250, 253, 255, 0.82);
  box-shadow: 0 28px 82px rgba(48, 67, 96, 0.1);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
}

.robot-command-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 122px;
  gap: 18px;
  align-items: start;
}

.robot-command-head span,
.panel-title span,
.robot-decision-card span,
.robot-control-bar span {
  color: #0071e3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.robot-command-head h3 {
  margin: 8px 0 10px;
  color: #1d1d1f;
  font-size: clamp(15px, 1.7vw, 23px);
  line-height: 1.06;
  letter-spacing: 0;
}

.robot-command-head p {
  margin: 0;
  color: rgba(29, 29, 31, 0.6);
  line-height: 1.6;
}

.robot-live-state {
  display: grid;
  width: 122px;
  height: 122px;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 56%, transparent 57%),
    conic-gradient(#16c6a7 0 72%, rgba(29, 29, 31, 0.08) 72% 100%);
}

.robot-live-state strong,
.robot-live-state span {
  display: block;
  grid-area: 1 / 1;
  text-align: center;
}

.robot-live-state strong {
  margin-top: -12px;
  color: #1d1d1f;
  font-size: 15px;
}

.robot-live-state span {
  margin-top: 34px;
  color: rgba(29, 29, 31, 0.54);
  font-size: 12px;
  font-weight: 800;
}

.robot-task-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.robot-task-rail span {
  min-height: 70px;
  padding: 16px 12px;
  color: rgba(29, 29, 31, 0.5);
  font-size: 13px;
  font-weight: 800;
  border-right: 1px solid rgba(29, 29, 31, 0.07);
}

.robot-task-rail span:last-child {
  border-right: 0;
}

.robot-task-rail .done {
  color: rgba(29, 29, 31, 0.72);
  background: rgba(0, 113, 227, 0.06);
}

.robot-task-rail .active {
  color: #fff;
  background: linear-gradient(135deg, #0071e3, #14b8d4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.robot-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 14px;
}

.robot-route-monitor,
.robot-decision-card,
.robot-feature-grid article,
.robot-control-bar {
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.robot-route-monitor {
  padding: 16px;
}

.panel-title strong {
  display: block;
  margin-top: 8px;
  color: #1d1d1f;
  font-size: 19px;
  line-height: 1.32;
}

.mini-factory-map {
  position: relative;
  min-height: 250px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(29, 29, 31, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(29, 29, 31, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(235, 243, 252, 0.96), rgba(247, 251, 255, 0.96));
  background-size: 40px 40px, 40px 40px, auto;
}

.map-zone {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 113, 227, 0.13);
  border-radius: 8px;
  color: rgba(29, 29, 31, 0.54);
  font-size: 12px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.58);
}

.zone-amr {
  left: 16px;
  bottom: 22px;
  width: 118px;
  height: 70px;
}

.zone-worker {
  left: 42%;
  top: 22px;
  width: 110px;
  height: 76px;
}

.zone-arm {
  right: 18px;
  top: 116px;
  width: 126px;
  height: 92px;
}

.map-path {
  position: absolute;
  left: 76px;
  right: 82px;
  bottom: 78px;
  height: 92px;
  border-bottom: 8px solid rgba(0, 113, 227, 0.72);
  border-right: 8px solid rgba(0, 113, 227, 0.72);
  border-radius: 0 0 44px 0;
}

.map-node {
  position: absolute;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  box-shadow: 0 10px 24px rgba(0, 113, 227, 0.22);
}

.node-start {
  left: 58px;
  bottom: 60px;
  background: #0071e3;
}

.node-robot {
  left: 47%;
  bottom: 112px;
  width: 52px;
  height: 52px;
  background: #16c6a7;
}

.node-worker {
  left: 55%;
  top: 70px;
  background: #ff3b30;
}

.node-target {
  right: 74px;
  top: 132px;
  background: #0071e3;
}

.robot-decision-card {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(0, 113, 227, 0.1), rgba(255, 255, 255, 0.74));
}

.robot-decision-card h4 {
  margin: 10px 0;
  color: #1d1d1f;
  font-size: 12px;
  line-height: 1.16;
}

.robot-decision-card p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.65;
}

.decision-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.decision-meta strong {
  border-radius: 8px;
  padding: 12px;
  color: #0071e3;
  background: rgba(255, 255, 255, 0.72);
}

.robot-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.robot-feature-grid article {
  min-height: 160px;
  padding: 18px;
}

.robot-feature-grid span,
.robot-feature-grid strong,
.robot-feature-grid p {
  display: block;
}

.robot-feature-grid span {
  color: rgba(0, 113, 227, 0.7);
  font-weight: 900;
}

.robot-feature-grid strong {
  margin: 16px 0 8px;
  color: #1d1d1f;
  font-size: 19px;
}

.robot-feature-grid p {
  margin: 0;
  color: rgba(29, 29, 31, 0.58);
  line-height: 1.55;
}

.robot-control-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
}

.robot-control-bar strong {
  display: block;
  margin-top: 5px;
  color: #1d1d1f;
}

.robot-control-bar button {
  border: 1px solid rgba(0, 113, 227, 0.14);
  border-radius: 999px;
  padding: 12px 16px;
  color: #0071e3;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.68);
}

.focus-analysis-grid em {
  display: block;
  margin-top: 18px;
  color: rgba(0, 113, 227, 0.76);
  font-style: normal;
  font-weight: 760;
}

.focus-journey {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.focus-journey article {
  position: relative;
  min-height: 260px;
  padding: 20px;
}

.focus-journey article::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -12px;
  width: 16px;
  height: 2px;
  background: rgba(0, 113, 227, 0.28);
}

.focus-journey article:last-child::after {
  content: none;
}

.focus-journey b {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0071e3;
}

.focus-journey strong,
.focus-journey span {
  display: block;
}

.focus-journey strong {
  margin-bottom: 10px;
  font-size: 10.5px;
}

@media (max-width: 980px) {
  .focus-hero,
  .focus-brief-grid,
  .focus-analysis-grid,
  .focus-output-grid,
  .focus-journey,
  .tablet-interface-showcase,
  .decision-grid,
  .robot-workbench,
  .robot-command-head,
  .robot-main-grid,
  .robot-feature-grid,
  .robot-control-bar,
  .robot-status-screen,
  .status-top,
  .status-metrics {
    grid-template-columns: 1fr;
  }

  .tablet-main {
    grid-template-columns: 1fr;
  }

  .tablet-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow-x: auto;
  }

  .risk-hero-card,
  .task-steps-ui {
    grid-template-columns: 1fr;
  }

  .robot-render-panel {
    min-height: 560px;
  }

  .robot-visual-card {
    min-height: 620px;
  }

  .robot-task-rail {
    grid-template-columns: 1fr;
  }

  .robot-task-rail span {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(29, 29, 31, 0.07);
  }

  .robot-control-bar button {
    width: 100%;
  }

  .focus-journey article {
    min-height: auto;
  }

  .focus-journey article::after {
    top: auto;
    right: auto;
    bottom: -12px;
    left: 38px;
    width: 2px;
    height: 16px;
  }
}

@media (max-width: 640px) {
  .focus-hero {
    width: min(100% - 32px, 1180px);
  }

  .robot-visual-card {
    min-height: 560px;
  }

  .robot-tag {
    width: calc(100% - 36px);
  }

  .robot-tag::before {
    content: none;
  }

  .tag-face,
  .tag-sensor,
  .tag-carry,
  .tag-energy {
    left: 18px;
    right: 18px;
  }

  .tag-face {
    top: 86px;
  }

  .tag-sensor {
    top: 166px;
  }

  .tag-carry {
    top: 246px;
  }

  .tag-energy {
    top: 326px;
  }

  .mini-factory-map {
    min-height: 230px;
  }
}

@media (max-width: 980px) {
  .humanoid-hero,
  .device-pair {
    grid-template-columns: 1fr;
  }

  .humanoid-hero-visual {
    min-height: 820px;
  }

  .robot-stage {
    inset: 28px 0 auto;
    width: 100%;
    height: 480px;
  }

  .software-stack {
    inset: auto 24px 28px;
    width: auto;
  }

  .research-canvas,
  .humanoid-screen-grid {
    grid-template-columns: 1fr;
  }

  .screen-card.large {
    grid-column: auto;
  }

  .analysis-row {
    grid-template-columns: 1fr;
  }

  .analysis-row span {
    padding: 14px 18px;
  }

  .factory-map {
    min-height: 760px;
  }

  .factory-render-map {
    min-height: auto;
  }

  .factory-agent-blueprint {
    aspect-ratio: 1 / 1.1;
  }

  .factory-agent-blueprint > img {
    object-position: 48% center;
  }

  .blueprint-title {
    left: 4%;
    top: 4%;
    max-width: 72%;
  }

  .blueprint-panel {
    display: none;
  }

  .blueprint-task {
    grid-template-columns: 30px minmax(0, 1fr);
    max-width: 270px;
    border-radius: 24px;
    padding: 8px 12px 8px 8px;
  }

  .blueprint-task b {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .blueprint-task.logistics {
    left: 3%;
    top: 24%;
  }

  .blueprint-task.exception {
    left: 26%;
    top: 16%;
  }

  .blueprint-task.safety {
    right: 3%;
    top: 35%;
  }

  .blueprint-task.quality {
    right: 3%;
    bottom: 25%;
  }

  .blueprint-task.assist {
    left: 4%;
    bottom: 28%;
  }

  .blueprint-loop {
    overflow-x: auto;
    gap: 8px;
    padding: 12px;
  }

  .blueprint-loop i {
    flex: 0 0 14px;
  }

  .agent-image-note {
    grid-template-columns: 1fr;
  }

  .line-zone {
    left: 5%;
    top: 12%;
    width: 90%;
  }

  .arm-zone {
    right: 5%;
    top: 28%;
    width: 38%;
  }

  .charge-zone {
    right: 5%;
    bottom: 8%;
    width: 36%;
  }

  .factory-tablet {
    left: 5%;
    top: 31%;
    width: 44%;
  }

  .material-cart {
    left: 7%;
    bottom: 16%;
  }

  .factory-worker.w1 {
    left: 46%;
    top: 49%;
  }

  .factory-worker.w2 {
    left: 24%;
    bottom: 32%;
  }

  .factory-humanoid {
    left: 55%;
    top: 58%;
  }

  .task-chip {
    font-size: 12px;
  }

  .task-chip.c1 {
    left: 6%;
    top: 24%;
  }

  .task-chip.c2 {
    left: 52%;
    top: 54%;
  }

  .task-chip.c3 {
    left: 36%;
    top: 66%;
  }

  .task-chip.c4 {
    right: 6%;
    top: 51%;
  }

  .task-chip.c5 {
    right: 6%;
    bottom: 27%;
  }

  .render-step {
    grid-template-columns: 30px minmax(0, 1fr);
    max-width: 190px;
    padding: 6px 10px 6px 6px;
  }

  .render-step b {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .render-step.p1 {
    left: auto;
    right: 20%;
    top: auto;
    bottom: 16%;
  }

  .render-step.p2 {
    left: 50%;
    bottom: 23%;
  }

  .render-step.p3 {
    left: 35%;
    top: 52%;
  }

  .render-step.p4 {
    left: 10%;
    right: auto;
    top: 29%;
  }

  .render-step.p5 {
    right: 4%;
    top: 28%;
    bottom: auto;
  }

  .scene-callout {
    display: none;
  }

  .render-legend {
    display: none;
  }

  .ued-case-summary,
  .summary-grid,
  .painpoint-grid,
  .journey-map,
  .value-design-grid {
    grid-template-columns: 1fr;
  }

  .painpoint-grid article,
  .journey-stage,
  .value-design-grid article {
    min-height: auto;
  }

  .journey-stage::after {
    top: auto;
    right: auto;
    bottom: -12px;
    left: 40px;
    width: 2px;
    height: 16px;
  }
}

@media (max-width: 640px) {
  .humanoid-hero {
    width: min(100% - 32px, 1280px);
  }

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

  .mock-console,
  .console-ui {
    grid-template-columns: 1fr;
  }

  .factory-map {
    min-height: 900px;
  }

  .factory-render-map {
    aspect-ratio: 1 / 1.18;
    min-height: auto;
  }

  .factory-agent-blueprint {
    aspect-ratio: 1 / 1.34;
  }

  .factory-agent-blueprint > img {
    object-position: 50% center;
  }

  .blueprint-title {
    right: 4%;
    max-width: none;
  }

  .blueprint-title p {
    display: none;
  }

  .blueprint-task {
    max-width: 160px;
  }

  .blueprint-task span {
    display: none;
  }

  .blueprint-task.logistics {
    top: 20%;
  }

  .blueprint-task.exception {
    left: 4%;
    top: 34%;
  }

  .blueprint-task.safety {
    right: 4%;
    top: 42%;
  }

  .blueprint-task.quality {
    right: 4%;
    bottom: 26%;
  }

  .blueprint-task.assist {
    left: 4%;
    bottom: 36%;
  }

  .blueprint-loop {
    display: none;
  }

  .factory-render-map img {
    object-position: 52% center;
  }

  .arm-zone,
  .charge-zone,
  .factory-tablet {
    width: auto;
    left: 6%;
    right: 6%;
  }

  .arm-zone {
    top: 29%;
  }

  .factory-tablet {
    top: 48%;
  }

  .charge-zone {
    bottom: 6%;
  }

  .material-cart {
    bottom: 28%;
  }

  .factory-worker.w1 {
    left: 67%;
    top: 44%;
  }

  .factory-worker.w2 {
    left: 16%;
    bottom: 23%;
  }

  .factory-humanoid {
    left: 58%;
    top: 66%;
  }

  .task-chip {
    max-width: 160px;
    white-space: normal;
  }

  .task-chip.c1 {
    top: 43%;
  }

  .task-chip.c2 {
    left: 50%;
    top: 62%;
  }

  .task-chip.c3 {
    left: 9%;
    top: 70%;
  }

  .task-chip.c4 {
    top: 39%;
  }

  .task-chip.c5 {
    bottom: 20%;
  }

  .factory-render-map .factory-routes path {
    stroke-width: 10;
  }

  .render-step {
    max-width: 142px;
  }

  .render-step span {
    font-size: 11px;
  }

  .render-step.p1 {
    left: auto;
    right: 4%;
    top: auto;
    bottom: 17%;
  }

  .render-step.p2 {
    left: 4%;
    bottom: 26%;
  }

  .render-step.p3 {
    left: 35%;
    top: 54%;
  }

  .render-step.p4 {
    left: 4%;
    right: auto;
    top: 20%;
  }

  .render-step.p5 {
    right: 4%;
    top: 7%;
    bottom: auto;
  }
}

.o3-html-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.o3-page-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 36px);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 113, 227, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(245, 249, 255, 0.46));
  box-shadow: 0 22px 70px rgba(65, 78, 114, 0.08);
  backdrop-filter: blur(20px) saturate(170%);
}

.o3-page-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -46px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 50%;
}

.o3-page-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
}

.o3-page-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(12px, 1.5vw, 17px);
  line-height: 1.1;
}

.o3-page-card p {
  max-width: 560px;
  color: rgba(29, 29, 31, 0.66);
}

.o3-page-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.o3-page-card li {
  color: rgba(29, 29, 31, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .o3-html-card-grid {
    grid-template-columns: 1fr;
  }
}

.o3-case-page {
  overflow: hidden;
  background: #eef6fb;
  color: #2d3035;
}

.o3-hero,
.o3-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.o3-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(32px, 5vw, 82px);
  align-items: center;
  min-height: calc(100vh - 58px);
  padding: clamp(90px, 12vw, 150px) 0;
}

.o3-hero-copy h1,
.o3-section-title h2,
.scene-title h2,
.iteration-copy h2 {
  margin: 0;
  font-size: clamp(21px, 2.6vw, 38px);
  line-height: 1.02;
  letter-spacing: 0;
}

.o3-hero-copy p,
.o3-section-title p,
.iteration-copy p {
  max-width: 760px;
  color: rgba(45, 48, 53, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.o3-hero-points {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.o3-hero-points div,
.o3-overview-grid article,
.competitor-grid article,
.matrix-grid div {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 54px rgba(52, 91, 118, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
}

.o3-hero-points div {
  padding: 16px 18px;
}

.o3-hero-points strong,
.o3-hero-points span {
  display: block;
}

.o3-hero-points strong {
  margin-bottom: 4px;
  color: #0071e3;
}

.o3-device-stage {
  position: relative;
  min-height: 520px;
}

.o3-laptop {
  position: absolute;
  left: 0;
  right: 90px;
  top: 70px;
  border: 10px solid #111;
  border-bottom-width: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(35, 70, 100, 0.18);
}

.o3-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.o3-browser-bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f05d5e;
}

.o3-browser-bar i:nth-child(2) {
  background: #f6bf4f;
}

.o3-browser-bar i:nth-child(3) {
  background: #62c554;
}

.o3-browser-bar span {
  margin-left: 10px;
  color: #8a9099;
  font-size: 12px;
}

.o3-screen-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 12px;
  padding: 18px;
}

.o3-screen-grid div {
  min-height: 58px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.11), rgba(255, 255, 255, 0.88));
}

.o3-screen-grid .wide {
  grid-column: span 2;
}

.o3-phone {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 128px;
  height: 250px;
  border: 8px solid #111;
  border-radius: 26px;
  padding: 18px 10px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(35, 70, 100, 0.18);
}

.o3-phone div {
  height: 36px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.12), rgba(241, 247, 255, 0.88));
}

.o3-section {
  padding: clamp(90px, 12vw, 150px) 0;
}

.o3-section-title,
.scene-title {
  margin-bottom: 42px;
}

.o3-section-title span,
.scene-title span,
.iteration-copy span {
  display: block;
  margin-bottom: 12px;
  color: #7b828a;
  font-weight: 800;
}

.o3-overview-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 16px;
}

.o3-overview-grid article,
.competitor-grid article,
.matrix-grid div {
  padding: clamp(24px, 3vw, 36px);
}

.o3-overview-grid h3,
.competitor-grid h3,
.matrix-grid strong {
  display: block;
  margin: 0 0 14px;
  font-size: 13px;
}

.concept-slide {
  min-height: 820px;
}

.concept-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.concept-values {
  display: grid;
  gap: 52px;
}

.concept-values div {
  position: relative;
  padding-left: 22px;
}

.concept-values div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.concept-values strong {
  display: block;
  font-size: 14px;
}

.concept-values span {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 8px;
  padding: 4px 22px;
  background: #62666b;
  color: #fff;
  font-weight: 800;
}

.concept-map {
  position: relative;
  min-height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.42), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(0, 180, 205, 0.1));
}

.concept-map::before {
  content: "";
  position: absolute;
  inset: 36px 120px;
  border: 1px dashed rgba(0, 0, 0, 0.42);
  border-radius: 50%;
}

.concept-core {
  position: absolute;
  left: 8%;
  top: 46%;
  font-size: 14px;
  font-weight: 900;
}

.concept-core small {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.concept-mid,
.concept-out {
  position: absolute;
  display: grid;
  gap: 42px;
  font-size: 14px;
  font-weight: 900;
}

.concept-mid {
  left: 30%;
  top: 24%;
}

.concept-out {
  right: 4%;
  top: 24%;
}

.concept-out em {
  margin-left: 18px;
  color: rgba(45, 48, 53, 0.72);
  font-style: normal;
  font-weight: 500;
}

.scene-model {
  position: relative;
  min-height: 880px;
  padding: clamp(60px, 8vw, 90px) max(24px, calc((100vw - 1280px) / 2));
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.26), transparent 16%),
    repeating-radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.42) 0 2px, transparent 2px 26px),
    #050608;
  color: #fff;
}

.scene-radar {
  position: relative;
  width: min(760px, 90vw);
  aspect-ratio: 1;
  margin: 40px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06) 38%, transparent 39%);
}

.radar-core {
  position: absolute;
  inset: 43% auto auto 43%;
  font-size: 16px;
  font-weight: 900;
}

.scene-radar .axis,
.scene-radar .inner {
  position: absolute;
  font-weight: 900;
  text-align: center;
}

.scene-radar .inner {
  font-size: 17px;
}

.a1 { left: 47%; top: -4%; }
.a2 { right: 10%; top: 12%; }
.a3 { right: -8%; top: 42%; }
.a4 { right: 4%; bottom: 10%; }
.a5 { left: 46%; bottom: -6%; }
.a6 { left: 8%; bottom: 10%; }
.a7 { left: -6%; top: 43%; }
.a8 { left: 12%; top: 12%; }
.i1 { left: 45%; top: 14%; }
.i2 { right: 22%; top: 26%; }
.i3 { right: 24%; top: 45%; }
.i4 { right: 26%; bottom: 28%; }
.i5 { left: 45%; bottom: 16%; }
.i6 { left: 23%; bottom: 28%; }
.i7 { left: 20%; top: 45%; }
.i8 { left: 22%; top: 26%; }

.research-flow,
.competitor-flow,
.process-chain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 36px 0;
}

.research-flow div,
.competitor-flow span,
.process-chain span {
  position: relative;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.research-flow strong,
.research-flow span {
  display: block;
}

.research-flow span {
  margin-top: 14px;
  color: rgba(45, 48, 53, 0.65);
  line-height: 1.8;
}

.research-table {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1.8fr 2fr;
  overflow: hidden;
  border: 1px dashed rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
}

.research-table div {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.16);
  padding: 14px 18px;
}

.research-table .head {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 900;
}

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

.competitor-grid article {
  border-style: dashed;
}

.competitor-grid strong,
.competitor-grid span {
  display: block;
}

.competitor-grid strong {
  margin-top: 24px;
}

.schedule-board {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  border-top: 4px solid #6b6f73;
  border-left: 4px solid #6b6f73;
  border-radius: 38px 0 0 0;
  padding: 28px 0 40px 100px;
  min-height: 420px;
}

.schedule-board .week {
  font-weight: 900;
  text-align: center;
}

.schedule-board span {
  grid-column: var(--x) / span var(--w);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.iteration-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 60px;
  align-items: center;
}

.iteration-paper {
  transform: rotate(-10deg);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(60, 70, 80, 0.14);
}

.paper-title {
  margin-bottom: 18px;
  text-align: center;
  font-weight: 900;
}

.paper-lines i {
  display: block;
  height: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

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

.matrix-grid span {
  color: rgba(45, 48, 53, 0.66);
}

@media (max-width: 980px) {
  .o3-hero,
  .concept-layout,
  .iteration-slide {
    grid-template-columns: 1fr;
  }

  .o3-device-stage {
    min-height: 430px;
  }

  .o3-overview-grid,
  .competitor-grid,
  .matrix-grid {
    grid-template-columns: 1fr;
  }

  .research-flow,
  .competitor-flow,
  .process-chain {
    flex-direction: column;
  }

  .research-flow div,
  .competitor-flow span,
  .process-chain span {
    width: 100%;
  }

  .research-table {
    grid-template-columns: 1fr;
  }

  .schedule-board {
    grid-template-columns: 1fr;
    padding-left: 24px;
  }

  .schedule-board span {
    grid-column: 1;
  }
}

.o3-safe-page {
  padding: 72px 0 120px;
  background:
    radial-gradient(circle at 80% 8%, rgba(0, 180, 205, 0.12), transparent 28%),
    linear-gradient(180deg, #f5f8fb, #eef5fa);
}

.o3-case-intro,
.o3-slide-card {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.o3-case-intro {
  padding: 86px 0 54px;
}

.o3-case-intro h1 {
  max-width: 920px;
  margin: 14px 0 18px;
  font-size: clamp(21px, 2.7vw, 38px);
  line-height: 1.02;
}

.o3-case-intro p {
  max-width: 860px;
  color: rgba(45, 48, 53, 0.68);
  font-size: 20px;
}

.o3-intro-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.o3-intro-meta div {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 48px rgba(52, 91, 118, 0.08);
}

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

.o3-intro-meta strong {
  margin-bottom: 5px;
  color: #0071e3;
}

.o3-slide-card {
  min-height: min(760px, calc((100vw - 48px) * 0.64));
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  padding: clamp(34px, 5vw, 58px);
  background:
    radial-gradient(circle at 86% 10%, rgba(0, 180, 205, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 26px 82px rgba(52, 91, 118, 0.1);
  backdrop-filter: blur(20px) saturate(170%);
}

.o3-slide-header {
  margin-bottom: 34px;
}

.o3-slide-header span,
.iteration-html-copy > span {
  display: block;
  margin-bottom: 10px;
  color: #8a9099;
  font-weight: 800;
}

.o3-slide-header h2,
.iteration-html-copy h2 {
  margin: 0;
  font-size: clamp(17px, 2.4vw, 29px);
  line-height: 1.02;
}

.o3-slide-header p,
.iteration-html-copy p {
  max-width: 900px;
  color: rgba(45, 48, 53, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.overview-compose {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 48px;
  align-items: center;
}

.overview-copy h3 {
  font-size: clamp(15px, 2vw, 23px);
}

.overview-copy p {
  color: rgba(45, 48, 53, 0.74);
  font-size: 18px;
  line-height: 1.8;
}

.quote-note {
  margin-top: 42px;
  color: rgba(45, 48, 53, 0.42);
  font-size: 13px;
  line-height: 1.35;
}

.overview-devices {
  position: relative;
  min-height: 380px;
}

.device-laptop {
  position: absolute;
  left: 0;
  right: 86px;
  top: 50px;
  border: 8px solid #101214;
  border-bottom-width: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 76px rgba(20, 40, 60, 0.14);
}

.device-topbar,
.device-banner,
.device-list i,
.device-side i,
.device-phone i {
  display: block;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.12), rgba(245, 249, 255, 0.94));
}

.device-topbar {
  height: 28px;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.device-banner {
  height: 70px;
  margin: 16px;
}

.device-list {
  display: grid;
  gap: 10px;
  margin: 0 150px 18px 16px;
}

.device-list i {
  height: 22px;
}

.device-side {
  position: absolute;
  right: 16px;
  bottom: 18px;
  display: grid;
  gap: 10px;
  width: 112px;
}

.device-side i {
  height: 44px;
}

.device-phone {
  position: absolute;
  right: 0;
  bottom: 38px;
  width: 116px;
  height: 226px;
  border: 7px solid #101214;
  border-radius: 24px;
  padding: 18px 10px;
  background: #fff;
  box-shadow: 0 24px 54px rgba(20, 40, 60, 0.14);
}

.device-phone i {
  height: 34px;
  margin-bottom: 10px;
}

.overview-problems {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.overview-problems div {
  border-left: 3px solid #0071e3;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.5);
}

.overview-problems strong,
.overview-problems span {
  display: block;
}

.overview-problems strong {
  margin-bottom: 8px;
}

.concept-compose {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.concept-list {
  display: grid;
  gap: 42px;
}

.concept-list div {
  padding-left: 22px;
  border-left: 4px solid #2d3035;
}

.concept-list strong {
  display: block;
  font-size: 14px;
}

.concept-list span {
  display: inline-flex;
  margin-top: 8px;
  border-radius: 8px;
  padding: 5px 22px;
  background: #62666b;
  color: #fff;
  font-weight: 800;
}

.concept-diagram {
  position: relative;
  min-height: 420px;
}

.concept-diagram::before {
  content: "";
  position: absolute;
  inset: 36px 96px;
  border: 1px dashed rgba(45, 48, 53, 0.5);
  border-radius: 50%;
}

.concept-left,
.concept-center,
.concept-right {
  position: absolute;
}

.concept-left {
  left: 2%;
  top: 44%;
  font-size: 15px;
  font-weight: 900;
}

.concept-left small {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.concept-center,
.concept-right {
  display: grid;
  gap: 38px;
  top: 22%;
  font-size: 14px;
  font-weight: 900;
}

.concept-center {
  left: 30%;
}

.concept-right {
  right: 0;
}

.concept-right em {
  margin-left: 12px;
  color: rgba(45, 48, 53, 0.68);
  font-style: normal;
  font-weight: 500;
}

.page-scene {
  color: #fff;
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.24), transparent 16%),
    repeating-radial-gradient(circle at 50% 55%, rgba(255, 255, 255, 0.34) 0 2px, transparent 2px 27px),
    #050608;
}

.scene-compose {
  display: grid;
  place-items: center;
}

.scene-radar-html {
  position: relative;
  width: min(720px, 88vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06) 40%, transparent 41%);
}

.scene-core {
  position: absolute;
  left: 44%;
  top: 45%;
  font-size: 17px;
  font-weight: 900;
}

.scene-axis,
.scene-inner {
  position: absolute;
  font-weight: 900;
  text-align: center;
}

.scene-inner {
  font-size: 16px;
}

.scene-axis.top { left: 47%; top: -4%; }
.scene-axis.right-top { right: 8%; top: 12%; }
.scene-axis.right { right: -8%; top: 42%; }
.scene-axis.right-bottom { right: 0; bottom: 8%; }
.scene-axis.bottom { left: 46%; bottom: -6%; }
.scene-axis.left-bottom { left: 9%; bottom: 10%; }
.scene-axis.left { left: -6%; top: 43%; }
.scene-axis.left-top { left: 10%; top: 12%; }
.scene-inner.i1 { left: 45%; top: 16%; }
.scene-inner.i2 { right: 24%; top: 28%; }
.scene-inner.i3 { right: 25%; top: 46%; }
.scene-inner.i4 { right: 27%; bottom: 29%; }
.scene-inner.i5 { left: 45%; bottom: 17%; }
.scene-inner.i6 { left: 24%; bottom: 29%; }
.scene-inner.i7 { left: 20%; top: 46%; }
.scene-inner.i8 { left: 22%; top: 28%; }

.research-flow-html,
.competitor-process,
.process-chain-html {
  display: flex;
  gap: 10px;
  margin: 30px 0;
}

.research-flow-html div,
.competitor-process span,
.process-chain-html span {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.research-flow-html strong,
.research-flow-html span {
  display: block;
}

.research-flow-html span {
  margin-top: 12px;
  color: rgba(45, 48, 53, 0.62);
  line-height: 1.8;
}

.questionnaire-html {
  overflow: hidden;
  border: 1px dashed rgba(0, 0, 0, 0.24);
  border-radius: 8px;
}

.questionnaire-html h3 {
  margin: 0;
  padding: 18px 22px;
}

.question-row {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1.7fr 2fr;
}

.question-row span {
  border-top: 1px dashed rgba(0, 0, 0, 0.16);
  padding: 12px 16px;
}

.question-row.head span {
  font-weight: 900;
}

.analysis-layers {
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.analysis-layers p {
  margin: 0;
  color: rgba(45, 48, 53, 0.72);
}

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

.competitor-cards-html article {
  border: 1px dashed rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.68);
}

.competitor-cards-html h3 {
  font-size: 14px;
}

.competitor-cards-html strong,
.competitor-cards-html span {
  display: block;
}

.competitor-cards-html strong {
  margin-top: 20px;
}

.gantt-html {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
  border-top: 4px solid #6b6f73;
  border-left: 4px solid #6b6f73;
  border-radius: 38px 0 0 0;
  padding: 28px 0 38px 80px;
}

.gantt-html .week {
  font-weight: 900;
  text-align: center;
}

.gantt-html span {
  grid-column: var(--x) / span var(--w);
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.page-iteration {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 50px;
  align-items: center;
}

.iteration-html-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(17px, 2.4vw, 29px);
}

.iteration-html-copy p {
  color: rgba(45, 48, 53, 0.74);
  line-height: 1.85;
}

.research-paper-html {
  transform: rotate(-10deg);
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 70px rgba(45, 48, 53, 0.14);
}

.research-paper-html strong {
  display: block;
  margin-bottom: 18px;
  text-align: center;
}

.research-paper-html i {
  display: block;
  height: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

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

.interface-collage-html div {
  min-height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(236, 246, 255, 0.46));
  box-shadow: 0 18px 54px rgba(52, 91, 118, 0.08);
}

.interface-collage-html strong,
.interface-collage-html span {
  display: block;
}

.interface-collage-html strong {
  margin-bottom: 10px;
  font-size: 11px;
}

.o3-final-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 82px rgba(52, 91, 118, 0.12);
}

.o3-final-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .o3-intro-meta,
  .overview-compose,
  .concept-compose,
  .page-iteration {
    grid-template-columns: 1fr;
  }

  .research-flow-html,
  .competitor-process,
  .process-chain-html {
    flex-direction: column;
  }

  .question-row,
  .competitor-cards-html,
  .interface-collage-html {
    grid-template-columns: 1fr;
  }

  .gantt-html {
    grid-template-columns: 1fr;
    padding-left: 24px;
  }

  .gantt-html span {
    grid-column: 1;
  }
}

/* O3 Sketch-faithful pass */
.o3-safe-page {
  padding-top: 72px;
}

.o3-slide-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: auto;
  padding: clamp(28px, 4.2vw, 56px);
  background-color: #eef5fa;
  background-image: url("../assets/sketch-o3/0203ab6f487a7cd9d790acf1a335c1717969867f.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
}

.o3-slide-header {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(20px, 3vw, 34px);
}

.o3-slide-header h2,
.iteration-html-copy h2 {
  font-size: clamp(14px, 2.05vw, 23px);
}

.o3-slide-header span,
.iteration-html-copy > span {
  color: rgba(45, 48, 53, 0.48);
}

.page-overview {
  background-image:
    url("../assets/sketch-o3/25f99f966aaf5eb3fd372050367728de4c9de9d7.png"),
    url("../assets/sketch-o3/0203ab6f487a7cd9d790acf1a335c1717969867f.png");
  background-size: auto 100%, auto 100%;
  background-position: right center, left center;
}

.page-concept {
  background-image:
    url("../assets/sketch-o3/fd84911ce2a5fc91aaab740806af4a41e9e610e7.png"),
    url("../assets/sketch-o3/491dd6d2ed877bc78712b41b13f4d6200a086b21.png"),
    url("../assets/sketch-o3/0203ab6f487a7cd9d790acf1a335c1717969867f.png");
  background-size: auto 120%, auto 100%, auto 100%;
  background-position: right -80px top -40px, right center, left center;
}

.page-scene {
  background-image:
    url("../assets/sketch-o3/b4f191e3b5e928a1b469b31696d96245d4f7f874.png"),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.24), transparent 16%),
    repeating-radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.34) 0 2px, transparent 2px 27px);
  background-color: #050608;
  background-size: cover, auto, auto;
  background-position: center;
}

.page-research,
.page-schedule {
  background-image: url("../assets/sketch-o3/0203ab6f487a7cd9d790acf1a335c1717969867f.png");
  background-size: auto 100%;
  background-position: left center;
}

.page-competitive {
  background-image: url("../assets/sketch-o3/a410ad91600e7e91c7a2cce0ccc936786f573e3f.png");
  background-size: cover;
  background-position: center;
}

.page-schedule::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 72%;
  background-image: url("../assets/sketch-o3/fe9ffecf9861817893471c666d7fa15e56ab3f0f.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 108% auto;
  opacity: 0.22;
  pointer-events: none;
}

.page-iteration {
  background-image:
    url("../assets/sketch-o3/ceeec921b3205146d013813be43bbb47e18e924c.png"),
    url("../assets/sketch-o3/0203ab6f487a7cd9d790acf1a335c1717969867f.png");
  background-size: auto 100%, auto 100%;
  background-position: right center, left center;
}

.page-iteration::after {
  content: "";
  position: absolute;
  inset: -12% -6% -12% auto;
  width: 52%;
  background-image: url("../assets/sketch-o3/aef382a78a9aaf0e42ba62e62ad85336cb103cad.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
}

.overview-compose,
.concept-compose,
.research-flow-html,
.questionnaire-html,
.analysis-layers,
.competitor-process,
.competitor-cards-html,
.process-chain-html,
.gantt-html,
.iteration-html-copy,
.research-paper-html,
.o3-final-image {
  position: relative;
  z-index: 1;
}

.overview-compose {
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(22px, 4vw, 44px);
}

.overview-copy h3 {
  font-size: clamp(13px, 1.9vw, 20px);
}

.overview-copy p {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.75;
}

.overview-problems {
  position: relative;
  z-index: 1;
}

.concept-list {
  gap: clamp(22px, 4vw, 42px);
}

.concept-list strong {
  font-size: clamp(11px, 1.5vw, 15px);
}

.concept-diagram {
  min-height: 360px;
}

.concept-center,
.concept-right {
  font-size: clamp(20px, 1.5vw, 20px);
}

.scene-radar-html {
  width: min(620px, 72vw);
}

.research-flow-html {
  margin: 18px 0 22px;
}

.research-flow-html div {
  padding: 10px 12px;
}

.research-flow-html span,
.question-row span {
  font-size: clamp(11px, 1.1vw, 14px);
}

.questionnaire-html h3 {
  padding: 12px 18px;
}

.question-row span {
  padding: 9px 12px;
}

.analysis-layers {
  max-width: 560px;
  gap: 5px;
}

.analysis-layers p,
.competitor-cards-html p,
.competitor-cards-html span {
  font-size: clamp(12px, 1.25vw, 15px);
  line-height: 1.65;
}

.competitor-cards-html {
  position: absolute;
  right: clamp(28px, 4.2vw, 56px);
  bottom: clamp(28px, 4.2vw, 56px);
  width: 50%;
}

.competitor-cards-html article {
  padding: clamp(18px, 2.4vw, 28px);
}

.competitor-cards-html h3 {
  font-size: clamp(20px, 1.2vw, 20px);
}

.process-chain-html {
  margin-top: 20px;
}

.process-chain-html span {
  display: grid;
  min-height: 58px;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
}

.gantt-html {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  min-height: 360px;
  padding: 26px 0 28px 84px;
  background: rgba(255, 255, 255, 0.25);
}

.gantt-html span {
  font-size: clamp(10px, 1vw, 13px);
}

.page-iteration {
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
}

.iteration-html-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.iteration-html-copy p {
  font-size: clamp(13px, 1.35vw, 17px);
}

.research-paper-html {
  position: relative;
  z-index: 1;
}

.o3-final-image {
  margin-top: 26px;
}

@media (max-width: 980px) {
  .o3-slide-card {
    aspect-ratio: auto;
    min-height: 720px;
  }

  .competitor-cards-html {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
  }
}

/* O3 continuous reading flow */
.o3-safe-page {
  padding: 72px 0 132px;
  background:
    radial-gradient(circle at 80% 6%, rgba(0, 180, 205, 0.1), transparent 26%),
    linear-gradient(180deg, #f6f9fc 0%, #eef5fa 46%, #f7fbfd 100%);
}

.o3-safe-page .o3-case-intro {
  padding: clamp(76px, 10vw, 118px) 0 clamp(42px, 7vw, 78px);
}

.o3-safe-page .o3-slide-card {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  aspect-ratio: auto;
  min-height: auto;
  padding: clamp(74px, 9vw, 118px) clamp(14px, 3vw, 34px);
  background-color: transparent;
  background-repeat: no-repeat;
  isolation: isolate;
}

.o3-safe-page .o3-slide-card + .o3-slide-card {
  border-top: 0;
}

.o3-safe-page .o3-slide-card::before {
  content: none;
}

.o3-safe-page .page-scene::before {
  content: none;
}

.o3-safe-page .page-matrix::before {
  content: none;
}

.o3-safe-page .page-overview {
  background-size: min(54vw, 640px) auto, auto 86%;
  background-position: right 4% center, left center;
}

.o3-safe-page .page-concept {
  background-size: min(54vw, 620px) auto, min(48vw, 560px) auto, auto 86%;
  background-position: right -4% top 8%, right 4% center, left center;
}

.o3-safe-page .page-scene {
  background-size: cover, auto, auto;
  background-position: center;
  padding-top: clamp(82px, 10vw, 128px);
  padding-bottom: clamp(82px, 10vw, 128px);
}

.o3-safe-page .page-research,
.o3-safe-page .page-schedule {
  background-size: auto 82%;
}

.o3-safe-page .page-competitive {
  background-size: cover;
}

.o3-safe-page .page-iteration {
  background-size: min(50vw, 620px) auto, auto 86%;
  background-position: right 2% center, left center;
}

.o3-safe-page .o3-final-image {
  border-radius: 18px;
}

@media (max-width: 980px) {
  .o3-safe-page .o3-slide-card {
    width: min(100% - 32px, 720px);
    padding: 64px 0;
  }

  .o3-safe-page .o3-slide-card::before {
    content: none;
  }

  .o3-safe-page .page-overview,
  .o3-safe-page .page-concept,
  .o3-safe-page .page-research,
  .o3-safe-page .page-schedule,
  .o3-safe-page .page-iteration {
    background-size: auto 42%, auto 50%;
    background-position: right top, left center;
  }
}

.cobot-case {
  background:
    radial-gradient(circle at 16% 4%, rgba(0, 113, 227, 0.13), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(28, 201, 181, 0.12), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 36%, #f4f8fd 100%);
}

.cobot-hero {
  display: block;
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
  padding: clamp(116px, 12vw, 170px) 0 clamp(58px, 8vw, 96px);
}

.cobot-hero h1 {
  max-width: none;
  margin: 16px 0 22px;
  color: #1d1d1f;
  font-size: 62px;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
}

.cobot-hero p {
  max-width: none;
  margin: 0;
  color: rgba(29, 29, 31, 0.64);
  font-size: clamp(18px, 1vw, 18px);
  line-height: 1.58;
}

.cobot-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.cobot-hero-tags span {
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  color: #0071e3;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 10px 28px rgba(0, 113, 227, 0.08);
}

.cobot-case #background {
  padding-bottom: 0;
}

.cobot-product-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    radial-gradient(circle at 46% 22%, rgba(76, 178, 255, 0.28), transparent 28%),
    linear-gradient(145deg, #172638, #34495e 54%, #eef7ff);
  box-shadow: 0 28px 84px rgba(33, 54, 83, 0.16);
}

.cobot-product-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 18px;
}

.cobot-video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.62fr);
  gap: clamp(18px, 3vw, 32px);
  align-items: stretch;
}

.detail-cobot-video {
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: 0 30px 92px rgba(33, 54, 83, 0.14);
}

.detail-cobot-video video {
  object-fit: contain;
  object-position: center;
  transform: none;
  background: #101114;
}

.cobot-video-notes {
  display: grid;
  gap: 14px;
}

.cobot-video-notes article {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 22px;
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 113, 227, 0.06), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5));
  box-shadow: 0 22px 70px rgba(65, 78, 114, 0.08);
}

.cobot-video-notes strong {
  display: block;
  color: #1d1d1f;
  font-size: 20px;
  line-height: 1.22;
}

.cobot-video-notes p {
  margin: 10px 0 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 15px;
  line-height: 1.55;
}

.stage-card {
  position: absolute;
  max-width: 260px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  background: rgba(13, 27, 42, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}

.stage-card strong,
.stage-card span {
  display: block;
}

.stage-card strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.stage-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.stage-card.top {
  top: 22px;
  left: 22px;
}

.stage-card.bottom {
  right: 22px;
  bottom: 22px;
}

.background-card-grid,
.cobot-context-grid,
.cobot-persona-board,
.cobot-value-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.background-card,
.cobot-context-grid article,
.cobot-pain-matrix article,
.cobot-persona-board article,
.mapping-lane,
.screen-feature,
.cobot-value-panel article {
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 58px rgba(48, 67, 96, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.cobot-context-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
}

.background-card {
  display: grid;
  align-content: start;
  min-height: 0;
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 30px) 20px;
}

.background-card span {
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.background-card strong {
  display: block;
  margin-top: 28px;
  color: #1d1d1f;
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 1.16;
}

.background-card p {
  margin: 18px 0 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 16px;
  line-height: 1.62;
}

.cobot-context-grid span,
.cobot-value-panel span,
.screen-feature span,
.cobot-persona-board span {
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.cobot-context-grid strong,
.cobot-context-grid p,
.cobot-pain-matrix strong,
.cobot-pain-matrix p,
.mapping-lane strong,
.mapping-lane p,
.cobot-value-panel strong,
.cobot-value-panel p {
  display: block;
}

.cobot-context-grid strong {
  margin: 48px 0 14px;
  color: #1d1d1f;
  font-size: clamp(12px, 1.4vw, 17px);
  line-height: 1.12;
}

.cobot-context-grid p,
.cobot-pain-matrix p,
.mapping-lane p,
.cobot-value-panel p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

.cobot-persona-board article {
  display: grid;
  align-content: start;
  min-height: 430px;
  padding: clamp(22px, 3vw, 32px);
}

.persona-evidence-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.persona-evidence-lead,
.persona-evidence-strip blockquote {
  min-height: 190px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  padding: clamp(20px, 2.6vw, 28px);
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 113, 227, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 58px rgba(48, 67, 96, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.persona-evidence-lead {
  display: grid;
  align-content: start;
  gap: 14px;
}

.persona-evidence-lead span {
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.persona-evidence-lead strong,
.persona-evidence-strip blockquote {
  color: #1d1d1f;
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 900;
  line-height: 1.18;
}

.persona-evidence-lead p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

.persona-evidence-strip blockquote {
  display: grid;
  align-content: center;
  margin: 0;
  border-left: 4px solid #0071e3;
}

.persona-evidence-tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.persona-evidence-tags span {
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 999px;
  padding: 9px 14px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.72);
}

.persona-research-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.persona-research-head,
.research-takeaway {
  grid-column: 1 / -1;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 26px);
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 113, 227, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 52px rgba(48, 67, 96, 0.07);
}

.persona-research-head span {
  display: block;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.persona-research-head strong,
.research-takeaway strong {
  display: block;
  margin-top: 8px;
  color: #1d1d1f;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.12;
}

.persona-research-panel article {
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  padding: clamp(20px, 2.6vw, 28px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 58px rgba(48, 67, 96, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.persona-research-panel blockquote {
  margin: 0;
  border-left: 4px solid #0071e3;
  padding-left: 14px;
  color: #1d1d1f;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 900;
  line-height: 1.22;
}

.research-role {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.research-role .persona-avatar {
  margin-bottom: 0;
}

.research-role span,
.research-pain b {
  display: block;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.research-role strong {
  display: block;
  margin-top: 6px;
  color: rgba(29, 29, 31, 0.68);
  font-size: 14px;
}

.research-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 14px;
}

.research-split section,
.research-pain {
  border: 1px solid rgba(0, 113, 227, 0.1);
  border-radius: 8px;
  padding: 16px;
  background: rgba(247, 251, 255, 0.78);
}

.research-split h3 {
  margin: 0 0 10px;
  color: #1d1d1f;
  font-size: 15px;
  line-height: 1.2;
}

.research-split ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.45;
}

.research-tags {
  display: grid;
  gap: 8px;
}

.research-tags span {
  display: block;
  border-radius: 8px;
  padding: 8px 10px;
  color: #1d1d1f;
  font-size: 13px;
  font-weight: 900;
  background: rgba(0, 113, 227, 0.07);
}

.research-pain {
  display: grid;
  gap: 8px;
  border-color: rgba(255, 149, 0, 0.18);
  background: rgba(255, 149, 0, 0.06);
}

.research-pain b {
  color: #d86f00;
}

.research-pain p {
  margin: 0;
  color: rgba(29, 29, 31, 0.64);
  line-height: 1.52;
}

.research-pain strong {
  color: #1d1d1f;
}

.research-takeaway {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 4px;
}

.research-takeaway strong {
  margin-top: 0;
}

.research-takeaway span {
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.6;
}

.persona-avatar {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #0071e3, #17c3b2);
  box-shadow: 0 16px 36px rgba(0, 113, 227, 0.2);
}

.persona-avatar i,
.persona-avatar b {
  position: absolute;
  display: block;
}

.persona-avatar i {
  top: 13px;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f7d4bd;
  box-shadow: inset -3px -4px 0 rgba(120, 73, 45, 0.12);
  transform: translateX(-50%);
}

.persona-avatar b {
  left: 50%;
  bottom: 7px;
  width: 38px;
  height: 24px;
  border-radius: 18px 18px 8px 8px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
}

.persona-avatar::before,
.persona-avatar::after {
  position: absolute;
  content: "";
}

.persona-avatar::before {
  top: 10px;
  left: 18px;
  width: 22px;
  height: 12px;
  border-radius: 12px 12px 5px 5px;
  background: #24364a;
  transform: rotate(-3deg);
  z-index: 1;
}

.persona-avatar::after {
  right: 12px;
  bottom: 13px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.82);
}

.persona-avatar i,
.persona-avatar b {
  z-index: 2;
}

.avatar-eu {
  background: linear-gradient(135deg, #0071e3, #28c7d9);
}

.avatar-oem {
  background: linear-gradient(135deg, #5856d6, #0071e3);
}

.avatar-oem::before {
  background: #3b2d5a;
}

.avatar-rv {
  background: linear-gradient(135deg, #17c3b2, #0b5cad);
}

.avatar-rv::before {
  width: 26px;
  background: #1f2d3d;
}

.cobot-persona-board h3 {
  margin: 18px 0 16px;
  color: #1d1d1f;
  font-size: clamp(12px, 1.5vw, 18px);
  line-height: 1.12;
}

.cobot-persona-board p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.64;
}

.cobot-persona-board article > strong {
  display: block;
  margin-top: 28px;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  padding-top: 18px;
  color: #1d1d1f;
  line-height: 1.5;
}

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

.cobot-pain-matrix article {
  min-height: 320px;
  padding: 22px;
}

.cobot-pain-matrix b {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 60px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0071e3;
}

.cobot-pain-matrix strong {
  margin-bottom: 12px;
  color: #1d1d1f;
  font-size: 11.5px;
  line-height: 1.16;
}

.pain-insight-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  padding: clamp(18px, 2.8vw, 30px);
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 113, 227, 0.1), transparent 32%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 58px rgba(48, 67, 96, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.pain-insight-lead {
  display: grid;
  align-content: start;
  border-right: 1px solid rgba(29, 29, 31, 0.08);
  padding: 6px clamp(18px, 3vw, 34px) 6px 4px;
}

.pain-insight-lead span {
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.pain-insight-lead strong {
  display: block;
  max-width: 360px;
  margin: clamp(52px, 7vw, 92px) 0 16px;
  color: #1d1d1f;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.08;
}

.pain-insight-lead p,
.pain-thread-list p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

.pain-thread-list {
  display: grid;
  gap: 10px;
}

.pain-thread-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(0, 113, 227, 0.1);
  border-radius: 8px;
  padding: 18px;
  background: rgba(247, 251, 255, 0.82);
}

.pain-thread-list b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0071e3, #17c3b2);
  box-shadow: 0 12px 28px rgba(0, 113, 227, 0.18);
}

.pain-thread-list strong {
  display: block;
  margin: 2px 0 8px;
  color: #1d1d1f;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.18;
}

.cobot-task-canvas {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.station-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(29, 29, 31, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(29, 29, 31, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 45% 42%, rgba(0, 113, 227, 0.12), transparent 32%),
    linear-gradient(135deg, #edf5ff, #ffffff);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: 0 22px 66px rgba(48, 67, 96, 0.08);
}

.station-zone {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 113, 227, 0.14);
  border-radius: 8px;
  color: rgba(29, 29, 31, 0.58);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.7);
}

.station-zone.tray {
  left: 36px;
  bottom: 78px;
  width: 170px;
  height: 112px;
}

.station-zone.camera {
  left: 37%;
  top: 76px;
  width: 150px;
  height: 94px;
}

.station-zone.fixture {
  right: 42px;
  bottom: 92px;
  width: 182px;
  height: 132px;
}

.station-zone.human {
  right: 70px;
  top: 54px;
  width: 150px;
  height: 118px;
  border-color: rgba(255, 59, 48, 0.18);
  color: rgba(255, 59, 48, 0.78);
}

.station-robot {
  position: absolute;
  left: 42%;
  top: 48%;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #172638, #0071e3);
  box-shadow: 0 18px 42px rgba(0, 113, 227, 0.22);
  transform: translate(-50%, -50%);
}

.station-path {
  position: absolute;
  border: solid #0071e3;
  opacity: 0.72;
}

.station-path.p1 {
  left: 145px;
  top: 278px;
  width: 260px;
  height: 124px;
  border-width: 0 0 8px 8px;
  border-radius: 0 0 0 70px;
}

.station-path.p2 {
  right: 130px;
  top: 270px;
  width: 270px;
  height: 130px;
  border-width: 0 8px 8px 0;
  border-radius: 0 0 70px 0;
}

.station-node {
  position: absolute;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #0071e3;
  box-shadow: 0 12px 28px rgba(0, 113, 227, 0.22);
}

.station-node.n1 {
  left: 112px;
  bottom: 170px;
}

.station-node.n2 {
  left: 43%;
  top: 290px;
}

.station-node.n3 {
  right: 196px;
  bottom: 208px;
}

.station-node.n4 {
  right: 198px;
  bottom: 78px;
  background: #17c3b2;
}

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

.task-step-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(48, 67, 96, 0.07);
}

.task-step-list span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: #0071e3;
}

.task-step-list strong {
  display: block;
  color: #1d1d1f;
  font-size: 10.5px;
}

.task-step-list p {
  grid-column: 2;
  margin: 8px 0 0;
  color: rgba(29, 29, 31, 0.6);
  line-height: 1.55;
}

.cobot-mapping {
  display: grid;
  gap: 12px;
}

.mapping-lane {
  display: grid;
  grid-template-columns: 170px repeat(4, minmax(120px, 1fr));
  gap: 10px;
  align-items: center;
  padding: 16px;
}

.mapping-lane strong {
  color: #1d1d1f;
  font-size: 20px;
}

.mapping-lane span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 8px;
  color: #0071e3;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  background: rgba(0, 113, 227, 0.06);
}

.mapping-lane p {
  grid-column: 2 / -1;
  border-top: 1px solid rgba(29, 29, 31, 0.07);
  padding-top: 12px;
}

.cobot-screen-stack {
  display: grid;
  gap: 18px;
}

.butp-native-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.butp-summary-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  padding: clamp(16px, 2.2vw, 24px);
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 113, 227, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 58px rgba(48, 67, 96, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.butp-summary-card div {
  border-left: 1px solid rgba(29, 29, 31, 0.08);
  padding-left: 14px;
}

.butp-summary-card div:first-child {
  border-left: 0;
  padding-left: 0;
}

.butp-summary-card span {
  display: block;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.butp-summary-card p {
  margin: 12px 0 0;
  color: rgba(29, 29, 31, 0.64);
  font-size: 15px;
  line-height: 1.52;
}

.butp-card,
.butp-direction,
.butp-direction-matrix {
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 113, 227, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 58px rgba(48, 67, 96, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.butp-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  min-height: 290px;
  padding: clamp(18px, 2.5vw, 26px);
}

.butp-letter {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: #0071e3;
  box-shadow: 0 16px 36px rgba(0, 113, 227, 0.2);
}

.butp-card.user .butp-letter {
  background: #7ddc00;
}

.butp-card.trend .butp-letter {
  background: #ff9500;
}

.butp-card.pain .butp-letter {
  background: #ff3b30;
}

.butp-card span {
  display: block;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.butp-card h3 {
  margin: 10px 0 14px;
  color: #1d1d1f;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.08;
}

.butp-card p,
.butp-card li,
.butp-direction p {
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

.butp-card p {
  margin: 0;
}

.butp-card ul {
  display: grid;
  gap: 6px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.butp-direction-matrix {
  --matrix-panel-height: clamp(430px, 44vw, 500px);
  grid-column: 1 / -1;
  overflow: hidden;
  padding: clamp(18px, 2.4vw, 26px);
  color: #1d1d1f;
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 113, 227, 0.09), transparent 32%),
    rgba(255, 255, 255, 0.76);
}

.direction-matrix-title {
  border-left: 4px solid #0071e3;
  padding-left: 14px;
  color: #1d1d1f;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.direction-matrix-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.7fr 0.7fr 1.02fr;
  gap: 14px;
  margin-top: 22px;
}

.direction-matrix-grid h3 {
  margin: 0 0 12px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  padding-bottom: 8px;
  color: #1d1d1f;
  font-size: clamp(15px, 1.4vw, 21px);
  line-height: 1.1;
  text-align: center;
}

.matrix-pain div,
.matrix-point-list {
  display: grid;
  gap: 8px;
}

.matrix-pain,
.matrix-insight,
.matrix-points {
  display: flex;
  min-height: var(--matrix-panel-height);
  flex-direction: column;
}

.matrix-pain div {
  flex: 1;
  grid-template-rows: repeat(7, 1fr);
}

.matrix-pain span,
.matrix-point-list span {
  display: grid;
  min-height: 36px;
  place-items: center;
  border-radius: 8px;
  padding: 6px 10px;
  color: #1d1d1f;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  background: rgba(0, 113, 227, 0.06);
}

.matrix-insight {
  position: relative;
  justify-content: space-between;
  padding-right: 10px;
  border-right: 1px dashed rgba(29, 29, 31, 0.12);
}

.insight-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.insight-row:last-child {
  margin-bottom: 0;
}

.insight-row b {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0, 113, 227, 0.16);
}

.insight-row.blue b {
  background: #0071e3;
}

.insight-row.green b {
  background: #7ddc00;
}

.insight-row.orange b {
  background: #ff9500;
}

.insight-row.red b {
  background: #ff3b30;
}

.insight-row ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding-left: 18px;
  font-size: clamp(11px, 0.92vw, 13px);
  line-height: 1.3;
}

.insight-row.blue li {
  color: #0071e3;
}

.insight-row.green li {
  color: #4f9c00;
}

.insight-row.orange li {
  color: #d86f00;
}

.insight-row.red li {
  color: #d92d20;
}

.matrix-concept {
  display: grid;
  grid-template-rows: auto 1fr 1fr;
  gap: 10px;
}

.matrix-concept div {
  display: grid;
  place-items: center;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  padding: 16px 12px;
  text-align: center;
  background: rgba(29, 29, 31, 0.04);
}

.matrix-concept strong {
  display: block;
  margin-bottom: 10px;
  color: #1d1d1f;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1;
}

.matrix-concept span {
  display: block;
  color: rgba(29, 29, 31, 0.62);
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 900;
  line-height: 1.45;
}

.matrix-points {
  position: relative;
}

.matrix-point-list {
  position: relative;
}

.matrix-point-list + .matrix-point-list {
  margin-top: 12px;
  padding-top: 12px;
}

.matrix-point-list.active span {
  color: #fff;
  background: linear-gradient(135deg, #0071e3, #005bb8);
}

.matrix-point-list.active span:nth-child(2),
.matrix-point-list.active span:nth-child(3) {
  background: linear-gradient(135deg, #ff6a00, #ff3b00);
}

.matrix-point-list.muted span {
  color: rgba(29, 29, 31, 0.62);
  background: rgba(29, 29, 31, 0.04);
}

.butp-direction {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: clamp(22px, 3vw, 32px);
}

.butp-direction strong {
  color: #1d1d1f;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.08;
}

.butp-direction p {
  margin: 0;
}

.butp-direction p b {
  color: #1d1d1f;
}

.butp-direction div {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.butp-direction span {
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
  background: rgba(0, 113, 227, 0.06);
}

.interface-flow {
  display: grid;
  gap: clamp(46px, 7vw, 86px);
}

.interface-flow article {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  padding-top: clamp(24px, 3.6vw, 38px);
}

.interface-flow article:first-child {
  padding-top: 0;
}

.interface-copy {
  position: sticky;
  top: 92px;
}

.interface-copy span {
  display: block;
  color: #0071e3;
  font-size: 15px;
  font-weight: 900;
}

.interface-copy h3 {
  margin: 10px 0 12px;
  color: #1d1d1f;
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.18;
}

.interface-copy p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

.interface-flow figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 54px rgba(48, 67, 96, 0.09);
}

.interface-flow img {
  display: block;
  width: 100%;
  height: auto;
}

.screen-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 0.54fr);
  gap: 22px;
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
}

.screen-feature.flip {
  grid-template-columns: minmax(0, 0.54fr) minmax(280px, 0.46fr);
}

.screen-feature h3 {
  margin: 12px 0 16px;
  color: #1d1d1f;
  font-size: clamp(15px, 2vw, 26px);
  line-height: 1.06;
}

.screen-feature p,
.screen-feature li {
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

.screen-feature ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.screen-feature figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(48, 67, 96, 0.1);
}

.screen-feature img {
  display: block;
  width: 100%;
  height: auto;
}

.cobot-value-panel article {
  min-height: 310px;
  padding: clamp(22px, 3vw, 32px);
}

.cobot-value-panel strong {
  margin: 72px 0 16px;
  color: #1d1d1f;
  font-size: clamp(17px, 2.3vw, 29px);
  line-height: 1;
}

@media (max-width: 980px) {
  .cobot-hero,
  .background-card-grid,
  .cobot-context-grid,
  .cobot-persona-board,
  .cobot-pain-matrix,
  .cobot-task-canvas,
  .pain-insight-panel,
  .cobot-video-layout,
  .butp-native-board,
  .butp-summary-card,
  .butp-direction,
  .persona-research-panel,
  .persona-evidence-strip,
  .interface-flow article,
  .screen-feature,
  .screen-feature.flip,
  .cobot-value-panel {
    grid-template-columns: 1fr;
  }

  .cobot-product-stage {
    min-height: 520px;
  }

  .interface-copy {
    position: static;
  }

  .pain-insight-lead {
    border-right: 0;
    border-bottom: 1px solid rgba(29, 29, 31, 0.08);
    padding: 0 0 22px;
  }

  .pain-insight-lead strong {
    margin-top: 28px;
  }

  .mapping-lane {
    grid-template-columns: 1fr 1fr;
  }

  .mapping-lane strong,
  .mapping-lane p {
    grid-column: 1 / -1;
  }

  .butp-direction div {
    grid-column: 1;
  }

  .butp-summary-card div,
  .butp-summary-card div:first-child {
    border-left: 0;
    border-top: 1px solid rgba(29, 29, 31, 0.08);
    padding-top: 12px;
    padding-left: 0;
  }

  .butp-summary-card div:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .persona-research-head,
  .research-takeaway {
    grid-column: 1;
  }

  .persona-evidence-tags {
    grid-column: 1;
  }

  .research-split,
  .research-takeaway {
    grid-template-columns: 1fr;
  }

  .direction-matrix-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .matrix-insight {
    border-right: 0;
    padding-right: 0;
  }

  .matrix-concept {
    grid-template-rows: auto;
  }
}

@media (max-width: 640px) {
  .cobot-hero {
    width: min(100% - 32px, 1180px);
  }

  .cobot-hero h1 {
    font-size: clamp(19px, 6vw, 27px);
    white-space: normal;
  }

  .direction-matrix-grid {
    grid-template-columns: 1fr;
  }

  .cobot-product-stage,
  .station-map {
    min-height: 460px;
  }

  .stage-card {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .stage-card.bottom {
    right: 16px;
  }

  .station-zone.human,
  .station-zone.camera {
    display: none;
  }

  .mapping-lane {
    grid-template-columns: 1fr;
  }
}

/* Senior interaction portfolio refinement */
.role-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 113, 227, 0.14);
  border-radius: 999px;
  padding: 9px 13px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.68);
}

.role-fit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.08);
  box-shadow: 0 24px 76px rgba(65, 78, 114, 0.08);
}

.role-fit-strip div {
  min-height: 168px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 12%, rgba(0, 113, 227, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.74);
}

.role-fit-strip span,
.role-fit-strip strong,
.role-fit-strip p {
  display: block;
}

.role-fit-strip span {
  margin-bottom: 34px;
  color: #0071e3;
  font-size: 12px;
  font-weight: 900;
}

.role-fit-strip strong {
  color: #1d1d1f;
  font-size: clamp(20px, 1.1vw, 20px);
  line-height: 1.12;
}

.role-fit-strip p {
  margin: 10px 0 0;
  color: rgba(29, 29, 31, 0.58);
  line-height: 1.5;
}

.case-proof-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.case-proof-tags span {
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 999px;
  padding: 7px 10px;
  color: #0071e3;
  font-size: 12px;
  font-weight: 900;
  background: rgba(0, 113, 227, 0.055);
}

.case-evidence {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  text-align: left;
}

.case-evidence span {
  display: block;
  border: 1px solid rgba(29, 29, 31, 0.07);
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(29, 29, 31, 0.62);
  font-size: 13px;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.58);
}

.case-evidence b {
  display: inline-block;
  margin-right: 8px;
  color: #1d1d1f;
  font-weight: 900;
}

.case-toolbar-note {
  max-width: 420px;
  color: rgba(29, 29, 31, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.project-tile em {
  display: block;
  margin-top: 14px;
  color: rgba(0, 113, 227, 0.78);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
}

.case-index-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.case-index-guide div {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 50px rgba(65, 78, 114, 0.08);
}

.case-index-guide strong,
.case-index-guide span {
  display: block;
}

.case-index-guide strong {
  margin-bottom: 10px;
  color: #1d1d1f;
  font-size: 18px;
}

.case-index-guide span {
  color: rgba(29, 29, 31, 0.6);
  line-height: 1.5;
}

.taste-air .intro-copy {
  min-height: 560px;
}

.taste-air .intro-copy h1 {
  max-width: 1060px;
  font-size: clamp(25px, 3.6vw, 48px);
}

.taste-air .intro-copy .lead {
  max-width: 900px;
}

.taste-air .profile-board {
  min-height: 560px;
}

.taste-air .capability-evidence strong {
  font-size: clamp(14px, 1.6vw, 23px);
  letter-spacing: 0;
}

.taste-air .feature-case {
  min-height: 610px;
}

.taste-air .feature-case .meta-line {
  display: block;
  min-height: 20px;
}

.taste-air .project-tile.has-image .tile-content {
  min-height: 206px;
}

.taste-air .project-tile strong {
  letter-spacing: 0;
}

.case-decision-block {
  position: relative;
  padding-top: 0;
}

.case-decision-block::before {
  content: none;
}

.case-decision-block .chapter-intro {
  margin-bottom: 34px;
  border-bottom: 0;
  padding-bottom: 0;
}

.case-decision-block .chapter-intro span {
  display: block;
  margin-bottom: 14px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 800;
}

.case-decision-block .chapter-intro h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: clamp(17px, 2.4vw, 32px);
  line-height: 1.04;
}

.decision-grid-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-grid-panel article {
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 113, 227, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 68px rgba(48, 67, 96, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
}

.decision-grid-panel span,
.decision-grid-panel strong,
.decision-grid-panel p {
  display: block;
}

.decision-grid-panel span {
  margin-bottom: 72px;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.decision-grid-panel strong {
  color: #1d1d1f;
  font-size: clamp(12px, 1.4vw, 18px);
  line-height: 1.1;
}

.decision-grid-panel p {
  margin: 16px 0 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

.result-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(29, 29, 31, 0.1);
  border-left: 1px solid rgba(29, 29, 31, 0.1);
  background: transparent;
}

.result-strip div {
  position: relative;
  min-height: 178px;
  border-right: 1px solid rgba(29, 29, 31, 0.1);
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
  padding: clamp(20px, 2.5vw, 28px);
  background: transparent;
  box-shadow: none;
}

.result-strip div::before {
  display: block;
  margin-bottom: clamp(11px, 1.5vw, 17px);
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
  content: "01";
}

.result-strip div:nth-child(2)::before {
  content: "02";
}

.result-strip div:nth-child(3)::before {
  content: "03";
}

.result-strip div:nth-child(4)::before {
  content: "04";
}

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

.result-strip strong {
  margin-bottom: 16px;
  color: #1d1d1f;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.1;
}

.result-strip span {
  color: rgba(29, 29, 31, 0.62);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.6;
}

.case-pager {
  width: min(1180px, calc(100% - 48px));
  margin: clamp(42px, 5.4vw, 72px) auto clamp(92px, 11vw, 140px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
}

.case-pager-link {
  position: relative;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 0;
  padding: 6px 0;
  color: #1d1d1f;
  text-decoration: none;
  background: transparent;
  box-shadow: none;
  transition: transform 0.22s ease, color 0.22s ease;
}

.case-pager-link::after {
  display: none;
}

.case-pager-link:hover {
  color: #0071e3;
  transform: translateY(-2px);
}

.case-pager-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(29, 29, 31, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.case-pager-kicker b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #0071e3;
  font-size: 17px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.14);
}

.case-pager-link strong {
  max-width: 100%;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.12;
}

.case-pager-link.next {
  text-align: right;
  align-items: flex-end;
}

.o3-detail-page {
  background: linear-gradient(180deg, #f6f9fc 0%, #eef5fa 46%, #f8fbfd 100%);
}

body.apple-air.taste-air:not(.home-page) {
  background: linear-gradient(180deg, #f6f9fc 0%, #eef5fa 46%, #f8fbfd 100%);
}

body.apple-air.taste-air:not(.home-page) main {
  background: transparent;
}

body.apple-air.taste-air:not(.home-page) main::before,
body.apple-air.taste-air:not(.home-page) main::after {
  display: none;
}

body.apple-air.taste-air:not(.home-page) .case-study-modern,
body.apple-air.taste-air:not(.home-page) .warehouse-case,
body.apple-air.taste-air:not(.home-page) .o3-image-page,
body.apple-air.taste-air:not(.home-page) .sketch-case-page,
body.apple-air.taste-air:not(.home-page) .ui-case-detail {
  background: transparent;
}

body:not(.home-page) .progress {
  display: none;
}

.o3-image-page {
  padding: clamp(96px, 12vw, 148px) 0 clamp(92px, 11vw, 140px);
  background: transparent;
}

.o3-image-intro,
.o3-image-sequence {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.o3-image-intro {
  padding-bottom: clamp(34px, 6vw, 68px);
}

.o3-image-intro h1 {
  max-width: 860px;
  margin: 12px 0 16px;
  color: #1d1d1f;
  font-size: 62px;
  line-height: 0.98;
  letter-spacing: 0;
}

.o3-image-intro p {
  max-width: 680px;
  margin: 0 0 24px;
  color: rgba(29, 29, 31, 0.66);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
}

body:not([data-language="en"]) .o3-image-intro p {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(11px, 1.9vw, 20px);
}

.o3-view-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  min-height: 58px;
  border: 1px solid rgba(0, 113, 227, 0.24);
  border-radius: 999px;
  padding: 8px 9px 8px 22px;
  color: #fff;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(0, 113, 227, 0.96), rgba(45, 137, 245, 0.88)),
    #0071e3;
  box-shadow: 0 18px 42px rgba(0, 113, 227, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.o3-view-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 58px rgba(0, 113, 227, 0.28);
}

.o3-view-button span,
.o3-view-button strong,
.o3-view-button small {
  display: block;
}

.o3-view-button strong {
  font-size: 15px;
  line-height: 1.1;
}

.o3-view-button small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.o3-view-button i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: #0071e3;
  font-style: normal;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.94);
}

.o3-image-sequence {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
}

.o3-image-sequence figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 90px rgba(42, 67, 96, 0.1);
}

.o3-image-sequence img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .case-pager {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1180px);
  }

  .case-pager-link.next {
    text-align: left;
    align-items: flex-start;
  }

  .o3-image-intro,
  .o3-image-sequence {
    width: min(100% - 32px, 1200px);
  }
}

.interview-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100% - 64px, 1180px);
  margin: clamp(22px, 4vw, 40px) auto clamp(34px, 5vw, 62px);
}

.background-snapshot {
  width: 100%;
  margin: 0 0 14px;
}

.interview-snapshot article {
  min-height: 190px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  padding: clamp(20px, 2.8vw, 30px);
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 113, 227, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 54px rgba(65, 78, 114, 0.07);
}

.background-snapshot article {
  min-height: 156px;
  padding: clamp(18px, 2.2vw, 24px);
}

.interview-snapshot span,
.interview-snapshot strong,
.interview-snapshot p {
  display: block;
}

.interview-snapshot span {
  color: #0071e3;
  font-size: 12px;
  font-weight: 900;
}

.interview-snapshot strong {
  margin: 34px 0 10px;
  color: #1d1d1f;
  font-size: clamp(11px, 1.25vw, 16px);
  line-height: 1.12;
}

.background-snapshot strong {
  margin-top: 24px;
}

.interview-snapshot p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

@media (max-width: 980px) {
  .warehouse-case .decision-grid-panel {
    grid-template-columns: 1fr 1fr;
  }

  .role-fit-strip,
  .case-index-guide,
  .decision-grid-panel,
  .result-strip,
  .interview-snapshot {
    grid-template-columns: 1fr 1fr;
  }

  .taste-air .feature-case {
    min-height: 540px;
  }
}

@media (max-width: 640px) {
  .warehouse-case .decision-grid-panel {
    grid-template-columns: 1fr;
  }

  .role-fit-strip,
  .case-index-guide,
  .decision-grid-panel,
  .result-strip,
  .interview-snapshot {
    grid-template-columns: 1fr;
  }

  .case-proof-tags {
    justify-content: flex-start;
  }

  .taste-air .case-summary {
    text-align: left;
  }
}

/* Premium UI motion pass: restrained visual polish for senior interaction portfolio */
.taste-air {
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 113, 227, 0.16), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(122, 92, 255, 0.14), transparent 32%),
    radial-gradient(circle at 64% 42%, rgba(21, 205, 190, 0.1), transparent 34%),
    linear-gradient(180deg, #fbfdff 0%, #f5f8ff 42%, #f5f5f7 100%);
}

.taste-air .intro-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.taste-air .intro-hero::before,
.taste-air .intro-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  filter: blur(26px);
  opacity: 0.72;
}

.taste-air .intro-hero::before {
  inset: 12% auto auto 50%;
  width: min(780px, 82vw);
  height: min(780px, 82vw);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.88), transparent 24%),
    radial-gradient(circle at 62% 42%, rgba(0, 113, 227, 0.2), transparent 34%),
    radial-gradient(circle at 46% 68%, rgba(122, 92, 255, 0.16), transparent 38%),
    radial-gradient(circle at 70% 70%, rgba(21, 205, 190, 0.12), transparent 36%);
  transform: translateX(-50%);
  animation: premiumAmbient 18s ease-in-out infinite alternate;
}

.taste-air .intro-hero::after {
  left: max(24px, calc((100vw - 1180px) / 2));
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 113, 227, 0.18), rgba(122, 92, 255, 0.16), transparent);
}

.taste-air .role-kicker {
  border-color: rgba(255, 255, 255, 0.88);
  color: rgba(0, 92, 190, 0.92);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.92), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38));
  box-shadow: 0 18px 48px rgba(40, 76, 132, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.taste-air .intro-copy h1 {
  background:
    linear-gradient(96deg, #151517 0%, #2b2d34 34%, #006edb 62%, #7a5cff 86%, #1d1d1f 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: premiumTextShift 12s ease-in-out infinite alternate;
}

.taste-air .profile-board {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 0%, rgba(94, 185, 255, 0.2), transparent 30%),
    radial-gradient(circle at 20% 62%, rgba(122, 92, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(21, 28, 42, 0.96), rgba(35, 47, 66, 0.9));
  box-shadow: 0 34px 88px rgba(28, 46, 74, 0.16);
}

.taste-air .profile-board::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.26), transparent 22% 76%, rgba(255, 255, 255, 0.16));
  pointer-events: none;
}

.taste-air .scope-map {
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(0, 113, 227, 0.22), transparent 42%);
  background-size: 28px 28px, 28px 28px, auto;
}

.taste-air .scope-map span {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 113, 227, 0.68), rgba(24, 199, 180, 0.52));
  box-shadow: 0 12px 30px rgba(0, 113, 227, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.taste-air .role-fit-strip {
  gap: 12px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.taste-air .role-fit-strip div {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 113, 227, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46));
  box-shadow: 0 24px 72px rgba(65, 78, 114, 0.08);
  backdrop-filter: blur(22px) saturate(178%);
  -webkit-backdrop-filter: blur(22px) saturate(178%);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms ease;
}

.taste-air .role-fit-strip div::after,
.taste-air .feature-case::after,
.taste-air .project-tile.has-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.38) 48%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 420ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.taste-air .role-fit-strip div:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 92px rgba(65, 78, 114, 0.12);
}

.taste-air .role-fit-strip div:hover::after,
.taste-air .feature-case:hover::after,
.taste-air .project-tile.has-image:hover::before {
  opacity: 1;
  transform: translateX(42%);
}

.taste-air .case-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 6%, rgba(0, 113, 227, 0.09), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(122, 92, 255, 0.1), transparent 32%),
    linear-gradient(180deg, #f7f9ff 0%, #f5f5f7 100%);
}

.taste-air .feature-case {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 113, 227, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
  box-shadow: 0 28px 90px rgba(65, 78, 114, 0.08);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 520ms ease;
}

.taste-air .feature-case:nth-child(2) {
  background:
    radial-gradient(circle at 50% 100%, rgba(22, 199, 167, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 253, 255, 0.74));
}

.taste-air .feature-case:nth-child(3) {
  background:
    radial-gradient(circle at 50% 100%, rgba(122, 92, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 248, 255, 0.74));
}

.taste-air .feature-case:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 108px rgba(65, 78, 114, 0.14);
}

.taste-air .case-evidence span {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.taste-air .case-proof-tags span {
  border-color: rgba(0, 113, 227, 0.12);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.8), transparent 36%),
    rgba(0, 113, 227, 0.06);
}

.taste-air .feature-case .case-art {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(145deg, #eef5ff, #ffffff);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 22px 58px rgba(65, 78, 114, 0.1);
}

.taste-air .feature-case .case-art::before {
  content: "";
  position: absolute;
  inset: 10% 8% auto;
  height: 38%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.1), transparent 66%);
  filter: blur(18px);
}

.taste-air .project-tile.has-image {
  position: relative;
  border-color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 80% 12%, rgba(0, 113, 227, 0.08), transparent 30%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 60px rgba(65, 78, 114, 0.07);
  backdrop-filter: blur(16px) saturate(155%);
  -webkit-backdrop-filter: blur(16px) saturate(155%);
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms ease;
}

.taste-air .project-tile.has-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 82px rgba(65, 78, 114, 0.12);
}

.taste-air .capability-axis,
.taste-air .capability-proof,
.taste-air .capability-evidence {
  background:
    radial-gradient(circle at 88% 8%, rgba(0, 113, 227, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42));
}

/* Homepage case index: keep the 7 secondary cases dense and image-led. */
.taste-air .project-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 315px;
  grid-auto-flow: dense;
  gap: 18px;
}

.taste-air .project-tile.large,
.taste-air .project-tile.tall,
.taste-air .project-tile.archive {
  grid-row: span 1;
}

.taste-air .project-tile.large {
  grid-column: span 2;
}

.taste-air .project-tile.has-image {
  display: grid;
  grid-template-rows: 1fr;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f7fb;
}

.taste-air .project-tile.has-image .tile-image {
  grid-area: 1 / 1;
  min-height: 0;
}

.taste-air .project-tile.has-image .tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(0.98);
}

.taste-air .project-tile.has-image .tile-content {
  grid-area: 1 / 1;
  align-self: end;
  min-height: 0;
  padding: 62px 20px 20px;
  background: linear-gradient(180deg, transparent, rgba(12, 18, 32, 0.72));
  color: #fff;
}

.taste-air .project-tile.has-image:not(.large) .tile-content span,
.taste-air .project-tile.has-image:not(.large) .tile-content p,
.taste-air .project-tile.has-image:not(.large) .tile-content em {
  display: none;
}

.taste-air .project-tile.has-image .tile-content strong {
  max-width: 360px;
  color: inherit;
  font-size: clamp(20px, 1.05vw, 20px);
  line-height: 1.14;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.taste-air .project-tile.large .tile-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 76px 28px 26px;
  background:
    linear-gradient(90deg, rgba(7, 13, 25, 0.78), rgba(7, 13, 25, 0.34) 54%, rgba(7, 13, 25, 0.1)),
    linear-gradient(180deg, transparent, rgba(7, 13, 25, 0.72));
}

.taste-air .project-tile.large .tile-content span,
.taste-air .project-tile.large .tile-content p,
.taste-air .project-tile.large .tile-content em {
  display: block;
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.taste-air .project-tile.large .tile-content span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.taste-air .project-tile.large .tile-content p {
  font-size: 15px;
  line-height: 1.6;
}

.taste-air .project-tile.large .tile-content em {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-style: normal;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

@media (max-width: 900px) {
  .taste-air .project-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .taste-air .project-tile.large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .taste-air .project-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .taste-air .project-tile.large {
    grid-column: span 1;
  }

  .taste-air .project-tile.large .tile-content {
    padding: 70px 20px 20px;
  }
}

@keyframes premiumAmbient {
  0% {
    transform: translateX(-50%) translate3d(-20px, 0, 0) scale(0.96);
  }

  100% {
    transform: translateX(-50%) translate3d(24px, 18px, 0) scale(1.04);
  }
}

@keyframes premiumTextShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .taste-air .intro-hero::before,
  .taste-air .intro-copy h1 {
    animation: none;
  }
}

/* Sketch 2024 supplemental case pages */
.sketch-case-page {
  width: min(100% - 64px, 1180px);
  margin: 0 auto;
  padding: clamp(82px, 9vw, 132px) 0 120px;
}

.sketch-case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 620px;
}

.sketch-case-hero h1 {
  margin: 14px 0 20px;
  color: #1d1d1f;
  font-size: clamp(23px, 3vw, 41px);
  line-height: 1.02;
  letter-spacing: 0;
}

.sketch-case-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: clamp(18px, 1vw, 18px);
  line-height: 1.6;
}

.sketch-hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 8%, rgba(0, 113, 227, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 86px rgba(65, 78, 114, 0.12);
}

.sketch-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.sketch-meta-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.sketch-meta-row div,
.sketch-module,
.sketch-value-card,
.sketch-artboard-card {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 10%, rgba(0, 113, 227, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 62px rgba(65, 78, 114, 0.08);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.sketch-meta-row div {
  min-height: 132px;
  padding: 18px;
}

.sketch-meta-row span,
.sketch-meta-row strong,
.sketch-meta-row p {
  display: block;
}

.sketch-meta-row span,
.sketch-section-head span,
.sketch-module span,
.sketch-value-card span {
  color: #0071e3;
  font-size: 12px;
  font-weight: 900;
}

.sketch-meta-row strong {
  margin-top: 28px;
  color: #1d1d1f;
  font-size: 20px;
  line-height: 1.18;
}

.sketch-meta-row p {
  margin: 8px 0 0;
  color: rgba(29, 29, 31, 0.58);
  line-height: 1.45;
}

.sketch-section {
  padding: clamp(58px, 8vw, 96px) 0 0;
}

.sketch-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.sketch-section-head h2 {
  margin: 10px 0 0;
  color: #1d1d1f;
  font-size: clamp(17px, 2.3vw, 31px);
  line-height: 1.04;
  letter-spacing: 0;
}

.sketch-section-head p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.65;
}

.sketch-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sketch-module {
  min-height: 310px;
  padding: clamp(22px, 3vw, 30px);
}

.sketch-module strong,
.sketch-module p {
  display: block;
}

.sketch-module strong {
  margin: 64px 0 14px;
  color: #1d1d1f;
  font-size: clamp(12px, 1.5vw, 18px);
  line-height: 1.1;
}

.sketch-module p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.62;
}

.sketch-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(280px, 0.38fr);
  gap: 16px;
  align-items: stretch;
}

.sketch-artboard-card {
  overflow: hidden;
}

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

.sketch-value-stack {
  display: grid;
  gap: 12px;
}

.sketch-value-card {
  padding: 22px;
}

.sketch-value-card strong,
.sketch-value-card p {
  display: block;
}

.sketch-value-card strong {
  margin: 18px 0 10px;
  color: #1d1d1f;
  font-size: 11px;
}

.sketch-value-card p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.6;
}

.sketch-image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sketch-image-strip figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 54px rgba(65, 78, 114, 0.08);
}

.sketch-image-strip img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .sketch-case-hero,
  .sketch-section-head,
  .sketch-showcase {
    grid-template-columns: 1fr;
  }

  .sketch-meta-row,
  .sketch-module-grid,
  .sketch-image-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sketch-case-page {
    width: min(100% - 32px, 1180px);
  }

  .sketch-meta-row,
  .sketch-module-grid,
  .sketch-image-strip {
    grid-template-columns: 1fr;
  }

  .sketch-image-strip img {
    height: auto;
  }
}

/* Senior UI portfolio layout for Sketch-derived supplemental cases */
.ui-case-detail {
  color: #1d1d1f;
}

.ui-case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  min-height: 620px;
}

.ui-case-hero h1 {
  max-width: 820px;
  margin: 14px 0 18px;
  font-size: clamp(22px, 2.75vw, 38px);
  line-height: 1.04;
  letter-spacing: 0;
}

.ui-case-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(29, 29, 31, 0.66);
  font-size: clamp(18px, 0.95vw, 18px);
  line-height: 1.62;
}

.ui-hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.ui-hero-points span {
  display: block;
  border: 1px solid rgba(29, 29, 31, 0.07);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(29, 29, 31, 0.64);
  line-height: 1.45;
}

.ui-hero-points b {
  display: block;
  margin-bottom: 4px;
  color: #0071e3;
  font-size: 12px;
}

.ui-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 8%, rgba(0, 113, 227, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(245, 245, 247, 0.72));
  box-shadow: 0 28px 88px rgba(65, 78, 114, 0.12);
}

.ui-stage img {
  display: block;
  width: 100%;
}

.ui-stage.hero-board {
  padding: clamp(14px, 2vw, 24px);
}

.ui-stage.hero-board img {
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(65, 78, 114, 0.12);
}

.ui-stage.floating-screen {
  min-height: 460px;
}

.ui-stage.floating-screen img {
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.ui-section {
  padding-top: clamp(62px, 8vw, 104px);
}

.ui-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.42fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}

.ui-section-head span,
.ui-card span,
.ui-insight span {
  color: #0071e3;
  font-size: 12px;
  font-weight: 900;
}

.ui-section-head h2 {
  max-width: 820px;
  margin: 10px 0 0;
  font-size: clamp(17px, 2.25vw, 31px);
  line-height: 1.05;
}

.ui-section-head p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.7;
}

.ui-interface-wall {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.ui-interface-wall.three {
  grid-template-columns: 1fr 1fr 1fr;
}

.ui-frame {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 62px rgba(65, 78, 114, 0.08);
}

.ui-frame.wide {
  grid-column: span 2;
}

.ui-frame.tall img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.ui-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.ui-frame.contain img {
  object-fit: contain;
  background: #f5f5f7;
}

.ui-frame figcaption {
  border-top: 1px solid rgba(29, 29, 31, 0.06);
  padding: 13px 16px;
  color: rgba(29, 29, 31, 0.58);
  font-size: 13px;
}

.ui-module-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ui-card,
.ui-insight {
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 113, 227, 0.07), transparent 34%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 54px rgba(65, 78, 114, 0.07);
}

.ui-card {
  min-height: 230px;
  padding: clamp(20px, 2.8vw, 28px);
}

.ui-card strong,
.ui-card p,
.ui-insight strong,
.ui-insight p {
  display: block;
}

.ui-card strong {
  margin: 48px 0 12px;
  font-size: clamp(11px, 1.25vw, 15.5px);
  line-height: 1.12;
}

.ui-card p,
.ui-insight p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.65;
}

.ui-insight-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.ui-insight {
  padding: clamp(24px, 3.4vw, 36px);
}

.ui-insight strong {
  margin: 24px 0 12px;
  font-size: clamp(13px, 1.5vw, 21px);
  line-height: 1.08;
}

.ui-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.06);
}

.ui-process span {
  display: block;
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
  color: rgba(29, 29, 31, 0.72);
  font-weight: 800;
}

.ui-process b {
  display: block;
  margin-bottom: 16px;
  color: #0071e3;
  font-size: 12px;
}

@media (max-width: 980px) {
  .ui-case-hero,
  .ui-section-head,
  .ui-interface-wall,
  .ui-insight-grid {
    grid-template-columns: 1fr;
  }

  .ui-module-map,
  .ui-interface-wall.three,
  .ui-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ui-frame.wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .ui-hero-points,
  .ui-module-map,
  .ui-interface-wall.three,
  .ui-process {
    grid-template-columns: 1fr;
  }
}

/* Apple-style case cards: clear imagery, readable titles, no dark poster overlay. */
.taste-air .feature-case-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.taste-air .feature-case {
  display: grid;
  grid-template-rows: auto minmax(260px, 1fr);
  min-height: 620px;
  gap: 24px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  padding: clamp(26px, 3.4vw, 42px) clamp(22px, 3vw, 34px) 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.96), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  box-shadow: 0 22px 70px rgba(65, 78, 114, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.taste-air .feature-case .case-summary {
  max-width: 560px;
  margin: 0 auto;
  color: #1d1d1f;
  text-align: center;
}

.taste-air .feature-case .meta-line {
  color: rgba(29, 29, 31, 0.56);
  font-size: 13px;
  font-weight: 800;
}

.taste-air .feature-case h3 {
  margin: 10px auto 10px;
  color: #1d1d1f;
  font-size: clamp(12.5px, 1.175vw, 18px);
  line-height: 1.12;
}

.taste-air .feature-case p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(29, 29, 31, 0.64);
  font-size: 16px;
  line-height: 1.56;
}

.taste-air .feature-case .case-evidence {
  margin-top: 18px;
}

.taste-air .feature-case .case-evidence span {
  border-color: rgba(29, 29, 31, 0.06);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(29, 29, 31, 0.64);
}

.taste-air .feature-case .case-proof-tags {
  margin-top: 16px;
  justify-content: center;
}

.taste-air .feature-case .case-proof-tags span {
  border-color: rgba(0, 113, 227, 0.12);
  background: rgba(0, 113, 227, 0.06);
  color: #0071e3;
}

.taste-air .feature-case .case-art {
  align-self: end;
  width: calc(100% + clamp(44px, 6vw, 68px));
  height: 300px;
  margin: 0 calc(clamp(22px, 3vw, 34px) * -1);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.9), transparent 34%),
    #eef2f8;
  box-shadow: none;
}

.taste-air .feature-case .case-art::before,
.taste-air .feature-case::after {
  display: none;
}

.taste-air .feature-case .case-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 1;
  filter: none;
}

.taste-air .feature-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 86px rgba(65, 78, 114, 0.12);
}

.taste-air .feature-case:hover .case-art img {
  transform: scale(1.025);
  filter: none;
}

.taste-air .project-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-auto-flow: dense;
  gap: 18px;
}

.taste-air .project-tile.large,
.taste-air .project-tile.tall,
.taste-air .project-tile.archive {
  grid-row: span 1;
}

.taste-air .project-tile.large {
  grid-column: span 2;
}

.taste-air .project-tile.has-image {
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  box-shadow: 0 18px 56px rgba(65, 78, 114, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.taste-air .project-tile.has-image::before,
.taste-air .project-tile.has-image::after {
  display: none;
}

.taste-air .project-tile.has-image .tile-image {
  grid-area: auto;
  min-height: 210px;
  overflow: hidden;
  background: #f5f5f7;
}

.taste-air .project-tile.has-image .tile-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.taste-air .project-tile.has-image .tile-content {
  grid-area: auto;
  min-height: 0;
  padding: 18px 18px 20px;
  background: #fff;
  color: #1d1d1f;
}

.taste-air .project-tile.has-image .tile-content strong {
  max-width: 360px;
  color: #1d1d1f;
  font-size: clamp(18px, 0.9vw, 18px);
  line-height: 1.18;
  text-shadow: none;
}

.taste-air .project-tile.has-image:not(.large) .tile-content span,
.taste-air .project-tile.has-image:not(.large) .tile-content p,
.taste-air .project-tile.has-image:not(.large) .tile-content em {
  display: none;
}

.taste-air .project-tile.large {
  min-height: 330px;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr;
}

.taste-air .project-tile.large .tile-image {
  min-height: 330px;
}

.taste-air .project-tile.large .tile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(0, 113, 227, 0.08), transparent 36%),
    #fff;
}

.taste-air .project-tile.large .tile-content span {
  display: block;
  margin: 0;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.taste-air .project-tile.large .tile-content p {
  display: block;
  max-width: 460px;
  margin: 2px 0 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 15px;
  line-height: 1.6;
}

.taste-air .project-tile.large .tile-content em {
  display: block;
  width: fit-content;
  margin-top: 6px;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(0, 113, 227, 0.06);
  color: #0071e3;
  font-size: 13px;
  font-style: normal;
}

@media (max-width: 980px) {
  .taste-air .feature-case-list {
    grid-template-columns: 1fr;
  }

  .taste-air .feature-case {
    min-height: auto;
  }

  .taste-air .project-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .taste-air .project-tile.large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .taste-air .project-mosaic {
    grid-template-columns: 1fr;
  }

  .taste-air .project-tile.large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .taste-air .project-tile.large .tile-image {
    min-height: 210px;
  }

  .taste-air .feature-case .case-art {
    height: 240px;
  }
}

/* Main cases should read as three wide Apple-style product cards, not compressed tiles. */
.taste-air .feature-case-list {
  grid-template-columns: 1fr;
  gap: 16px;
}

.taste-air .feature-case {
  grid-template-columns: minmax(360px, 1.05fr) minmax(420px, 0.95fr);
  grid-template-rows: 1fr;
  align-items: stretch;
  min-height: 360px;
  padding: 0;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 113, 227, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f5f5f7 100%);
}

.taste-air .feature-case .case-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  margin: 0;
  padding: clamp(28px, 4vw, 52px);
  text-align: left;
}

.taste-air .feature-case h3,
.taste-air .feature-case p {
  margin-left: 0;
  margin-right: 0;
}

.taste-air .feature-case h3 {
  max-width: 680px;
  font-size: clamp(13.5px, 1.55vw, 21px);
}

.taste-air .feature-case p {
  max-width: 660px;
  font-size: clamp(16px, 1.2vw, 18px);
}

.taste-air .feature-case .case-evidence {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 680px;
  margin-top: 18px;
}

.taste-air .feature-case .case-evidence span {
  min-height: 0;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(29, 29, 31, 0.64);
  font-size: 13px;
  line-height: 1.45;
  box-shadow: none;
}

.taste-air .feature-case .case-evidence b {
  display: block;
  margin-bottom: 4px;
  color: #1d1d1f;
  font-size: 12px;
}

.taste-air .feature-case .case-proof-tags {
  justify-content: flex-start;
  margin-top: 14px;
}

.taste-air .feature-case .case-art {
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 360px;
  margin: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.95), transparent 35%),
    linear-gradient(145deg, #eef3fb, #ffffff);
}

.taste-air .feature-case .case-art img {
  object-fit: cover;
  object-position: center;
  padding: 0;
}

@media (max-width: 980px) {
  .taste-air .feature-case {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(220px, auto);
  }

  .taste-air .feature-case .case-art {
    min-height: 240px;
  }

  .taste-air .feature-case .case-evidence {
    grid-template-columns: 1fr;
  }
}

/* Reference homepage structure: five clear screens inspired by the approved layout sketch. */
.home-page {
  --home-safe-width: 1200px;
  --home-safe-gutter: clamp(32px, 5vw, 72px);
  --home-section-gap: 0px;
}

.home-page.taste-air .site-header {
  width: min(var(--home-safe-width), calc(100% - var(--home-safe-gutter)));
}

.home-page.taste-air .nav {
  width: 100%;
  max-width: none;
}

.reference-home {
  max-width: none;
}

.reference-home .section {
  max-width: var(--home-safe-width);
  width: min(var(--home-safe-width), calc(100% - var(--home-safe-gutter)));
  min-height: 100svh;
  margin-inline: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.reference-home > .section + .section,
.reference-home > .section + .ref-sketch-showcase,
.reference-home > .ref-sketch-showcase + .section {
  margin-top: var(--home-section-gap);
}

.reference-home > .section {
  view-timeline-name: --home-screen;
  view-timeline-axis: block;
  will-change: opacity, transform, filter;
}

.home-screen-motion {
  opacity: 0.68;
  filter: saturate(0.9);
  transform: translateY(42px) scale(0.982);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms ease;
}

.home-screen-motion.is-screen-active {
  opacity: 1;
  filter: saturate(1);
  transform: translateY(0) scale(1);
}

.home-screen-motion.is-screen-before {
  opacity: 0.82;
  transform: translateY(-28px) scale(0.992);
}

.ref-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100svh;
  padding: clamp(24px, 4vh, 46px) 0 clamp(28px, 4vh, 42px);
}

/* portfolio-v2-hero-nav-gap-tighten */
.home-page.apple-air .ref-hero {
  padding-top: clamp(20px, 3.2vh, 38px);
}

.ref-hero-main {
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.ref-portrait-card {
  position: relative;
  width: clamp(300px, 27vw, 360px);
  height: auto;
  max-width: min(100%, calc(100vw - 48px));
  margin: 0;
  align-self: center;
  justify-self: center;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.ref-portrait-card::before {
  display: none;
}

.ref-portrait-card::after {
  display: none;
}

.ref-portrait-card img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
  margin-bottom: 80px;
}

.ref-hero-copy {
  max-width: 850px;
  min-width: 0;
}

.ref-hero-copy h1 {
  max-width: 820px;
  margin: 18px 0 0;
  color: #1d1d1f;
  font-size: clamp(21px, 3.2vw, 43px);
  line-height: 1;
  letter-spacing: 0;
}

.ref-hero-copy .lead {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(29, 29, 31, 0.66);
  font-size: clamp(18px, 1vw, 18px);
  line-height: 1.45;
}

.hero-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-skill-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  padding: 0 18px;
  background:
    linear-gradient(145deg, rgba(29, 29, 31, 0.76), rgba(58, 63, 72, 0.64)),
    rgba(29, 29, 31, 0.7);
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
  box-shadow:
    0 16px 38px rgba(29, 29, 31, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.24) inset;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.ref-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ref-hero-cards article,
.ref-case-card,
.ref-experience-row article,
.ref-ability-grid article {
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 113, 227, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 72px rgba(65, 78, 114, 0.08);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
}

.ref-hero-cards article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 10%, rgba(0, 113, 227, 0.055), transparent 32%),
    rgba(255, 255, 255, 0.28);
  box-shadow: 0 14px 42px rgba(65, 78, 114, 0.045);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.ref-hero-cards span,
.ref-section-head span,
.ref-case-card span,
.ref-experience-row span,
.ref-ability-grid span,
.ref-sketch-copy span {
  display: block;
  color: rgba(0, 113, 227, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.ref-hero-cards strong {
  display: block;
  margin-top: 14px;
  color: #1d1d1f;
  font-size: clamp(18px, 0.9vw, 18px);
  line-height: 1.15;
}

.ref-hero-cards p {
  margin: 8px 0 0;
  color: rgba(29, 29, 31, 0.6);
  font-size: 14px;
  line-height: 1.5;
}

.ref-cases {
  display: grid;
  align-content: center;
  padding: clamp(32px, 4vw, 52px) 0;
}

.ref-profile {
  display: grid;
  align-content: center;
  padding: clamp(58px, 6vw, 86px) 0;
}

.home-page.taste-air .ref-cases {
  padding-top: clamp(32px, 4vw, 52px);
  padding-bottom: clamp(32px, 4vw, 52px);
}

.home-page.taste-air .ref-profile {
  padding-top: clamp(58px, 6vw, 86px);
}

.ref-section-head {
  max-width: 760px;
  margin-bottom: clamp(18px, 2.6vw, 30px);
}

.ref-section-head.compact {
  margin-bottom: 20px;
}

.ref-section-head h2 {
  margin: 0;
  color: #1d1d1f;
  font-size: 36px;
  line-height: 1;
}

.ref-section-head p {
  margin: 12px 0 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.ref-case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: space-between;
  gap: clamp(18px, 2.4vw, 30px) clamp(34px, 5vw, 72px);
}

.ref-case-card {
  display: grid;
  align-content: start;
  overflow: visible;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: inherit;
  text-decoration: none;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 360ms ease;
}

.ref-case-card:hover {
  transform: translateY(-6px);
  filter: saturate(1.04);
}

.ref-case-card img,
.ref-case-card .ref-case-visual,
.ref-case-card .cobot-focus-video,
.ref-case-o3-devices {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.55;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f5f7;
  box-shadow: 0 18px 54px rgba(65, 78, 114, 0.1);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms ease;
}

.ref-case-card:hover img,
.ref-case-card:hover .ref-case-visual,
.ref-case-card:hover .cobot-focus-video,
.ref-case-card:hover .ref-case-o3-devices {
  transform: translateY(-2px);
  box-shadow: 0 26px 72px rgba(65, 78, 114, 0.14);
}

.ref-case-card img {
  object-fit: cover;
}

.ref-case-visual {
  position: relative;
}

.ref-case-visual > img {
  position: relative;
  z-index: 0;
  aspect-ratio: auto;
  height: 100%;
  border-radius: inherit;
  box-shadow: none;
}

.warehouse-home-poster {
  isolation: isolate;
  aspect-ratio: 3022 / 1492;
  background: #edf2f7;
}

.warehouse-home-poster > img {
  object-fit: cover;
}

.ref-case-card img.case-product-image {
  box-sizing: border-box;
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 4vw, 42px);
  background:
    radial-gradient(circle at 56% 48%, rgba(0, 113, 227, 0.1), transparent 34%),
    linear-gradient(145deg, #f7fbff 0%, #ffffff 62%, #eef6ff 100%);
}

.ref-case-card .ref-case-visual.demokit-home-poster.demokit-css-hero {
  display: block;
  position: relative;
}

.ref-case-card .demokit-home-poster .demokit-hero-word {
  left: 8%;
  top: 13%;
  transform: scale(0.72);
  transform-origin: left top;
}

.ref-case-card .demokit-home-poster .demokit-card-stack {
  right: 8%;
  top: 18%;
  width: 46%;
  transform: scale(0.76);
  transform-origin: right top;
}

.cobot-focus-video {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 52%, rgba(0, 113, 227, 0.12), transparent 36%),
    #eaf3fb;
}

.cobot-focus-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.22);
  transform-origin: center center;
}

.ref-case-o3-devices {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(0, 113, 227, 0.18), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(88, 166, 255, 0.16), transparent 34%),
    linear-gradient(145deg, #f8fbff 0%, #edf6ff 52%, #ffffff 100%);
}

.ref-case-o3-devices::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 113, 227, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 113, 227, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.46;
  mask-image: radial-gradient(circle at 56% 48%, #000 0%, transparent 76%);
}

.ref-case-o3-devices::after {
  content: "";
  position: absolute;
  left: 11%;
  right: 12%;
  bottom: 9%;
  height: 16px;
  border-radius: 999px;
  background: rgba(42, 84, 130, 0.16);
  filter: blur(18px);
}

.o3-card-laptop {
  position: absolute;
  left: 10%;
  top: 17%;
  z-index: 1;
  width: 68%;
  height: 58%;
  border: 7px solid #15181d;
  border-bottom-width: 17px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0 64%, rgba(236, 246, 255, 0.96) 64% 100%);
  box-shadow: 0 24px 58px rgba(64, 90, 126, 0.16);
}

.o3-card-laptop i,
.o3-card-phone i {
  display: block;
  border-radius: 9px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.14), rgba(250, 253, 255, 0.96));
}

.o3-card-topbar {
  height: 16px;
  border-radius: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background:
    linear-gradient(90deg, rgba(0, 113, 227, 0.16) 0 12%, transparent 12% 100%),
    #ffffff;
}

.o3-card-hero {
  height: 26%;
  margin: 12px 14px 10px;
}

.o3-card-list {
  display: grid;
  gap: 8px;
  width: 54%;
  margin-left: 14px;
}

.o3-card-list i {
  height: 13px;
}

.o3-card-side {
  position: absolute;
  right: 14px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  width: 26%;
}

.o3-card-side i {
  height: 26px;
}

.o3-card-phone {
  position: absolute;
  right: 13%;
  bottom: 16%;
  z-index: 2;
  width: 13%;
  min-width: 58px;
  height: 56%;
  border: 5px solid #15181d;
  border-radius: 24px;
  padding: 16px 8px 8px;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(64, 90, 126, 0.18);
}

.o3-card-phone::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 30%;
  height: 4px;
  border-radius: 999px;
  background: rgba(21, 24, 29, 0.28);
  transform: translateX(-50%);
}

.o3-card-phone i {
  height: 16%;
  margin-bottom: 8px;
}

.ref-case-card h3 {
  min-height: 0;
  margin: 12px 0 0;
  color: #1d1d1f;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.08;
}

.ref-case-card p {
  display: -webkit-box;
  min-height: 0;
  margin: 6px 0 0;
  overflow: hidden;
  color: rgba(29, 29, 31, 0.62);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ref-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
}

.ref-case-tags span {
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(0, 113, 227, 0.06);
  font-size: 12px;
}

.ref-profile {
  display: grid;
  gap: clamp(44px, 8vw, 90px);
}

.ref-experience {
  position: relative;
}

.experience-head {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-right: 0;
}

.experience-head > div {
  min-width: 0;
  flex: 1 1 auto;
}

.experience-head p {
  max-width: none;
  white-space: nowrap;
}

.experience-controls,
.capability-detail-toolbar div {
  display: flex;
  gap: 10px;
}

.experience-controls {
  position: absolute;
  top: 60px;
  right: max(100px, calc((100vw - var(--home-safe-width)) / 2 + 100px));
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 46px rgba(65, 78, 114, 0.1);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
}

.experience-count {
  min-width: 54px;
  padding: 0 6px 0 12px;
  color: rgba(29, 29, 31, 0.48);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.experience-controls button,
.experience-floating-controls button,
.capability-detail-toolbar button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(29, 29, 31, 0.72);
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(65, 78, 114, 0.08);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
  backdrop-filter: blur(16px) saturate(170%);
  -webkit-backdrop-filter: blur(16px) saturate(170%);
}

.experience-controls button:hover,
.experience-floating-controls button:hover,
.capability-detail-toolbar button:hover {
  transform: translateY(-2px);
  background: #1d1d1f;
  color: #ffffff;
}

.experience-controls button:disabled,
.experience-floating-controls button:disabled {
  cursor: default;
  opacity: 0.35;
  transform: none;
  background: rgba(255, 255, 255, 0.38);
  color: rgba(29, 29, 31, 0.34);
}

.experience-carousel {
  position: relative;
  margin-top: 34px;
  margin-inline: 0;
  padding-inline: 0;
  overflow: visible;
}

.experience-carousel::before,
.experience-carousel::after {
  content: none;
}

.experience-carousel::before {
  background: none;
}

.experience-carousel::after {
  background: none;
}

.experience-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 56px;
  overflow: visible;
  padding: 0;
  overscroll-behavior-x: auto;
  scroll-padding-inline: 0;
  scroll-snap-type: none;
  scroll-behavior: auto;
  scrollbar-width: none;
  cursor: default;
  touch-action: auto;
}

.experience-track.is-dragging {
  cursor: default;
  scroll-snap-type: none;
}

.experience-track::-webkit-scrollbar {
  display: none;
}

.experience-floating-controls {
  position: absolute;
  inset: 0 2px 26px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.experience-floating-controls button {
  width: 52px;
  height: 52px;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 20px 52px rgba(65, 78, 114, 0.16);
}

.experience-card {
  display: grid;
  grid-template-columns: 114px minmax(0, 1fr);
  column-gap: 28px;
  align-items: stretch;
  width: 100%;
  min-height: 114px;
  scroll-snap-align: start;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.experience-card-head {
  display: contents;
}

.experience-card-body {
  display: flex;
  min-width: 0;
  min-height: 114px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1px 0;
}

.experience-meta {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.company-logo {
  display: inline-flex;
  width: 114px;
  height: 114px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: inherit;
  font-size: 0;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 10px 26px rgba(65, 78, 114, 0.08);
}

.company-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-inovance,
.logo-huawei,
.logo-dunhuang,
.logo-onezero {
  background: rgba(255, 255, 255, 0.86);
}

.logo-dunhuang {
  padding: 8px;
}

.experience-date {
  display: block;
  flex: 0 0 auto;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.experience-card h3 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #1d1d1f;
  font-size: 16px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.experience-card p {
  display: -webkit-box;
  margin: 7px 0 0;
  overflow: hidden;
  color: rgba(29, 29, 31, 0.62);
  font-size: 14px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.experience-tags span {
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(29, 29, 31, 0.62);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.2;
}

body[data-language="en"] .experience-head p {
  font-size: 15px;
  letter-spacing: 0;
}

body[data-language="en"] .experience-card {
  padding: 0;
}

body[data-language="en"] .experience-card-head {
  display: contents;
}

body[data-language="en"] .company-logo {
  width: 114px;
  height: 114px;
}

body[data-language="en"] .experience-card-body {
  min-height: 114px;
}

body[data-language="en"] .experience-date {
  font-size: 12px;
  line-height: 1.2;
}

body[data-language="en"] .experience-card h3 {
  display: block;
  margin-top: 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.16;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body[data-language="en"] .experience-card p {
  margin-top: 7px;
  font-size: 13px;
  line-height: 1.34;
  -webkit-line-clamp: 2;
}

body[data-language="en"] .experience-tags {
  gap: 5px;
  margin-top: 8px;
}

body[data-language="en"] .experience-tags span {
  padding: 3px 7px;
  font-size: 11px;
  line-height: 1.15;
  white-space: nowrap;
}

.capability-summary {
  display: grid;
  gap: 26px;
}

body:not([data-language="en"]) .capability-summary .ref-section-head p {
  white-space: nowrap;
  font-size: clamp(12px, 2.05vw, 18px);
}

.capability-workbench {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 860px);
  gap: clamp(20px, 2.5vw, 40px);
  align-items: start;
  width: 100%;
  max-width: 100%;
  justify-content: start;
  overflow: hidden;
}

.capability-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  min-width: 0;
}

.capability-menu-group {
  display: grid;
  gap: 8px;
}

.capability-menu-group strong {
  display: block;
  margin-bottom: 6px;
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 900;
}

.capability-menu button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  min-height: 42px;
  align-items: center;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
  color: rgba(29, 29, 31, 0.72);
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.capability-menu button span {
  color: rgba(29, 29, 31, 0.42);
  font-size: 12px;
  font-weight: 760;
}

.capability-menu button:hover,
.capability-menu button.is-active {
  background: rgba(255, 255, 255, 0.72);
  color: #1d1d1f;
  transform: translateX(3px);
  box-shadow: 0 12px 34px rgba(65, 78, 114, 0.06);
}

.capability-menu button.is-active {
  border-left: 3px solid rgba(0, 113, 227, 0.72);
}

.capability-detail {
  position: relative;
  min-width: 0;
  width: min(100%, 860px);
  max-width: 860px;
  height: 650px;
  min-height: 650px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  padding: 34px 44px;
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 113, 227, 0.06), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52));
  box-shadow: 0 24px 80px rgba(65, 78, 114, 0.09);
  backdrop-filter: blur(20px) saturate(170%);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  overflow: hidden;
}

.capability-detail-toolbar {
  position: absolute;
  top: 20px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.capability-detail-toolbar > span {
  min-width: 52px;
  color: rgba(29, 29, 31, 0.5);
  font-size: 13px;
  font-weight: 820;
  text-align: center;
}

.capability-detail-toolbar button {
  width: 34px;
  height: 34px;
  font-size: 10.5px;
  box-shadow: none;
}

.summary-panel {
  display: none;
  min-width: 0;
  max-width: none;
  overflow: hidden;
}

.summary-panel.is-active {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.summary-panel > span,
.summary-panel > h3,
.summary-panel > p,
.summary-panel > ul {
  grid-column: 1;
}

.summary-panel > span {
  display: block;
  color: #0071e3;
  font-size: 13px;
  font-weight: 900;
}

.summary-panel > h3 {
  max-width: min(850px, 100%);
  margin: 12px 0 0;
  color: #1d1d1f;
  font-size: clamp(14px, 1.6vw, 21px);
  line-height: 1.08;
}

.summary-panel > p {
  max-width: min(850px, 100%);
  margin: 4px 0 0;
  color: rgba(29, 29, 31, 0.64);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.48;
}

.summary-panel > ul {
  display: grid;
  gap: 9px;
  margin: 8px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  color: rgba(29, 29, 31, 0.68);
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.42;
}

.summary-panel > ul li {
  list-style: none;
  position: relative;
  padding-left: 22px;
}

.summary-panel > ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.58);
}

.summary-proof {
  grid-column: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 30px);
  align-items: center;
  min-height: 220px;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  padding: 30px 36px;
  box-sizing: border-box;
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 62% 50%, rgba(255, 255, 255, 0.045), transparent 34%),
    linear-gradient(135deg, #1b1d1f, #0f1011 68%);
  color: #f8f8f8;
  box-shadow: 0 22px 60px rgba(29, 29, 31, 0.12);
}

.summary-proof-item {
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
}

.summary-proof-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #b9d0b2;
  font-size: 17px;
  font-weight: 360;
  line-height: 1;
}

.summary-proof-icon::before {
  content: attr(data-symbol);
}

.summary-proof-item strong {
  color: #ffffff;
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 860;
  line-height: 1.18;
}

.summary-proof-item p {
  max-width: 190px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(11px, 0.95vw, 13px);
  line-height: 1.38;
}

.ref-capability-tabs {
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 14px;
}

.taste-air .ref-capability-tabs .capability-axis,
.taste-air .ref-capability-tabs .capability-proof {
  border-color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(circle at 86% 8%, rgba(0, 113, 227, 0.05), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.42));
  box-shadow: 0 22px 70px rgba(65, 78, 114, 0.08);
}

.taste-air .ref-capability-tabs .capability-axis {
  gap: 7px;
  padding: 10px;
}

.taste-air .ref-capability-tabs .capability-tab {
  min-height: 50px;
  padding: 0 16px;
  font-size: 15px;
  font-weight: 760;
}

.taste-air .ref-capability-tabs .capability-proof,
.taste-air .ref-capability-tabs .capability-proof-panel {
  min-height: 430px;
}

.taste-air .ref-capability-tabs .capability-proof-panel {
  padding: clamp(24px, 4vw, 42px);
}

.taste-air .ref-capability-tabs .capability-proof-panel.is-active {
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: start;
}

.taste-air .ref-capability-tabs .proof-copy h3 {
  font-size: clamp(15px, 1.75vw, 24px);
}

.taste-air .ref-capability-tabs .proof-copy p {
  font-size: clamp(16px, 1.5vw, 19px);
}

.taste-air .ref-capability-tabs .proof-list {
  gap: 10px;
}

.taste-air .ref-capability-tabs .proof-list li {
  padding: 16px;
  background: rgba(255, 255, 255, 0.58);
}

.ref-experience-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ref-experience-row article,
.ref-ability-grid article {
  padding: 22px;
}

.ref-experience-row strong,
.ref-ability-grid strong {
  display: block;
  margin-top: 20px;
  color: #1d1d1f;
  font-size: clamp(20px, 1vw, 20px);
  line-height: 1.15;
}

.ref-experience-row p,
.ref-ability-grid p {
  margin: 10px 0 0;
  color: rgba(29, 29, 31, 0.62);
  line-height: 1.58;
}

.ref-ability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ref-ability-grid article {
  min-height: 220px;
}

.ref-sketch-showcase {
  display: none;
  position: relative;
  margin-top: var(--home-section-gap);
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: transparent;
  isolation: auto;
}

.ref-cases .ref-sketch-showcase,
.ref-contact .ref-sketch-showcase {
  display: grid;
  position: relative;
  grid-template-columns: 320px minmax(0, 1fr);
  column-gap: clamp(32px, 5vw, 72px);
  height: clamp(300px, 34vh, 430px);
  min-height: 0;
  margin-top: clamp(18px, 2vw, 28px);
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.ref-cases .ref-sketch-title,
.ref-contact .ref-sketch-title {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  width: 320px;
  margin: 0;
}

.ref-cases .ref-sketch-title h2,
.ref-contact .ref-sketch-title h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.ref-cases .ref-sketch-nav,
.ref-contact .ref-sketch-nav {
  position: absolute;
  top: 50%;
  right: clamp(14px, 2.4vw, 34px);
  z-index: 5;
  display: grid;
  gap: 10px;
  width: 54px;
  transform: translateY(-50%);
}

.ref-cases .ref-sketch-nav a,
.ref-contact .ref-sketch-nav a {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 50%;
  color: rgba(29, 29, 31, 0.38);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 26px rgba(65, 78, 114, 0.08);
  font-size: 16px;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.ref-cases .ref-sketch-nav a.is-active,
.ref-contact .ref-sketch-nav a.is-active {
  color: #ffffff;
  background: #1d1d1f;
  border-color: rgba(29, 29, 31, 0.16);
  box-shadow: 0 18px 38px rgba(29, 29, 31, 0.18);
}

.ref-cases .ref-sketch-scroll,
.ref-contact .ref-sketch-scroll {
  position: relative;
  grid-column: 1 / -1;
  height: 100%;
  overflow: hidden;
  contain: none;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.ref-cases .ref-sketch-panel,
.ref-contact .ref-sketch-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  column-gap: clamp(32px, 5vw, 72px);
  align-items: end;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  filter: none;
  transform: translateX(18px);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  scroll-snap-align: none;
}

.ref-cases .ref-sketch-panel.is-sketch-active,
.ref-contact .ref-sketch-panel.is-sketch-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.ref-cases .ref-sketch-copy,
.ref-contact .ref-sketch-copy {
  display: grid;
  align-content: end;
  
  height: calc(100% - 76px);
  padding: 0 0 28px;
}

.ref-cases .ref-sketch-copy span,
.ref-contact .ref-sketch-copy span {
  color: #0071e3;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.ref-cases .ref-sketch-copy h2,
.ref-contact .ref-sketch-copy h2 {
  min-height: 0;
  margin: 20px 0 0;
  color: #1d1d1f;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.12;
}

.ref-cases .ref-sketch-copy p,
.ref-contact .ref-sketch-copy p {
  display: block;
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.78;
}

.ref-cases .ref-sketch-copy p + p,
.ref-contact .ref-sketch-copy p + p {
  margin-top: 10px;
}

.ref-cases .ref-sketch-copy ul,
.ref-contact .ref-sketch-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  color: rgba(29, 29, 31, 0.62);
  font-size: 14px;
  line-height: 1.45;
}

.ref-cases .ref-sketch-copy li,
.ref-contact .ref-sketch-copy li {
  padding-left: 18px;
}

.ref-cases .ref-sketch-panel img,
.ref-contact .ref-sketch-panel img {
  align-self: stretch;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: 8px 0 0 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 70px rgba(65, 78, 114, 0.12);
  transform: none;
}

.ref-sketch-title {
  position: relative;
  z-index: 6;
  width: min(var(--home-safe-width), calc(100% - var(--home-safe-gutter)));
  margin: 0 auto 0px;
  padding: 0;
  pointer-events: none;
}

.ref-sketch-title span {
  display: block;
  color: rgba(0, 113, 227, 0.82);
  font-size: 12px;
  font-weight: 900;
}

.ref-sketch-title h2 {
  margin: 8px 0 0;
  color: #1d1d1f;
  font-size: 36px;
  line-height: 1;
}

.ref-sketch-nav {
  position: absolute;
  top: 50%;
  right: max(18px, calc((100vw - var(--home-safe-width)) / 2 + 18px));
  z-index: 8;
  display: grid;
  gap: 9px;
  width: 52px;
  height: auto;
  transform: translateY(-50%);
}

.ref-sketch-nav a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  color: rgba(29, 29, 31, 0.46);
  background: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ref-sketch-nav a.is-active {
  color: #fff;
  background: #1d1d1f;
  border-color: rgba(29, 29, 31, 0.18);
  box-shadow: 0 14px 30px rgba(29, 29, 31, 0.14);
}

.ref-sketch-scroll {
  position: relative;
  height: calc(100% - clamp(82px, 9vw, 120px));
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  background: transparent;
  contain: paint;
}

.ref-sketch-scroll::-webkit-scrollbar {
  display: none;
}

.ref-sketch-panel {
  display: grid;
  grid-template-columns: 330px minmax(0, 1024px);
  gap: 12px;
  align-items: center;
  width: min(var(--home-safe-width), calc(100% - var(--home-safe-gutter)));
  height: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: 0;
  opacity: 0.48;
  transform: scale(0.982);
  transition:
    opacity 640ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 640ms ease;
  will-change: opacity, transform, filter;
}

.ref-sketch-panel.is-sketch-active {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1);
}

.ref-sketch-panel.is-sketch-prev {
  filter: saturate(0.86);
  transform: translateY(-18px) scale(0.986);
}

.ref-sketch-panel.is-sketch-next {
  filter: saturate(0.9);
  transform: translateY(18px) scale(0.986);
}

.ref-sketch-copy {
  display: grid;
  width: 330px;
  height: 650px;
  align-content: center;
  box-sizing: border-box;
  padding: 28px 28px 28px 0;
  background: transparent;
}

.ref-sketch-copy h2 {
  margin: 18px 0 0;
  color: #1d1d1f;
  font-size: clamp(15px, 1.6vw, 23px);
  line-height: 1.08;
}

.ref-sketch-copy p {
  max-width: 280px;
  margin: 22px 0 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 17px;
  line-height: 1.58;
}

.ref-sketch-copy p + p {
  margin-top: 10px;
}

.ref-sketch-copy ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
  color: rgba(29, 29, 31, 0.62);
  font-size: 14px;
  line-height: 1.46;
}

.ref-sketch-copy li {
  position: relative;
  list-style: none;
  padding-left: 18px;
}

.ref-sketch-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 113, 227, 0.58);
}

.ref-sketch-panel img {
  display: block;
  width: 100%;
  max-width: 1024px;
  height: 650px;
  min-height: 650px;
  border-radius: 8px;
  object-fit: cover;
  object-position: 72% center;
  background: transparent;
  box-shadow: none;
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.ref-sketch-panel.is-sketch-active img {
  transform: scale(1);
}

.ref-sketch-panel.is-sketch-prev img,
.ref-sketch-panel.is-sketch-next img {
  transform: scale(0.972);
}

.ref-sketch-panel:nth-of-type(5) img,
.ref-sketch-panel:nth-of-type(6) img {
  object-position: center;
}

.ref-contact {
  --contact-left-inset: max(calc((100vw - var(--home-safe-width)) / 2), calc(var(--home-safe-gutter) / 2));
  --contact-side-width: clamp(360px, 27vw, 440px);
  --contact-copy-width: clamp(280px, 21vw, 340px);
  --contact-visual-gap: clamp(20px, 2.5vw, 34px);
  max-width: none;
  width: calc(100vw - var(--contact-left-inset));
  margin-left: var(--contact-left-inset);
  margin-right: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--contact-side-width);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(14px, 2vh, 22px);
  align-content: center;
  align-items: stretch;
  justify-items: stretch;
  padding: clamp(24px, 3.2vh, 42px) 0;
  text-align: left; 
}

.ref-contact > .ref-sketch-showcase {
  grid-column: 1 / -1;
  grid-row: 1;
}

.ref-contact > div:not(.ref-sketch-showcase):not(.contact-lines) {
  grid-column: 1;
  grid-row: 2;
}

.ref-contact > .contact-lines {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
}

.ref-contact .ref-sketch-showcase {
  width: 150%;
  height: clamp(500px, 62vh, 660px);
  margin-top: 0;
  grid-template-columns: var(--contact-copy-width) minmax(0, 1fr);
  column-gap: var(--contact-visual-gap);
  overflow: hidden;
}

.ref-contact .ref-sketch-showcase + div {
  display: grid;
  align-items: center;
  padding: clamp(15px, 1.6vw, 22px) clamp(22px, 2.8vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 113, 227, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 54px rgba(65, 78, 114, 0.08);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.ref-contact .ref-sketch-title {
  display: none;
}

.ref-contact .ref-sketch-title h2 {
  font-size: clamp(34px, 3.4vw, 48px);
}

.ref-contact .ref-sketch-nav a {
  width: 48px;
  height: 48px;
  font-size: 15px;
}

.ref-contact .ref-sketch-nav a:not(.is-active) {
  background: rgba(255, 255, 255, 0.78);
}

.ref-contact .ref-sketch-scroll,
.ref-contact .ref-sketch-panel {
  height: 100%;
}

.ref-contact .ref-sketch-scroll {
  display: grid;
  grid-template-columns: var(--contact-copy-width) minmax(0, 1fr);
  column-gap: var(--contact-visual-gap);
}

.ref-contact .ref-sketch-panel {
  grid-template-columns: var(--contact-copy-width) minmax(0, 1fr);
  column-gap: var(--contact-visual-gap);
  align-items: stretch;
}

.ref-contact .ref-sketch-copy {
  height: 100%;
  align-content: center;
  padding: 0;
  text-align: left;
}

.ref-contact .ref-sketch-copy h2 {
  margin-top: 18px;
  font-size: clamp(24px, 2.2vw, 34px);
}

.ref-contact .ref-sketch-copy p {
  max-width: 300px;
  margin-top: 20px;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.7;
}

.ref-contact .ref-sketch-copy p:nth-of-type(n + 3) {
  display: none;
}

.ref-contact .ref-sketch-copy ul {
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  font-size: 13px;
}

.ref-contact .ref-sketch-panel img {
  grid-column: 2;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.42);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 70px rgba(65, 78, 114, 0.12);
}

.ref-contact .ref-sketch-nav {
  position: absolute;
  top: 50%;
  right: clamp(20px, 2.6vw, 40px);
  grid-column: auto;
  grid-row: auto;
  align-self: center;
  justify-self: center;
  transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
  .home-screen-motion,
  .home-screen-motion.is-screen-active,
  .home-screen-motion.is-screen-before,
  .ref-sketch-panel,
  .ref-sketch-panel.is-sketch-active,
  .ref-sketch-panel.is-sketch-prev,
  .ref-sketch-panel.is-sketch-next,
  .ref-sketch-panel img {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .ref-sketch-scroll {
    scroll-behavior: auto;
  }
}
#contact {
margin-top: 0;
}

.home-page .ref-contact h2 {
  margin: 0;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.08;
}

.home-page .ref-contact .contact-lines {
  width: auto;
  margin: 0;
  display: grid;
  grid-column: 2;
  grid-row: 2;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: clamp(15px, 1.6vw, 22px) clamp(22px, 2.8vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 113, 227, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 54px rgba(65, 78, 114, 0.08);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.home-page .contact-lines a,
.home-page .contact-lines span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  color: rgba(29, 29, 31, 0.74);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.2;
  text-align: left;
}

.home-page .contact-lines img {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: contain;
}

.home-page .contact-lines b {
  font: inherit;
  font-weight: 760;
}

.site-footer {
  display: none;
}

@media (max-width: 980px) {
  .ref-hero-cards,
  .ref-experience-row,
  .ref-capability-tabs,
  .taste-air .ref-capability-tabs .capability-proof-panel.is-active,
  .capability-workbench {
    grid-template-columns: 1fr;
  }

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

  .ref-hero-main {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ref-portrait-card {
    width: min(340px, calc(100vw - 48px));
    height: auto;
    justify-self: center;
  }

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

  .experience-card {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .experience-head {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 0;
  }

  .experience-head p {
    white-space: normal;
  }

  .experience-controls {
    position: static;
    align-self: flex-start;
  }

  .experience-carousel {
    margin-inline: 0;
    padding-inline: 0;
  }

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

  .experience-floating-controls {
    inset: 0 14px 26px;
  }

  .experience-floating-controls button {
    width: 46px;
    height: 46px;
  }

  .capability-menu {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .capability-workbench {
    overflow: visible;
  }

  .capability-detail {
    width: 100%;
    max-width: 100%;
    height: 650px;
    min-height: 650px;
    padding: 30px 32px;
  }

  .summary-proof,
  .summary-panel > span,
  .summary-panel > h3,
  .summary-panel > p,
  .summary-panel > ul {
    grid-column: 1;
  }

  .summary-panel > ul {
    order: 4;
  }

  .summary-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    min-height: 210px;
    padding: 26px 24px;
  }

  .summary-proof-item p {
    max-width: 160px;
  }

  .ref-sketch-nav {
    top: 50%;
    width: 52px;
    right: 12px;
  }

  .ref-sketch-title {
    width: min(calc(100% - 88px), var(--home-safe-width));
  }

  .ref-sketch-panel {
    grid-template-columns: 1fr;
    width: min(calc(100% - 78px), var(--home-safe-width));
    padding-right: 54px;
    padding-left: 20px;
  }

  .ref-sketch-copy {
    width: 100%;
    height: auto;
    min-height: auto;
    padding: 0 0 22px;
  }

  .ref-sketch-panel img {
    width: 100%;
    max-width: 100%;
    height: clamp(300px, 42vh, 480px);
    min-height: 300px;
    object-fit: contain;
    object-position: center;
  }

  .ref-cases .ref-sketch-showcase,
  .ref-contact .ref-sketch-showcase {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 620px;
    overflow: visible;
  }

  .ref-cases .ref-sketch-title,
  .ref-contact .ref-sketch-title {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }

  .ref-cases .ref-sketch-scroll,
  .ref-contact .ref-sketch-scroll {
    height: 560px;
  }

  .ref-cases .ref-sketch-panel,
  .ref-contact .ref-sketch-panel {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .ref-cases .ref-sketch-copy,
  .ref-contact .ref-sketch-copy {
    height: auto;
    padding: 0 68px 0 0;
  }

  .ref-cases .ref-sketch-copy p,
  .ref-contact .ref-sketch-copy p {
    max-width: none;
    font-size: 15px;
    line-height: 1.6;
  }

  .ref-cases .ref-sketch-copy p:nth-of-type(n + 2),
  .ref-contact .ref-sketch-copy p:nth-of-type(n + 2),
  .ref-cases .ref-sketch-copy ul,
  .ref-contact .ref-sketch-copy ul {
    display: none;
  }

  .ref-cases .ref-sketch-panel img,
  .ref-contact .ref-sketch-panel img {
    height: 320px;
    min-height: 0;
    border-radius: 8px;
    object-fit: cover;
  }

  .ref-cases .ref-sketch-nav,
  .ref-contact .ref-sketch-nav {
    top: 86px;
    right: 0;
    transform: none;
  }

  .ref-contact {
    max-width: var(--home-safe-width);
    width: min(var(--home-safe-width), calc(100% - var(--home-safe-gutter)));
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .ref-contact > .ref-sketch-showcase,
  .ref-contact > div:not(.ref-sketch-showcase):not(.contact-lines),
  .ref-contact > .contact-lines {
    grid-column: 1;
  }

  .ref-contact .ref-sketch-showcase {
    height: auto;
    min-height: 620px;
  }

  .home-page .ref-contact .contact-lines {
    margin: -8px 0 0;
  }
}

@media (max-width: 640px) {
  .reference-home .section,
  .ref-sketch-panel {
    width: min(calc(100% - 32px), var(--home-safe-width));
  }

  .experience-track {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ref-case-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-skill-tags {
    gap: 8px;
  }

  .ref-portrait-card {
    width: min(330px, calc(100vw - 48px));
    height: auto;
  }

  .hero-skill-tags span {
    min-height: 34px;
    padding: 0 13px;
    font-size: 13px;
  }

  .ref-hero-copy h1 {
    font-size: clamp(19px, 5.5vw, 28px);
  }

  .experience-head {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 0;
  }

  .experience-controls {
    position: static;
    width: auto;
    align-self: flex-end;
    justify-content: flex-start;
  }

  .experience-count {
    flex: 0 0 auto;
  }

  .experience-card {
    width: 100%;
    height: auto;
    min-height: 92px;
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: 16px;
    padding: 0;
  }

  .experience-card-body {
    min-height: 92px;
    justify-content: flex-start;
    padding: 0;
  }

  .experience-meta {
    gap: 8px;
  }

  .experience-floating-controls {
    display: none;
  }

  .experience-carousel::before,
  .experience-carousel::after {
    width: 28px;
  }

  .experience-card-head {
    display: contents;
  }

  .company-logo,
  body[data-language="en"] .company-logo {
    width: 92px;
    height: 92px;
    padding: 11px;
  }

  body[data-language="en"] .experience-card-head {
    display: contents;
  }

  .experience-date {
    font-size: 11px;
    text-align: right;
  }

  body[data-language="en"] .experience-head p {
    font-size: 14px;
    white-space: normal;
  }

  body[data-language="en"] .experience-card h3 {
    margin-top: 0;
  }

  .experience-card h3 {
    font-size: 15px;
    line-height: 1.18;
  }

  .experience-card p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.34;
  }

  .experience-tags {
    gap: 4px;
    margin-top: 6px;
  }

  .capability-menu {
    grid-template-columns: 1fr;
  }

  .capability-detail {
    height: auto;
    min-height: auto;
    padding: 88px 22px 28px;
    overflow: visible;
  }

  .capability-detail-toolbar {
    top: 22px;
    left: 22px;
    right: auto;
  }

  .summary-panel > h3 {
    font-size: clamp(14px, 4vw, 20px);
  }

  .summary-proof {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 22px;
  }

  .summary-proof-item p {
    max-width: 320px;
  }

  .ref-ability-grid {
    grid-template-columns: 1fr;
  }

  .ref-sketch-showcase {
    min-height: 720px;
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .ref-sketch-title {
    width: min(calc(100% - 64px), var(--home-safe-width));
  }

  .ref-sketch-panel {
    width: min(calc(100% - 48px), var(--home-safe-width));
    padding: 0 40px 0 0;
  }

  .ref-sketch-panel img {
    height: clamp(280px, 40vh, 420px);
    min-height: 280px;
  }

  .ref-sketch-copy {
    width: 100%;
    height: auto;
    padding: 0 0 22px;
  }

  .ref-sketch-copy h2 {
    font-size: clamp(15px, 4.5vw, 22px);
  }

  .ref-sketch-nav {
    right: 6px;
  }
}

/* portfolio-v2-mobile-nav */
@media (max-width: 640px) {
  .taste-air .site-header,
  .home-page.taste-air .site-header {
    top: 8px;
    width: min(calc(100% - 20px), var(--home-safe-width, 1200px));
    border-radius: 20px;
  }

  .taste-air .nav,
  .home-page.taste-air .nav {
    align-items: flex-start;
    min-height: 52px;
    padding: 8px 12px;
    gap: 8px 10px;
  }

  .taste-air .brand,
  .home-page.taste-air .brand {
    flex: 0 0 auto;
    min-height: 32px;
    font-size: 15px;
  }

  .taste-air .nav-links,
  .home-page.taste-air .nav-links {
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 4px 8px;
  }

  .taste-air .nav-links a,
  .home-page.taste-air .nav-links a {
    min-height: 30px;
    padding: 5px 8px;
    font-size: 13px;
    line-height: 1.2;
  }

  .taste-air .language-toggle,
  .home-page.taste-air .language-toggle {
    width: 54px;
    min-height: 30px;
    font-size: 11px;
  }

  .ref-hero {
    padding-top: 28px;
  }

  .ref-hero-main {
    gap: 16px;
  }

  .ref-portrait-card {
    width: min(320px, calc(100vw - 32px));
    height: auto;
  }

  .ref-hero-copy h1 {
    max-width: 11em;
    line-height: 1.12;
  }

  .ref-hero-copy .lead {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .ref-hero-cards {
    margin-top: 28px;
    gap: 10px;
  }

  .ref-hero-cards article {
    min-height: auto;
    padding: 14px;
  }

  /* portfolio-v2-mobile-case-balance */
  .ref-case-card .ref-case-visual.demokit-home-poster.demokit-css-hero {
    min-height: 0;
    height: auto;
    aspect-ratio: 560 / 300;
    padding: 14px;
  }

  .ref-case-card .demokit-home-poster .demokit-hero-word {
    left: 16px;
    top: 50%;
    max-width: 45%;
    transform: translateY(-50%);
  }

  .ref-case-card .demokit-home-poster .demokit-hero-word strong {
    font-size: clamp(30px, 11vw, 42px);
    line-height: 0.82;
  }

  .ref-case-card .demokit-home-poster .demokit-card-stack {
    right: 14px;
    top: 50%;
    width: min(42%, 142px);
    height: 74%;
    transform: translateY(-50%);
  }

  .ref-case-card .demokit-home-poster .demokit-stack-card {
    padding: 10px;
  }

  .ref-case-card .demokit-home-poster .demokit-stack-card small {
    font-size: 7px;
    line-height: 1.2;
  }

  .ref-case-card .demokit-home-poster .demokit-stack-card strong {
    font-size: clamp(12px, 4vw, 16px);
    line-height: 1.15;
  }

  .ref-case-card .demokit-home-poster .demokit-stack-card span {
    font-size: 10px;
  }

  /* portfolio-v2-mobile-archive-flow */
  .ref-sketch-showcase {
    height: auto;
    min-height: 0;
    padding-top: 38px;
    padding-bottom: 52px;
    overflow: visible;
  }

  .ref-sketch-title {
    width: min(calc(100% - 32px), var(--home-safe-width));
    margin-bottom: 14px;
  }

  .ref-sketch-title h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .ref-sketch-nav {
    position: relative;
    top: auto;
    right: auto;
    z-index: 6;
    display: flex;
    width: min(calc(100% - 32px), var(--home-safe-width));
    margin: 0 auto 20px;
    gap: 8px;
    transform: none;
  }

  .ref-sketch-nav a {
    width: 42px;
    height: 34px;
    flex: 0 0 auto;
  }

  .ref-sketch-scroll {
    display: grid;
    height: auto;
    gap: 28px;
    overflow: visible;
    scroll-snap-type: none;
    contain: none;
  }

  .ref-sketch-panel {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), var(--home-safe-width));
    height: auto;
    min-height: 0;
    gap: 16px;
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(29, 29, 31, 0.08);
    scroll-snap-align: none;
  }

  .ref-sketch-copy {
    width: 100%;
    height: auto;
    min-height: 0;
    align-content: start;
    padding: 0;
  }

  .ref-sketch-copy h2 {
    margin-top: 10px;
    font-size: clamp(18px, 5.6vw, 24px);
    line-height: 1.16;
  }

  .ref-sketch-copy p {
    max-width: 100%;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.58;
  }

  .ref-sketch-copy ul {
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    font-size: 13px;
  }

  .ref-sketch-panel img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.28);
  }
}

/* portfolio-v2-senior-evidence */
.hero-evidence-summary,
.case-quick-read {
  display: grid;
  gap: 12px;
}

.hero-evidence-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 820px;
  margin-top: clamp(18px, 2.4vw, 30px);
}

.case-quick-read article {
  min-width: 0;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 54px rgba(65, 78, 114, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-evidence-summary span {
  position: relative;
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: start;
  column-gap: 12px;
  row-gap: 4px;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-evidence-summary span::before {
  content: "";
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 6px;
  height: 6px;
  margin-top: 0.62em;
  border-radius: 999px;
  background: #0071e3;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.hero-evidence-summary strong,
.case-quick-read strong {
  color: #1d1d1f;
  font-size: 15px;
  line-height: 1.28;
}

.hero-evidence-summary strong,
.hero-evidence-summary small {
  grid-column: 2;
}

.hero-evidence-summary small {
  color: rgba(29, 29, 31, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.case-quick-read {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: clamp(26px, 4vw, 54px) auto;
}

.case-quick-read article {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(16px, 2vw, 22px);
}

.case-quick-read span {
  color: #0071e3;
  font-size: 12px;
  font-weight: 900;
}

.case-quick-read p {
  margin: 0;
  color: rgba(29, 29, 31, 0.62);
  font-size: 14px;
  line-height: 1.62;
}

.o3-quick-read {
  width: min(1200px, calc(100% - 48px));
  margin-top: 0;
}

@media (max-width: 980px) {
  .case-quick-read {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-evidence-summary,
  .case-quick-read {
    grid-template-columns: 1fr;
  }

  .hero-evidence-summary {
    margin-top: 18px;
    gap: 12px;
  }

  .case-quick-read article {
    padding: 14px;
  }

  .case-quick-read {
    width: min(calc(100% - 32px), 1180px);
    margin: 28px auto;
    gap: 10px;
  }
}

/* xmax-mobile-overflow-fix */

/* portfolio-v3-contact-mobile-balance */
@media (max-width: 980px) {
  .reference-home .ref-contact {
    width: min(calc(100% - 32px), var(--home-safe-width));
    max-width: var(--home-safe-width);
    min-height: 100svh;
    margin-inline: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 14px;
    padding: 24px 0;
    overflow: hidden;
  }

  .ref-contact > .ref-sketch-showcase,
  .ref-contact > div:not(.ref-sketch-showcase):not(.contact-lines),
  .ref-contact > .contact-lines {
    grid-column: 1;
  }

  .ref-contact > .ref-sketch-showcase {
    grid-row: 1;
  }

  .ref-contact > div:not(.ref-sketch-showcase):not(.contact-lines) {
    grid-row: 2;
  }

  .ref-contact > .contact-lines {
    grid-row: 3;
  }

  .reference-home .ref-contact .ref-sketch-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    overflow: visible;
  }

  .ref-contact .ref-sketch-scroll {
    order: 1;
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .ref-contact .ref-sketch-panel {
    position: relative;
    inset: auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .ref-contact .ref-sketch-panel.is-sketch-active {
    display: grid;
  }

  .ref-contact .ref-sketch-copy {
    height: auto;
    padding: 0;
    align-content: start;
  }

  .ref-contact .ref-sketch-copy span {
    font-size: 13px;
  }

  .ref-contact .ref-sketch-copy h2 {
    max-width: 12em;
    margin-top: 8px;
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.08;
  }

  .ref-contact .ref-sketch-copy p {
    max-width: 32em;
    margin-top: 12px;
    font-size: clamp(14px, 2.8vw, 16px);
    line-height: 1.55;
  }

  .ref-contact .ref-sketch-copy p:nth-of-type(n + 2),
  .ref-contact .ref-sketch-copy ul {
    display: none;
  }

  .ref-contact .ref-sketch-panel img {
    grid-column: 1;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
  }

  .ref-contact .ref-sketch-nav {
    position: relative;
    order: 2;
    top: auto;
    right: auto;
    display: flex;
    width: 100%;
    margin: 0;
    gap: 8px;
    transform: none;
  }

  .ref-contact .ref-sketch-nav a {
    width: 38px;
    height: 34px;
    flex: 0 0 38px;
    border-radius: 999px;
    font-size: 13px;
  }

  .ref-contact .ref-sketch-showcase + div,
  .home-page .ref-contact .contact-lines {
    width: 100%;
    margin: 0;
    padding: 18px 20px;
  }

  .home-page .ref-contact h2 {
    font-size: clamp(24px, 5.4vw, 34px);
    text-align: center;
  }

  .home-page .ref-contact .contact-lines {
    gap: 10px;
  }

  .home-page .ref-contact .contact-lines span {
    gap: 10px;
    font-size: clamp(15px, 3.4vw, 18px);
  }

  .home-page .ref-contact .contact-lines img {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

@media (max-width: 640px) {
  .reference-home .ref-contact {
    width: min(calc(100% - 24px), var(--home-safe-width));
    padding: 18px 0;
    gap: 12px;
  }

  .ref-contact .ref-sketch-copy h2 {
    max-width: 10em;
    font-size: clamp(22px, 8vw, 30px);
  }

  .ref-contact .ref-sketch-copy p {
    font-size: 14px;
  }

  .ref-contact .ref-sketch-panel img {
    aspect-ratio: 16 / 10;
  }

  .ref-contact .ref-sketch-nav {
    justify-content: space-between;
  }

  .ref-contact .ref-sketch-nav a {
    width: 36px;
    height: 32px;
    flex-basis: 36px;
  }

  .ref-contact .ref-sketch-showcase + div,
  .home-page .ref-contact .contact-lines {
    padding: 16px;
  }
}

/* portfolio-v3-contact-mobile-final */
@media (max-width: 980px) {
  .home-page .reference-home .ref-contact {
    width: min(calc(100% - 28px), var(--home-safe-width));
    max-width: var(--home-safe-width);
    min-height: 100svh;
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto !important;
    align-content: start;
    align-items: stretch;
    gap: 14px;
    padding: clamp(54px, 8vh, 78px) 0 28px;
    overflow: hidden;
  }

  .home-page .ref-contact > .ref-sketch-showcase,
  .home-page .ref-contact > div:not(.ref-sketch-showcase):not(.contact-lines),
  .home-page .ref-contact > .contact-lines {
    grid-column: 1 !important;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .home-page .ref-contact > .ref-sketch-showcase {
    grid-row: 1 !important;
  }

  .home-page .ref-contact > div:not(.ref-sketch-showcase):not(.contact-lines) {
    grid-row: 2 !important;
  }

  .home-page .ref-contact > .contact-lines {
    grid-row: 3 !important;
  }

  .home-page .ref-contact .ref-sketch-panel {
    width: 100%;
  }

  .home-page .ref-contact .ref-sketch-copy h2 {
    max-width: none;
    text-align: left;
    font-size: clamp(28px, 6.2vw, 40px);
    line-height: 1.05;
  }

  .home-page .ref-contact .ref-sketch-copy p {
    max-width: 34em;
  }

  .home-page .ref-contact .ref-sketch-panel img {
    aspect-ratio: 16 / 9;
  }

  .home-page .ref-contact .ref-sketch-nav {
    justify-content: flex-start;
  }

  .home-page .ref-contact .ref-sketch-showcase + div,
  .home-page .ref-contact .contact-lines {
    min-width: 0;
    border-radius: 8px;
  }

  .home-page .ref-contact > div:not(.ref-sketch-showcase):not(.contact-lines) {
    margin-top: 2px;
  }

  .home-page .ref-contact .contact-lines {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    align-items: stretch;
    margin-top: 0;
  }

  .home-page .ref-contact .contact-lines span {
    min-width: 0;
    width: 100%;
  }

  .home-page .ref-contact .contact-lines b {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .home-page .reference-home .ref-contact {
    width: min(calc(100% - 28px), var(--home-safe-width));
    gap: 10px;
    padding-top: 42px;
  }

  .home-page .ref-contact .ref-sketch-copy h2 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .home-page .ref-contact .ref-sketch-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .home-page .ref-contact .ref-sketch-panel img {
    aspect-ratio: 16 / 10;
  }

  .home-page .ref-contact .ref-sketch-nav {
    gap: 6px;
    justify-content: space-between;
  }

  .home-page .ref-contact .ref-sketch-nav a {
    width: 38px;
    height: 34px;
    flex: 0 0 38px;
  }

  .home-page .ref-contact h2 {
    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.12;
  }
}
