:root {
  --ink: #0d1b2f;
  --ink-soft: #08111f;
  --surface: #eaf1f9;
  --paper: #ffffff;
  --paper-soft: #f3f7fc;
  --text: #f8fbff;
  --text-dark: #0d1b2f;
  --muted: #9aabc0;
  --muted-dark: #68788e;
  --line: rgba(180, 199, 225, 0.2);
  --line-dark: #dce5ef;
  --blue: #1468df;
  --blue-deep: #0b4eaf;
  --teal: #79aeea;
  --danger: #c63a4a;
  --page: 1920px;
  --pad: clamp(24px, 5vw, 96px);
  --section-pad: clamp(96px, 10vw, 164px);
  --display: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --body: Inter, "SF Pro Text", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  --shadow: 0 30px 90px rgba(38, 76, 125, 0.15);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

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

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

:focus-visible {
  outline: 3px solid #68a6f4;
  outline-offset: 4px;
}

.page {
  width: min(100%, var(--page));
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  border-radius: 8px;
  background: var(--blue);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.section {
  position: relative;
  padding: var(--section-pad) var(--pad);
}

.section--light {
  color: var(--text-dark);
  background: var(--paper);
}

.section--dark {
  color: var(--text);
  background: var(--ink-soft);
}

.eyebrow {
  margin: 0 0 24px;
  color: #4d6e9d;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #a9c7ef;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button--primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(20, 104, 223, 0.2);
}

.button--primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 16px 34px rgba(20, 104, 223, 0.26);
}

.button--secondary {
  color: #243a59;
  border-color: #cbd7e6;
  background: rgba(255, 255, 255, 0.72);
}

.button--secondary:hover {
  border-color: #a9bdd8;
  background: white;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.status-chip {
  width: max-content;
  padding: 6px 10px;
  display: inline-flex;
  color: var(--blue);
  border: 1px solid rgba(23, 92, 211, 0.28);
  background: rgba(23, 92, 211, 0.08);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar {
  position: relative;
  z-index: 30;
  height: 76px;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(31, 64, 105, 0.08);
  background: rgba(250, 252, 255, 0.96);
  backdrop-filter: blur(18px);
}

.topbar__inner {
  height: 100%;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand__mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(20, 104, 223, 0.16));
}

.brand__copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand__copy strong {
  color: #0e1b2e;
  font-family: "Source Han Sans SC", "Noto Sans CJK SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand__copy span {
  color: #78869a;
  font-size: 10px;
  font-weight: 650;
}

.nav {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 2.5vw, 44px);
  font-size: 13px;
  font-weight: 720;
}

.nav a {
  position: relative;
  padding: 12px 0;
  color: #29384d;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav a::after {
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: var(--blue);
  transition: right 180ms ease, left 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--blue);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a[aria-current="page"]::after {
  right: 0;
  left: 0;
}

.header-cta {
  min-height: 40px;
  padding: 0 18px;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: white;
  border-radius: 999px;
  background: #111a29;
  font-size: 11px;
  font-weight: 720;
  transition: background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: white;
  background: var(--blue);
}

.nav-toggle {
  display: none;
}

.site-footer {
  padding: 58px var(--pad) 28px;
  color: var(--text-dark);
  border-top: 1px solid var(--line-dark);
  background: white;
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 2.2fr);
  gap: clamp(54px, 7vw, 120px);
}

.footer-brand p {
  max-width: 290px;
  margin: 34px 0 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 48px);
}

