/*
 * 2026-07-26 / Site-wide Option A experience layer
 * Navigation borrows the grouped interaction model from the Qingge website,
 * while surfaces, colour and motion remain native to Shichi's approved homepage.
 */

:root {
  --experience-blue: #0b63d8;
  --experience-blue-bright: #2f82e9;
  --experience-ink: #10243d;
  --experience-muted: #66778c;
  --experience-paper: #f4f8fd;
  --experience-surface: rgba(255, 255, 255, 0.9);
  --experience-surface-blue: #edf5ff;
  --experience-shadow: 0 24px 70px rgba(31, 78, 134, 0.12);
  --experience-shadow-hover: 0 34px 90px rgba(22, 91, 181, 0.18);
  --experience-radius: 28px;
  --experience-ease: cubic-bezier(0.2, 0.72, 0.2, 1);
}

/* Navigation */

.topbar {
  z-index: 60;
  height: 76px;
  overflow: visible;
  border: 0;
  background: rgba(249, 252, 255, 0.88);
  box-shadow: 0 10px 38px rgba(29, 65, 109, 0.06);
}

.topbar__inner {
  position: relative;
  z-index: 3;
  width: min(100%, 1680px);
  margin: 0 auto;
}

.nav {
  height: 100%;
  gap: 0;
}

.nav-menu {
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 2px;
}

.nav-item {
  position: static;
  display: flex;
  align-items: stretch;
}

.nav-trigger {
  position: relative;
  min-height: 42px;
  padding: 0 clamp(9px, 1vw, 15px);
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 999px;
  color: #35465c;
  background: transparent;
  font-size: 12px;
  font-weight: 680;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-item.is-open .nav-trigger,
.nav-item.is-current .nav-trigger {
  color: var(--experience-blue);
  background: rgba(11, 99, 216, 0.08);
}

.nav-trigger:focus-visible {
  outline: 3px solid rgba(11, 99, 216, 0.22);
  outline-offset: 2px;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  width: min(1080px, calc(100vw - 48px));
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  border: 0;
  border-radius: 30px;
  color: var(--experience-ink);
  background: rgba(249, 252, 255, 0.96);
  box-shadow: 0 32px 100px rgba(13, 49, 94, 0.2);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
  backdrop-filter: blur(24px) saturate(135%);
  transform: translate(-50%, -12px) scale(0.985);
  transform-origin: 50% 0;
  transition:
    opacity 220ms ease,
    transform 320ms var(--experience-ease),
    visibility 0s linear 320ms;
}

.nav-panel::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 6px;
  content: "";
}

.nav-item.is-open .nav-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
  transition-delay: 0s;
}

.nav-panel__content {
  padding: 10px;
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(0, 2.24fr);
  gap: clamp(24px, 4vw, 64px);
}

.nav-panel__intro {
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(75, 151, 242, 0.3), transparent 35%),
    linear-gradient(145deg, #e8f2ff, #f7faff);
}

.nav-panel__intro::after {
  position: absolute;
  right: -54px;
  bottom: -62px;
  width: 180px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(25, 108, 218, 0.24), rgba(95, 170, 248, 0.06));
  transition: transform 560ms var(--experience-ease);
}

.nav-item.is-open .nav-panel__intro::after {
  transform: translate(-10px, -8px) scale(1.08);
}

.nav-panel__intro > span,
.nav-panel__group > p {
  color: var(--experience-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-panel__intro > strong {
  max-width: 260px;
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.nav-panel__intro > p {
  max-width: 290px;
  margin: 14px 0 26px;
  color: var(--experience-muted);
  font-size: 12px;
  line-height: 1.72;
}

.nav .nav-panel__intro > a {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: white;
  background: var(--experience-blue);
  font-size: 11px;
  font-weight: 760;
  transition: background 180ms ease, transform 180ms ease;
}

.nav .nav-panel__intro > a:hover,
.nav .nav-panel__intro > a:focus-visible {
  color: white;
  background: var(--experience-blue-bright);
  transform: translateY(-2px);
}

.nav-panel__groups {
  padding: 18px 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
  align-content: center;
}

.nav-panel__group {
  min-width: 0;
}

.nav-panel__group > p {
  margin-bottom: 16px;
}

.nav-panel__group > div {
  display: grid;
  gap: 6px;
}

.nav .nav-panel__group a {
  min-height: 42px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  color: #42546b;
  font-size: 13px;
  font-weight: 610;
  line-height: 1.45;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 220ms var(--experience-ease);
}

.nav .nav-panel__group a:hover,
.nav .nav-panel__group a:focus-visible {
  color: var(--experience-blue);
  background: rgba(11, 99, 216, 0.075);
  transform: translateX(4px);
}

.nav .nav-panel__group a::after,
.nav .nav-panel__intro > a::after {
  display: none;
}

.nav-scrim {
  position: fixed;
  z-index: 1;
  inset: 76px 0 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(20, 42, 70, 0.18);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}

.topbar.has-nav-open .nav-scrim {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-toggle {
  border: 0;
  background: #edf4fc;
  box-shadow: none;
}

.header-cta {
  border: 0;
  background: linear-gradient(135deg, #15243a, #0d65d8);
  box-shadow: 0 12px 30px rgba(18, 72, 142, 0.16);
}

/* Shared chrome */

.site-footer {
  border: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(71, 145, 235, 0.09), transparent 25%),
    #f1f6fc;
}

.site-footer__bottom {
  border: 0;
}

/* Inner-page atmosphere */

.inner-page {
  --inner-card-radius: 28px;
  color: var(--experience-ink);
  background: var(--experience-paper);
}

.inner-page .page {
  background:
    radial-gradient(circle at 88% 7%, rgba(57, 132, 228, 0.13), transparent 22%),
    radial-gradient(circle at 8% 34%, rgba(124, 188, 248, 0.1), transparent 20%),
    linear-gradient(180deg, #f8fbff 0%, #f2f7fc 38%, #f8fbff 100%);
}

.inner-page main {
  position: relative;
  isolation: isolate;
}

.inner-page main::before {
  position: absolute;
  z-index: -1;
  top: 160px;
  right: -8vw;
  width: min(42vw, 680px);
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 142, 239, 0.12), transparent 66%);
  pointer-events: none;
}

.inner-page .inner-shell {
  width: min(100%, 1680px);
  margin: 0 auto;
}

.inner-page .breadcrumbs {
  margin-bottom: 32px;
}

.inner-page .breadcrumbs ol {
  gap: 10px;
  color: #7890ab;
}

.inner-page .breadcrumbs li:not(:last-child)::after {
  color: rgba(55, 105, 167, 0.28);
}

.inner-page .inner-hero {
  position: relative;
  max-width: 1260px;
  padding: clamp(50px, 7vw, 104px) 0 clamp(74px, 9vw, 132px);
}

.inner-page .inner-hero::after {
  position: absolute;
  top: 11%;
  right: 1%;
  width: min(28vw, 410px);
  aspect-ratio: 1;
  content: "";
  border-radius: 38% 62% 58% 42%;
  background: linear-gradient(145deg, rgba(40, 119, 220, 0.14), rgba(124, 190, 250, 0.035));
  filter: blur(1px);
  transform: rotate(18deg);
  pointer-events: none;
}

.inner-page .inner-hero > * {
  position: relative;
  z-index: 1;
}

.inner-page .inner-hero h1,
.inner-page .entity-hero h1 {
  color: var(--experience-ink);
  font-weight: 680;
}

.inner-page .inner-hero > p:last-child,
.inner-page .entity-hero p:last-child {
  color: var(--experience-muted);
  line-height: 1.8;
}

.inner-page .eyebrow {
  color: #4671a7;
}

/* Remove line-grid grouping from every inner-page content family. */

.inner-page :where(
  .entity-grid,
  .entity-card,
  .empty-state,
  .detail-section,
  .tag-list li,
  .number-list,
  .number-list li,
  .module-grid,
  .module-grid li,
  .boundary-list,
  .boundary-list li,
  .case-narrative > div,
  .decision-grid,
  .decision-grid article,
  .pricing-table,
  .pricing-table > div,
  .category-strip,
  .category-strip span,
  .fact-grid,
  .fact-grid article,
  .contact-cards,
  .contact-cards article,
  .contact-decision,
  .contact-decision > div,
  .secondary-facts,
  .secondary-facts article,
  .secondary-module-grid,
  .secondary-module-grid li,
  .secondary-related,
  .secondary-related a,
  .secondary-hub-grid,
  .secondary-hub-grid > a
) {
  border: 0;
}

/* Card collections */

.inner-page :where(
  .entity-grid,
  .decision-grid,
  .fact-grid,
  .contact-cards,
  .contact-decision,
  .secondary-facts,
  .secondary-module-grid,
  .secondary-related,
  .secondary-hub-grid
) {
  gap: clamp(16px, 2vw, 28px);
  background: transparent;
}

.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--inner-card-radius);
  background:
    radial-gradient(circle at var(--pointer-x, 92%) var(--pointer-y, 8%), rgba(77, 151, 239, 0.16), transparent 32%),
    var(--experience-surface);
  box-shadow: var(--experience-shadow);
  transition:
    color 260ms ease,
    background 260ms ease,
    box-shadow 420ms var(--experience-ease),
    transform 420ms var(--experience-ease);
}

.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
)::before {
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -110px;
  width: 230px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(44, 129, 233, 0.16), rgba(105, 179, 248, 0.025));
  transition: transform 560ms var(--experience-ease), opacity 360ms ease;
}

.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
):hover,
.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
):focus-within {
  color: var(--experience-ink);
  background:
    radial-gradient(circle at var(--pointer-x, 88%) var(--pointer-y, 10%), rgba(74, 153, 244, 0.24), transparent 36%),
    linear-gradient(145deg, #ffffff, #edf5ff);
  box-shadow: var(--experience-shadow-hover);
  transform: translateY(-6px);
}

.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
):hover::before,
.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
):focus-within::before {
  transform: translate(-22px, -16px) scale(1.14);
}

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

.inner-page .entity-card {
  min-height: 400px;
  padding: clamp(28px, 3vw, 44px);
}

.inner-page .entity-card h2 {
  margin-top: 54px;
}

.inner-page .entity-card p,
.inner-page .secondary-hub-grid > a > strong {
  color: var(--experience-muted);
}

.inner-page .entity-card .text-link,
.inner-page .secondary-hub-grid > a > em,
.inner-page .secondary-related a em {
  color: var(--experience-blue);
}

.inner-page .status-chip,
.inner-page .category-strip span,
.inner-page .tag-list li {
  border: 0;
  border-radius: 999px;
  color: var(--experience-blue);
  background: rgba(11, 99, 216, 0.09);
  box-shadow: none;
}

/* Entity detail hero */

.inner-page .entity-hero {
  min-height: 560px;
  overflow: hidden;
  color: var(--experience-ink);
  border: 0;
  border-radius: 36px;
  background:
    radial-gradient(circle at 82% 22%, rgba(58, 139, 235, 0.24), transparent 28%),
    linear-gradient(140deg, #f9fcff 0%, #eaf3ff 58%, #f7fbff 100%);
  box-shadow: 0 36px 110px rgba(40, 92, 151, 0.14);
}

.inner-page .entity-orbit {
  filter: drop-shadow(0 30px 50px rgba(28, 91, 174, 0.16));
}

.inner-page .entity-orbit span:nth-child(1) {
  inset: 5%;
  border: 0;
  background: linear-gradient(145deg, rgba(28, 111, 222, 0.82), rgba(91, 167, 245, 0.28));
}

.inner-page .entity-orbit span:nth-child(2) {
  inset: 30%;
  border: 0;
  border-radius: 28%;
  background: rgba(248, 252, 255, 0.78);
  box-shadow: 0 18px 46px rgba(22, 81, 157, 0.14);
}

.inner-page .entity-orbit b {
  color: rgba(19, 78, 154, 0.26);
}

.inner-page .flow-map {
  min-height: 380px;
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 18%, rgba(63, 145, 239, 0.2), transparent 34%),
    rgba(239, 246, 255, 0.86);
}

