:root {
  --blue: #145dec;
  --blue-dark: #071a3f;
  --cyan: #15c6d4;
  --accent: #ffb64a;
  --ink: #10182b;
  --muted: #52627a;
  --line: #dce6f6;
  --panel: #ffffff;
  --bg: #f5f8fe;
  --shadow: 0 20px 50px rgba(18, 55, 110, 0.09);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 30;
  background:
    radial-gradient(280px circle at var(--cursor-x) var(--cursor-y), rgba(20, 93, 236, 0.1), rgba(21, 198, 212, 0.055) 28%, rgba(20, 93, 236, 0) 62%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

html.pointer-active body::before {
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.page-loading {
  display: grid;
  min-height: 100vh;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
}

.page-loading.error {
  color: #b42318;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  min-height: 76px;
  padding: 0 max(28px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(20, 93, 236, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(18, 55, 110, 0.08);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--blue));
  background-size: 180% 100%;
  transform: scaleX(var(--progress, 0));
  transform-origin: left center;
  animation: progress-flow 4.8s linear infinite;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 214px;
  min-width: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 180ms ease;
}

.brand:hover img {
  transform: translateY(-1px);
}

.top-nav {
  --nav-pill-x: 4px;
  --nav-pill-w: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 2px;
  min-width: 0;
  min-height: 48px;
  padding: 4px;
  border: 1px solid rgba(20, 93, 236, 0.1);
  border-radius: 8px;
  background: rgba(247, 250, 255, 0.74);
  overflow: hidden;
}

.top-nav::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--nav-x, 50%) var(--nav-y, 50%), rgba(20, 93, 236, 0.12), rgba(20, 93, 236, 0) 32%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.top-nav:hover::before {
  opacity: 1;
}

.top-nav::after {
  position: absolute;
  top: 4px;
  left: 0;
  z-index: 0;
  width: var(--nav-pill-w);
  height: 40px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(20, 93, 236, 0.12);
  content: "";
  opacity: var(--nav-pill-opacity, 0);
  transform: translateX(var(--nav-pill-x));
  transition: transform 260ms var(--ease-out), width 260ms var(--ease-out), opacity 180ms ease;
  pointer-events: none;
}

.top-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 7px;
  color: #28364d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.top-nav a:hover,
.top-nav a.active {
  color: var(--blue);
  background: transparent;
  box-shadow: none;
}

.top-nav a:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--blue);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-button.open span:nth-child(2) {
  opacity: 0;
}

.menu-button.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(720px, calc(100svh - 86px));
  background: #f4f8ff;
  --hero-x: 0px;
  --hero-y: 0px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(249, 252, 255, 0.99) 0%, rgba(249, 252, 255, 0.96) 36%, rgba(249, 252, 255, 0.72) 54%, rgba(249, 252, 255, 0.08) 82%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, rgba(245, 248, 254, 0) 62%, rgba(245, 248, 254, 0.94));
  pointer-events: none;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(calc(var(--hero-x) * 0.22), calc(var(--hero-y) * 0.18), 0) scale(1.02);
  transition: transform 320ms ease-out;
}

