:root {
  --bg: #010813;
  --surface: #0f1728;
  --surface-alt: #121d33;
  --surface-strong: #182540;
  --text: #f3f7ff;
  --muted: #adc0e0;
  --line: rgba(165, 193, 232, 0.16);
  --line-strong: rgba(109, 184, 255, 0.32);
  --primary: #6dc8ff;
  --primary-deep: #dceeff;
  --teal: #44d5ff;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1560px;
  --image-overlay-gradient: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 100%);
}

* {
  box-sizing: border-box;
}

html {
  background: #010813;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #010813;
  color: var(--text);
  font-family: "Manrope", "Noto Sans SC", "Segoe UI", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

body:has(.nav-item--mega:hover),
body:has(.nav-item.is-open) {
  overflow-y: hidden;
}

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

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

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
  background: #010813;
}

#app {
  min-height: 100vh;
  background: #010813;
}

.shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  transition: background 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(109, 200, 255, 0.18);
  background: rgba(1, 8, 19, 0.4);
  backdrop-filter: blur(18px) saturate(128%);
  box-shadow: inset 0 -1px 0 rgba(109, 200, 255, 0.08), 0 12px 32px rgba(0, 0, 0, 0.22);
}

.site-header:hover,
.site-header:focus-within {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.shell--header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  min-height: 84px;
  width: 100%;
  max-width: none;
  padding: 0 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  margin-right: 28px;
}

.brand img {
  width: 118px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  filter: brightness(0) invert(1);
  transition: filter 0.22s ease;
}

.site-header:hover .brand img,
.site-header:focus-within .brand img {
  filter: none;
}

.brand-copy {
  display: flex;
  align-items: center;
}

.brand-company {
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  transition: color 0.22s ease;
}

.site-header:hover .brand-company,
.site-header:focus-within .brand-company {
  color: #11243f;
}

.header-panel {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
  gap: 28px;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}

.site-nav a {
  padding: 31px 2px 27px;
  margin: 0 18px;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a.is-active {
  font-weight: 700;
}

.site-header:hover .site-nav a,
.site-header:focus-within .site-nav a {
  color: #11243f;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #ffffff;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.72);
}

.site-header:hover .site-nav a:hover,
.site-header:hover .site-nav a.is-active,
.site-header:focus-within .site-nav a:hover,
.site-header:focus-within .site-nav a.is-active {
  color: #165ec9;
  border-bottom-color: #165ec9;
}

.nav-item {
  position: relative;
}

.nav-item--mega {
  position: static;
}

.nav-item__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 31px 2px 27px;
  margin: 0 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  background: transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-item.is-active .nav-item__toggle {
  font-weight: 700;
}

.site-header:hover .nav-item__toggle,
.site-header:focus-within .nav-item__toggle {
  color: #11243f;
}

.nav-item__toggle:hover,
.nav-item.is-active .nav-item__toggle,
.nav-item.is-open .nav-item__toggle {
  color: #ffffff;
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.72);
}

.site-header:hover .nav-item__toggle:hover,
.site-header:hover .nav-item.is-active .nav-item__toggle,
.site-header:hover .nav-item.is-open .nav-item__toggle,
.site-header:focus-within .nav-item__toggle:hover,
.site-header:focus-within .nav-item.is-active .nav-item__toggle,
.site-header:focus-within .nav-item.is-open .nav-item__toggle {
  color: #165ec9;
  border-bottom-color: #165ec9;
}

.nav-item__toggle i {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.nav-item.is-open .nav-item__toggle i {
  transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  display: none;
  grid-template-columns: minmax(0, 1fr);
  width: 100vw;
  max-width: 100vw;
  height: calc(100vh - 84px);
  max-height: calc(100vh - 84px);
  overflow: hidden;
  justify-items: center;
  padding: 44px 0 48px;
  border-top: 0;
  border-bottom: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 20px 38px rgba(17, 36, 63, 0.1);
  transform: translateX(-50%);
}

.nav-item.is-open .mega-menu,
.nav-item:hover .mega-menu {
  display: grid;
}

.mega-menu__column h4 {
  margin: 0 0 10px;
  color: #165ec9;
  font-size: 20px;
  line-height: 1.4;
  text-align: left;
}

.mega-menu__column p,
.mega-menu__links a span {
  color: #56708f;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.mega-menu__column p,
.mega-menu__links a span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  align-content: start;
  width: min(calc(80vw - 96px), 1408px);
  height: 100%;
  margin: 0 auto;
  justify-self: center;
}

.mega-menu__columns--1 .mega-menu__column {
  grid-column: 1 / -1;
}

.mega-menu__columns--1 .mega-menu__links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 28px;
}

