:root {
  --page: #061a19;
  --bg: #071010;
  --bg-deep: #030808;
  --panel: rgba(12, 29, 31, 0.86);
  --panel-soft: rgba(14, 35, 37, 0.72);
  --surface-cool: #d9e0e4;
  --surface-cool-soft: #e5eaed;
  --surface-cool-raised: #eef2f4;
  --line: rgba(77, 224, 216, 0.16);
  --line-strong: rgba(77, 224, 216, 0.32);
  --text: #f4fbf8;
  --muted: #a8bab8;
  --soft: #748886;
  --brand: #25a89f;
  --mint: #4de0d8;
  --gold: #f5cf47;
  --orange: #ff7a1c;
  --rose: #e91e58;
  --violet: #403a58;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --site-frame-width: min(1728px, calc(100% - 32px));
  --site-header-height: 84px;
}

* {
  box-sizing: border-box;
}

[hidden],
.is-search-hidden {
  display: none !important;
}

html {
  background: var(--page);
  color-scheme: dark;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 7% 0%, rgba(77, 224, 216, 0.14), transparent 24rem),
    radial-gradient(circle at 92% 14%, rgba(245, 207, 71, 0.05), transparent 22rem),
    linear-gradient(180deg, #09201f 0%, #061313 44%, #030808 100%);
}

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

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

.site-shell {
  width: var(--site-frame-width);
  margin: 0 auto 32px;
  overflow: visible;
  border: 1px solid rgba(77, 224, 216, 0.14);
  border-radius: 0 0 34px 34px;
  padding-top: var(--site-header-height);
  background:
    linear-gradient(90deg, rgba(77, 224, 216, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(77, 224, 216, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, #071011 0%, #06100f 100%);
  background-size: 96px 96px, 96px 96px, auto;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.46);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
  width: 100%;
  padding: 18px clamp(28px, 3.2vw, 52px);
  background: rgba(5, 13, 14, 0.86);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.scrolled {
  border-color: rgba(77, 224, 216, 0.18);
  background: rgba(5, 13, 14, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
}

.brand-logo {
  width: clamp(178px, 13vw, 238px);
  height: auto;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: conic-gradient(from 130deg, var(--mint), var(--gold), var(--orange), var(--rose), var(--violet), var(--mint));
}

.brand-copy strong,
.brand-copy small,
.brand-english strong,
.brand-english small {
  display: block;
}

.brand-english strong {
  font-size: 16px;
  letter-spacing: 0.26em;
}

.brand-english small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.brand-copy strong {
  font-size: 21px;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.1vw, 22px);
  align-items: center;
  color: #cad7d4;
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 700;
  min-width: 0;
}

.nav-item {
  position: relative;
}

.nav-submenu-toggle,
.mobile-nav-backdrop {
  display: none;
}

.desktop-nav .nav-main-link,
.mobile-nav .nav-main-link,
.mobile-nav a {
  color: #d0dcda;
  transition: color 0.2s ease;
  white-space: nowrap;
  flex: 0 0 auto;
}

.desktop-nav .nav-main-link.active,
.desktop-nav .nav-main-link:hover,
.mobile-nav a.active {
  color: var(--mint);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 208px;
  gap: 4px;
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 18px;
  padding: 12px;
  background: rgba(5, 17, 18, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-menu a {
  border-radius: 12px;
  padding: 10px 12px;
  color: #d9e6e3;
  font-size: 14px;
  line-height: 1.3;
}

.nav-menu a:hover {
  color: var(--mint);
  background: rgba(77, 224, 216, 0.08);
}

.nav-item-has-menu:hover .nav-menu,
.nav-item-has-menu:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-phone {
  position: relative;
}

.nav-phone-trigger {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  border: 1px solid rgba(77, 224, 216, 0.22);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--mint);
  background: rgba(77, 224, 216, 0.08);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.nav-phone-popover {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 31;
  display: grid;
  width: 280px;
  gap: 10px;
  border: 1px solid rgba(77, 224, 216, 0.2);
  border-radius: 20px;
  padding: 18px;
  background: rgba(5, 17, 18, 0.98);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-phone:hover .nav-phone-popover,
.nav-phone:focus-within .nav-phone-popover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-phone-popover span,
.nav-phone-popover small {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.5;
}

.nav-phone-popover strong {
  color: #f6fffc;
  font-size: 26px;
  line-height: 1.1;
}

.nav-phone-actions {
  display: flex;
  gap: 8px;
}

.nav-phone-actions a,
.nav-phone-actions button {
  flex: 1;
  border: 1px solid rgba(77, 224, 216, 0.24);
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--mint);
  background: rgba(77, 224, 216, 0.08);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(77, 224, 216, 0.32);
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
}

.nav-cta {
  font-size: clamp(16px, 1.04vw, 18px);
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  color: #06201e;
  background: linear-gradient(135deg, #54ebe2, #37cfc5);
  box-shadow: 0 18px 52px rgba(37, 168, 159, 0.28);
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.10);
}

.menu-button,
.mobile-nav {
  display: none;
}

.mobile-nav-cta {
  border: 1px solid rgba(77, 224, 216, 0.32);
  border-radius: 999px;
  padding: 13px 18px;
  color: #06201e !important;
  background: var(--mint);
  font-weight: 900;
}

.section {
  width: min(1608px, calc(100% - 88px));
  margin: 0 auto;
  padding: clamp(88px, 7vw, 132px) 0;
}

main > .section:not(.hero) {
  position: relative;
}

main > .section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 224, 216, 0.24), transparent);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  width: 100%;
  min-height: 760px;
  padding: clamp(128px, 10vw, 158px) clamp(42px, 5vw, 72px) 54px;
  isolation: isolate;
}

.hero-no-visual {
  grid-template-columns: minmax(0, 1fr);
}

.hero-no-visual .hero-copy {
  max-width: 1040px;
}

.hero-no-visual .hero-subtitle {
  max-width: 980px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero::before {
  background-image:
    linear-gradient(90deg, rgba(3, 8, 8, 0.92) 0%, rgba(3, 8, 8, 0.72) 38%, rgba(3, 8, 8, 0.40) 100%),
    linear-gradient(180deg, rgba(3, 8, 8, 0.08) 0%, rgba(3, 8, 8, 0.0) 38%, rgba(3, 8, 8, 0.90) 100%),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: saturate(0.92) contrast(0.92);
}

.hero::after {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 56%, rgba(77, 224, 216, 0.18), transparent 28rem),
    linear-gradient(180deg, transparent 0%, rgba(7, 16, 16, 0.82) 92%);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(40px, 3.7vw, 60px);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 span {
  color: inherit;
}

.hero-title-line {
  display: block;
}

.hero-title-main {
  color: var(--mint);
}

.mobile-title-break {
  display: none;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 2.35vw, 42px);
  line-height: 1.14;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(22px, 1.52vw, 28px);
  line-height: 1.22;
  letter-spacing: 0;
}

.hero-subtitle,
.page-subtitle {
  max-width: 820px;
  color: #d5dfdc;
  font-size: clamp(18px, 1.38vw, 22px);
  line-height: 1.68;
  font-weight: 720;
}

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

.hero-proof,
.quote-card {
  margin: 0;
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 22px;
  background: rgba(7, 20, 22, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.hero-proof {
  max-width: 760px;
  margin-top: 30px;
  padding: 24px 28px;
  backdrop-filter: blur(18px);
}

.quote-label {
  display: inline-flex;
  margin-bottom: 14px;
  border: 1px solid rgba(77, 224, 216, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--mint);
  background: rgba(77, 224, 216, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hero-proof blockquote,
.quote-card blockquote {
  margin: 0;
  color: #edf8f5;
  font-weight: 760;
  line-height: 1.72;
}

.hero-proof figcaption,
.quote-card figcaption {
  margin-top: 14px;
  color: var(--mint);
  font-size: 14px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  align-self: center;
  min-height: 0;
}

.hero-visual img {
  width: min(560px, 100%);
  margin-left: auto;
  height: clamp(320px, 28vw, 440px);
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-metric-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: 24px;
  background: rgba(77, 224, 216, 0.14);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
}

.hero-metric-strip article {
  min-height: 116px;
  padding: clamp(20px, 2vw, 28px);
  background: rgba(8, 24, 26, 0.86);
}

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

.hero-metric-strip strong {
  color: #f7fffc;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
}

.hero-metric-strip span {
  margin-top: 10px;
  color: var(--muted);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 760;
  line-height: 1.55;
}

.metric-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  width: min(520px, 92%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(20, 29, 31, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.metric-card article {
  min-height: 122px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 42px;
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-weight: 700;
}

.hero-values {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.hero-values article,
.detail-panel,
.content-card,
.service-group,
.proof,
.admin-form,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.07), transparent 18rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.82), rgba(8, 22, 24, 0.74));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.30);
}

.hero-values article {
  min-height: 150px;
  padding: 26px;
  backdrop-filter: blur(18px);
}

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

.hero-values strong {
  margin-bottom: 18px;
  font-size: clamp(24px, 1.8vw, 30px);
}

.hero-values span {
  color: var(--muted);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.75;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(77, 224, 216, 0.12);
}

.section-head > .eyebrow,
.page-hero > .eyebrow,
.service-system-hero .eyebrow {
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(77, 224, 216, 0.24);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(77, 224, 216, 0.07);
  color: #78fff6;
  font-size: clamp(17px, 1.18vw, 22px);
  line-height: 1.2;
  letter-spacing: 0.2em;
  box-shadow: 0 14px 46px rgba(77, 224, 216, 0.08);
}

.hero h1,
.page-hero h1,
.section-head h2,
.delivery-intro h2 {
  max-width: 1080px;
  font-size: clamp(34px, 2.9vw, 52px);
  line-height: 1.13;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(42px, 3.8vw, 60px);
}

.section-head h2,
.delivery-intro h2 {
  max-width: 980px;
  font-size: clamp(31px, 2.45vw, 44px);
  white-space: normal;
}

.section-summary {
  max-width: 1120px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.22vw, 20px);
  line-height: 1.72;
}

.advantages-section {
  position: relative;
}

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

.advantage-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(24px, 2.2vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(77, 224, 216, 0.13), transparent 22rem),
    linear-gradient(135deg, rgba(15, 45, 45, 0.88), rgba(7, 20, 22, 0.78));
  box-shadow: 0 16px 58px rgba(0, 0, 0, 0.24);
}

.advantage-copy {
  min-height: 0;
}

.advantage-copy h3 {
  margin: 10px 0 16px;
  color: #f6fffc;
  font-size: clamp(23px, 1.65vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.advantage-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: #c4d4d1;
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.78;
  font-weight: 680;
}

.advantage-points {
  display: grid;
  gap: 12px;
}

.advantage-points section {
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.advantage-points h4 {
  margin: 0 0 10px;
  color: #f4fffc;
  font-size: 18px;
  line-height: 1.28;
}

.advantage-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.advantage-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.delivery-section {
  position: relative;
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 28px;
}

.delivery-intro {
  max-width: 980px;
}

.delivery-intro p:not(.eyebrow) {
  max-width: 920px;
  margin: 24px 0 0;
  color: #b9cac7;
  font-size: clamp(17px, 1.22vw, 21px);
  line-height: 1.78;
  font-weight: 680;
}

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

.quote-card {
  padding: 22px;
}

.quote-card blockquote {
  color: #dbe9e6;
  font-size: 15px;
}

.mechanism-grid,
.scenario-evidence-grid {
  display: grid;
  gap: 22px;
}

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

.scenario-evidence-grid {
  grid-template-columns: repeat(4, 1fr);
}

.mechanism-card,
.scenario-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(15, 45, 45, 0.86), rgba(7, 20, 22, 0.78));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.28);
}

.mechanism-card {
  min-height: 270px;
  padding: 30px;
}

.mechanism-card span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.mechanism-card h3,
.scenario-card h3 {
  margin: 18px 0 16px;
}

.mechanism-card p,
.scenario-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 16px;
}

.scenario-card {
  min-height: 214px;
  padding: 28px;
}

.scenario-card h3 {
  color: #f7fffc;
  font-size: clamp(24px, 1.8vw, 30px);
}

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

.home-scenario-card {
  display: grid;
  align-content: start;
  min-height: 158px;
  padding: 22px;
}

.home-scenario-card h3 {
  margin: 0 0 14px;
  font-size: clamp(21px, 1.36vw, 26px);
}

.home-scenario-card p {
  margin: 0;
}

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

.product-matrix {
  align-items: stretch;
  gap: 14px;
  grid-auto-rows: 1fr;
}

.service-group {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 18px 20px;
  background:
    radial-gradient(circle at 14% 0%, rgba(77, 224, 216, 0.13), transparent 15rem),
    linear-gradient(155deg, rgba(13, 43, 43, 0.84), rgba(7, 19, 20, 0.82));
}

.service-group::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--mint), rgba(245, 207, 71, 0.72), transparent);
  opacity: 0.75;
}

.service-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.service-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(77, 224, 216, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 22%, rgba(245, 207, 71, 0.18), transparent 1.6rem),
    linear-gradient(145deg, rgba(77, 224, 216, 0.18), rgba(37, 168, 159, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 16px 36px rgba(0, 0, 0, 0.20);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: #79fff4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  border: 1px solid rgba(245, 207, 71, 0.24);
  border-radius: 999px;
  background: rgba(245, 207, 71, 0.08);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-group h3 {
  max-width: none;
  margin: 13px 0 8px;
  font-size: clamp(25px, 1.65vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.service-group span {
  color: var(--mint);
  font-weight: 900;
}

.service-group .service-index {
  color: var(--gold);
}

.service-group p,
.content-card p,
.detail-panel p,
.site-footer p,
.admin-shell p {
  color: var(--muted);
  line-height: 1.78;
}

.service-group p {
  max-width: none;
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.62;
}

.chips,
.tag-row,
.scenario-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips a,
.tag-row span,
.scenario-cloud a {
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: #86eee7;
  background: rgba(37, 168, 159, 0.13);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.service-group .chips {
  align-self: stretch;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(77, 224, 216, 0.12);
}

.service-group .chips a {
  padding: 8px 13px;
  background: rgba(77, 224, 216, 0.08);
  color: #b8fff9;
  font-size: clamp(15px, 0.98vw, 18px);
  letter-spacing: 0.01em;
}

.product-section {
  padding-top: clamp(70px, 5.8vw, 104px);
  padding-bottom: clamp(70px, 5.8vw, 104px);
}

.product-more {
  width: 100%;
  margin-top: 4px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
}

.product-more summary {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(245, 207, 71, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  color: #f3d869;
  background: rgba(245, 207, 71, 0.08);
  font-size: clamp(13px, 0.86vw, 15px);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.product-more summary::-webkit-details-marker {
  display: none;
}

.product-more p {
  margin: 10px 0 0;
  color: #b9cbc8;
  font-size: 13px;
  line-height: 1.65;
}

.split {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 36px;
}

.scene-panel {
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 54px;
  background: linear-gradient(135deg, rgba(12, 51, 51, 0.92), rgba(6, 21, 22, 0.76));
}

.scenario-cloud {
  align-content: start;
}

.scenario-cloud a {
  padding: 13px 18px;
}

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

.card-grid.wide {
  grid-template-columns: repeat(4, 1fr);
}

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

.home-case-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

.home-case-card .card-image {
  height: 190px;
  margin: -22px -22px 20px;
}

.home-case-card .eyebrow {
  margin-bottom: 12px;
  letter-spacing: 0.22em;
}

.home-case-card h3 {
  display: -webkit-box;
  margin: 0 0 10px;
  min-height: 4.02em;
  max-height: 4.02em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: clamp(14px, 0.86vw, 18px);
  line-height: 1.34;
}

.home-case-card time {
  margin: 0 0 14px;
  line-height: 1.2;
}

.home-case-card > p:not(.eyebrow) {
  display: -webkit-box;
  min-height: 3.5em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 15px;
}

.home-project-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-project-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(77, 224, 216, 0.11), transparent 18rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.82), rgba(8, 22, 24, 0.74));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.home-project-card:hover,
.home-project-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(77, 224, 216, 0.34);
  background:
    radial-gradient(circle at 10% 0%, rgba(77, 224, 216, 0.17), transparent 18rem),
    linear-gradient(145deg, rgba(18, 47, 49, 0.88), rgba(8, 22, 24, 0.78));
}

.home-project-card .card-image {
  height: 220px;
  margin: -24px -24px 22px;
}

.home-project-card .eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  letter-spacing: 0.2em;
}

.home-project-card h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 1.5vw, 28px);
}

.home-project-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.official-stats-section {
  position: relative;
}

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

.official-stat-card {
  grid-column: span 3;
  display: grid;
  align-content: start;
  min-height: 206px;
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: 26px;
  padding: 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(77, 224, 216, 0.14), transparent 13rem),
    linear-gradient(145deg, rgba(16, 42, 42, 0.82), rgba(7, 22, 23, 0.76));
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.45s ease;
}

