:root {
  --primary: #17171c;
  --ink: #212121;
  --deep-green: #003c33;
  --dark-navy: #071829;
  --canvas: #ffffff;
  --soft-stone: #f5f7f4;
  --pale-green: #edfce9;
  --pale-blue: #f1f5ff;
  --hairline: #d9d9dd;
  --border-light: #e5e7eb;
  --muted: #93939f;
  --slate: #75758a;
  --body-muted: #616161;
  --action-blue: #1863dc;
  --coral: #ff7759;
  --on-dark: #ffffff;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  --container: 1280px;
  --font-display: "Space Grotesk", "Noto Sans TC", Inter, system-ui, sans-serif;
  --font-body: Inter, "Noto Sans TC", Arial, system-ui, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#local-ai-solution,
#ai-applications {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--body-muted);
  overflow-wrap: anywhere;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
}

.nav {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  width: 190px;
  font-size: 0;
  font-weight: 600;
  white-space: nowrap;
}

.brand img {
  width: 190px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 16px;
  font-weight: 600;
}

.nav-links a,
.nav-parent {
  color: #34383d;
}

.nav-links a[aria-current="page"],
.nav-links a:hover,
.nav-item.is-current-section .nav-parent,
.has-submenu:focus-within .nav-parent,
.has-submenu:hover .nav-parent {
  color: #357838;
}

.nav-item {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-parent::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 210px;
  padding: 10px;
  background: var(--canvas);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 16px;
}

.submenu a {
  padding: 10px 12px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
}

.submenu a:hover {
  background: var(--soft-stone);
}

.has-submenu:focus-within .submenu,
.has-submenu:hover .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  background: var(--canvas);
  color: var(--ink);
}

.menu-toggle svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn-primary {
  background: #34383d;
  border-color: #34383d;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.btn:not(.btn-long-cta):hover,
.btn:not(.btn-long-cta):focus-visible,
.btn-banner-cta:hover,
.btn-banner-cta:focus-visible {
  background: #357838;
  border-color: #357838;
  color: #fff;
}

.text-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #357838;
  text-decoration: none;
  transition: color 180ms ease;
}

.arrow-link-icon {
  display: inline-block;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.arrow-link:hover,
.arrow-link:focus-visible {
  color: #ff7759;
}

.arrow-link:hover .arrow-link-icon,
.arrow-link:focus-visible .arrow-link-icon {
  transform: translateX(2px);
}

.link-row-right {
  display: flex;
  justify-content: flex-end;
}

.hero {
  min-height: 420px;
  padding: 88px 0 56px;
}

.hero-home {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(760px, calc(100vh - 116px));
  padding: 112px 0 96px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 36%, rgba(255, 255, 255, 0.28) 64%, rgba(255, 255, 255, 0.05) 100%),
    url("../../img/index/index_banner.png") center / cover no-repeat;
}

.hero-home .container {
  position: relative;
  z-index: 1;
}

.hero.dark {
  background: var(--deep-green);
  color: var(--on-dark);
}

.hero.product-hero {
  background: url("../../img/product/product_banner.jpg") center / cover no-repeat;
}

.hero.resources-hero {
  background: url("../../img/resource/resources_banner.jpg") center / cover no-repeat;
}

.hero.about-hero {
  background: url("../../img/about/about_banner.jpg") center / cover no-repeat;
}

.hero.news-hero {
  background: url("../../img/news/news_banner.jpg") center / cover no-repeat;
}

.hero.solution-hero {
  background: url("../../img/solution/solution_banner.jpg") center / cover no-repeat;
}

.hero.cases-hero {
  background: url("../../img/case/cases_banner.jpg") center / cover no-repeat;
}

.product-hero .container,
.resources-hero .container,
.about-hero .container,
.news-hero .container,
.solution-hero .container,
.cases-hero .container {
  max-width: 760px;
  margin-left: max(20px, calc((100% - var(--container)) / 2));
  margin-right: auto;
}

.desktop-line-break {
  display: block;
}

@media (max-width: 1658px) {
  .hero.resources-hero,
  .hero.about-hero,
  .hero.news-hero {
    background-position: 62% center;
  }
}

.hero.navy {
  background: var(--dark-navy);
  color: var(--on-dark);
}

.hero.pale {
  background: var(--pale-blue);
}

.hero:not(.hero-home):not(.product-hero):not(.resources-hero):not(.about-hero):not(.news-hero):not(.solution-hero):not(.cases-hero) {
  background:
    linear-gradient(90deg, rgba(0, 60, 51, 0.9) 0%, rgba(0, 60, 51, 0.74) 44%, rgba(7, 24, 41, 0.42) 100%),
    url("../../img/product/product_banner_04.png") center / cover no-repeat;
  color: var(--on-dark);
}