.mega-menu__column {
  min-height: 260px;
  padding: 26px 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
}

.mega-menu__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 20px;
  margin-left: 0;
  padding-left: 0;
  border-top: 0;
  justify-items: stretch;
}

.mega-menu__links a {
  position: relative;
  display: block;
  min-height: 106px;
  margin: 0;
  padding: 16px 28px 16px 0;
  border-radius: 0;
  background: transparent;
  border-bottom: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-menu__links a::after {
  position: absolute;
  top: 18px;
  right: 2px;
  color: #9aacbf;
  content: ">";
  font-size: 15px;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-menu__links a strong {
  display: block;
  margin-bottom: 6px;
  color: #165ec9;
  font-size: 16px;
  line-height: 1.45;
  text-align: left;
}

.mega-menu__links a:hover {
  background: rgba(109, 200, 255, 0.1);
  border-color: transparent;
  transform: none;
}

.mega-menu__links a:hover strong {
  color: #165ec9;
}

.mega-menu__links a:hover::after {
  color: #165ec9;
  transform: none;
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.lang-switch button {
  padding: 5px 10px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.2;
  background: transparent;
  transition: color 0.22s ease, background 0.22s ease;
}

.lang-switch button.is-active {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
}

.site-header:hover .lang-switch,
.site-header:focus-within .lang-switch {
  background: #f3f7fd;
  border-color: rgba(17, 36, 63, 0.08);
}

.site-header:hover .lang-switch button,
.site-header:focus-within .lang-switch button {
  color: #56708f;
}

.site-header:hover .lang-switch button.is-active,
.site-header:focus-within .lang-switch button.is-active {
  color: #24344a;
  background: rgba(26, 45, 70, 0.12);
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border-radius: 4px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.site-header:hover .menu-toggle,
.site-header:focus-within .menu-toggle {
  color: #0b2d63;
  background: #f3f7fd;
  border-color: rgba(17, 36, 63, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%),
    var(--hero-visual) center/cover no-repeat;
}

.hero--home {
  background: #010813;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.hero--subpage::before,
.hero--collection::before,
.hero--detail::before {
  background:
    linear-gradient(90deg, rgba(1, 8, 19, 0.1) 0%, rgba(1, 8, 19, 0.1) 52%, rgba(1, 8, 19, 0.1) 100%),
    linear-gradient(180deg, rgba(1, 8, 19, 0.1) 0%, rgba(1, 8, 19, 0.1) 72%, rgba(1, 8, 19, 0.1) 100%);
}

.hero-carousel {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.85s ease, transform 5s ease;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.08) 100%);
  content: "";
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 92px 0 88px;
}

.hero--home .hero-grid {
  grid-template-columns: minmax(0, 1fr);
  padding: 156px 0 154px;
}

.hero--home .hero-kicker,
.hero--home .hero-copy h1,
.hero--home .hero-copy p,
.hero--home .hero-actions {
  transform: translateY(-28px);
}

.hero-grid--subpage {
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  color: #ffffff;
}

.hero--home .hero-copy {
  width: 100%;
  max-width: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.hero--home .hero-copy__lead {
  width: fit-content;
  max-width: 1560px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: none;
  margin: 22px 0 18px;
  font-size: 38px;
  line-height: 1.5;
  letter-spacing: 0;
}

.hero--home .hero-copy h1 {
  max-width: none;
  white-space: nowrap;
  font-size: 38px;
  line-height: 1.5;
  letter-spacing: 0;
}

.hero-grid--subpage .hero-copy h1 {
  margin-top: 0;
  font-size: 38px;
  white-space: nowrap;
}

.hero-grid--subpage .hero-copy > p {
  max-width: none;
  font-size: 18px;
  white-space: nowrap;
}

.hero-copy p {
  max-width: 60ch;
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.hero--home .hero-copy p {
  max-width: 1560px;
  font-size: 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 14px 22px;
  border: 1px solid rgba(109, 200, 255, 0.68);
  border-radius: 4px;
  background: transparent;
  color: var(--primary);
  font-size: 14px;
  line-height: 1.5;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--primary);
  background: transparent;
  box-shadow: none;
}

.button--ghost {
  color: var(--primary);
  border-color: rgba(109, 200, 255, 0.68);
  background: transparent;
}

.button:hover {
  border-color: var(--primary);
  background: rgba(109, 200, 255, 0.08);
  box-shadow: 0 12px 28px rgba(24, 151, 255, 0.16);
}

.hero--home .button {
  color: #53f2a8;
  border-color: #53f2a8;
  background: rgba(21, 67, 47, 0.5);
  text-shadow: none;
  box-shadow: none;
  font-size: 16px;
}

.hero--home .button--primary {
  color: #53f2a8;
  border-color: #53f2a8;
  background: rgba(21, 67, 47, 0.5);
}

.hero--home .button--ghost {
  color: #53f2a8;
  border-color: #53f2a8;
  background: rgba(21, 67, 47, 0.5);
}

.hero--home .button:hover {
  color: #8cffc7;
  border-color: #8cffc7;
  background: rgba(83, 242, 168, 0.08);
  box-shadow: none;
}

body[data-page="detail"][data-collection="solutions"] .hero--detail .button,
body[data-page="detail"][data-collection="products"] .hero--detail .button,
body[data-page="detail"][data-collection="cases"] .hero--detail .button {
  color: #53f2a8;
  border-color: #53f2a8;
  background: rgba(21, 67, 47, 0.5);
  box-shadow: none;
  font-size: 16px;
}

body[data-page="detail"][data-collection="solutions"] .hero--detail .button:hover,
body[data-page="detail"][data-collection="products"] .hero--detail .button:hover,
body[data-page="detail"][data-collection="cases"] .hero--detail .button:hover {
  color: #8cffc7;
  border-color: #8cffc7;
  background: rgba(83, 242, 168, 0.08);
  box-shadow: none;
}

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

.hero--home .metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
  transform: translateY(40px);
  width: 100%;
}

.metric-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 122px;
  gap: 24px;
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.metric-card strong,
.metric-card__summary {
  display: block;
}

.metric-card__icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background: transparent;
  box-shadow: none;
}

.metric-card__icon-image {
  width: 84px;
  height: 84px;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(0, 224, 206, 0.18)) drop-shadow(0 10px 20px rgba(22, 143, 255, 0.14));
}

.metric-card strong {
  font-size: 24px;
  line-height: 1.5;
}

.metric-card__summary {
  margin-top: 4px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.hero-inline-panel {
  display: grid;
  max-width: 920px;
  gap: 10px;
  margin-top: 30px;
  padding-left: 0;
  border-left: 0;
}

.hero-inline-panel span {
  color: var(--primary);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-inline-panel strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.5;
}

.hero-inline-panel p {
  max-width: 72ch;
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
}

.hero-inline-panel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hero-inline-panel__list em {
  padding: 6px 10px;
  border: 1px solid rgba(109, 200, 255, 0.42);
  border-radius: 4px;
  color: #d8efff;
  font-style: normal;
  font-size: 12px;
  line-height: 1.5;
}

.hero-visual-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(10, 30, 63, 0.34);
  box-shadow: 0 26px 60px rgba(5, 15, 31, 0.24);
}

.hero-visual-card__label {
  color: #9fd6ff;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual-card h2 {
  margin: 16px 0 12px;
  font-size: 24px;
  line-height: 1.5;
}

.hero-visual-card p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.hero-visual-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-visual-card__list span {
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  line-height: 1.5;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  display: inline-flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 42px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.24);
  border: 0;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-dot.is-active {
  background: #ffffff;
  transform: scaleX(1.08);
}

.section-band {
  position: relative;
  overflow: hidden;
  padding: 28px 0 48px;
  border-top: 1px solid rgba(109, 200, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(1, 8, 19, 0.98) 0%, rgba(4, 21, 45, 0.72) 54%, rgba(12, 44, 76, 0.34) 100%),
    #010813;
}

.section-band--alt {
  background:
    linear-gradient(180deg, rgba(1, 8, 19, 0.98) 0%, rgba(6, 25, 51, 0.7) 54%, rgba(11, 39, 68, 0.3) 100%),
    #010813;
}

.hero--home {
  border-bottom: 1px solid rgba(109, 200, 255, 0.12);
  box-shadow: none;
}

.hero--home::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(1, 8, 19, 0.08) 0%, rgba(1, 8, 19, 0.08) 48%, rgba(1, 8, 19, 0.08) 100%),
    linear-gradient(180deg, rgba(1, 8, 19, 0.08) 0%, rgba(1, 8, 19, 0.08) 72%, rgba(1, 8, 19, 0.08) 100%);
  pointer-events: none;
}