.footer-links > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links h2 {
  margin-bottom: 9px;
  color: #324b6c;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.footer-links a,
.footer-links span {
  color: #65758b;
  font-size: 12px;
  line-height: 1.62;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-contact {
  min-width: 190px;
}

.site-footer__bottom {
  margin-top: 54px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  color: #8a98aa;
  border-top: 1px solid var(--line-dark);
  font-size: 10px;
}

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

.friend-links {
  margin-right: auto;
}

.legal-links {
  margin-left: auto;
}

.home-page {
  background: white;
}

.home-page .page {
  max-width: none;
}

.ticker {
  display: none;
}

.hero {
  position: relative;
  min-height: max(720px, calc(100svh - 74px));
  padding: clamp(90px, 11vh, 136px) var(--pad) 108px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(180deg, #f7faff 0%, #edf4fc 100%);
}

.hero-kinetic {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-kinetic::before {
  position: absolute;
  top: 45%;
  left: 50%;
  content: "SHICHI";
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--display);
  font-size: min(27vw, 430px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.09em;
  transform: translate(-50%, -50%);
}

.hero-shape,
.hero-orbit {
  position: absolute;
  display: block;
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-shape--capsule {
  top: 19%;
  right: -6%;
  width: 50%;
  height: 54%;
  border-radius: 180px 0 0 180px;
  background: linear-gradient(135deg, rgba(103, 164, 242, 0.74), rgba(20, 104, 223, 0.5));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.42);
}

.hero-shape--square {
  bottom: -16%;
  left: -4%;
  width: 40%;
  aspect-ratio: 1;
  border: clamp(80px, 8vw, 142px) solid rgba(91, 139, 207, 0.34);
  border-radius: 22%;
  transform: rotate(-5deg);
}

.hero-shape--disc {
  bottom: -27%;
  left: 37%;
  width: 42%;
  aspect-ratio: 1;
  border: clamp(75px, 7.5vw, 128px) solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.hero-shape--core {
  right: 16%;
  bottom: 12%;
  width: clamp(72px, 8vw, 124px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #4f97ef, #0c4ca8);
  box-shadow: 0 28px 80px rgba(20, 85, 168, 0.25);
}

.hero-orbit {
  border: 1px solid rgba(45, 102, 179, 0.16);
  border-radius: 50%;
}

.hero-orbit--one {
  top: 15%;
  left: 18%;
  width: 420px;
  height: 420px;
}

.hero-orbit--two {
  right: 12%;
  bottom: 4%;
  width: 320px;
  height: 320px;
}

.hero[data-carousel-index="1"] .hero-shape--capsule {
  transform: translateX(-6%) rotate(-3deg);
}

.hero[data-carousel-index="1"] .hero-shape--square {
  transform: translate(8%, -3%) rotate(7deg);
}

.hero[data-carousel-index="2"] .hero-shape--capsule {
  transform: translate(-3%, 4%) rotate(4deg);
}

.hero[data-carousel-index="2"] .hero-shape--disc {
  transform: translateX(-8%) scale(1.06);
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(100%, 1060px);
  text-align: center;
}

.hero-slides {
  display: grid;
  min-height: 300px;
  align-items: center;
}

.hero-slide {
  grid-area: 1 / 1;
  align-self: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease, visibility 320ms;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.kicker {
  margin: 0 0 25px;
  color: #56749d;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.hero h2 {
  max-width: 1040px;
  margin: 0 auto;
  color: #14243a;
  font-family: var(--display);
  font-size: clamp(58px, 6.2vw, 96px);
  font-weight: 880;
  line-height: 0.97;
  letter-spacing: -0.074em;
}

.hero h1 span,
.hero h2 span {
  color: var(--blue);
}

.promise {
  margin: 27px auto 0;
  color: #68798e;
  font-size: 14px;
  font-weight: 520;
}

.promise strong {
  color: #203a5d;
  font-weight: 760;
}

.hero .actions {
  margin-top: 30px;
  justify-content: center;
}

.hero-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-controls button {
  min-width: 48px;
  height: 36px;
  padding: 0 14px;
  color: #6c7e94;
  border: 1px solid rgba(140, 164, 195, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 760;
  transition: min-width 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-controls button.is-active {
  min-width: 72px;
  color: white;
  border-color: var(--blue);
  background: var(--blue);
}

.hero-facts {
  position: absolute;
  z-index: 4;
  right: var(--pad);
  bottom: 34px;
  left: var(--pad);
  padding: 10px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(45, 86, 137, 0.08);
  backdrop-filter: blur(16px);
}

.hero-facts span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #60738b;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.hero-facts b {
  color: var(--blue);
  font-weight: 760;
}

.section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.section-index {
  display: block;
  color: #dde6f1;
  font-family: var(--display);
  font-size: clamp(72px, 8vw, 126px);
  font-weight: 820;
  line-height: 1;
  letter-spacing: -0.08em;
}

.section-heading h2,
.portfolio__head h2,
.cases__intro h2,
.fit__intro h2,
.faq__heading h2,
.contact__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 4.8vw, 74px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.064em;
}

.section-heading > div:last-child > p,
.portfolio__head > p,
.cases__intro > p,
.fit__intro > p,
.faq__heading > p,
.contact__copy > p {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.8;
}

.services {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(113, 165, 232, 0.1), transparent 28%),
    #f3f7fc;
}

.service-explorer {
  position: relative;
  z-index: 2;
  margin-top: 54px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1.38fr);
  gap: 14px;
  border-radius: 28px;
  background: rgba(224, 234, 246, 0.76);
  box-shadow: 0 24px 70px rgba(49, 83, 128, 0.08);
}

.service-options {
  padding: 6px;
  display: grid;
  align-content: stretch;
  border-radius: 20px;
  background: rgba(244, 248, 253, 0.86);
}

.service-options button {
  min-height: 78px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  color: #6d7e92;
  border: 0;
  border-radius: 17px;
  background: transparent;
  text-align: left;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-options button span {
  font-size: 10px;
}

.service-options button strong {
  color: #4b5f77;
  font-size: 15px;
  font-weight: 760;
}

.service-options button em {
  font-size: 10px;
  font-style: normal;
}

.service-options button.is-active {
  color: white;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(20, 104, 223, 0.2);
}

.service-options button.is-active strong {
  color: white;
}

.service-stage {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 20px;
  background: white;
}

.service-stage__geometry {
  position: absolute;
  inset: 0 0 0 54%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(226, 238, 252, 0.76), rgba(165, 200, 242, 0.52));
}

.service-stage__geometry span {
  position: absolute;
  display: block;
}

.service-stage__geometry span:nth-child(1) {
  top: 14%;
  right: 12%;
  width: 50%;
  aspect-ratio: 1;
  border: 46px solid rgba(71, 133, 214, 0.2);
  border-radius: 50%;
}

.service-stage__geometry span:nth-child(2) {
  right: -8%;
  bottom: -18%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 38% 62% 32% 68%;
  background: rgba(61, 128, 216, 0.16);
  transform: rotate(24deg);
}

.service-stage__geometry span:nth-child(3) {
  top: 24%;
  right: 27%;
  width: 78px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
}

.service-panel {
  position: relative;
  z-index: 2;
  width: 65%;
  min-height: 390px;
  padding: 46px 22px 42px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
}

.service-panel[hidden] {
  display: none;
}

.service-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.service-panel__label {
  color: var(--blue);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.service-panel h3 {
  max-width: 600px;
  margin: 24px 0 20px;
  font-family: var(--display);
  font-size: clamp(36px, 3.7vw, 58px);
  font-weight: 830;
  line-height: 1.02;
  letter-spacing: -0.062em;
}

.service-panel > p {
  max-width: 540px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.8;
}

.service-panel ul {
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.service-panel li {
  padding: 7px 12px;
  color: #526984;
  border-radius: 999px;
  background: #edf3fa;
  font-size: 10px;
}

.scope-note {
  margin-top: 18px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  color: #62758d;
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.scope-note strong {
  color: #203b5d;
  font-size: 13px;
}

.scope-note a {
  color: var(--blue);
  font-weight: 760;
}

.portfolio {
  min-height: 900px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 8% 18%, rgba(24, 95, 185, 0.45), transparent 26%),
    linear-gradient(135deg, #07101e 0%, #0a1729 58%, #07111f 100%);
}

.portfolio__geometry {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.portfolio__geometry span {
  position: absolute;
  display: block;
  border: 1px solid rgba(112, 167, 239, 0.09);
}

.portfolio__geometry span:nth-child(1) {
  top: -18%;
  left: -7%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(24, 102, 213, 0.16);
}

.portfolio__geometry span:nth-child(2) {
  right: -14%;
  bottom: 14%;
  width: 50%;
  height: 42%;
  border-radius: 160px;
  background: rgba(24, 92, 184, 0.12);
}

.portfolio__geometry span:nth-child(3) {
  top: 17%;
  right: 12%;
  width: 56px;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: #2680f2;
  box-shadow: 0 0 0 24px rgba(38, 128, 242, 0.08);
}

.portfolio__head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 70px;
  align-items: end;
}

.portfolio__head h2 {
  max-width: 850px;
  color: white;
}

.portfolio__head > p {
  color: #92a2b7;
}

.portfolio-grid {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  position: relative;
  min-height: 306px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 18px 26px;
  overflow: hidden;
  border: 1px solid rgba(191, 214, 244, 0.1);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.055);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.portfolio-card::after {
  position: absolute;
  right: -15%;
  bottom: -42%;
  width: 58%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38, 128, 242, 0.18), transparent 68%);
}

.portfolio-card:hover {
  border-color: rgba(137, 183, 244, 0.28);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-3px);
}

.portfolio-card__tag {
  grid-column: 1 / -1;
  width: max-content;
  padding: 6px 9px;
  color: #a9c9f3;
  border-radius: 5px;
  background: rgba(38, 128, 242, 0.12);
  font-size: 11px;
}

.portfolio-card__main {
  align-self: end;
  display: flex;
  flex-direction: column;
}

.portfolio-card__main strong {
  color: white;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 46px);
  font-weight: 820;
  letter-spacing: -0.055em;
}

.portfolio-card__main em {
  margin-top: 4px;
  color: #90a2b9;
  font-size: 11px;
  font-style: normal;
}

.portfolio-card__description {
  grid-column: 1;
  max-width: 520px;
  color: #a8b6c7;
  font-size: 12px;
  line-height: 1.7;
}

.portfolio-card__link {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  color: white;
  font-size: 11px;
  font-weight: 740;
}

.cases {
  background: white;
}

.cases__intro {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.cases__intro > p {
  margin-right: auto;
  margin-left: auto;
}

.case-showcase {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(280px, 1fr);
  gap: 16px;
}

.case-feature {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  overflow: hidden;
  color: white;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 16%, rgba(52, 144, 246, 0.74), transparent 34%),
    linear-gradient(135deg, #1268d8, #174d9d);
  box-shadow: 0 28px 70px rgba(33, 95, 169, 0.18);
}

.case-feature__copy {
  position: relative;
  z-index: 2;
  padding: clamp(38px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-feature__copy > span {
  color: #c9ddf7;
  font-size: 11px;
  font-weight: 690;
  letter-spacing: 0.16em;
}

.case-feature__copy h3 {
  margin: 28px 0 22px;
  color: white;
  font-family: var(--display);
  font-size: clamp(45px, 5vw, 78px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.case-feature__copy p {
  max-width: 570px;
  color: #d8e7f8;
  font-size: 13px;
  line-height: 1.8;
}

.case-feature__copy div {
  margin-top: 18px;
  color: #b9d1ef;
  font-size: 11px;
}

.case-feature__copy a {
  width: max-content;
  margin-top: 42px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 730;
}

.case-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.case-visual span {
  position: absolute;
  display: block;
}

.case-visual span:nth-child(1) {
  top: 6%;
  right: -28%;
  width: 138%;
  aspect-ratio: 1;
  border: 72px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.case-visual span:nth-child(2) {
  right: 9%;
  bottom: 12%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.12);
}

.case-visual span:nth-child(3) {
  right: -20%;
  bottom: -16%;
  width: 85%;
  aspect-ratio: 1;
  border-radius: 28%;
  background: rgba(4, 49, 111, 0.2);
  transform: rotate(20deg);
}

.case-visual b {
  position: absolute;
  right: 7%;
  bottom: -5%;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--display);
  font-size: clamp(150px, 16vw, 260px);
  line-height: 0.8;
  letter-spacing: -0.1em;
}

.case-selector {
  padding: 22px 12px;
  display: grid;
  align-content: center;
  border-radius: var(--radius);
  background: #edf3f9;
}

.case-selector > p {
  margin: 0 10px 8px;
  color: #7a899c;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.case-selector button {
  min-height: 65px;
  padding: 0 13px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 8px;
  align-items: center;
  color: #6f8094;
  border: 0;
  border-radius: 14px;
  background: transparent;
  text-align: left;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.case-selector button span {
  font-size: 9px;
}

.case-selector button strong {
  color: #54677f;
  font-size: 12px;
  font-weight: 750;
}

.case-selector button em {
  font-size: 9px;
  font-style: normal;
  white-space: nowrap;
}

.case-selector button.is-active {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(20, 104, 223, 0.2);
}

.case-selector button.is-active strong {
  color: white;
}

.support-projects {
  margin-top: 110px;
  padding-top: 44px;
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  gap: 70px;
  border-top: 1px solid var(--line-dark);
}

.support-projects h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(39px, 4vw, 62px);
  font-weight: 840;
  line-height: 1;
  letter-spacing: -0.06em;
}

.support-project-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.support-project-list > span {
  position: relative;
  min-height: 132px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid #e0e7f0;
  border-radius: 20px;
  background: #fbfdff;
}

.support-project-list > span::after {
  position: absolute;
  right: -20%;
  bottom: -48%;
  width: 82%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: rgba(76, 139, 221, 0.1);
}

.support-project-list b {
  position: absolute;
  top: 16px;
  left: 18px;
  color: #527399;
  font-size: 9px;
}

.support-project-list strong {
  position: relative;
  z-index: 2;
  color: #253c5b;
  font-size: 13px;
  font-weight: 750;
}

.support-project-list em {
  position: relative;
  z-index: 2;
  color: #8290a1;
  font-size: 9px;
  font-style: normal;
}

.process {
  background: #f7f9fc;
}

.process-steps {
  padding: 0;
  margin: 78px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  list-style: none;
}

.process-steps li {
  position: relative;
  min-height: 250px;
  padding: 22px 0 20px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #cfdbe9;
}

.process-steps li > span {
  width: max-content;
  padding: 6px 10px;
  color: #617995;
  border-radius: 999px;
  background: #e9f1fa;
  font-size: 8px;
  letter-spacing: 0.1em;
}

.process-steps h3 {
  margin: 34px 0 13px;
  font-size: 20px;
  font-weight: 790;
  letter-spacing: -0.04em;
}

.process-steps p {
  color: #6d7c8f;
  font-size: 11px;
  line-height: 1.75;
}

.process-steps em {
  width: max-content;
  margin-top: auto;
  padding: 6px 10px;
  color: #4e6b8e;
  border-radius: 999px;
  background: #eef4fa;
  font-size: 8px;
  font-style: normal;
}

.process-steps i {
  position: absolute;
  right: 3%;
  bottom: 7%;
  width: 90px;
  height: 76px;
  border-radius: 50% 50% 20% 60%;
  background: linear-gradient(145deg, rgba(96, 158, 235, 0.12), rgba(168, 141, 242, 0.08));
  transform: rotate(12deg);
}

.process-summary {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dce5ef;
  border-radius: 18px;
  background: white;
}

.process-summary > div {
  min-height: 94px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #dce5ef;
}

.process-summary > div:last-child {
  border-right: 0;
}

.process-summary span {
  color: #8896a8;
  font-size: 9px;
}

.process-summary strong {
  margin-top: 6px;
  color: #2a4363;
  font-size: 12px;
}

.fit {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 84% 18%, rgba(22, 94, 187, 0.18), transparent 32%),
    #0a1119;
}

.fit__intro h2 {
  color: white;
}

.fit__intro > p {
  color: #7f8d9e;
}

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

.fit-card {
  position: relative;
  min-height: 520px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(180, 204, 236, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.fit-card::after {
  position: absolute;
  right: -18%;
  bottom: -18%;
  width: 58%;
  aspect-ratio: 1;
  content: "";
  border-radius: 50%;
  background: rgba(23, 103, 212, 0.26);
}

.fit-card > span {
  position: relative;
  z-index: 2;
  display: block;
  padding-bottom: 18px;
  color: #a9c8ef;
  border-bottom: 1px solid rgba(196, 217, 244, 0.1);
  font-size: 11px;
  font-weight: 720;
}

.fit-card ul {
  position: relative;
  z-index: 2;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fit-card li {
  padding: 23px 0;
  border-bottom: 1px solid rgba(196, 217, 244, 0.08);
}

.fit-card li:last-child {
  border-bottom: 0;
}

.fit-card strong {
  color: #f3f7fd;
  font-size: 12px;
}

.fit-card p {
  margin: 8px 0 0;
  color: #8291a4;
  font-size: 10px;
  line-height: 1.65;
}

.faq {
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(64px, 9vw, 140px);
  background: white;
}

.faq__heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  background: #f6f8fc;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: #d9e6f5;
  background: #eef5fd;
  box-shadow: 0 18px 44px rgba(47, 88, 139, 0.08);
}

.faq-list summary {
  min-height: 78px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: #55718f;
  font-size: 18px;
}

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

.faq-list summary > span {
  color: #7b8da2;
  font-size: 9px;
}

.faq-list summary h3 {
  margin: 0;
  color: #253d5c;
  font-size: 14px;
  font-weight: 770;
}

.faq-list details[open] summary h3 {
  color: var(--blue);
}

.faq-list details > p {
  max-width: 850px;
  padding: 0 64px 28px;
  margin: 0;
  color: #677a91;
  font-size: 12px;
  line-height: 1.85;
}

.contact {
  width: calc(100% - (var(--pad) * 0.5));
  max-width: calc(var(--page) - (var(--pad) * 0.5));
  min-height: 690px;
  margin: 28px auto;
  padding: clamp(58px, 7vw, 104px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(58px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
  color: white;
  border-radius: 30px;
  background: linear-gradient(135deg, #1368dd 0%, #184f9f 58%, #0d3471 100%);
}

.contact__geometry {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact__geometry span {
  position: absolute;
  display: block;
}

.contact__geometry span:nth-child(1) {
  top: -30%;
  right: -2%;
  width: 50%;
  aspect-ratio: 1;
  border: 95px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact__geometry span:nth-child(2) {
  bottom: -40%;
  left: -8%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
}

.contact__geometry span:nth-child(3) {
  top: 30%;
  left: 37%;
  width: 34%;
  height: 18%;
  border-radius: 80px;
  background: rgba(255, 255, 255, 0.08);
}

.contact__copy,
.lead-form {
  position: relative;
  z-index: 2;
}

.contact__copy h2 {
  color: white;
}

.contact__copy > p {
  color: #d5e5f8;
}

.contact__copy ul {
  padding: 24px 0 0;
  margin: 34px 0 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.contact__copy li {
  color: #d8e7f8;
  font-size: 11px;
}

.contact__copy li::before {
  margin-right: 14px;
  content: "–";
  color: white;
}

.lead-form {
  padding: 30px;
  color: var(--text-dark);
  border-radius: 22px;
  background: #f2f6fb;
  box-shadow: 0 30px 70px rgba(0, 25, 66, 0.22);
}

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

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

.lead-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.lead-form label > span {
  color: #4f6178;
  font-size: 9px;
  font-weight: 700;
}

.lead-form label b {
  color: var(--blue);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d1dbe7;
  border-radius: 7px;
  outline: 0;
  background: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 44px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 104, 223, 0.12);
}

.form-problem {
  margin: 14px 0;
}

.consent {
  margin-top: 14px;
  display: flex !important;
  grid-template-columns: 16px 1fr;
  align-items: flex-start;
}

.consent input {
  width: 15px;
  min-height: 15px;
  margin: 3px 0 0;
}

.consent span {
  line-height: 1.65;
}

.consent a {
  color: var(--blue);
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  font-size: 11px;
  font-weight: 760;
}

.form-submit:hover {
  background: var(--blue-deep);
}

.form-submit:disabled {
  opacity: 0.68;
  cursor: wait;
}

.form-status {
  margin: 12px 0 0;
  color: #77869a;
  font-size: 8px;
  line-height: 1.6;
}

.form-status.is-error {
  color: var(--danger);
}

.form-status.is-success {
  color: #167a5b;
}

.honeypot {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inner-page {
  color: var(--text-dark);
  background: var(--paper);
}

.inner-page .page {
  background: var(--paper);
}

.inner-shell {
  min-height: 70vh;
  padding: 28px var(--pad) var(--section-pad);
}

.breadcrumbs {
  margin: 8px 0 52px;
}

.breadcrumbs ol {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted-dark);
  font-size: 11px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  padding-left: 8px;
  content: "/";
  color: #9eabb9;
}

.inner-hero {
  max-width: 1120px;
  padding: 52px 0 clamp(70px, 9vw, 130px);
}

.inner-hero h1,
.entity-hero h1,
.error-state h1 {
  max-width: 1080px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: clamp(48px, 6.8vw, 100px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.inner-hero > p:last-child {
  max-width: 760px;
  color: var(--muted-dark);
  font-size: 18px;
}

.entity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.entity-card {
  min-height: 390px;
  padding: clamp(26px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
}

.entity-card__type {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.entity-card h2 {
  margin: 42px 0 18px;
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.entity-card p {
  color: var(--muted-dark);
}

.entity-card .status-chip {
  margin-top: 10px;
}

.entity-card .text-link {
  margin-top: auto;
}

.empty-state {
  padding: 40px;
  border: 1px solid var(--line-dark);
  color: var(--muted-dark);
  background: white;
}

.entity-hero {
  position: relative;
  min-height: 570px;
  padding: clamp(50px, 7vw, 100px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 50px;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--ink-soft);
}

.entity-hero > div:first-child {
  position: relative;
  z-index: 2;
}

.entity-hero h1 {
  margin: 18px 0 28px;
}

.entity-hero p:last-child {
  max-width: 760px;
  color: #c4d2e1;
  font-size: 17px;
}

.entity-orbit {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  justify-self: center;
}

.entity-orbit span:nth-child(1) {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(82, 214, 197, 0.5);
  border-radius: 50%;
}

.entity-orbit span:nth-child(2) {
  position: absolute;
  inset: 26%;
  border: 30px solid var(--blue);
  transform: rotate(18deg);
}

.entity-orbit b {
  position: absolute;
  right: 0;
  bottom: 5%;
  color: rgba(255, 255, 255, 0.18);
  font-family: var(--display);
  font-size: 46px;
  letter-spacing: -0.05em;
}

.flow-map {
  min-height: 360px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  background: var(--blue);
}

.flow-map span {
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-weight: 850;
}

.flow-map i {
  width: 1px;
  height: 16px;
  margin-left: 23px;
  background: var(--teal);
}

.case-stamp {
  position: relative;
  width: min(100%, 390px);
  aspect-ratio: 1;
  justify-self: center;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

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

.case-stamp::before {
  width: 1px;
  height: 118%;
}

.case-stamp::after {
  width: 118%;
  height: 1px;
}

.case-stamp span {
  position: absolute;
  top: 20%;
  color: var(--teal);
  font-size: 10px;
  letter-spacing: 0.16em;
}

.case-stamp b {
  font-family: var(--display);
  font-size: 62px;
}

.detail-section {
  padding: var(--section-pad) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(44px, 8vw, 120px);
  border-bottom: 1px solid var(--line-dark);
}

.detail-section h2,
.detail-faq h2,
.external-cta h2,
.inline-cta h2,
.inline-form h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.054em;
}

.detail-section > div > p:last-child,
.detail-section--boundary > p {
  color: var(--muted-dark);
}

.tag-list,
.boundary-list,
.module-grid,
.number-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}

.tag-list li {
  padding: 11px 15px;
  border: 1px solid var(--line-dark);
  background: white;
  font-size: 13px;
  font-weight: 800;
}

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

.number-list li {
  min-height: 78px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.number-list span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.number-list strong {
  font-size: 16px;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.module-grid li {
  min-height: 120px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
  font-weight: 800;
}

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

.boundary-list li {
  position: relative;
  min-height: 68px;
  padding: 20px 10px 20px 34px;
  border-bottom: 1px solid var(--line-dark);
}

.boundary-list li::before {
  position: absolute;
  top: 27px;
  left: 4px;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.external-cta,
.inline-cta {
  padding: clamp(42px, 6vw, 82px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  color: white;
  background: var(--blue-deep);
}

.external-cta {
  margin-top: var(--section-pad);
}

.external-cta h2,
.inline-cta h2 {
  max-width: 850px;
  margin: 0;
}

.detail-faq {
  padding: var(--section-pad) 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(44px, 8vw, 120px);
}

.detail-faq--wide {
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1.6fr);
}

.inline-cta {
  margin-top: 34px;
}

.case-narrative {
  padding: var(--section-pad) 0;
}

.case-narrative > div {
  min-height: 260px;
  padding: 54px 0;
  display: grid;
  grid-template-columns: 180px minmax(280px, 0.8fr) minmax(280px, 1.2fr);
  gap: 40px;
  border-bottom: 1px solid var(--line-dark);
}

.case-narrative > div > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.case-narrative h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.case-narrative p,
.case-narrative li {
  color: var(--muted-dark);
}

.case-narrative ul {
  margin: 0;
}

.public-metric {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
  background: var(--blue);
}

.public-metric span {
  font-size: 10px;
  letter-spacing: 0.1em;
}

.public-metric strong {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 58px);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.decision-grid article {
  min-height: 300px;
  padding: clamp(28px, 4vw, 54px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
}

.decision-grid article > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.decision-grid h2 {
  margin: 52px 0 16px;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.decision-grid p {
  color: var(--muted-dark);
}

.pricing-table {
  border-top: 1px solid var(--line-dark);
}

.pricing-table > div {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1.65fr);
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-dark);
}

.pricing-table strong {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 42px);
}

.pricing-table p {
  margin: 0;
  color: var(--muted-dark);
}

.category-strip {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid var(--line-dark);
  background: white;
}

.category-strip span {
  padding: 8px 12px;
  color: var(--blue);
  border: 1px solid rgba(23, 92, 211, 0.24);
  font-size: 12px;
  font-weight: 800;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.fact-grid article {
  min-height: 220px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
}

.fact-grid article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.fact-grid strong,
.fact-grid li {
  font-size: 18px;
  font-weight: 800;
}

.fact-grid ul {
  padding-left: 20px;
  margin: 20px 0 0;
}

.contact-cards,
.contact-decision {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.contact-cards article,
.contact-decision > div {
  min-height: 160px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
}

.contact-cards span,
.contact-decision span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

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

.contact-decision a,
.contact-decision strong {
  font-size: clamp(17px, 2vw, 25px);
}

.inline-form {
  margin-top: var(--section-pad);
  padding: clamp(36px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 100px);
  color: white;
  background: var(--blue-deep);
}

.inline-form > div > p:last-child {
  color: #c3d5ea;
}

.inline-form .lead-form {
  align-self: start;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy h2 {
  margin: 52px 0 12px;
  font-family: var(--display);
  font-size: 34px;
  letter-spacing: -0.04em;
}

.legal-copy p {
  color: var(--muted-dark);
}

.error-page .topbar {
  background: var(--ink);
}

.error-state {
  min-height: 72vh;
  padding: var(--section-pad) var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background: var(--ink);
}

.error-state > span {
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.7;
}

.error-state h1 {
  margin-top: 56px;
}

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

.error-state .actions {
  margin-top: 28px;
}

.secondary-hero {
  max-width: 1120px;
}

.secondary-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background: white;
}

.secondary-facts article {
  min-height: 180px;
  padding: clamp(24px, 3.2vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.secondary-facts span,
.secondary-related span,
.secondary-hub-grid > a > span,
.secondary-hub-grid > a > p {
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.secondary-facts strong {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.secondary-module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.secondary-module-grid li {
  min-height: 220px;
  padding: clamp(24px, 3vw, 38px);
  display: grid;
  grid-template-columns: 38px 1fr;
  align-content: start;
  column-gap: 16px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
  list-style: none;
}

.secondary-module-grid li > span {
  grid-row: 1 / span 2;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.secondary-module-grid li > strong {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.secondary-module-grid li > p {
  margin: 22px 0 0;
  color: var(--muted-dark);
}

.secondary-decisions {
  align-items: start;
}

.secondary-boundary > p {
  max-width: 720px;
  color: var(--muted-dark);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.secondary-next,
.secondary-listing-block {
  padding-top: var(--section-pad);
}

.secondary-next > div,
.secondary-listing-head {
  max-width: 700px;
  margin-bottom: 36px;
}

.secondary-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.secondary-related a {
  min-height: 180px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 24px;
  color: inherit;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.secondary-related a span {
  grid-column: 1 / -1;
}

.secondary-related a strong {
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.secondary-related a em {
  align-self: end;
  color: var(--blue);
  font-style: normal;
}

.secondary-related a:hover,
.secondary-related a:focus-visible {
  color: white;
  background: var(--blue);
}

.secondary-related a:hover span,
.secondary-related a:hover em,
.secondary-related a:focus-visible span,
.secondary-related a:focus-visible em {
  color: white;
}

.secondary-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.secondary-hub-grid > a {
  min-height: 320px;
  padding: clamp(26px, 3.2vw, 42px);
  display: flex;
  flex-direction: column;
  color: inherit;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.secondary-hub-grid > a > p {
  margin: 28px 0 12px;
}

.secondary-hub-grid > a > h2 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 37px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.secondary-hub-grid > a > strong {
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.7;
}

.secondary-hub-grid > a > em {
  margin-top: auto;
  padding-top: 28px;
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.secondary-hub-grid > a:hover,
.secondary-hub-grid > a:focus-visible {
  color: white;
  background: var(--ink);
}

.secondary-hub-grid > a:hover strong,
.secondary-hub-grid > a:focus-visible strong {
  color: #cad3df;
}

.secondary-hub-grid--compact {
  grid-template-columns: repeat(3, 1fr);
}

.secondary-hub-grid--compact > a {
  min-height: 280px;
}

@media (max-width: 920px) {
  .secondary-facts,
  .secondary-hub-grid,
  .secondary-hub-grid--compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .secondary-related {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .secondary-facts,
  .secondary-module-grid,
  .secondary-hub-grid,
  .secondary-hub-grid--compact {
    grid-template-columns: 1fr;
  }

  .secondary-facts article,
  .secondary-hub-grid > a {
    min-height: 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  .secondary-related a,
  .secondary-hub-grid > a {
    transition: none;
  }
}

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

  .nav {
    gap: 20px;
    font-size: 12px;
  }

  .header-cta {
    padding-inline: 15px;
  }

  .service-panel {
    width: 72%;
  }

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

  .footer-contact {
    grid-column: span 2;
  }
}

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

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

  .hero {
    min-height: 760px;
  }

  .section-heading {
    grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1.55fr);
    gap: 46px;
  }

  .service-explorer {
    grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  }

  .service-panel {
    width: 78%;
    padding-left: 34px;
  }

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

  .case-visual {
    position: absolute;
    inset: 0 0 0 54%;
  }

  .case-feature__copy {
    max-width: 68%;
  }

  .support-projects {
    grid-template-columns: 1fr;
  }

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

  .fit__intro {
    max-width: 720px;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }
}

@media (max-width: 920px) {
  :root {
    --section-pad: 82px;
  }

  .topbar {
    height: 68px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

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

  .brand__copy span {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 4;
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid #d3ddea;
    border-radius: 50%;
    background: white;
  }

  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    display: block;
    background: #17283e;
    transition: transform 180ms 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 {
    position: fixed;
    inset: 68px 0 0;
    z-index: 3;
    padding: 28px var(--pad);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    color: var(--text-dark);
    background: rgba(248, 251, 255, 0.98);
    backdrop-filter: blur(18px);
  }

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

  .nav a {
    min-height: 62px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dce5ef;
    font-size: 17px;
  }

  .nav a::after {
    display: none;
  }

  .hero {
    min-height: 700px;
    padding-top: 88px;
    padding-bottom: 118px;
    grid-template-columns: 1fr;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(50px, 10.5vw, 76px);
  }

  .hero-shape--capsule {
    top: 24%;
    right: -28%;
    width: 78%;
    height: 46%;
  }

  .hero-shape--square {
    left: -18%;
    width: 56%;
  }

  .hero-shape--disc {
    left: 28%;
    width: 62%;
  }

  .section-heading,
  .portfolio__head,
  .faq,
  .contact,
  .detail-section,
  .detail-faq,
  .inline-form {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-index {
    display: none;
  }

  .service-explorer {
    grid-template-columns: 1fr;
  }

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

  .service-options button {
    min-height: 82px;
  }

  .service-stage {
    min-height: 430px;
  }

  .service-panel {
    width: 70%;
    min-height: 430px;
  }

  .scope-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .portfolio-card {
    min-height: 270px;
  }

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

  .case-feature {
    min-height: 540px;
  }

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

  .case-selector > p {
    grid-column: 1 / -1;
  }

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

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

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

  .process-summary > div:nth-child(2) {
    border-right: 0;
  }

  .process-summary > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

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

  .faq__heading {
    position: static;
  }

  .contact {
    width: calc(100% - 28px);
    margin-block: 14px;
  }

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

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

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

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

  .entity-orbit,
  .case-stamp {
    width: min(78vw, 360px);
  }

  .flow-map {
    min-height: 280px;
  }

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

  .case-narrative > div {
    grid-template-columns: 120px 1fr;
  }

  .case-narrative > div > :last-child {
    grid-column: 2;
  }

  .detail-faq .faq-list {
    width: 100%;
  }

  .contact-decision {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --pad: 20px;
    --section-pad: 68px;
  }

  .brand__mark {
    width: 32px;
    height: 32px;
  }

  .brand__copy strong {
    font-size: 18px;
  }

  .hero {
    min-height: 650px;
    padding: 74px 20px 134px;
  }

  .hero-slides {
    min-height: 270px;
  }

  .kicker {
    margin-bottom: 20px;
    font-size: 8px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(42px, 12.7vw, 58px);
    line-height: 0.98;
  }

  .promise {
    font-size: 12px;
    line-height: 1.8;
  }

  .hero .actions {
    display: grid;
  }

  .hero .button {
    width: 100%;
  }

  .hero-controls {
    margin-top: 16px;
  }

  .hero-facts {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 9px;
    grid-template-columns: 1fr;
    gap: 6px;
    border-radius: 18px;
  }

  .hero-facts span {
    min-height: 32px;
    justify-content: flex-start;
    padding-inline: 13px;
  }

  .hero-shape--capsule {
    right: -52%;
    width: 105%;
    opacity: 0.7;
  }

  .hero-shape--square {
    bottom: -4%;
    left: -42%;
    width: 90%;
    border-width: 66px;
  }

  .hero-shape--disc {
    bottom: -8%;
    left: 22%;
    width: 88%;
    border-width: 58px;
  }

  .hero-shape--core {
    right: 6%;
    bottom: 21%;
    width: 68px;
  }

  .section-heading h2,
  .portfolio__head h2,
  .cases__intro h2,
  .fit__intro h2,
  .faq__heading h2,
  .contact__copy h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .section-heading > div:last-child > p,
  .portfolio__head > p,
  .cases__intro > p,
  .fit__intro > p,
  .faq__heading > p,
  .contact__copy > p {
    font-size: 12px;
  }

  .service-explorer {
    margin-top: 38px;
    padding: 8px;
  }

  .service-options {
    grid-template-columns: 1fr;
  }

  .service-options button {
    min-height: 64px;
  }

  .service-stage {
    min-height: 520px;
  }

  .service-stage__geometry {
    inset: 48% 0 0;
  }

  .service-panel {
    width: 100%;
    min-height: 520px;
    padding: 34px 22px 210px;
    justify-content: flex-start;
  }

  .service-panel h3 {
    font-size: 38px;
  }

  .portfolio {
    min-height: 0;
  }

  .portfolio-grid {
    margin-top: 40px;
  }

  .portfolio-card {
    min-height: 300px;
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .portfolio-card__main,
  .portfolio-card__description,
  .portfolio-card__link {
    grid-column: 1;
  }

  .portfolio-card__link {
    grid-row: auto;
  }

  .case-feature {
    min-height: 590px;
  }

  .case-feature__copy {
    max-width: none;
    padding: 34px 26px 220px;
    justify-content: flex-start;
  }

  .case-feature__copy h3 {
    font-size: 43px;
  }

  .case-feature__copy a {
    margin-top: 26px;
  }

  .case-visual {
    inset: auto 0 0;
    height: 260px;
  }

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

  .support-projects {
    margin-top: 76px;
  }

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

  .support-project-list > span {
    min-height: 118px;
  }

  .process-steps {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .process-steps li {
    min-height: 210px;
  }

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

  .process-summary > div,
  .process-summary > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .process-summary > div:last-child {
    border-bottom: 0;
  }

  .fit {
    gap: 44px;
  }

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

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

  .faq {
    gap: 42px;
  }

  .faq-list summary {
    min-height: 76px;
    padding-inline: 16px;
    grid-template-columns: 28px 1fr auto;
  }

  .faq-list summary h3 {
    font-size: 13px;
  }

  .faq-list details > p {
    padding: 0 45px 24px;
  }

  .contact {
    min-height: 0;
    padding: 48px 24px 24px;
    border-radius: 22px;
  }

  .lead-form {
    padding: 22px 18px;
  }

  .form-grid,
  .form-grid--contact {
    grid-template-columns: 1fr;
  }

  .form-grid label + label {
    margin-top: 12px;
  }

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

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

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-links {
    margin-left: 0;
  }

  .inner-shell {
    padding-top: 20px;
  }

  .breadcrumbs {
    margin-bottom: 32px;
  }

  .inner-hero {
    padding-top: 34px;
  }

  .inner-hero h1,
  .entity-hero h1,
  .error-state h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .entity-grid,
  .decision-grid,
  .fact-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .entity-hero {
    min-height: 0;
    padding: 46px 24px;
  }

  .entity-orbit,
  .case-stamp {
    width: min(68vw, 290px);
  }

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

  .external-cta,
  .inline-cta {
    padding: 34px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .case-narrative > div {
    padding: 40px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-narrative > div > :last-child {
    grid-column: 1;
  }

  .pricing-table > div {
    padding: 24px 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .inline-form {
    padding-inline: 22px;
  }
}

@media (hover: none) {
  .portfolio-card:hover {
    transform: none;
  }
}

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

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

  .ticker__track {
    animation: none;
    transform: none;
  }

  .hero-shape,
  .hero-orbit,
  .hero-slide,
  .portfolio-card {
    transform: none !important;
    transition: none !important;
  }
}

/*
 * 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 .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 .location-scenario-grid {
    grid-template-columns: 1fr;
  }

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

  .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 .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 .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 .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;
  }
}