.home-hero {
  min-height: auto;
  padding: 0 0 64px;
  background:
    radial-gradient(circle at 78% 22%, rgba(20, 93, 236, 0.13), rgba(20, 93, 236, 0) 34%),
    radial-gradient(circle at 64% 54%, rgba(21, 198, 212, 0.08), rgba(21, 198, 212, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fe 100%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background:
    linear-gradient(90deg, rgba(20, 93, 236, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 93, 236, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  mask-image: radial-gradient(circle at 74% 34%, #000 0%, transparent 54%);
  opacity: 0.5;
  pointer-events: none;
}

.home-hero::after {
  background: linear-gradient(180deg, rgba(245, 248, 254, 0) 72%, rgba(245, 248, 254, 0.94));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
  gap: 58px;
  align-items: center;
  padding: 86px 0 56px;
}

.home-hero-inner {
  grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr);
  gap: 44px;
  align-items: center;
  padding: 78px 0 30px;
}

.hero-copy {
  min-width: 0;
}

.hero-visual {
  display: grid;
  justify-items: end;
  position: relative;
  min-width: 0;
  isolation: isolate;
  animation: hero-float 8s var(--ease-out) infinite;
  will-change: transform;
}

.hero-visual::before {
  position: absolute;
  inset: 8% -8% -7% 4%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 45%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 42%),
    radial-gradient(circle at 54% 50%, rgba(20, 93, 236, 0.16), rgba(20, 93, 236, 0) 58%);
  filter: blur(18px);
  content: "";
  animation: hero-aura 6.8s ease-in-out infinite;
}

.hero-visual::after {
  position: absolute;
  inset: 2% 0 4% 2%;
  z-index: 2;
  background: linear-gradient(108deg, transparent 18%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.68) 49%, rgba(21, 198, 212, 0.18) 52%, rgba(255, 255, 255, 0) 60%, transparent 82%);
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%) skewX(-12deg);
  animation: hero-scan 7.4s ease-in-out infinite;
  mask-image: radial-gradient(ellipse at 58% 50%, #000 0%, transparent 72%);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(720px, 100%);
  height: auto;
  margin-left: auto;
  filter: drop-shadow(0 24px 42px rgba(29, 85, 168, 0.12));
  transform: translate3d(calc(var(--hero-x) * -0.18), calc(var(--hero-y) * -0.14), 0);
  transition: transform 320ms ease-out, filter 320ms ease;
  will-change: transform;
}

.chapter-dots {
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(7, 26, 63, 0.36);
  font-size: 13px;
  font-weight: 900;
  transform: translateY(-50%);
}

.chapter-dots::before,
.chapter-dots::after {
  width: 1px;
  height: 34px;
  background: rgba(20, 93, 236, 0.16);
  content: "";
}

.chapter-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c7d3e8;
}

.chapter-dots span.active {
  width: 12px;
  height: 12px;
  border: 3px solid #dce9ff;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(20, 93, 236, 0.12);
  animation: dot-pulse 2.4s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.text-nowrap {
  white-space: nowrap;
}

.mobile-title-line {
  display: inline;
}

h1 {
  max-width: 860px;
  margin: 0;
  color: #07152f;
  font-size: 62px;
  font-weight: 900;
  line-height: 1.06;
}

.hero-summary {
  max-width: 660px;
  margin: 28px 0 0;
  color: #34425c;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.9;
}

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

.button-primary,
.button-secondary {
  --magnet-x: 0px;
  --magnet-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  overflow: hidden;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button-primary::after,
.button-secondary::after {
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 48%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  content: "";
  transform: translateX(0) skewX(-16deg);
  transition: transform 620ms var(--ease-out);
  pointer-events: none;
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 36px rgba(20, 93, 236, 0.23);
}

.button-primary:hover {
  box-shadow: 0 22px 42px rgba(20, 93, 236, 0.3);
}

.button-secondary {
  border: 1px solid rgba(20, 93, 236, 0.22);
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
}

.button-primary:hover,
.button-secondary:hover {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 2px), 0);
}

.button-primary:hover::after,
.button-secondary:hover::after {
  transform: translateX(340%) skewX(-16deg);
}

.button-ripple {
  position: absolute;
  z-index: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: button-ripple 620ms ease-out forwards;
}

.button-primary > :not(.button-ripple),
.button-secondary > :not(.button-ripple) {
  position: relative;
  z-index: 1;
}

.button-secondary:hover {
  border-color: rgba(20, 93, 236, 0.42);
  background: #fff;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  max-width: 780px;
  margin-top: 48px;
}

.stat-row article,
.growth-line article,
.service-grid article,
.case-grid article,
.cooperation-grid article {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translate3d(0, var(--card-lift), 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.stat-row:not(.home-stat-rail) article::before,
.growth-line article::before,
.service-grid article::before,
.case-grid article::before,
.cooperation-grid article::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(20, 93, 236, 0.12), rgba(20, 93, 236, 0) 42%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.stat-row article > *,
.growth-line article > *,
.service-grid article > *,
.case-grid article > *,
.cooperation-grid article > * {
  position: relative;
  z-index: 1;
}

.stat-row article:hover,
.growth-line article:hover,
.service-grid article:hover,
.case-grid article:hover,
.cooperation-grid article:hover {
  --card-lift: -4px;
  border-color: rgba(20, 93, 236, 0.28);
  box-shadow: 0 24px 60px rgba(18, 55, 110, 0.13);
}

.stat-row:not(.home-stat-rail) article:hover::before,
.growth-line article:hover::before,
.service-grid article:hover::before,
.case-grid article:hover::before,
.cooperation-grid article:hover::before {
  opacity: 1;
}

.stat-row article {
  min-height: 96px;
  padding: 18px;
}

.stat-row strong {
  display: block;
  color: var(--blue);
  font-size: 32px;
  font-weight: 900;
}

.stat-row span {
  display: block;
  margin-top: 8px;
  color: #41516b;
  font-size: 14px;
  font-weight: 800;
}

.home-stat-rail {
  position: relative;
  z-index: 2;
  max-width: none;
  margin-top: 12px;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 93, 236, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(18, 55, 110, 0.08);
}

.home-stat-rail article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: center;
  min-height: 108px;
  padding: 22px 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-stat-rail article::before {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(20, 93, 236, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 93, 236, 0.9) 0 34%, rgba(20, 93, 236, 0.1) 35% 100%);
  content: "";
  animation: stat-pulse 3.4s ease-in-out infinite;
}

.home-stat-rail article::after {
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: rgba(20, 93, 236, 0.13);
  content: "";
}

.home-stat-rail article:last-child::after {
  display: none;
}

.home-stat-rail article:hover {
  box-shadow: none;
  transform: none;
}

.home-stat-rail strong,
.home-stat-rail span {
  grid-column: 2;
}

.home-stat-rail strong {
  font-size: 32px;
  line-height: 1;
}

.home-stat-rail span {
  margin-top: 0;
  line-height: 1.45;
}

.band {
  scroll-margin-top: 88px;
  padding: 88px 0;
}

.system-band,
.cases-band,
.cooperation-band {
  background: var(--bg);
}

.service-band,
.academy-band {
  background: #fff;
}

.section-title {
  max-width: 760px;
  margin-bottom: 38px;
}

.chapter-band {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.chapter-band:nth-of-type(even) {
  background: #f6f9ff;
}

.chapter-band.route-band {
  background:
    linear-gradient(180deg, #f5f8fe 0%, #f9fbff 18%, #ffffff 58%);
}

.chapter-band.route-band::before {
  position: absolute;
  top: -130px;
  right: 0;
  left: 0;
  height: 220px;
  background: radial-gradient(ellipse at 72% 0%, rgba(20, 93, 236, 0.09), rgba(20, 93, 236, 0) 58%);
  content: "";
  pointer-events: none;
}

.chapter-title {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.chapter-title.compact {
  display: block;
  max-width: 760px;
}

.chapter-title .eyebrow {
  grid-column: 1;
}

.chapter-title h2 {
  grid-column: 1;
  margin: 0;
  color: #0b1730;
  font-size: 42px;
  font-weight: 950;
  line-height: 1.18;
  text-wrap: balance;
  word-break: keep-all;
}

.chapter-title > span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  display: block;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.chapter-title-line {
  display: block;
  color: inherit;
  font: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.chapter-title.compact > .eyebrow,
.chapter-title.compact > h2,
.chapter-title.compact > span {
  grid-column: auto;
  grid-row: auto;
}

.site-map-grid a {
  display: grid;
  min-height: 260px;
  align-content: start;
  background: linear-gradient(180deg, #fff, #fbfdff);
}

.site-map-grid a:hover {
  background: #fff;
}

.site-map-grid span {
  color: var(--blue);
}

.loop-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.loop-track article {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(18, 55, 110, 0.07);
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translate3d(0, var(--card-lift), 0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.loop-track article::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(20, 93, 236, 0.11), rgba(20, 93, 236, 0) 46%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.loop-track article > * {
  position: relative;
  z-index: 1;
}

.loop-track article:hover,
.loop-track article.is-current {
  --card-lift: -4px;
  border-color: rgba(20, 93, 236, 0.28);
  box-shadow: 0 24px 60px rgba(18, 55, 110, 0.12);
}

.loop-track article:hover::before,
.loop-track article.is-current::before {
  opacity: 1;
}

.loop-track article::after {
  position: absolute;
  top: 50%;
  right: -18px;
  width: 18px;
  height: 1px;
  background: rgba(20, 93, 236, 0.28);
  content: "";
  transform-origin: left center;
  animation: connector-flow 2.8s ease-in-out infinite;
}

.loop-track article:last-child::after {
  display: none;
}

.loop-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(20, 93, 236, 0.08);
  color: var(--blue);
  font-size: 15px;
  font-weight: 950;
}

.loop-track h3 {
  margin: 22px 0 0;
  color: #0b1730;
  font-size: 20px;
  font-weight: 950;
}

.loop-track p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.72;
}

.resource-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.resource-link::after {
  margin-left: 8px;
  content: "→";
  transition: transform 160ms ease;
}

.resource-link:hover::after {
  transform: translateX(4px);
}

.evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-head .eyebrow {
  margin-bottom: 0;
}

.preview-head a,
.case-proof-card a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.case-proof-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.92)),
    #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translate3d(0, var(--card-lift), 0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.case-proof-card:hover {
  --card-lift: -4px;
  border-color: rgba(20, 93, 236, 0.28);
  box-shadow: 0 24px 60px rgba(18, 55, 110, 0.13);
}

.case-proof-card > span {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(20, 93, 236, 0.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.case-proof-card h3 {
  margin: 18px 0 0;
  color: #0b1730;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.25;
}

.case-proof-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.case-proof-card div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.case-proof-card strong,
.case-metrics strong {
  display: grid;
  gap: 6px;
  padding: 14px 12px;
  border-top: 1px solid rgba(20, 93, 236, 0.14);
  color: #44556f;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.case-proof-card em,
.case-metrics em {
  color: var(--blue);
  font-style: normal;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.case-proof-card a {
  justify-self: start;
  margin-top: 22px;
}

.section-title.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title h2,
.service-copy h2,
.academy-layout h2,
.contact-layout h2 {
  margin: 0;
  color: #0b1730;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.18;
}

.section-title span,
.service-copy p,
.academy-layout p,
.contact-layout p {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.85;
}

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

.growth-line article {
  position: relative;
  min-height: 240px;
  padding: 28px;
}

.growth-line article:hover em,
.cooperation-grid article:hover span {
  color: var(--blue);
}

.growth-line article::after {
  position: absolute;
  top: 40px;
  right: -22px;
  width: 28px;
  height: 2px;
  background: rgba(20, 93, 236, 0.4);
  content: "";
}

.growth-line article:last-child::after {
  display: none;
}

.growth-line em,
.cooperation-grid span {
  display: block;
  color: var(--cyan);
  font-style: normal;
  font-size: 30px;
  font-weight: 900;
}

.growth-line h3,
.service-grid h3,
.case-grid h3,
.cooperation-grid h3 {
  margin: 22px 0 0;
  color: #0c1934;
  font-size: 20px;
  font-weight: 900;
}

.growth-line p,
.service-grid p,
.case-grid p,
.cooperation-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.72;
}

.service-layout,
.academy-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 56px;
  align-items: center;
}

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

.service-grid article,
.cooperation-grid article {
  min-height: 176px;
  padding: 26px;
}

.service-grid h3 {
  margin-top: 0;
}

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

.case-grid article {
  overflow: hidden;
  cursor: pointer;
  outline: none;
}

.case-grid article:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20, 93, 236, 0.16), var(--shadow);
}

.case-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border-bottom: 1px solid rgba(20, 93, 236, 0.12);
  transition: transform 260ms ease;
}

.case-grid article:hover img,
.case-grid article:focus-visible img {
  transform: scale(1.035);
}

.case-grid div {
  padding: 24px;
}

.case-grid h3 {
  margin-top: 0;
}

.academy-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.academy-layout figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.academy-layout figure:hover {
  box-shadow: 0 26px 64px rgba(18, 55, 110, 0.14);
  transform: translateY(-4px);
}

.academy-layout img {
  display: block;
  width: 100%;
}

.academy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.academy-tags span {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(20, 93, 236, 0.18);
  border-radius: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  transition: transform 160ms ease, background-color 160ms ease;
}

.academy-tags span:hover {
  background: rgba(20, 93, 236, 0.08);
  transform: translateY(-2px);
}

.academy-breakdown {
  display: grid;
  gap: 34px;
}

.academy-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.academy-flow::before {
  position: absolute;
  top: 38px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgba(20, 93, 236, 0), rgba(20, 93, 236, 0.45), rgba(21, 198, 212, 0.45), rgba(20, 93, 236, 0));
  content: "";
}

.academy-flow article,
.academy-proof-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translate3d(0, var(--card-lift), 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
  will-change: transform;
}

.academy-flow article::before,
.academy-proof-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(21, 198, 212, 0.16), rgba(20, 93, 236, 0.08) 22%, rgba(20, 93, 236, 0) 52%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.academy-flow article > *,
.academy-proof-card > * {
  position: relative;
  z-index: 1;
}

.academy-flow article {
  display: grid;
  gap: 12px;
  min-height: 178px;
  padding: 24px;
}

.academy-flow article:hover,
.academy-proof-card:hover {
  --card-lift: -4px;
  border-color: rgba(20, 93, 236, 0.28);
  box-shadow: 0 24px 60px rgba(18, 55, 110, 0.13);
}

.academy-flow article:hover::before,
.academy-proof-card:hover::before {
  opacity: 1;
}

.academy-flow article span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 93, 236, 0.08);
  color: var(--blue);
  font-size: 16px;
  font-weight: 950;
}