.official-stat-card:nth-child(n + 5) {
  grid-column: span 4;
}

.official-stat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.official-stat-card strong {
  display: block;
  color: #f7fffc;
  font-size: clamp(34px, 2.55vw, 48px);
  line-height: 1.05;
}

.official-stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--mint);
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 920;
}

.official-stat-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.home-client-section {
  padding-top: clamp(42px, 4vw, 70px);
}

.case-browser {
  padding-top: 40px;
}

.case-tabs {
  display: flex;
  gap: clamp(18px, 2.4vw, 42px);
  overflow-x: auto;
  margin-bottom: 52px;
  border-bottom: 1px dashed rgba(77, 224, 216, 0.26);
  padding: 0 0 22px;
  scrollbar-width: none;
}

.case-tabs::-webkit-scrollbar {
  display: none;
}

.case-tab {
  flex: 0 0 auto;
  border: 0;
  padding: 0;
  color: #d7e3e0;
  background: transparent;
  font: inherit;
  font-size: clamp(19px, 1.4vw, 26px);
  font-weight: 900;
  cursor: pointer;
  transition: color 0.2s ease;
}

.case-tab.active,
.case-tab:hover {
  color: var(--mint);
}

.case-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.content-card {
  overflow: hidden;
  padding: 28px;
}

.content-card h3 {
  font-size: clamp(22px, 1.55vw, 28px);
}

.content-card time {
  display: block;
  margin: -8px 0 16px;
  color: var(--soft);
  font-size: 15px;
  font-weight: 800;
}

.content-card.slim {
  min-height: 260px;
}

.report-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.industry-toolbar {
  position: sticky;
  top: calc(var(--site-header-height) + 12px);
  z-index: 16;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(5, 17, 18, 0.94);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.site-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  min-width: min(100%, 300px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.site-search button {
  min-width: 76px;
  border: 1px solid rgba(77, 224, 216, 0.32);
  border-radius: 999px;
  padding: 0 18px;
  color: #06201e;
  background: var(--mint);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-search input {
  width: 100%;
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 999px;
  padding: 13px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  font: inherit;
  outline: none;
}

.site-search input:focus {
  border-color: rgba(77, 224, 216, 0.46);
  box-shadow: 0 0 0 3px rgba(77, 224, 216, 0.10);
}

.industry-search {
  flex: 0 1 340px;
}

.industry-report-grid {
  display: grid;
  gap: 18px;
}

.industry-report-grid .report-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  min-height: 0;
}

.industry-report-grid .report-card:not(:has(.card-image)) {
  grid-template-columns: 1fr;
}

.industry-report-grid .report-card .card-image {
  height: 100%;
  min-height: 210px;
  margin: -28px 24px -28px -28px;
}

.report-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.report-card-meta .eyebrow {
  margin: 0;
}

.report-card-meta time {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  font-weight: 850;
}

.report-card h3 {
  min-height: 2.45em;
}

.report-card > p:not(.eyebrow) {
  flex: 1 1 auto;
}

.report-card .tag-row {
  margin-top: 4px;
}

.industry-category-section,
.industry-latest-section {
  padding-top: 56px;
}

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

.insight-category-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: var(--radius);
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(77, 224, 216, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.045);
  color: var(--text);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.insight-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 224, 216, 0.34);
  background:
    linear-gradient(135deg, rgba(77, 224, 216, 0.17), transparent 42%),
    rgba(255, 255, 255, 0.065);
}

.insight-category-card span {
  width: fit-content;
  border: 1px solid rgba(245, 207, 71, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--gold);
  background: rgba(245, 207, 71, 0.08);
  font-size: 13px;
  font-weight: 850;
}

.insight-category-card h2 {
  margin: 44px 0 12px;
  font-size: clamp(24px, 1.7vw, 32px);
}

.insight-category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.industry-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-image {
  margin: -28px -28px 26px;
  height: 270px;
  overflow: hidden;
}

.case-feature-grid .card-image {
  height: 430px;
}

.case-filter-grid .card-image {
  height: auto;
  background: rgba(255, 255, 255, 0.035);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.report-card .card-image {
  height: 240px;
  background: rgba(255, 255, 255, 0.035);
}

.report-card .card-image img {
  object-fit: cover;
}

.report-card-placeholder {
  display: flex;
  align-items: end;
  height: 240px;
  margin: -28px -28px 26px;
  padding: 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(77, 224, 216, 0.12);
  background:
    linear-gradient(135deg, rgba(77, 224, 216, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(16, 44, 45, 0.92), rgba(6, 20, 21, 0.88));
}

.report-card-placeholder span {
  border: 1px solid rgba(245, 207, 71, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold);
  background: rgba(245, 207, 71, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.case-filter-grid .card-image img {
  height: auto;
  object-fit: contain;
}

.content-card:hover .card-image img {
  transform: scale(1.035);
}

.case-filter-grid .content-card:hover .card-image img {
  transform: none;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--mint);
  font-weight: 900;
}

.proof {
  padding: 56px;
}

.credential-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1.28fr);
  gap: 24px;
  align-items: stretch;
}

.credential-showcase.compact {
  grid-template-columns: minmax(300px, 0.68fr) minmax(460px, 1.32fr);
}

.credential-list {
  display: grid;
  align-content: stretch;
  padding: 34px;
}

.credential-carousel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 8%, rgba(77, 224, 216, 0.10), transparent 18rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.88), rgba(8, 22, 24, 0.78));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.30);
}

.credential-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.credential-track::-webkit-scrollbar {
  display: none;
}

.credential-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  padding: 22px 24px 16px;
}

.credential-slide img {
  display: block;
  width: 100%;
  height: min(34vw, 380px);
  min-height: 300px;
  object-fit: contain;
  border-radius: 20px;
  background: #f7faf9;
  box-shadow: inset 0 0 0 1px rgba(4, 15, 15, 0.08);
}

.credential-slide figcaption {
  margin-top: 14px;
  color: #effffb;
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 900;
}

.credential-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px 22px;
}

.credential-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.credential-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border-color: rgba(77, 224, 216, 0.34);
  background: rgba(77, 224, 216, 0.18);
  cursor: pointer;
}

.credential-dots button.active {
  width: 28px;
  background: var(--mint);
}

.proof ul,
.detail-panel ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof li,
.detail-panel li {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px;
  color: #edf7f4;
  background: rgba(255, 255, 255, 0.04);
}

.credential-list ul {
  gap: 14px;
  height: 100%;
  grid-template-rows: repeat(2, minmax(92px, 1fr));
}

.credential-list li {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 16px 18px;
  border-radius: 18px;
  line-height: 1.45;
}

.credential-metrics article {
  display: grid;
  align-content: start;
  gap: 10px;
}

.credential-metrics p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.62;
}

.credential-evidence-grid,
.recognition-grid,
.credential-project-grid {
  display: grid;
  gap: 18px;
}

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

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

.award-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: 28px;
  padding: clamp(22px, 2.4vw, 34px);
  background:
    radial-gradient(circle at 10% 0%, rgba(77, 224, 216, 0.12), transparent 22rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.78), rgba(8, 22, 24, 0.72));
}

.award-wall span {
  border: 1px solid rgba(245, 207, 71, 0.22);
  border-radius: 999px;
  padding: 10px 14px;
  color: #f1dd7a;
  background: rgba(245, 207, 71, 0.08);
  font-size: clamp(14px, 0.95vw, 16px);
  font-weight: 880;
}

.credential-evidence-grid article,
.recognition-card,
.credential-project-grid article {
  display: grid;
  gap: 14px;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.08), transparent 15rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.credential-evidence-grid h3,
.recognition-card h3,
.credential-project-grid h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.22;
}

.credential-evidence-grid p,
.recognition-card p,
.credential-project-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.recognition-card {
  align-content: start;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.recognition-card:hover {
  border-color: rgba(77, 224, 216, 0.36);
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.14), transparent 15rem),
    linear-gradient(145deg, rgba(18, 46, 48, 0.82), rgba(8, 22, 24, 0.74));
  transform: translateY(-3px);
}

.recognition-card time {
  width: fit-content;
  border: 1px solid rgba(245, 207, 71, 0.26);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold);
  background: rgba(245, 207, 71, 0.08);
  font-size: 13px;
  font-weight: 950;
}

.recognition-card span {
  margin-top: auto;
  color: var(--mint);
  font-weight: 900;
}

.honor-card {
  overflow: hidden;
  padding: 0;
}

.honor-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.honor-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.honor-card:hover .honor-card-image img {
  transform: scale(1.035);
}

.honor-card-copy {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.credential-visual-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(22px, 2.4vw, 38px);
  margin-top: clamp(30px, 3vw, 48px);
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 32px;
  padding: clamp(20px, 2.6vw, 38px);
  background:
    radial-gradient(circle at 8% 0%, rgba(77, 224, 216, 0.10), transparent 22rem),
    linear-gradient(145deg, rgba(9, 27, 29, 0.78), rgba(5, 16, 17, 0.78));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.25);
}

.credential-feature-story,
.credential-proof-thumbs a {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.08), transparent 16rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.20);
}

.credential-feature-story {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  min-height: clamp(390px, 35vw, 540px);
}

.credential-feature-story img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.credential-feature-story > div {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 3vw, 46px);
}

.credential-feature-story .eyebrow,
.news-list-item .eyebrow {
  margin: 0;
  color: var(--mint);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.2em;
}

.credential-feature-story h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(28px, 2.15vw, 40px);
  line-height: 1.18;
}

.credential-feature-story p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.74;
}

.credential-proof-thumbs {
  display: grid;
  gap: 18px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.credential-proof-thumbs a {
  display: grid;
  grid-template-columns: minmax(118px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.5vw, 22px);
  padding: clamp(14px, 1.5vw, 22px);
}

.credential-proof-thumbs img {
  width: 100%;
  height: clamp(86px, 7vw, 112px);
  border-radius: 18px;
  object-fit: cover;
}

.credential-proof-thumbs strong,
.credential-proof-thumbs span {
  display: block;
}

.credential-proof-thumbs strong {
  color: #f6fffc;
  font-size: 18px;
  line-height: 1.35;
}

.credential-proof-thumbs span {
  margin-top: 8px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.trust-section {
  scroll-margin-top: calc(var(--site-header-height) + 24px);
}

.trust-hero .page-subtitle {
  max-width: none;
}

.trust-hero-summary {
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.22vw, 21px);
  line-height: 1.78;
}

.trust-section .section-head {
  width: 100%;
}

.trust-section .section-head h2,
.trust-section .section-summary {
  width: 100%;
  max-width: none;
}

.trust-section .section-summary,
.trust-hero-summary {
  text-wrap: pretty;
}

.trust-foundation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.trust-foundation-grid article:nth-child(3) {
  grid-column: auto;
}

.trust-tech-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
}

.trust-foundation-grid article,
.trust-tech-grid article,
.trust-report-card {
  min-height: 100%;
}

.trust-delivery-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.trust-delivery-flow article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  align-content: start;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.08), transparent 15rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
}

.trust-delivery-flow span {
  width: fit-content;
  border: 1px solid rgba(77, 224, 216, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--mint);
  background: rgba(77, 224, 216, 0.08);
  font-size: 13px;
  font-weight: 950;
}

.trust-delivery-flow h3,
.trust-block-head h3,
.trust-report-card h3 {
  margin: 0;
  color: #f6fffc;
}

.trust-delivery-flow h3 {
  font-size: clamp(20px, 1.35vw, 25px);
}

.trust-delivery-flow p,
.trust-block-head p,
.trust-report-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.trust-delivery-visual {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 18px 24px;
  align-items: center;
  min-height: 0;
  border: 1px solid rgba(77, 224, 216, 0.14);
  border-radius: 24px;
  padding: clamp(22px, 2.4vw, 32px);
  background:
    radial-gradient(circle at 18% 16%, rgba(77, 224, 216, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(9, 27, 29, 0.78), rgba(5, 16, 17, 0.72));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.20);
}

.trust-delivery-visual-head {
  max-width: 100%;
}

.trust-delivery-visual-head strong {
  display: block;
  color: #f6fffc;
  font-size: clamp(22px, 1.7vw, 32px);
  line-height: 1.25;
}

.trust-delivery-visual-head p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.7;
}

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

.trust-delivery-steps span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px solid rgba(77, 224, 216, 0.25);
  border-radius: 18px;
  color: #f6fffc;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  font-size: clamp(17px, 1.18vw, 21px);
  font-weight: 950;
  text-align: center;
}

.trust-delivery-steps span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 12px;
  height: 1px;
  background: rgba(77, 224, 216, 0.32);
}

.trust-delivery-support {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.trust-delivery-support span {
  border: 1px solid rgba(77, 224, 216, 0.14);
  border-radius: 14px;
  padding: 12px 10px;
  color: #b9d4d0;
  background: rgba(77, 224, 216, 0.045);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.trust-industry-layout {
  display: grid;
  gap: clamp(28px, 3vw, 46px);
}

.trust-industry-block {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: 30px;
  padding: clamp(22px, 2.8vw, 38px);
  background:
    radial-gradient(circle at 10% 0%, rgba(77, 224, 216, 0.10), transparent 22rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.72), rgba(8, 22, 24, 0.70));
}

.trust-block-head {
  display: grid;
  gap: 10px;
  max-width: 880px;
}

.trust-block-head h3 {
  font-size: clamp(25px, 1.9vw, 34px);
}

.trust-recognition-carousel {
  display: grid;
  gap: 18px;
}

.trust-recognition-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.trust-recognition-track::-webkit-scrollbar {
  display: none;
}

.trust-recognition-slide {
  flex: 0 0 calc((100% - 36px) / 3);
  scroll-snap-align: start;
  margin: 0;
}

.trust-recognition-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.20);
  min-height: 0;
}

.trust-recognition-card figure {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  padding: clamp(14px, 1.8vw, 24px);
  overflow: hidden;
  background: #0b1117;
}

.trust-recognition-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-recognition-card strong {
  display: -webkit-box;
  min-height: 3.2em;
  padding: 14px 18px 18px;
  overflow: hidden;
  color: #f6fffc;
  font-size: clamp(16px, 1.08vw, 19px);
  font-weight: 920;
  line-height: 1.55;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.trust-recognition-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.carousel-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-color: rgba(77, 224, 216, 0.28);
  border-radius: 999px;
  color: #f6fffc;
  background: rgba(77, 224, 216, 0.10);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

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

.trust-report-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.08), transparent 16rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  text-decoration: none;
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.20);
}

.trust-report-card figure {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
}

.trust-report-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-report-card > div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.trust-report-card h3 {
  font-size: clamp(20px, 1.35vw, 25px);
  line-height: 1.32;
}

.trust-report-card time {
  color: var(--soft);
  font-size: 14px;
  font-weight: 850;
}

.trust-report-actions {
  justify-content: flex-start;
  margin-top: 4px;
}

@media (min-width: 1181px) {
  .trust-hero,
  .trust-section {
    box-sizing: border-box;
    padding-right: 132px;
  }
}

.credential-project-grid {
  margin-top: 18px;
}

.news-feature-section {
  padding-top: 24px;
}

.news-list {
  display: grid;
  gap: 18px;
}