.inner-page .flow-map span {
  border: 0;
  border-radius: 16px;
  color: #2d4d75;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(45, 91, 145, 0.08);
}

.inner-page .flow-map i {
  width: 7px;
  height: 7px;
  margin-left: 20px;
  border-radius: 50%;
  background: #5e9fe9;
}

.inner-page .case-stamp {
  border: 0;
  border-radius: 34%;
  color: #154d95;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.8), transparent 23%),
    linear-gradient(145deg, rgba(49, 133, 236, 0.35), rgba(130, 193, 248, 0.12));
  box-shadow: 0 28px 70px rgba(30, 98, 180, 0.15);
  transform: rotate(8deg);
}

.inner-page .case-stamp::before,
.inner-page .case-stamp::after {
  display: none;
}

.inner-page .case-stamp span {
  color: #2469bd;
}

.inner-page .case-stamp b {
  color: #174f95;
  transform: rotate(-8deg);
}

/* Narrative and content lists */

.inner-page .detail-section {
  padding-block: clamp(80px, 9vw, 140px);
}

.inner-page .tag-list {
  gap: 12px;
}

.inner-page .tag-list li {
  padding: 13px 17px;
}

.inner-page .number-list,
.inner-page .boundary-list,
.inner-page .pricing-table {
  display: grid;
  gap: 12px;
}

.inner-page .number-list li,
.inner-page .boundary-list li,
.inner-page .pricing-table > div {
  min-height: 82px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(38, 81, 132, 0.075);
  transition: background 220ms ease, transform 280ms var(--experience-ease);
}

.inner-page .number-list li:hover,
.inner-page .boundary-list li:hover,
.inner-page .pricing-table > div:hover {
  background: #edf5ff;
  transform: translateX(5px);
}

.inner-page .boundary-list li {
  padding-left: 48px;
}

.inner-page .boundary-list li::before {
  top: 50%;
  left: 22px;
  width: 8px;
  height: 8px;
  border: 0;
  background: var(--experience-blue);
  box-shadow: 0 0 0 7px rgba(11, 99, 216, 0.09);
  transform: translateY(-50%);
}

.inner-page .module-grid {
  gap: 14px;
  background: transparent;
}

.inner-page .module-grid li {
  min-height: 136px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 12%, rgba(65, 144, 239, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 42px rgba(38, 81, 132, 0.08);
  transition: transform 320ms var(--experience-ease), box-shadow 320ms ease;
}

.inner-page .module-grid li:hover {
  box-shadow: 0 24px 58px rgba(31, 91, 164, 0.14);
  transform: translateY(-5px);
}

.inner-page .secondary-module-grid li {
  min-height: 230px;
}

.inner-page .case-narrative {
  display: grid;
  gap: 18px;
}

.inner-page .case-narrative > div {
  min-height: 270px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 15%, rgba(68, 147, 240, 0.13), transparent 27%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--experience-shadow);
}

.inner-page .public-metric {
  border-radius: 28px;
  background: linear-gradient(135deg, #156bdc, #56a1ee);
  box-shadow: 0 28px 70px rgba(19, 103, 215, 0.22);
}

.inner-page .pricing-table > div {
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1.6fr);
}

.inner-page .category-strip {
  padding: 0;
  gap: 10px;
  background: transparent;
}

/* FAQ */

.inner-page .faq-list {
  display: grid;
  gap: 12px;
  border: 0;
}

.inner-page .faq-list details {
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 13px 38px rgba(38, 81, 132, 0.075);
  transition: background 240ms ease, box-shadow 280ms ease, transform 280ms var(--experience-ease);
}

.inner-page .faq-list details:hover,
.inner-page .faq-list details[open] {
  background: linear-gradient(145deg, #ffffff, #eef6ff);
  box-shadow: 0 22px 54px rgba(32, 93, 166, 0.13);
  transform: translateY(-3px);
}

.inner-page .faq-list summary {
  min-height: 84px;
  padding: 20px 22px;
  border: 0;
}

.inner-page .faq-list summary::after {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--experience-blue);
  background: rgba(11, 99, 216, 0.08);
  line-height: 1;
}

.inner-page .faq-list details > p {
  padding: 0 66px 26px;
}

/* Related links and hubs: keep light on interaction. */

.inner-page .secondary-related a:hover,
.inner-page .secondary-related a:focus-visible,
.inner-page .secondary-hub-grid > a:hover,
.inner-page .secondary-hub-grid > a:focus-visible {
  color: var(--experience-ink);
  background:
    radial-gradient(circle at 88% 10%, rgba(63, 145, 239, 0.26), transparent 34%),
    linear-gradient(145deg, #ffffff, #e9f3ff);
}

.inner-page .secondary-related a:hover span,
.inner-page .secondary-related a:hover em,
.inner-page .secondary-related a:focus-visible span,
.inner-page .secondary-related a:focus-visible em {
  color: var(--experience-blue);
}

.inner-page .secondary-hub-grid > a:hover strong,
.inner-page .secondary-hub-grid > a:focus-visible strong {
  color: var(--experience-muted);
}

.inner-page .secondary-hub-grid > a {
  min-height: 330px;
}

.inner-page .secondary-hub-grid--compact > a {
  min-height: 290px;
}

/* CTA and forms */

.inner-page .external-cta,
.inner-page .inline-cta,
.inner-page .inline-form {
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 84% 16%, rgba(155, 211, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #0b63d8, #438fe9);
  box-shadow: 0 34px 90px rgba(18, 102, 214, 0.23);
}

.inner-page .external-cta .eyebrow,
.inner-page .inline-form .eyebrow {
  color: #d5e9ff;
}

.inner-page .external-cta .button--primary,
.inner-page .inline-cta .button--primary {
  color: var(--experience-blue);
  background: white;
  box-shadow: 0 14px 32px rgba(10, 63, 132, 0.18);
}

.inner-page .external-cta .button--primary:hover,
.inner-page .inline-cta .button--primary:hover {
  color: #094ea9;
  background: #edf6ff;
}

.inner-page .inline-form .lead-form {
  border: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(10, 62, 130, 0.17);
}

.inner-page .empty-state {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--experience-shadow);
}

.inner-page .error-state {
  color: var(--experience-ink);
  background:
    radial-gradient(circle at 72% 24%, rgba(47, 130, 229, 0.2), transparent 28%),
    linear-gradient(145deg, #f8fbff, #eaf3ff);
}

.inner-page .error-state p {
  color: var(--experience-muted);
}

/* Inner-page entrance sequence. JS only adds the hidden state when active. */

.inner-page .inner-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 760ms var(--experience-ease);
  transition-delay: min(calc(var(--reveal-order, 0) * 54ms), 320ms);
}

.inner-page .inner-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
).inner-reveal.is-revealed:hover,
.inner-page :where(
  .entity-card,
  .decision-grid article,
  .fact-grid article,
  .contact-cards article,
  .contact-decision > div,
  .secondary-facts article,
  .secondary-module-grid li,
  .secondary-related a,
  .secondary-hub-grid > a
).inner-reveal.is-revealed:focus-within {
  transform: translateY(-6px);
}

/* 2026-07-26 / Secondary-page banner, rhythm and content refinements */

.inner-page .inner-hero {
  --banner-x: 76%;
  --banner-y: 24%;
  --banner-shift-x: 0px;
  --banner-shift-y: 0px;
  width: 100%;
  max-width: none;
  min-height: clamp(390px, 36vw, 520px);
  padding: clamp(54px, 6.5vw, 92px) clamp(30px, 6vw, 92px);
  overflow: hidden;
  isolation: isolate;
  border-radius: 36px;
  background: linear-gradient(138deg, #f9fcff 0%, #edf5ff 54%, #f8fbff 100%);
  box-shadow: 0 34px 100px rgba(34, 88, 151, 0.14);
}

.inner-page .inner-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--banner-x) var(--banner-y), rgba(47, 130, 229, 0.28), transparent 25%),
    radial-gradient(circle at calc(var(--banner-x) - 30%) calc(var(--banner-y) + 42%), rgba(118, 190, 249, 0.14), transparent 30%);
  transition: background-position 180ms ease;
  pointer-events: none;
}

.inner-page .inner-hero::after {
  z-index: 0;
  top: auto;
  right: clamp(-72px, -3vw, -28px);
  bottom: clamp(-128px, -7vw, -72px);
  width: min(34vw, 480px);
  background: linear-gradient(145deg, rgba(40, 119, 220, 0.2), rgba(124, 190, 250, 0.035));
  filter: blur(0.5px);
  transform: translate(var(--banner-shift-x), var(--banner-shift-y)) rotate(18deg);
  transition: transform 360ms var(--experience-ease);
}

.inner-page .inner-hero > * {
  z-index: 2;
}

.inner-page .inner-hero h1,
.inner-page .entity-hero h1 {
  max-width: 1160px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.inner-page .inner-hero > p:last-child {
  max-width: 820px;
}

.inner-page .entity-hero {
  --banner-x: 78%;
  --banner-y: 22%;
  --banner-shift-x: 0px;
  --banner-shift-y: 0px;
  position: relative;
  isolation: isolate;
  background: linear-gradient(140deg, #f9fcff 0%, #eaf3ff 58%, #f7fbff 100%);
}

.inner-page .entity-hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--banner-x) var(--banner-y), rgba(47, 130, 229, 0.28), transparent 27%),
    radial-gradient(circle at 14% 84%, rgba(115, 188, 248, 0.12), transparent 30%);
  pointer-events: none;
}

.inner-page .entity-hero::after {
  position: absolute;
  z-index: 0;
  right: -86px;
  bottom: -130px;
  width: min(34vw, 470px);
  aspect-ratio: 1;
  content: "";
  border-radius: 38% 62% 58% 42%;
  background: linear-gradient(145deg, rgba(40, 119, 220, 0.14), rgba(124, 190, 250, 0.025));
  transform: translate(var(--banner-shift-x), var(--banner-shift-y)) rotate(18deg);
  transition: transform 360ms var(--experience-ease);
  pointer-events: none;
}

.inner-page .entity-hero > * {
  position: relative;
  z-index: 2;
}

.inner-page .secondary-facts {
  position: relative;
  z-index: 2;
  margin-top: clamp(28px, 3vw, 44px);
}

.inner-page .inner-hero + :where(
  .entity-grid,
  .secondary-hub-grid,
  .pricing-table,
  .category-strip,
  .fact-grid
) {
  margin-top: clamp(28px, 3vw, 44px);
}

.inner-page .detail-section {
  padding-block: clamp(64px, 6vw, 88px);
}

.inner-page .detail-faq {
  padding-block: clamp(62px, 5.8vw, 84px);
}

.inner-page .secondary-next,
.inner-page .secondary-listing-block {
  padding-top: clamp(64px, 6vw, 88px);
}

.inner-page .detail-section + .detail-section,
.inner-page .secondary-boundary + .detail-faq,
.inner-page .secondary-boundary + .secondary-next,
.inner-page .detail-faq + .secondary-next {
  padding-top: clamp(38px, 3.5vw, 52px);
}

.inner-page .secondary-next > .secondary-next__head,
.inner-page .secondary-listing-head {
  margin-bottom: 34px;
}