.academy-flow article strong {
  color: #0c1934;
  font-size: 21px;
  font-weight: 950;
}

.academy-flow article p,
.academy-proof-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.72;
}

.academy-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.academy-proof-card {
  display: grid;
  gap: 18px;
  min-height: 420px;
  padding: 26px;
}

.academy-card-head {
  display: grid;
  gap: 10px;
}

.academy-card-head span {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(20, 93, 236, 0.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.academy-card-head strong {
  color: #0c1934;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.25;
}

.academy-proof-table {
  display: grid;
  gap: 10px;
}

.academy-proof-table div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(247, 250, 255, 0.98), rgba(255, 255, 255, 0.82));
}

.academy-proof-table b,
.academy-proof-table strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.academy-proof-table em {
  color: #33435f;
  font-style: normal;
  font-size: 14px;
  font-weight: 760;
}

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

.academy-scene-grid span {
  display: grid;
  min-height: 104px;
  place-items: end start;
  padding: 14px;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(20, 93, 236, 0.1), rgba(21, 198, 212, 0.08)),
    repeating-linear-gradient(135deg, rgba(20, 93, 236, 0.08) 0 1px, transparent 1px 12px),
    #fff;
  color: #0c1934;
  font-size: 15px;
  font-weight: 950;
}

.academy-path-list {
  display: grid;
  gap: 10px;
}

.academy-path-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 8px;
  background: rgba(247, 250, 255, 0.82);
}

.academy-path-list span {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(20, 93, 236, 0.14);
}

.academy-path-list strong {
  color: #0c1934;
  font-size: 16px;
  font-weight: 950;
}

.academy-path-list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.academy-engine {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(20, 93, 236, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(20, 93, 236, 0.08), rgba(21, 198, 212, 0.08)),
    #fff;
  box-shadow: var(--shadow);
}

.academy-engine span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 950;
}

.academy-engine strong {
  color: #0c1934;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.35;
}

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

.cooperation-grid h3 {
  margin-top: 20px;
}

.cooperation-model-layout {
  align-items: stretch;
}

.cooperation-model {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-content: stretch;
}

.cooperation-model article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 8px 14px;
  align-content: start;
  min-height: auto;
  padding: 22px;
}

.cooperation-model article:first-child {
  background:
    radial-gradient(circle at 84% 20%, rgba(20, 93, 236, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.96);
}

.cooperation-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(20, 93, 236, 0.06), rgba(21, 198, 212, 0.06));
}

.cooperation-flow span {
  position: relative;
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.cooperation-flow span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -9px;
  width: 10px;
  height: 2px;
  background: rgba(20, 93, 236, 0.34);
  content: "";
}

.cooperation-model h3 {
  margin-top: 0;
}

.cooperation-model p {
  grid-column: 2;
}

.contact-band {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 88px;
  padding: 92px 0 42px;
  background: var(--blue-dark);
  color: #fff;
}

.contact-band::after {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: min(620px, 55vw);
  height: 260px;
  background: url("/assets/senke-logo.png") center / contain no-repeat;
  opacity: 0.08;
  content: "";
}

.contact-layout {
  position: relative;
  z-index: 1;
}

.contact-layout .eyebrow,
.contact-layout h2 {
  color: #fff;
}

.contact-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  position: relative;
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translate3d(0, var(--card-lift), 0);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.contact-card::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(255, 255, 255, 0.18), transparent 44%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card:hover {
  --card-lift: -3px;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card a,
.contact-card span {
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.5;
  text-decoration: none;
}

.site-record {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 44px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 650;
}

:where(html.js-enabled [data-reveal]) {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px) scale(0.985);
  transition: opacity 720ms ease, transform 720ms var(--ease-out), filter 720ms ease;
  transition-delay: var(--delay, 0ms);
}