.news-list-item {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(20px, 2.4vw, 38px);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.08), transparent 16rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.78), rgba(8, 22, 24, 0.72));
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.news-list-item figure {
  margin: 0;
  min-height: 240px;
}

.news-list-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list-item > div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(24px, 2.6vw, 38px) clamp(24px, 3vw, 44px) clamp(24px, 2.6vw, 38px) 0;
}

.news-list-item h2 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(25px, 1.9vw, 34px);
  line-height: 1.2;
}

.news-list-item time {
  color: var(--soft);
  font-weight: 850;
}

.news-list-item p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.news-list-item span {
  width: fit-content;
  margin-top: 4px;
  color: var(--mint);
  font-weight: 900;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(26px, 3vw, 50px);
  align-items: start;
}

.news-detail-image,
.news-article-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.08), transparent 16rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.78), rgba(8, 22, 24, 0.72));
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.news-detail-image {
  position: sticky;
  top: 130px;
  overflow: hidden;
  margin: 0;
}

.news-detail-image img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
}

.news-detail-image figcaption {
  padding: 18px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.news-article-card {
  padding: clamp(28px, 3vw, 48px);
}

.news-article-card p {
  margin: 0 0 20px;
  color: #d6e5e2;
  font-size: clamp(17px, 1.12vw, 20px);
  line-height: 1.9;
}

.news-article-card .source-note {
  margin-top: 30px;
  border-top: 1px solid rgba(77, 224, 216, 0.12);
  padding-top: 18px;
  color: var(--soft);
  font-size: 15px;
}

.news-article-card .source-note a {
  color: var(--mint);
  font-weight: 900;
}

.news-reading-section {
  width: min(1120px, calc(100% - 88px));
}

.news-reading-card {
  border-radius: 22px;
  padding: clamp(34px, 5vw, 76px);
  color: #172221;
  background: #f7f8f4;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.news-reading-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  color: #52615f;
  font-size: 14px;
  font-weight: 900;
}

.news-reading-meta span {
  border: 1px solid rgba(23, 34, 33, 0.14);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(23, 34, 33, 0.04);
}

.news-reading-card p {
  max-width: 820px;
  margin: 0 auto 28px;
  color: #263331;
  font-size: clamp(18px, 1.18vw, 21px);
  line-height: 2;
}

.news-reading-card h2 {
  max-width: 820px;
  margin: 52px auto 18px;
  color: #162321;
  font-size: clamp(28px, 2vw, 38px);
  line-height: 1.25;
  letter-spacing: 0;
}

.news-reading-card h2:first-of-type {
  margin-top: 8px;
}

.news-reading-card ul {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto 30px;
  padding-left: 1.2em;
  color: #263331;
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.9;
}

.news-reading-card li::marker {
  color: #0c817a;
}

.news-inline-image {
  overflow: hidden;
  width: min(760px, 100%);
  margin: 34px auto;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 48px rgba(7, 16, 16, 0.13);
}

.news-inline-image.wide {
  width: min(900px, 100%);
}

.news-inline-image img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #ffffff;
}

.news-inline-image figcaption {
  padding: 12px 16px 14px;
  color: #61706d;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  background: #ffffff;
}

.article-source-note {
  max-width: 820px;
  margin-top: 44px;
  border-top: 1px solid rgba(23, 34, 33, 0.12);
  padding-top: 20px;
  color: #5a6866;
  font-size: 15px;
}

.article-related-links {
  max-width: 820px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(23, 34, 33, 0.12);
  padding-top: 26px;
}

.news-reading-card .article-related-links h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.article-related-links > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.article-related-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  border: 1px solid rgba(23, 34, 33, 0.13);
  border-radius: 8px;
  padding: 14px 16px;
  color: #172221;
  font-weight: 900;
  background: #ffffff;
}

.article-related-links a:hover {
  border-color: rgba(12, 129, 122, 0.5);
  color: #0c817a;
}

.article-related-links a span {
  flex: 0 0 auto;
  color: #61706d;
  font-size: 13px;
  font-weight: 700;
}

.news-image-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(900px, 100%);
  margin: 36px auto 0;
}

.news-image-gallery .news-inline-image {
  width: 100%;
  margin: 0;
}

.news-image-gallery .news-inline-image img {
  height: 280px;
  object-fit: cover;
}

@media (min-width: 1181px) {
  .news-detail-layout {
    width: min(1320px, calc(100% - 220px));
  }
}

.credential-cta {
  margin-bottom: clamp(70px, 6vw, 110px);
}

.credential-cta-copy {
  display: grid;
  flex: 1 1 760px;
  gap: 12px;
}

.credential-cta-copy p {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.12vw, 19px);
  line-height: 1.72;
}

.faq-list,
.home-faq-list {
  display: grid;
  gap: 12px;
}

.home-faq-shell {
  display: grid;
  gap: 22px;
  border: 1px solid rgba(213, 250, 244, 0.82);
  border-radius: 28px;
  padding: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(77, 224, 216, 0.26), transparent 20rem),
    linear-gradient(145deg, rgba(229, 234, 237, 0.96), rgba(214, 221, 225, 0.94));
  box-shadow: 0 22px 80px rgba(1, 18, 18, 0.26);
}

.home-faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-faq-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.home-faq-tab {
  display: inline-flex;
  width: auto;
  border: 1px solid rgba(5, 74, 70, 0.12);
  border-radius: 18px;
  padding: 14px 18px;
  color: #0a3130;
  background: rgba(229, 234, 237, 0.78);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.home-faq-tab:hover,
.home-faq-tab:focus-visible,
.home-faq-tab.active {
  border-color: rgba(37, 168, 159, 0.35);
  background: rgba(238, 242, 244, 0.96);
  box-shadow: 0 16px 34px rgba(4, 41, 39, 0.10);
}

.home-faq-tab.active {
  transform: none;
}

.home-faq-tab span {
  color: #098077;
  font-size: 20px;
  font-weight: 920;
}


.home-faq-panels {
  min-width: 0;
}

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

.home-faq-panel {
  border: 1px solid rgba(5, 74, 70, 0.10);
  border-radius: 24px;
  padding: 22px;
  background: rgba(229, 234, 237, 0.9);
  box-shadow: inset 0 1px 0 rgba(248, 251, 252, 0.58);
}

.home-faq-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(5, 74, 70, 0.10);
}

.home-faq-panel-head p {
  margin: 0;
  color: #062726;
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 920;
}

.home-faq-panel-head span {
  color: #66817e;
  font-size: 14px;
}

.home-faq-item {
  display: grid;
  gap: 10px;
  border-radius: 16px;
  border: 1px solid rgba(5, 74, 70, 0.10);
  padding: 19px 22px 20px;
  background: linear-gradient(145deg, rgba(238, 242, 244, 0.96), rgba(225, 232, 235, 0.94));
  box-shadow: 0 12px 28px rgba(7, 32, 31, 0.08);
}

.home-faq-item h3 {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: #092f2d;
  font-size: clamp(18px, 1.2vw, 21px);
  line-height: 1.45;
}

.home-faq-item h3::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 1px;
  color: #098077;
  font-size: 14px;
  font-weight: 950;
}

.home-faq-item p {
  margin: 0;
  color: #49635f;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.74;
}

@media (max-width: 860px) {
  .industry-toolbar {
    display: grid;
    align-items: stretch;
    top: calc(var(--site-header-height) + 8px);
    gap: 12px;
    padding: 12px;
  }

  .industry-category-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .industry-category-tabs::-webkit-scrollbar {
    display: none;
  }

  .industry-category-tabs .case-tab {
    font-size: 17px;
  }

  .site-search {
    width: 100%;
    min-width: 0;
  }

  .site-search button {
    min-width: 70px;
    padding: 0 14px;
  }

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

  .company-news-card figure {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .industry-report-grid .report-card,
  .industry-report-grid .report-card:not(:has(.card-image)) {
    grid-template-columns: 1fr;
  }

  .industry-report-grid .report-card .card-image {
    height: 220px;
    min-height: 0;
    margin: -28px -28px 24px;
  }

  .home-faq-shell {
    gap: 18px;
    padding: 16px;
  }

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

  .home-faq-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .home-faq-tabs::-webkit-scrollbar {
    display: none;
  }

  .home-faq-tab {
    min-width: 136px;
    padding: 14px 16px;
  }

  .home-faq-tab.active {
    transform: none;
  }

  .home-faq-panel {
    padding: 16px;
  }

  .home-faq-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

details {
  padding: 22px 26px;
}

summary {
  cursor: pointer;
  font-size: clamp(19px, 1.28vw, 22px);
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.page-hero.compact {
  min-height: 0;
  padding-top: 104px;
  padding-bottom: 34px;
}

.page-hero h1 {
  max-width: 1220px;
}

.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.detail-panel {
  padding: 38px;
}

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

.contact-choice-card {
  align-content: start;
  gap: 18px;
  min-height: 320px;
}

.contact-choice-card .button {
  width: fit-content;
  margin-top: auto;
}

.company-page-section {
  display: grid;
  gap: 26px;
}

.company-tabs {
  position: sticky;
  top: 94px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid rgba(77, 224, 216, 0.14);
  border-radius: 24px;
  padding: 12px;
  background: rgba(5, 13, 14, 0.86);
  backdrop-filter: blur(18px);
}

.company-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 11px 12px;
  color: #d7e5e2;
  background: transparent;
  font: inherit;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.company-tabs button:hover,
.company-tabs button.active {
  color: var(--mint);
  background: rgba(77, 224, 216, 0.08);
}

.company-panel {
  display: grid;
  gap: 18px;
  border-radius: 28px;
  padding: clamp(30px, 3vw, 48px);
  color: #162321;
  background: var(--surface-cool);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

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

.company-panel .eyebrow {
  color: #0c817a;
}

.company-panel h2,
.company-panel h3 {
  color: #10201e;
}

.company-panel p,
.company-panel li {
  max-width: 980px;
  color: #3a4a47;
  font-size: clamp(17px, 1.12vw, 20px);
  line-height: 1.85;
}

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

.company-facts span,
.company-values article {
  border: 1px solid rgba(12, 129, 122, 0.14);
  border-radius: 18px;
  padding: 18px;
  background: var(--surface-cool-soft);
}

.company-facts span {
  color: #0c817a;
  font-weight: 950;
  text-align: center;
}

.company-profile-copy,
.company-scenes,
.company-culture-copy {
  display: grid;
  gap: 14px;
}

.company-profile-copy p,
.company-scenes p,
.company-culture-copy p {
  max-width: none;
  margin: 0;
}

.company-scenes {
  margin-top: 8px;
  border-top: 1px solid rgba(12, 129, 122, 0.14);
  padding-top: 26px;
}

.company-scene-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.company-scene-list span {
  border: 1px solid rgba(12, 129, 122, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: #075e59;
  background: rgba(12, 129, 122, 0.08);
  font-weight: 850;
}

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

.company-values article p {
  margin-bottom: 0;
  font-size: 16px;
}

.company-news-list {
  display: grid;
  gap: 16px;
}

.company-news-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(12, 129, 122, 0.14);
  border-radius: 18px;
  background: var(--surface-cool-soft);
}

.company-news-card figure {
  min-height: 250px;
  margin: 0;
}

.company-news-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-news-card-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 2.6vw, 38px);
}

.company-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.company-news-meta .eyebrow {
  margin: 0;
  color: #0c817a;
}

.company-news-meta time {
  color: #61736f;
  font-weight: 900;
  white-space: nowrap;
}

.company-news-card h3 {
  margin: 0;
  color: #102624;
  font-size: clamp(23px, 1.7vw, 32px);
  line-height: 1.28;
}

.company-news-card-copy > p {
  margin: 0;
  color: #3a4a47;
  line-height: 1.76;
}

.company-news-link {
  width: fit-content;
  color: #0c817a;
  font-weight: 900;
}

.company-news-card .tag-row span {
  border-color: rgba(7, 94, 89, 0.24);
  color: #064d49;
  background: #d9efec;
}

.company-timeline {
  position: relative;
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 18px 0;
  list-style: none;
}

.company-timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(23, 174, 166, 0.42);
  content: "";
}

.company-panel .company-timeline-event {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: none;
}

.company-timeline-event::before {
  position: absolute;
  top: 54px;
  left: 50%;
  z-index: 2;
  width: 12px;
  height: 12px;
  border: 3px solid var(--surface-cool);
  border-radius: 50%;
  background: #18aaa2;
  content: "";
  transform: translate(-50%, -50%);
}

.company-timeline-card {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  width: calc(100% - 34px);
}

.timeline-left .company-timeline-card {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  width: calc(100% - 68px);
}

.timeline-right .company-timeline-card {
  grid-column: 2;
  justify-self: end;
}

.timeline-left .company-timeline-card img {
  order: 2;
}

.company-timeline-card img {
  width: 136px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.company-timeline-copy {
  min-width: 0;
}

.company-timeline-year {
  display: block;
  margin-bottom: 18px;
  color: #0c817a;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 950;
  line-height: 1.32;
}

.company-timeline-copy time {
  display: block;
  color: #768682;
  font-size: 14px;
}

.company-timeline-copy h3 {
  margin: 4px 0 8px;
  font-size: 20px;
  line-height: 1.24;
  text-wrap: pretty;
}

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

.timeline-left .company-timeline-copy h3 {
  display: -webkit-box;
  max-width: 11ch;
  margin-left: auto;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.timeline-left .company-timeline-copy p {
  max-width: 14ch;
  margin-left: auto;
}

.company-timeline-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.company-culture-image {
  overflow: hidden;
  margin: 8px 0 0;
  border-radius: 18px;
}

.company-culture-image img {
  display: block;
  width: 100%;
  height: auto;
}

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

.company-career-list > article {
  border: 1px solid rgba(12, 129, 122, 0.14);
  border-radius: 18px;
  padding: 24px;
  background: var(--surface-cool-soft);
}

.company-career-list h4 {
  margin: 18px 0 8px;
  color: #0c817a;
}

.company-career-list ul {
  margin: 0;
  padding-left: 22px;
}

.company-career-list a {
  color: #075e59;
  font-weight: 900;
}

.company-network-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.company-network-list li {
  border: 1px solid rgba(12, 129, 122, 0.14);
  border-radius: 16px;
  padding: 15px;
  background: var(--surface-cool-soft);
}

.company-network-list strong {
  display: block;
  color: #0c817a;
  font-size: 18px;
}

.company-network-list span {
  display: block;
  margin-top: 6px;
  color: #5d6c69;
  font-weight: 850;
}

.detail-panel.article {
  max-width: 980px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -8px 0 22px;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 850;
}

.case-meta span,
.case-meta time {
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(77, 224, 216, 0.08);
}

.case-detail {
  display: grid;
  gap: 28px;
  padding-top: 24px;
}

.service-system-hero {
  padding-bottom: clamp(46px, 4.5vw, 74px);
}

.service-hero-layout,
.service-content-layout,
.service-tech-layout {
  display: grid;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}

.service-hero-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
}

.service-system-hero h1 {
  max-width: 1180px;
}

.service-system-hero .page-subtitle {
  max-width: 1040px;
}

.service-hero-visual,
.service-visual-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(9, 29, 31, 0.66);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.service-hero-visual {
  aspect-ratio: 16 / 10;
}

.service-hero-visual img,
.service-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-visual-card {
  display: grid;
  min-height: 100%;
}

.service-visual-card img {
  min-height: 300px;
  aspect-ratio: 16 / 11;
}

.service-visual-card figcaption {
  margin: 0;
  border-top: 1px solid rgba(77, 224, 216, 0.12);
  padding: 18px 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.65;
}

.service-system-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.service-system-metrics article {
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: 22px;
  padding: 24px;
  background: rgba(9, 29, 31, 0.68);
}

.service-system-metrics strong {
  display: block;
  color: #f7fffc;
  font-size: clamp(36px, 3.2vw, 54px);
  line-height: 1;
}

.service-system-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 850;
}

.customer-voice-proof {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 1px solid rgba(77, 224, 216, 0.20);
  border-radius: 26px;
  padding: clamp(18px, 1.75vw, 28px);
  background:
    radial-gradient(circle at 0% 0%, rgba(77, 224, 216, 0.12), transparent 19rem),
    linear-gradient(135deg, rgba(13, 39, 41, 0.86), rgba(7, 20, 22, 0.82));
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.24);
}