.hero--subpage .hero-inline-panel span,
.hero--collection .hero-inline-panel span,
.hero--detail .hero-inline-panel span,
.breadcrumb {
  color: #53f2a8;
  font-size: 20px;
  font-weight: 700;
}

.hero--subpage .hero-inline-panel strong,
.hero--collection .hero-inline-panel strong,
.hero--detail .hero-inline-panel strong {
  font-size: 24px;
}

.hero--subpage .hero-inline-panel p,
.hero--collection .hero-inline-panel p,
.hero--detail .hero-inline-panel p {
  color: #ffffff;
  font-size: 24px;
  line-height: 1.6;
}

body[data-page="contact"] .hero--subpage .hero-inline-panel {
  gap: 8px;
}

body[data-page="contact"] .hero--subpage .hero-inline-panel strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}

body[data-page="contact"] .hero--subpage .hero-inline-panel p {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
}

body[data-page="contact"] .secondary-sections-grid {
  grid-template-columns: minmax(0, 1fr);
}

body[data-page="contact"] .secondary-section-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.hero--home + .section-band {
  margin-top: 0;
  padding-top: 44px;
}

.section-band + .section-band {
  margin-top: 0;
}

.section-heading {
  max-width: 68ch;
  margin-bottom: 28px;
}

.section-heading span,
.content-panel__kicker {
  color: var(--primary);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading h2,
.content-panel h2,
.content-panel h3 {
  margin: 14px 0 14px;
  font-size: 24px;
  line-height: 1.5;
}

.section-heading p,
.content-panel p,
.mini-panel p,
.feature-card p,
.stack-list__item p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.primary-grid,
.spotlight-grid,
.secondary-grid,
.collection-grid,
.detail-card-grid {
  display: grid;
  gap: 20px;
}

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

.spotlight-grid,
.secondary-grid,
.collection-grid,
.detail-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.content-panel:not(.secondary-unified-panel),
.mini-panel,
.category-strip a {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    var(--image-overlay-gradient),
    var(--panel-visual, url("./assets/theme-about.jpg")) center/cover no-repeat;
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background:
    var(--image-overlay-gradient),
    var(--card-visual, none) center/cover no-repeat;
}

.hero--home ~ .section-band .feature-card {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.28) 100%),
    var(--card-visual, none) center/cover no-repeat;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  background: transparent;
  content: "";
}