.inner-page .detail-section > div > h2,
.inner-page .detail-faq > div > h2,
.inner-page .secondary-next > div > h2 {
  font-size: clamp(30px, 3.35vw, 50px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.secondary-page .secondary-scope {
  grid-template-columns: 1fr;
  gap: clamp(30px, 3.5vw, 48px);
}

.secondary-page .secondary-scope > div {
  max-width: 820px;
}

.secondary-page .secondary-scope .secondary-module-grid {
  width: 100%;
}

.secondary-page .secondary-module-grid li {
  min-height: 180px;
  grid-template-rows: auto 1fr;
  row-gap: 16px;
}

.secondary-page .secondary-module-grid li > span {
  grid-row: 1;
  align-self: center;
}

.secondary-page .secondary-module-grid li > strong {
  grid-column: 2;
  grid-row: 1;
}

.secondary-page .secondary-module-grid li > p {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
}

.secondary-page .secondary-decisions {
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(42px, 5vw, 76px);
}

.secondary-page .detail-faq {
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(42px, 5vw, 76px);
}

.secondary-page .detail-faq > div {
  max-width: none;
}

.custom-development-page .custom-service-directions {
  align-items: start;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 5vw, 76px);
}

.custom-development-page .custom-service-directions .decision-grid {
  width: 100%;
}

.custom-development-page .custom-service-directions .decision-grid article {
  min-height: 230px;
  padding: clamp(24px, 2.6vw, 36px);
}

.custom-development-page .custom-service-directions .decision-grid h2 {
  margin: 30px 0 14px;
  font-size: clamp(24px, 2.1vw, 32px);
}

.inner-page .inline-form {
  margin-top: clamp(48px, 5vw, 76px);
}

.inner-page .detail-faq + .inline-form {
  margin-top: 0;
}

.inner-page .boundary-list li {
  padding: 18px 22px 18px 50px;
  display: flex;
  align-items: center;
  line-height: 1.55;
}

.decision-page .detail-section--split > .boundary-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
}

.inner-page .delivery-grid li {
  min-height: 160px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
}

.inner-page .delivery-grid strong {
  font-size: 14px;
  line-height: 1.55;
}

.inner-page .delivery-icon {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  color: var(--experience-blue);
  background: rgba(11, 99, 216, 0.09);
  transition: color 220ms ease, background 220ms ease, transform 300ms var(--experience-ease);
}

.inner-page .delivery-icon svg {
  width: 24px;
  height: 24px;
}

.inner-page .delivery-grid li:hover .delivery-icon {
  color: white;
  background: linear-gradient(145deg, var(--experience-blue), var(--experience-blue-bright));
  transform: translateY(-3px) rotate(-3deg);
}

.inner-page .secondary-decisions .decision-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.inner-page .secondary-decisions .decision-grid article {
  min-height: 250px;
  padding: clamp(25px, 2.6vw, 38px);
}

.inner-page .secondary-decisions .decision-grid h2 {
  margin: 34px 0 14px;
  font-size: clamp(24px, 2.1vw, 33px);
}

.inner-page .secondary-boundary {
  align-items: stretch;
}

.inner-page .boundary-statement {
  position: relative;
  min-height: 250px;
  padding: clamp(28px, 3.5vw, 48px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(66, 148, 241, 0.2), transparent 34%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--experience-shadow);
}

.inner-page .boundary-statement::after {
  position: absolute;
  right: -54px;
  bottom: -72px;
  width: 170px;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(40, 119, 220, 0.16), rgba(124, 190, 250, 0.025));
}

.inner-page .boundary-statement > span {
  position: relative;
  z-index: 1;
  color: var(--experience-blue);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.inner-page .boundary-statement > p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  color: #425a76;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.62;
}

.inner-page .secondary-related a {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.inner-page .secondary-related {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
}

.inner-page .secondary-related a strong {
  width: 100%;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.24;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.inner-page .secondary-related a em {
  margin-top: auto;
  align-self: flex-end;
}

.inner-page .secondary-inquiry {
  margin-top: clamp(68px, 6vw, 92px);
}

.inner-page .secondary-inquiry > div > h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  line-height: 1.07;
}

.inner-page .lead-form .consent {
  display: flex !important;
  align-items: center;
  gap: 9px;
}

.inner-page .lead-form .consent input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  flex: 0 0 16px;
}

.inner-page .lead-form .consent span {
  margin: 0;
  line-height: 1.65;
}

/* Keep the same footer geometry on home and every secondary page. */

.site-footer {
  padding: 54px var(--pad) 27px;
}

.site-footer__main {
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 1.5fr);
  column-gap: 72px;
}

.footer-links {
  grid-template-columns: repeat(4, minmax(92px, 0.9fr)) minmax(210px, 1.5fr);
  gap: clamp(18px, 2.3vw, 34px);
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links h2 {
  margin: 0 0 7px;
  color: #7a8ba0;
  font: 650 11px/1.4 var(--mono);
  letter-spacing: 0.04em;
}

.footer-links a,
.footer-contact span {
  color: #5d728a;
  font-size: 12px;
  line-height: 1.65;
}

.footer-contact {
  min-width: 0;
  max-width: 260px;
  margin: 0;
}

.footer-contact a {
  white-space: nowrap;
}

.site-footer__bottom {
  margin-top: 38px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 18px 32px;
  border-top: 1px solid #dfe7f1;
  color: #7b8da1;
  font-size: 10px;
  line-height: 1.65;
}

.friend-links,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.friend-links,
.legal-links {
  margin: 0;
}

.site-footer__bottom a {
  color: #5d728a;
}

@media (max-width: 1180px) {
  .site-footer__main {
    grid-template-columns: 1fr;
    row-gap: 38px;
  }

  .footer-links {
    grid-template-columns: repeat(4, minmax(110px, 1fr));
  }

  .footer-contact {
    grid-column: 1 / -1;
    max-width: none;
  }

  .inner-page .secondary-decisions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .secondary-page .detail-faq,
  .custom-development-page .custom-service-directions {
    grid-template-columns: 1fr;
  }

  .inner-page .secondary-hero .semantic-title-clause {
    display: block;
  }
}

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

  .footer-contact {
    grid-column: 1 / -1;
  }

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

  .secondary-page .secondary-module-grid li {
    min-height: 160px;
  }
}

@media (max-width: 620px) {
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1240px) {
  .nav-trigger {
    padding-inline: 9px;
    font-size: 11px;
  }
}