.customer-voice-carousel {
  min-width: 0;
}

.customer-voice-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.customer-voice-track::-webkit-scrollbar {
  display: none;
}

.customer-voice-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 3vw, 52px);
  align-items: center;
  min-height: 220px;
  scroll-snap-align: start;
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: 22px;
  padding: clamp(24px, 2.7vw, 40px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.customer-voice-profile {
  display: grid;
  gap: 18px;
  align-self: stretch;
  align-content: center;
}

.customer-voice-profile-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.customer-voice-avatar {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(102, 240, 220, 0.25);
  box-shadow: 0 0 0 5px rgba(77, 224, 216, 0.045), 0 8px 22px rgba(0, 0, 0, 0.24);
  background: rgba(6, 22, 24, 0.76);
}

.customer-voice-profile-copy {
  min-width: 0;
}

.customer-voice-type {
  justify-self: start;
  margin: 0 0 8px;
  color: #73f6ee;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.customer-voice-name {
  margin: 0;
  color: rgba(241, 252, 249, 0.84);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 650;
  line-height: 1.58;
}

.customer-voice-card blockquote {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(24px, 1.45vw, 28px);
  font-weight: 650;
  line-height: 1.62;
}

.customer-voice-card .tag-row {
  grid-column: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  min-width: 0;
  overflow: hidden;
}

.customer-voice-card .tag-row span {
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: rgba(115, 246, 238, 0.76);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
  white-space: nowrap;
}

.customer-voice-card .tag-row span + span::before {
  content: "/";
  margin: 0 8px;
  color: rgba(115, 246, 238, 0.42);
}

.customer-voice-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.customer-voice-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.customer-voice-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.customer-voice-dots button.active {
  width: 26px;
  background: var(--mint);
}

.customer-voice-arrow {
  width: 34px;
  height: 34px;
  font-size: 23px;
}

.service-system-section {
  padding-top: clamp(58px, 5.2vw, 92px);
  padding-bottom: clamp(58px, 5.2vw, 92px);
}

.service-system-grid,
.service-tech-grid {
  display: grid;
  gap: 18px;
}

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

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

.service-system-grid article,
.service-tech-grid article,
.service-mode-panel article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.08), transparent 15rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.service-product-system-grid,
.service-capability-grid,
.service-proof-grid,
.service-workflow,
.service-value-grid {
  display: grid;
  gap: 18px;
}

.service-product-system-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

#service-overview,
.service-choice-card {
  scroll-margin-top: calc(var(--site-header-height) + 24px);
}

.service-index-grid,
.service-combo-grid {
  display: grid;
  gap: 18px;
}

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

.service-index-card {
  display: grid;
  gap: 12px;
  min-height: 178px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.08), transparent 13rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-index-card:hover {
  border-color: rgba(77, 224, 216, 0.34);
  transform: translateY(-3px);
}

.service-index-card span {
  color: var(--mint);
  font-weight: 900;
}

.service-index-card strong {
  color: #f6fffc;
  font-size: clamp(21px, 1.42vw, 26px);
  line-height: 1.2;
}

.service-index-card small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.service-choice-list {
  display: grid;
  gap: 28px;
}

.service-choice-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.40fr) minmax(0, 0.60fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.10), transparent 17rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.78), rgba(8, 22, 24, 0.72));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-choice-card:hover,
.service-choice-card:focus-visible {
  border-color: rgba(77, 224, 216, 0.45);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(77, 224, 216, 0.08) inset;
  transform: translateY(-2px);
  outline: none;
}

.service-choice-card figure {
  aspect-ratio: 4 / 3;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(77, 224, 216, 0.10), transparent 58%),
    linear-gradient(145deg, rgba(6, 21, 24, 0.95), rgba(9, 32, 35, 0.78));
}

.service-choice-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-choice-copy {
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.35vw, 20px);
  padding: clamp(24px, 2.65vw, 38px);
}

.service-choice-copy h3,
.service-combo-card h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(28px, 2vw, 38px);
  line-height: 1.15;
}

.service-choice-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.08vw, 20px);
  line-height: 1.68;
}

.service-choice-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  border-top: 1px solid rgba(77, 224, 216, 0.12);
  padding-top: 16px;
}

.service-choice-meta h4 {
  margin: 0 0 12px;
  color: #eaf9f6;
  font-size: 16px;
}

.service-choice-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.64;
}

.service-case-link,
.service-more-link {
  display: grid;
  gap: 6px;
  border-left: 3px solid rgba(77, 224, 216, 0.54);
  border-radius: 0 18px 18px 0;
  padding: 12px 0 12px 16px;
  background: rgba(77, 224, 216, 0.055);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.service-case-link:hover,
.service-choice-card:hover .service-more-link,
.service-choice-card:focus-visible .service-more-link {
  border-color: rgba(77, 224, 216, 0.86);
  background: rgba(77, 224, 216, 0.10);
}

.service-case-link span,
.service-more-link span {
  color: var(--mint);
  font-size: 14px;
  font-weight: 900;
}

.service-case-link strong,
.service-more-link strong {
  color: #f6fffc;
  font-size: clamp(18px, 1.18vw, 22px);
  line-height: 1.35;
}

.service-choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

@media (max-width: 1280px) {
  .service-choice-card {
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  }

  .service-choice-copy h3 {
    font-size: clamp(26px, 2.15vw, 34px);
  }

  .service-choice-copy > p {
    font-size: clamp(16px, 1.18vw, 18px);
  }

  .service-choice-meta {
    gap: 14px;
  }

  .service-choice-meta p {
    font-size: 14px;
  }
}

@media (max-width: 1080px) {
  .service-choice-card {
    grid-template-columns: 1fr;
  }

  .service-choice-card figure {
    max-height: 420px;
  }
}

.service-combo-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-combo-card {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 207, 71, 0.07), transparent 14rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.74), rgba(8, 22, 24, 0.68));
}

.service-combo-card h3 {
  font-size: clamp(22px, 1.48vw, 28px);
}

.service-combo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-product-system-card,
.service-value-grid article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.08), transparent 15rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.service-product-system-card h3,
.service-capability-card h3,
.service-proof-card h3,
.service-value-grid h3 {
  margin: 0 0 14px;
  color: #f6fffc;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.2;
}

.service-product-system-card p,
.service-capability-card p,
.service-proof-card p,
.service-value-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.76;
}

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

.service-capability-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 0.52fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.09), transparent 16rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
}

.service-capability-card figure,
.service-proof-card figure {
  overflow: hidden;
  min-height: 100%;
  margin: 0;
}

.service-capability-card img,
.service-proof-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.service-capability-card > div,
.service-proof-card > div {
  display: grid;
  align-content: start;
  padding: 28px;
}

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

.service-proof-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 207, 71, 0.08), transparent 16rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.service-proof-card:hover {
  border-color: rgba(77, 224, 216, 0.32);
  transform: translateY(-4px);
}

.service-proof-card figure {
  height: 230px;
}

.service-detail-hero {
  padding-bottom: clamp(44px, 4vw, 70px);
}

.service-landing-section {
  padding-top: clamp(48px, 4.4vw, 78px);
}

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

.service-landing-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(24px, 2.5vw, 34px);
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.09), transparent 15rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.service-landing-card h2 {
  margin: 0 0 14px;
  color: #f6fffc;
  font-size: clamp(24px, 1.7vw, 32px);
  line-height: 1.16;
}

.service-landing-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.76;
}

.service-landing-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: #e7f5f2;
  font-weight: 850;
  line-height: 1.55;
}

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

.service-landing-case-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 207, 71, 0.08), transparent 16rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.service-landing-case-card figure {
  height: 240px;
  margin: 0;
  overflow: hidden;
}

.service-landing-case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-landing-case-card > div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.service-landing-case-card h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(21px, 1.4vw, 27px);
  line-height: 1.25;
}

.service-landing-case-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-video-section {
  display: grid;
  gap: clamp(42px, 4.6vw, 72px);
}

.service-video-group {
  display: grid;
  gap: 22px;
}

.section-head.compact {
  gap: 14px;
  padding-bottom: 18px;
}

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

.service-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 28, 30, 0.76);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.service-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #02090a;
  object-fit: cover;
}

.service-video-card > div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.service-video-card p {
  margin: 0;
  color: var(--mint);
  font-size: 13px;
  font-weight: 900;
}

.service-video-card h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(17px, 1.08vw, 21px);
  line-height: 1.3;
}

.live-broadcast-section {
  padding-top: clamp(50px, 5vw, 86px);
}

.live-broadcast-scene-layout {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  gap: clamp(20px, 2.4vw, 34px);
  align-items: stretch;
}

.live-broadcast-scene-nav {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-self: stretch;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.12), transparent 14rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.82), rgba(8, 22, 24, 0.76));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}

.live-broadcast-scene-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(77, 224, 216, 0.14);
  border-radius: 16px;
  padding: 10px 14px;
  color: #e7f5f2;
  background: rgba(5, 20, 22, 0.48);
  font-size: 14px;
  font-weight: 900;
  font-family: inherit;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.live-broadcast-scene-nav button:hover,
.live-broadcast-scene-nav button.active {
  border-color: rgba(77, 224, 216, 0.42);
  color: var(--mint);
  background:
    radial-gradient(circle at 16% 0%, rgba(77, 224, 216, 0.16), transparent 9rem),
    rgba(7, 30, 32, 0.74);
  transform: translateX(3px);
}

.live-broadcast-scene-list {
  display: block;
  min-width: 0;
}

.live-broadcast-scene-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(20px, 2.5vw, 34px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(22px, 2.4vw, 34px);
  background:
    radial-gradient(circle at 16% 0%, rgba(77, 224, 216, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  box-shadow: 0 18px 62px rgba(0, 0, 0, 0.23);
}

.live-broadcast-scene-card[hidden] {
  display: none;
}

.live-broadcast-scene-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.live-broadcast-scene-copy h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(24px, 1.85vw, 34px);
  line-height: 1.18;
}

.live-broadcast-scene-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
  line-height: 1.76;
}

.live-broadcast-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  min-width: 0;
}

.live-broadcast-tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  color: #dff9f5;
  background: rgba(77, 224, 216, 0.08);
  font-size: 13px;
  font-weight: 860;
  line-height: 1.35;
}

.live-broadcast-scene-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  min-width: 0;
}

.live-broadcast-scene-visual.is-multiple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.live-broadcast-scene-image {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 22px;
  background: rgba(2, 11, 12, 0.72);
  box-shadow: inset 0 0 40px rgba(77, 224, 216, 0.05);
}

.live-broadcast-scene-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.live-broadcast-advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.live-broadcast-feature-card,
.live-broadcast-advantage-card,
.live-broadcast-case-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.09), transparent 15rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.live-broadcast-feature-card,
.live-broadcast-advantage-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: clamp(22px, 2.2vw, 30px);
}

.live-broadcast-feature-card > span,
.live-broadcast-advantage-card > span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(245, 207, 71, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--gold);
  background: rgba(245, 207, 71, 0.08);
  font-size: 13px;
  font-weight: 920;
}

.live-broadcast-feature-card h3,
.live-broadcast-advantage-card h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(21px, 1.45vw, 27px);
  line-height: 1.22;
}

.live-broadcast-feature-card ul,
.live-broadcast-advantage-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 780;
  line-height: 1.66;
}

.live-broadcast-case-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(245, 207, 71, 0.08), transparent 16rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.76), rgba(8, 22, 24, 0.70));
}

.live-broadcast-case-combo {
  margin: 0;
  padding: 16px 20px 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 920;
  line-height: 1.45;
}

.live-broadcast-case-card figure {
  margin: 14px 0 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(2, 11, 12, 0.72);
}

.live-broadcast-case-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-broadcast-case-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.live-broadcast-case-copy h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(19px, 1.28vw, 24px);
  line-height: 1.3;
}

.live-broadcast-case-qr {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 112px;
}

.live-broadcast-case-qr img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 0;
  background: #fff;
}

.live-broadcast-case-qr span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

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

.service-workflow article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background: rgba(9, 29, 31, 0.66);
}

.service-workflow span {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(245, 207, 71, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--gold);
  background: rgba(245, 207, 71, 0.08);
  font-size: 13px;
  font-weight: 920;
}

.service-workflow h3 {
  margin: 0 0 12px;
  color: #f6fffc;
  font-size: 22px;
}

.service-workflow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.service-value-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-system-grid h3,
.service-tech-grid h3 {
  margin: 0 0 14px;
  color: #f6fffc;
  font-size: clamp(22px, 1.55vw, 28px);
  line-height: 1.2;
}

.service-system-grid p,
.service-tech-grid p,
.service-mode-panel span,
.service-network-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.service-content-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.service-content-layout .service-system-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-network-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(360px, 1fr);
  gap: clamp(22px, 2.6vw, 36px);
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  padding: clamp(20px, 2.4vw, 32px);
  background:
    radial-gradient(circle at 20% 0%, rgba(77, 224, 216, 0.15), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(19, 130, 126, 0.15), transparent 24rem),
    linear-gradient(135deg, rgba(8, 31, 34, 0.88), rgba(5, 18, 19, 0.82));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.service-network-map {
  position: relative;
  aspect-ratio: 1672 / 941;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 28px;
  background: rgba(4, 17, 18, 0.82);
  box-shadow: inset 0 0 50px rgba(77, 224, 216, 0.08);
}

.service-network-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 50%, rgba(77, 224, 216, 0.12), transparent 34rem),
    linear-gradient(90deg, rgba(3, 13, 14, 0.08), rgba(3, 13, 14, 0) 42%, rgba(3, 13, 14, 0.24));
}