:where(html.js-enabled [data-reveal].is-visible) {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(20, 93, 236, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

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

.back-top:hover {
  background: #fff;
  transform: translateY(-2px);
}

@keyframes progress-flow {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 180% 50%;
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes hero-aura {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes hero-scan {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translateX(-120%) skewX(-12deg);
  }

  68% {
    opacity: 0.72;
  }

  82% {
    opacity: 0;
    transform: translateX(110%) skewX(-12deg);
  }
}

@keyframes dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(20, 93, 236, 0.12);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(20, 93, 236, 0.05);
  }
}

@keyframes stat-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(20, 93, 236, 0.14);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(20, 93, 236, 0);
  }
}

@keyframes button-ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes connector-flow {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.case-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(7, 21, 47, 0.72);
  opacity: 0;
  transition: opacity 180ms ease;
}

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

.case-modal.open {
  opacity: 1;
}

.case-modal figure {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100vh - 72px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(3, 12, 31, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 180ms ease;
}

.case-modal.open figure {
  transform: translateY(0) scale(1);
}

.case-modal img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 220px);
  object-fit: contain;
  background: #eef4ff;
}

.case-modal figcaption {
  display: grid;
  gap: 8px;
  padding: 22px 24px 24px;
}

.case-modal strong {
  color: #0b1730;
  font-size: 22px;
  font-weight: 900;
}

.case-modal span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: #0b1730;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(3, 12, 31, 0.18);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 70px;
  background:
    linear-gradient(135deg, rgba(243, 248, 255, 0.98), rgba(255, 255, 255, 0.92)),
    #f4f8ff;
}

.page-hero::after {
  position: absolute;
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 26px;
  width: 220px;
  height: 56px;
  background: url("/assets/senke-logo.png") center / contain no-repeat;
  opacity: 0.05;
  content: "";
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  gap: 48px;
  align-items: center;
  min-width: 0;
}

.page-hero-inner.no-media {
  grid-template-columns: minmax(0, 860px);
}

.page-hero h1 {
  max-width: 720px;
  min-width: 0;
  font-size: 54px;
  overflow-wrap: anywhere;
}

.page-hero p:not(.eyebrow) {
  max-width: 660px;
  min-width: 0;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}

.page-hero figure,
.split-layout figure,
.two-image-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.page-hero img,
.split-layout img,
.two-image-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.route-grid,
.pain-grid,
.academy-detail,
.anchor-mocha-grid,
.region-grid,
.news-list,
.two-image-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.route-grid a,
.region-card,
.pain-grid article,
.academy-detail article,
.news-preview,
.news-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translate3d(0, var(--card-lift), 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
  will-change: transform;
}

.route-grid a::before,
.region-card::before,
.pain-grid article::before,
.academy-detail article::before,
.news-preview::before,
.news-card::before,
.case-proof-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(21, 198, 212, 0.14), rgba(20, 93, 236, 0.08) 18%, rgba(20, 93, 236, 0) 46%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.route-grid a > *,
.region-card > *,
.pain-grid article > *,
.academy-detail article > *,
.news-preview > *,
.news-card > *,
.case-proof-card > * {
  position: relative;
  z-index: 1;
}

.route-grid a {
  min-height: 238px;
  padding: 26px;
  text-decoration: none;
}

.region-card {
  display: grid;
  min-height: 276px;
  padding: 26px;
  color: inherit;
  text-decoration: none;
}

.route-grid a:hover,
.route-grid a.is-current,
.region-card:hover,
.pain-grid article:hover,
.academy-detail article:hover,
.news-preview:hover,
.news-card:hover {
  --card-lift: -4px;
  border-color: rgba(20, 93, 236, 0.28);
  box-shadow: 0 24px 60px rgba(18, 55, 110, 0.13);
}

.route-grid a:hover::before,
.route-grid a.is-current::before,
.region-card:hover::before,
.pain-grid article:hover::before,
.academy-detail article:hover::before,
.news-preview:hover::before,
.news-card:hover::before,
.case-proof-card:hover::before {
  opacity: 1;
}

.route-grid span,
.region-card span,
.pain-grid span,
.academy-detail span {
  color: var(--cyan);
  font-size: 28px;
  font-weight: 950;
}

.route-grid h3,
.region-card h3,
.pain-grid h3,
.academy-detail h3 {
  margin: 22px 0 0;
  color: #0c1934;
  font-size: 20px;
  font-weight: 900;
}

.route-grid p,
.region-card p,
.pain-grid p,
.academy-detail p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.75;
}

.region-card strong {
  align-self: end;
  display: block;
  margin-top: 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.7;
}

.region-detail-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: start;
}

.region-detail-layout h2 {
  margin: 0;
  color: #0b1730;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
}

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

.local-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.local-service-grid article,
.faq-list article,
.region-facts {
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.local-service-grid article {
  min-height: 154px;
  padding: 22px;
}

.local-service-grid span {
  color: var(--cyan);
  font-size: 24px;
  font-weight: 950;
}

.local-service-grid p {
  margin: 16px 0 0;
  color: #26364f;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.6;
}

.region-facts {
  padding: 28px;
}

.region-facts h3 {
  margin: 0;
  color: #0b1730;
  font-size: 22px;
  font-weight: 900;
}

.region-facts div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.region-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(20, 93, 236, 0.16);
  border-radius: 8px;
  background: rgba(20, 93, 236, 0.06);
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.region-facts p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.service-grid.compact article {
  min-height: 118px;
}

.faq-list article {
  padding: 24px;
}

.faq-list h3 {
  margin: 0;
  color: #0b1730;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.45;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.8;
}

.split-layout,
.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 52px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-layout h2,
.preview-layout h2,
.site-footer h2,
.news-detail h1 {
  margin: 0;
  color: #0b1730;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.18;
}

.split-layout p:not(.eyebrow),
.preview-layout p:not(.eyebrow),
.site-footer p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.86;
}

.mini-steps {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.mini-steps article {
  padding: 18px 20px;
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 55, 110, 0.06);
}

.mini-steps h3 {
  margin: 0;
  color: #0d1a35;
  font-size: 17px;
  font-weight: 900;
}

.mini-steps p {
  margin: 8px 0 0;
}

.preview-band,
.timeline-band {
  background: #fff;
}

.news-preview {
  display: grid;
  gap: 0;
  padding: 24px;
}

.news-preview a {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(20, 93, 236, 0.1);
  color: inherit;
  text-decoration: none;
}

.news-preview a:first-of-type {
  border-top: 0;
}

.news-preview time,
.news-card time,
.news-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.news-preview strong {
  color: #0d1a35;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

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

.pain-grid article,
.academy-detail article {
  min-height: 194px;
  padding: 24px;
}

.formula-card {
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 182, 74, 0.34);
  border-radius: 8px;
  background: #fff8ec;
  color: #7a4a12;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.6;
}

.matrix-map {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94)),
    #fff;
  box-shadow: var(--shadow);
}

.matrix-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, auto);
  gap: 14px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(20, 93, 236, 0.12);
}