@media (max-width: 1180px) {
  .topbar__inner {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .home-page .topbar__inner {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav-toggle {
    position: relative;
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border-radius: 50%;
  }

  .home-page .topbar .nav-toggle {
    display: grid;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #24405f;
    transition: transform 220ms var(--experience-ease);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only) {
    position: absolute;
    top: 50%;
    left: 50%;
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav {
    position: fixed;
    z-index: 4;
    inset: 76px 0 0;
    width: auto;
    height: calc(100dvh - 76px);
    padding: 24px clamp(20px, 5vw, 54px) 60px;
    display: none;
    overflow-y: auto;
    color: var(--experience-ink);
    background:
      radial-gradient(circle at 92% 8%, rgba(67, 148, 241, 0.16), transparent 25%),
      rgba(246, 250, 255, 0.985);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

  .nav.is-open {
    display: block;
  }

  .home-page .topbar .nav {
    display: none;
  }

  .home-page .topbar .nav.is-open {
    display: block;
  }

  .nav-menu {
    width: min(100%, 900px);
    height: auto;
    margin: 0 auto;
    display: grid;
    gap: 10px;
  }

  .nav-item {
    display: block;
  }

  .nav-trigger {
    width: 100%;
    min-height: 62px;
    padding: 0 20px;
    justify-content: flex-start;
    border-radius: 18px;
    font-size: 19px;
    text-align: left;
  }

  .nav-panel {
    position: static;
    width: auto;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    border-radius: 22px;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: none;
    transition:
      max-height 540ms var(--experience-ease),
      opacity 240ms ease,
      visibility 0s linear 540ms;
  }

  .nav-item.is-open .nav-panel {
    max-height: 1100px;
    visibility: visible;
    opacity: 1;
    transform: none;
    transition-delay: 0s;
  }

  .nav-panel::before {
    display: none;
  }

  .nav-panel__content {
    padding: 10px 0 20px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .nav-panel__intro {
    min-height: 0;
    padding: 24px;
  }

  .nav-panel__intro > p {
    margin-bottom: 18px;
  }

  .nav-panel__groups {
    padding: 8px 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
  }

  .nav .nav-panel__group a {
    border: 0;
  }

  .nav-scrim {
    display: none;
  }

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

@media (max-width: 760px) {
  .header-cta {
    display: none;
  }

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

  .home-page .topbar__inner {
    grid-template-columns: 1fr auto;
  }

  .nav-panel__groups {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .nav-panel__intro {
    display: none;
  }

  .inner-page .inner-hero::after {
    top: auto;
    right: -34%;
    bottom: -24%;
    width: 78vw;
    opacity: 0.7;
  }

  .inner-page .entity-grid {
    grid-template-columns: 1fr;
  }

  .inner-page .entity-card {
    min-height: 320px;
  }

  .inner-page .entity-hero {
    padding: 42px 24px;
    border-radius: 26px;
  }

  .inner-page .detail-section {
    padding-block: 52px;
  }

  .inner-page .detail-faq {
    padding-block: 52px;
  }

  .decision-page .detail-section--split > .boundary-list,
  .inner-page .secondary-decisions .decision-grid {
    grid-template-columns: 1fr;
  }

  .inner-page .secondary-related a strong {
    text-wrap: wrap;
  }

  .inner-page .case-narrative > div {
    min-height: 0;
    padding: 34px 26px;
  }

  .inner-page .pricing-table > div {
    grid-template-columns: 1fr;
  }

  .inner-page .external-cta,
  .inner-page .inline-cta,
  .inner-page .inline-form {
    border-radius: 26px;
  }
}

/* Rich inner-page components */

.inner-page .solution-journey {
  position: relative;
  z-index: 1;
  padding: 22px;
  margin: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 24px 70px rgba(35, 91, 160, 0.12);
  backdrop-filter: blur(16px);
}

.inner-page .solution-journey li {
  min-height: 72px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  border-radius: 18px;
  background: rgba(244, 249, 255, 0.72);
}

.inner-page .solution-journey li > span,
.inner-page .capability-grid small,
.inner-page :where(.audience-grid, .version-grid) li > span,
.inner-page .case-storyboard article > span,
.inner-page .case-storyboard__delivery > div > span,
.inner-page .maintenance-grid article > span,
.inner-page .privacy-grid article > span,
.inner-page .privacy-summary > span {
  color: #3375c5;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.inner-page .solution-journey strong {
  display: block;
  color: #183f70;
  font-size: 15px;
}

.inner-page .solution-journey p {
  margin-top: 3px;
  color: #637c99;
  font-size: 12px;
  line-height: 1.5;
}

.inner-page .capability-section {
  align-items: start;
}

.inner-page .capability-grid,
.inner-page .audience-grid,
.inner-page .version-grid,
.inner-page .maintenance-grid,
.inner-page .privacy-grid {
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.inner-page .capability-grid li {
  position: relative;
  min-height: 190px;
  padding: 24px;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  overflow: hidden;
  border-radius: 24px;
  outline: 0;
  color: var(--experience-ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(38, 81, 132, 0.08);
  transition: transform 380ms var(--experience-ease), box-shadow 380ms ease, background 380ms ease;
}

.inner-page .capability-icon {
  width: 50px;
  aspect-ratio: 1;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #2771ca;
  background: #eaf4ff;
}

.inner-page .capability-icon svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inner-page .capability-grid small {
  align-self: center;
  justify-self: end;
}

.inner-page .capability-grid strong {
  grid-column: 1 / -1;
  align-self: end;
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.08;
}

.inner-page .capability-grid i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2a77ce, #69b4f2);
}

.inner-page .capability-grid li.is-active {
  background:
    radial-gradient(circle at 88% 12%, rgba(76, 160, 244, 0.26), transparent 34%),
    linear-gradient(145deg, #f9fcff, #e9f4ff);
  box-shadow: 0 25px 65px rgba(37, 106, 187, 0.17);
  transform: translateY(-5px);
}

.inner-page .capability-grid li.is-active i {
  width: 100%;
  transition: width 2800ms linear;
}

.inner-page :where(.audience-grid, .version-grid) li {
  position: relative;
  min-height: 176px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 12%, rgba(74, 153, 241, 0.15), transparent 32%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(38, 81, 132, 0.08);
}

.inner-page .audience-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.inner-page .audience-grid li {
  grid-column: span 2;
}

.inner-page .audience-grid li:nth-child(n + 4) {
  grid-column: span 3;
}

.inner-page :where(.audience-grid, .version-grid) strong {
  margin-top: 24px;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 31px);
}

.inner-page :where(.audience-grid, .version-grid) p {
  margin-top: 10px;
  color: var(--experience-muted);
  font-size: 13px;
  line-height: 1.65;
}

.inner-page .case-storyboard {
  padding-block: clamp(72px, 8vw, 120px);
  display: grid;
  gap: 18px;
}

.inner-page .case-storyboard article {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--experience-shadow);
}

.inner-page .case-storyboard__context,
.inner-page .case-storyboard__role {
  position: relative;
  min-width: 0;
  padding: clamp(34px, 4.5vw, 62px);
}

.inner-page .case-storyboard__context {
  min-height: 420px;
  background:
    radial-gradient(circle at 85% 15%, rgba(75, 155, 242, 0.25), transparent 30%),
    linear-gradient(145deg, #f9fcff, #eaf4ff);
}

.inner-page .case-storyboard__role {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 10% 85%, rgba(79, 154, 239, .12), transparent 28%),
    rgba(255, 255, 255, .92);
}

.inner-page .case-storyboard__context h2 {
  max-width: 620px;
  margin: clamp(58px, 6vw, 92px) 0 22px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.inner-page .case-storyboard__context p,
.inner-page .case-storyboard__role p {
  max-width: 920px;
  color: var(--experience-muted);
  line-height: 1.75;
}

.inner-page .case-storyboard__context i {
  position: absolute;
  right: -12px;
  bottom: -16px;
  color: rgba(25, 91, 172, 0.08);
  font-family: var(--display);
  font-size: clamp(70px, 10vw, 150px);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.inner-page .case-storyboard__role h2,
.inner-page .case-storyboard__delivery h2 {
  margin: 30px 0 12px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
}

.inner-page .case-role-path {
  margin-top: 36px;
  width: min(100%, 720px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.inner-page .case-role-path b {
  min-height: 62px;
  padding: 12px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #315f96;
  background: rgba(229, 241, 255, .9);
  font-size: 12px;
  font-weight: 720;
  text-align: center;
}

.inner-page .case-storyboard__delivery {
  padding: clamp(54px, 6vw, 88px) 0 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.inner-page .case-delivery__intro {
  position: relative;
  padding-bottom: 28px;
}

.inner-page .case-delivery__intro p {
  max-width: 330px;
  margin: 0;
  color: var(--experience-muted);
  font-size: 13px;
  line-height: 1.72;
}

.inner-page .case-delivery__scale {
  width: min(100%, 280px);
  height: 18px;
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 2px solid rgba(49, 118, 198, .2);
}

.inner-page .case-delivery__scale i {
  width: 1px;
  height: 7px;
  display: block;
  background: rgba(49, 118, 198, .46);
}

.inner-page .case-delivery__scale i:nth-child(3) {
  height: 14px;
  background: #367ecb;
}

.inner-page .case-delivery__list {
  position: relative;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.inner-page .case-delivery__list::before {
  position: absolute;
  z-index: -1;
  inset: -34px -42px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 168, 239, .12), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.inner-page .case-delivery__list li {
  position: relative;
  min-width: 0;
  min-height: 124px;
  padding: 20px;
  display: grid;
  grid-template-columns: 28px 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  overflow: hidden;
  border-radius: 22px;
  outline: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(72, 151, 235, .1), transparent 34%),
    rgba(255, 255, 255, .82);
  box-shadow: 0 14px 38px rgba(35, 88, 149, .075);
  transition:
    transform 380ms var(--experience-ease),
    background 360ms ease,
    box-shadow 380ms ease;
}

.inner-page .case-delivery__list li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.inner-page .case-delivery-card__number {
  align-self: start;
  padding-top: 3px;
  color: #5f8fc6;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.inner-page .case-delivery-card__icon {
  position: relative;
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #2f78c8;
  background: #e8f3ff;
  transition: color 340ms ease, background 340ms ease, transform 380ms var(--experience-ease);
}

.inner-page .case-delivery-card__icon i {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
  border: 1.5px solid currentColor;
  border-radius: 4px;
}

.inner-page .case-delivery-card__icon--2 i {
  border-radius: 50%;
}

.inner-page .case-delivery-card__icon--2 i::after {
  position: absolute;
  right: -5px;
  bottom: -3px;
  width: 7px;
  height: 1.5px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
}

.inner-page .case-delivery-card__icon--3 i {
  border-width: 0 0 1.5px 1.5px;
  border-radius: 0;
}

.inner-page .case-delivery-card__icon--3 i::before,
.inner-page .case-delivery-card__icon--3 i::after {
  position: absolute;
  left: 3px;
  width: 13px;
  height: 1.5px;
  content: "";
  background: currentColor;
  transform-origin: left center;
}

.inner-page .case-delivery-card__icon--3 i::before {
  bottom: 5px;
  transform: rotate(-34deg);
}

.inner-page .case-delivery-card__icon--3 i::after {
  bottom: 5px;
  transform: rotate(27deg) translateX(8px);
}

.inner-page .case-delivery-card__icon--4 i {
  border-radius: 2px;
  transform: rotate(45deg) scale(.78);
}

.inner-page .case-delivery__list strong {
  min-width: 0;
  color: #254b76;
  font-size: 14px;
  line-height: 1.55;
}

.inner-page .case-delivery-card__meter {
  position: absolute;
  left: 20px;
  right: auto;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2d78ca, #70b7f1);
}

.inner-page .case-delivery__list li.is-active,
.inner-page .case-delivery__list li:hover,
.inner-page .case-delivery__list li:focus-visible {
  background:
    radial-gradient(circle at 90% 10%, rgba(80, 164, 244, .23), transparent 38%),
    linear-gradient(145deg, #ffffff, #eaf5ff);
  box-shadow: 0 22px 56px rgba(36, 105, 181, .16);
  transform: translateY(-4px);
}

.inner-page .case-delivery__list li.is-active .case-delivery-card__icon,
.inner-page .case-delivery__list li:hover .case-delivery-card__icon,
.inner-page .case-delivery__list li:focus-visible .case-delivery-card__icon {
  color: white;
  background: linear-gradient(145deg, #2f7ed0, #6aafea);
  transform: rotate(-4deg);
}

.inner-page .case-delivery__list li.is-active .case-delivery-card__meter {
  width: calc(100% - 40px);
  transition: width 3200ms linear;
}

.inner-page .entity-card__visual {
  position: absolute;
  top: 38px;
  right: 34px;
  width: 86px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(43, 123, 220, 0.22), rgba(111, 181, 244, 0.06));
}

.inner-page .entity-card__visual i,
.inner-page .entity-card__visual b {
  position: absolute;
}

.inner-page .entity-card__visual i {
  inset: 23%;
  border-radius: 28%;
  background: rgba(255, 255, 255, 0.88);
  transform: rotate(20deg);
}

.inner-page .entity-card__visual b {
  right: 0;
  bottom: -5px;
  color: rgba(24, 84, 159, 0.36);
  font-family: var(--display);
  font-size: 18px;
}

.inner-page .entity-card--visual-1 .entity-card__visual {
  border-radius: 24% 58% 34% 62%;
  transform: rotate(18deg);
}

.inner-page .entity-card--visual-2 .entity-card__visual {
  border-radius: 18px;
  transform: rotate(45deg);
}

.inner-page .entity-card--visual-2 .entity-card__visual i {
  border-radius: 50%;
}

.inner-page .entity-card--visual-3 .entity-card__visual {
  width: 100px;
  height: 62px;
  border-radius: 999px;
}

.inner-page .entity-card--visual-4 .entity-card__visual {
  clip-path: polygon(50% 0, 100% 32%, 82% 100%, 18% 100%, 0 32%);
  border-radius: 0;
}

.inner-page .entity-card--visual-5 .entity-card__visual {
  border-radius: 50% 18% 50% 18%;
}

.inner-page .maintenance-section {
  align-items: start;
}

.inner-page .maintenance-grid {
  grid-template-columns: 1fr;
}

.inner-page .maintenance-grid article {
  min-height: 152px;
  padding: 26px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 15px 42px rgba(38, 81, 132, 0.08);
}

.inner-page .maintenance-grid h3 {
  margin: 20px 0 7px;
  font-family: var(--display);
  font-size: 28px;
}

.inner-page .maintenance-grid p {
  color: var(--experience-muted);
}

.inner-page .privacy-summary {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #e8f3ff, #f8fbff);
}

.inner-page .privacy-summary p {
  color: #496784;
}

.inner-page .privacy-grid {
  padding-block: clamp(32px, 5vw, 72px);
}

.inner-page .privacy-grid article {
  min-height: 330px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--experience-shadow);
}

.inner-page .privacy-grid article > i {
  position: absolute;
  top: 26px;
  right: 30px;
  color: rgba(28, 105, 198, 0.22);
  font-family: var(--display);
  font-size: 46px;
  font-style: normal;
}

.inner-page .privacy-grid h2 {
  margin: 70px 0 16px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
}

.inner-page .privacy-grid p {
  color: var(--experience-muted);
  line-height: 1.75;
}

.inner-page .privacy-grid a {
  color: var(--experience-blue);
}

.secondary-page--guides .detail-faq {
  grid-template-columns: 1fr;
  gap: 34px;
}

.secondary-page--guides .detail-faq > div:first-child {
  max-width: 760px;
}

.secondary-page--guides .detail-faq > .faq-card-grid {
  width: 100%;
  max-width: none;
}

.secondary-page--guides .detail-faq .faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

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

  .inner-page .audience-grid li,
  .inner-page .audience-grid li:nth-child(n + 4) {
    grid-column: auto;
  }

  .inner-page .case-storyboard {
    grid-template-columns: 1fr;
  }

  .inner-page .case-storyboard__context,
  .inner-page .case-storyboard__role {
    min-height: 0;
  }

  .inner-page .case-storyboard__delivery {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .inner-page .case-delivery__intro p {
    max-width: 580px;
  }
}

@media (max-width: 640px) {
  .inner-page .capability-grid,
  .inner-page .audience-grid,
  .inner-page .version-grid,
  .inner-page .privacy-grid,
  .secondary-page--guides .detail-faq .faq-list {
    grid-template-columns: 1fr;
  }

  .inner-page .solution-journey {
    padding: 14px;
  }

  .inner-page .solution-journey li {
    min-height: 64px;
  }

  .inner-page .capability-grid li,
  .inner-page :where(.audience-grid, .version-grid) li {
    min-height: 150px;
  }

  .inner-page .case-storyboard__context {
    min-height: 340px;
  }

  .inner-page .case-role-path {
    grid-template-columns: 1fr;
  }

  .inner-page .case-delivery__list {
    grid-template-columns: 1fr;
  }

  .inner-page .case-delivery__list li:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .inner-page .privacy-summary {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .inner-page .privacy-grid article {
    min-height: 270px;
  }
}

@media (hover: none) {
  .inner-page :where(
    .entity-card,
    .decision-grid article,
    .fact-grid article,
    .contact-cards article,
    .contact-decision > div,
    .secondary-facts article,
    .secondary-module-grid li,
    .secondary-related a,
    .secondary-hub-grid > a
  ):hover {
    box-shadow: var(--experience-shadow);
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-panel,
  .nav-panel__intro::after,
  .nav .nav-panel__group a,
  .inner-page .inner-reveal,
  .inner-page :where(
    .entity-card,
    .decision-grid article,
    .fact-grid article,
    .contact-cards article,
    .contact-decision > div,
    .secondary-facts article,
    .secondary-module-grid li,
    .secondary-related a,
    .secondary-hub-grid > a,
    .number-list li,
    .boundary-list li,
    .pricing-table > div,
    .module-grid li,
    .faq-list details
  ) {
    opacity: 1;
    transform: none !important;
    transition: none !important;
  }
}

/* 2026-07-26 / Searchable knowledge, resilient navigation and active card states */

@media (min-width: 1181px) and (hover: hover) {
  .nav-item:hover .nav-panel,
  .nav-item:focus-within .nav-panel {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
    transition-delay: 0s;
  }

  .nav-item:hover .nav-trigger,
  .nav-item:focus-within .nav-trigger {
    color: var(--experience-blue);
    background: rgba(11, 99, 216, 0.08);
  }
}

.inner-page :where(
  .audience-grid,
  .version-grid,
  .privacy-grid,
  .maintenance-grid,
  .secondary-module-grid,
  .secondary-decisions .decision-grid,
  .location-profile,
  .location-scenario-grid,
  .faq-card-grid
) [data-preview-card] {
  outline: 0;
  transition:
    color 220ms ease,
    background 360ms ease,
    box-shadow 360ms ease,
    transform 380ms var(--experience-ease);
}

.inner-page :where(
  .audience-grid,
  .version-grid,
  .privacy-grid,
  .maintenance-grid,
  .secondary-module-grid,
  .secondary-decisions .decision-grid,
  .location-profile,
  .location-scenario-grid,
  .faq-card-grid
) [data-preview-card]:focus-visible {
  outline: 3px solid rgba(11, 99, 216, 0.24);
  outline-offset: 3px;
}

.inner-page :where(
  .audience-grid,
  .version-grid,
  .privacy-grid,
  .maintenance-grid,
  .secondary-module-grid,
  .secondary-decisions .decision-grid,
  .location-profile,
  .location-scenario-grid,
  .faq-card-grid
) [data-preview-card].is-active {
  background:
    radial-gradient(circle at var(--pointer-x, 88%) var(--pointer-y, 12%), rgba(75, 158, 243, 0.26), transparent 36%),
    linear-gradient(145deg, #fbfdff, #eaf4ff);
  box-shadow: 0 26px 68px rgba(35, 101, 180, 0.17);
  transform: translateY(-5px);
}

.inner-page :where(
  .audience-grid,
  .version-grid,
  .secondary-module-grid,
  .secondary-decisions .decision-grid,
  .location-profile,
  .faq-card-grid
) [data-preview-card] > i:last-child {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, #2a77ce, #69b4f2);
}

.inner-page :where(
  .audience-grid,
  .version-grid,
  .secondary-module-grid,
  .secondary-decisions .decision-grid,
  .location-profile,
  .faq-card-grid
) [data-preview-card].is-active > i:last-child {
  width: 100%;
  transition: width 3100ms linear;
}

.inner-page :where(.audience-grid, .version-grid) li {
  overflow: hidden;
}

.inner-page.privacy-page .inner-hero + .privacy-summary {
  margin-top: clamp(34px, 4vw, 58px);
}

.inner-page .privacy-grid article.is-active {
  background:
    radial-gradient(circle at var(--pointer-x, 88%) var(--pointer-y, 12%), rgba(75, 158, 243, 0.24), transparent 35%),
    linear-gradient(145deg, #ffffff, #ecf5ff);
}

.inner-page .privacy-grid article.is-active > i {
  color: #2876cf;
  transform: translateY(-3px) rotate(-4deg);
}

.inner-page .privacy-grid article > i {
  transition: color 240ms ease, transform 340ms var(--experience-ease);
}

.inner-page .secondary-module-grid li,
.inner-page .secondary-decisions .decision-grid article {
  position: relative;
  overflow: hidden;
}

.inner-page .boundary-statement {
  --ambient-x: var(--pointer-x, 88%);
  --ambient-y: var(--pointer-y, 12%);
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgba(67, 150, 242, 0.26), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 245, 255, 0.9));
  transition: box-shadow 340ms ease, transform 380ms var(--experience-ease);
}

.inner-page .boundary-statement:hover,
.inner-page .boundary-statement:focus-visible {
  box-shadow: 0 28px 72px rgba(31, 97, 177, 0.17);
  transform: translateY(-5px);
}

.inner-page .boundary-statement:focus-visible {
  outline: 3px solid rgba(11, 99, 216, 0.24);
  outline-offset: 3px;
}

.inner-page .boundary-statement > i {
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  width: 50px;
  aspect-ratio: 1;
  border-radius: 18px 50% 22px 50%;
  background: linear-gradient(145deg, rgba(40, 119, 220, 0.42), rgba(124, 190, 250, 0.08));
  box-shadow: 0 14px 32px rgba(26, 92, 171, 0.13);
  animation: boundary-float 5.6s ease-in-out infinite;
}

@keyframes boundary-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(8deg);
  }
  50% {
    transform: translate3d(-10px, -12px, 0) rotate(-4deg);
  }
}

.inner-page .faq-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inner-page .faq-answer-card {
  position: relative;
  min-height: 238px;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 46px rgba(38, 81, 132, 0.08);
}

.inner-page .faq-answer-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.inner-page .faq-answer-card > div > span,
.inner-page .faq-answer-card > div > em {
  color: var(--experience-blue);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.inner-page .faq-answer-card h3 {
  margin: 42px 0 14px;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.inner-page .faq-answer-card p {
  margin: 0;
  color: var(--experience-muted);
  line-height: 1.72;
}

.inner-page .location-archetype-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(0, .92fr);
  gap: clamp(28px, 5vw, 76px);
  margin-top: clamp(34px, 4vw, 58px);
  padding: clamp(38px, 5vw, 76px);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(99, 179, 255, .26), transparent 34%),
    radial-gradient(circle at 8% 92%, rgba(126, 218, 205, .16), transparent 30%),
    linear-gradient(145deg, #f9fcff, #eaf4ff);
  box-shadow: 0 28px 84px rgba(38, 81, 132, .12);
}

.inner-page .location-archetype-section__copy {
  align-self: center;
}

.inner-page .location-archetype-section__copy > span {
  display: inline-flex;
  margin: 12px 0 34px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--experience-blue);
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 820;
  box-shadow: 0 10px 30px rgba(38, 81, 132, .08);
}

.inner-page .location-archetype-section h2 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.inner-page .location-archetype-section__copy > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--experience-muted);
  line-height: 1.78;
}

.inner-page .location-archetype-chain {
  display: grid;
  gap: 12px;
  align-content: center;
}

.inner-page .location-archetype-chain article {
  position: relative;
  min-height: 138px;
  padding: 24px 28px 24px 76px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 15px 44px rgba(38, 81, 132, .08);
  transition:
    color 260ms ease,
    background 320ms ease,
    transform 380ms var(--experience-ease),
    box-shadow 320ms ease;
}

.inner-page .location-archetype-chain article > span {
  position: absolute;
  top: 26px;
  left: 26px;
  color: var(--experience-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}

.inner-page .location-archetype-chain article > strong {
  display: block;
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.15;
}

.inner-page .location-archetype-chain article > p {
  margin: 0;
  color: var(--experience-muted);
  line-height: 1.62;
}

.inner-page .location-archetype-chain article:is(.is-active, :hover, :focus-visible) {
  color: #123f72;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 56px rgba(44, 109, 184, .16);
  transform: translateX(-8px);
}

.inner-page .location-profile-section {
  padding-block: clamp(62px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 6vw, 90px);
}

.inner-page .location-profile-section > div:first-child p:last-child {
  max-width: 560px;
  color: var(--experience-muted);
}

.inner-page .location-profile-section h2,
.inner-page .faq-explorer-section > div > h2,
.inner-page .knowledge-map-section__head h2 {
  font-size: clamp(30px, 3.35vw, 50px);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.inner-page .location-profile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.inner-page .location-profile article {
  position: relative;
  min-height: 190px;
  padding: 28px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(38, 81, 132, 0.08);
}

.inner-page .location-profile article > span {
  color: var(--experience-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.inner-page .location-profile article > strong {
  margin-top: 54px;
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.2;
}

.inner-page .location-reference-section {
  padding-block: clamp(62px, 6vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 18px;
}

.inner-page .location-reference-section__copy,
.inner-page .location-reference-card {
  min-height: 360px;
  padding: clamp(34px, 4vw, 58px);
  border-radius: 30px;
}

.inner-page .location-reference-section__copy {
  background:
    radial-gradient(circle at 88% 14%, rgba(72, 151, 241, .2), transparent 30%),
    linear-gradient(145deg, #f9fcff, #eaf4ff);
  box-shadow: var(--experience-shadow);
}

.inner-page .location-reference-section__copy > span,
.inner-page .location-reference-card > span {
  color: var(--experience-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
}

.inner-page .location-reference-section__copy h2 {
  max-width: 680px;
  margin: clamp(62px, 7vw, 98px) 0 16px;
  font-family: var(--display);
  font-size: clamp(32px, 3.6vw, 54px);
}

.inner-page .location-reference-section__copy > p:last-child,
.inner-page .location-reference-card p {
  max-width: 720px;
  color: var(--experience-muted);
  line-height: 1.75;
}

.inner-page .location-reference-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 58px rgba(38, 81, 132, .1);
  text-decoration: none;
  transition:
    color 220ms ease,
    background 360ms ease,
    box-shadow 360ms ease,
    transform 380ms var(--experience-ease);
}

.inner-page .location-reference-card strong {
  margin: 66px 0 16px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
}

.inner-page .location-reference-card em {
  margin-top: auto;
  padding-top: 32px;
  color: var(--experience-blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.inner-page .location-reference-card:hover,
.inner-page .location-reference-card:focus-visible {
  background:
    radial-gradient(circle at 88% 12%, rgba(75, 158, 243, .25), transparent 36%),
    linear-gradient(145deg, #fbfdff, #eaf4ff);
  box-shadow: 0 28px 76px rgba(35, 101, 180, .18);
  transform: translateY(-5px);
}

.inner-page .location-scenario-section {
  padding-block: clamp(62px, 6vw, 88px);
}

.inner-page .location-scenario-section__head {
  max-width: 900px;
  margin-bottom: 34px;
}

.inner-page .location-scenario-section__head h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 3.35vw, 50px);
}

.inner-page .location-scenario-section__head > p:last-child {
  max-width: 760px;
  color: var(--experience-muted);
}

.inner-page .location-scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inner-page .location-scenario-grid article {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 44px rgba(38, 81, 132, .08);
}

.inner-page .location-scenario-grid article > span {
  color: var(--experience-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
}

.inner-page .location-scenario-grid h3 {
  margin: 62px 0 14px;
  font-family: var(--display);
  font-size: clamp(24px, 2.2vw, 32px);
}

.inner-page .location-scenario-grid p {
  color: var(--experience-muted);
  line-height: 1.72;
}

.inner-page .faq-overview,
.inner-page .inner-hero + .faq-overview,
.inner-page .inner-hero + .knowledge-map-section {
  margin-top: clamp(34px, 4vw, 58px);
}

.inner-page .faq-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inner-page .faq-overview article {
  min-height: 190px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(38, 81, 132, 0.08);
  transition: background 300ms ease, box-shadow 340ms ease, transform 360ms var(--experience-ease);
}

.inner-page .case-storyboard article,
.inner-page .solution-journey li {
  transition: background 300ms ease, box-shadow 340ms ease, transform 360ms var(--experience-ease);
}

.inner-page .faq-overview article:hover,
.inner-page .faq-overview article:focus-within,
.inner-page .case-storyboard article:hover,
.inner-page .case-storyboard article:focus-within,
.inner-page .solution-journey li:hover,
.inner-page .solution-journey li:focus-within {
  background:
    radial-gradient(circle at var(--pointer-x, 88%) var(--pointer-y, 12%), rgba(75, 158, 243, 0.22), transparent 34%),
    linear-gradient(145deg, #ffffff, #edf6ff);
  box-shadow: 0 24px 62px rgba(35, 101, 180, 0.14);
  transform: translateY(-4px);
}

.inner-page .faq-overview span {
  color: var(--experience-blue);
  font-size: 11px;
  font-weight: 820;
}

.inner-page .faq-overview strong {
  margin-top: 24px;
  font-family: var(--display);
  font-size: 46px;
}

.inner-page .faq-overview p {
  margin-top: auto;
  color: var(--experience-muted);
}

.inner-page .knowledge-map-section {
  padding-block: clamp(62px, 6vw, 92px);
}

.inner-page .knowledge-map-section__head {
  max-width: 860px;
  margin-bottom: 34px;
}

.inner-page .knowledge-map-section__head > p:last-child,
.inner-page .faq-explorer-section > div > p:last-child {
  color: var(--experience-muted);
}

.inner-page .knowledge-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inner-page .knowledge-map > a {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 26px;
  color: var(--experience-ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 46px rgba(38, 81, 132, 0.08);
  text-decoration: none;
  transition: background 320ms ease, box-shadow 320ms ease, transform 340ms var(--experience-ease);
}

.inner-page .knowledge-map > a:hover,
.inner-page .knowledge-map > a:focus-visible,
.inner-page .knowledge-map > a.is-active {
  background:
    radial-gradient(circle at var(--pointer-x, 88%) var(--pointer-y, 12%), rgba(75, 158, 243, 0.25), transparent 36%),
    linear-gradient(145deg, #ffffff, #eaf4ff);
  box-shadow: 0 26px 68px rgba(35, 101, 180, 0.16);
  transform: translateY(-5px);
}

.inner-page .knowledge-map > a:focus-visible {
  outline: 3px solid rgba(11, 99, 216, 0.24);
  outline-offset: 3px;
}

.inner-page .knowledge-map > a > span {
  color: var(--experience-blue);
  font-size: 10px;
  font-weight: 850;
}

.inner-page .knowledge-map > a > strong {
  margin-top: 34px;
  font-family: var(--display);
  font-size: clamp(23px, 2.1vw, 31px);
}

.inner-page .knowledge-map > a > p {
  color: var(--experience-muted);
  line-height: 1.65;
}

.inner-page .knowledge-map > a > em {
  margin-top: auto;
  padding-top: 20px;
  color: #3973b4;
  font-size: 12px;
  font-style: normal;
  line-height: 1.6;
}

.inner-page .knowledge-path-section,
.inner-page .method-workbench-section {
  padding-block: clamp(62px, 6vw, 96px);
}

.inner-page .knowledge-path-section__head,
.inner-page .method-workbench-section__copy {
  max-width: 880px;
  margin-bottom: 34px;
}

.inner-page .knowledge-path-section__head > p:last-child,
.inner-page .method-workbench-section__copy > p:last-child {
  color: var(--experience-muted);
}

.inner-page .knowledge-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inner-page .knowledge-path-grid > article {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 56px rgba(38, 81, 132, 0.08);
  transition: transform 340ms var(--experience-ease), box-shadow 320ms ease, background 320ms ease;
}

.inner-page .knowledge-path-grid > article:is(.is-active, :hover, :focus-visible) {
  transform: translateY(-5px);
  background:
    radial-gradient(circle at var(--pointer-x, 88%) var(--pointer-y, 12%), rgba(75, 158, 243, 0.2), transparent 38%),
    linear-gradient(145deg, #fff, #eef7ff);
  box-shadow: 0 28px 74px rgba(35, 101, 180, 0.15);
}

.inner-page .knowledge-path-grid > article > span,
.inner-page .method-workbench__rows article > span {
  color: var(--experience-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.inner-page .knowledge-path-grid h3 {
  max-width: 620px;
  margin: 34px 0 14px;
  font-family: var(--display);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.2;
}

.inner-page .knowledge-path-grid article > p {
  max-width: 620px;
  margin: 0;
  color: var(--experience-muted);
  line-height: 1.72;
}

.inner-page .knowledge-path-grid article > div {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inner-page .knowledge-path-grid article > div a {
  padding: 9px 13px;
  border-radius: 999px;
  color: #245f9f;
  background: rgba(225, 240, 255, 0.82);
  font-size: 12px;
  font-weight: 760;
  text-decoration: none;
}

.inner-page .knowledge-path-grid article > div a:hover,
.inner-page .knowledge-path-grid article > div a:focus-visible {
  color: #fff;
  background: var(--experience-blue);
}

.inner-page .knowledge-path-grid article > div em {
  padding-left: 6px;
  font-style: normal;
}

.inner-page .knowledge-faq-entry {
  margin-block: clamp(28px, 4vw, 56px) clamp(72px, 8vw, 120px);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 20%, rgba(121, 187, 255, 0.2), transparent 35%),
    linear-gradient(140deg, #f7fbff, #eaf4ff);
}

.inner-page .knowledge-faq-entry > div {
  max-width: 780px;
}

.inner-page .knowledge-faq-entry p:last-child {
  color: var(--experience-muted);
}

.inner-page .method-workbench-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.inner-page .method-workbench-section__copy {
  position: sticky;
  top: 126px;
  margin-bottom: 0;
}

.inner-page .method-workbench {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.inner-page .method-workbench__rows {
  display: grid;
  gap: 12px;
}

.inner-page .method-workbench__rows article {
  position: relative;
  min-height: 118px;
  padding: 24px 28px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 44px rgba(38, 81, 132, 0.08);
  transition: transform 320ms var(--experience-ease), box-shadow 320ms ease, background 320ms ease;
}

.inner-page .method-workbench__rows article:is(.is-active, :hover, :focus-visible) {
  transform: translateX(-6px);
  background:
    radial-gradient(circle at var(--pointer-x, 92%) var(--pointer-y, 12%), rgba(75, 158, 243, 0.2), transparent 36%),
    linear-gradient(145deg, #fff, #eef7ff);
  box-shadow: 0 22px 62px rgba(35, 101, 180, 0.14);
}

.inner-page .method-workbench__rows article > p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--experience-ink);
  line-height: 1.7;
}

.inner-page .method-workbench__usage {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.inner-page .method-workbench__usage li {
  min-height: 126px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(145deg, #236fbd, #4b9df1);
  box-shadow: 0 16px 42px rgba(35, 101, 180, 0.18);
}

.inner-page .method-workbench__usage span {
  font-size: 10px;
  font-weight: 850;
  opacity: 0.72;
}

.inner-page .method-workbench__usage strong {
  line-height: 1.5;
}

.inner-page .faq-explorer-section {
  padding-block: clamp(62px, 6vw, 96px);
}

.inner-page .faq-explorer-section > div:first-child {
  max-width: 860px;
  margin-bottom: 32px;
}

.inner-page .faq-explorer {
  width: 100%;
}

.inner-page .faq-explorer__toolbar {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) minmax(180px, 0.75fr) minmax(220px, 0.9fr);
  gap: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(38, 81, 132, 0.08);
}

.inner-page :where(.faq-search, .faq-filter) {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 8px;
}

.inner-page :where(.faq-search, .faq-filter) > span {
  padding-left: 4px;
  color: #55718e;
  font-size: 11px;
  font-weight: 760;
}

.inner-page :where(.faq-search input, .faq-filter select) {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 0;
  border-radius: 17px;
  outline: 0;
  color: var(--experience-ink);
  background: #edf5ff;
  font: inherit;
}

.inner-page .faq-search input {
  padding-right: 48px;
}

.inner-page .faq-search > i {
  position: absolute;
  right: 18px;
  bottom: 15px;
  color: var(--experience-blue);
  font-size: 22px;
  font-style: normal;
}

.inner-page :where(.faq-search input, .faq-filter select):focus {
  box-shadow: 0 0 0 3px rgba(11, 99, 216, 0.18);
}

.inner-page .faq-explorer__status {
  min-height: 72px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--experience-muted);
}

.inner-page .faq-explorer__status strong {
  color: var(--experience-blue);
  font-family: var(--display);
  font-size: 28px;
}

.inner-page .faq-explorer__status button {
  margin-left: auto;
  padding: 9px 13px;
  border: 0;
  border-radius: 999px;
  color: var(--experience-blue);
  background: rgba(11, 99, 216, 0.09);
  font: inherit;
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}

.inner-page .faq-explorer__list {
  display: grid;
  gap: 12px;
}

.inner-page .faq-explorer__list details {
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(38, 81, 132, 0.075);
  transition: background 240ms ease, box-shadow 300ms ease, transform 300ms var(--experience-ease);
}

.inner-page .faq-explorer__list details:hover,
.inner-page .faq-explorer__list details[open] {
  background:
    radial-gradient(circle at 94% 10%, rgba(75, 158, 243, 0.18), transparent 28%),
    linear-gradient(145deg, #ffffff, #edf6ff);
  box-shadow: 0 22px 56px rgba(32, 93, 166, 0.13);
  transform: translateY(-2px);
}

.inner-page .faq-explorer__list summary {
  position: relative;
  min-height: 104px;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.inner-page .faq-explorer__list summary::-webkit-details-marker {
  display: none;
}

.inner-page .faq-explorer__list summary > span {
  color: #5d91cb;
  font-size: 11px;
  font-weight: 820;
}

.inner-page .faq-explorer__list summary > div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(70px, 0.16fr) minmax(0, 1.84fr);
  gap: 20px;
  align-items: center;
}

.inner-page .faq-explorer__list summary em {
  color: var(--experience-blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.inner-page .faq-explorer__list summary h3 {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.3;
}

.inner-page .faq-explorer__list summary::after {
  position: absolute;
  right: 26px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--experience-blue);
  background: rgba(11, 99, 216, 0.08);
  content: "+";
}

.inner-page .faq-explorer__list details[open] summary::after {
  content: "−";
}

.inner-page .faq-explorer__list details > p {
  max-width: 1120px;
  padding: 0 80px 28px 86px;
  color: var(--experience-muted);
  line-height: 1.78;
}

.inner-page .faq-explorer__empty {
  padding: 46px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(38, 81, 132, 0.08);
}

.inner-page .faq-explorer__empty strong {
  font-family: var(--display);
  font-size: 28px;
}

.inner-page .faq-explorer__empty p {
  color: var(--experience-muted);
}

@media (max-width: 980px) {
  .inner-page .location-archetype-section,
  .inner-page .location-profile-section {
    grid-template-columns: 1fr;
  }

  .inner-page .location-reference-section {
    grid-template-columns: 1fr;
  }

  .inner-page .method-workbench-section {
    grid-template-columns: 1fr;
  }

  .inner-page .method-workbench-section__copy {
    position: static;
  }

  .inner-page .location-scenario-grid {
    grid-template-columns: 1fr;
  }

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

  .inner-page .knowledge-faq-entry {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-page .faq-explorer__toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .inner-page .faq-search {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .inner-page .location-archetype-section {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .inner-page .location-archetype-chain article {
    min-height: 0;
    padding: 22px 20px 22px 64px;
  }

  .inner-page .location-archetype-chain article:is(.is-active, :hover, :focus-visible) {
    transform: translateY(-3px);
  }

  .inner-page .faq-card-grid,
  .inner-page .location-profile,
  .inner-page .location-scenario-grid,
  .inner-page .faq-overview,
  .inner-page .knowledge-map,
  .inner-page .knowledge-path-grid,
  .inner-page .method-workbench__usage,
  .inner-page .faq-explorer__toolbar {
    grid-template-columns: 1fr;
  }

  .inner-page .faq-search {
    grid-column: auto;
  }

  .inner-page .faq-answer-card,
  .inner-page .location-profile article,
  .inner-page .location-scenario-grid article,
  .inner-page .faq-overview article,
  .inner-page .knowledge-map > a {
    min-height: 0;
  }

  .inner-page .knowledge-path-grid > article,
  .inner-page .method-workbench__rows article,
  .inner-page .method-workbench__usage li {
    min-height: 0;
  }

  .inner-page .faq-explorer__list summary {
    padding: 20px 64px 20px 20px;
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .inner-page .faq-explorer__list summary > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .inner-page .faq-explorer__list details > p {
    padding: 0 24px 24px 66px;
  }

  .inner-page .faq-explorer__list summary::after {
    right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .inner-page [data-preview-card],
  .inner-page .boundary-statement,
  .inner-page .boundary-statement > i,
  .inner-page .location-reference-card,
  .inner-page .knowledge-map > a,
  .inner-page .knowledge-path-grid > article,
  .inner-page .method-workbench__rows article,
  .inner-page .faq-explorer__list details {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/*
 * Global inner-page typography.
 * Earlier visual layers used aggressive negative tracking designed for Latin
 * display type. These values keep large Chinese titles open and readable.
 */
.inner-page .inner-hero h1,
.inner-page .entity-hero h1 {
  max-width: 1220px;
  line-height: 1.12;
  letter-spacing: -0.028em;
}

.inner-page.inner-page main h2 {
  line-height: 1.16;
  letter-spacing: -0.024em;
}

.inner-page :where(.inner-hero, .entity-hero, main) :where(h1, h2, h3, h4, strong) {
  text-wrap: balance;
}

.inner-page :where(.inner-hero, .entity-hero, main) :where(p, li) {
  text-wrap: pretty;
}

.inner-page.inner-page main .entity-card h2,
.inner-page.inner-page main .entity-card h3,
.inner-page.inner-page main .secondary-hub-grid h2,
.inner-page.inner-page main .decision-grid h2,
.inner-page.inner-page main .faq-answer-card h3,
.inner-page.inner-page main .faq-explorer__list h3,
.inner-page.inner-page main .case-storyboard__role h2,
.inner-page.inner-page main .case-storyboard__delivery h2,
.inner-page.inner-page main .privacy-grid h2 {
  line-height: 1.25;
  letter-spacing: -0.016em;
}

.inner-page.inner-page main .inner-hero > p:last-child,
.inner-page.inner-page main .entity-hero p:last-child,
.inner-page.inner-page main .detail-section p,
.inner-page.inner-page main .detail-faq p,
.inner-page.inner-page main .secondary-next p,
.inner-page.inner-page main .location-profile-section p,
.inner-page.inner-page main .case-storyboard p,
.inner-page.inner-page main .privacy-grid p,
.inner-page.inner-page main .faq-explorer__list details > p {
  line-height: 1.78;
}

.inner-page.inner-page main .secondary-facts strong {
  line-height: 1.24;
  letter-spacing: -0.014em;
}

.inner-page.inner-page main .secondary-module-grid li > strong,
.inner-page.inner-page main .module-grid li > strong,
.inner-page.inner-page main .location-profile strong,
.inner-page.inner-page main .number-list strong,
.inner-page.inner-page main .boundary-list li {
  line-height: 1.22;
  letter-spacing: -0.012em;
}

.inner-page .semantic-title-line {
  display: block;
}

.inner-page .inline-form h2 {
  font-size: clamp(36px, 3.8vw, 58px);
}

.inner-page .secondary-hero h1:has(.semantic-title-line) {
  font-size: clamp(48px, 4.5vw, 70px);
}

.inner-page .secondary-decisions .decision-grid article {
  padding: clamp(22px, 2vw, 30px);
}

.inner-page .secondary-decisions .decision-grid h2 {
  font-size: clamp(22px, 1.7vw, 28px);
}

@media (min-width: 921px) {
  .inner-page .detail-section {
    grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
    gap: clamp(48px, 6vw, 96px);
  }

  .inner-page .inline-form {
    grid-template-columns: minmax(420px, .88fr) minmax(0, 1.12fr);
    gap: clamp(48px, 6vw, 86px);
  }

  .custom-development-page .inline-form .semantic-title-line,
  .custom-development-page .detail-section--split .semantic-title-line,
  .knowledge-page .inner-hero .semantic-title-line,
  .decision-page:not(.knowledge-page) .inner-hero .semantic-title-line,
  .inner-page .case-storyboard__context .semantic-title-line {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .inner-page .nowrap-desktop,
  .inner-page .solution-inquiry-cta h2 {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .inner-page .inquiry-title .semantic-title-line {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .secondary-page--software-project-timeline .detail-faq {
    grid-template-columns: minmax(450px, .82fr) minmax(0, 1.18fr);
  }

  .secondary-page--software-project-timeline .detail-faq > div > h2 {
    font-size: 28px;
    white-space: nowrap;
    text-wrap: nowrap;
  }

}

@media (min-width: 1181px) {
  .secondary-page--choose-software-development-company .secondary-hero h1 {
    max-width: none;
    font-size: clamp(42px, 3.55vw, 54px);
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .secondary-page--choose-software-development-company .secondary-hero > p:last-child,
  .secondary-page--project-fit .secondary-hero > p:last-child,
  .knowledge-page .inner-hero > p:last-child {
    max-width: 1160px;
    font-size: 17px;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .case-page .entity-hero {
    grid-template-columns: minmax(0, 1.55fr) minmax(190px, .45fr);
  }

  .case-page .entity-hero h1 {
    max-width: 860px;
    font-size: clamp(44px, 3.8vw, 60px);
    white-space: normal;
    text-wrap: balance;
  }

  .case-page .case-stamp {
    width: min(100%, 220px);
  }
}

.inner-page .nav-panel__intro h2 {
  line-height: 1.16;
  letter-spacing: -0.024em;
}

@media (max-width: 700px) {
  .inner-page .inner-hero h1,
  .inner-page .entity-hero h1 {
    font-size: clamp(38px, 10.8vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .inner-page.inner-page main h2 {
    line-height: 1.19;
    letter-spacing: -0.018em;
  }

  .inner-page.inner-page main .entity-card h2,
  .inner-page.inner-page main .entity-card h3,
  .inner-page.inner-page main .secondary-hub-grid h2,
  .inner-page.inner-page main .decision-grid h2,
  .inner-page.inner-page main .faq-answer-card h3,
  .inner-page.inner-page main .faq-explorer__list h3,
  .inner-page.inner-page main .case-storyboard__role h2,
  .inner-page.inner-page main .case-storyboard__delivery h2,
  .inner-page.inner-page main .privacy-grid h2 {
    line-height: 1.28;
  }
}

/*
 * Tablet landscape needs the reading width of a stacked section. Keeping the
 * desktop split until 920px compressed three-card groups and left single
 * Chinese characters on trailing lines at 1024px.
 */
@media (min-width: 701px) and (max-width: 1180px) {
  .inner-page .detail-section,
  .secondary-page .detail-faq,
  .custom-development-page .custom-service-directions,
  .inner-page .inline-form {
    grid-template-columns: 1fr;
    gap: clamp(30px, 4.8vw, 52px);
  }

  .inner-page .detail-section > div,
  .inner-page .detail-faq > div,
  .inner-page .inline-form > div {
    max-width: 760px;
  }
}

/* Case narrative v2: B-version information architecture in the Option A system. */
.case-page .case-v2 {
  --case-blue: #2475cb;
  --case-blue-soft: #eaf4ff;
  --case-ink: #153b68;
  --case-muted: #627b98;
}

.case-page .case-v2__hero {
  min-height: clamp(470px, 62vh, 650px);
  padding: clamp(42px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: end;
}

.case-page .case-v2__hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.case-page .case-v2__hero h1 {
  max-width: 980px;
  margin-top: 22px;
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 1.08;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.case-page .case-v2__hero-copy > p:last-of-type {
  max-width: 900px;
  margin-top: 24px;
  color: #53708f;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.75;
}

.case-page .case-v2__tags {
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.case-page .case-v2__tags li {
  padding: 10px 15px;
  border-radius: 999px;
  color: #386b9f;
  background: rgba(232, 244, 255, .92);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .02em;
}

.case-page .case-v2__hero-type {
  position: relative;
  z-index: 1;
  min-height: 270px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 18%, rgba(89, 169, 244, .3), transparent 32%),
    linear-gradient(150deg, rgba(255, 255, 255, .92), rgba(225, 241, 255, .86));
  box-shadow: 0 28px 70px rgba(40, 102, 172, .14);
}

.case-page .case-v2__hero-type > span,
.case-page .case-v2__roles > span,
.case-page .case-v2__modules > span,
.case-page .case-v2__participation > span,
.case-page .case-v2__delivery-copy > span,
.case-page .case-related__grid > a > span {
  color: #3476bd;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
}

.case-page .case-v2__hero-type > strong {
  max-width: 240px;
  margin-top: 22px;
  color: var(--case-ink);
  font-family: var(--display);
  font-size: clamp(27px, 2.7vw, 40px);
  line-height: 1.08;
}

.case-page .case-v2__hero-type > p {
  max-width: 270px;
  margin: 14px 0 0;
  color: var(--case-muted);
  font-size: 13px;
  line-height: 1.65;
}

.case-page .case-v2__hero-type > div {
  position: absolute;
  top: 20px;
  right: 18px;
  width: 112px;
  aspect-ratio: 1;
}

.case-page .case-v2__hero-type > div i {
  position: absolute;
  inset: calc(var(--case-ring, 0) * 14px);
  display: block;
  border-radius: 50%;
  background: rgba(77, 154, 231, calc(.18 - var(--case-ring, 0) * .04));
}

.case-page .case-v2__hero-type > div i:nth-child(2) {
  --case-ring: 1;
}

.case-page .case-v2__hero-type > div i:nth-child(3) {
  --case-ring: 2;
  background: rgba(255, 255, 255, .72);
}

.case-page .case-v2__section {
  padding-block: clamp(74px, 8vw, 122px);
}

.case-page .case-v2__section + .case-v2__section {
  margin-top: 0;
}

.case-page .case-v2__section-head {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: start;
}

.case-page .case-v2__section-head > span {
  width: 64px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #2d78c9;
  background: linear-gradient(145deg, #f7fbff, #e1f0ff);
  box-shadow: 0 16px 40px rgba(44, 110, 184, .12);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
}

.case-page .case-v2__section-head h2 {
  max-width: 920px;
  margin-top: 14px;
  color: var(--case-ink);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -.032em;
}

.case-page .case-v2__background {
  position: relative;
  margin-top: clamp(34px, 4vw, 56px);
  padding-inline: clamp(30px, 5vw, 76px);
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 86% 20%, rgba(88, 170, 245, .18), transparent 30%),
    linear-gradient(145deg, #fbfdff, #edf6ff);
  box-shadow: 0 28px 80px rgba(39, 94, 155, .1);
}

.case-page .case-v2__lead {
  max-width: 1060px;
  margin: clamp(44px, 5vw, 74px) 0 0 clamp(92px, 8vw, 114px);
  color: #375c83;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.85;
  text-wrap: pretty;
}

.case-page .case-v2__participation {
  max-width: 980px;
  margin: clamp(34px, 4vw, 58px) 0 0 clamp(92px, 8vw, 114px);
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 42px rgba(39, 94, 155, .08);
}

.case-page .case-v2__participation p {
  margin: 10px 0 0;
  color: var(--case-muted);
  line-height: 1.75;
}

.case-page .case-v2__needs-grid {
  margin-top: clamp(44px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.case-page .case-v2__needs-grid article {
  position: relative;
  min-height: 240px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  outline: 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(93, 171, 244, .11), transparent 30%),
    rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(35, 85, 145, .08);
  transition: transform 380ms var(--experience-ease), box-shadow 380ms ease, background 380ms ease;
}

.case-page .case-v2__needs-grid article > span,
.case-page .case-v2__capability-grid small,
.case-page .case-v2__result-list article > span {
  color: #5d91c8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}

.case-page .case-v2__needs-grid h3 {
  margin-top: auto;
  color: var(--case-ink);
  font-family: var(--display);
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.12;
}

.case-page .case-v2__needs-grid p {
  margin: 14px 0 0;
  color: var(--case-muted);
  font-size: 14px;
  line-height: 1.7;
}

.case-page .case-v2__needs-grid article > i,
.case-page .case-v2__capability-grid article > i {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #2d78ca, #72b8f2);
}

.case-page .case-v2__needs-grid article.is-active {
  background:
    radial-gradient(circle at 90% 10%, rgba(77, 160, 240, .25), transparent 34%),
    linear-gradient(145deg, #fff, #eaf5ff);
  box-shadow: 0 26px 64px rgba(36, 105, 181, .16);
  transform: translateY(-5px);
}

.case-page .case-v2__needs-grid article.is-active > i,
.case-page .case-v2__capability-grid article.is-active > i {
  width: 100%;
  transition: width 3200ms linear;
}

.case-page .case-v2__solution {
  padding-inline: clamp(30px, 5vw, 76px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 8% 12%, rgba(99, 174, 243, .13), transparent 28%),
    rgba(246, 250, 255, .78);
}

.case-page .case-v2__solution-grid {
  margin-top: clamp(46px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.case-page .case-v2__roles,
.case-page .case-v2__modules {
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: 30px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 20px 54px rgba(38, 88, 145, .09);
}

.case-page .case-v2__roles > div {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-page .case-v2__roles strong {
  padding: 12px 16px;
  border-radius: 999px;
  color: #315f90;
  background: #eaf4ff;
  font-size: 13px;
}

.case-page .case-v2__modules > div {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.case-page .case-v2__modules section {
  padding: 18px 20px;
  border-radius: 20px;
  background: #f4f9ff;
}

.case-page .case-v2__modules strong {
  color: var(--case-ink);
  font-size: 16px;
}

.case-page .case-v2__modules p {
  margin: 6px 0 0;
  color: var(--case-muted);
  font-size: 13px;
  line-height: 1.6;
}

.case-page .case-v2__flow {
  position: relative;
  padding: 0;
  margin: clamp(38px, 4vw, 56px) 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  list-style: none;
}

.case-page .case-v2__flow li {
  position: relative;
  min-height: 112px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  background: rgba(233, 244, 255, .86);
}

.case-page .case-v2__flow span {
  color: #5990c8;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}

.case-page .case-v2__flow strong {
  color: #285886;
  font-size: 14px;
}

.case-page .case-v2__flow i {
  position: absolute;
  top: 50%;
  right: -8px;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #67a9e8;
  box-shadow: 0 0 0 6px rgba(103, 169, 232, .14);
  transform: translateY(-50%);
}

.case-page .case-v2__flow li:last-child i {
  display: none;
}

.case-page .case-v2__timeline {
  padding: 0;
  margin: clamp(48px, 5vw, 76px) 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.case-page .case-v2__timeline li {
  min-height: 240px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 12%, rgba(86, 164, 240, .15), transparent 30%),
    rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(37, 86, 144, .08);
}

.case-page .case-v2__timeline li > span {
  color: rgba(45, 120, 202, .28);
  font-family: var(--display);
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 800;
  letter-spacing: -.06em;
}

.case-page .case-v2__timeline li > div {
  margin-top: auto;
}

.case-page .case-v2__timeline strong {
  color: var(--case-ink);
  font-family: var(--display);
  font-size: 23px;
}

.case-page .case-v2__timeline p {
  margin: 12px 0 0;
  color: var(--case-muted);
  font-size: 13px;
  line-height: 1.7;
}

.case-page .case-v2__capability-grid {
  margin-top: clamp(48px, 5vw, 76px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.case-page .case-v2__capability-grid article {
  position: relative;
  min-height: 260px;
  padding: clamp(28px, 3.5vw, 44px);
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  overflow: hidden;
  border-radius: 30px;
  outline: 0;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 20px 54px rgba(37, 86, 144, .085);
  transition: transform 400ms var(--experience-ease), box-shadow 380ms ease, background 380ms ease;
}

.case-page .case-v2__capability-icon {
  width: 64px;
  aspect-ratio: 1;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  border-radius: 21px;
  color: #2b76c6;
  background: #e9f4ff;
  transition: color 340ms ease, background 340ms ease, transform 380ms var(--experience-ease);
}

.case-page .case-v2__capability-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-page .case-v2__capability-grid small {
  align-self: center;
  justify-self: end;
}

.case-page .case-v2__capability-grid h3,
.case-page .case-v2__capability-grid p {
  grid-column: 1 / -1;
}

.case-page .case-v2__capability-grid h3 {
  align-self: end;
  color: var(--case-ink);
  font-family: var(--display);
  font-size: clamp(27px, 2.7vw, 39px);
  line-height: 1.08;
}

.case-page .case-v2__capability-grid p {
  max-width: 580px;
  margin: 0;
  color: var(--case-muted);
  line-height: 1.7;
}

.case-page .case-v2__capability-grid article.is-active {
  background:
    radial-gradient(circle at 88% 12%, rgba(77, 160, 240, .25), transparent 34%),
    linear-gradient(145deg, #fff, #eaf5ff);
  box-shadow: 0 28px 70px rgba(36, 105, 181, .17);
  transform: translateY(-5px);
}

.case-page .case-v2__capability-grid article.is-active .case-v2__capability-icon {
  color: #fff;
  background: linear-gradient(145deg, #2d7dce, #6eb2ec);
  transform: rotate(-4deg);
}

.case-page .case-v2__delivery {
  padding: clamp(42px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 12%, rgba(112, 185, 246, .24), transparent 28%),
    radial-gradient(circle at 88% 90%, rgba(61, 139, 217, .15), transparent 30%),
    linear-gradient(145deg, #f5faff, #e5f2ff);
  box-shadow: 0 30px 86px rgba(36, 96, 162, .13);
}

.case-page .case-v2__delivery-copy .eyebrow {
  margin-top: 12px;
}

.case-page .case-v2__delivery-copy h2 {
  max-width: 580px;
  margin-top: 18px;
  color: var(--case-ink);
  font-family: var(--display);
  font-size: clamp(35px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: -.032em;
}

.case-page .case-v2__delivery-copy > p:last-child {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--case-muted);
  line-height: 1.75;
}

.case-page .case-v2__delivery-list {
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.case-page .case-v2__delivery-list li {
  min-height: 74px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 12px 32px rgba(37, 91, 151, .07);
}

.case-page .case-v2__delivery-list span {
  color: #6594c4;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}

.case-page .case-v2__delivery-list strong {
  color: #28547f;
  font-size: 15px;
  line-height: 1.5;
}

.case-page .case-v2__result-list {
  margin-top: clamp(46px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.case-page .case-v2__result-list article {
  min-height: 190px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(79, 158, 237, .13), transparent 30%),
    rgba(255, 255, 255, .9);
  box-shadow: 0 18px 48px rgba(36, 86, 143, .08);
}

.case-page .case-v2__result-list strong {
  margin-top: 42px;
  color: #28547f;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
}

.case-page .case-v2__faq .faq-list {
  margin-top: clamp(42px, 5vw, 68px);
}

.case-page .case-related__grid {
  margin-top: clamp(44px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-page .case-related__grid > a {
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  color: inherit;
  background:
    radial-gradient(circle at 88% 10%, rgba(84, 163, 240, .15), transparent 31%),
    rgba(255, 255, 255, .9);
  box-shadow: 0 18px 50px rgba(36, 86, 143, .08);
  text-decoration: none;
  transition: transform 380ms var(--experience-ease), box-shadow 380ms ease, background 380ms ease;
}

.case-page .case-related__grid strong {
  max-width: 330px;
  margin-top: auto;
  color: var(--case-ink);
  font-family: var(--display);
  font-size: clamp(24px, 2.25vw, 33px);
  line-height: 1.12;
}

.case-page .case-related__grid p {
  margin: 14px 0 0;
  color: var(--case-muted);
  font-size: 13px;
  line-height: 1.7;
}

.case-page .case-related__grid em {
  margin-top: 22px;
  color: #397fc6;
  font-size: 12px;
  font-style: normal;
  font-weight: 780;
}

.case-page .case-related__grid > a:hover,
.case-page .case-related__grid > a:focus-visible {
  background:
    radial-gradient(circle at 88% 10%, rgba(84, 163, 240, .24), transparent 34%),
    linear-gradient(145deg, #fff, #eaf5ff);
  box-shadow: 0 27px 66px rgba(36, 105, 181, .16);
  transform: translateY(-5px);
}

.case-page .case-v2__inquiry {
  margin-top: clamp(24px, 3vw, 46px);
}

@media (max-width: 1180px) {
  .case-page .case-v2__hero,
  .case-page .case-v2__solution-grid,
  .case-page .case-v2__delivery {
    grid-template-columns: 1fr;
  }

  .case-page .case-v2__hero-type {
    min-height: 220px;
  }

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

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

  .case-page .case-related__grid > a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .case-page .case-v2__hero {
    min-height: 0;
    padding: 30px 22px;
    gap: 30px;
    align-items: start;
  }

  .case-page .case-v2__hero h1 {
    font-size: clamp(36px, 10.5vw, 52px);
    line-height: 1.14;
  }

  .case-page .case-v2__hero-type {
    min-height: 190px;
    padding: 24px;
  }

  .case-page .case-v2__section {
    padding-block: 66px;
  }

  .case-page .case-v2__section-head {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .case-page .case-v2__section-head > span {
    width: 44px;
  }

  .case-page .case-v2__section-head h2 {
    font-size: clamp(29px, 8.4vw, 40px);
  }

  .case-page .case-v2__background,
  .case-page .case-v2__solution,
  .case-page .case-v2__delivery {
    padding-inline: 22px;
    border-radius: 30px;
  }

  .case-page .case-v2__lead,
  .case-page .case-v2__participation {
    margin-left: 0;
  }

  .case-page .case-v2__lead {
    font-size: 17px;
  }

  .case-page .case-v2__needs-grid,
  .case-page .case-v2__capability-grid,
  .case-page .case-v2__timeline,
  .case-page .case-related__grid {
    grid-template-columns: 1fr;
  }

  .case-page .case-v2__needs-grid article,
  .case-page .case-v2__capability-grid article,
  .case-page .case-v2__timeline li,
  .case-page .case-related__grid > a {
    min-height: 210px;
  }

  .case-page .case-v2__flow {
    grid-template-columns: 1fr;
  }

  .case-page .case-v2__flow li {
    min-height: 82px;
  }

  .case-page .case-v2__flow i {
    top: auto;
    right: 50%;
    bottom: -8px;
    transform: translateX(50%);
  }

  .case-page .case-related__grid > a:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (hover: none) {
  .case-page .case-related__grid > a:hover,
  .case-page .case-v2__needs-grid article:hover,
  .case-page .case-v2__capability-grid article:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-page .case-v2__needs-grid article,
  .case-page .case-v2__capability-grid article,
  .case-page .case-related__grid > a,
  .case-page .case-v2__capability-icon {
    transition: none;
  }

  .case-page .case-v2__needs-grid article > i,
  .case-page .case-v2__capability-grid article > i {
    display: none;
  }
}