.service-network-map img {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.network-map-points {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.network-map-city {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.network-south-sea-inset {
  position: absolute;
  left: clamp(8px, 1.1vw, 14px);
  bottom: clamp(12px, 1.8vw, 24px);
  z-index: 3;
  width: clamp(70px, 7vw, 92px);
  aspect-ratio: 120 / 160;
  overflow: hidden;
  pointer-events: none;
  border: 1px solid rgba(77, 224, 216, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 68% 18%, rgba(77, 224, 216, 0.13), transparent 4rem),
    linear-gradient(180deg, rgba(4, 20, 21, 0.78), rgba(7, 32, 34, 0.62));
  box-shadow:
    inset 0 0 26px rgba(77, 224, 216, 0.07),
    0 18px 48px rgba(0, 0, 0, 0.28);
  opacity: 0.92;
}

.network-south-sea-inset::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(77, 224, 216, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 224, 216, 0.06) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.24;
}

.network-south-sea-inset svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.network-south-sea-inset span {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  color: #e9fffb;
  font-size: clamp(11px, 0.84vw, 14px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 14px rgba(77, 224, 216, 0.42);
}

.south-sea-frame {
  fill: rgba(5, 22, 24, 0.34);
  stroke: rgba(226, 255, 251, 0.18);
  stroke-width: 1;
}

.south-sea-coast {
  fill: none;
  stroke: rgba(226, 255, 251, 0.28);
  stroke-width: 1.2;
}

.south-sea-boundary {
  fill: none;
  stroke: rgba(77, 224, 216, 0.78);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 11 12;
  filter: drop-shadow(0 0 5px rgba(77, 224, 216, 0.42));
}

.south-sea-islands circle {
  fill: rgba(226, 255, 251, 0.55);
  filter: drop-shadow(0 0 4px rgba(77, 224, 216, 0.36));
}

.network-map-dot {
  display: block;
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(226, 255, 251, 0.92);
  border-radius: 999px;
  background: rgba(77, 224, 216, 0.94);
  box-shadow:
    0 0 0 8px rgba(77, 224, 216, 0.15),
    0 0 22px rgba(77, 224, 216, 0.62);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.network-map-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(77, 224, 216, 0.28);
  border-radius: inherit;
  opacity: 0.64;
}

.network-map-label {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  border: 1px solid rgba(77, 224, 216, 0.28);
  border-radius: 999px;
  padding: 6px 9px;
  color: #f6fffc;
  background: rgba(4, 18, 20, 0.82);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 0 0 16px rgba(77, 224, 216, 0.10);
  white-space: nowrap;
  transform: translate(var(--label-x, 18px), var(--label-y, -50%));
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.network-map-label strong {
  font-size: clamp(12px, 0.88vw, 15px);
  line-height: 1;
}

.network-map-label em {
  color: var(--mint);
  font-size: clamp(10px, 0.74vw, 12px);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.network-map-city:hover,
.network-map-city:focus-visible,
.network-map-city.active {
  outline: none;
  transform: translate(-50%, -50%) scale(1.03);
}

.network-map-city:hover .network-map-dot,
.network-map-city:focus-visible .network-map-dot,
.network-map-city.active .network-map-dot {
  background: #f6fffc;
  box-shadow:
    0 0 0 12px rgba(77, 224, 216, 0.22),
    0 0 38px rgba(77, 224, 216, 0.96),
    0 0 76px rgba(77, 224, 216, 0.46);
  transform: scale(1.22);
}

.network-map-city:hover .network-map-label,
.network-map-city:focus-visible .network-map-label,
.network-map-city.active .network-map-label {
  border-color: rgba(77, 224, 216, 0.72);
  background: rgba(10, 48, 51, 0.92);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.30), 0 0 22px rgba(77, 224, 216, 0.22);
}

.service-network-copy {
  display: grid;
  align-content: start;
  gap: clamp(18px, 2vw, 26px);
  min-width: 0;
  padding: clamp(8px, 1vw, 14px) 0;
}

.network-copy-head {
  display: grid;
  gap: 10px;
}

.network-copy-head .eyebrow {
  margin: 0;
  width: fit-content;
  color: var(--mint);
}

.network-copy-head h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(24px, 1.7vw, 32px);
  line-height: 1.24;
  text-wrap: balance;
}

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

.network-capability-grid article {
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: 18px;
  padding: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(77, 224, 216, 0.10), transparent 10rem),
    rgba(8, 27, 29, 0.66);
}

.network-capability-grid h3 {
  margin: 0 0 8px;
  color: #f6fffc;
  font-size: 18px;
  line-height: 1.25;
}

.network-capability-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
}

.service-mode-panel strong {
  display: block;
  color: #f6fffc;
  font-size: 18px;
}

.service-tech-layout {
  align-items: stretch;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}

.service-tech-layout .service-tech-grid {
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.service-tech-visual {
  height: 100%;
}

.service-tech-visual img {
  min-height: 100%;
  aspect-ratio: auto;
}

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

.service-mode-panel strong {
  margin-bottom: 10px;
}

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

.client-logo-wall figure {
  display: grid;
  min-height: 128px;
  place-items: center;
  border: 1px solid rgba(77, 224, 216, 0.14);
  border-radius: 20px;
  margin: 0;
  padding: 16px;
  color: #dcebe8;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.client-logo-wall img {
  width: min(150px, 86%);
  max-height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.client-logo-wall figcaption {
  margin-top: 12px;
  color: #dcebe8;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.home-client-logo-wall {
  margin-top: 26px;
}

.home-trust-grid,
.home-insight-grid {
  display: grid;
  gap: 16px;
}

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

.home-insight-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 28px;
}

.home-trust-grid article,
.home-insight-grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  background:
    radial-gradient(circle at 14% 0%, rgba(77, 224, 216, 0.09), transparent 16rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.74), rgba(8, 22, 24, 0.70));
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.20);
}

.home-trust-grid h3,
.home-insight-grid h3 {
  margin: 0 0 12px;
  color: #f6fffc;
  font-size: clamp(22px, 1.45vw, 28px);
}

.home-trust-grid p,
.home-insight-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.home-final-cta {
  margin-bottom: clamp(70px, 6vw, 110px);
}

.client-scene-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.client-scene-wall span {
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: 999px;
  padding: 9px 13px;
  color: #bfe5e1;
  background: rgba(77, 224, 216, 0.07);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.25;
}

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

.service-capability-links a {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: rgba(9, 29, 31, 0.62);
}

.service-capability-links strong {
  color: #f6fffc;
  font-size: 20px;
}

.service-capability-links span {
  color: var(--muted);
  line-height: 1.65;
}

.service-system-cta {
  margin-bottom: clamp(70px, 6vw, 110px);
}

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

.solution-list-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 0.58fr);
  overflow: hidden;
  height: 238px;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.10), transparent 17rem),
    linear-gradient(145deg, rgba(15, 39, 41, 0.82), rgba(7, 22, 23, 0.76));
  color: inherit;
  text-decoration: none;
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.22);
}

.solution-list-card figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.solution-list-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.solution-list-card > div {
  display: grid;
  align-content: center;
  gap: 9px;
  min-width: 0;
  padding: 20px;
}

.solution-list-card h3 {
  margin: 0;
  color: #f7fffc;
  font-size: clamp(21px, 1.35vw, 27px);
  line-height: 1.22;
}

.solution-list-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.solution-list-card .tag-row {
  gap: 6px;
}

.solution-list-card .tag-row span {
  min-height: 28px;
  padding: 5px 9px;
  font-size: 12px;
}

.solution-hero {
  text-align: left;
}

.solution-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(26px, 3vw, 52px);
}

.solution-hero-layout h1,
.solution-hero-layout .page-subtitle {
  max-width: 980px;
}

.solution-hero-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(9, 29, 31, 0.66);
  aspect-ratio: 16 / 11;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.solution-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.solution-metrics article {
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 18px;
  padding: 18px;
  background: rgba(77, 224, 216, 0.07);
}

.solution-metrics strong {
  display: block;
  color: #f7fffc;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 1;
}

.solution-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 820;
}

.solution-risk-grid,
.solution-service-grid,
.solution-shot-grid {
  display: grid;
  gap: 18px;
}

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

.solution-service-grid,
.solution-shot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-risk-grid article,
.solution-service-grid article,
.solution-shot-grid article,
.solution-workflow article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(77, 224, 216, 0.08), transparent 14rem),
    linear-gradient(145deg, rgba(16, 38, 40, 0.78), rgba(8, 22, 24, 0.70));
}

.solution-risk-grid h3,
.solution-service-grid h3,
.solution-shot-grid h3,
.solution-workflow h3 {
  margin: 0 0 12px;
  color: #f6fffc;
  font-size: clamp(21px, 1.4vw, 27px);
  line-height: 1.25;
}

.solution-risk-grid p,
.solution-service-grid p,
.solution-shot-grid p,
.solution-workflow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.solution-service-grid h3 a {
  color: inherit;
  text-decoration: none;
}

.solution-service-grid h3 a:hover {
  color: var(--accent);
}

.solution-more-cases {
  width: fit-content;
  margin-top: 24px;
}

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

.solution-faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 22px;
  background: rgba(9, 29, 31, 0.62);
}

.solution-faq-item summary {
  padding: 20px 0;
  color: #f6fffc;
  font-size: 18px;
  font-weight: 860;
  cursor: pointer;
}

.solution-faq-item p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
  line-height: 1.75;
}

.solution-feature-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(24px, 3vw, 42px);
}

.compact-head {
  margin-bottom: 24px;
}

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

.solution-workflow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(77, 224, 216, 0.14);
  color: var(--accent);
  font-weight: 900;
}

.solution-deliverable-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  padding: clamp(28px, 3.2vw, 46px);
  background:
    radial-gradient(circle at 8% 0%, rgba(77, 224, 216, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(12, 51, 51, 0.82), rgba(6, 21, 22, 0.76));
}

.solution-deliverable-panel h2 {
  margin: 0 0 18px;
  color: #f7fffc;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 1.1;
}

.solution-deliverable-panel p,
.solution-deliverable-panel li {
  color: var(--muted);
  line-height: 1.78;
}

.solution-deliverable-panel ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-deliverable-panel li {
  border: 1px solid rgba(77, 224, 216, 0.16);
  border-radius: 18px;
  padding: 18px;
  background: rgba(4, 16, 17, 0.42);
  font-weight: 760;
}

.report-detail {
  display: grid;
  width: min(1320px, calc(100% - 88px));
  gap: clamp(34px, 3vw, 52px);
  justify-items: stretch;
  padding-top: 24px;
}

.report-page-hero {
  display: grid;
  width: min(1320px, calc(100% - 88px));
  justify-items: center;
  text-align: center;
}

.report-page-hero h1 {
  max-width: 1220px;
  margin: 0 auto;
  text-wrap: balance;
}

.report-page-hero .page-subtitle {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}

.report-page-hero .tag-row.big {
  justify-content: center;
  width: 100%;
}

.article-page-hero {
  padding-top: clamp(70px, 5.4vw, 92px);
  padding-bottom: 28px;
}

.article-page-hero h1 {
  max-width: 1080px;
  font-size: clamp(30px, 2.45vw, 42px);
  line-height: 1.18;
}

.article-page-hero .page-subtitle {
  max-width: 860px;
  margin-top: 14px;
  color: #c7d6d3;
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.72;
  font-weight: 700;
}

.article-page-hero .tag-row.big {
  margin-top: 22px;
}

.report-hero-image {
  display: grid;
  place-items: center;
  justify-self: stretch;
  width: 100%;
  margin-inline: 0;
  aspect-ratio: 16 / 6.7;
  max-height: 560px;
  padding: clamp(18px, 2vw, 30px);
}

.report-hero-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.025);
}

.report-section {
  display: grid;
  justify-self: stretch;
  width: 100%;
  margin-inline: 0;
  gap: clamp(28px, 4vw, 68px);
}

.report-section.detail-panel.article {
  max-width: none;
  padding: clamp(40px, 4vw, 62px);
}

.report-section.has-image {
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1fr);
  align-items: center;
}

.report-section.text-only {
  width: 100%;
}

.report-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.report-section.text-only .report-copy {
  max-width: none;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(42px, 5vw, 78px);
}

.report-section.text-only .report-copy h2 {
  grid-column: 1;
}

.report-section.text-only .report-copy p,
.report-section.text-only .report-copy ul {
  grid-column: 2;
}

.report-copy h2 {
  max-width: 940px;
}

.report-copy p {
  max-width: 920px;
  font-size: clamp(17px, 1.08vw, 19px);
}

.report-copy ul {
  grid-template-columns: 1fr;
  max-width: 960px;
}

.report-copy li {
  line-height: 1.75;
}

.report-copy h2 + p {
  margin-top: 0;
}

.report-figure {
  align-self: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.report-figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: min(46vw, 560px);
  margin: 0 auto;
  object-fit: contain;
}

.report-figure figcaption {
  padding: 13px 16px 15px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.case-detail-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
}

.case-detail-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.case-gallery {
  display: grid;
  gap: 22px;
}

.case-gallery h2 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.16;
}

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

.case-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.26);
}

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

.source-note {
  width: min(100%, 1220px);
  margin-right: auto;
  margin-left: auto;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
}

.source-note a {
  color: var(--mint);
  font-weight: 900;
}

.tag-row.big span {
  font-size: 15px;
  padding: 11px 16px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 3vw, 44px);
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  padding: 46px;
  background: linear-gradient(135deg, rgba(37, 168, 159, 0.22), rgba(245, 207, 71, 0.08));
}

.cta-panel h2 {
  flex: 1 1 520px;
  margin: 0;
  white-space: normal;
  text-wrap: balance;
}

.cta-panel .button {
  flex: 0 0 auto;
  min-width: 150px;
  min-height: 58px;
}

.lead-form,
.admin-form {
  display: grid;
  gap: 18px;
  padding: 34px;
}

label {
  display: grid;
  gap: 8px;
  color: #dce8e5;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 15px 17px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-shell {
  width: min(1120px, calc(100% - 54px));
  margin: 0 auto;
  padding: 60px 0;
}

.admin-shell h1 {
  font-size: clamp(42px, 6vw, 74px);
}

fieldset {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

legend {
  color: var(--mint);
  font-weight: 900;
}

.admin-msg {
  margin: 20px 0;
  border-radius: 18px;
  padding: 16px;
  color: #06201e;
  background: var(--mint);
  font-weight: 900;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  color: var(--muted);
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 18;
  display: grid;
  gap: 12px;
}

.floating-action-item {
  position: relative;
}

.floating-action-button,
.floating-popover-actions a,
.floating-popover-actions button,
.mobile-bottom-actions :is(a, button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--text);
  background: rgba(5, 13, 14, 0.90);
  backdrop-filter: blur(16px);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.floating-online {
  color: #06201e;
  background: var(--mint);
}

.floating-phone {
  color: var(--text);
}

.floating-popover {
  position: absolute;
  right: calc(100% + 14px);
  bottom: 0;
  z-index: 19;
  display: grid;
  width: 280px;
  gap: 10px;
  border: 1px solid rgba(77, 224, 216, 0.22);
  border-radius: 22px;
  padding: 18px;
  background: rgba(5, 17, 18, 0.98);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.floating-action-item:hover .floating-popover,
.floating-action-item:focus-within .floating-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.floating-popover span,
.floating-popover small {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.5;
}

.floating-popover strong {
  color: #f6fffc;
  font-size: 28px;
  line-height: 1.1;
}

.qr-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(77, 224, 216, 0.18);
  border-radius: 0;
  padding: 10px;
  background: #fff;
  object-fit: contain;
}

.floating-popover-actions {
  display: flex;
  gap: 8px;
}

.floating-popover-actions a,
.floating-popover-actions button {
  flex: 1;
  padding: 10px 12px;
  color: var(--mint);
  background: rgba(77, 224, 216, 0.08);
  font-size: 13px;
}

.mobile-bottom-actions {
  display: none;
}

.mobile-contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 18px;
}

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

.mobile-contact-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.mobile-contact-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 440px);
  border: 1px solid rgba(77, 224, 216, 0.30);
  border-radius: 24px;
  padding: 28px 22px 22px;
  color: var(--text);
  background: #071718;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  text-align: center;
}

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

.mobile-contact-dialog > span,
.mobile-contact-dialog > small {
  color: var(--muted);
}

.mobile-contact-dialog > strong {
  color: var(--mint);
  font-size: 24px;
}

.mobile-contact-online .qr-image {
  width: min(100%, 300px);
  margin: 0 auto;
}

.mobile-contact-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.mobile-contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.mobile-contact-actions :is(a, button) {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(77, 224, 216, 0.26);
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--text);
  background: rgba(77, 224, 216, 0.08);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.mobile-contact-actions :is(a, button):first-child {
  color: #06201e;
  background: var(--mint);
}

body.mobile-contact-open,
body.mobile-nav-open {
  overflow: hidden;
}

.customer-drawer {
  position: fixed;
  right: 28px;
  bottom: 168px;
  z-index: 22;
  width: min(380px, calc(100% - 40px));
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 26px;
  background: rgba(8, 25, 27, 0.96);
  box-shadow: var(--shadow);
}