.feature-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px;
}

.feature-card__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(109, 200, 255, 0.12);
  color: #d8efff;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag-list span {
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #d7e8ff;
  font-size: 12px;
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  width: fit-content;
  padding: 10px 16px;
  color: var(--primary);
  background: transparent;
  border: 1px solid rgba(109, 200, 255, 0.68);
  border-radius: 4px;
  box-shadow: none;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.text-link:hover {
  border-color: var(--primary);
  background: rgba(109, 200, 255, 0.08);
  box-shadow: 0 10px 24px rgba(24, 151, 255, 0.14);
}

.theme-solutions { --card-visual: url("./assets/theme-solutions-grid-metal.jpg"); }
.theme-products { --card-visual: url("./assets/theme-products.jpg"); }
.theme-cases { --card-visual: url("./assets/theme-cases.jpg"); }
.theme-about { --card-visual: url("./assets/theme-about.jpg"); }
.theme-sustainability { --card-visual: url("./assets/theme-sustainability.jpg"); }
.theme-careers { --card-visual: url("./assets/theme-careers.jpg"); }
.theme-contact { --card-visual: url("./assets/theme-contact.jpg"); }
.theme-manufacturing-home { --card-visual: url("./assets/theme-manufacturing-home.jpg"); }
.theme-manufacturing { --card-visual: url("./assets/theme-manufacturing.jpg"); }
.theme-mobility { --card-visual: url("./assets/theme-mobility.jpg"); }
.theme-retail { --card-visual: url("./assets/theme-retail.jpg"); }
.theme-media { --card-visual: url("./assets/theme-media.jpg"); }
.theme-finance { --card-visual: url("./assets/theme-finance.jpg"); }
.theme-energy { --card-visual: url("./assets/theme-energy.jpg"); }
.theme-ai { --card-visual: url("./assets/theme-ai.jpg"); }
.theme-perception { --card-visual: url("./assets/theme-perception.jpg"); }
.theme-connectivity { --card-visual: url("./assets/theme-connectivity.jpg"); }
.theme-intelligence { --card-visual: url("./assets/theme-intelligence.jpg"); }
.theme-case { --card-visual: url("./assets/theme-case.jpg"); }
.theme-case-manufacturing-home { --card-visual: url("./assets/home-case-manufacturing-new.jpg"); }
.theme-case-expansion-home { --card-visual: url("./assets/home-case-expansion-new.jpg"); }

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

