:root {
  --bg: #ffffff;
  --bg-soft: #f5f3f1;
  --bg-card: #ffffff;
  --bg-dark: #10161d;
  --text: #151515;
  --text-soft: #6f6962;
  --text-faint: #a19992;
  --line: rgba(21, 21, 21, 0.08);
  --line-strong: rgba(21, 21, 21, 0.14);
  --accent: #c11d24;
  --accent-soft: #f4dadd;
  --cyan: #86ddff;
  --max-width: min(1180px, calc(100vw - 40px));
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 22px 54px rgba(15, 18, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Noto Sans SC", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.container {
  width: var(--max-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Noto Sans SC", sans-serif !important;
  background: transparent;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.site-header .container {
  width: min(1920px, calc(100vw - clamp(48px, 4vw, 80px)));
}

.site-header.is-hidden {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.home-page .site-header:not(.is-scrolled) {
  backdrop-filter: none;
}

.home-page .site-header.is-scrolled {
  background: rgba(10, 15, 22, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-bar {
  min-height: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: 100% !important;
  box-sizing: border-box !important;
}

.site-header .container {
  width: 100% !important;
  max-width: 1920px !important;
  padding: 0 clamp(24px, 2vw, 40px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  justify-self: start;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.home-page .brand {
  color: #ffffff;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  position: relative;
  min-height: 60px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
  line-height: 60px !important;
  box-sizing: border-box !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--accent);
}

.home-page .nav-link {
  color: rgba(255, 255, 255, 0.85);
}

.home-page .nav-link:hover,
.home-page .nav-link.is-active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link__label {
  display: inline-flex;
  align-items: center;
}

.nav-link__caret {
  width: 8px;
  height: 8px;
  display: inline-flex;
  flex: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-link__caret,
.nav-item.is-open .nav-link__caret {
  transform: rotate(225deg) translateY(-1px);
}

.header-cta {
  align-self: center;
  min-height: 38px;
  justify-self: end;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(193, 29, 36, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box !important;
  margin: 0 !important;
  line-height: 1 !important;
}

.header-cta:hover {
  transform: translateY(-1px);
  background: #b31920;
  box-shadow: 0 14px 28px rgba(193, 29, 36, 0.22);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease;
}

.home-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.home-page .nav-toggle span {
  background: #ffffff;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.submenu-toggle {
  display: none;
}

.mega-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  width: min(760px, 78vw);
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: 0 20px 46px rgba(17, 21, 27, 0.1);
  transform: translateX(-50%) translateY(10px);
  transform-origin: top center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.nav-item--about .mega-menu {
  width: min(560px, 62vw);
}

.home-page .mega-menu--solutions-home {
  width: min(1040px, 84vw);
  padding: 18px;
  border-radius: 30px;
}

.nav-item:hover .mega-menu,
.nav-item.is-open .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.home-page .solutions-mega {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
}

.home-page .solutions-mega__group {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 246, 244, 0.88));
  border: 1px solid rgba(21, 21, 21, 0.06);
}

.home-page .solutions-mega__group h3 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-page .solutions-mega__list {
  display: grid;
  gap: 12px;
}

.home-page .solutions-mega__item {
  min-height: 78px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 21, 21, 0.06);
  box-shadow: 0 12px 24px rgba(15, 18, 24, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-page .solutions-mega__item:hover {
  transform: translateY(-3px);
  border-color: rgba(193, 29, 36, 0.16);
  box-shadow: 0 18px 30px rgba(15, 18, 24, 0.08);
}

.home-page .solutions-mega__item strong {
  color: #d61f2a;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-page .solutions-mega__badge {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.home-page .solutions-mega__badge--industry {
  background: linear-gradient(180deg, #cc2128 0%, #9f0f14 100%);
}

.home-page .solutions-mega__badge--review {
  background: linear-gradient(180deg, #ff563d 0%, #d52717 100%);
}

.home-page .solutions-mega__badge--edu {
  background: linear-gradient(180deg, #a21f27 0%, #781218 100%);
}

.home-page .solutions-mega__badge--ip {
  background: linear-gradient(180deg, #2d58a6 0%, #172f6c 100%);
}

.home-page .solutions-mega__badge--land {
  background: linear-gradient(180deg, #4f9a6a 0%, #2e6c45 100%);
}

.home-page .solutions-mega__badge--hearing {
  background: linear-gradient(180deg, #4a8dff 0%, #2855d8 100%);
}

.home-page .solutions-mega__badge--speech {
  background: linear-gradient(180deg, #ff9d2a 0%, #ff5d3d 100%);
}

.home-page .solutions-mega__badge--publish {
  background: linear-gradient(180deg, #ff7f2b 0%, #e24b16 100%);
}

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

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

.mega-card {
  display: block;
  padding: 10px;
  border-radius: 18px;
  background: #fffdfd;
  border: 1px solid rgba(21, 21, 21, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mega-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 29, 36, 0.14);
  box-shadow: 0 16px 34px rgba(15, 18, 24, 0.08);
}

.mega-card__visual {
  display: block;
  height: 122px;
  margin-bottom: 14px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.mega-card__visual::before,
.mega-card__visual::after {
  content: "";
  position: absolute;
}

.mega-card__visual--arbitration {
  background:
    radial-gradient(circle at 26% 26%, rgba(255, 255, 255, 0.28), transparent 16%),
    linear-gradient(180deg, #bf1c22 0%, #6c0d11 100%);
}

.mega-card__visual--arbitration::before {
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.mega-card__visual--arbitration::after {
  left: 50%;
  bottom: 52px;
  width: 74px;
  height: 42px;
  transform: translateX(-50%);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-bottom-color: transparent;
  border-radius: 999px 999px 8px 8px;
}

.mega-card__visual--service {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.26), transparent 18%),
    linear-gradient(180deg, #43588a 0%, #212c46 100%);
}

.mega-card__visual--service::before {
  left: 18px;
  top: 18px;
  width: 86px;
  height: 86px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.62);
}

.mega-card__visual--service::after {
  right: 18px;
  bottom: 18px;
  width: 88px;
  height: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.84));
  box-shadow: 0 -20px 0 rgba(255, 255, 255, 0.16), 0 -40px 0 rgba(255, 255, 255, 0.1);
}

.mega-card__visual--compliance {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.26), transparent 22%),
    linear-gradient(180deg, #f0ecea 0%, #dad3cf 100%);
}

.mega-card__visual--compliance::before {
  left: 50%;
  top: 20px;
  width: 70px;
  height: 84px;
  transform: translateX(-50%);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f3f0 100%);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.mega-card__visual--compliance::after {
  left: 50%;
  top: 46px;
  width: 28px;
  height: 28px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
}

.mega-card__visual--company {
  background:
    radial-gradient(circle at 52% 22%, rgba(255, 255, 255, 0.28), transparent 16%),
    linear-gradient(180deg, #7a0b10 0%, #2e0b12 100%);
}

.mega-card__visual--company::before {
  left: 50%;
  top: 26px;
  width: 48px;
  height: 48px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.74);
}

.mega-card__visual--company::after {
  left: 22px;
  right: 22px;
  bottom: 16px;
  height: 54px;
  background: rgba(255, 255, 255, 0.14);
}

.mega-card__visual--timeline {
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(180deg, #ece7e3 0%, #dad4cf 100%);
}

.mega-card__visual--timeline::before {
  left: 24px;
  right: 24px;
  top: 58px;
  height: 2px;
  background: rgba(21, 21, 21, 0.14);
}

.mega-card__visual--timeline::after {
  left: 30px;
  top: 49px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 88px 0 0 var(--accent), 176px 0 0 var(--accent);
}

.mega-card strong,
.mega-card small {
  display: block;
}

.mega-card strong {
  font-size: 0.96rem;
}

.mega-card small {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 0.84rem;
}

.home-hero,
.page-hero {
  padding: 52px 0 40px;
}

.home-hero {
  background:
    linear-gradient(180deg, rgba(193, 29, 36, 0.04), transparent 18%),
    #ffffff;
}

.home-hero--photo {
  position: relative;
  min-height: max(100vh, 900px);
  margin-top: -60px;
  padding: 148px 0 46px;
  overflow: hidden;
  background: #15100f;
}

.home-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 20, 18, 0.28) 0%, rgba(20, 14, 13, 0.18) 18%, rgba(14, 9, 8, 0.3) 58%, rgba(10, 7, 7, 0.52) 100%),
    radial-gradient(circle at 50% 54%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.02) 26%, transparent 48%),
    url("photo/01.webp") center 34% / cover no-repeat;
  transform: scale(1.01);
}

.home-hero--photo::after {
  display: none;
}

.hero-center {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.home-hero--photo .hero-center {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  padding-top: clamp(118px, 18vh, 228px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--text-faint);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-center h1,
.page-copy h1,
.section-heading h2,
.centered-head h2,
.split-copy h2,
.meta-card h2,
.placeholder-card h2 {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", "Noto Sans SC", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-center h1,
.page-copy h1 {
  font-size: clamp(2.7rem, 7vw, 4.5rem);
}

.hero-center h1 span {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.home-hero--photo .hero-center h1 {
  color: #ffffff;
  font-size: clamp(3.8rem, 8.8vw, 6.7rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.14;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.hero-center > p,
.page-copy p,
.section-heading p,
.split-copy p,
.card p,
.placeholder-card p,
.meta-card p {
  color: var(--text-soft);
  line-height: 1.8;
}

.hero-center > p {
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 0.94rem;
  line-height: 1.74;
}

.home-hero--photo .hero-center > p {
  max-width: none;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1.72rem, 3.7vw, 2.9rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: 0.1em;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-hero--photo .hero-actions {
  margin-top: 46px;
}

.home-page .hero-target {
  --crosshair-offset-x: 0px;
  --crosshair-offset-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 30px 42px;
}

.home-page .hero-crosshair {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100vw, 2200px);
  height: min(100vh, 1200px);
  opacity: 0;
  transform: translate(
    calc(-50% + var(--crosshair-offset-x)),
    calc(-50% + var(--crosshair-offset-y))
  );
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}

.home-page .hero-target.is-armed .hero-crosshair {
  opacity: 1;
}

.home-page .hero-crosshair__line {
  position: absolute;
  display: block;
}

.home-page .hero-crosshair__line--horizontal {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.home-page .hero-crosshair__line--vertical {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.home-page .hero-start-button {
  position: relative;
  z-index: 1;
}

.hero-meta {
  max-width: 100%;
  margin-top: 72px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--text-faint);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-hero .button {
  min-height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.home-hero--photo .button--solid {
  min-height: 50px;
  min-width: 160px;
  padding: 0 34px;
  border-radius: 999px;
  border: 1.5px solid rgba(217, 37, 44, 0.92);
  background: transparent;
  background-image: none;
  color: #d9252c;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.home-page .hero-target:not(.is-armed) .hero-start-button,
.home-page .hero-target:not(.is-armed) .hero-start-button:hover {
  background: transparent !important;
  background-image: none !important;
  color: #d9252c !important;
  border-color: rgba(217, 37, 44, 0.92) !important;
  box-shadow: none !important;
}

.home-hero--photo .button--solid:hover {
  background: transparent;
  color: #e2333a;
  border-color: rgba(226, 51, 58, 0.98);
  box-shadow: none;
}

.home-page .hero-target.is-armed .hero-start-button,
.home-page .hero-target.is-armed .hero-start-button:hover {
  border-color: transparent;
  background: linear-gradient(180deg, #d9252c 0%, #b9151d 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(166, 20, 27, 0.34);
}

.home-hero .button--ghost {
  background: #f3f0ef;
}

.section {
  padding: 96px 0;
}

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

.solutions-gallery-section {
  padding: 0;
  background: #0b1118;
  overflow: hidden;
}

.solutions-gallery {
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 24%, rgba(193, 29, 36, 0.14) 0%, rgba(193, 29, 36, 0) 24%),
    radial-gradient(circle at 82% 18%, rgba(134, 221, 255, 0.14) 0%, rgba(134, 221, 255, 0) 22%),
    linear-gradient(180deg, #0f131a 0%, #0a0f15 100%);
}

.solutions-gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 1) 24%, rgba(0, 0, 0, 1) 76%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0.64;
  pointer-events: none;
}

.solutions-gallery__inner {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100vw - clamp(48px, 6vw, 120px)));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(74px, 7vw, 112px) 0 clamp(92px, 8vw, 132px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 40px);
}

.solutions-gallery__heading {
  width: min(960px, 100%);
  text-align: center;
  margin-top: -34px;
  display: grid;
  justify-items: center;
  align-content: center;
}

.solutions-gallery__heading .solutions-gallery__eyebrow {
  margin-bottom: 14px;
  letter-spacing: 0.22em;
  text-align: center;
}

.solutions-gallery__heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  font-weight: 780;
  letter-spacing: 0.01em;
  line-height: 1.02;
}

.solutions-gallery__heading > p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  letter-spacing: 0.03em;
  line-height: 1.95;
  text-align: center;
}

.solutions-gallery__viewport {
  position: relative;
  width: 100%;
  min-height: min(66vh, 640px);
  padding: 34px 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 1) 4%, rgba(0, 0, 0, 1) 96%, transparent 100%);
}

.solutions-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.solutions-gallery__viewport.is-dragging {
  cursor: grabbing;
}

.solutions-gallery__viewport.is-dragging .solution-showcase-card {
  transition:
    transform 0.18s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease;
}

.solutions-gallery__track {
  width: max-content;
  min-width: 100%;
  display: flex;
  gap: clamp(22px, 1.8vw, 30px);
  align-items: stretch;
  padding-inline: clamp(8px, 1vw, 18px);
}

.solution-showcase-card {
  position: relative;
  width: clamp(380px, 28vw, 456px);
  min-width: clamp(380px, 28vw, 456px);
  min-height: clamp(500px, 66vh, 590px);
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%),
    rgba(11, 15, 22, 0.84);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  scroll-snap-align: center;
  -webkit-user-drag: none;
  transition:
    transform 0.28s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.solution-showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 46%);
  pointer-events: none;
}

.solution-showcase-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 74px;
  background: linear-gradient(180deg, rgba(10, 13, 18, 0) 0%, rgba(10, 13, 18, 0.42) 100%);
  pointer-events: none;
}

.solution-showcase-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.34);
}

.solution-showcase-card__header,
.solution-showcase-card__body,
.solution-showcase-card__footer {
  position: relative;
  z-index: 1;
}

.solution-showcase-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.solution-showcase-card__index {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.solution-showcase-card__tag {
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.solution-showcase-card__visual {
  position: relative;
  height: 224px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
}

.solution-showcase-card__visual::before,
.solution-showcase-card__visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.solution-showcase-card__visual::before {
  width: 156px;
  height: 156px;
  top: -36px;
  right: -18px;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(10px);
}

.solution-showcase-card__visual::after {
  width: 120px;
  height: 120px;
  left: -20px;
  bottom: -38px;
  background: rgba(255, 255, 255, 0.08);
}

.solution-showcase-card__visual span {
  position: relative;
  z-index: 1;
  width: 126px;
  height: 126px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.solution-showcase-card__logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

.solution-showcase-card__body {
  margin-top: 28px;
}

.solution-showcase-card__body strong {
  display: block;
  color: #ffffff;
  font-size: 2.18rem;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.solution-showcase-card__body p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
  line-height: 1.86;
}

.solution-showcase-card__footer {
  margin-top: auto;
  padding-top: 32px;
  padding-right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-showcase-card__footer i {
  width: 18px;
  height: 18px;
  display: inline-block;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.solution-showcase-card--arbitration .solution-showcase-card__visual {
  background: linear-gradient(135deg, #c11d24 0%, #7b0f17 100%);
}

.solution-showcase-card--review .solution-showcase-card__visual {
  background: linear-gradient(135deg, #1d4ed8 0%, #14274e 100%);
}

.solution-showcase-card--education .solution-showcase-card__visual {
  background: linear-gradient(135deg, #7c3aed 0%, #2f1e68 100%);
}

.solution-showcase-card--ip .solution-showcase-card__visual {
  background: linear-gradient(135deg, #0f766e 0%, #12324b 100%);
}

.solution-showcase-card--land .solution-showcase-card__visual {
  background: linear-gradient(135deg, #ca8a04 0%, #4d3312 100%);
}

.solution-showcase-card--land .solution-showcase-card__logo {
  width: 102px;
  height: 102px;
}

.remote-hearing-section {
  padding: 0;
  background: #0f1014;
}

.remote-hearing {
  position: relative;
  width: 100%;
  min-height: 100svh;
  border-radius: 0;
  overflow: hidden;
  background: #0f1014;
  box-shadow: none;
}

.remote-hearing__video,
.remote-hearing__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.remote-hearing__video {
  object-fit: cover;
  object-position: 62% 38%;
  transform: scale(1.28);
}

.remote-hearing__overlay {
  background:
    linear-gradient(90deg, rgba(7, 10, 16, 0.9) 0%, rgba(7, 10, 16, 0.76) 24%, rgba(7, 10, 16, 0.48) 48%, rgba(7, 10, 16, 0.22) 70%, rgba(7, 10, 16, 0.4) 100%),
    linear-gradient(180deg, rgba(7, 10, 16, 0.18) 0%, rgba(7, 10, 16, 0.46) 100%),
    radial-gradient(circle at 18% 48%, rgba(193, 29, 36, 0.12) 0%, rgba(193, 29, 36, 0) 28%);
}

.remote-hearing__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  width: min(1380px, calc(100vw - clamp(48px, 6vw, 120px)));
  margin: 0 auto;
  padding: clamp(72px, 8vw, 118px) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.remote-hearing__panel {
  max-width: min(640px, 100%);
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(11, 14, 21, 0.68) 0%, rgba(8, 11, 17, 0.48) 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.remote-hearing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.remote-hearing__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(193, 29, 36, 0.88);
}

.remote-hearing__content h2 {
  margin: 0;
  max-width: 100%;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.remote-hearing__lead {
  margin: 22px 0 0;
  max-width: 34em;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.06rem, 1.65vw, 1.32rem);
  font-weight: 500;
  line-height: 1.85;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.remote-hearing__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.remote-hearing__highlights span {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.remote-hearing__actions {
  margin-top: 34px;
}

.remote-hearing__button {
  min-height: 52px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.96);
  color: #151822;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.remote-hearing__button:hover {
  transform: translateY(-2px);
  background: #c11d24;
  border-color: #c11d24;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(193, 29, 36, 0.28);
}

.speech-orb-section {
  position: relative;
  padding: 0;
  background: #060010;
  overflow: hidden;
}

.speech-orb {
  position: relative;
  min-height: 118svh;
  display: grid;
  place-items: center;
  padding: clamp(64px, 7svh, 96px) clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 18% 18%, rgba(100, 56, 255, 0.08) 0%, rgba(100, 56, 255, 0) 28%),
    radial-gradient(circle at 82% 16%, rgba(80, 214, 255, 0.08) 0%, rgba(80, 214, 255, 0) 24%),
    #060010;
  isolation: isolate;
  contain: layout paint;
}

.speech-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 58%, rgba(0, 0, 0, 0.14) 100%);
  opacity: 0.68;
  pointer-events: none;
}

.speech-orb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.38) 100%);
  pointer-events: none;
}

.speech-orb__field,
.speech-orb__content {
  grid-area: 1 / 1;
  place-self: center;
}

.speech-orb__field {
  position: relative;
  width: min(122vmin, 1500px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  pointer-events: none;
  filter: saturate(1.02);
  transform: translate3d(0, 0, 0);
}

.speech-orb__field::before {
  content: "";
  position: absolute;
  inset: 11%;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(120, 83, 255, 0.08) 0%, rgba(120, 83, 255, 0.04) 34%, rgba(120, 83, 255, 0) 72%);
  filter: blur(18px);
  opacity: 0.8;
}

.speech-orb__canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
  background: transparent;
  transform: translate3d(0, 0, 0);
  filter:
    drop-shadow(0 0 30px rgba(157, 120, 255, 0.22))
    drop-shadow(0 0 56px rgba(89, 212, 255, 0.18));
}

.speech-orb__content {
  position: relative;
  z-index: 2;
  width: min(46vw, 460px);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.speech-orb__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.speech-orb__content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.9rem, 5.1vw, 4.8rem);
  font-weight: 760;
  letter-spacing: -0.05em;
  line-height: 1.04;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.speech-orb__lead {
  margin: 0;
  max-width: 24em;
  color: rgba(227, 236, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 500;
  line-height: 1.9;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.speech-orb__button {
  min-height: 50px;
  margin-top: 8px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #111821;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  box-shadow: 0 18px 42px rgba(4, 8, 16, 0.28);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.speech-orb__button:hover {
  transform: translateY(-2px);
  background: #c11d24;
  border-color: #c11d24;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(193, 29, 36, 0.28);
}

.hardware-showcase-section {
  padding: 0;
  background: #070b12;
  color: #ffffff;
  overflow: hidden;
}

.hardware-showcase {
  position: relative;
  min-height: 118svh;
  padding: clamp(76px, 9svh, 120px) clamp(28px, 5vw, 88px);
  display: grid;
  align-content: center;
  gap: clamp(38px, 6svh, 72px);
  background:
    radial-gradient(circle at 82% 18%, rgba(58, 134, 255, 0.22) 0%, rgba(58, 134, 255, 0) 30%),
    radial-gradient(circle at 14% 82%, rgba(193, 29, 36, 0.2) 0%, rgba(193, 29, 36, 0) 30%),
    linear-gradient(135deg, #05070c 0%, #0b111d 46%, #05070c 100%);
  isolation: isolate;
}

.hardware-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.48) 62%, rgba(0, 0, 0, 0.12) 100%);
  pointer-events: none;
  z-index: -1;
}

.hardware-showcase__intro {
  width: min(92vw, 1280px);
  max-width: 1280px;
}

.hardware-showcase__eyebrow {
  margin: 0 0 18px;
  color: #ff3d46;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hardware-showcase__intro h2 {
  margin: 0;
  max-width: none;
  color: #ffffff;
  font-size: clamp(2.7rem, 4.8vw, 5.8rem);
  font-weight: 820;
  letter-spacing: 0.02em;
  line-height: 1.02;
  white-space: nowrap;
}

.hardware-showcase__intro p:not(.hardware-showcase__eyebrow) {
  margin: 24px 0 0;
  max-width: none;
  color: rgba(230, 237, 248, 0.72);
  font-size: clamp(0.98rem, 1.18vw, 1.16rem);
  font-weight: 520;
  line-height: 1.85;
  white-space: nowrap;
}

.hardware-showcase__carousel {
  position: relative;
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  padding: 0 clamp(58px, 5.8vw, 96px) 4px;
  isolation: isolate;
}

.hardware-showcase__grid {
  position: relative;
  min-height: clamp(560px, 58svh, 740px);
  overflow: visible;
}

.hardware-product {
  --hardware-x: -50%;
  --hardware-y: 0px;
  --hardware-scale: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(30vw, 560px);
  min-height: clamp(420px, 48svh, 620px);
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(24px, 2.8vw, 42px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(10, 16, 25, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 42px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
  opacity: 0.72;
  cursor: pointer;
  transform: translateX(var(--hardware-x)) translateY(calc(-50% + var(--hardware-y))) scale(var(--hardware-scale));
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.hardware-product[data-position="-1"] {
  --hardware-x: calc(-50% - min(33vw, 620px));
  --hardware-scale: 0.94;
  z-index: 1;
}

.hardware-product[data-position="0"] {
  --hardware-x: -50%;
  --hardware-scale: 1;
  z-index: 3;
  opacity: 1;
}

.hardware-product.is-active {
  cursor: default;
}

.hardware-product[data-position="1"] {
  --hardware-x: calc(-50% + min(33vw, 620px));
  --hardware-scale: 0.94;
  z-index: 1;
}

.hardware-product::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(7, 11, 18, 0), rgba(7, 11, 18, 0.84));
  pointer-events: none;
}

.hardware-product__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: calc(100% - clamp(40px, 4vw, 74px));
  min-height: clamp(240px, 27svh, 340px);
  margin: clamp(20px, 2.4vw, 34px) auto 0;
  aspect-ratio: 16 / 10;
  border-radius: clamp(18px, 2.2vw, 30px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0) 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 -40px 80px rgba(0, 0, 0, 0.18);
}

.hardware-product__visual::before {
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 66%);
  filter: blur(16px);
}

.hardware-product__body {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: clamp(6px, 1vw, 12px) clamp(24px, 3vw, 44px) clamp(30px, 4vw, 48px);
}

.hardware-product__body p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hardware-product__body h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.35vw, 2.35rem);
  font-weight: 820;
  letter-spacing: -0.05em;
}

.hardware-product__body span {
  display: block;
  margin-top: 16px;
  color: rgba(235, 241, 250, 0.7);
  font-size: clamp(0.96rem, 1.15vw, 1.1rem);
  font-weight: 520;
  line-height: 1.8;
}

.device-station,
.device-camera,
.device-mic {
  position: relative;
  z-index: 1;
  justify-self: center;
  align-self: center;
  width: min(58%, 260px);
  aspect-ratio: 1 / 1;
}

.device-station {
  transform: perspective(600px) rotateX(58deg) rotateZ(-24deg);
}

.device-station::before {
  content: "";
  position: absolute;
  inset: 10% 20%;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #222b36, #05080d 72%);
  box-shadow:
    20px 24px 0 rgba(0, 0, 0, 0.36),
    inset -12px -16px 28px rgba(0, 0, 0, 0.55),
    inset 10px 10px 24px rgba(255, 255, 255, 0.08);
}

.device-station span {
  position: absolute;
  inset: 24% 35% 18% 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, #303b4a, #0a0d12);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.12);
}

.device-station i {
  position: absolute;
  left: 34%;
  top: 24%;
  width: 44%;
  height: 2px;
  background: rgba(96, 227, 255, 0.78);
  box-shadow: 0 0 18px rgba(96, 227, 255, 0.8);
}

.device-camera {
  width: min(58%, 260px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #06121d 0%, #0b1522 26%, #111821 27%, #05070c 42%, #202936 44%, #070b12 70%);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.14),
    0 28px 70px rgba(0, 0, 0, 0.44);
}

.device-camera::before {
  content: "";
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 38%, rgba(162, 231, 255, 0.86), rgba(162, 231, 255, 0.06) 28%, transparent 52%),
    radial-gradient(circle, #16283b 0%, #07111d 64%);
  box-shadow: 0 0 40px rgba(91, 207, 255, 0.28);
}

.device-camera span {
  position: absolute;
  inset: 8% 18% auto;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.device-camera i {
  position: absolute;
  inset: auto 24% 10%;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.device-mic {
  width: min(58%, 260px);
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(145deg, #111a25, #05070c);
  background-size: 22px 22px, 22px 22px, auto;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    0 34px 72px rgba(0, 0, 0, 0.44);
}

.device-mic::before {
  content: "";
  position: absolute;
  inset: 28% 15%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, 0.74) 9% 11%, transparent 12% 18%),
    linear-gradient(90deg, rgba(96, 227, 255, 0), rgba(96, 227, 255, 0.95), rgba(255, 255, 255, 0.94), rgba(96, 227, 255, 0.95), rgba(96, 227, 255, 0));
  box-shadow: 0 0 32px rgba(96, 227, 255, 0.36);
}

.device-mic span {
  position: absolute;
  inset: 34% 38%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.74);
  box-shadow:
    0 0 0 16px rgba(96, 227, 255, 0.06),
    0 0 34px rgba(96, 227, 255, 0.5);
}

.device-mic i {
  position: absolute;
  inset: 50% 10% auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.hardware-product:hover {
  --hardware-y: -10px;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 56px 110px rgba(0, 0, 0, 0.48);
}

.hardware-showcase__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: clamp(48px, 4.5vw, 66px);
  height: clamp(48px, 4.5vw, 66px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(7, 11, 18, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 20px 44px rgba(0, 0, 0, 0.32);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.hardware-showcase__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  border-top: 2px solid rgba(255, 255, 255, 0.92);
  border-left: 2px solid rgba(255, 255, 255, 0.92);
}

.hardware-showcase__nav--prev {
  left: clamp(2px, 1.2vw, 18px);
}

.hardware-showcase__nav--prev::before {
  transform: translateX(3px) rotate(-45deg);
}

.hardware-showcase__nav--next {
  right: clamp(2px, 1.2vw, 18px);
}

.hardware-showcase__nav--next::before {
  transform: translateX(-3px) rotate(135deg);
}

.hardware-showcase__nav:hover {
  transform: translateY(-50%) scale(1.06);
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    rgba(18, 26, 40, 0.78);
}

.hardware-showcase__dots {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hardware-showcase__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    width 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.hardware-showcase__dots button.is-active {
  width: 28px;
  background: #ff3d46;
  box-shadow: 0 0 22px rgba(255, 61, 70, 0.42);
}

.software-suite-section {
  padding: 0;
  overflow: hidden;
  background: #03060c;
  color: #ffffff;
}

.software-suite {
  position: relative;
  min-height: 118svh;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 120px);
  padding: clamp(84px, 10svh, 132px) clamp(28px, 6vw, 110px);
  background:
    radial-gradient(circle at 82% 28%, rgba(90, 139, 255, 0.22), rgba(90, 139, 255, 0) 34%),
    radial-gradient(circle at 18% 72%, rgba(193, 29, 36, 0.2), rgba(193, 29, 36, 0) 32%),
    linear-gradient(140deg, #03060c 0%, #09111d 44%, #03060c 100%);
  isolation: isolate;
}

.software-suite::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.28));
}

.software-suite__copy {
  max-width: 620px;
}

.software-suite__eyebrow {
  margin: 0 0 18px;
  color: #ff3d46;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.software-suite__copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 4.9vw, 6rem);
  font-weight: 840;
  letter-spacing: -0.07em;
  line-height: 0.98;
  word-break: keep-all;
}

.software-suite__keep {
  display: inline-block;
  white-space: nowrap;
}

.software-suite__copy p:not(.software-suite__eyebrow) {
  margin: 28px 0 0;
  color: rgba(231, 238, 249, 0.74);
  font-size: clamp(1rem, 1.24vw, 1.22rem);
  font-weight: 520;
  line-height: 1.88;
}

.software-suite__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 44px;
  padding: 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.software-suite__button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 61, 70, 0.64);
  background: #c11d24;
}

.software-card-swap {
  --swap-distance-x: 76px;
  --swap-distance-y: 66px;
  position: relative;
  justify-self: center;
  width: min(640px, 88vw);
  height: min(590px, 70svh);
  min-height: 520px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.software-swap-card {
  --slot-x: 0px;
  --slot-y: 0px;
  --slot-z: 0px;
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(610px, 84vw);
  height: min(620px, 72svh);
  min-height: min(620px, 72svh);
  display: grid;
  grid-template-rows: minmax(0, 2.8fr) minmax(0, 1.2fr);
  align-items: flex-start;
  gap: clamp(22px, 2.8vw, 30px);
  justify-content: stretch;
  padding: clamp(32px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: clamp(24px, 2.6vw, 36px);
  overflow: hidden;
  color: #ffffff;
  background: #0b111c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 52px 110px rgba(0, 0, 0, 0.46);
  transform: translate3d(calc(-50% + var(--slot-x)), calc(-50% + var(--slot-y)), var(--slot-z)) skewY(var(--slot-skew, 6deg));
  transform-origin: center center;
  transition:
    transform 1.15s cubic-bezier(0.17, 0.84, 0.35, 1),
    opacity 0.55s ease,
    filter 0.55s ease;
  will-change: transform;
}

.software-swap-card::before {
  content: none;
}

.software-swap-card::after {
  content: none;
}

.software-swap-card--standard {
  background: linear-gradient(145deg, rgba(193, 29, 36, 0.86), rgba(40, 8, 12, 0.96));
}

.software-swap-card--standalone {
  background: linear-gradient(145deg, rgba(37, 88, 218, 0.88), rgba(7, 19, 58, 0.96));
}

.software-swap-card--voice {
  background: linear-gradient(145deg, rgba(94, 55, 221, 0.9), rgba(20, 10, 70, 0.96));
}

.software-swap-card--remote {
  background: linear-gradient(145deg, rgba(9, 139, 128, 0.88), rgba(4, 38, 53, 0.96));
}

.software-swap-card__surface,
.software-swap-card__meta,
.software-swap-card__desc {
  position: relative;
  z-index: 1;
}

.software-swap-card__surface {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(28px, 3.4vw, 34px);
  border: 0;
  border-radius: clamp(24px, 2.2vw, 30px);
  background: rgba(255, 255, 255, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.software-swap-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.software-swap-card__number {
  color: rgba(19, 20, 42, 0.88);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.software-swap-card__meta p {
  margin: 0;
  color: rgba(28, 30, 58, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.software-swap-card__surface h3 {
  margin: 0;
  margin-top: auto;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.software-swap-card__desc {
  width: min(100%, 500px);
  padding-inline: 4px;
  align-self: start;
}

.software-swap-card__desc span {
  display: block;
  max-width: 17em;
  color: rgba(244, 247, 255, 0.9);
  font-size: clamp(1.58rem, 1.95vw, 2rem);
  font-weight: 620;
  line-height: 1.62;
  text-wrap: pretty;
}

.software-swap-card[data-slot="0"] {
  --slot-x: 0px;
  --slot-y: 0px;
  --slot-z: 0px;
  --slot-skew: 0deg;
  z-index: 4;
}

.software-swap-card[data-slot="1"] {
  --slot-x: var(--swap-distance-x);
  --slot-y: calc(var(--swap-distance-y) * -1);
  --slot-z: -112px;
  --slot-skew: 6deg;
  z-index: 3;
  opacity: 0.82;
  filter: saturate(0.92) brightness(0.9);
}

.software-swap-card[data-slot="2"] {
  --slot-x: calc(var(--swap-distance-x) * 2);
  --slot-y: calc(var(--swap-distance-y) * -2);
  --slot-z: -224px;
  --slot-skew: 6deg;
  z-index: 2;
  opacity: 0.58;
  filter: saturate(0.78) brightness(0.72);
}

.software-swap-card[data-slot="3"] {
  --slot-x: calc(var(--swap-distance-x) * 3);
  --slot-y: calc(var(--swap-distance-y) * -3);
  --slot-z: -336px;
  --slot-skew: 6deg;
  z-index: 1;
  opacity: 0.36;
  filter: saturate(0.65) brightness(0.58);
}

.software-swap-card.is-dropping {
  opacity: 0;
  transform: translate3d(-50%, calc(-50% + 500px), 0) skewY(0deg);
}

@media (min-width: 1024px) {
  .home-page .solutions-gallery-section,
  .home-page .solutions-gallery,
  .home-page .solutions-gallery__inner {
    min-height: 118svh;
  }

  .home-page .remote-hearing-section,
  .home-page .remote-hearing,
  .home-page .remote-hearing__content {
    min-height: 118svh;
  }

  .home-page .speech-orb-section,
  .home-page .speech-orb {
    min-height: 118svh;
  }

  .home-page .hardware-showcase-section,
  .home-page .hardware-showcase {
    min-height: 118svh;
  }
}

.section-heading,
.centered-head {
  margin-bottom: 28px;
}

.section-heading h2,
.centered-head h2,
.split-copy h2,
.meta-card h2,
.placeholder-card h2 {
  font-size: clamp(1.9rem, 5vw, 3.2rem);
}

.centered-head {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.centered-head p:last-child {
  max-width: 700px;
  margin: 12px auto 0;
}

.button {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button--solid {
  background: var(--accent);
  color: #ffffff;
}

.button--ghost {
  background: #f8f6f4;
  color: var(--text);
  border-color: var(--line);
}

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

.grid-3,
.split-grid,
.meta-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

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

.split-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.92fr);
  gap: 32px;
  align-items: center;
}

.card,
.split-visual,
.placeholder-card,
.meta-card,
.dashboard-shell {
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card {
  min-height: 236px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.card--clean {
  box-shadow: none;
}

.card__icon {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.card__icon::before,
.card__icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
}

.card__icon--gavel::before {
  width: 14px;
  height: 4px;
  top: 8px;
  left: 0;
  transform: rotate(-35deg);
}

.card__icon--gavel::after {
  width: 12px;
  height: 3px;
  bottom: 3px;
  right: 0;
}

.card__icon--hub::before {
  inset: 4px;
  border: 2px solid var(--accent);
  background: transparent;
}

.card__icon--hub::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 9px;
  top: 9px;
}

.card__icon--shield::before {
  left: 3px;
  right: 3px;
  top: 1px;
  bottom: 1px;
  clip-path: polygon(50% 0%, 100% 20%, 100% 58%, 50% 100%, 0% 58%, 0% 20%);
}

.card__icon--shield::after {
  width: 8px;
  height: 8px;
  left: 7px;
  top: 7px;
  border-radius: 50%;
  background: #ffffff;
}

.card h3,
.split-copy h3,
.meta-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-copy {
  max-width: 470px;
}

.feature-list,
.point-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.feature-list article,
.point-list article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-list span,
.point-list span {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), #dd4d51);
  box-shadow: 0 4px 12px rgba(193, 29, 36, 0.16);
}

.feature-list small,
.point-list small {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  line-height: 1.7;
}

.split-visual {
  border-radius: var(--radius-lg);
  padding: 20px;
}

.split-visual--soft {
  background: #fcfbfa;
}

.split-visual--frame {
  background: #f8f6f4;
}

.chart-panel,
.screen-panel {
  min-height: 320px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.chart-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 16px;
}

.chart-panel__top {
  display: flex;
  gap: 6px;
}

.chart-panel__top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e7ddd9;
}

.chart-panel__bars {
  margin-top: 28px;
  height: 140px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: end;
}

.chart-panel__bars i {
  display: block;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, #f3d7d8, var(--accent));
}

.chart-panel__bars i:nth-child(1) { height: 26%; opacity: 0.35; }
.chart-panel__bars i:nth-child(2) { height: 44%; opacity: 0.48; }
.chart-panel__bars i:nth-child(3) { height: 62%; opacity: 0.6; }
.chart-panel__bars i:nth-child(4) { height: 86%; opacity: 0.72; }
.chart-panel__bars i:nth-child(5) { height: 52%; opacity: 0.88; }
.chart-panel__bars i:nth-child(6) { height: 74%; }
.chart-panel__bars i:nth-child(7) { height: 18%; opacity: 0.28; }

.chart-panel__note {
  margin-top: 18px;
  padding: 14px;
  border-radius: 14px;
  background: #fcf8f7;
  border: 1px solid rgba(193, 29, 36, 0.08);
}

.chart-panel__note strong,
.chart-panel__note em {
  display: block;
}

.chart-panel__note p {
  margin: 10px 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.88rem;
}

.chart-panel__note em {
  color: var(--accent);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen-panel {
  background: linear-gradient(180deg, #0f151c 0%, #11161d 100%);
}

.screen-panel--wide {
  min-height: 420px;
}

.screen-panel--hearing::before,
.screen-panel--hearing::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  border-radius: 50%;
}

.screen-panel--hearing::before {
  width: 240px;
  height: 320px;
  border: 4px solid rgba(134, 221, 255, 0.78);
  border-right-color: transparent;
  border-bottom-color: rgba(134, 221, 255, 0.28);
  box-shadow: 0 0 34px rgba(134, 221, 255, 0.3);
}

.screen-panel--hearing::after {
  width: 120px;
  height: 160px;
  border: 3px solid rgba(134, 221, 255, 0.62);
  border-right-color: transparent;
  border-bottom-color: transparent;
  top: 51%;
}

.screen-panel--monitor {
  background: linear-gradient(180deg, #272a2e 0%, #1b1d20 100%);
  border: 1px solid rgba(21, 21, 21, 0.12);
}

.screen-panel--monitor span {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.08);
}

.screen-panel--monitor span:nth-child(1) {
  left: 18px;
  right: 18px;
  top: 18px;
  height: 18px;
}

.screen-panel--monitor span:nth-child(2) {
  left: 18px;
  width: 110px;
  top: 72px;
  height: 4px;
  background: var(--accent);
}

.screen-panel--monitor span:nth-child(3) {
  left: 50%;
  top: 132px;
  width: 170px;
  height: 100px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.14) 100%);
  clip-path: polygon(0 100%, 16% 60%, 32% 68%, 48% 24%, 64% 58%, 80% 34%, 100% 0, 100% 100%);
}

.screen-panel--monitor span:nth-child(4) {
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0, var(--accent) 22%, transparent 42%, var(--accent) 72%, transparent 100%);
}

.stage-wrap {
  margin-top: 22px;
}

.stage-badges {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}

.stage-badges span {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  color: var(--text);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-shell {
  margin-top: 28px;
  border-radius: var(--radius-xl);
  padding: 18px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
}

.dashboard-panel__side {
  border-radius: var(--radius-md);
  background: #faf7f6;
  padding: 18px 14px;
  display: grid;
  gap: 10px;
}

.dashboard-panel__side span {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.dashboard-panel__side .is-active {
  background: var(--accent);
  color: #ffffff;
}

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

.stats-row article {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.stats-row small {
  display: block;
  color: var(--text-faint);
}

.stats-row strong {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
}

.dashboard-chart {
  margin-top: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #fbf8f7;
  border: 1px solid var(--line);
}

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

.dashboard-chart__head em {
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-style: normal;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-chart__bars {
  margin-top: 30px;
  height: 180px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: end;
}

.dashboard-chart__bars i {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #f1d7d9 0%, #cc3036 100%);
}

.dashboard-chart__bars i:nth-child(1) { height: 34%; opacity: 0.38; }
.dashboard-chart__bars i:nth-child(2) { height: 58%; opacity: 0.48; }
.dashboard-chart__bars i:nth-child(3) { height: 44%; opacity: 0.58; }
.dashboard-chart__bars i:nth-child(4) { height: 76%; opacity: 0.68; }
.dashboard-chart__bars i:nth-child(5) { height: 94%; }
.dashboard-chart__bars i:nth-child(6) { height: 52%; opacity: 0.6; }

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

.meta-card,
.placeholder-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.meta-card .button {
  margin-top: 14px;
}

.placeholder-card {
  max-width: 720px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fbf9f7;
}

.footer-grid {
  padding: 34px 0 44px;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  align-items: start;
}

.footer-grid strong,
.footer-grid span {
  display: block;
}

.footer-grid p,
.footer-grid a {
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.9rem;
}

.footer-grid span {
  margin-bottom: 12px;
  color: var(--text-faint);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-footer {
  border-top: 1px solid rgba(125, 244, 255, 0.12) !important;
  background:
    radial-gradient(circle at 78% 20%, rgba(26, 93, 133, 0.22), rgba(26, 93, 133, 0) 34%),
    radial-gradient(circle at 9% 82%, rgba(193, 29, 36, 0.12), rgba(193, 29, 36, 0) 26%),
    linear-gradient(145deg, #050914 0%, #0a111d 48%, #060a12 100%) !important;
  color: #ffffff !important;
}

.home-footer__inner {
  padding: clamp(34px, 4.5vw, 64px) 0 34px;
}

.home-footer__matrix {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 0.88fr)) minmax(380px, 1.22fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.home-footer__matrix::before {
  content: none;
}

.home-footer__matrix > * {
  position: relative;
  z-index: 1;
}

.home-footer__group {
  display: grid;
  gap: 18px;
  align-content: start;
  align-self: start;
  padding-block: 0;
}

.home-footer__group h2,
.home-footer__seal h2 {
  margin: 0 0 12px;
  color: rgba(125, 244, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 920;
  letter-spacing: 0.18em;
}

.home-footer__group a {
  width: max-content;
  max-width: 100%;
  color: rgba(216, 226, 239, 0.66);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.2s ease, transform 0.2s ease;
}

.home-footer__group a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

.home-footer__seal {
  position: relative;
  justify-self: end;
  align-self: center;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: min(100%, 480px);
  min-height: 212px;
  padding: 30px 34px 34px;
  border: 1px solid rgba(125, 244, 255, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 18%, rgba(32, 230, 239, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(18, 38, 55, 0.98), rgba(10, 19, 31, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 44px rgba(4, 17, 30, 0.34),
    0 0 0 1px rgba(64, 214, 239, 0.04);
  overflow: hidden;
}

.home-footer__seal::before {
  content: "";
  position: absolute;
  inset: auto -18% -42% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 221, 245, 0.22), rgba(39, 221, 245, 0));
  pointer-events: none;
}

.home-footer__seal h2 {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  min-height: 50px;
  margin-bottom: 0;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(125, 244, 255, 0.16);
  border-radius: 999px;
  background: rgba(125, 244, 255, 0.06);
  color: #87f3ff;
  font-size: 1.04rem;
  font-weight: 920;
  letter-spacing: 0.08em;
}

.home-footer__seal-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(125, 244, 255, 0.14);
  color: #7df4ff;
  box-shadow: 0 0 18px rgba(32, 230, 239, 0.18);
}

.home-footer__seal-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-footer__seal strong {
  display: block;
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 100%;
  font-size: clamp(2rem, 2.1vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  font-variant-numeric: lining-nums;
}

.home-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 22px;
  padding: 20px 4px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(168, 181, 202, 0.74);
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  line-height: 1.8;
  text-transform: none;
}

.home-footer__legal span:last-child {
  margin-left: auto;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .grid-3,
  .split-grid,
  .meta-grid,
  .footer-grid,
  .stats-row,
  .dashboard-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid {
    gap: 24px;
  }

  .dashboard-shell > :first-child {
    grid-column: span 2;
  }

  .hardware-showcase__grid {
    min-height: clamp(520px, 66svh, 680px);
  }

  .hardware-product {
    width: min(72vw, 560px);
    min-height: 420px;
  }

  .hardware-product[data-position="-1"] {
    --hardware-x: calc(-50% - min(75vw, 640px));
  }

  .hardware-product[data-position="1"] {
    --hardware-x: calc(-50% + min(75vw, 640px));
  }

  .hardware-product__body {
    align-self: end;
    padding-top: 8px;
  }

  .software-suite {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 58px;
  }

  .software-suite__copy {
    max-width: 760px;
    text-align: center;
  }

  .software-card-swap {
    width: min(680px, 86vw);
    height: min(600px, 70svh);
    min-height: 540px;
  }

  .home-footer__matrix {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 26px;
  }

  .home-footer__seal {
    grid-column: span 3;
    justify-self: stretch;
    width: 100%;
    min-height: 0;
  }
}

/* --- 全新解决方案下拉大卡片样式 --- */
.mega-menu--new-solutions {
  width: min(860px, 90vw) !important;
  padding: 0 !important;
  border-radius: 20px !important;
  overflow: hidden;
}

.mega-menu-inner {
  display: flex;
  background: #ffffff;
}

.mega-menu-section {
  flex: 1;
  padding: 32px;
}

.mega-menu-section:first-child {
  flex: 1.15;
}

.mega-menu-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(21, 21, 21, 0.08) 20%, rgba(21, 21, 21, 0.08) 80%, transparent);
}

.mega-menu-title {
  margin: 0 0 24px;
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.mega-menu-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-item-card {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  transition: all 0.25s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.mega-item-card:hover {
  background: #f8fafc;
  border-color: rgba(37, 99, 235, 0.1);
  box-shadow: 0 10px 24px -6px rgba(37, 99, 235, 0.12);
  transform: translateX(4px);
}

.mega-item-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-right: 18px;
  flex-shrink: 0;
  background: #f1f5f9;
  color: #fff;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4), 0 4px 8px rgba(0, 0, 0, 0.05);
}

.mega-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.mega-item-icon.bg-hearing { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.mega-item-icon.bg-speech { background: linear-gradient(135deg, #ec4899, #db2777); }
.mega-item-icon.bg-publish { background: linear-gradient(135deg, #64748b, #475569); }

.mega-item-content {
  display: flex;
  flex-direction: column;
}

.mega-item-content strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.mega-item-card:hover .mega-item-content strong {
  color: #2563eb;
}

.mega-item-content span {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
  font-weight: 500;
}

/* Home page header dropdown dark theme adaptation */
.home-page .mega-menu--new-solutions {
  background: rgba(15, 23, 42, 0.95) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.home-page .mega-menu-inner {
  background: transparent;
}
.home-page .mega-menu-divider {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
}
.home-page .mega-menu-title {
  color: #94a3b8;
}
.home-page .mega-item-card {
  background: transparent;
}
.home-page .mega-item-content strong {
  color: #f8fafc;
}
.home-page .mega-item-content span {
  color: #94a3b8;
}
.home-page .mega-item-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.home-page .mega-item-card:hover .mega-item-content strong {
  color: #60a5fa;
}

@media (max-width: 860px) {
  .mega-menu-inner {
    flex-direction: column;
  }
  .mega-menu-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(21, 21, 21, 0.08) 20%, rgba(21, 21, 21, 0.08) 80%, transparent);
  }
  .mega-menu-section {
    padding: 24px 16px;
  }
}

@media (max-width: 860px) {
  .header-bar {
    min-height: 60px;
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 60px;
    left: 16px;
    right: 16px;
    margin-left: 0;
    flex: none;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .home-page .site-nav {
    background: rgba(15, 20, 28, 0.98);
    border-color: rgba(255, 255, 255, 0.1);
  }

  body.nav-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-link {
    min-height: 46px;
    padding: 0 12px;
  }

  .nav-link__caret {
    display: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.is-active {
    background: #faf7f6;
    border-radius: 12px;
  }

  .home-page .nav-link:hover,
  .home-page .nav-link.is-active {
    background: rgba(255, 255, 255, 0.1);
  }
  .submenu-toggle {
    display: inline-flex;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    color: var(--text);
  }

  .home-page .submenu-toggle {
    color: #ffffff;
  }

  .submenu-toggle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .nav-item.is-open .submenu-toggle::before {
    transform: rotate(225deg);
  }

  .mega-menu {
    position: static;
    width: 100%;
    margin: 0 12px 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    transform: none;
    opacity: 1;
    box-shadow: none;
    pointer-events: auto;
    display: none;
  }

  .home-page .mega-menu {
    background: rgba(15, 20, 28, 0.98);
  }

  .nav-item:hover .mega-menu {
    transform: none;
  }

  .nav-item.is-open .mega-menu {
    display: block;
  }

  .mega-menu--solutions-home {
    width: 100%;
    padding: 10px;
  }

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

  .solutions-mega__group {
    padding: 16px;
  }

  .solutions-mega__group h3 {
    font-size: 1.28rem;
  }

  .solutions-gallery {
    min-height: auto;
  }

  .solutions-gallery__inner {
    width: calc(100vw - 32px);
    min-height: auto;
    padding: 42px 0 52px;
    gap: 26px;
  }

  .solutions-gallery__heading {
    margin-top: 0;
  }

  .solutions-gallery__viewport {
    min-height: auto;
    mask-image: none;
  }

  .solutions-gallery__track {
    gap: 16px;
    padding-inline: 0 16px;
  }

  .solution-showcase-card {
    width: min(78vw, 360px);
    min-width: min(78vw, 360px);
    min-height: 430px;
  }

  .mega-grid,
  .nav-item--about .mega-grid,
  .grid-3,
  .split-grid,
  .meta-grid,
  .footer-grid,
  .stats-row,
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-shell > :first-child {
    grid-column: auto;
  }

  .hero-meta {
    display: none;
  }

  .stage-badges {
    justify-content: flex-start;
  }

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

  .home-footer__seal {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }

  .home-footer__legal {
    justify-content: flex-start;
  }

  .home-footer__legal span:last-child {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  :root {
    --max-width: min(100vw - 24px, 100%);
    --radius-xl: 22px;
    --radius-lg: 18px;
  }

  .site-header .container {
    width: var(--max-width);
  }

  .hero-center h1,
  .page-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .section-heading h2,
  .centered-head h2,
  .split-copy h2,
  .meta-card h2,
  .placeholder-card h2 {
    font-size: clamp(1.7rem, 10vw, 2.4rem);
  }

  .hero-icon {
    width: 142px;
    height: 142px;
  }

  .home-hero--photo {
    min-height: 760px;
    margin-top: -60px;
    padding-top: 132px;
  }

  .home-hero--photo .hero-center {
    padding-top: clamp(84px, 11vh, 120px);
  }

  .home-hero--photo .hero-center h1 {
    font-size: clamp(2.8rem, 13.5vw, 4.3rem);
    letter-spacing: 0.02em;
    line-height: 1.12;
  }

  .home-hero--photo .hero-center > p {
    margin-top: 26px;
    font-size: clamp(1.35rem, 6.4vw, 2rem);
    letter-spacing: 0.04em;
  }

  .home-page .hero-target {
    padding: 28px 22px;
  }

  .home-page .hero-crosshair {
    width: 100vw;
    height: 100vh;
  }

  .solutions-gallery__track {
    padding-inline: 0 8px;
  }

  .solution-showcase-card {
    width: min(84vw, 320px);
    min-width: min(84vw, 320px);
    min-height: 380px;
  }

  .solution-showcase-card__body strong {
    font-size: 1.48rem;
  }

  .solution-showcase-card__body p {
    font-size: 0.92rem;
  }

  .remote-hearing {
    min-height: 72svh;
  }

  .remote-hearing__video {
    object-position: center center;
    transform: scale(1.14);
  }

  .remote-hearing__content {
    width: calc(100vw - 32px);
    padding: 36px 0;
  }

  .remote-hearing__panel {
    padding: 24px 20px 26px;
    border-radius: 24px;
  }

  .remote-hearing__content h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 9vw, 3.45rem);
    line-height: 1.08;
  }

  .remote-hearing__lead {
    margin-top: 18px;
    max-width: 100%;
    font-size: clamp(1rem, 4.2vw, 1.28rem);
  }

  .remote-hearing__highlights {
    gap: 10px;
    margin-top: 22px;
  }

  .remote-hearing__highlights span {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .remote-hearing__actions {
    margin-top: 22px;
  }

  .speech-orb {
    min-height: 82svh;
    padding: 52px 18px;
  }

  .speech-orb__field {
    width: min(96vw, 460px);
  }

  .speech-orb__content {
    width: min(74vw, 290px);
    gap: 14px;
  }

  .speech-orb__content h2 {
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 1.08;
  }

  .speech-orb__lead {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .speech-orb__button {
    min-height: 46px;
    padding: 0 24px;
    font-size: 0.82rem;
  }

  .hardware-showcase {
    min-height: 108svh;
    padding: 72px 18px;
    gap: 30px;
  }

  .hardware-showcase__intro h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    line-height: 1.02;
    white-space: normal;
  }

  .hardware-showcase__intro p:not(.hardware-showcase__eyebrow) {
    margin-top: 18px;
    font-size: 0.96rem;
    white-space: normal;
  }

  .hardware-showcase__grid {
    min-height: 530px;
  }

  .hardware-product {
    width: min(86vw, 420px);
    min-height: 460px;
    border-radius: 26px;
  }

  .hardware-product[data-position="-1"] {
    --hardware-x: calc(-50% - 96vw);
  }

  .hardware-product[data-position="1"] {
    --hardware-x: calc(-50% + 96vw);
  }

  .hardware-product__visual {
    width: calc(100% - 28px);
    min-height: 220px;
    margin-top: 14px;
  }

  .hardware-product__body {
    padding: 0 24px 30px;
  }

  .hardware-product__body h3 {
    font-size: 1.7rem;
  }

  .hardware-showcase__carousel {
    padding: 0 46px;
  }

  .hardware-showcase__nav {
    width: 42px;
    height: 42px;
  }

  .software-suite {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 78px 18px 96px;
  }

  .software-suite__copy {
    text-align: left;
  }

  .software-suite__copy h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
    line-height: 1;
  }

  .software-suite__copy p:not(.software-suite__eyebrow) {
    margin-top: 20px;
    font-size: 0.96rem;
  }

  .software-suite__button {
    min-height: 50px;
    margin-top: 30px;
    padding: 0 26px;
    font-size: 0.78rem;
  }

  .software-card-swap {
    --swap-distance-x: 28px;
    --swap-distance-y: 36px;
    width: min(88vw, 420px);
    height: 480px;
    min-height: 480px;
  }

  .software-swap-card {
    width: min(82vw, 380px);
    height: 450px;
    min-height: 450px;
    padding: 24px;
    border-radius: 26px;
  }

  .software-swap-card::before {
    content: none;
  }

  .software-swap-card__surface {
    height: 100%;
    min-height: 0;
    padding: 24px 22px 26px;
    gap: 20px;
  }

  .software-swap-card__meta {
    gap: 12px;
  }

  .software-swap-card__desc {
    width: 100%;
  }

  .software-swap-card__surface h3 {
    max-width: 100%;
    font-size: 2.1rem;
    line-height: 1.05;
  }

  .software-swap-card__desc span {
    max-width: 100%;
    font-size: 1.16rem;
    line-height: 1.56;
  }

  .card,
  .split-visual,
  .meta-card,
  .placeholder-card,
  .dashboard-shell {
    padding: 18px;
  }
}