.drawer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.drawer-close {
  border: 0;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.site-footer {
  display: grid;
  gap: 26px;
  padding: 46px clamp(34px, 4vw, 62px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(90deg, rgba(77, 224, 216, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(77, 224, 216, 0.018) 1px, transparent 1px),
    #050d0e;
  background-size: 96px 96px, 96px 96px, auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(560px, 1.65fr) minmax(230px, 0.72fr);
  gap: clamp(28px, 3.2vw, 52px);
  align-items: start;
}

.footer-brand,
.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
}

.footer-logo img {
  width: clamp(178px, 12vw, 220px);
  height: auto;
}

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

.footer-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px 24px;
}

.footer-contact h2 {
  margin: 0;
  color: #f6fffc;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
}

.footer-contact a,
.footer-contact dd {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.footer-nav section {
  display: grid;
  align-content: start;
  gap: 9px;
  border-top: 1px solid rgba(77, 224, 216, 0.12);
  padding-top: 12px;
}

.footer-nav h2 {
  margin: 0 0 4px;
  color: #f6fffc;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.footer-nav section:nth-child(3) h2 {
  white-space: nowrap;
}

.footer-nav a {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.45;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--mint);
}

.footer-contact dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.footer-contact dl div {
  display: grid;
  gap: 4px;
}

.footer-contact dt {
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.footer-contact dd {
  margin: 0;
}

.footer-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  color: #06201e;
  background: linear-gradient(135deg, var(--mint), #7ff1d5);
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(77, 224, 216, 0.18);
}

.footer-contact .footer-cta {
  color: #06201e;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  padding-right: 180px;
  color: var(--soft);
  font-size: 13px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1180px) {
  :root {
    --site-header-height: 112px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
  }

  .brand-english,
  .desktop-nav,
  .nav-phone,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 16px;
    color: var(--text);
    background: transparent;
    font: inherit;
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav {
    position: fixed;
    top: var(--mobile-nav-top, calc(var(--site-header-height) - 1px));
    right: 12px;
    left: auto;
    z-index: 110;
    gap: 6px;
    width: min(88vw, 390px);
    max-height: var(--mobile-nav-max-height, calc(100dvh - var(--site-header-height) - 12px));
    overflow-y: auto;
    border: 1px solid rgba(77, 224, 216, 0.22);
    border-radius: 22px;
    padding: 14px;
    background: rgba(5, 13, 14, 0.98);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  }

  .mobile-nav .nav-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 4px;
  }

  .mobile-nav .nav-main-link {
    padding: 12px 10px;
  }

  .mobile-nav .nav-submenu-toggle {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(77, 224, 216, 0.18);
    border-radius: 50%;
    color: var(--mint);
    background: rgba(77, 224, 216, 0.06);
    font: inherit;
    font-size: 24px;
    cursor: pointer;
  }

  .mobile-nav .nav-menu {
    position: static;
    top: auto;
    left: auto;
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    max-height: none;
    overflow: visible;
    border: 0;
    border-radius: 14px;
    padding: 6px 8px 10px 18px;
    background: rgba(77, 224, 216, 0.05);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }

  .mobile-nav .nav-item.submenu-open .nav-menu {
    display: grid;
  }

  .mobile-nav .nav-menu a {
    display: block;
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    white-space: normal;
  }

  .mobile-nav-cta {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
  }

  .mobile-nav-backdrop:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 105;
    display: block;
    border: 0;
    background: rgba(0, 0, 0, 0.56);
    backdrop-filter: blur(4px);
  }

  .hero,
  .split,
  .advantage-panel,
  .delivery-layout,
  .detail-grid,
  .credential-showcase,
  .credential-showcase.compact,
  .contact-grid,
  .contact-choice-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 120px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 0;
    height: 420px;
  }

  .hero-metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-card {
    position: relative;
    width: 100%;
    margin-top: -80px;
  }

  .hero-values,
  .mechanism-grid,
  .scenario-evidence-grid,
  .service-grid,
  .card-grid,
  .card-grid.wide,
  .case-feature-grid,
  .proof ul,
  .detail-panel ul {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .advantage-proof {
    grid-template-columns: 1fr;
  }

  .section-head h2,
  .delivery-intro h2 {
    white-space: normal;
    text-wrap: balance;
  }

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

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

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

  .footer-brand p {
    max-width: 760px;
  }

  .service-system-metrics,
  .service-system-grid,
  .service-index-grid,
  .service-combo-grid,
  .service-product-system-grid,
  .service-capability-grid,
  .service-proof-grid,
  .service-workflow,
  .service-value-grid,
  .service-tech-grid,
  .service-mode-panel,
  .official-stats-grid,
  .solution-list-grid,
  .solution-risk-grid,
  .solution-service-grid,
  .solution-shot-grid,
  .solution-workflow,
  .client-logo-wall,
  .home-trust-grid,
  .home-insight-grid,
  .service-capability-links,
  .credential-evidence-grid,
  .recognition-grid,
  .credential-project-grid,
  .company-facts,
  .company-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .official-stat-card,
  .official-stat-card:nth-child(n + 5) {
    grid-column: auto;
  }

  .service-hero-layout,
  .solution-hero-layout,
  .solution-feature-band,
  .solution-deliverable-panel,
  .trust-delivery-panel,
  .service-choice-card,
  .service-capability-card,
  .service-content-layout,
  .service-tech-layout,
  .service-network-panel,
  .credential-visual-proof,
  .credential-feature-story,
  .news-list-item,
  .news-detail-layout,
  .service-content-layout .service-system-grid,
  .service-tech-layout .service-tech-grid,
  .service-landing-grid,
  .service-landing-case-grid,
  .service-video-grid,
  .live-broadcast-scene-layout,
  .live-broadcast-scene-card {
    grid-template-columns: 1fr;
  }

  .live-broadcast-scene-nav {
    display: flex;
    grid-template-rows: none;
    align-self: auto;
    overflow-x: auto;
    padding: 12px;
    scroll-padding-inline: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .live-broadcast-scene-nav button {
    flex: 0 0 auto;
    min-width: 128px;
  }

  .live-broadcast-feature-grid,
  .live-broadcast-advantage-grid,
  .live-broadcast-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-foundation-grid article:nth-child(3) {
    grid-column: auto;
  }

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

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

  .trust-delivery-flow article {
    min-height: 190px;
  }

  .trust-delivery-visual {
    grid-template-columns: 1fr;
  }

  .trust-tech-grid,
  .trust-report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-recognition-slide {
    flex-basis: calc((100% - 18px) / 2);
  }

  .trust-delivery-visual {
    min-height: 0;
  }

  .news-list-item > div {
    padding: 0 28px 28px;
  }

  .news-detail-image {
    position: static;
  }

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

  .floating-actions {
    display: none;
  }

  .mobile-bottom-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-bottom-actions :is(a, button) {
    min-height: 52px;
    padding: 12px 8px;
    font-size: 13px;
  }

  .credential-slide img {
    height: 430px;
  }

  .report-page-hero,
  .report-detail {
    width: min(100% - 56px, 960px);
  }

  .report-section,
  .report-detail > .source-note {
    width: 100%;
  }

  .report-section.has-image {
    grid-template-columns: 1fr;
  }

  .report-section.text-only .report-copy {
    grid-template-columns: 1fr;
  }

  .report-section.text-only .report-copy h2,
  .report-section.text-only .report-copy p,
  .report-section.text-only .report-copy ul {
    grid-column: auto;
  }

  .report-section.detail-panel.article {
    padding: 34px;
  }

  .report-hero-image {
    width: 100%;
    aspect-ratio: 16 / 8;
    max-height: 460px;
  }

  .report-hero-image img {
    max-height: 410px;
  }

  .report-figure img {
    max-height: 520px;
  }
}

@media (max-width: 680px) {
  :root {
    --site-frame-width: 100%;
    --site-header-height: 126px;
  }

  body {
    padding-bottom: 74px;
  }

  .site-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    padding: 24px 18px;
  }

  .section {
    width: min(100% - 28px, 1200px);
    padding: 64px 0;
  }

  .company-tabs {
    top: var(--site-header-height);
    grid-template-columns: repeat(6, minmax(112px, 1fr));
    overflow-x: auto;
  }

  .company-panel {
    padding: 26px 20px;
  }

  .company-facts,
  .company-values,
  .company-career-list,
  .company-network-list,
  .official-stats-grid,
  .home-faq-shell,
  .service-index-grid,
  .service-combo-grid,
  .service-product-system-grid,
  .service-capability-grid,
  .service-proof-grid,
  .service-workflow,
  .service-value-grid,
  .company-timeline li {
    grid-template-columns: 1fr;
  }

  .company-timeline {
    gap: 22px;
    padding-left: 20px;
  }

  .company-timeline::before {
    left: 6px;
  }

  .company-panel .company-timeline-event {
    display: block;
  }

  .company-timeline-event::before {
    top: 44px;
    left: -14px;
  }

  .company-timeline-card,
  .timeline-left .company-timeline-card,
  .timeline-right .company-timeline-card {
    grid-template-columns: 92px minmax(0, 1fr);
    width: 100%;
    text-align: left;
  }

  .timeline-left .company-timeline-card img {
    order: 0;
  }

  .company-timeline-card img {
    width: 92px;
  }

  .company-timeline-year {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .official-stat-card,
  .official-stat-card:nth-child(n + 5) {
    grid-column: auto;
  }

  .floating-actions {
    display: none;
  }

  .mobile-bottom-actions {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .mobile-bottom-actions :is(a, button) {
    min-height: 52px;
    padding: 10px 6px;
    font-size: 13px;
  }

  .brand-logo {
    width: 178px;
  }

  h1 {
    font-size: clamp(34px, 9vw, 50px);
  }

  h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  .hero h1,
  .page-hero h1,
  .section-head h2,
  .delivery-intro h2 {
    font-size: clamp(28px, 7.1vw, 38px);
    line-height: 1.18;
    word-break: normal;
    line-break: auto;
  }

  .hero h1 {
    font-size: clamp(34px, 8.8vw, 46px);
    word-break: normal;
  }

  .page-hero h1 {
    max-width: 100%;
  }

  .mobile-title-break {
    display: block;
  }

  .hero {
    padding: 92px 18px 36px;
  }

  .hero-visual img {
    height: 300px;
  }

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

  .hero-metric-strip article {
    min-height: 0;
    padding: 18px;
  }

  .hero-subtitle,
  .page-subtitle {
    font-size: 18px;
  }

  .article-page-hero {
    padding-top: 58px;
    padding-bottom: 22px;
  }

  .article-page-hero h1 {
    font-size: clamp(25px, 6.3vw, 32px);
    line-height: 1.22;
  }

  .article-page-hero .page-subtitle {
    font-size: 16px;
    line-height: 1.68;
  }

  .section-head > .eyebrow,
  .page-hero > .eyebrow {
    margin-bottom: 12px;
    padding: 8px 12px;
    font-size: clamp(14px, 3.8vw, 17px);
    letter-spacing: 0.14em;
  }

  .hero-values article,
  .advantage-panel,
  .advantage-points section,
  .mechanism-card,
  .scenario-card,
  .service-group,
  .detail-panel,
  .content-card,
  .proof,
  .credential-slide,
  .scene-panel {
    padding: 24px;
  }

  .service-group {
    min-height: auto;
  }

  .service-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .service-icon svg {
    width: 27px;
    height: 27px;
  }

  .credential-slide img {
    height: 320px;
    min-height: 260px;
  }

  .credential-controls {
    padding: 0 18px 24px;
  }

  .site-footer {
    gap: 22px;
    padding: 36px 18px 100px;
  }

  .footer-logo img {
    width: 188px;
  }

  .footer-legal {
    display: grid;
    padding-right: 0;
  }

  .footer-main {
    gap: 22px;
  }

  .footer-brand,
  .footer-contact {
    gap: 12px;
  }

  .footer-brand p {
    max-width: none;
    font-size: 14px;
    line-height: 1.62;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
  }

  .footer-nav section {
    gap: 7px;
    padding-top: 10px;
  }

  .footer-nav h2 {
    margin-bottom: 2px;
    font-size: 14px;
  }

  .footer-nav section:nth-child(3) h2 {
    white-space: normal;
  }

  .footer-nav a {
    font-size: 12px;
    line-height: 1.42;
  }

  .footer-contact {
    padding: 18px;
    border: 1px solid rgba(77, 224, 216, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
  }

  .footer-contact dl {
    gap: 8px;
  }

  .footer-contact a,
  .footer-contact dd {
    font-size: 13px;
  }

  .footer-cta {
    width: 100%;
  }

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

  .section-head {
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 18px;
  }

  .section-head > .eyebrow {
    margin-bottom: 10px;
    padding: 9px 14px;
    font-size: 15px;
    letter-spacing: 0.14em;
  }

  .home-client-section .section-head h2,
  .advantages-section .section-head h2 {
    max-width: 9.5ch;
    font-size: clamp(32px, 9.6vw, 44px);
    line-height: 1.12;
    text-wrap: balance;
  }

  .home-client-section .section-summary,
  .advantages-section .section-summary {
    max-width: 32ch;
    font-size: 15px;
    line-height: 1.65;
  }

  .advantage-stack {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .advantage-panel {
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
  }

  .advantage-copy h3 {
    margin: 8px 0 12px;
    font-size: 28px;
  }

  .advantage-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.68;
  }

  .advantage-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .advantage-points section {
    padding: 16px;
    border-radius: 18px;
  }

  .advantage-points h4 {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .advantage-points p {
    font-size: 14px;
    line-height: 1.62;
  }

  .card-image {
    margin: -24px -24px 22px;
    height: 230px;
  }

  .card-grid,
  .card-grid.wide,
  .case-feature-grid,
  .home-case-grid,
  .industry-category-grid {
    grid-template-columns: 1fr;
  }

  .insight-category-card {
    min-height: 0;
  }

  .report-card h3 {
    min-height: 0;
  }

  .report-card .card-image,
  .report-card-placeholder {
    height: 220px;
    margin: -24px -24px 22px;
  }

  .service-system-metrics,
  .service-system-grid,
  .service-choice-meta,
  .service-tech-grid,
  .service-mode-panel,
  .service-landing-grid,
  .service-landing-case-grid,
  .service-video-grid,
  .live-broadcast-feature-grid,
  .live-broadcast-advantage-grid,
  .live-broadcast-case-grid,
  .solution-list-grid,
  .solution-risk-grid,
  .solution-service-grid,
  .solution-shot-grid,
  .solution-workflow,
  .solution-metrics,
  .home-trust-grid,
  .home-insight-grid,
  .service-capability-links,
  .network-capability-grid,
  .credential-evidence-grid,
  .recognition-grid,
  .trust-foundation-grid,
  .trust-delivery-flow,
  .trust-tech-grid,
  .trust-report-grid,
  .credential-project-grid {
    grid-template-columns: 1fr;
  }

  .home-client-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
  }

  .home-client-logo-wall figure {
    min-height: 104px;
    padding: 14px 12px;
    border-radius: 18px;
  }

  .home-client-logo-wall img {
    width: min(118px, 84%);
    max-height: 50px;
  }

  .home-client-logo-wall figcaption {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.3;
  }

  .live-broadcast-scene-card {
    gap: 18px;
    min-height: 0;
    border-radius: 24px;
    padding: 20px;
  }

  .live-broadcast-scene-nav {
    border-radius: 20px;
    margin-inline: -2px;
  }

  .live-broadcast-scene-nav button {
    min-width: 118px;
    min-height: 42px;
    padding: 9px 12px;
  }

  .live-broadcast-scene-visual.is-multiple {
    grid-template-columns: 1fr;
  }

  .live-broadcast-scene-image {
    border-radius: 18px;
  }

  .live-broadcast-feature-card,
  .live-broadcast-advantage-card {
    border-radius: 22px;
    padding: 22px 20px;
  }

  .live-broadcast-case-copy {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .live-broadcast-case-qr {
    width: 100%;
    justify-items: start;
  }

  .live-broadcast-case-qr img {
    width: 104px;
    height: 104px;
  }

  .trust-delivery-flow article {
    min-height: 0;
  }

  .trust-delivery-visual {
    padding: 20px;
  }

  .trust-delivery-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .trust-delivery-steps span {
    min-height: 68px;
  }

  .trust-delivery-steps span + span::before {
    display: none;
  }

  .trust-delivery-flow article {
    grid-template-columns: 1fr;
  }

  .trust-delivery-flow span {
    grid-row: auto;
  }

  .trust-delivery-support {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-delivery-support span {
    padding: 10px 8px;
    font-size: 13px;
  }

  .trust-recognition-slide {
    flex-basis: 100%;
  }

  .trust-recognition-controls {
    gap: 10px;
  }

  .service-system-metrics article,
  .service-index-card,
  .service-system-grid article,
  .service-tech-grid article,
  .service-combo-card,
  .service-mode-panel article,
  .solution-list-card > div,
  .solution-risk-grid article,
  .solution-service-grid article,
  .solution-shot-grid article,
  .solution-workflow article,
  .service-capability-links a,
  .credential-evidence-grid article,
  .recognition-card,
  .credential-project-grid article {
    padding: 22px;
  }

  .service-choice-copy {
    padding: 24px;
  }

  .customer-voice-proof {
    padding: 20px;
  }

  .customer-voice-card {
    grid-template-columns: 1fr;
    min-height: 260px;
  }

  .customer-voice-profile-head {
    gap: 10px;
  }

  .customer-voice-avatar {
    width: 48px;
    height: 48px;
  }

  .customer-voice-card .tag-row {
    grid-column: auto;
  }

  .customer-voice-card blockquote {
    font-size: 20px;
  }

  .service-choice-actions .button {
    width: 100%;
  }

  .credential-metrics p {
    display: none;
  }

  .service-network-panel,
  .service-mode-panel,
  .service-visual-card,
  .service-hero-visual,
  .solution-hero-visual,
  .solution-deliverable-panel {
    border-radius: 24px;
  }

  .solution-list-card img,
  .solution-hero-visual {
    min-height: 220px;
  }

  .solution-deliverable-panel {
    padding: 24px;
  }

  .solution-deliverable-panel ul {
    grid-template-columns: 1fr;
  }

  .service-network-panel {
    padding: 26px;
  }

  .service-network-copy {
    padding: 0;
  }

  .network-map-dot {
    width: 11px;
    height: 11px;
  }

  .network-map-label {
    gap: 4px;
    padding: 4px 6px;
  }

  .network-map-label strong {
    font-size: 11px;
  }

  .network-map-label em {
    display: none;
  }

  .network-south-sea-inset {
    left: 10px;
    bottom: 10px;
    width: 78px;
    border-radius: 10px;
    opacity: 0.78;
  }

  .network-south-sea-inset span {
    right: 7px;
    bottom: 6px;
    font-size: 9px;
  }

  .south-sea-boundary {
    stroke-width: 1.6;
  }

  .service-visual-card img {
    min-height: 220px;
  }

  .credential-feature-story img,
  .news-list-item figure {
    min-height: 220px;
  }

  .news-reading-section {
    width: min(100% - 28px, 1120px);
  }

  .news-reading-card {
    border-radius: 18px;
    padding: 26px 18px;
  }

  .news-reading-card p {
    font-size: 17px;
    line-height: 1.9;
  }

  .article-related-links > div {
    grid-template-columns: 1fr;
  }

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

  .news-image-gallery .news-inline-image img {
    height: auto;
    max-height: 420px;
    object-fit: contain;
  }

  .credential-proof-thumbs a {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .credential-proof-thumbs img {
    width: 104px;
    height: 78px;
  }

  .client-logo-wall figure {
    min-height: 112px;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .cta-panel h2 {
    flex-basis: auto;
  }

  .cta-panel .button {
    width: 100%;
  }

  .report-page-hero,
  .report-detail {
    width: min(100% - 28px, 1200px);
  }

  .report-hero-image {
    aspect-ratio: 16 / 10;
    max-height: 360px;
    border-radius: 22px;
  }

  .report-section {
    gap: 15px;
  }

  .report-section.detail-panel.article {
    padding: 24px;
  }

  .report-copy h2 {
    max-width: 10.8em;
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.22;
    word-break: break-all;
    line-break: anywhere;
  }

  .report-copy p {
    font-size: 16px;
    line-height: 1.82;
  }

  .report-figure {
    border-radius: 20px;
  }

  .report-figure img {
    max-height: 420px;
  }

  .report-figure figcaption {
    padding: 11px 13px 13px;
    font-size: 13px;
  }

  .case-feature-grid .card-image {
    height: 260px;
  }

  .case-filter-grid .card-image {
    height: auto;
  }

  .metric-card {
    grid-template-columns: 1fr 1fr;
  }

  .metric-card article {
    padding: 20px;
  }

  .metric-card strong {
    font-size: 30px;
  }

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

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

  .mechanism-grid,
  .scenario-evidence-grid {
    grid-template-columns: 1fr;
  }

  .customer-drawer {
    left: 14px;
    right: 14px;
    bottom: 120px;
    width: auto;
  }
}

@media (max-width: 860px) {
  .company-news-card {
    grid-template-columns: 1fr;
  }

  .company-news-card figure {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

.business-snapshot-hero {
  padding-bottom: clamp(50px, 5vw, 82px);
}

.business-snapshot-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(32px, 4.8vw, 72px);
  align-items: center;
}

.business-snapshot-hero-copy {
  display: grid;
  align-content: start;
  gap: 20px;
}

.business-snapshot-hero-copy h1 {
  margin-bottom: 0;
}

.business-snapshot-kicker {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(21px, 1.48vw, 28px);
  font-weight: 880;
  line-height: 1.38;
}

.business-snapshot-main-cta {
  justify-self: start;
  margin-top: 6px;
  min-height: 54px;
  padding-inline: 24px;
}

.business-snapshot-hero-visual,
.business-snapshot-visual-stack,
.business-snapshot-cloud-mock {
  min-width: 0;
}

.business-snapshot-hero-visual {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(14px, 1.6vw, 20px);
  background: rgba(8, 24, 26, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.business-snapshot-picture {
  display: block;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(3, 13, 15, 0.9);
}

.business-snapshot-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.business-snapshot-hero-main {
  aspect-ratio: 16 / 9;
}

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

.business-snapshot-preview-card {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
}

.business-snapshot-preview-card.is-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.business-snapshot-section {
  padding-top: clamp(52px, 4.6vw, 80px);
}

.business-snapshot-intro-grid,
.business-snapshot-ability-grid,
.business-snapshot-workflow-grid,
.business-snapshot-deliverable-grid {
  display: grid;
  gap: 18px;
}

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

.business-snapshot-intro-grid article,
.business-snapshot-ability-grid article,
.business-snapshot-workflow-grid article,
.business-snapshot-deliverable-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(22px, 2vw, 28px);
  background: rgba(9, 29, 31, 0.66);
}

.business-snapshot-intro-grid span,
.business-snapshot-ability-grid span,
.business-snapshot-workflow-grid span,
.business-snapshot-scenario-copy span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(245, 207, 71, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--gold);
  background: rgba(245, 207, 71, 0.08);
  font-size: 13px;
  font-weight: 920;
}

.business-snapshot-intro-grid h3,
.business-snapshot-ability-grid h3,
.business-snapshot-workflow-grid h3,
.business-snapshot-deliverable-grid h3,
.business-snapshot-scenario-copy h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(20px, 1.35vw, 25px);
  line-height: 1.28;
}

.business-snapshot-intro-grid p,
.business-snapshot-ability-grid p,
.business-snapshot-workflow-grid p,
.business-snapshot-deliverable-grid p,
.business-snapshot-scenario-copy p,
.business-snapshot-cta-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.business-snapshot-scenario-list {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.business-snapshot-scenario-card {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(20px, 2.5vw, 32px);
  background: rgba(8, 24, 26, 0.66);
}

.business-snapshot-scenario-card.is-reverse .business-snapshot-scenario-copy {
  order: 2;
}

.business-snapshot-scenario-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.business-snapshot-scenario-visual {
  min-width: 0;
}

.business-snapshot-visual-stack {
  display: grid;
  gap: 12px;
}

.business-snapshot-visual-stack > .business-snapshot-picture {
  aspect-ratio: 4 / 3;
}

.business-snapshot-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.business-snapshot-photo-pair .business-snapshot-picture {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

.business-snapshot-cloud-mock {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 18px;
  background: rgba(3, 13, 15, 0.9);
}

.business-snapshot-cloud-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

.business-snapshot-cloud-head span {
  color: var(--mint);
  font-size: 14px;
  font-weight: 920;
}

.business-snapshot-cloud-head strong {
  color: #f6fffc;
  font-size: 15px;
  line-height: 1.45;
  text-align: right;
}

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

.business-snapshot-cloud-grid .business-snapshot-picture {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
}

.business-snapshot-ability-grid,
.business-snapshot-workflow-grid,
.business-snapshot-deliverable-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.business-snapshot-workflow-grid article {
  position: relative;
}

.business-snapshot-deliverable-grid article {
  min-height: 150px;
}

.business-snapshot-cta {
  align-items: center;
}

.business-snapshot-cta-copy {
  display: grid;
  flex: 1 1 640px;
  gap: 12px;
}

.business-snapshot-cta .business-snapshot-footer-cta {
  align-self: center;
  min-height: 52px;
  min-width: 168px;
  padding-inline: 22px;
}

@media (max-width: 1080px) {
  .business-snapshot-hero-layout,
  .business-snapshot-scenario-card,
  .business-snapshot-scenario-card.is-reverse {
    grid-template-columns: 1fr;
  }

  .business-snapshot-scenario-card.is-reverse .business-snapshot-scenario-copy {
    order: 0;
  }

  .business-snapshot-intro-grid,
  .business-snapshot-ability-grid,
  .business-snapshot-workflow-grid,
  .business-snapshot-deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .business-snapshot-hero-layout {
    gap: 24px;
  }

  .business-snapshot-hero-visual,
  .business-snapshot-scenario-card {
    border-radius: 22px;
    padding: 14px;
  }

  .business-snapshot-hero-copy {
    gap: 16px;
  }

  .business-snapshot-kicker {
    font-size: 18px;
  }

  .business-snapshot-main-cta {
    width: fit-content;
    max-width: 100%;
    min-height: 50px;
  }

  .business-snapshot-intro-grid,
  .business-snapshot-ability-grid,
  .business-snapshot-workflow-grid,
  .business-snapshot-deliverable-grid,
  .business-snapshot-photo-pair,
  .business-snapshot-cloud-grid {
    grid-template-columns: 1fr;
  }

  .business-snapshot-preview-grid {
    gap: 10px;
  }

  .business-snapshot-picture {
    border-radius: 16px;
  }

  .business-snapshot-cloud-head {
    display: grid;
  }

  .business-snapshot-cloud-head strong {
    text-align: left;
  }

  .business-snapshot-cta {
    gap: 20px;
  }

  .business-snapshot-cta .business-snapshot-footer-cta {
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
  }
}

/* 商务快照页二次收束：控制桌面端图组尺度、层级和悬浮咨询断点。 */
.business-snapshot-hero {
  padding-top: clamp(58px, 5vw, 84px);
}

.business-snapshot-hero-layout {
  grid-template-columns: minmax(360px, 1fr) minmax(380px, 600px);
  gap: clamp(34px, 4vw, 62px);
  align-items: center;
}

.business-snapshot-hero-copy {
  gap: 18px;
}

.business-snapshot-hero-copy h1 {
  max-width: 7em;
  font-size: clamp(48px, 4.8vw, 68px);
  line-height: 1.04;
}

.business-snapshot-kicker {
  max-width: 22em;
  color: #f6fffc;
  font-size: clamp(20px, 1.4vw, 24px);
  line-height: 1.42;
}

.business-snapshot-hero .page-subtitle {
  max-width: 34em;
  color: rgba(218, 236, 232, 0.86);
  font-size: clamp(17px, 1.1vw, 20px);
  font-weight: 720;
  line-height: 1.72;
}

.business-snapshot-hero-visual {
  justify-self: end;
  width: min(100%, 600px);
  height: auto;
  max-height: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  align-items: stretch;
  gap: 12px;
  padding: 14px;
  overflow: hidden;
}

.business-snapshot-hero-main {
  grid-column: 1;
  grid-row: 1;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.business-snapshot-preview-grid {
  grid-column: 1;
  grid-row: 2;
  height: 100%;
  min-height: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: 12px;
  overflow: hidden;
}

.business-snapshot-preview-card,
.business-snapshot-preview-card.is-wide {
  grid-column: auto;
  grid-row: auto;
  height: 100%;
  aspect-ratio: auto;
  min-height: 0;
}

.business-snapshot-hero-visual .business-snapshot-picture,
.business-snapshot-preview-grid .business-snapshot-picture {
  min-height: 0;
}

.business-snapshot-scenario-card {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(24px, 3vw, 42px);
}

.business-snapshot-scenario-card.is-text-only {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.business-snapshot-scenario-card.is-text-only .business-snapshot-scenario-copy {
  order: 0;
  max-width: 680px;
}

.business-snapshot-scenario-visual {
  justify-self: end;
  width: min(100%, 520px);
}

.business-snapshot-visual-stack {
  width: 100%;
  gap: 12px;
}

.business-snapshot-visual-stack > .business-snapshot-picture {
  height: auto;
  aspect-ratio: 16 / 9;
}

.business-snapshot-photo-pair .business-snapshot-picture {
  height: clamp(138px, 12vw, 170px);
  aspect-ratio: auto;
}

.business-snapshot-ability-grid article,
.business-snapshot-workflow-grid article,
.business-snapshot-deliverable-grid article,
.business-snapshot-intro-grid article {
  min-height: 0;
}

body:has(.business-snapshot-hero) .floating-action-button {
  box-sizing: border-box;
  min-width: 112px;
  min-height: 58px;
  padding: 0 22px;
  white-space: nowrap;
  line-height: 1;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

body:has(.business-snapshot-hero) .floating-online,
body:has(.business-snapshot-hero) .floating-phone {
  border-color: rgba(77, 224, 216, 0.34);
}

@media (max-width: 1280px) {
  body:has(.business-snapshot-hero) .floating-actions {
    right: 14px;
    bottom: 22px;
  }

  body:has(.business-snapshot-hero) .floating-action-button {
    min-width: 104px;
    min-height: 54px;
    padding: 0 18px;
    font-size: 15px;
  }
}

@media (min-width: 681px) and (max-width: 1180px) {
  body:has(.business-snapshot-hero) .floating-actions {
    display: grid;
  }

  body:has(.business-snapshot-hero) .mobile-bottom-actions {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .business-snapshot-hero-layout {
    grid-template-columns: minmax(340px, 1fr) minmax(340px, 520px);
    gap: 34px;
  }

  .business-snapshot-hero-visual {
    width: min(100%, 520px);
    height: auto;
  }
}

@media (max-width: 900px) {
  .business-snapshot-hero-layout,
  .business-snapshot-scenario-card,
  .business-snapshot-scenario-card.is-reverse {
    grid-template-columns: 1fr;
  }

  .business-snapshot-hero-visual,
  .business-snapshot-scenario-visual {
    justify-self: center;
  }

  .business-snapshot-hero-visual {
    width: min(100%, 620px);
    height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    overflow: visible;
  }

  .business-snapshot-hero-main {
    aspect-ratio: 16 / 9;
  }

  .business-snapshot-scenario-card.is-reverse .business-snapshot-scenario-copy {
    order: 0;
  }
}

@media (max-width: 680px) {
  .business-snapshot-hero {
    padding-top: 58px;
  }

  .business-snapshot-hero-copy h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .business-snapshot-hero .page-subtitle {
    font-size: 16px;
  }

  .business-snapshot-hero-visual {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
  }

  .business-snapshot-hero-main {
    aspect-ratio: 16 / 9;
  }

  .business-snapshot-visual-stack > .business-snapshot-picture,
  .business-snapshot-photo-pair .business-snapshot-picture {
    height: auto;
    aspect-ratio: 4 / 3;
  }

body:has(.business-snapshot-hero) .floating-actions {
    display: none;
  }
}

/* VR全景与互动影像承接页：多图完整预览与响应式卡片网格。 */
.vr-interactive-hero {
  padding-top: clamp(58px, 5vw, 84px);
  padding-bottom: clamp(52px, 5vw, 82px);
}

.vr-interactive-hero-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 640px);
  gap: clamp(34px, 4vw, 64px);
  align-items: center;
}

.vr-interactive-hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.vr-interactive-hero-copy h1 {
  margin: 0;
  max-width: 8.5em;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.08;
}

.vr-interactive-kicker {
  margin: 0;
  max-width: 28em;
  color: #f6fffc;
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 880;
  line-height: 1.45;
}

.vr-interactive-hero .page-subtitle {
  max-width: 38em;
  color: rgba(218, 236, 232, 0.86);
  font-size: clamp(16px, 1.06vw, 19px);
  font-weight: 700;
  line-height: 1.72;
}

.vr-interactive-main-cta {
  justify-self: start;
  margin-top: 6px;
  min-height: 54px;
  padding-inline: 24px;
}

.vr-interactive-hero-visual {
  justify-self: end;
  display: grid;
  width: min(100%, 640px);
  gap: 12px;
  border: 1px solid rgba(77, 224, 216, 0.22);
  border-radius: 30px;
  padding: 14px;
  background: rgba(8, 24, 26, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.vr-interactive-picture {
  display: block;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(3, 13, 15, 0.9);
}

.vr-interactive-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.vr-interactive-hero-main {
  aspect-ratio: 16 / 9;
}

.vr-interactive-hero-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 12px;
}

.vr-interactive-hero-phone {
  aspect-ratio: 4 / 3;
}

.vr-interactive-hero-scenes {
  aspect-ratio: 16 / 9;
}

.vr-interactive-section {
  padding-top: clamp(52px, 4.6vw, 80px);
}

.vr-interactive-intro-grid,
.vr-interactive-ability-grid,
.vr-interactive-workflow-grid,
.vr-interactive-deliverable-grid,
.vr-interactive-case-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.vr-interactive-intro-grid article,
.vr-interactive-ability-grid article,
.vr-interactive-workflow-grid article,
.vr-interactive-deliverable-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(20px, 1.8vw, 26px);
  background: rgba(9, 29, 31, 0.66);
}

.vr-interactive-intro-grid span,
.vr-interactive-ability-grid span,
.vr-interactive-workflow-grid span,
.vr-interactive-scenario-card span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(245, 207, 71, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--gold);
  background: rgba(245, 207, 71, 0.08);
  font-size: 13px;
  font-weight: 920;
}

.vr-interactive-intro-grid h3,
.vr-interactive-ability-grid h3,
.vr-interactive-workflow-grid h3,
.vr-interactive-deliverable-grid h3,
.vr-interactive-scenario-card h3,
.vr-interactive-case-card h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(19px, 1.24vw, 23px);
  line-height: 1.3;
}

.vr-interactive-intro-grid p,
.vr-interactive-ability-grid p,
.vr-interactive-workflow-grid p,
.vr-interactive-deliverable-grid p,
.vr-interactive-scenario-card p,
.vr-interactive-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.vr-interactive-scenario-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.vr-interactive-scenario-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(18px, 1.8vw, 24px);
  background: rgba(8, 24, 26, 0.66);
}

.vr-interactive-scenario-card:nth-child(-n + 2) {
  grid-column: span 3;
}

.vr-interactive-scenario-card:nth-child(n + 3) {
  grid-column: span 2;
}

.vr-interactive-scenario-card > div {
  display: grid;
  gap: 12px;
}

.vr-interactive-scenario-image {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
}

.vr-interactive-case-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  background: rgba(8, 24, 26, 0.66);
}

.vr-interactive-case-card > div {
  display: grid;
  gap: 10px;
  padding: 2px 4px 4px;
}

.vr-interactive-case-image {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
}

@media (max-width: 1180px) {
  .vr-interactive-hero-layout {
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 560px);
    gap: 34px;
  }

  .vr-interactive-ability-grid,
  .vr-interactive-case-grid,
  .vr-interactive-deliverable-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 681px) and (max-width: 1180px) {
  body:has(.vr-interactive-hero) .floating-actions {
    display: grid;
  }

  body:has(.vr-interactive-hero) .mobile-bottom-actions {
    display: none;
  }
}

@media (max-width: 900px) {
  .vr-interactive-hero-layout {
    grid-template-columns: 1fr;
  }

  .vr-interactive-hero-visual {
    justify-self: center;
    width: min(100%, 640px);
  }

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

  .vr-interactive-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vr-interactive-scenario-card,
  .vr-interactive-scenario-card:nth-child(-n + 2),
  .vr-interactive-scenario-card:nth-child(n + 3) {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .vr-interactive-hero {
    padding-top: 58px;
  }

  .vr-interactive-hero-copy h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .vr-interactive-kicker {
    font-size: 18px;
  }

  .vr-interactive-hero .page-subtitle {
    font-size: 16px;
  }

  .vr-interactive-main-cta {
    width: fit-content;
    max-width: 100%;
    min-height: 50px;
  }

  .vr-interactive-hero-visual {
    border-radius: 22px;
    padding: 12px;
  }

  .vr-interactive-hero-preview-grid,
  .vr-interactive-intro-grid,
  .vr-interactive-ability-grid,
  .vr-interactive-workflow-grid,
  .vr-interactive-deliverable-grid,
  .vr-interactive-case-grid,
  .vr-interactive-scenario-grid {
    grid-template-columns: 1fr;
  }

  .vr-interactive-hero-phone,
  .vr-interactive-hero-scenes,
  .vr-interactive-scenario-image,
  .vr-interactive-case-image {
    aspect-ratio: 16 / 9;
  }

  .vr-interactive-picture,
  .vr-interactive-scenario-card,
  .vr-interactive-case-card {
    border-radius: 18px;
  }

  body:has(.vr-interactive-hero) .floating-actions {
    display: none;
  }
}

.page-hero.ai-imaging-hero {
  padding-top: clamp(58px, 5vw, 84px);
  padding-bottom: clamp(54px, 5vw, 86px);
}

.ai-imaging-hero-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(36px, 4.4vw, 70px);
  align-items: center;
}

.ai-imaging-hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

.ai-imaging-hero-copy h1 {
  margin: 0;
  max-width: 7em;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.04;
}

.ai-imaging-kicker {
  margin: 0;
  max-width: 25em;
  color: #f6fffc;
  font-size: clamp(21px, 1.42vw, 26px);
  font-weight: 900;
  line-height: 1.42;
}

.ai-imaging-hero .page-subtitle {
  max-width: 40em;
  color: rgba(218, 236, 232, 0.86);
  font-size: clamp(16px, 1.06vw, 19px);
  font-weight: 700;
  line-height: 1.74;
}

.ai-imaging-main-cta {
  justify-self: start;
  margin-top: 6px;
  min-height: 54px;
  padding-inline: 24px;
}

.ai-imaging-hero-visual {
  justify-self: end;
  width: min(100%, 760px);
  min-width: 0;
  border: 1px solid rgba(77, 224, 216, 0.22);
  border-radius: 30px;
  padding: 14px;
  background: rgba(8, 24, 26, 0.72);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.3);
}

.ai-imaging-picture {
  display: block;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(3, 13, 15, 0.9);
}

.ai-imaging-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.ai-imaging-hero-image,
.ai-imaging-workflow-image,
.ai-imaging-case-image {
  aspect-ratio: 16 / 9;
}

.ai-imaging-section {
  padding-top: clamp(52px, 4.6vw, 82px);
}

.ai-imaging-ability-grid,
.ai-imaging-workflow-grid,
.ai-imaging-case-grid {
  display: grid;
  gap: 18px;
}

.ai-imaging-ability-grid,
.ai-imaging-workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.ai-imaging-ability-grid article,
.ai-imaging-workflow-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(20px, 1.8vw, 26px);
  background: rgba(9, 29, 31, 0.66);
}

.ai-imaging-ability-grid span,
.ai-imaging-workflow-grid span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(245, 207, 71, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--gold);
  background: rgba(245, 207, 71, 0.08);
  font-size: 13px;
  font-weight: 920;
}

.ai-imaging-ability-grid h3,
.ai-imaging-workflow-grid h3,
.ai-imaging-case-card h3 {
  margin: 0;
  color: #f6fffc;
  font-size: clamp(19px, 1.24vw, 23px);
  line-height: 1.3;
}

.ai-imaging-ability-grid p,
.ai-imaging-workflow-grid p,
.ai-imaging-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.ai-imaging-workflow-layout {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.ai-imaging-workflow-image {
  justify-self: center;
  width: min(100%, 1060px);
  border-radius: 24px;
}

.ai-imaging-case-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  background: rgba(8, 24, 26, 0.66);
}

.ai-imaging-case-card > div {
  display: grid;
  gap: 10px;
  padding: 2px 4px 4px;
}

.ai-imaging-case-card:last-child {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
}

@media (max-width: 1180px) {
  .ai-imaging-hero-layout {
    grid-template-columns: minmax(320px, 0.85fr) minmax(440px, 1.15fr);
    gap: 34px;
  }

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

  .ai-imaging-case-card:last-child {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 681px) and (max-width: 1180px) {
  body:has(.ai-imaging-hero) .floating-actions {
    display: grid;
  }

  body:has(.ai-imaging-hero) .mobile-bottom-actions {
    display: none;
  }
}

@media (max-width: 980px) {
  .ai-imaging-hero-layout {
    grid-template-columns: 1fr;
  }

  .ai-imaging-hero-visual {
    justify-self: center;
    width: min(100%, 760px);
  }

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

  .ai-imaging-case-card:last-child {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .page-hero.ai-imaging-hero {
    padding-top: 0;
    padding-bottom: 88px;
  }

  .ai-imaging-hero-copy {
    gap: 12px;
  }

  .ai-imaging-hero-copy h1 {
    font-size: clamp(34px, 9vw, 44px);
  }

  .ai-imaging-kicker {
    font-size: 18px;
  }

  .ai-imaging-hero .page-subtitle {
    font-size: 16px;
    line-height: 1.64;
  }

  .ai-imaging-main-cta {
    width: fit-content;
    max-width: 100%;
    min-height: 50px;
  }

  .ai-imaging-hero-visual {
    width: min(100%, 320px);
    border-radius: 22px;
    padding: 12px;
  }

  .ai-imaging-hero-image {
    aspect-ratio: 16 / 9;
  }

  .ai-imaging-ability-grid,
  .ai-imaging-workflow-grid,
  .ai-imaging-case-grid {
    grid-template-columns: 1fr;
  }

  .ai-imaging-picture,
  .ai-imaging-case-card {
    border-radius: 18px;
  }

body:has(.ai-imaging-hero) .floating-actions {
    display: none;
  }
}

.page-hero.gallery-data-hero {
  padding-top: 72px;
  padding-bottom: 78px;
}

.gallery-data-hero-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  gap: 56px;
  align-items: center;
}

.gallery-data-hero-copy {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
}

.gallery-data-hero-copy h1 {
  margin: 0;
  max-width: 7.5em;
  color: #f6fffc;
  font-size: 68px;
  line-height: 1.06;
}

.gallery-data-kicker {
  margin: 0;
  max-width: 28em;
  color: #f7fffc;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.42;
}

.gallery-data-hero .page-subtitle {
  max-width: 42em;
  color: rgba(218, 236, 232, 0.88);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.78;
}

.gallery-data-main-cta {
  justify-self: start;
  margin-top: 4px;
  min-height: 54px;
  padding-inline: 24px;
}

.gallery-data-hero-visual {
  justify-self: end;
  width: min(100%, 760px);
  min-width: 0;
  border: 1px solid rgba(77, 224, 216, 0.22);
  border-radius: 30px;
  padding: 14px;
  background: rgba(8, 24, 26, 0.72);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.3);
}

.gallery-data-picture {
  display: block;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(243, 250, 248, 0.98);
}

.gallery-data-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gallery-data-scenario-visual .gallery-data-picture,
.gallery-data-center-visual .gallery-data-picture {
  aspect-ratio: 16 / 9;
}

.gallery-data-hero-image {
  aspect-ratio: 4 / 3;
}

.gallery-data-section {
  padding-top: 78px;
}

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

.gallery-data-ability-grid article,
.gallery-data-data-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: rgba(9, 29, 31, 0.66);
}

.gallery-data-ability-grid span,
.gallery-data-data-grid span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(245, 207, 71, 0.24);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--gold);
  background: rgba(245, 207, 71, 0.08);
  font-size: 13px;
  font-weight: 920;
}