.content-panel {
  padding: 28px;
}

.content-panel--compact {
  align-self: start;
}

.content-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.secondary-unified-panel {
  padding: 36px 42px;
  background: transparent;
}

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

.secondary-unified__section {
  min-width: 0;
  padding-right: 42px;
}

.secondary-unified__section + .secondary-unified__section {
  padding-right: 0;
  padding-left: 42px;
  border-left: 1px solid rgba(109, 200, 255, 0.14);
}

.secondary-unified__points {
  display: grid;
  gap: 0;
  margin-top: 22px;
}

.secondary-unified__point {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(109, 200, 255, 0.12);
}

.secondary-unified__point strong {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.5;
}

.secondary-unified__point p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

.secondary-layout {
  display: grid;
  gap: 28px;
}

.secondary-overview {
  max-width: 980px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(109, 200, 255, 0.14);
}

.secondary-overview h2 {
  margin: 14px 0 14px;
  font-size: 32px;
  line-height: 1.4;
  color: #ffffff;
}

.secondary-overview p {
  max-width: 72ch;
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
}

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

.secondary-section-card {
  min-width: 0;
  padding: 26px 28px 10px;
  border: 1px solid rgba(165, 193, 232, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.secondary-section-card h3 {
  margin: 14px 0 14px;
  font-size: 26px;
  line-height: 1.45;
  color: #ffffff;
}

.secondary-section-card > p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.8;
}

.secondary-section-points {
  display: grid;
  gap: 0;
  margin-top: 22px;
}

.secondary-section-point {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(109, 200, 255, 0.12);
}

.secondary-section-point strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
}

.secondary-section-point p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
}

.mini-panel {
  padding: 20px;
  background:
    var(--image-overlay-gradient),
    url("./assets/theme-contact.jpg") center/cover no-repeat;
}

.mini-panel strong,
.stack-list__item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.5;
}

.category-strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-strip a {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  padding: 18px 20px;
  color: var(--text);
}

.category-strip strong {
  font-size: 14px;
  line-height: 1.5;
}

.category-strip span {
  margin-top: 8px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.5;
}

.stack-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.stack-list--tight {
  margin-top: 16px;
}

.stack-list__item {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background:
    var(--image-overlay-gradient),
    url("./assets/theme-energy.jpg") center/cover no-repeat;
  border: 1px solid rgba(165, 193, 232, 0.14);
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: #9fd6ff;
  font-size: 18px;
  line-height: 1.5;
}