.matrix-head span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.matrix-head strong {
  display: inline-flex;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

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

.matrix-account-row div {
  display: grid;
  gap: 10px;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 8px;
  background: #fff;
}

.matrix-account-row span {
  color: var(--cyan);
  font-size: 22px;
  font-weight: 950;
}

.matrix-account-row strong {
  color: #0b1730;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.35;
}

.matrix-account-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

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

.matrix-actions span {
  padding: 8px 10px;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 999px;
  background: rgba(20, 93, 236, 0.05);
  color: #33435f;
  font-size: 13px;
  font-weight: 850;
}

.matrix-path,
.matrix-formula-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.matrix-path span,
.matrix-formula-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 8px;
  background: rgba(20, 93, 236, 0.05);
  color: #33435f;
  font-size: 13px;
  font-weight: 850;
}

.matrix-path span {
  border-radius: 999px;
}

.matrix-formula-row span {
  background: #fff;
  color: var(--blue);
  font-weight: 950;
}

.matrix-formula-row b {
  margin-left: 8px;
  color: #95a6bf;
  font-weight: 950;
}

.matrix-map p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(20, 93, 236, 0.08);
  color: var(--blue);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.6;
}

.proof-band {
  padding: 38px 0;
  background: #fff;
}

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

.case-grid.detailed article {
  cursor: pointer;
}

.case-grid.detailed article > div {
  display: grid;
  align-content: start;
  min-height: 320px;
}

.case-grid.detailed article div span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.case-grid.detailed small {
  align-self: end;
  margin-top: 20px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
  padding: 0 !important;
}

.case-metrics strong {
  padding: 12px 0 0;
}

.case-method-band {
  background:
    linear-gradient(180deg, #f5f8fe, #ffffff),
    #fff;
}

.case-method-grid,
.case-evidence-grid {
  display: grid;
  gap: 16px;
}

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

.case-evidence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.case-method-grid article,
.case-evidence-grid article,
.cooperation-model article {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translate3d(0, var(--card-lift), 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.case-method-grid article::before,
.case-evidence-grid article::before,
.cooperation-model article::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(21, 198, 212, 0.14), rgba(20, 93, 236, 0.08) 22%, rgba(20, 93, 236, 0) 52%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.case-method-grid article > *,
.case-evidence-grid article > *,
.cooperation-model article > * {
  position: relative;
  z-index: 1;
}

.case-method-grid article:hover,
.case-evidence-grid article:hover,
.cooperation-model article:hover {
  --card-lift: -4px;
  border-color: rgba(20, 93, 236, 0.28);
  box-shadow: 0 24px 60px rgba(18, 55, 110, 0.13);
}

.case-method-grid article:hover::before,
.case-evidence-grid article:hover::before,
.cooperation-model article:hover::before {
  opacity: 1;
}

.case-method-grid article,
.case-evidence-grid article {
  min-height: 210px;
  padding: 24px;
}

.case-method-grid span,
.cooperation-model article span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 93, 236, 0.08);
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.case-method-grid h3,
.case-evidence-grid h3,
.cooperation-model h3 {
  margin: 18px 0 0;
  color: #0c1934;
  font-size: 19px;
  font-weight: 950;
}

.case-method-grid p,
.case-evidence-grid p,
.cooperation-model p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.7;
}

.case-evidence-grid strong {
  color: var(--blue);
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
}

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

.mocha-band {
  background:
    linear-gradient(180deg, #fbf8f2, #f5f8fe 72%),
    #fbf8f2;
}

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

.mocha-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 26px;
  border: 1px solid rgba(120, 78, 40, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--spot-x, 78%) var(--spot-y, 14%), rgba(255, 224, 173, 0.7), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, #fffaf3, #ffffff 58%, #f2f7ff);
  box-shadow: 0 24px 58px rgba(75, 50, 28, 0.11);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.mocha-card:hover {
  border-color: rgba(120, 78, 40, 0.34);
  box-shadow: 0 30px 76px rgba(75, 50, 28, 0.16);
  transform: translateY(-5px);
}

.mocha-card::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(120, 78, 40, 0.1);
  font-size: 70px;
  font-weight: 950;
  content: "MOCHA";
}

.mocha-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.mocha-portrait {
  display: grid;
  width: 96px;
  height: 120px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(120, 78, 40, 0.18);
  border-radius: 8px;
  background: linear-gradient(160deg, #9b6a3e, #1c5de9);
  color: #fff;
  box-shadow: 0 16px 34px rgba(75, 50, 28, 0.16);
}

.mocha-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mocha-portrait span {
  font-size: 26px;
  font-weight: 950;
}

.mocha-card-top p {
  margin: 0 0 8px;
  color: #9b6a3e;
  font-size: 13px;
  font-weight: 950;
}

.mocha-card-top h2 {
  margin: 0;
  color: #1c1714;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.18;
}

.mocha-card-top strong {
  display: block;
  margin-top: 8px;
  color: #32425c;
  font-size: 15px;
  line-height: 1.45;
}

.mocha-signature,
.mocha-focus {
  position: relative;
  z-index: 1;
}

.mocha-signature {
  margin: 26px 0 0;
  color: #7a4a12;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.45;
}

.mocha-focus {
  margin: 14px 0 0;
  color: #4f5e73;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.mocha-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.mocha-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(120, 78, 40, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #7a4a12;
  font-size: 13px;
  font-weight: 900;
}

.mocha-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mocha-metrics div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(120, 78, 40, 0.12);
}

.mocha-metrics span {
  color: #8d775f;
  font-size: 13px;
  font-weight: 850;
}

.mocha-metrics strong {
  color: #17243a;
  font-size: 16px;
  font-weight: 950;
}

.news-list {
  grid-template-columns: 1fr;
}

.news-card {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.news-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.news-card div {
  display: grid;
  align-content: center;
  gap: 14px;
  min-width: 0;
  padding: 24px 28px 24px 0;
}

.news-card p {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.news-card h2 {
  min-width: 0;
  margin: 0;
  color: #0b1730;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.news-card strong {
  min-width: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.news-detail {
  padding: 72px 0 86px;
  background: #fff;
}

.news-detail .container {
  width: min(920px, calc(100% - 48px));
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.news-detail h1 {
  font-size: 48px;
}

.news-detail .lead {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 750;
  line-height: 1.85;
}

.news-detail img {
  display: block;
  width: 100%;
  margin-top: 34px;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-body {
  margin-top: 34px;
}

.article-body p {
  color: #26354e;
  font-size: 17px;
  font-weight: 650;
  line-height: 2;
}

.timeline-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(20, 93, 236, 0.12);
}

.timeline-list time {
  color: var(--blue);
  font-size: 22px;
  font-weight: 950;
}

.timeline-list h3 {
  margin: 0;
  color: #0b1730;
  font-size: 18px;
  font-weight: 950;
}

.timeline-list p {
  margin: 6px 0 0;
}

.about-system {
  display: grid;
  gap: 30px;
  scroll-margin-top: 96px;
}

.about-org-grid,
.about-support-grid,
.about-credential-grid,
.about-ecosystem-grid {
  display: grid;
  gap: 16px;
}

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

.about-org-grid article,
.about-loop article,
.about-support-grid article,
.about-credential-grid article,
.about-ecosystem-grid article,
.about-cert-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateX(var(--tilt-y)) rotateY(var(--tilt-x)) translate3d(0, var(--card-lift), 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.about-org-grid article::before,
.about-loop article::before,
.about-support-grid article::before,
.about-credential-grid article::before,
.about-ecosystem-grid article::before,
.about-cert-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgba(21, 198, 212, 0.14), rgba(20, 93, 236, 0.08) 22%, rgba(20, 93, 236, 0) 52%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.about-org-grid article > *,
.about-loop article > *,
.about-support-grid article > *,
.about-credential-grid article > *,
.about-ecosystem-grid article > *,
.about-cert-card > * {
  position: relative;
  z-index: 1;
}

.about-org-grid article:hover,
.about-loop article:hover,
.about-support-grid article:hover,
.about-credential-grid article:hover,
.about-ecosystem-grid article:hover,
.about-cert-card:hover {
  --card-lift: -4px;
  border-color: rgba(20, 93, 236, 0.28);
  box-shadow: 0 24px 60px rgba(18, 55, 110, 0.13);
}

.about-org-grid article:hover::before,
.about-loop article:hover::before,
.about-support-grid article:hover::before,
.about-credential-grid article:hover::before,
.about-ecosystem-grid article:hover::before,
.about-cert-card:hover::before {
  opacity: 1;
}

.about-org-grid article {
  display: grid;
  align-content: start;
  min-height: 218px;
  padding: 24px;
}

.about-org-grid span,
.about-loop span,
.about-credential-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 93, 236, 0.08);
  color: var(--blue);
  font-size: 14px;
  font-weight: 950;
}

.about-org-grid h3,
.about-support-grid h3,
.about-ecosystem-grid h3 {
  margin: 18px 0 0;
  color: #0c1934;
  font-size: 19px;
  font-weight: 950;
}

.about-org-grid p,
.about-support-grid p,
.about-credential-grid p,
.about-ecosystem-layout > div > p,
.about-ecosystem-grid p,
.about-cert-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.72;
}

.about-loop {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 255, 0.9)),
    #fff;
  box-shadow: 0 18px 48px rgba(18, 55, 110, 0.08);
}

.about-loop article {
  display: grid;
  gap: 10px;
  min-height: 214px;
  padding: 18px;
}

.about-loop strong,
.about-credential-grid strong {
  color: #0c1934;
  font-size: 18px;
  font-weight: 950;
}

.about-loop p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}

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