.gallery-data-ability-grid h3,
.gallery-data-data-grid h3,
.gallery-data-scenario-copy h3 {
  margin: 0;
  color: #f6fffc;
  font-size: 21px;
  line-height: 1.32;
}

.gallery-data-ability-grid p,
.gallery-data-data-grid p,
.gallery-data-scenario-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-data-scenario-list {
  display: grid;
  gap: 22px;
}

.gallery-data-scenario-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 26px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  background: rgba(8, 24, 26, 0.66);
}

.gallery-data-scenario-card.is-reverse {
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
}

.gallery-data-scenario-card.is-reverse .gallery-data-scenario-copy {
  order: 2;
}

.gallery-data-scenario-card.is-reverse .gallery-data-scenario-visual {
  order: 1;
}

.gallery-data-scenario-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
}

.gallery-data-scenario-kicker {
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
}

.gallery-data-scenario-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #e7f5f2;
  font-weight: 820;
  line-height: 1.56;
}

.gallery-data-data-note {
  border-left: 3px solid var(--mint);
  padding-left: 13px;
}

.gallery-data-data-note strong {
  margin-right: 8px;
  color: #f6fffc;
}

.gallery-data-scenario-visual,
.gallery-data-center-visual {
  min-width: 0;
}

.gallery-data-center-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 26px;
  align-items: center;
}

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

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