body[data-page="solutions"] .hero--collection .hero-inline-panel span,
body[data-page="products"] .hero--collection .hero-inline-panel span,
body[data-page="cases"] .hero--collection .hero-inline-panel span,
body[data-page="detail"][data-collection="solutions"] .hero--detail .hero-inline-panel span,
body[data-page="detail"][data-collection="products"] .hero--detail .hero-inline-panel span,
body[data-page="detail"][data-collection="cases"] .hero--detail .hero-inline-panel span,
body[data-page="detail"][data-collection="solutions"] .hero--detail .breadcrumb,
body[data-page="detail"][data-collection="products"] .hero--detail .breadcrumb,
body[data-page="detail"][data-collection="cases"] .hero--detail .breadcrumb {
  color: #53f2a8;
  font-weight: 700;
}

.site-footer {
  padding: 0 0 42px;
}

.footer-grid {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 26px 28px 26px 4px;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="solutions"] .feature-card,
body[data-page="products"] .feature-card,
body[data-page="cases"] .feature-card,
body[data-page="solutions"] .category-strip a,
body[data-page="products"] .category-strip a,
body[data-page="cases"] .category-strip a,
body[data-page="detail"][data-collection="solutions"] .content-panel:not(.secondary-unified-panel),
body[data-page="detail"][data-collection="products"] .content-panel:not(.secondary-unified-panel),
body[data-page="detail"][data-collection="cases"] .content-panel:not(.secondary-unified-panel),
body[data-page="detail"][data-collection="solutions"] .stack-list__item,
body[data-page="detail"][data-collection="products"] .stack-list__item,
body[data-page="detail"][data-collection="cases"] .stack-list__item,
.footer-grid {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.footer-brand,
.footer-brand--stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 0;
  letter-spacing: 0.12em;
}

.footer-brand p,
.footer-brand span,
.footer-meta span {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.5;
}

.footer-meta {
  display: grid;
  gap: 8px;
  align-content: start;
}

@media (max-width: 1040px) {
  .hero-grid,
  .detail-layout,
  .primary-grid,
  .spotlight-grid,
  .secondary-grid,
  .collection-grid,
  .detail-card-grid,
  .secondary-sections-grid,
  .secondary-unified__body,
  .content-panel__grid {
    grid-template-columns: 1fr;
  }

  .secondary-unified__section,
  .secondary-unified__section + .secondary-unified__section {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .secondary-unified__section + .secondary-unified__section {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(109, 200, 255, 0.14);
  }

  .secondary-overview {
    padding-bottom: 16px;
  }

  .secondary-overview h2 {
    font-size: 28px;
  }

  .secondary-section-card {
    padding: 22px 22px 8px;
  }

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

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: rgba(7, 19, 40, 0.96);
    box-shadow: 0 24px 40px rgba(17, 36, 63, 0.18);
  }

  .header-panel.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    margin: 0;
    padding: 14px 8px;
    border-bottom-width: 1px;
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .nav-item__toggle {
    width: 100%;
    justify-content: space-between;
    margin: 0;
    padding: 14px 8px;
    border-bottom-width: 1px;
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .mega-menu {
    position: static;
    display: none;
    width: 100%;
    height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    margin-top: 10px;
    padding: 16px;
    border: 1px solid rgba(17, 36, 63, 0.08);
    border-radius: 8px;
    transform: none;
  }

  .nav-item.is-open .mega-menu,
  .nav-item:hover .mega-menu {
    display: grid;
  }

  .mega-menu__columns {
    grid-template-columns: 1fr;
    height: auto;
  }

  .mega-menu__columns--1 .mega-menu__links {
    grid-template-columns: 1fr;
  }

  .lang-switch {
    align-self: flex-start;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .shell--header {
    padding: 0 14px;
  }

  .hero-grid {
    padding: 74px 0 68px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: 30px;
  }

  .hero--home .hero-copy h1,
  .hero-grid--subpage .hero-copy h1 {
    white-space: normal;
  }

  .hero-grid--subpage .hero-copy > p {
    white-space: normal;
  }

  .section-band {
    padding: 34px 0;
  }

  .secondary-unified-panel {
    padding: 26px 22px;
  }

  .secondary-unified__point {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .secondary-section-point {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-grid {
    flex-direction: column;
  }
}