.about-support-grid article {
  min-height: 154px;
  padding: 22px;
}

.about-timeline-panel {
  display: grid;
  gap: 24px;
  scroll-margin-top: 96px;
}

.about-timeline-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.about-timeline-list article {
  position: relative;
  min-height: 218px;
  padding: 24px 20px;
  border: 1px solid rgba(20, 93, 236, 0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.about-timeline-list article::after {
  position: absolute;
  top: 42px;
  right: -18px;
  width: 22px;
  height: 2px;
  background: rgba(20, 93, 236, 0.38);
  content: "";
}

.about-timeline-list article:last-child::after {
  display: none;
}

.about-timeline-list time {
  color: var(--blue);
  font-size: 28px;
  font-weight: 950;
}

.about-timeline-list h3 {
  margin: 22px 0 0;
  color: #0c1934;
  font-size: 22px;
  font-weight: 950;
}

.about-timeline-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.68;
}

.about-proof-layout,
.about-ecosystem-layout {
  display: grid;
  gap: 30px;
  align-items: center;
  scroll-margin-top: 96px;
}

.about-proof-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
}

.about-proof-layout h2,
.about-ecosystem-layout h2 {
  margin: 0;
  color: #07152f;
  font-size: 42px;
  font-weight: 950;
  line-height: 1.18;
}

.about-proof-layout > div > p,
.about-ecosystem-layout > div > p {
  max-width: 720px;
  margin: 18px 0 0;
}

.about-credential-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.about-credential-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px 12px;
  min-height: 142px;
  padding: 18px;
}

.about-credential-grid span {
  grid-row: span 2;
}

.about-cert-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  background:
    radial-gradient(circle at 78% 24%, rgba(21, 198, 212, 0.18), transparent 36%),
    linear-gradient(145deg, #ffffff, #f4f8ff);
}

.about-cert-card > span {
  color: var(--blue);
  font-size: 72px;
  font-weight: 950;
  line-height: 1;
}

.about-cert-card > strong {
  color: #0c1934;
  font-size: 30px;
  font-weight: 950;
}

.about-cert-card figure,
.about-ecosystem-layout figure {
  margin: 10px 0 0;
  overflow: hidden;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 8px;
  background: #fff;
}

.about-cert-card img,
.about-ecosystem-layout img {
  display: block;
  width: 100%;
  height: auto;
}

.about-ecosystem-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.about-ecosystem-layout figure {
  margin: 0;
  box-shadow: var(--shadow);
}

.about-ecosystem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.about-ecosystem-grid article {
  min-height: 150px;
  padding: 22px;
}

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

.two-image-grid figcaption {
  padding: 18px 20px;
  color: #0c1934;
  font-weight: 900;
}

.site-footer {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 88px;
  padding: 86px 0 34px;
  background: #071a3f;
  color: #fff;
}

.site-footer::after {
  position: absolute;
  right: -80px;
  bottom: -92px;
  width: min(620px, 55vw);
  height: 260px;
  background: url("/assets/senke-logo.png") center / contain no-repeat;
  opacity: 0.08;
  content: "";
}