@media (max-width: 1280px) {
  .gallery-data-hero-layout {
    grid-template-columns: minmax(320px, 0.86fr) minmax(440px, 1.14fr);
    gap: 38px;
  }

  .gallery-data-hero-copy h1 {
    font-size: 58px;
  }

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

  .gallery-data-data-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 681px) and (max-width: 1180px) {
  body:has(.gallery-data-hero) .floating-actions {
    display: grid;
  }

  body:has(.gallery-data-hero) .mobile-bottom-actions {
    display: none;
  }
}

@media (max-width: 1080px) {
  .gallery-data-hero-layout,
  .gallery-data-scenario-card,
  .gallery-data-scenario-card.is-reverse,
  .gallery-data-center-layout {
    grid-template-columns: 1fr;
  }

  .gallery-data-hero-visual {
    justify-self: center;
    width: min(100%, 760px);
  }

  .gallery-data-scenario-card.is-reverse .gallery-data-scenario-copy,
  .gallery-data-scenario-card.is-reverse .gallery-data-scenario-visual {
    order: initial;
  }

  .gallery-data-ability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .page-hero.gallery-data-hero {
    padding-top: 0;
    padding-bottom: 88px;
  }

  .gallery-data-hero-copy {
    gap: 12px;
  }

  .gallery-data-hero-copy h1 {
    font-size: 38px;
    line-height: 1.12;
  }

  .gallery-data-kicker {
    font-size: 18px;
  }

  .gallery-data-hero .page-subtitle {
    font-size: 16px;
    line-height: 1.64;
  }

  .gallery-data-main-cta {
    width: fit-content;
    max-width: 100%;
    min-height: 50px;
  }

  .gallery-data-hero-visual {
    width: min(100%, 330px);
    border-radius: 22px;
    padding: 10px;
  }

  .gallery-data-section {
    padding-top: 58px;
  }

  .gallery-data-ability-grid,
  .gallery-data-data-grid {
    grid-template-columns: 1fr;
  }

  .gallery-data-scenario-card {
    gap: 18px;
    border-radius: 22px;
    padding: 16px;
  }

  .gallery-data-picture {
    border-radius: 18px;
  }

  .gallery-data-hero-image,
  .gallery-data-scenario-visual .gallery-data-picture,
  .gallery-data-center-visual .gallery-data-picture {
    aspect-ratio: 4 / 3;
  }

  body:has(.gallery-data-hero) .floating-actions {
    display: none;
  }
}
@media (max-width: 1080px) {
  .solution-list-grid {
    grid-template-columns: 1fr;
  }

  .solution-list-card {
    grid-template-columns: minmax(210px, 0.36fr) minmax(0, 0.64fr);
    height: 220px;
  }

  .solution-list-card img {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .solution-list-card {
    grid-template-columns: 118px minmax(0, 1fr);
    height: 196px;
    border-radius: 20px;
  }

  .solution-list-card > div {
    gap: 7px;
    padding: 15px;
  }

  .solution-list-card h3 {
    font-size: 19px;
  }

  .solution-list-card p {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }

  .solution-list-card .tag-row {
    display: none;
  }

  .solution-list-card img {
    min-height: 0;
  }

  .solution-faq-item {
    padding: 0 16px;
  }

  .solution-faq-item summary {
    padding: 17px 0;
    font-size: 16px;
  }
}