.hero:not(.hero-home):not(.product-hero):not(.resources-hero):not(.about-hero):not(.news-hero):not(.solution-hero):not(.cases-hero) h1,
.hero:not(.hero-home):not(.product-hero):not(.resources-hero):not(.about-hero):not(.news-hero):not(.solution-hero):not(.cases-hero) .lead {
  color: var(--on-dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow,
.mono {
  margin-bottom: 18px;
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero.dark .eyebrow,
.hero.navy .eyebrow,
.hero:not(.hero-home):not(.product-hero):not(.resources-hero):not(.about-hero):not(.news-hero):not(.solution-hero):not(.cases-hero) .eyebrow {
  color: #ffad9b;
}

h1,
h2,
h3 {
  margin: 0;
  color: #34383d;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.dark h1,
.dark h2,
.dark h3,
.navy h1,
.navy h2,
.navy h3,
.band-dark h1,
.band-dark h2,
.band-dark h3,
.footer h1,
.footer h2,
.footer h3 {
  color: #fff;
}

h1 {
  max-width: 980px;
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

h3 {
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.26;
}

.lead {
  max-width: 740px;
  margin-top: 24px;
  color: var(--body-muted);
  font-size: 18px;
  line-height: 1.55;
}

.dark .lead,
.navy .lead,
.band-dark .lead {
  color: rgba(255, 255, 255, 0.78);
}

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

.section {
  padding: 80px 0;
}

.section.soft {
  background: var(--soft-stone);
}

.section.pale {
  background: var(--pale-blue);
}

.home-intro-section .lead {
  max-width: none;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.7;
}

.home-intro-section .link-row-right {
  margin-top: 28px;
}

.solution-intro {
  padding: 44px 0 20px;
}

.solution-intro + .section {
  padding-top: 52px;
}

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

.pain-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}

.pain-item span {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pain-item p {
  margin: 0;
}

.solution-band {
  background: var(--soft-stone);
}

.solution-band-head {
  margin-bottom: 48px;
}

.solution-band-head p {
  max-width: none;
  margin: 0;
  color: var(--body-muted);
  font-size: 18px;
  line-height: 1.55;
}

.solution-layers {
  display: grid;
  gap: 34px;
}

.solution-layer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}

.solution-layer-head span {
  display: block;
  margin-bottom: 14px;
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-layer-head h3 {
  margin-bottom: 14px;
  color: #357838;
}

.solution-layer-head p,
.solution-feature p {
  margin: 0;
  color: var(--body-muted);
}

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

.solution-feature {
  padding: 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  transition: background-color 0.28s ease, border-color 0.28s ease;
}

.solution-feature:hover,
.solution-feature:focus-within {
  background: rgba(255, 255, 255, 0.48);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.solution-feature h4 {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.solution-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
}

.solution-icon svg,
.solution-icon img {
  width: 30px;
  height: 30px;
}

.solution-icon img {
  object-fit: contain;
  transition: filter 180ms ease;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 56px;
  align-items: start;
}

.split.solution-band-head,
.outcome-overview .split {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  width: 100%;
}

.split.app-section-head {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  grid-template-areas:
    "title lead"
    ". scenarios";
  gap: 20px;
  align-items: center;
  width: 100%;
}

.split.app-section-head .section-title-line {
  grid-area: title;
}

.split.app-section-head > .lead {
  grid-area: lead;
}

.split.app-section-head > .app-scenarios {
  grid-area: scenarios;
  margin-top: 0;
}

.split.solution-band-head > p,
.split.app-section-head .lead,
.outcome-overview .lead {
  line-height: 1.42;
}

.split.stacked-section-head {
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  width: 100%;
}

.split.app-section-head.stacked-section-head {
  grid-template-areas:
    "title"
    "lead"
    "scenarios";
}

.stacked-section-head > p,
.stacked-section-head .lead {
  margin: 0;
  line-height: 1.55;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.section-title-line {
  display: flex;
  flex: 1;
  width: 100%;
  align-items: center;
  gap: 18px;
}

.section-head h2::after,
.section-title-line::after {
  display: block;
  flex: 1;
  min-width: 32px;
  max-width: 72px;
  height: 2px;
  background: #ff7759;
  content: "";
}

.section-head p {
  max-width: 560px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

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

.module-path-visual {
  width: min(100%, 720px);
  margin: 0 auto;
}

.module-path-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.card {
  min-height: 100%;
  padding: 28px;
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.card.stone {
  background: var(--soft-stone);
}

.card h3 {
  margin-bottom: 14px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card > img:first-child {
  display: block;
  width: calc(100% + 56px);
  max-width: none;
  margin: -28px -28px 24px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.app-grid,
.case-grid {
  gap: 32px;
}

.app-card,
.case-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.app-card > img,
.case-card > img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft-stone);
  border: 0;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: transform 320ms ease;
}

.app-card:hover > img,
.app-card:focus-within > img,
.case-card:hover > img,
.case-card:focus-within > img {
  transform: scale(1.06);
}

.app-card h3,
.app-card p,
.case-card h3,
.case-card p {
  margin-inline: 28px;
}

.app-card h3,
.case-card h3 {
  margin-top: 12px;
  margin-bottom: 14px;
}

.app-card p,
.case-card p {
  margin-bottom: 36px;
}

.app-card p:last-child,
.case-card p:last-child {
  margin-bottom: 40px;
}

.cases-catalog .case-card p {
  display: inline-flex;
  width: max-content;
  min-height: 30px;
  margin-top: 0;
  margin-bottom: 12px;
  padding: 6px 12px;
  align-items: center;
  border: 1px solid rgba(255, 119, 89, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(255, 119, 89, 0.1);
  color: var(--coral);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.cases-catalog .case-grid {
  grid-auto-rows: 1fr;
}

.cases-catalog .case-card {
  height: 100%;
}

.cases-catalog .case-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.cases-catalog .case-card .case-card-link {
  margin: auto 28px 40px auto;
  font-weight: 600;
}

.cases-catalog .case-card:hover .case-card-link,
.cases-catalog .case-card:focus-within .case-card-link {
  color: var(--coral);
}

.cases-catalog .case-card:hover .case-card-link .arrow-link-icon,
.cases-catalog .case-card:focus-within .case-card-link .arrow-link-icon {
  transform: translateX(2px);
}

@media (hover: none), (pointer: coarse) {
  .arrow-link:active .arrow-link-icon,
  .arrow-link:focus-visible .arrow-link-icon,
  .cases-catalog .case-card:hover .case-card-link .arrow-link-icon,
  .cases-catalog .case-card:focus-within .case-card-link .arrow-link-icon {
    transform: translateX(0);
  }
}

.case-list-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
}

.case-list-card figure {
  display: flex;
  min-height: 178px;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  background: var(--soft-stone);
  border: 0;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.case-list-card img {
  width: 100%;
  height: 100%;
  max-height: 178px;
  object-fit: cover;
}

.case-list-card img[src*="partner"] {
  width: auto;
  max-width: 76%;
  max-height: 88px;
  object-fit: contain;
}

.case-list-card .eyebrow {
  margin: 6px 28px 0;
}

.case-list-card h3,
.case-list-card span {
  margin-inline: 28px;
}

.case-list-card span {
  margin-top: auto;
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

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

.case-detail-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--hairline);
}

.case-detail-card:last-child {
  border-bottom: 1px solid var(--hairline);
}

.case-detail-card h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.case-detail-card p {
  max-width: 760px;
}

.case-story-section {
  background: var(--primary);
  color: var(--on-dark);
}

.case-insight-story {
  background: var(--canvas);
}

.case-insight-summary {
  margin-bottom: 26px;
}

.case-insight-heading {
  display: grid;
  max-width: 900px;
  gap: 14px;
  margin-bottom: 24px;
}

.case-insight-heading .eyebrow {
  margin-bottom: 0;
}

.case-insight-heading h2 {
  margin: 0;
  color: #34383d;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.case-insight-heading .lead {
  max-width: 760px;
  margin: 0;
  color: #616161;
}

.case-insight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.case-insight-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  color: #357838;
  background: rgba(53, 120, 56, 0.08);
  border: 1px solid rgba(53, 120, 56, 0.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

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

.case-insight-card {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: #f5f7f4;
  border: 1px solid var(--hairline);
  border-top: 4px solid #357838;
  border-radius: var(--radius-md);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.case-insight-card:hover,
.case-insight-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(52, 56, 61, 0.11);
}

.case-insight-card h2 {
  margin-bottom: 14px;
  color: #34383d;
  font-size: clamp(22px, 2.4vw, 28px);
}

.case-insight-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 1.1rem;
}

.case-insight-card li {
  color: #616161;
  line-height: 1.65;
}

.case-insight-result {
  background: #fff;
  border-top-color: #ff7759;
}

.case-insight-stat {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hairline);
}

.case-insight-stat strong {
  color: #357838;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  line-height: 0.95;
}

.case-insight-stat span {
  color: #ff7759;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.case-more-section {
  background: var(--canvas);
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--hairline);
}

.case-back-link:hover .arrow-link-icon,
.case-back-link:focus-visible .arrow-link-icon {
  transform: translateX(-2px);
}

.case-actions .btn-primary.btn-long-cta:hover,
.case-actions .btn-primary.btn-long-cta:focus-visible {
  background: #357838;
  border-color: #357838;
  color: #fff;
}

.related-cases {
  padding-top: 46px;
}

.related-case {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 0 0 24px;
  background: var(--soft-stone);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  transition: transform 180ms ease, background-color 180ms ease;
}

.related-case:hover {
  transform: translateY(-4px);
  background: #fff;
}

.related-case img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.related-case span {
  margin: 0 22px;
  color: var(--coral);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-case strong {
  margin: 0 22px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-card:hover,
.value-card:focus-within {
  border-color: #357838;
  box-shadow: 0 16px 34px rgba(52, 56, 61, 0.1);
  transform: translateY(-4px);
}

.value-icon,
.capability-icon,
.solution-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(53, 120, 56, 0.16);
  border-radius: 40%;
  background: rgba(53, 120, 56, 0.1);
  color: #357838;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.value-icon {
  width: 56px;
  height: 56px;
}

.value-icon svg,
.value-icon img,
.capability-icon svg,
.capability-icon img,
.solution-icon svg,
.solution-icon img {
  display: block;
}

.value-icon svg,
.capability-icon svg,
.solution-icon svg {
  fill: currentColor;
}

.value-icon svg,
.value-icon img {
  width: 35px;
  height: 35px;
}

.value-icon img {
  object-fit: contain;
  transition: filter 180ms ease;
}

.value-card:hover .value-icon,
.value-card:focus-within .value-icon,
.capability-card:hover .capability-icon,
.capability-card:focus-within .capability-icon,
.solution-feature:hover .solution-icon,
.solution-feature:focus-within .solution-icon {
  border-color: #357838;
  background: #357838;
  color: #fff;
}

.value-card:hover .value-icon img,
.value-card:focus-within .value-icon img,
.capability-card:hover .capability-icon img,
.capability-card:focus-within .capability-icon img,
.solution-feature:hover .solution-icon img,
.solution-feature:focus-within .solution-icon img {
  filter: brightness(0) invert(1);
}

.value-card h3 {
  margin-bottom: 0;
}

.value-card ul {
  display: grid;
  gap: 10px;
  padding-left: 1rem;
  color: var(--body-muted);
}

.value-card li::marker {
  color: var(--coral);
}

.capability-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--soft-stone);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.capability-card:hover,
.capability-card:focus-within {
  border-color: #357838;
  box-shadow: 0 16px 34px rgba(52, 56, 61, 0.1);
  transform: translateY(-4px);
}

.capability-icon {
  width: 48px;
  height: 48px;
}

.capability-icon svg,
.capability-icon img {
  width: 30px;
  height: 30px;
}

.capability-icon img {
  object-fit: contain;
  transition: filter 180ms ease;
}

.capability-card h3 {
  margin-bottom: 0;
}

.capability-card ul {
  display: grid;
  gap: 9px;
  padding-left: 1rem;
  color: var(--body-muted);
}

.capability-card li::marker {
  color: var(--coral);
}

.media-card {
  overflow: hidden;
  background: var(--soft-stone);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.console {
  padding: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ef2b4;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  background: transparent;
}

.console .chip {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

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

.console-panel {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.console-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.console-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(150px, 1fr));
  column-gap: 36px;
  row-gap: 34px;
  align-items: center;
  margin-top: 34px;
}

.logo-strip img {
  height: 118px;
  width: 100%;
  box-sizing: border-box;
  padding: 22px 28px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  filter: grayscale(1);
  opacity: 0.72;
  transition: border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.logo-strip img:hover,
.logo-strip img:focus-visible {
  border-color: #357838;
  box-shadow: 0 14px 30px rgba(52, 56, 61, 0.08);
  filter: grayscale(0);
  opacity: 1;
}

.rows {
  border-top: 1px solid var(--hairline);
}

.row {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
}

.row h3 {
  font-size: 22px;
}

.app-section-head .lead {
  max-width: none;
  margin-top: 0;
}

.app-scenarios {
  margin-top: 22px;
}

.app-scenarios > span {
  display: block;
  margin-bottom: 10px;
  color: #357838;
  font-size: 15px;
  font-weight: 500;
}

.app-scenarios .chips {
  margin-top: 0;
}

.platform-support .chips {
  margin-top: 0;
}

.app-scenarios .chip,
.platform-support .chip {
  border-color: rgba(53, 120, 56, 0.24);
  color: #357838;
  background: rgba(53, 120, 56, 0.04);
}

.app-accordion {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.app-accordion-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  transition: border-color 0.24s ease, background-color 0.24s ease;
}

.app-accordion-item.is-open {
  border-color: rgba(53, 120, 56, 0.28);
  background: var(--canvas);
}

.app-accordion-trigger {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.22s ease;
}

.app-accordion-trigger::before {
  display: none;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(53, 120, 56, 0.36);
  border-radius: 50%;
  color: #357838;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  content: "?";
  transition: border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}

.app-accordion-trigger::after {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #357838;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  content: "›";
  transition: color 0.22s ease, transform 0.28s ease;
}

.app-accordion-trigger:hover,
.app-accordion-trigger:focus-visible {
  color: #ff7759;
}

.app-accordion-trigger:hover::before,
.app-accordion-trigger:focus-visible::before {
  border-color: rgba(255, 119, 89, 0.68);
  color: #ff7759;
  background: rgba(255, 119, 89, 0.08);
}

.app-accordion-trigger:hover::after,
.app-accordion-trigger:focus-visible::after {
  color: #ff7759;
}

.app-accordion-trigger[aria-expanded="true"] {
  color: #357838;
}

.app-accordion-trigger[aria-expanded="true"]::before {
  background: rgba(53, 120, 56, 0.08);
}

.app-accordion-trigger[aria-expanded="true"]::after {
  color: #357838;
  transform: rotate(90deg);
}

.app-accordion-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.34s ease, opacity 0.24s ease;
}

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

.app-accordion-item.is-open .app-accordion-panel {
  opacity: 1;
}

.app-accordion-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  padding: 0 28px 30px;
}

.app-accordion-content section {
  min-width: 0;
}

.app-accordion-content h3 {
  margin: 0 0 12px;
  color: #357838;
  font-size: 18px;
}

.app-accordion-content p,
.app-accordion-content li {
  color: var(--body-muted);
}

.app-accordion-content p {
  margin: 0;
}

.app-accordion-content ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-accordion-content li {
  position: relative;
  padding-left: 18px;
}

.app-accordion-content li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #357838;
  border-radius: 50%;
  content: "";
}

.resources-accordion {
  margin-top: 0;
}

.resources-accordion .app-accordion-content {
  grid-template-columns: 1fr;
  gap: 22px;
}

.resources-accordion .app-accordion-content section {
  display: grid;
  gap: 14px;
}

.resources-accordion .app-accordion-content strong {
  color: #34383d;
  font-weight: 700;
}

.band-dark {
  padding: 72px;
  background: var(--deep-green);
  color: var(--on-dark);
  border-radius: var(--radius-lg);
}

.band-dark.navy {
  background: var(--dark-navy);
}

.cta-band {
  padding: 72px 0;
  margin-bottom: 0;
  background: #357838;
  color: var(--on-dark);
}

.cta-band h1,
.cta-band h2,
.cta-band h3 {
  color: var(--on-dark);
}

.cta-band .lead {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}

.metric {
  padding: 30px;
  background: var(--canvas);
}

.metric strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.outcome-overview {
  position: relative;
  overflow: hidden;
  background: var(--soft-stone);
}

.outcome-overview .container {
  position: relative;
  z-index: 1;
}

.outcome-overview .lead {
  max-width: none;
  margin-top: 0;
}

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

.outcome-group {
  min-width: 0;
  padding: 0 28px;
  border-left: 1px solid var(--hairline);
}

.outcome-group:first-child {
  padding-left: 0;
  border-left: 0;
}

.outcome-group h3 {
  margin: 0 0 16px;
  color: #357838;
  font-size: 22px;
}

.outcome-group ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.outcome-group li {
  position: relative;
  padding-left: 18px;
  color: var(--body-muted);
}

.outcome-group li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  background: #357838;
  border-radius: 50%;
  content: "";
}

.outcome-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.outcome-metric {
  min-width: 0;
  text-align: center;
}

.outcome-metric strong {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.12em;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
}

.outcome-number {
  color: #357838;
  font-size: clamp(44px, 5.4vw, 68px);
}

.outcome-unit {
  color: #357838;
  font-size: clamp(20px, 2vw, 28px);
}

.outcome-metric > span {
  display: block;
  margin-top: 14px;
  color: var(--body-muted);
  font-size: 15px;
  line-height: 1.6;
}

.timeline {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.step {
  position: relative;
  padding-top: 48px;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--coral);
  font-family: var(--font-mono);
}

.product-flow-visual,
.team-flow-visual {
  width: min(100%, 720px);
  margin: 0 auto;
}

.product-flow-visual img,
.team-flow-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.architecture-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.architecture-features {
  margin-top: 24px;
}

.architecture-features .chips {
  margin-top: 0;
}

.architecture-features .chip {
  border-color: rgba(53, 120, 56, 0.24);
  color: #357838;
  background: rgba(53, 120, 56, 0.04);
}

.architecture-3d {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.architecture-3d::before {
  display: none;
}

.arch-node {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 8px 28px;
  align-items: start;
  min-height: 0;
  padding: 22px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
}

.arch-node::before {
  display: none;
}

.arch-node::after {
  display: none;
}

.arch-label {
  width: max-content;
  margin: 0;
  padding: 0;
  color: #357838;
  background: transparent;
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.arch-node strong {
  font-size: 20px;
  line-height: 1.18;
}

.arch-node em {
  grid-column: 2;
  color: var(--body-muted);
  font-style: normal;
}

.ui-showcase {
  display: grid;
  gap: 42px;
}

.ui-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.ui-row:nth-child(even) {
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
}

.ui-row:nth-child(even) figure {
  order: 2;
}

.ui-row figure {
  margin: 0;
  overflow: hidden;
  background: var(--soft-stone);
  border-radius: var(--radius-sm);
}

.ui-row img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ui-row h3 {
  margin-bottom: 16px;
}

.ui-row p {
  max-width: 520px;
}

.industry-grid {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  min-width: 0;
}

.industry-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: clamp(210px, 22vw, 260px);
  aspect-ratio: 16 / 10;
  padding: 0;
  overflow: hidden;
  background: #1f2824;
}

.industry-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 28, 24, 0.06) 0%, rgba(20, 28, 24, 0.26) 58%, rgba(20, 28, 24, 0.52) 100%);
  content: "";
}

.card.industry-card > img:first-child {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
  transition: transform 320ms ease;
}

.industry-card:hover > img:first-child,
.industry-card:focus-within > img:first-child {
  transform: scale(1.06);
}

.industry-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px 24px 12px;
}

.industry-card h3 {
  margin-bottom: 12px;
  color: #fff;
}

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

.industry-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1.2;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.article-index {
  position: sticky;
  top: 112px;
  padding: 20px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
}

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

.article-block {
  padding: 30px 0;
  border-top: 1px solid var(--hairline);
}

.news-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 220px;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}

.news-row img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.news-section {
  background: var(--canvas);
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.news-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
  padding: 0 0 24px;
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-card:hover,
.news-card:focus-visible {
  border-color: rgba(53, 120, 56, 0.42);
  box-shadow: 0 16px 34px rgba(52, 56, 61, 0.1);
  transform: translateY(-4px);
}

.news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.news-card .chip {
  align-self: flex-start;
  margin: 0 22px;
}

.news-card h2 {
  margin: 0 22px;
  color: #34383d;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.news-article-section {
  background: var(--canvas);
}

.news-article {
  display: grid;
  gap: 26px;
  padding-block: 0;
}

.news-article-header {
  display: grid;
  max-width: 900px;
  gap: 14px;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.news-article-header .chip {
  justify-self: start;
}

.news-article-meta time {
  color: #777;
  font-size: 14px;
  line-height: 1.4;
}

.news-article-header h2 {
  margin: 0;
  color: #34383d;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.news-article-media {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  gap: 18px;
}

.news-article-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.news-article-figure {
  display: grid;
  gap: 8px;
  margin: 0;
}

.news-article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.news-article-caption {
  color: #777;
  font-size: 13px;
  line-height: 1.55;
}

.news-article-content {
  display: grid;
  max-width: 900px;
  gap: 16px;
  color: #616161;
  line-height: 1.75;
}

.news-article-content h2 {
  margin: 6px 0 0;
  color: #34383d;
  font-size: 21px;
}

.news-article-content p,
.news-article-content ul {
  margin: 0;
}

.news-article-content ul {
  display: grid;
  gap: 8px;
  padding-left: 1.1rem;
}

.news-article-content li::marker {
  color: var(--coral);
}

.news-article-actions {
  display: flex;
  justify-content: flex-start;
}

.contact-section {
  background: var(--soft-stone);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.62fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid rgba(0, 60, 51, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 70px rgba(20, 24, 31, 0.1);
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 44px 42px;
  background: #357838;
  color: var(--on-dark);
}

.contact-info-card h1 {
  margin: 0;
  color: var(--on-dark);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.contact-info-list {
  display: grid;
  gap: 26px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-info-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.contact-info-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 40%;
  background: rgba(255, 255, 255, 0.13);
  color: var(--on-dark);
}

.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--on-dark);
  font-size: 18px;
}

.contact-info-item span,
.contact-info-item a {
  color: rgba(255, 255, 255, 0.78);
}

.contact-info-item a:hover,
.contact-info-item a:focus-visible {
  color: var(--on-dark);
}

.form-card {
  width: 100%;
  min-width: 0;
  padding: 44px 48px;
  background: var(--canvas);
  color: var(--ink);
}

.contact-form-card h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.form-card p {
  max-width: 100%;
  color: var(--body-muted);
  font-size: 17px;
}

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

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

label {
  display: block;
  margin-bottom: 6px;
  color: var(--body-muted);
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  background: #f8f8f8;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: #357838;
  box-shadow: 0 0 0 3px rgba(53, 120, 56, 0.12);
}

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

.contact-submit {
  margin-top: 22px;
}

.form-message {
  display: none;
  margin-top: 14px;
  color: var(--deep-green);
  font-weight: 600;
}

.contact-google-form-wrap {
  width: 100%;
  margin-top: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--canvas);
}

.contact-google-form {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 720px;
  border: 0;
}

.contact-map {
  height: 420px;
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(0, 60, 51, 0.08);
  border-radius: var(--radius-lg);
  background: var(--canvas);
  box-shadow: 0 22px 54px rgba(20, 24, 31, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  padding: 56px 0 28px;
  background: #34383d;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 36px;
  align-items: start;
}

.footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.footer-logo {
  display: inline-flex;
  width: 132px;
  max-width: 100%;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-col {
  display: grid;
  gap: 9px;
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.76);
}

.footer p {
  margin-bottom: 0;
}

.footer a {
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.footer-address {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.footer a:hover,
.footer a:focus-visible {
  color: #ff7759;
}

.footer-cta {
  width: max-content;
  margin-top: 8px;
  color: #fff !important;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  color: #ff7759 !important;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.social-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon:hover,
.social-icon:focus-visible {
  border-color: #ff7759;
}

.back-to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 25;
  display: inline-grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #357838;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 60, 51, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

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

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--deep-green);
  box-shadow: 0 18px 42px rgba(0, 60, 51, 0.28);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 119, 89, 0.45);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 1280px) {
  .hero.resources-hero,
  .hero.about-hero,
  .hero.news-hero {
    background-position: 68% center;
  }

  .product-hero .container,
  .resources-hero .container,
  .about-hero .container,
  .news-hero .container,
  .solution-hero .container,
  .cases-hero .container {
    max-width: 620px;
  }

  .product-hero .container {
    max-width: 520px;
  }

  .desktop-line-break {
    display: none;
  }
}

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: 190px minmax(0, 1fr) auto;
  }

  .nav-actions {
    justify-self: end;
  }

  .product-hero .container,
  .resources-hero .container,
  .about-hero .container,
  .news-hero .container,
  .solution-hero .container,
  .cases-hero .container {
    max-width: 480px;
    margin-left: 20px;
  }

  .product-hero .container {
    max-width: 350px;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 115px;
    left: 20px;
    right: 20px;
    z-index: 30;
    padding: 18px;
    background: var(--canvas);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
    justify-content: start;
    text-align: left;
  }

  .nav-links.is-open {
    display: grid;
    gap: 6px;
  }

  .nav-links > a,
  .nav-parent {
    display: flex;
    width: 100%;
    padding: 12px 10px;
  }

  .nav-item {
    display: grid;
    width: 100%;
    gap: 8px;
  }

  .nav-parent {
    width: 100%;
  }

  .submenu {
    position: static;
    display: none;
    top: auto;
    left: auto;
    min-width: 0;
    padding: 0 0 6px 18px;
    background: transparent;
    border: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-item.is-submenu-open .submenu {
    display: grid;
  }

  .has-submenu:focus-within .nav-parent {
    color: #34383d;
  }

  .nav-item.is-current-section .nav-parent,
  .nav-item.is-submenu-open .nav-parent,
  .has-submenu:hover .nav-parent {
    color: #357838;
  }

  .has-submenu:focus-within .submenu,
  .has-submenu:hover .submenu {
    position: static;
    top: auto;
    left: auto;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu::before {
    display: none;
  }

  .submenu a {
    display: block;
    padding: 10px;
    color: var(--body-muted);
  }

  .submenu a:hover {
    background: transparent;
    color: #357838;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .split,
  .contact-panel,
  .architecture-wrap,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .split.solution-band-head,
  .split.app-section-head,
  .outcome-overview .split {
    grid-template-columns: 1fr;
  }

  .split.app-section-head {
    grid-template-areas:
      "title"
      "lead"
      "scenarios";
    align-items: start;
  }

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

  .contact-info-card,
  .form-card {
    padding: 36px 30px;
  }

  .contact-map {
    height: 360px;
    margin-top: 32px;
  }

  .contact-google-form {
    height: 680px;
  }

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

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

  .architecture-3d {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }

  .arch-node {
    margin-top: 0;
  }

  .arch-node::after {
    display: none;
  }

  .ui-row,
  .ui-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .app-accordion-content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ui-row:nth-child(even) figure {
    order: 0;
  }

  .ui-row p {
    max-width: none;
  }

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

  .timeline,
  .metrics,
  .outcome-groups,
  .outcome-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .outcome-group:nth-child(3) {
    margin-top: 28px;
    padding-left: 0;
    border-left: 0;
  }

  .logo-strip {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }

  .article-index {
    position: static;
  }
}

@media (max-width: 900px) {
  .product-hero .container {
    max-width: 340px;
  }
}

@media (max-width: 980px) {
  .hero.resources-hero,
  .hero.about-hero,
  .hero.news-hero {
    background-position: 74% center;
  }

  .hero.solution-hero,
  .hero.cases-hero {
    background-position: 62% center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    grid-template-columns: auto 1fr;
    gap: 12px;
    min-height: 68px;
  }

  .brand img {
    width: 156px;
    max-height: 44px;
  }

  .brand {
    width: 156px;
  }

  .nav-links {
    top: 104px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: 360px;
    padding: 56px 0 40px;
  }

  .hero.product-hero {
    background-image: url("../../img/product/product_banner.jpg");
    background-position: 54% center;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }

  .hero.resources-hero {
    background-image: url("../../img/resource/resources_banner.jpg");
    background-position: 78% center;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }

  .hero.about-hero {
    background-image: url("../../img/about/about_banner.jpg");
    background-position: 78% center;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }

  .hero.news-hero {
    background-image: url("../../img/news/news_banner.jpg");
    background-position: 78% center;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }

  .hero.solution-hero {
    background-image: url("../../img/solution/solution_banner.jpg");
    background-position: 62% center;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }

  .hero.cases-hero {
    background-image: url("../../img/case/cases_banner.jpg");
    background-position: 62% center;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }

  .product-hero .container,
  .resources-hero .container,
  .about-hero .container,
  .news-hero .container,
  .solution-hero .container,
  .cases-hero .container {
    width: min(50%, 200px);
    max-width: 200px;
    margin-left: 14px;
    margin-right: auto;
  }

  .desktop-line-break {
    display: none;
  }

  .hero-home {
    min-height: min(680px, calc(100vh - 108px));
    padding: 72px 0 64px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 46%, rgba(255, 255, 255, 0.22) 100%),
      url("../../img/index/index_banner.png") 72% bottom / cover no-repeat;
  }

  h1 {
    font-size: clamp(29px, 6.6vw, 32px);
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .case-hero h1 {
    width: 100%;
    inline-size: 100%;
    max-width: 100%;
    max-inline-size: calc(100vw - 28px);
    overflow: visible;
    font-size: clamp(26px, 6.8vw, 32px);
    line-height: 1.12;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .hero .lead,
  .case-hero .lead,
  .case-detail-card p {
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-break: anywhere;
  }

  h2 {
    font-size: clamp(24px, 6.2vw, 30px);
    word-break: break-all;
  }

  .section {
    padding: 52px 0;
  }

  .solution-intro {
    padding: 32px 0 12px;
  }

  .solution-intro + .section {
    padding-top: 36px;
  }

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

  .solution-band-head {
    margin-bottom: 34px;
  }

  .solution-layer,
  .solution-features {
    grid-template-columns: 1fr;
  }

  .solution-layer {
    gap: 22px;
  }

  .cta-band {
    padding: 52px 0;
  }

  .section-head {
    display: block;
  }

  .section-head h2,
  .section-title-line {
    width: 100%;
  }

  .section-head h2::after,
  .section-title-line::after {
    max-width: 56px;
  }

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

  .home-cases-head h2 {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }

  .home-cases-head .arrow-link {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .module-path-section .section-head {
    margin-bottom: 22px;
  }

  .module-path-visual {
    width: 100%;
  }

  .product-flow-visual,
  .team-flow-visual {
    width: 100%;
  }

  .app-accordion {
    margin-top: 28px;
  }

  .app-accordion-trigger {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 20px;
    font-size: 17px;
  }

  .app-accordion-trigger::before,
  .app-accordion-trigger::after {
    width: 30px;
    height: 30px;
  }

  .app-accordion-trigger::after {
    font-size: 21px;
  }

  .app-accordion-content {
    padding: 0 20px 26px;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .timeline,
  .metrics,
  .outcome-groups,
  .outcome-metrics,
  .console-grid,
  .architecture-3d,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

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

  .industry-card-content {
    padding: 20px 20px 10px;
  }

  .outcome-group,
  .outcome-group:nth-child(3) {
    margin-top: 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--hairline);
    border-left: 0;
  }

  .outcome-group:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .row,
  .news-row,
  .case-detail-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .news-card:hover,
  .news-card:focus-visible {
    transform: translateY(-3px);
  }

  .footer {
    padding: 44px 0 24px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }

  .case-story-section {
    overflow-x: hidden;
  }

  .related-cases,
  .related-case {
    min-width: 0;
    max-width: 100%;
  }

  .related-case strong {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .case-insight-summary {
    margin-bottom: 24px;
  }

  .case-insight-card {
    padding: 22px 18px;
  }

  .case-insight-card:hover,
  .case-insight-card:focus-within {
    transform: translateY(-3px);
  }

  .case-insight-tags span,
  .case-insight-stat span {
    overflow-wrap: anywhere;
  }

  .card > img:first-child {
    width: calc(100% + 40px);
    margin: -20px -20px 20px;
  }

  .app-card h3,
  .app-card p,
  .case-card h3,
  .case-card p,
  .case-list-card .eyebrow,
  .case-list-card h3,
  .case-list-card span {
    margin-inline: 20px;
  }

  .case-list-card span {
    margin-bottom: 22px;
  }

  .app-card p,
  .case-card p {
    margin-bottom: 30px;
  }

  .app-card p:last-child,
.case-card p:last-child {
  margin-bottom: 32px;
}

  .cases-catalog .case-card h3 {
    margin-bottom: 12px;
  }

  .cases-catalog .case-card .case-card-link {
    margin-top: auto;
    margin-right: 20px;
    margin-bottom: 32px;
  }

  .case-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .case-actions .btn,
  .case-actions .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .case-hero .container,
  .case-detail-grid,
  .case-detail-card,
  .case-detail-card > * {
    min-width: 0;
    max-width: 100%;
    overflow: visible;
  }

  .case-detail-grid .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .case-detail-grid .hero-actions .btn,
  .case-detail-grid .hero-actions .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .architecture-3d {
    padding: 28px 22px;
    gap: 24px;
    background-size: 28px 28px;
  }

  .architecture-3d::before {
    display: none;
  }

  .arch-node {
    grid-template-columns: 1fr;
    min-height: auto;
    box-shadow: none;
  }

  .arch-label {
    margin-left: 0;
  }

  .arch-node em {
    grid-column: 1;
  }

  .arch-node strong,
  .arch-node em {
    margin-left: 0;
  }

  .ui-showcase {
    gap: 24px;
  }

  .ui-row {
    gap: 22px;
    padding: 18px;
  }

  .band-dark {
    padding: 36px 22px;
  }

  .form-card {
    padding: 28px 24px;
  }

  .contact-info-card {
    padding: 30px 24px;
  }

  .contact-info-list {
    gap: 22px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .contact-info-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .contact-map {
    height: 300px;
  }

  .news-row img {
    order: -1;
  }
}

@media (max-width: 500px) {
  .hero.product-hero {
    background-position: 53% center;
  }

  .product-hero .container {
    width: min(43%, 168px);
    max-width: 168px;
    margin-left: 12px;
  }

  .product-hero h1 {
    font-size: clamp(27px, 6.4vw, 30px);
  }

  .product-hero .lead {
    margin-top: 12px;
    font-size: 13.5px;
    line-height: 1.42;
    overflow-wrap: normal;
    word-break: normal;
    line-break: auto;
  }

  .product-hero .eyebrow {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .hero.resources-hero,
  .hero.about-hero,
  .hero.news-hero {
    background-position: 82% center;
  }

  .brand,
  .brand img {
    width: 138px;
  }

  .nav-actions .btn {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-home {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 46%, rgba(255, 255, 255, 0.22) 100%),
      url("../../img/index/index_banner.png") 76% bottom / cover no-repeat;
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }

  .back-to-top svg {
    width: 20px;
    height: 20px;
  }

  .logo-strip {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }

  .logo-strip img {
    height: 96px;
    padding: 18px 24px;
  }

  .contact-shell,
  .contact-map {
    border-radius: var(--radius-md);
  }

  .contact-info-card,
  .form-card {
    padding: 26px 20px;
  }

  textarea {
    min-height: 150px;
  }

  .contact-map {
    height: 260px;
  }

  .contact-google-form {
    height: 640px;
  }
}

@media (max-width: 420px) {
  .hero.product-hero {
    background-position: 52% center;
  }

  .product-hero .container {
    width: min(42%, 154px);
    max-width: 154px;
  }

  .product-hero .lead {
    font-size: 13px;
    line-height: 1.38;
  }
}