.footer-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.site-footer .eyebrow,
.site-footer h2 {
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-contact a,
.footer-contact span {
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.5;
  text-decoration: none;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 650;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.admin-body {
  background: #eef3fb;
}

.admin-shell {
  min-height: 100vh;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.admin-header strong {
  color: #0b1730;
  font-size: 20px;
  font-weight: 900;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  width: min(1320px, calc(100% - 36px));
  margin: 22px auto;
}

.admin-nav,
.admin-panel,
.login-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(21, 45, 86, 0.06);
}

.admin-nav {
  position: sticky;
  top: 92px;
  display: grid;
  align-self: start;
  gap: 6px;
  padding: 14px;
}

.admin-nav button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #33435f;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.admin-nav button.active,
.admin-nav button:hover {
  color: var(--blue);
  background: rgba(20, 93, 236, 0.08);
}

.admin-panel {
  padding: 26px;
}

.admin-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field > span {
  color: #25344d;
  font-size: 14px;
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #d7e1f0;
  border-radius: 8px;
  padding: 11px 12px;
  color: #0f1b31;
  background: #fff;
  outline: none;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.6;
}

.field.compact-textarea textarea {
  min-height: 118px;
}

.field-hint {
  margin-top: -2px;
  color: #6b7c95;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.admin-hero-editor {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 10px;
}

.admin-hero-preview {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 14px;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(20, 93, 236, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 24%, rgba(21, 198, 212, 0.16), transparent 34%),
    radial-gradient(circle at 78% 72%, rgba(20, 93, 236, 0.16), transparent 38%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 54%, #edf5ff 100%);
  box-shadow: 0 18px 42px rgba(19, 59, 118, 0.08);
}

.admin-hero-preview::after {
  position: absolute;
  right: -46px;
  bottom: -50px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(20, 93, 236, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 28%, rgba(20, 93, 236, 0.1) 29% 30%, transparent 31%),
    repeating-radial-gradient(circle, rgba(20, 93, 236, 0.12) 0 1px, transparent 1px 24px);
  content: "";
  opacity: 0.58;
  pointer-events: none;
}

.admin-preview-label,
.admin-preview-eyebrow,
.admin-hero-preview h3,
.admin-preview-summary,
.admin-preview-actions {
  position: relative;
  z-index: 1;
}

.admin-preview-label {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(20, 93, 236, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.admin-preview-eyebrow {
  margin: 8px 0 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.3;
  text-transform: uppercase;
}

.admin-hero-preview h3 {
  max-width: 560px;
  margin: 0;
  color: #07152f;
  font-size: 42px;
  font-weight: 950;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.admin-hero-preview h3 span {
  display: inline;
}

.admin-preview-summary {
  max-width: 620px;
  margin: 0;
  color: #33435f;
  font-size: 16px;
  font-weight: 780;
  line-height: 1.78;
}

.admin-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.admin-preview-actions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(20, 93, 236, 0.22);
  border-radius: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.admin-preview-actions span:first-child {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 28px rgba(20, 93, 236, 0.18);
}

.admin-hero-fields {
  min-width: 0;
}

.image-tools {
  display: grid;
  grid-template-columns: minmax(0, 180px) auto;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.image-tools img,
.image-tools > span {
  display: grid;
  width: 180px;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d7e1f0;
  border-radius: 8px;
  background: #f6f9fe;
  color: #7787a0;
  object-fit: cover;
}

.image-tools.portrait {
  grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
}

.image-tools.portrait img,
.image-tools.portrait > span {
  width: 120px;
  aspect-ratio: 4 / 5;
}

.image-upload-side {
  display: grid;
  gap: 8px;
  align-content: center;
}

.upload-hint,
.section-note {
  margin: 0;
  color: #687892;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}

.upload-button {
  position: relative;
  justify-self: start;
  overflow: hidden;
}

.upload-button input {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
}

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

.array-item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #dfe7f4;
  border-radius: 8px;
  background: #f8fbff;
}

.array-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.array-title strong {
  color: var(--cyan);
  font-size: 18px;
  font-weight: 900;
}

.anchor-editor-list {
  gap: 18px;
}

.anchor-editor-card {
  gap: 16px;
  border-color: rgba(120, 78, 40, 0.18);
  background:
    linear-gradient(145deg, #fffaf3, #ffffff 58%, #f5f8ff);
}

.anchor-editor-groups {
  display: grid;
  gap: 14px;
}

.anchor-editor-group {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(217, 226, 242, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.anchor-editor-group h3 {
  margin: 0;
  color: #17243a;
  font-size: 15px;
  font-weight: 950;
}

.metric-editor {
  display: grid;
  gap: 10px;
}

.metric-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

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

.admin-button.icon-only {
  min-width: 72px;
  padding: 0 12px;
}

.admin-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(220, 230, 246, 0.7);
}

.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #24324a;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.admin-button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.admin-button.danger {
  border-color: #f4c7c7;
  color: #b42318;
}

.admin-button.add {
  justify-self: start;
  border-color: rgba(20, 93, 236, 0.22);
  color: var(--blue);
}

.subhead {
  margin: 28px 0 14px;
  color: #17243a;
  font-size: 18px;
  font-weight: 900;
}

.subhead.compact {
  margin-top: 12px;
  font-size: 16px;
}

.login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.login-panel {
  width: min(420px, 100%);
  padding: 30px;
}

.login-panel h1 {
  margin: 0 0 8px;
  font-size: 28px;
}

.login-panel p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.login-submit {
  width: 100%;
  margin-top: 18px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  max-width: min(420px, calc(100vw - 44px));
  padding: 14px 16px;
  border-radius: 8px;
  background: #0b1730;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  body::before,
  .top-nav::after {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr 44px;
  }

  .top-nav {
    position: fixed;
    z-index: 110;
    top: 72px;
    right: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-self: auto;
    gap: 6px;
    min-height: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    box-shadow: 0 24px 70px rgba(18, 55, 110, 0.18);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .top-nav a {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 14px;
  }

  .top-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .menu-button {
    display: grid;
  }

  .growth-line,
  .case-grid,
  .cooperation-grid,
  .stat-row,
  .route-grid,
  .loop-track,
  .academy-flow,
  .academy-proof-grid,
  .about-org-grid,
  .about-loop,
  .about-support-grid,
  .about-timeline-list,
  .about-credential-grid,
  .about-ecosystem-grid,
  .case-method-grid,
  .case-evidence-grid,
  .cooperation-model,
  .cooperation-flow,
  .evidence-layout,
  .matrix-account-row,
  .region-grid,
  .pain-grid,
  .academy-detail,
  .anchor-mocha-grid,
  .two-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 52px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-visual img {
    width: min(640px, 100%);
    height: auto;
    margin: 0 auto;
  }

  .chapter-dots {
    right: 8px;
  }

  .chapter-title {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .chapter-title > .eyebrow,
  .chapter-title > h2,
  .chapter-title > span {
    grid-column: 1;
    grid-row: auto;
  }

  .chapter-title > span {
    align-self: start;
  }

  .loop-track article::after {
    display: none;
  }

  .academy-flow::before {
    display: none;
  }

  .about-proof-layout,
  .about-ecosystem-layout {
    grid-template-columns: 1fr;
  }

  .about-timeline-list article::after {
    display: none;
  }

  .cooperation-flow span:not(:last-child)::after {
    display: none;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .section-title h2,
  .service-copy h2,
  .academy-layout h2,
  .contact-layout h2,
  .split-layout h2,
  .preview-layout h2,
  .site-footer h2 {
    font-size: 36px;
  }

  .growth-line article::after {
    display: none;
  }

  .service-layout,
  .academy-layout,
  .contact-layout,
  .page-hero-inner,
  .region-detail-layout,
  .faq-layout,
  .split-layout,
  .split-layout.reverse,
  .preview-layout,
  .footer-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-nav {
    position: static;
  }

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

  .admin-hero-preview {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .container,
  .site-record {
    width: min(1180px, calc(100% - 28px));
  }

  .site-header {
    min-height: 64px;
    padding: 0 14px;
  }

  .scroll-progress {
    height: 1px;
    opacity: 0.55;
  }

  .brand {
    width: 176px;
  }

  .top-nav {
    top: 64px;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(249, 252, 255, 0.99) 0%, rgba(249, 252, 255, 0.95) 58%, rgba(249, 252, 255, 0.38) 100%);
  }

  .hero-art img {
    object-position: 56% center;
  }

  .hero-inner {
    padding: 56px 0 44px;
  }

  .hero-copy,
  .hero-summary,
  .hero-actions,
  .hero h1 {
    max-width: 100%;
  }

  h1 {
    font-size: 38px;
    overflow-wrap: anywhere;
  }

  .hero h1 {
    line-height: 1.12;
  }

  .hero h1 .mobile-title-line,
  .hero h1 .text-nowrap {
    display: block;
  }

  .hero-summary {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .section-title h2,
  .service-copy h2,
  .academy-layout h2,
  .contact-layout h2,
  .split-layout h2,
  .preview-layout h2,
  .site-footer h2 {
    font-size: 28px;
    line-height: 1.24;
  }

  .section-title {
    margin-bottom: 24px;
  }

  .section-title span,
  .service-copy p,
  .academy-layout p,
  .contact-layout p,
  .split-layout p:not(.eyebrow),
  .preview-layout p:not(.eyebrow),
  .site-footer p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button-primary,
  .hero-actions .button-secondary {
    width: 100%;
    min-width: 0;
  }

  .stat-row,
  .growth-line,
  .service-grid,
  .case-grid,
  .cooperation-grid,
  .route-grid,
  .loop-track,
  .evidence-layout,
  .matrix-account-row,
  .case-proof-card div,
  .case-metrics,
  .academy-flow,
  .academy-proof-grid,
  .about-org-grid,
  .about-loop,
  .about-support-grid,
  .about-timeline-list,
  .about-credential-grid,
  .about-ecosystem-grid,
  .case-method-grid,
  .case-evidence-grid,
  .cooperation-model,
  .cooperation-flow,
  .region-grid,
  .region-grid.detailed,
  .pain-grid,
  .academy-detail,
  .anchor-mocha-grid,
  .local-service-grid,
  .two-image-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 52px 0 54px;
  }

  .home-hero {
    padding-bottom: 40px;
  }

  .home-hero-inner {
    padding: 48px 0 18px;
  }

  .hero-visual {
    justify-items: center;
    margin: 8px 0 0;
  }

  .chapter-dots {
    display: none;
  }

  .home-stat-rail {
    margin-top: 6px;
  }

  .home-stat-rail article {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 88px;
    padding: 18px 20px;
  }

  .home-stat-rail article::after {
    right: 20px;
    bottom: 0;
    left: 20px;
    top: auto;
    width: auto;
    height: 1px;
  }

  .home-stat-rail article:last-child::after {
    display: none;
  }

  .home-stat-rail strong {
    font-size: 28px;
  }

  .chapter-title,
  .chapter-title.compact {
    margin-bottom: 24px;
  }

  .chapter-title h2 {
    font-size: 28px;
    line-height: 1.24;
  }

  .chapter-title > span {
    font-size: 15px;
    line-height: 1.72;
  }

  .site-map-grid a,
  .loop-track article {
    min-height: auto;
  }

  .loop-track {
    gap: 12px;
    margin-top: 20px;
  }

  .loop-track article {
    padding: 20px;
  }

  .resource-link {
    margin-top: 18px;
  }

  .evidence-layout {
    gap: 16px;
  }

  .case-proof-card {
    padding: 22px;
  }

  .case-proof-card h3 {
    font-size: 24px;
  }

  .matrix-map {
    padding: 20px;
  }

  .matrix-head {
    grid-template-columns: 1fr;
  }

  .page-hero-inner,
  .page-hero-inner.no-media {
    width: min(1180px, calc(100% - 28px));
    min-width: 0;
    max-width: 100%;
  }

  .page-hero h1,
  .news-detail h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .page-hero-inner {
    gap: 28px;
  }

  .split-layout,
  .preview-layout {
    gap: 30px;
  }

  .route-grid,
  .region-grid,
  .pain-grid,
  .academy-detail,
  .news-list,
  .two-image-grid {
    gap: 12px;
  }

  .route-grid a {
    min-height: auto;
    padding: 22px;
  }

  .region-card {
    min-height: auto;
    padding: 22px;
  }

  .route-grid span,
  .region-card span,
  .pain-grid span,
  .academy-detail span {
    font-size: 26px;
  }

  .route-grid h3,
  .region-card h3,
  .pain-grid h3,
  .academy-detail h3 {
    margin-top: 16px;
    font-size: 20px;
  }

  .route-grid p,
  .region-card p,
  .pain-grid p,
  .academy-detail p {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.62;
  }

  .academy-flow article,
  .academy-proof-card {
    min-height: auto;
    padding: 22px;
  }

  .academy-card-head strong,
  .academy-engine strong {
    font-size: 21px;
  }

  .academy-proof-table div,
  .academy-path-list div,
  .academy-engine {
    grid-template-columns: 1fr;
  }

  .academy-path-list span {
    grid-row: auto;
  }

  .about-org-grid article,
  .about-loop article,
  .about-support-grid article,
  .about-timeline-list article,
  .about-credential-grid article,
  .about-ecosystem-grid article,
  .about-cert-card {
    min-height: auto;
    padding: 22px;
  }

  .about-loop {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-credential-grid article {
    grid-template-columns: 1fr;
  }

  .about-credential-grid span {
    grid-row: auto;
  }

  .about-proof-layout h2,
  .about-ecosystem-layout h2 {
    font-size: 28px;
    line-height: 1.24;
  }

  .about-cert-card > span {
    font-size: 52px;
  }

  .about-cert-card > strong {
    font-size: 24px;
  }

  .case-method-grid article,
  .case-evidence-grid article,
  .cooperation-model article {
    min-height: auto;
    padding: 22px;
  }

  .case-evidence-grid strong {
    font-size: 30px;
  }

  .cooperation-flow {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .region-card strong {
    margin-top: 14px;
    font-size: 13px;
  }

  .region-detail-layout,
  .faq-layout {
    gap: 24px;
  }

  .region-detail-layout h2 {
    font-size: 28px;
    line-height: 1.24;
  }

  .local-service-grid {
    margin-top: 20px;
  }

  .local-service-grid article {
    min-height: auto;
    padding: 18px;
  }

  .local-service-grid p {
    margin-top: 10px;
    font-size: 15px;
  }

  .region-facts,
  .faq-list article {
    padding: 20px;
  }

  .news-preview {
    padding: 22px;
  }

  .news-preview a {
    gap: 6px;
    padding: 16px 0;
  }

  .news-preview strong {
    font-size: 17px;
    line-height: 1.42;
  }

  .case-grid.detailed,
  .news-card {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .news-card img {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }

  .news-card div {
    width: 100%;
    min-width: 0;
    padding: 20px 20px 22px;
  }

  .news-card p {
    gap: 8px;
    min-width: 0;
  }

  .news-card h2 {
    font-size: 25px;
    line-height: 1.28;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .news-card strong {
    font-size: 15px;
    line-height: 1.72;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .mocha-card {
    min-height: auto;
  }

  .mocha-card-top {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .mocha-portrait {
    width: 82px;
    height: 104px;
  }

  .image-tools {
    grid-template-columns: 1fr;
  }

  .image-tools.portrait {
    grid-template-columns: 1fr;
  }

  .image-tools img,
  .image-tools > span {
    width: 100%;
    max-width: 260px;
  }

  .image-tools.portrait img,
  .image-tools.portrait > span {
    width: 100%;
    max-width: 180px;
  }

  .metric-row,
  .metric-fields {
    grid-template-columns: 1fr;
  }

  .band {
    padding: 52px 0;
  }

  .back-top {
    display: none;
  }

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .admin-layout {
    width: min(100% - 20px, 1320px);
  }

  .admin-panel {
    padding: 18px;
  }

  .admin-hero-preview {
    min-height: auto;
    padding: 22px;
  }

  .admin-hero-preview h3 {
    font-size: 30px;
  }

  .admin-preview-summary {
    font-size: 14px;
  }

  .case-modal {
    padding: 14px;
  }

  .case-modal figcaption {
    padding: 18px;
  }

  .modal-close {
    top: 14px;
    right: 14px;
  }
}

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

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

  :where(html.js-enabled [data-reveal]) {
    opacity: 1;
    transform: none;
  }
}
