/* Standalone official website styles */
:root {
  --ink-950: #071d3c;
  --ink-900: #0a2447;
  --ink-800: #17385e;
  --ink-700: #315477;
  --ink-600: #58718d;
  --blue-700: #075fe7;
  --blue-600: #1670f5;
  --blue-500: #3b88ff;
  --cyan-400: #58d7f5;
  --violet-300: #a9a8ff;
  --ice-100: #eef7ff;
  --ice-50: #f7fbff;
  --line: rgba(48, 112, 193, 0.17);
  --glass: rgba(255, 255, 255, 0.74);
  --shadow-sm: 0 12px 36px rgba(33, 99, 177, 0.1);
  --shadow-md: 0 28px 80px rgba(29, 87, 156, 0.15);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-900);
  background: #fff;
  font-family:
    "PingFang SC",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button {
  color: inherit;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(35, 126, 240, 0.32);
  outline-offset: 3px;
}
svg {
  display: block;
}
.site-container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}
.section-space {
  position: relative;
  padding: 136px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 1px 0 rgba(60, 112, 177, 0.1),
    0 10px 32px rgba(43, 90, 150, 0.06);
  backdrop-filter: blur(18px) saturate(1.3);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}
.brand-name {
  font-size: 18px;
  font-weight: 750;
  letter-spacing: 0.02em;
  color: var(--ink-950);
  white-space: nowrap;
}
.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  width: 27px;
  height: 27px;
  padding: 5px;
  border-radius: 8px 8px 11px 8px;
  background: linear-gradient(145deg, #0f73f4, #55c9f5);
  box-shadow: 0 8px 20px rgba(25, 118, 236, 0.25);
  overflow: hidden;
}
.brand-mark::before {
  content: "";
  position: absolute;
  inset: -11px 5px 10px -8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(-30deg);
}
.brand-mark span {
  position: relative;
  width: 4px;
  border-radius: 3px;
  background: #fff;
}
.brand-mark span:nth-child(1) {
  height: 7px;
}
.brand-mark span:nth-child(2) {
  height: 12px;
}
.brand-mark span:nth-child(3) {
  height: 17px;
}
.main-nav {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 40px);
}
.main-nav a {
  position: relative;
  padding: 26px 0 24px;
  color: #2c4664;
  font-size: 14px;
  font-weight: 520;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-600);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue-700);
}
.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 18px;
}
.nav-product {
  position: relative;
}
.nav-product > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 26px 0 24px;
  border: 0;
  color: #2c4664;
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 520;
  cursor: pointer;
}
.nav-product > button svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 0.2s ease;
}
.product-menu {
  position: absolute;
  top: calc(100% - 13px);
  left: 50%;
  width: 190px;
  padding: 8px;
  border: 1px solid rgba(47, 109, 184, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 45px rgba(28, 69, 119, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: 0.2s ease;
  z-index: 20;
}
.product-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: #315474;
  font-size: 13px;
}
.product-menu a::after {
  display: none;
}
.product-menu a:hover {
  color: #176be0;
  background: #eef6ff;
}
.nav-product:hover .product-menu,
.nav-product.is-open .product-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-product:hover > button,
.nav-product.is-open > button {
  color: var(--blue-700);
}
.nav-product.is-open > button svg {
  transform: rotate(180deg);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.button {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0b66ed 0%, #227ef6 54%, #2167ec 100%);
  box-shadow:
    0 12px 28px rgba(17, 105, 236, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.button-primary:hover {
  box-shadow:
    0 16px 34px rgba(17, 105, 236, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.button-secondary,
.button-ghost {
  color: #1b4d7f;
  border-color: rgba(35, 108, 195, 0.28);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}
.button-secondary:hover,
.button-ghost:hover {
  background: #fff;
  border-color: rgba(23, 107, 220, 0.48);
  box-shadow: var(--shadow-sm);
}
.button-small {
  min-height: 40px;
  padding: 0 17px;
  border-radius: 9px;
  font-size: 13px;
}
.button-wide {
  width: 100%;
}
.button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.menu-toggle {
  display: none;
}
.system-entry {
  position: relative;
}
.system-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 240px;
  padding: 9px;
  border: 1px solid rgba(47, 109, 184, 0.17);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(28, 69, 119, 0.18);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: 0.2s ease;
}
.system-entry.is-open .system-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.system-menu a {
  display: flex;
  flex-direction: column;
  padding: 11px 12px;
  border-radius: 9px;
  transition: background 0.2s ease;
}
.system-menu a:hover {
  background: var(--ice-100);
}
.system-menu span {
  font-size: 14px;
  font-weight: 650;
  color: var(--ink-800);
}
.system-menu small {
  font-size: 12px;
  color: var(--ink-600);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 152px 0 132px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #fff 72%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -26%;
  right: -8%;
  width: 70%;
  height: 92%;
  background: radial-gradient(
    circle at center,
    rgba(117, 179, 255, 0.2),
    rgba(196, 207, 255, 0.11) 35%,
    transparent 70%
  );
  filter: blur(18px);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(54, 113, 181, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(54, 113, 181, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.45fr;
  align-items: center;
  gap: 42px;
}
.hero-copy {
  padding-bottom: 12px;
}
.hero-copy h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(34px, 2.5vw, 46px);
  line-height: 1.24;
  letter-spacing: 0;
  color: var(--ink-950);
  font-weight: 770;
  white-space: nowrap;
}
.hero-copy > p {
  max-width: 500px;
  margin: 30px 0 0;
  color: var(--ink-700);
  font-size: 18px;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 38px;
}
.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 29px;
  color: var(--ink-600);
  font-size: 12px;
}
.hero-note span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-note i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #42bff2;
  box-shadow: 0 0 0 4px rgba(66, 191, 242, 0.12);
}
.hero-product {
  position: relative;
  min-height: 500px;
  perspective: 1500px;
}
.hero-product::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -82px;
  bottom: -34px;
  left: -14%;
  width: 36%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.76) 30%,
    rgba(255, 255, 255, 0.3) 72%,
    transparent 100%
  );
}
.hero-environment-art {
  position: absolute;
  z-index: 0;
  top: -80px;
  left: -12%;
  width: 124%;
  height: 610px;
  object-fit: cover;
  object-position: 52% 62%;
  pointer-events: none;
  opacity: 0.88;
  filter: saturate(0.94) contrast(0.98);
  mask-image: radial-gradient(
    ellipse 75% 69% at 54% 53%,
    #000 48%,
    rgba(0, 0, 0, 0.84) 70%,
    transparent 100%
  );
}
.desktop-frame {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 42px;
  width: 660px;
  height: 430px;
  border: 1px solid rgba(41, 113, 205, 0.27);
  border-radius: 15px;
  padding: 9px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9),
    rgba(218, 235, 255, 0.58)
  );
  box-shadow:
    0 42px 90px rgba(33, 93, 166, 0.22),
    0 0 0 7px rgba(255, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0)
    rotateY(-4deg) rotateX(1.5deg);
  backdrop-filter: blur(12px);
}
.desktop-frame::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 17px;
  border-radius: 0 0 50% 50%;
  background: linear-gradient(
    180deg,
    rgba(156, 195, 239, 0.48),
    rgba(255, 255, 255, 0.05)
  );
  filter: blur(4px);
}
.desktop-topbar {
  height: 25px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-600);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 8px 8px 0 0;
}
.desktop-topbar > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b7c9dd;
}
.desktop-topbar b {
  margin-left: 9px;
  font-size: 9px;
  font-weight: 600;
}
.desktop-body {
  height: calc(100% - 25px);
  display: grid;
  grid-template-columns: 115px 1fr;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: #f6faff;
}
.mock-sidebar {
  padding: 19px 11px;
  color: rgba(255, 255, 255, 0.73);
  background: linear-gradient(180deg, #092b5d, #0b376d 64%, #0c4f8d);
}
.mock-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 21px;
  padding: 0 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.mock-logo span {
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: linear-gradient(145deg, #2e8cff, #58d4f6);
}
.mock-sidebar a {
  height: 34px;
  margin-bottom: 3px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 6px;
  font-size: 8px;
}
.mock-sidebar a.active {
  color: #fff;
  background: linear-gradient(
    90deg,
    rgba(44, 136, 255, 0.9),
    rgba(58, 175, 246, 0.72)
  );
  box-shadow: 0 8px 20px rgba(16, 121, 241, 0.2);
}
.mock-sidebar a i {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  border-radius: 2px;
}
.mock-dashboard {
  padding: 22px 20px;
  overflow: hidden;
}
.mock-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-heading > div {
  display: flex;
  flex-direction: column;
}
.mock-heading small {
  color: var(--ink-600);
  font-size: 7px;
}
.mock-heading strong {
  font-size: 13px;
  color: var(--ink-950);
}
.mock-heading > span {
  padding: 4px 9px;
  border-radius: 7px;
  color: #47709d;
  background: #eaf3ff;
  font-size: 7px;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.metric-row > div {
  padding: 12px 11px;
  border: 1px solid rgba(81, 137, 203, 0.09);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(51, 105, 171, 0.05);
}
.metric-row small {
  display: block;
  margin-bottom: 4px;
  color: #6f87a2;
  font-size: 7px;
}
.metric-row strong {
  color: #145eba;
  font-size: 16px;
  letter-spacing: -0.03em;
}
.metric-row em {
  margin-left: 2px;
  color: #7790aa;
  font-size: 7px;
  font-style: normal;
}
.chart-row {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 10px;
  margin-top: 12px;
}
.line-chart,
.progress-chart {
  height: 187px;
  padding: 14px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(53, 102, 160, 0.05);
}
.chart-title {
  display: flex;
  justify-content: space-between;
  color: #25496c;
  font-size: 8px;
  font-weight: 650;
}
.chart-title span {
  color: #94a7ba;
  font-size: 6px;
  font-weight: 400;
}
.line-chart svg {
  width: 100%;
  height: 120px;
  margin-top: 14px;
  overflow: visible;
}
.line-chart .grid {
  fill: none;
  stroke: #eaf0f7;
  stroke-width: 1;
}
.line-chart .area {
  fill: url(#chartFill);
}
.line-chart .line {
  fill: none;
  stroke: #2478ef;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.line-chart .dots circle {
  fill: #fff;
  stroke: #2478ef;
  stroke-width: 2;
}
.progress-chart label {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 18px;
  color: #56708d;
  font-size: 6px;
}
.progress-chart label span {
  color: #18ad88;
}
.progress-chart label i {
  grid-column: 1 / -1;
  height: 3px;
  margin-top: 5px;
  border-radius: 3px;
  background: #e8eff7;
  overflow: hidden;
}
.progress-chart label b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2478ef, #53d4ef);
}
.phone-frame {
  position: absolute;
  z-index: 3;
  right: -5px;
  top: 123px;
  width: 162px;
  height: 342px;
  padding: 6px;
  border: 2px solid rgba(6, 26, 52, 0.9);
  border-radius: 27px;
  background: linear-gradient(145deg, #17273a, #050d17);
  box-shadow:
    0 30px 54px rgba(15, 55, 103, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.9);
  transform: translate3d(var(--hero-phone-x, 0px), var(--hero-phone-y, 0px), 0)
    rotateY(-4deg);
}
.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 42px;
  height: 5px;
  border-radius: 8px;
  background: #09111c;
  transform: translateX(-50%);
}
.phone-screen {
  position: relative;
  height: 100%;
  padding: 12px 9px 34px;
  overflow: hidden;
  border-radius: 20px;
  background: #f7faff;
}
.mobile-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0d2949;
  font-size: 6px;
}
.mobile-status i {
  width: 19px;
  height: 5px;
  background: linear-gradient(90deg, #1b3656 60%, transparent 60%);
}
.mobile-title {
  margin: 9px 0;
  text-align: center;
  font-size: 8px;
  font-weight: 650;
}
.mobile-banner {
  display: flex;
  flex-direction: column;
  padding: 12px 10px;
  border-radius: 9px;
  color: #fff;
  background: linear-gradient(135deg, #075ad8, #187af3 65%, #55c7ec);
  box-shadow: 0 9px 22px rgba(13, 105, 229, 0.22);
}
.mobile-banner small {
  font-size: 6px;
  opacity: 0.75;
}
.mobile-banner strong {
  margin: 3px 0;
  font-size: 9px;
}
.mobile-banner span {
  font-size: 5px;
  opacity: 0.76;
}
.mobile-progress {
  display: flex;
  align-items: center;
  margin: 15px 8px 13px;
}
.mobile-progress span {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border: 1px solid #b8cae0;
  border-radius: 50%;
  color: #7890aa;
  background: #fff;
  font-size: 5px;
}
.mobile-progress span.done {
  color: #fff;
  border-color: #2680ef;
  background: #2680ef;
}
.mobile-progress i {
  flex: 1;
  height: 1px;
  background: #c9d7e7;
}
.phone-screen ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.phone-screen li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 3px;
  border-bottom: 1px solid #e8eef6;
  font-size: 6px;
}
.phone-screen li b {
  font-weight: 550;
}
.phone-screen li em {
  color: #1fad86;
  font-style: normal;
}
.phone-screen li em.waiting {
  color: #2478ef;
}
.phone-screen > button {
  width: 100%;
  height: 23px;
  margin-top: 12px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: #0c315c;
  font-size: 6px;
}
.phone-screen nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 31px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #e5edf6;
  color: #879aae;
  background: #fff;
  font-size: 5px;
}
.phone-screen nav a.active {
  color: #1c78eb;
}
.glass-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(79, 157, 243, 0.28);
  border-radius: 50%;
  box-shadow:
    inset 0 0 40px rgba(98, 166, 247, 0.08),
    0 0 60px rgba(116, 184, 255, 0.12);
}
.orbit-one {
  top: -27px;
  right: -58px;
  width: 480px;
  height: 480px;
  transform: rotateX(68deg) rotateZ(-16deg);
}
.orbit-two {
  bottom: 20px;
  left: 80px;
  width: 310px;
  height: 160px;
  transform: rotate(-12deg);
}
.hero-aurora {
  position: absolute;
  z-index: 1;
  height: 180px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.72;
  pointer-events: none;
}
.hero-aurora-one {
  width: 70%;
  right: -14%;
  bottom: 80px;
  background: linear-gradient(
    105deg,
    transparent 4%,
    rgba(85, 212, 244, 0.32),
    rgba(67, 122, 244, 0.34) 48%,
    rgba(180, 148, 255, 0.22),
    transparent 92%
  );
  transform: rotate(-11deg) skewX(-14deg);
  filter: blur(18px);
}
.hero-aurora-two {
  width: 55%;
  right: -5%;
  bottom: 40px;
  height: 76px;
  border-top: 2px solid rgba(81, 150, 252, 0.3);
  box-shadow: 0 -11px 30px rgba(89, 199, 247, 0.2);
  transform: rotate(-12deg);
}
.hero-landscape {
  position: absolute;
  z-index: 1;
  left: -70px;
  bottom: 0;
  width: 440px;
  height: 128px;
  opacity: 0.45;
  background:
    linear-gradient(
        145deg,
        transparent 35%,
        rgba(129, 188, 242, 0.4) 36% 43%,
        transparent 44%
      )
      0 30px/150px 90px,
    linear-gradient(
        35deg,
        transparent 37%,
        rgba(137, 192, 239, 0.34) 38% 43%,
        transparent 44%
      )
      65px 20px/180px 100px;
  mask-image: linear-gradient(to top, #000, transparent);
}

.glass-panel {
  border: 1px solid rgba(78, 137, 205, 0.18);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.82),
    rgba(241, 248, 255, 0.6)
  );
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
}
.value-band {
  position: relative;
  z-index: 5;
  margin-top: -54px;
}
.value-panel {
  padding: 34px 54px 38px;
  border-radius: var(--radius-md);
}
.value-panel h2 {
  margin: 0 0 27px;
  text-align: center;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.value-flow {
  display: grid;
  grid-template-columns: 1fr 85px 1fr 85px 1fr;
  align-items: center;
}
.value-flow article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.icon-disc {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 122, 232, 0.18);
  border-radius: 50%;
  color: var(--blue-600);
  background: linear-gradient(145deg, #fff, #e7f4ff);
  box-shadow:
    0 8px 22px rgba(25, 101, 200, 0.12),
    inset 0 1px 0 #fff;
}
.icon-disc svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.value-flow strong {
  display: block;
  color: var(--ink-800);
  font-size: 18px;
}
.value-flow p {
  margin: 2px 0 0;
  color: var(--ink-600);
  font-size: 15px;
}
.flow-line {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, #a8c9ed, transparent);
}
.flow-line b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #569af0;
  box-shadow: 0 0 0 5px rgba(86, 154, 240, 0.09);
  transform: translate(-50%, -50%);
}

.section-heading {
  max-width: 690px;
}
.section-heading.centered {
  margin: 0 auto 66px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1.38;
  letter-spacing: 0;
}
.section-heading p {
  margin: 18px 0 0;
  color: var(--ink-600);
  font-size: 17px;
  line-height: 1.8;
}
.lifecycle {
  padding-top: 154px;
  padding-bottom: 180px;
  overflow: hidden;
}
.lifecycle-track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.lifecycle-track::before {
  content: "";
  position: absolute;
  left: 6.8%;
  right: 6.8%;
  top: 27px;
  z-index: -1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(71, 139, 229, 0.18),
    rgba(51, 130, 235, 0.6),
    rgba(71, 139, 229, 0.18)
  );
}
.lifecycle-track li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lifecycle-track span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(51, 129, 229, 0.18);
  border-radius: 50%;
  color: var(--blue-600);
  background: rgba(250, 253, 255, 0.95);
  box-shadow:
    0 10px 30px rgba(53, 123, 213, 0.09),
    0 0 0 8px rgba(245, 250, 255, 0.82);
  font-size: 16px;
  font-weight: 700;
}
.lifecycle-track strong {
  color: var(--ink-700);
  font-size: 16px;
  font-weight: 400;
}
.ice-ridge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 92px;
  opacity: 0.55;
  background:
    linear-gradient(
        155deg,
        transparent 29%,
        rgba(172, 212, 247, 0.45) 30% 36%,
        transparent 37%
      )
      0 25px/210px 100px,
    linear-gradient(
        25deg,
        transparent 32%,
        rgba(162, 207, 246, 0.42) 33% 38%,
        transparent 39%
      )
      104px 16px/260px 110px;
  mask-image: linear-gradient(to top, #000, transparent);
}

.capabilities {
  padding-top: 118px;
  background: linear-gradient(180deg, #f7fbff 0, #fff 26%, #fff 100%);
}
.capability-scenes {
  display: grid;
  gap: 100px;
}
.capability-scene {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 70px;
  min-height: 390px;
}
.capability-scene.reverse {
  grid-template-columns: 1.28fr 0.72fr;
}
.capability-scene.reverse .scene-copy {
  grid-column: 2;
  grid-row: 1;
}
.capability-scene.reverse .scene-art {
  grid-column: 1;
  grid-row: 1;
}
.scene-copy > span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--blue-500);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.scene-copy h3 {
  margin: 0;
  color: var(--ink-950);
  font-size: 34px;
  letter-spacing: -0.03em;
}
.scene-copy p {
  margin: 18px 0 24px;
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.9;
}
.scene-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 650;
}
.scene-copy a b {
  transition: transform 0.2s ease;
}
.scene-copy a:hover b {
  transform: translateX(5px);
}
.scene-art {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(77, 140, 214, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f7fbff;
  box-shadow:
    inset 0 1px 0 #fff,
    0 24px 65px rgba(44, 106, 178, 0.13);
}
.scene-art::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 58% -20% -36%;
  border-radius: 50%;
  border: 1px solid rgba(65, 144, 239, 0.3);
  box-shadow:
    0 -10px 80px rgba(88, 196, 244, 0.18),
    0 -35px 110px rgba(130, 140, 250, 0.12);
  transform: rotate(-9deg);
}
.scene-art::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 42%,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.32) 71%,
    rgba(237, 247, 255, 0.56) 100%
  );
}
.scene-illustration {
  position: absolute;
  z-index: 0;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  filter: saturate(0.93) contrast(0.98);
  transform: scale(1.015);
  transition:
    transform 1.2s cubic-bezier(0.2, 0.72, 0.22, 1),
    filter 0.8s ease;
}
.scene-art:hover .scene-illustration {
  filter: saturate(1.04) contrast(1);
  transform: scale(1.055);
}
.ui-window {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(53, 116, 193, 0.19);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 22px 50px rgba(42, 94, 155, 0.18),
    inset 0 1px 0 #fff;
  backdrop-filter: blur(10px);
}
.ui-bar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  color: #59728d;
  background: linear-gradient(180deg, #fdfefe, #eff6fd);
  font-size: 8px;
}
.ui-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a9bed5;
}
.ui-bar span {
  margin-left: 7px;
}
.form-window {
  width: 80%;
  height: 270px;
  transform: rotateY(-6deg) rotateX(2deg);
}
.form-editor {
  height: calc(100% - 28px);
  display: grid;
  grid-template-columns: 120px 1fr;
}
.form-editor aside {
  padding: 18px 14px;
  color: #6c86a1;
  background: #f4f8fd;
  font-size: 8px;
}
.form-editor aside b,
.form-editor aside span {
  display: block;
}
.form-editor aside b {
  margin-bottom: 11px;
  color: #294d74;
  font-size: 9px;
}
.form-editor aside span {
  margin-bottom: 6px;
  padding: 7px 8px;
  border: 1px solid #e2ebf5;
  border-radius: 5px;
  background: #fff;
}
.form-editor > div {
  padding: 22px 25px;
  display: grid;
  align-content: start;
  gap: 13px;
}
.form-editor label {
  color: #476786;
  font-size: 8px;
}
.form-editor input,
.form-editor select {
  width: 100%;
  height: 28px;
  margin-top: 5px;
  padding: 0 9px;
  border: 1px solid #dbe6f2;
  border-radius: 5px;
  color: #55708e;
  background: #fff;
  font-size: 8px;
}
.floating-cube {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(52, 138, 240, 0.33);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.88),
    rgba(88, 176, 255, 0.13)
  );
  box-shadow:
    0 15px 36px rgba(40, 112, 199, 0.13),
    inset 0 1px 0 #fff;
  backdrop-filter: blur(8px);
}
.cube-a {
  left: 6%;
  bottom: 17%;
  width: 62px;
  height: 62px;
  border-radius: 13px;
  transform: rotate(9deg);
}
.cube-b {
  right: 8%;
  top: 13%;
  width: 35px;
  height: 35px;
  border-radius: 9px;
  transform: rotate(-13deg);
}
.data-scene {
  background:
    radial-gradient(
      circle at 20% 15%,
      rgba(91, 211, 243, 0.22),
      transparent 25%
    ),
    linear-gradient(145deg, #ecf7ff, #fafcff 42%, #edf1ff);
}
.table-window {
  width: 82%;
  height: 272px;
  transform: rotateY(5deg);
}
.table-head {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
}
.table-head b {
  font-size: 10px;
}
.table-head span {
  padding: 4px 9px;
  border-radius: 5px;
  color: #fff;
  background: #287ef0;
  font-size: 7px;
}
.fake-table {
  padding: 0 18px;
}
.fake-table p {
  height: 39px;
  margin: 0;
  display: grid;
  grid-template-columns: 20px 1fr 1.3fr 0.8fr;
  align-items: center;
  border-top: 1px solid #edf2f7;
  color: #5c7690;
  font-size: 7px;
}
.fake-table p i {
  width: 8px;
  height: 8px;
  border: 1px solid #bed0e3;
  border-radius: 2px;
}
.fake-table p b {
  color: #284d71;
  font-size: 8px;
}
.fake-table p em {
  justify-self: start;
  padding: 3px 7px;
  border-radius: 7px;
  color: #367bd7;
  background: #eaf3ff;
  font-style: normal;
}
.fake-table p em.pass {
  color: #16a17e;
  background: #e9faf5;
}
.fake-table p em.back {
  color: #a66c2a;
  background: #fff5e8;
}
.data-orb {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 7%;
  width: 103px;
  height: 103px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(56, 136, 234, 0.28);
  border-radius: 50%;
  color: var(--blue-700);
  background: radial-gradient(
    circle at 32% 25%,
    rgba(255, 255, 255, 0.95),
    rgba(95, 185, 250, 0.28) 65%,
    rgba(107, 127, 246, 0.16)
  );
  box-shadow:
    0 22px 44px rgba(51, 121, 203, 0.18),
    inset -10px -12px 24px rgba(82, 141, 234, 0.11);
  backdrop-filter: blur(8px);
}
.data-orb span {
  font-size: 24px;
  font-weight: 750;
}
.data-orb small {
  color: var(--ink-600);
  font-size: 8px;
}
.exam-scene {
  background:
    radial-gradient(
      circle at 78% 17%,
      rgba(135, 149, 255, 0.25),
      transparent 25%
    ),
    linear-gradient(145deg, #f2f8ff, #fcfdff 45%, #eaf7ff);
}
.schedule-window {
  width: 78%;
  height: 278px;
  transform: translateX(-4%) rotateY(-4deg);
}
.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px 10px;
  font-size: 9px;
}
.calendar-head span {
  padding: 4px 8px;
  border-radius: 5px;
  color: #2a76df;
  background: #ebf4ff;
  font-size: 7px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 7px 17px;
  gap: 6px;
  text-align: center;
  font-size: 7px;
}
.calendar-grid b {
  color: #7188a0;
  font-weight: 500;
}
.calendar-grid i {
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #3d5f81;
  font-style: normal;
}
.calendar-grid i.selected {
  color: #fff;
  background: #257bf0;
  box-shadow: 0 5px 12px rgba(37, 123, 240, 0.25);
}
.ticket-card {
  position: absolute;
  z-index: 4;
  right: 4%;
  bottom: 7%;
  width: 150px;
  padding: 17px 14px 13px;
  display: grid;
  grid-template-columns: 39px 1fr;
  gap: 4px 9px;
  border: 1px solid rgba(48, 111, 191, 0.23);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 21px 46px rgba(44, 96, 160, 0.2);
  backdrop-filter: blur(12px);
}
.ticket-card .avatar {
  grid-row: 1 / 3;
  width: 39px;
  height: 46px;
  border-radius: 5px;
  background: linear-gradient(165deg, #d8eafa, #8eb6de);
}
.ticket-card strong {
  align-self: end;
  font-size: 9px;
}
.ticket-card small {
  color: #6f86a0;
  font-size: 5px;
}
.qr-grid {
  grid-column: 2;
  width: 34px;
  height: 34px;
  margin-top: 5px;
  opacity: 0.75;
  background: repeating-conic-gradient(#0a2f59 0 25%, transparent 0 50%) 0 0/7px
    7px;
}

.scenarios {
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff, #eef7ff 48%, #f9fcff);
}
.scenario-glow {
  position: absolute;
  left: 50%;
  top: -170px;
  width: 900px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(106, 177, 255, 0.19),
    rgba(160, 149, 255, 0.08) 46%,
    transparent 70%
  );
  transform: translateX(-50%);
}
.scenario-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scenario-card {
  position: relative;
  min-height: 330px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(55, 122, 204, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  box-shadow:
    0 20px 54px rgba(47, 103, 169, 0.1),
    inset 0 1px 0 #fff;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.scenario-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(255, 255, 255, 0.82) 26%,
      rgba(255, 255, 255, 0.18) 59%,
      rgba(255, 255, 255, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(228, 242, 255, 0.24), transparent 48%);
}
.scenario-art {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  filter: saturate(0.94) contrast(0.98);
  transform: scale(1.035);
  transition:
    transform 0.75s cubic-bezier(0.2, 0.72, 0.22, 1),
    filter 0.5s ease;
}
.scenario-card:hover .scenario-art {
  filter: saturate(1.06) contrast(1.01);
  transform: scale(1.09) translate3d(1.2%, -0.7%, 0);
}
.scenario-card:hover {
  transform: translateY(-8px);
  border-color: rgba(40, 119, 223, 0.3);
  box-shadow:
    0 28px 65px rgba(47, 103, 169, 0.14),
    inset 0 1px 0 #fff;
}
.scenario-number {
  position: relative;
  z-index: 2;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.scenario-card > div {
  position: relative;
  z-index: 2;
  max-width: 235px;
  margin-top: 27px;
}
.scenario-card h3 {
  margin: 0;
  font-size: 23px;
}
.scenario-card p {
  max-width: 235px;
  margin: 9px 0 0;
  color: var(--ink-600);
  font-size: 14px;
}
.scenario-card > i {
  position: absolute;
  z-index: 3;
  right: 25px;
  bottom: 24px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(43, 120, 217, 0.2);
  border-radius: 50%;
  color: var(--blue-600);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(43, 105, 183, 0.1);
  font-style: normal;
  backdrop-filter: blur(10px);
}

.platforms {
  min-height: 740px;
  overflow: hidden;
}
.platform-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 70px;
}
.platform-copy .section-heading p {
  max-width: 500px;
}
.platform-copy ul {
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}
.platform-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  color: var(--ink-700);
  font-size: 14px;
}
.platform-copy li span {
  width: 44px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--blue-700);
  background: #ecf5ff;
  font-size: 10px;
  font-weight: 700;
}
.platform-devices {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.laptop {
  position: absolute;
  left: 4%;
  top: 45px;
  width: 530px;
}
.laptop-screen {
  height: 330px;
  padding: 10px;
  display: grid;
  grid-template-columns: 82px 1fr;
  overflow: hidden;
  border: 2px solid #0b2544;
  border-radius: 16px 16px 6px 6px;
  background: #fff;
  box-shadow: 0 35px 65px rgba(23, 75, 135, 0.2);
}
.mini-side {
  padding: 17px 11px;
  color: #fff;
  background: linear-gradient(180deg, #082d61, #0c4a84);
  border-radius: 7px;
}
.mini-side b {
  display: block;
  margin-bottom: 22px;
  font-size: 9px;
}
.mini-side span {
  height: 20px;
  margin-bottom: 7px;
  display: block;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}
.mini-side span.active {
  background: linear-gradient(90deg, #287eea, #40bef1);
}
.mini-content {
  padding: 18px;
  background: #f6f9fd;
}
.mini-header {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
}
.mini-header i {
  width: 60px;
  height: 15px;
  border-radius: 5px;
  background: #e8f1fb;
}
.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}
.mini-metrics span {
  padding: 13px;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(50, 97, 153, 0.05);
}
.mini-metrics small {
  display: block;
  color: #748ba3;
  font-size: 6px;
}
.mini-metrics b {
  color: #175db5;
  font-size: 16px;
}
.mini-chart {
  height: 145px;
  margin-top: 12px;
  padding: 18px;
  border-radius: 7px;
  background: #fff;
}
.mini-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.mini-chart path {
  fill: none;
  stroke: #277ced;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.laptop-base {
  width: 590px;
  height: 18px;
  margin-left: -30px;
  border-radius: 2px 2px 55% 55%;
  background: linear-gradient(180deg, #cfdeec, #8fa9c1 50%, #e8f2fb);
  box-shadow: 0 13px 17px rgba(27, 66, 109, 0.18);
}
.platform-phone {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 105px;
  width: 155px;
  height: 320px;
  padding: 29px 13px 14px;
  border: 3px solid #0a1c31;
  border-radius: 26px;
  background: #f7faff;
  box-shadow:
    0 27px 50px rgba(25, 70, 122, 0.28),
    0 0 0 2px #fff;
}
.phone-notch {
  position: absolute;
  left: 50%;
  top: 7px;
  width: 48px;
  height: 6px;
  border-radius: 5px;
  background: #0a1c31;
  transform: translateX(-50%);
}
.platform-phone > small {
  display: block;
  margin-bottom: 12px;
  text-align: center;
  font-size: 8px;
  font-weight: 650;
}
.phone-blue {
  padding: 13px 10px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0962df, #2582f2);
}
.phone-blue b {
  font-size: 9px;
}
.phone-blue span {
  margin-top: 4px;
  font-size: 5px;
  opacity: 0.75;
}
.platform-phone p {
  position: relative;
  margin: 0 0 0 7px;
  padding: 14px 0 5px 23px;
  color: #617a93;
  font-size: 7px;
}
.platform-phone p i {
  position: absolute;
  left: 0;
  top: 16px;
  width: 10px;
  height: 10px;
  border: 1px solid #b9cbe0;
  border-radius: 50%;
  background: #fff;
}
.platform-phone p:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 26px;
  bottom: -9px;
  width: 1px;
  background: #cfdeec;
}
.platform-phone p i.done,
.platform-phone p i.current {
  border-color: #2b80ed;
  background: #2b80ed;
}
.platform-phone p i.current {
  box-shadow: 0 0 0 4px rgba(43, 128, 237, 0.11);
}
.platform-phone button {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 16px;
  height: 26px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: #0d315a;
  font-size: 7px;
}
.platform-ribbon {
  position: absolute;
  width: 65%;
  height: 190px;
  border-radius: 50%;
  filter: blur(9px);
  opacity: 0.52;
}
.ribbon-left {
  left: -34%;
  bottom: 30px;
  border-top: 24px solid rgba(66, 199, 243, 0.26);
  box-shadow: 0 -22px 40px rgba(102, 121, 246, 0.18);
  transform: rotate(13deg);
}
.ribbon-right {
  right: -35%;
  top: 20px;
  border-bottom: 20px solid rgba(141, 139, 248, 0.19);
  box-shadow: 0 28px 46px rgba(71, 196, 240, 0.18);
  transform: rotate(-12deg);
}

.trust {
  padding-top: 112px;
  padding-bottom: 112px;
  background: linear-gradient(180deg, #fff, #f7fbff);
}
.trust .section-heading.centered {
  margin-bottom: 50px;
}
.trust-rail {
  padding: 35px 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius-md);
}
.trust-rail article {
  padding: 0 37px;
  display: flex;
  align-items: center;
  gap: 17px;
}
.trust-rail article + article {
  border-left: 1px solid rgba(60, 121, 194, 0.13);
}
.trust-rail h3 {
  margin: 0 0 5px;
  font-size: 18px;
}
.trust-rail p {
  margin: 0;
  color: var(--ink-600);
  font-size: 15px;
  line-height: 1.65;
}

.service {
  background: #f7fbff;
}
.service-panel {
  padding: 64px 68px;
  border: 1px solid rgba(62, 124, 196, 0.14);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow:
    0 26px 70px rgba(54, 105, 164, 0.08),
    inset 0 1px 0 #fff;
}
.service-panel .section-heading.centered {
  margin-bottom: 54px;
}
.service-flow {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-flow li:not(:nth-child(even)) {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-flow li:nth-child(even) {
  color: #83b6f4;
  text-align: center;
  font-size: 21px;
}
.service-flow li > span {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(45, 123, 222, 0.18);
  border-radius: 50%;
  color: var(--blue-600);
  background: linear-gradient(145deg, #fff, #e9f4ff);
  box-shadow: 0 9px 24px rgba(38, 109, 197, 0.1);
}
.service-flow svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-flow strong,
.service-flow small {
  display: block;
}
.service-flow strong {
  font-size: 18px;
}
.service-flow small {
  margin-top: 3px;
  color: var(--ink-600);
  font-size: 15px;
}

.faq {
  padding-top: 145px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: center;
  gap: 90px;
}
.faq-art {
  position: relative;
  min-height: 350px;
  display: grid;
  place-items: center;
}
.faq-illustration {
  width: 142%;
  max-width: none;
  pointer-events: none;
  filter: saturate(0.92) contrast(0.98)
    drop-shadow(0 28px 38px rgba(45, 106, 178, 0.12));
  transform: translateX(-3%);
  mask-image: radial-gradient(
    ellipse 67% 68% at 50% 53%,
    #000 62%,
    transparent 100%
  );
}
.faq-content .section-heading {
  margin-bottom: 35px;
}
.accordion {
  border-top: 1px solid var(--line);
}
.accordion article {
  border-bottom: 1px solid var(--line);
}
.accordion button {
  width: 100%;
  min-height: 61px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  text-align: left;
  color: var(--ink-800);
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.accordion button span {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.accordion button span::before,
.accordion button span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 12px;
  height: 1.5px;
  background: #4c7fb9;
  transition: transform 0.25s ease;
}
.accordion button span::after {
  transform: rotate(90deg);
}
.accordion article.is-open button span::after {
  transform: rotate(0);
}
.accordion article > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.accordion article > div p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-600);
  font-size: 14px;
}
.accordion article.is-open > div {
  grid-template-rows: 1fr;
}
.accordion article.is-open > div p {
  padding: 0 32px 22px 0;
}

.final-cta {
  position: relative;
  padding: 82px 0 88px;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(140deg, #f8fbff 0%, #fff 46%, #f2f8ff 100%);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(72, 132, 198, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 132, 198, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 25% 75%, transparent);
}
.cta-aurora {
  position: absolute;
  left: 50%;
  bottom: -78px;
  width: min(980px, 86vw);
  height: 230px;
  border: 1px solid rgba(77, 142, 213, 0.18);
  border-radius: 50% 50% 0 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(105, 173, 238, 0.12),
    transparent 64%
  );
  box-shadow: inset 0 34px 44px rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}
.cta-aurora::before,
.cta-aurora::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 78%;
  border-top: 1px solid rgba(94, 155, 218, 0.22);
  border-radius: 50%;
  transform: translateX(-50%);
}
.cta-aurora::before {
  top: 42px;
  height: 140px;
}
.cta-aurora::after {
  top: 79px;
  width: 58%;
  height: 90px;
}
.cta-aurora i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 4px 9px rgba(42, 98, 173, 0.16);
}
.cta-aurora i:nth-child(1) {
  left: 22%;
  top: 78px;
  background: #2c7bf4;
}
.cta-aurora i:nth-child(2) {
  right: 24%;
  top: 51px;
  background: #ffc247;
}
.cta-aurora i:nth-child(3) {
  right: 35%;
  top: 130px;
  background: #ff6269;
}
.final-cta .site-container {
  position: relative;
  z-index: 2;
}
.final-cta h2 {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -0.035em;
}
.final-cta p {
  margin: 15px 0 27px;
  color: var(--ink-600);
}

.site-footer {
  padding: 58px 0 0;
  color: rgba(224, 239, 255, 0.72);
  background: linear-gradient(135deg, #082a53, #062343 54%, #092f59);
}
.site-footer .brand-name {
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 3.3fr 0.8fr;
  gap: 65px;
}
.footer-brand > p {
  margin: 18px 0 0;
  font-size: 13px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links strong,
.footer-contact strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 13px;
}
.footer-links a {
  font-size: 11px;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-contact {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-contact > p {
  margin: 2px 0 13px;
  font-size: 11px;
}
.footer-contact .button {
  margin-bottom: 12px;
}
.contact-phone {
  display: block;
  color: #bcd5ee;
  font-size: 13px;
}
.footer-bottom {
  margin-top: 45px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}
.footer-bottom span:last-child {
  display: flex;
  gap: 22px;
}

/* Footer text should remain readable at the page edge. */
.footer-brand > p {
  font-size: 16px;
}
.footer-links strong,
.footer-contact strong {
  font-size: 16px;
}
.footer-links a {
  font-size: 14px;
}
.footer-contact > p {
  font-size: 14px;
}
.contact-phone {
  font-size: 14px;
}
.footer-bottom {
  font-size: 14px;
}

.dialog-backdrop {
  position: fixed;
  z-index: 300;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(5, 24, 49, 0.38);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}
.dialog-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.demo-dialog {
  position: relative;
  width: min(760px, 100%);
  min-height: 480px;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  overflow: hidden;
  border: 1px solid rgba(108, 169, 235, 0.35);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 40px 110px rgba(4, 39, 81, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.25s ease;
}
.dialog-backdrop.is-open .demo-dialog {
  transform: none;
}
.dialog-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(58, 115, 181, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}
.dialog-close svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #4f6d8b;
  stroke-width: 1.7;
}
.dialog-copy {
  position: relative;
  padding: 60px 38px;
  overflow: hidden;
  background: linear-gradient(155deg, #eaf5ff, #f7fbff 52%, #e9efff);
}
.dialog-copy::after {
  content: "";
  position: absolute;
  left: -30%;
  right: -40%;
  bottom: -20%;
  height: 220px;
  border-radius: 50%;
  border-top: 24px solid rgba(52, 194, 241, 0.22);
  box-shadow: 0 -23px 55px rgba(103, 121, 246, 0.16);
  transform: rotate(-12deg);
}
.dialog-copy h2 {
  position: relative;
  z-index: 1;
  margin: 155px 0 12px;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.dialog-copy p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-600);
  font-size: 14px;
}
.dialog-orbit {
  position: absolute;
  left: 45px;
  top: 72px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(38, 123, 231, 0.3);
  border-radius: 30px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9),
    rgba(65, 159, 246, 0.2)
  );
  box-shadow: 0 24px 55px rgba(44, 111, 194, 0.18);
  transform: rotate(12deg);
}
.dialog-orbit::before {
  content: "";
  position: absolute;
  inset: 25px;
  border: 2px solid #2c80ed;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(44, 128, 237, 0.1);
}
.demo-form {
  padding: 55px 48px 38px;
  display: grid;
  align-content: center;
  gap: 15px;
}
.demo-form label {
  color: var(--ink-700);
  font-size: 12px;
}
.demo-form label > span {
  display: block;
  margin-bottom: 6px;
}
.demo-form input,
.demo-form select {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  border: 1px solid #d7e3f0;
  border-radius: 9px;
  outline: none;
  color: var(--ink-800);
  background: #fbfdff;
  font-size: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.demo-form input:focus,
.demo-form select:focus {
  border-color: #5a9dec;
  box-shadow: 0 0 0 4px rgba(63, 139, 234, 0.1);
}
.demo-form input.is-invalid,
.demo-form select.is-invalid {
  border-color: #dc5757;
  background: #fffafa;
  box-shadow: 0 0 0 4px rgba(220, 87, 87, 0.1);
}
.demo-field-error {
  display: block;
  margin-top: 6px;
  color: #bf3e3e;
  font-size: 11px;
  line-height: 1.45;
}
.form-note {
  margin: -3px 0 0;
  color: #8799ac;
  text-align: center;
  font-size: 10px;
}
.form-note.is-success {
  color: #168c6f;
  font-size: 12px;
  font-weight: 600;
}
.form-note.is-error {
  color: #bf3e3e;
  font-size: 11px;
  font-weight: 600;
}
.submission-success-overlay {
  position: fixed;
  z-index: 360;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 24, 49, 0.48);
  backdrop-filter: blur(9px);
  animation: submission-fade-in 0.18s ease-out;
}
.submission-success-card {
  width: min(420px, 100%);
  padding: 42px 38px 34px;
  border: 1px solid rgba(132, 185, 238, 0.65);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(2, 30, 65, 0.3);
  text-align: center;
  animation: submission-pop-in 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.submission-success-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #168c6f;
  box-shadow: 0 12px 24px rgba(22, 140, 111, 0.23);
  font-size: 32px;
  font-weight: 700;
}
.submission-success-card h2 {
  margin: 0;
  color: #153d69;
  font-size: 26px;
}
.submission-success-card p {
  margin: 13px auto 27px;
  color: #617c96;
  font-size: 15px;
  line-height: 1.75;
}
.submission-success-card .button {
  min-width: 150px;
}
@keyframes submission-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes submission-pop-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.22s;
}

.page-hero {
  position: relative;
  min-height: 430px;
  padding: 150px 0 88px;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f9ff, #fff);
}
.page-hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
}
.page-hero-inner > a,
.page-hero-inner > span,
.page-hero-inner > em {
  color: #6b83a0;
  font-size: 12px;
  font-style: normal;
}
.page-hero-inner > span {
  margin: 0 8px;
}
.page-hero h1 {
  margin: 30px 0 17px;
  font-size: clamp(40px, 4.8vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}
.page-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-600);
  font-size: 17px;
  line-height: 1.8;
}
.page-preview {
  padding-top: 116px;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.preview-grid article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(55, 120, 202, 0.15);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f5faff);
  box-shadow: 0 18px 45px rgba(49, 101, 164, 0.07);
}
.preview-grid article span {
  color: var(--blue-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.preview-grid h3 {
  margin: 45px 0 8px;
  font-size: 20px;
}
.preview-grid p {
  margin: 0;
  color: var(--ink-600);
  font-size: 13px;
}
.preview-note {
  margin-top: 72px;
  padding: 33px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid rgba(52, 120, 203, 0.15);
  border-radius: 19px;
  background: #f5faff;
}
.preview-note strong {
  font-size: 17px;
}
.preview-note p {
  margin: 4px 0 0;
  color: var(--ink-600);
  font-size: 13px;
}
.compact-cta {
  padding: 70px 0 75px;
}

/* Motion layer: calm, fluid movement that preserves the glacier-aurora direction. */
.scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #58d7f5, #2b7ff1 58%, #a9a8ff);
  box-shadow: 0 0 12px rgba(48, 135, 239, 0.35);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.motion-ready .hero::before {
  translate: var(--ambient-x, 0px) var(--ambient-y, 0px);
  transition: translate 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: translate;
}

.motion-ready .hero-aurora-one {
  animation: auroraFlowOne 10s ease-in-out infinite alternate;
  transform-origin: 65% 50%;
}

.motion-ready .hero-aurora-two {
  animation: auroraFlowTwo 13s ease-in-out infinite alternate;
  transform-origin: 65% 50%;
}

.motion-ready .desktop-frame {
  animation: desktopBreathe 6.8s ease-in-out infinite;
  will-change: translate, transform;
}

.motion-ready .phone-frame {
  animation: phoneFloat 5.2s ease-in-out infinite;
  will-change: translate, transform;
}

.motion-ready .hero-environment-art {
  animation: environmentBreathe 10s ease-in-out infinite alternate;
  will-change: transform, opacity;
}

.desktop-body {
  position: relative;
}
.desktop-body::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: -35%;
  bottom: -35%;
  left: -48%;
  width: 32%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.58),
    transparent
  );
  transform: skewX(-16deg);
  opacity: 0;
}

.motion-ready .desktop-body::after {
  animation: screenSheen 7.5s 1.8s ease-in-out infinite;
}

.motion-ready .glass-orbit {
  animation: orbitPulse 6s ease-in-out infinite alternate;
}
.motion-ready .orbit-two {
  animation-delay: -2.2s;
}

.motion-ready .floating-cube {
  animation: glassCubeFloat 5s ease-in-out infinite;
}
.motion-ready .cube-b {
  animation-delay: -2.1s;
}

.motion-ready .data-orb {
  animation: orbBreathe 4.8s ease-in-out infinite;
}

.motion-ready .faq-illustration {
  animation: faqArtFloat 7s ease-in-out infinite;
  will-change: transform;
}

.motion-ready .cta-aurora {
  animation: ctaAuroraDrift 9s ease-in-out infinite alternate;
}

.motion-path {
  stroke-dasharray: var(--path-length);
  stroke-dashoffset: var(--path-length);
  transition: stroke-dashoffset 1.55s cubic-bezier(0.22, 0.72, 0.24, 1);
}
.motion-path.is-drawn {
  stroke-dashoffset: 0;
}
.line-chart .area {
  opacity: 0;
  transition: opacity 1s 0.45s ease;
}
.line-chart.is-animated .area {
  opacity: 1;
}

.lifecycle-track::after {
  content: "";
  position: absolute;
  left: 6.8%;
  right: 6.8%;
  top: 27px;
  z-index: -1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #65d6ee, #2c7ef0 52%, #a6a7ff);
  box-shadow: 0 0 14px rgba(48, 137, 239, 0.28);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.5s cubic-bezier(0.2, 0.72, 0.22, 1);
}
.lifecycle-track.motion-visible::after {
  transform: scaleX(1);
}
.lifecycle-track.motion-visible li span {
  animation: stepWake 0.65s both;
}
.lifecycle-track.motion-visible li:nth-child(2) span {
  animation-delay: 0.12s;
}
.lifecycle-track.motion-visible li:nth-child(3) span {
  animation-delay: 0.24s;
}
.lifecycle-track.motion-visible li:nth-child(4) span {
  animation-delay: 0.36s;
}
.lifecycle-track.motion-visible li:nth-child(5) span {
  animation-delay: 0.48s;
}
.lifecycle-track.motion-visible li:nth-child(6) span {
  animation-delay: 0.6s;
}
.lifecycle-track.motion-visible li:nth-child(7) span {
  animation-delay: 0.72s;
}

.motion-ready .value-flow article .icon-disc {
  animation: iconDrift 4.6s ease-in-out infinite;
}
.motion-ready .value-flow article:nth-of-type(2) .icon-disc {
  animation-delay: -1.4s;
}
.motion-ready .value-flow article:nth-of-type(3) .icon-disc {
  animation-delay: -2.8s;
}
.motion-ready .flow-line b {
  animation: flowDotPulse 2.4s ease-in-out infinite;
}

.scenario-card::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -55%;
  width: 34%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.72),
    transparent
  );
  transform: skewX(-17deg);
  transition: left 0.75s ease;
}
.scenario-card:hover::after {
  left: 125%;
}

.motion-ready .service-flow li:nth-child(even) i {
  display: inline-block;
  animation: serviceArrow 2.2s ease-in-out infinite;
}
.motion-ready .service-flow li:nth-child(4) i {
  animation-delay: 0.3s;
}
.motion-ready .service-flow li:nth-child(6) i {
  animation-delay: 0.6s;
}

.button-primary {
  position: relative;
  overflow: hidden;
}
.button-primary::after {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -50%;
  width: 26%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.52),
    transparent
  );
  transform: skewX(-16deg);
  transition: left 0.65s ease;
}
.button-primary:hover::after {
  left: 125%;
}

@keyframes auroraFlowOne {
  0% {
    transform: rotate(-11deg) skewX(-14deg) translate3d(-1.5%, 3%, 0)
      scaleX(0.98);
    opacity: 0.58;
  }
  50% {
    opacity: 0.82;
  }
  100% {
    transform: rotate(-8deg) skewX(-11deg) translate3d(3%, -7%, 0) scaleX(1.06);
    opacity: 0.68;
  }
}
@keyframes auroraFlowTwo {
  0% {
    transform: rotate(-12deg) translate3d(-2%, 2px, 0);
    opacity: 0.48;
  }
  100% {
    transform: rotate(-9deg) translate3d(4%, -8px, 0);
    opacity: 0.8;
  }
}
@keyframes desktopBreathe {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}
@keyframes phoneFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}
@keyframes screenSheen {
  0%,
  70% {
    left: -48%;
    opacity: 0;
  }
  76% {
    opacity: 0.7;
  }
  94%,
  100% {
    left: 125%;
    opacity: 0;
  }
}
@keyframes orbitPulse {
  from {
    opacity: 0.38;
    filter: saturate(0.85);
  }
  to {
    opacity: 0.76;
    filter: saturate(1.2);
  }
}
@keyframes glassCubeFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  50% {
    translate: 0 -9px;
    rotate: 2deg;
  }
}
@keyframes orbBreathe {
  0%,
  100% {
    translate: 0 0;
    scale: 1;
  }
  50% {
    translate: 0 -7px;
    scale: 1.025;
  }
}
@keyframes questionFloat {
  0%,
  100% {
    translate: 0 0;
    rotate: 0deg;
  }
  50% {
    translate: 0 -10px;
    rotate: -2deg;
  }
}
@keyframes environmentBreathe {
  0% {
    transform: scale(1.01) translate3d(-0.6%, 0.4%, 0);
    opacity: 0.82;
  }
  100% {
    transform: scale(1.045) translate3d(0.8%, -1%, 0);
    opacity: 0.92;
  }
}
@keyframes faqArtFloat {
  0%,
  100% {
    transform: translate3d(-3%, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-1.5%, -10px, 0) scale(1.018);
  }
}
@keyframes ctaAuroraDrift {
  from {
    transform: translateX(-52%) translateY(2px) scaleX(0.98);
    opacity: 0.78;
  }
  to {
    transform: translateX(-48%) translateY(-3px) scaleX(1.03);
    opacity: 1;
  }
}
@keyframes stepWake {
  0% {
    transform: scale(0.78);
    color: var(--ink-600);
    box-shadow: 0 0 0 rgba(53, 123, 213, 0);
  }
  55% {
    transform: scale(1.08);
    color: #fff;
    background: #2e7ff0;
    box-shadow: 0 0 0 12px rgba(54, 131, 234, 0.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes iconDrift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -4px;
  }
}
@keyframes flowDotPulse {
  0%,
  100% {
    scale: 0.85;
    opacity: 0.65;
  }
  50% {
    scale: 1.2;
    opacity: 1;
  }
}
@keyframes serviceArrow {
  0%,
  100% {
    translate: 0 0;
    opacity: 0.6;
  }
  50% {
    translate: 5px 0;
    opacity: 1;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 19px;
  }
  .main-nav a {
    font-size: 13px;
  }
  .brand-name {
    font-size: 16px;
  }
  .desktop-frame {
    right: 24px;
    width: 590px;
    height: 402px;
  }
  .phone-frame {
    right: -1px;
  }
  .form-window,
  .table-window,
  .schedule-window {
    width: 86%;
  }
  .laptop {
    left: -2%;
    transform: scale(0.9);
    transform-origin: left center;
  }
  .platform-phone {
    right: 0;
  }
  .trust-rail article {
    padding: 0 23px;
  }
  .footer-grid {
    grid-template-columns: 1fr 3fr;
  }
  .footer-contact {
    display: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }
  .site-container {
    width: min(calc(100% - 36px), var(--container));
  }
  .header-actions .system-entry {
    display: none;
  }
  .menu-toggle {
    order: 3;
    width: 42px;
    height: 42px;
    margin-left: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 9px;
    background: rgba(238, 247, 255, 0.9);
    cursor: pointer;
  }
  .menu-toggle span {
    width: 100%;
    height: 1.5px;
    background: var(--ink-800);
    transition: 0.25s ease;
  }
  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    padding: 17px 18px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    border-top: 1px solid rgba(54, 113, 180, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 45px rgba(25, 67, 115, 0.13);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.24s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .main-nav a {
    padding: 12px 14px;
    border-radius: 8px;
  }
  .main-nav a.is-active {
    background: #eef6ff;
  }
  .main-nav a::after {
    display: none;
  }
  .nav-product > button {
    width: 100%;
    padding: 12px 14px;
    justify-content: space-between;
    border-radius: 8px;
    font-size: 13px;
  }
  .nav-product.is-open > button {
    background: #eef6ff;
  }
  .product-menu {
    position: static;
    width: auto;
    margin-top: 3px;
    padding: 4px;
    display: none;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }
  .nav-product.is-open .product-menu {
    display: block;
    transform: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .hero {
    min-height: 1050px;
    padding-top: 130px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .hero-copy {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
  }
  .hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-note {
    justify-content: center;
  }
  .hero-product {
    width: min(760px, 100%);
    margin: 0 auto;
  }
  .hero-product::before {
    left: -8%;
    width: 27%;
  }
  .hero-environment-art {
    left: -5%;
    width: 110%;
  }
  .desktop-frame {
    left: 50%;
    right: auto;
    width: 640px;
    transform: translateX(-52%) rotateY(-3deg);
  }
  .phone-frame {
    right: 2%;
  }
  .value-band {
    margin-top: -72px;
  }
  .value-panel {
    padding: 32px;
  }
  .value-flow {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .flow-line {
    width: 1px;
    height: 22px;
    margin: 0 auto;
    background: linear-gradient(transparent, #a8c9ed, transparent);
  }
  .value-flow article {
    justify-content: flex-start;
    width: 310px;
    margin: 0 auto;
  }
  .capability-scene,
  .capability-scene.reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .capability-scene.reverse .scene-copy,
  .capability-scene.reverse .scene-art {
    grid-column: auto;
    grid-row: auto;
  }
  .capability-scene.reverse .scene-copy {
    order: 0;
  }
  .scene-copy {
    max-width: 600px;
  }
  .scene-art {
    min-height: 430px;
  }
  .scenario-grid {
    gap: 15px;
  }
  .scenario-card {
    min-height: 310px;
    padding: 27px;
  }
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .platform-copy {
    max-width: 650px;
    text-align: center;
    margin: 0 auto;
  }
  .platform-copy .section-heading {
    margin: 0 auto;
  }
  .platform-copy .section-heading p {
    margin-left: auto;
    margin-right: auto;
  }
  .platform-copy ul {
    display: inline-block;
    text-align: left;
  }
  .platform-devices {
    width: min(720px, 100%);
    margin: 0 auto;
  }
  .trust-rail {
    padding: 30px;
  }
  .trust-rail article {
    padding: 0 15px;
    align-items: flex-start;
  }
  .trust-rail article {
    flex-direction: column;
  }
  .service-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .service-flow li:nth-child(even) {
    display: none;
  }
  .service-flow li:not(:nth-child(even)) {
    flex-direction: column;
    text-align: center;
  }
  .faq-grid {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 45px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links {
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-container {
    width: min(calc(100% - 32px), var(--container));
  }
  .section-space {
    padding: 88px 0;
  }
  .brand-name {
    font-size: 15px;
  }
  .brand-mark {
    width: 25px;
    height: 25px;
  }
  .header-actions .button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .main-nav {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding: 116px 0 108px;
  }
  .hero-grid {
    gap: 55px;
  }
  .hero-copy h1 {
    max-width: 520px;
    font-size: clamp(38px, 8.5vw, 48px);
    line-height: 1.22;
  }
  .hero-copy > p {
    margin-top: 23px;
    font-size: 16px;
    line-height: 1.8;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 310px;
    margin: 30px auto 0;
  }
  .hero-note {
    max-width: 320px;
    margin: 24px auto 0;
    gap: 9px 16px;
  }
  .hero-product {
    min-height: 337px;
    transform: translateX(-2%);
  }
  .hero-product::before {
    top: -68px;
    left: -28%;
    width: 43%;
    height: 425px;
  }
  .hero-environment-art {
    top: -68px;
    left: -24%;
    width: 150%;
    height: 425px;
    object-position: 50% 65%;
    opacity: 0.78;
  }
  .desktop-frame {
    top: 0;
    width: 510px;
    height: 330px;
    transform: translateX(-55%) scale(0.72);
    transform-origin: top center;
  }
  .phone-frame {
    top: 84px;
    right: -1%;
    transform: scale(0.72);
    transform-origin: top right;
  }
  .hero-landscape {
    width: 280px;
  }
  .value-band {
    margin-top: -42px;
  }
  .value-panel {
    padding: 29px 22px 32px;
    border-radius: 18px;
  }
  .value-panel h2 {
    font-size: 21px;
  }
  .value-flow article {
    width: 100%;
  }
  .icon-disc {
    width: 44px;
    height: 44px;
  }
  .section-heading.centered {
    margin-bottom: 48px;
  }
  .section-heading h2 {
    font-size: 31px;
  }
  .section-heading p {
    font-size: 14px;
  }
  .lifecycle {
    padding: 103px 0 124px;
  }
  .lifecycle-track {
    grid-template-columns: 1fr;
    width: 250px;
    margin: 0 auto;
    gap: 0;
  }
  .lifecycle-track::before {
    left: 26px;
    right: auto;
    top: 25px;
    bottom: 25px;
    width: 1px;
    height: auto;
    background: linear-gradient(
      rgba(71, 139, 229, 0.18),
      rgba(51, 130, 235, 0.6),
      rgba(71, 139, 229, 0.18)
    );
  }
  .lifecycle-track::after {
    left: 26px;
    right: auto;
    top: 25px;
    bottom: 25px;
    width: 2px;
    height: auto;
    transform: scaleY(0);
    transform-origin: top center;
  }
  .lifecycle-track.motion-visible::after {
    transform: scaleY(1);
  }
  .lifecycle-track li {
    min-height: 74px;
    flex-direction: row;
    gap: 23px;
  }
  .lifecycle-track span {
    width: 52px;
    height: 52px;
  }
  .lifecycle-track strong {
    font-size: 14px;
  }
  .capabilities {
    padding-top: 84px;
  }
  .capability-scenes {
    gap: 88px;
  }
  .scene-copy h3 {
    font-size: 29px;
  }
  .scene-copy p {
    font-size: 14px;
  }
  .scene-art {
    min-height: 300px;
    border-radius: 24px;
  }
  .form-window,
  .table-window,
  .schedule-window {
    width: 115%;
    transform: scale(0.7);
  }
  .ticket-card {
    right: 0;
    transform: scale(0.8);
    transform-origin: right bottom;
  }
  .data-orb {
    right: 1%;
    width: 86px;
    height: 86px;
  }
  .data-orb span {
    font-size: 20px;
  }
  .scenario-grid {
    grid-template-columns: 1fr;
  }
  .scenario-card {
    min-height: 300px;
  }
  .scenario-card > div {
    max-width: 220px;
  }
  .platforms {
    min-height: auto;
  }
  .platform-copy .section-heading h2 br {
    display: none;
  }
  .platform-devices {
    min-height: 330px;
  }
  .laptop {
    left: 50%;
    top: 0;
    transform: translateX(-53%) scale(0.6);
    transform-origin: top center;
  }
  .platform-phone {
    right: -1%;
    top: 62px;
    transform: scale(0.68);
    transform-origin: top right;
  }
  .trust {
    padding: 80px 0;
  }
  .trust-rail {
    grid-template-columns: 1fr;
    padding: 8px 24px;
  }
  .trust-rail article {
    padding: 25px 4px;
    flex-direction: row;
  }
  .trust-rail article + article {
    border-left: 0;
    border-top: 1px solid rgba(60, 121, 194, 0.13);
  }
  .service-panel {
    padding: 46px 24px;
  }
  .service-flow {
    grid-template-columns: 1fr 1fr;
    gap: 36px 18px;
  }
  .faq {
    padding-top: 95px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .faq-art {
    min-height: 250px;
  }
  .faq-illustration {
    width: 118%;
    transform: translateX(0);
  }
  .accordion button {
    min-height: 67px;
    font-size: 14px;
  }
  .final-cta {
    padding: 68px 0 73px;
  }
  .final-cta h2 {
    font-size: 30px;
  }
  .final-cta p {
    font-size: 14px;
  }
  .site-footer {
    padding-top: 45px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 55px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
  }
  .demo-dialog {
    max-height: calc(100vh - 32px);
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .dialog-copy {
    min-height: 160px;
    padding: 36px 30px;
  }
  .dialog-copy h2 {
    margin: 26px 0 8px;
  }
  .dialog-copy p {
    max-width: 75%;
  }
  .dialog-orbit {
    left: auto;
    right: 45px;
    top: 30px;
    width: 85px;
    height: 85px;
  }
  .demo-form {
    padding: 30px 26px 28px;
  }
  .page-hero {
    min-height: 430px;
    padding: 155px 0 90px;
  }
  .page-hero p {
    font-size: 15px;
  }
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .preview-grid article {
    min-height: 185px;
  }
  .preview-note {
    padding: 28px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Product-led illustration system — replaces the previous decorative 3D artwork. */
.hero {
  background: linear-gradient(180deg, #fff 0%, #fbfdff 72%, #fff 100%);
}
.hero::before {
  top: -20%;
  right: -11%;
  width: 72%;
  height: 95%;
  background: radial-gradient(
    circle at 55% 43%,
    rgba(59, 126, 255, 0.17),
    rgba(96, 210, 235, 0.09) 34%,
    rgba(176, 164, 255, 0.06) 52%,
    transparent 72%
  );
  filter: blur(12px);
}
.hero::after {
  opacity: 0.55;
}
.hero-product {
  min-height: 520px;
  isolation: isolate;
}
.hero-product::before {
  display: none;
}
.product-light-ribbon {
  position: absolute;
  z-index: 0;
  inset: -88px -17% -62px -30%;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(
    ellipse 66% 54% at 70% 46%,
    rgba(48, 119, 255, 0.16),
    transparent 66%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 22%,
    #000 88%,
    transparent 100%
  );
}
.product-light-ribbon::before,
.product-light-ribbon::after {
  content: "";
  position: absolute;
  left: 2%;
  right: -8%;
  border-radius: 50%;
  transform: rotate(-11deg);
}
.product-light-ribbon::before {
  top: 12%;
  height: 60%;
  border-top: 42px solid rgba(63, 132, 255, 0.16);
  box-shadow:
    0 -22px 38px rgba(82, 211, 235, 0.15),
    0 -54px 68px rgba(150, 139, 255, 0.09);
  filter: blur(10px);
}
.product-light-ribbon::after {
  top: 28%;
  height: 52%;
  border-top: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 -11px 26px rgba(63, 132, 255, 0.24);
}
.desktop-frame {
  z-index: 2;
  top: 8px;
  right: 28px;
  width: 680px;
  height: 446px;
  padding: 7px;
  border: 1px solid rgba(35, 102, 187, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow:
    0 42px 85px rgba(25, 75, 139, 0.22),
    0 9px 28px rgba(55, 135, 236, 0.12),
    inset 0 1px 0 #fff;
  transform: translate3d(var(--hero-shift-x, 0px), var(--hero-shift-y, 0px), 0)
    rotateY(-2.2deg) rotateZ(-0.35deg);
  backdrop-filter: blur(20px);
}
.desktop-frame::before {
  display: none;
}
.desktop-topbar {
  height: 31px;
  padding: 0 11px;
  border-bottom: 1px solid rgba(54, 112, 180, 0.08);
  border-radius: 13px 13px 0 0;
  background: rgba(255, 255, 255, 0.9);
}
.desktop-topbar > span {
  width: 6px;
  height: 6px;
  background: #b9cbdd;
}
.desktop-topbar > span:nth-child(1) {
  background: #ff746d;
}
.desktop-topbar > span:nth-child(2) {
  background: #f7c651;
}
.desktop-topbar > span:nth-child(3) {
  background: #4fce7a;
}
.desktop-topbar b {
  color: #637b94;
  font-size: 8px;
  font-weight: 600;
}
.desktop-topbar strong {
  margin-left: auto;
  color: #294b70;
  font-size: 8px;
  font-weight: 650;
}
.desktop-body {
  height: calc(100% - 31px);
  grid-template-columns: 116px 1fr;
  border-radius: 0 0 13px 13px;
  background: #f3f7fc;
}
.mock-sidebar {
  padding: 19px 11px;
  background: linear-gradient(180deg, #071d3e, #0a3267 68%, #0b4a89);
}
.mock-logo {
  margin-bottom: 19px;
  font-size: 11px;
}
.mock-logo span {
  background: linear-gradient(145deg, #1c74ff, #5bdded);
  box-shadow: 0 7px 16px rgba(43, 143, 255, 0.36);
}
.mock-sidebar a {
  height: 36px;
  padding: 0 9px;
  border-radius: 7px;
  font-size: 8px;
}
.mock-sidebar a.active {
  background: linear-gradient(90deg, #176bf4, #348ef8);
  box-shadow: 0 9px 22px rgba(17, 101, 229, 0.36);
}
.mock-dashboard {
  padding: 20px 20px 17px;
}
.mock-heading {
  margin-bottom: 15px;
}
.mock-heading strong {
  margin-top: 3px;
  font-size: 13px;
}
.mock-heading > span {
  color: #3971b0;
  background: #e9f2ff;
}
.metric-row {
  gap: 9px;
}
.metric-row > div {
  min-height: 70px;
  padding: 13px 12px;
  border: 1px solid rgba(48, 105, 174, 0.06);
  border-radius: 9px;
  box-shadow: 0 8px 21px rgba(34, 75, 125, 0.045);
}
.metric-row strong {
  margin-top: 7px;
  font-size: 18px;
}
.chart-row {
  grid-template-columns: 1.3fr 0.75fr;
  gap: 9px;
}
.line-chart,
.progress-chart {
  border: 1px solid rgba(50, 107, 177, 0.06);
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(35, 75, 123, 0.04);
}
.phone-frame {
  z-index: 4;
  right: -2px;
  top: 115px;
  width: 169px;
  height: 350px;
  padding: 7px;
  border: 1px solid rgba(38, 101, 180, 0.2);
  border-radius: 29px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 30px 58px rgba(22, 67, 123, 0.24),
    0 0 0 5px rgba(255, 255, 255, 0.62),
    inset 0 1px 0 #fff;
  transform: translate3d(var(--hero-phone-x, 0px), var(--hero-phone-y, 0px), 0)
    rotateY(-2deg);
  backdrop-filter: blur(20px);
}
.phone-speaker {
  top: 10px;
  width: 48px;
  height: 5px;
  background: #102c4d;
}
.phone-screen {
  border-radius: 21px;
  background: #f4f7fb;
}
.mobile-banner {
  border-radius: 11px;
  background: linear-gradient(135deg, #0a59dd, #207cf4 68%, #36b6f1);
  box-shadow: 0 11px 25px rgba(20, 105, 226, 0.24);
}
.phone-screen > button {
  background: #0b2f59;
}
.hero-proof-stack {
  position: absolute;
  z-index: 5;
  right: 150px;
  bottom: -12px;
  display: flex;
  gap: 10px;
  pointer-events: none;
}
.hero-proof-card {
  width: 160px;
  min-height: 69px;
  padding: 12px 14px;
  border: 1px solid rgba(54, 119, 202, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 17px 38px rgba(25, 78, 142, 0.13),
    inset 0 1px 0 #fff;
  backdrop-filter: blur(16px);
}
.hero-proof-card span,
.hero-proof-card small {
  display: block;
  color: #7890a8;
  font-size: 7px;
}
.hero-proof-card strong {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0 3px;
  color: #10365f;
  font-size: 11px;
}
.hero-proof-card strong i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #26bea0;
  box-shadow: 0 0 0 4px rgba(38, 190, 160, 0.11);
}

.scene-art {
  min-height: 430px;
  border: 1px solid rgba(43, 112, 198, 0.13);
  border-radius: 30px;
  background: #edf5ff;
  box-shadow:
    0 28px 70px rgba(30, 82, 147, 0.13),
    inset 0 1px 0 #fff;
}
.scene-art::before {
  z-index: 0;
  inset: 0;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
  transform: none;
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(101, 210, 238, 0.23),
      transparent 26%
    ),
    radial-gradient(
      circle at 12% 83%,
      rgba(111, 112, 246, 0.13),
      transparent 32%
    );
}
.scene-art::after {
  z-index: 0;
  background-image:
    linear-gradient(rgba(47, 108, 182, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 108, 182, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(145deg, transparent, #000 33%, transparent 82%);
}
.form-scene {
  background: linear-gradient(132deg, #d9eaff 0%, #f7fbff 49%, #dfe9ff 100%);
}
.data-scene {
  background: linear-gradient(
    132deg,
    #0b4ba9 0%,
    #1670e6 23%,
    #eaf3ff 23.2%,
    #f8fbff 100%
  );
}
.exam-scene {
  background: linear-gradient(132deg, #e8f2ff 0%, #f8fbff 54%, #e9efff 100%);
}
.ui-window {
  border-color: rgba(34, 94, 169, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow:
    0 26px 56px rgba(25, 71, 128, 0.17),
    0 6px 18px rgba(38, 112, 207, 0.08),
    inset 0 1px 0 #fff;
  backdrop-filter: blur(18px);
}
.ui-bar {
  height: 31px;
  border-bottom: 1px solid #e9eff6;
  background: #f7faff;
}
.ui-save-state {
  margin-left: auto;
  color: #2371dc;
  font-size: 7px;
  font-weight: 650;
}
.form-window {
  width: 91%;
  height: 330px;
  transform: translateX(1%) rotateY(-1.5deg);
}
.form-editor {
  height: calc(100% - 31px);
  grid-template-columns: 108px 1fr 132px;
}
.form-editor .component-list {
  padding: 17px 12px;
  border-right: 0;
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(180deg, #071f46, #0b3e7a);
}
.form-editor .component-list b,
.form-editor .component-list span {
  display: block;
}
.form-editor .component-list b {
  margin-bottom: 11px;
  color: #fff;
  font-size: 9px;
}
.form-editor .component-list span {
  margin-bottom: 6px;
  padding: 6px 7px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.075);
  font-size: 7px;
}
.form-editor .component-list span:nth-of-type(2) {
  color: #fff;
  border-color: rgba(95, 191, 255, 0.44);
  background: linear-gradient(
    90deg,
    rgba(30, 110, 235, 0.88),
    rgba(53, 165, 240, 0.68)
  );
}
.form-fields {
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 11px 13px;
}
.form-section-title {
  grid-column: 1 / -1;
  display: flex;
  gap: 17px;
  padding-bottom: 7px;
  border-bottom: 1px solid #edf1f6;
  color: #8a9caf;
  font-size: 7px;
}
.form-section-title b {
  color: #2878e6;
}
.form-fields label {
  color: #53708e;
  font-size: 7px;
}
.form-fields input,
.form-fields select {
  width: 100%;
  height: 28px;
  margin-top: 5px;
  padding: 0 8px;
  border: 1px solid #d9e5f0;
  border-radius: 5px;
  color: #55718e;
  background: #fff;
  font-size: 7px;
}
.field-inspector {
  padding: 16px 12px;
  border-left: 1px solid #e5edf5;
  background: #fbfdff;
}
.field-inspector > b {
  display: block;
  padding-bottom: 9px;
  border-bottom: 1px solid #e9eff5;
  color: #2874d9;
  font-size: 9px;
}
.field-inspector label {
  display: block;
  margin-top: 11px;
  color: #7189a2;
  font-size: 7px;
}
.field-inspector label span {
  display: block;
  margin-top: 4px;
  padding: 7px;
  border: 1px solid #dfe8f2;
  border-radius: 5px;
  color: #456481;
  background: #fff;
}
.field-inspector p {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #637d98;
  font-size: 7px;
}
.field-inspector p i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #2a7cf0;
  box-shadow:
    inset 0 0 0 2px #fff,
    0 0 0 1px #2a7cf0;
}
.scene-float-note {
  position: absolute;
  z-index: 4;
  right: 2.7%;
  bottom: 4%;
  width: 205px;
  padding: 12px 14px;
  border: 1px solid rgba(46, 114, 204, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(27, 78, 143, 0.15);
}
.scene-float-note span,
.scene-float-note strong {
  display: block;
}
.scene-float-note span {
  color: #3180e9;
  font-size: 7px;
}
.scene-float-note strong {
  margin-top: 4px;
  color: #244d74;
  font-size: 8px;
}
.table-window {
  left: 2%;
  width: 84%;
  height: 314px;
  transform: none;
}
.review-toolbar {
  height: 43px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #edf2f7;
}
.review-toolbar span {
  padding: 6px 9px;
  border: 1px solid #dbe6f2;
  border-radius: 5px;
  color: #65809a;
  background: #fff;
  font-size: 7px;
}
.review-toolbar b {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 5px;
  color: #fff;
  background: #2479ed;
  font-size: 7px;
  font-weight: 600;
}
.table-head {
  height: 37px;
  padding: 0 15px;
}
.fake-table {
  padding: 0 15px;
}
.fake-table p {
  height: 39px;
  grid-template-columns: 18px 1fr 1.18fr 0.72fr;
}
.review-summary {
  position: absolute;
  z-index: 4;
  right: 3%;
  bottom: 5%;
  width: 143px;
  padding: 15px;
  border: 1px solid rgba(43, 111, 199, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 44px rgba(26, 78, 144, 0.18);
}
.review-summary > span,
.review-summary > small {
  display: block;
  color: #7d91a6;
  font-size: 7px;
}
.review-summary > strong {
  display: block;
  margin: 5px 0 1px;
  color: #125fc9;
  font-size: 23px;
}
.review-summary > div {
  height: 67px;
  margin-top: 12px;
  display: flex;
  align-items: end;
  gap: 6px;
}
.review-summary > div i {
  flex: 1;
  min-height: 9px;
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, #42c8e9, #2779ef);
  box-shadow: 0 5px 12px rgba(41, 121, 239, 0.15);
}
.exam-session-panel {
  position: absolute;
  z-index: 3;
  left: 3%;
  top: 54px;
  width: 156px;
  padding: 15px 12px;
  border: 1px solid rgba(42, 105, 187, 0.14);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 42px rgba(27, 75, 134, 0.14);
}
.exam-session-panel > b {
  display: block;
  margin-bottom: 10px;
  color: #244c75;
  font-size: 9px;
}
.exam-session-panel article {
  margin-top: 7px;
  padding: 10px;
  border: 1px solid #e3ebf4;
  border-radius: 8px;
  background: #fff;
}
.exam-session-panel article.active {
  border-color: rgba(40, 122, 236, 0.27);
  background: #eef6ff;
  box-shadow: inset 3px 0 #267af0;
}
.exam-session-panel strong,
.exam-session-panel small {
  display: block;
}
.exam-session-panel strong {
  color: #375b7e;
  font-size: 7px;
}
.exam-session-panel small {
  margin-top: 4px;
  color: #8699ad;
  font-size: 6px;
}
.schedule-window {
  right: 3%;
  width: 68%;
  height: 320px;
  transform: none;
}
.calendar-head {
  padding: 14px 16px 8px;
}
.calendar-grid {
  gap: 5px;
  padding: 7px 15px;
}
.exam-resource-row {
  margin: 8px 16px 0;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.4fr;
  align-items: center;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  color: #6b8198;
  background: #f8fbfe;
  font-size: 7px;
}
.exam-resource-row b {
  color: #2d557e;
  font-size: 7px;
}
.exam-resource-row small {
  text-align: right;
  font-size: 6px;
}
.exam-room-table {
  margin: 7px 16px 0;
}
.exam-room-table p {
  min-height: 25px;
  margin: 0;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 0.8fr 1.35fr 0.55fr;
  align-items: center;
  border-top: 1px solid #edf2f7;
  color: #71879d;
  font-size: 6px;
}
.exam-room-table b {
  color: #345a7f;
  font-size: 6px;
}
.exam-room-table em {
  justify-self: end;
  color: #24896f;
  font-style: normal;
}
.ticket-card {
  right: 2.8%;
  bottom: 4%;
  width: 181px;
  padding: 13px 13px 12px;
  grid-template-columns: 38px 1fr;
  border-radius: 12px;
}
.ticket-card .avatar {
  width: 38px;
  height: 44px;
  background: linear-gradient(155deg, #d3e9fa, #85b4e0);
}
.ticket-note {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed #d9e5f0;
  color: #6c839a;
  font-size: 6px;
}

.scenarios {
  background: linear-gradient(180deg, #f7fbff, #eef5ff 54%, #f8fbff);
}
.scenario-card {
  min-height: 440px;
  padding: 29px 29px 27px;
  border-color: rgba(43, 109, 195, 0.17);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow:
    0 22px 56px rgba(31, 82, 145, 0.1),
    inset 0 1px 0 #fff;
}
.scenario-card::before {
  z-index: 0;
  background: radial-gradient(
    circle at 85% 12%,
    rgba(62, 135, 255, 0.11),
    transparent 33%
  );
}
.scenario-card::after {
  z-index: 4;
}
.scenario-copy {
  position: relative;
  z-index: 2;
  max-width: 270px;
  margin-top: 19px;
}
.scenario-card > .scenario-copy h3 {
  font-size: 26px;
  line-height: 1.4;
}
.scenario-card > .scenario-copy p {
  max-width: 260px;
  color: #627b94;
  font-size: 16px;
  line-height: 1.75;
}
.scenario-preview {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 225px;
  margin-top: 24px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid #dce7f2;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 15px 32px rgba(29, 79, 139, 0.09);
}
.scenario-preview header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: #294e75;
  font-size: 9px;
}
.scenario-preview header span {
  color: #7d93a9;
  font-size: 7px;
}
.public-preview p {
  margin: 11px 0;
  display: grid;
  grid-template-columns: 54px 1fr 36px;
  align-items: center;
  gap: 7px;
  color: #66809a;
  font-size: 7px;
}
.public-preview p b {
  font-weight: 550;
}
.public-preview p i {
  height: 6px;
  overflow: hidden;
  border-radius: 7px;
  background: #edf3f9;
}
.public-preview p em {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2b7bf0, #45c8e9);
}
.public-preview p strong {
  color: #315b83;
  text-align: right;
  font-size: 7px;
}
.internal-preview {
  background: linear-gradient(145deg, #fff, #f4f9ff);
}
.org-map {
  position: relative;
  height: 165px;
}
.org-map::before {
  content: "";
  position: absolute;
  left: 23%;
  right: 21%;
  top: 48%;
  height: 1px;
  background: #9fc5ef;
  box-shadow:
    50px -41px 0 -0.2px #9fc5ef,
    -45px 43px 0 -0.2px #9fc5ef;
  transform: rotate(-2deg);
}
.org-center,
.org-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid #bcd5f0;
  border-radius: 9px;
  color: #3b6289;
  background: #fff;
  box-shadow: 0 9px 20px rgba(35, 94, 164, 0.08);
  text-align: center;
  font-size: 7px;
}
.org-center {
  left: 50%;
  top: 54px;
  width: 112px;
  height: 52px;
  color: #fff;
  border-color: #236fe0;
  background: linear-gradient(135deg, #1a66e3, #2f86f4);
  transform: translateX(-50%);
}
.org-node {
  width: 74px;
  height: 42px;
}
.org-node small,
.org-center small {
  display: block;
  margin-top: 2px;
  font-size: 6px;
}
.node-one {
  left: 4px;
  top: 12px;
}
.node-two {
  right: 4px;
  top: 12px;
  border-color: #a9dfd2;
  background: #f0fbf8;
}
.node-three {
  left: 12px;
  bottom: 2px;
  background: #eef6ff;
}
.exam-preview {
  background: linear-gradient(145deg, #fff, #f5f9ff);
}
.mini-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  color: #728aa2;
  text-align: center;
  font-size: 6px;
}
.mini-calendar i {
  font-style: normal;
}
.mini-calendar span {
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.mini-calendar span.active {
  color: #fff;
  background: #2478ee;
  box-shadow: 0 6px 13px rgba(36, 120, 238, 0.25);
}
.mini-session {
  position: relative;
  margin-top: 15px;
  padding: 12px 11px;
  border: 1px solid #d9e7f4;
  border-radius: 9px;
  background: #fff;
}
.mini-session b,
.mini-session small {
  display: block;
}
.mini-session b {
  color: #2f557b;
  font-size: 8px;
}
.mini-session small {
  margin-top: 4px;
  color: #7c91a7;
  font-size: 6px;
}
.mini-session em {
  position: absolute;
  right: 9px;
  top: 9px;
  padding: 4px 7px;
  border-radius: 8px;
  color: #2374dc;
  background: #e9f3ff;
  font-size: 6px;
  font-style: normal;
}
.scenario-card > i {
  right: 25px;
  bottom: 24px;
  z-index: 5;
}

.faq {
  background: #fff;
}
.faq-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}
.faq-support-visual {
  min-height: 365px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 13px;
}
.support-primary {
  padding: 30px 27px;
  border-radius: 23px;
  color: #fff;
  background: linear-gradient(155deg, #0a2d5a, #0c4f96);
  box-shadow: 0 27px 58px rgba(9, 54, 107, 0.22);
}
.support-primary > span {
  color: #8fdaf1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
}
.support-primary h3 {
  margin: 8px 0 4px;
  font-size: 23px;
}
.support-primary > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
}
.support-primary dl {
  margin: 25px 0 0;
}
.support-primary dl div {
  margin-top: 10px;
  padding: 12px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}
.support-primary dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
}
.support-primary dd {
  margin: 0;
  color: #fff;
  font-size: 9px;
}
.support-primary dd b {
  margin-right: 2px;
  color: #75def2;
  font-size: 18px;
}
.support-secondary {
  display: grid;
  gap: 13px;
}
.support-secondary article {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(44, 108, 193, 0.14);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f3f8ff);
  box-shadow: 0 18px 42px rgba(31, 82, 145, 0.09);
}
.support-secondary span {
  color: #2376e5;
  font-size: 11px;
  font-weight: 700;
}
.support-secondary strong {
  margin: 9px 0 19px;
  color: #294e74;
  font-size: 13px;
  line-height: 1.65;
}
.support-secondary a {
  color: #246fda;
  font-size: 10px;
  font-weight: 650;
}

.motion-ready .product-light-ribbon::before {
  animation: productRibbonDrift 9s ease-in-out infinite alternate;
}
.motion-ready .hero-proof-card:first-child {
  animation: proofCardFloat 5.6s ease-in-out infinite;
}
.motion-ready .hero-proof-card:last-child {
  animation: proofCardFloat 5.6s -2s ease-in-out infinite;
}
.scene-art:hover .ui-window {
  transform: translateY(-4px);
}
.scene-art .ui-window {
  transition:
    transform 0.55s cubic-bezier(0.2, 0.72, 0.22, 1),
    box-shadow 0.55s ease;
}
.scenario-card:hover .scenario-preview {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(29, 79, 139, 0.14);
}
.scenario-preview {
  transition:
    transform 0.45s cubic-bezier(0.2, 0.72, 0.22, 1),
    box-shadow 0.45s ease;
}
@keyframes productRibbonDrift {
  from {
    translate: -1.2% 2%;
    opacity: 0.72;
  }
  to {
    translate: 2.3% -2%;
    opacity: 1;
  }
}
@keyframes proofCardFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@media (max-width: 980px) {
  .hero-product {
    min-height: 530px;
  }
  .product-light-ribbon {
    inset: -75px -12% -45px -12%;
  }
  .desktop-frame {
    left: 50%;
    right: auto;
    width: 655px;
    transform: translateX(-52%) rotateY(-1.4deg);
  }
  .phone-frame {
    right: 1%;
  }
  .hero-proof-stack {
    right: 17%;
  }
  .form-window {
    width: 88%;
  }
  .table-window {
    width: 82%;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .faq-support-visual {
    width: min(680px, 100%);
    min-height: 340px;
  }
  .scenario-card {
    min-height: 410px;
    padding: 24px;
  }
  .scenario-preview {
    padding: 13px;
  }
}

@media (max-width: 680px) {
  .hero-product {
    min-height: 390px;
    transform: none;
  }
  .product-light-ribbon {
    inset: -55px -35% -25px -35%;
  }
  .desktop-frame {
    top: 0;
    width: 575px;
    height: 410px;
    transform: translateX(-54%) scale(0.65);
    transform-origin: top center;
  }
  .phone-frame {
    top: 86px;
    right: -2%;
    transform: scale(0.67);
    transform-origin: top right;
  }
  .hero-proof-stack {
    display: none;
  }
  .scene-art {
    min-height: 355px;
    border-radius: 24px;
  }
  .form-window {
    width: 132%;
    height: 330px;
    transform: scale(0.68);
  }
  .form-editor {
    grid-template-columns: 104px 1fr;
  }
  .field-inspector {
    display: none;
  }
  .table-window {
    left: -9%;
    width: 126%;
    height: 310px;
    transform: scale(0.72);
  }
  .review-summary {
    right: 0;
    bottom: 2%;
    transform: scale(0.78);
    transform-origin: right bottom;
  }
  .exam-session-panel {
    display: none;
  }
  .schedule-window {
    right: auto;
    width: 118%;
    height: 320px;
    transform: scale(0.73);
  }
  .ticket-card {
    right: 0;
    bottom: 2%;
    transform: scale(0.76);
    transform-origin: right bottom;
  }
  .scenario-card {
    min-height: 420px;
  }
  .scenario-preview {
    min-height: 215px;
  }
  .faq-support-visual {
    min-height: auto;
    grid-template-columns: 1fr;
  }
  .support-primary {
    padding: 27px 23px;
  }
  .support-secondary {
    grid-template-columns: 1fr 1fr;
  }
  .support-secondary article {
    min-height: 165px;
    padding: 20px 17px;
  }
}

/* Cross-platform product story: a shared workflow, not device-shaped decoration. */
.platforms {
  min-height: 780px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 58%, #fff 100%);
}
.platform-grid {
  grid-template-columns: 0.69fr 1.31fr;
  gap: 56px;
}
.platform-devices {
  min-height: 520px;
}
.platform-workspace {
  position: relative;
  width: 100%;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(38, 103, 188, 0.15);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    #0a3066 0%,
    #0b4b99 34%,
    #e8f2ff 34.2%,
    #f9fbff 100%
  );
  box-shadow:
    0 36px 80px rgba(26, 78, 143, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.workspace-head {
  height: 47px;
  padding: 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 31, 68, 0.18);
}
.workspace-head > div {
  display: flex;
  align-items: center;
  gap: 6px;
}
.workspace-head > div span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}
.workspace-head > div span:first-child {
  background: #65d8e9;
}
.workspace-head b {
  margin-left: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 9px;
}
.workspace-head strong {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 8px;
  font-weight: 600;
}
.workspace-head strong i {
  width: 7px;
  height: 7px;
  margin-right: 5px;
  border-radius: 50%;
  background: #42d4b1;
  box-shadow: 0 0 0 4px rgba(66, 212, 177, 0.13);
}
.workspace-body {
  position: relative;
  min-height: 423px;
}
.project-pulse {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 34%;
  padding: 37px 28px;
  color: #fff;
}
.project-pulse > small {
  color: #77d5ec;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.project-pulse > strong {
  display: block;
  max-width: 170px;
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.55;
}
.project-pulse dl {
  margin: 30px 0 0;
}
.project-pulse dl div {
  margin-top: 12px;
  padding: 11px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.065);
}
.project-pulse dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
}
.project-pulse dd {
  margin: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.project-pulse > p {
  height: 5px;
  margin: 25px 0 7px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}
.project-pulse > p span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4cb7ff, #66e3dc);
  box-shadow: 0 0 14px rgba(102, 227, 220, 0.35);
}
.project-pulse > em {
  color: rgba(255, 255, 255, 0.58);
  font-size: 7px;
  font-style: normal;
}
.pc-review-board {
  position: absolute;
  z-index: 2;
  left: 29%;
  top: 42px;
  width: 54%;
  min-height: 282px;
  overflow: hidden;
  border: 1px solid rgba(46, 111, 198, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 55px rgba(20, 67, 125, 0.2);
}
.pc-review-board > header {
  height: 59px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaf0f6;
}
.pc-review-board > header div small,
.pc-review-board > header div b {
  display: block;
}
.pc-review-board > header div small {
  color: #2a78e7;
  font-size: 7px;
  font-weight: 700;
}
.pc-review-board > header div b {
  margin-top: 4px;
  color: #244b73;
  font-size: 11px;
}
.pc-review-board > header > span {
  padding: 6px 8px;
  border-radius: 7px;
  color: #2772da;
  background: #eaf3ff;
  font-size: 7px;
}
.review-board-head,
.pc-review-board > p {
  margin: 0 15px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.7fr 0.7fr;
  align-items: center;
}
.review-board-head {
  height: 33px;
  color: #91a1b2;
  font-size: 6px;
}
.pc-review-board > p {
  min-height: 44px;
  border-top: 1px solid #edf2f7;
  color: #6a8198;
  font-size: 7px;
}
.pc-review-board > p b {
  color: #325a82;
  font-size: 7px;
}
.pc-review-board > p em {
  justify-self: start;
  padding: 4px 7px;
  border-radius: 8px;
  color: #2674dc;
  background: #eaf3ff;
  font-style: normal;
}
.pc-review-board > p em.passed {
  color: #18866d;
  background: #e8f8f3;
}
.pc-review-board > footer {
  height: 45px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid #edf2f7;
  color: #8195a8;
  font-size: 7px;
}
.pc-review-board > footer b {
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  background: #2679eb;
  font-size: 7px;
}
.h5-progress-board {
  position: absolute;
  z-index: 4;
  right: 3.2%;
  bottom: 24px;
  width: 205px;
  min-height: 304px;
  padding: 17px 16px 14px;
  border: 1px solid rgba(44, 107, 191, 0.15);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 58px rgba(18, 65, 123, 0.21);
}
.h5-progress-board > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #315778;
  font-size: 8px;
  font-weight: 700;
}
.h5-progress-board > header i {
  padding: 4px 7px;
  border-radius: 7px;
  color: #2375e1;
  background: #eaf3ff;
  font-size: 7px;
  font-style: normal;
}
.h5-progress-board > small {
  display: block;
  margin-top: 20px;
  color: #7890a7;
  font-size: 6px;
}
.h5-progress-board > strong {
  display: block;
  margin-top: 5px;
  color: #155fc9;
  font-size: 15px;
}
.h5-progress-board > em {
  display: block;
  margin-top: 4px;
  color: #8a9db0;
  font-size: 6px;
  font-style: normal;
}
.h5-progress-board ol {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.h5-progress-board li {
  position: relative;
  min-height: 44px;
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 8px;
  color: #7a8fa4;
  font-size: 7px;
}
.h5-progress-board li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  bottom: -1px;
  width: 1px;
  background: #d9e5f1;
}
.h5-progress-board li > i {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 1px solid #b9cada;
  border-radius: 50%;
  background: #fff;
}
.h5-progress-board li.done > i,
.h5-progress-board li.active > i {
  border-color: #2a7cf0;
  background: #2a7cf0;
  box-shadow:
    inset 0 0 0 3px #fff,
    0 0 0 1px #2a7cf0;
}
.h5-progress-board li.active > i {
  box-shadow:
    inset 0 0 0 3px #fff,
    0 0 0 1px #2a7cf0,
    0 0 0 5px rgba(42, 124, 240, 0.11);
}
.h5-progress-board li span small {
  display: block;
  margin-top: 3px;
  color: #a0afbd;
  font-size: 6px;
}
.h5-progress-board > footer {
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e8eef5;
  color: #8397ab;
  font-size: 6px;
}
.h5-progress-board > footer b {
  color: #1e8c72;
  font-size: 6px;
}
.sync-bridge {
  position: absolute;
  z-index: 5;
  left: 69%;
  top: 49%;
  width: 83px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(44, 112, 202, 0.15);
  border-radius: 13px;
  color: #2b72cf;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(28, 81, 144, 0.14);
  font-size: 6px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}
.sync-bridge i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3cbfdc;
  box-shadow: 0 0 0 3px rgba(60, 191, 220, 0.12);
}
.platform-workspace,
.pc-review-board,
.h5-progress-board {
  transition:
    transform 0.55s cubic-bezier(0.2, 0.72, 0.22, 1),
    box-shadow 0.55s ease;
}
.platform-workspace:hover .pc-review-board {
  transform: translateY(-4px);
  box-shadow: 0 29px 62px rgba(20, 67, 125, 0.23);
}
.platform-workspace:hover .h5-progress-board {
  transform: translateY(-7px);
  box-shadow: 0 34px 65px rgba(18, 65, 123, 0.23);
}

@media (max-width: 980px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }
  .platform-copy {
    max-width: 660px;
  }
  .platform-devices {
    width: min(850px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .platform-devices {
    min-height: 600px;
  }
  .platform-workspace {
    min-height: 570px;
    border-radius: 23px;
    background: linear-gradient(
      165deg,
      #0a326a 0%,
      #0b4b97 27%,
      #edf5ff 27.2%,
      #f9fbff 100%
    );
  }
  .workspace-head {
    height: 43px;
    padding: 0 14px;
  }
  .project-pulse {
    width: 100%;
    height: 118px;
    padding: 18px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    column-gap: 20px;
  }
  .project-pulse > strong {
    font-size: 13px;
  }
  .project-pulse dl {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin: 0;
  }
  .project-pulse dl div {
    margin: 0 0 5px;
    padding: 6px 8px;
  }
  .project-pulse > p,
  .project-pulse > em {
    display: none;
  }
  .pc-review-board {
    left: 4%;
    top: 145px;
    width: 92%;
    min-height: 250px;
  }
  .pc-review-board > p:nth-of-type(3) {
    display: none;
  }
  .h5-progress-board {
    right: 5%;
    bottom: 16px;
    width: 64%;
    min-height: 248px;
    transform: scale(0.8);
    transform-origin: right bottom;
  }
  .platform-workspace:hover .h5-progress-board {
    transform: scale(0.8) translateY(-5px);
  }
  .sync-bridge {
    left: 30%;
    top: auto;
    bottom: 75px;
  }
}

/* Visual depth and density v2 — dimensional product scenes with restrained RGB accents. */
:root {
  --accent-red: #ff625f;
  --accent-yellow: #f5ba45;
  --accent-blue: #2f7cf6;
  --accent-cyan: #38c7d8;
}

.hero {
  min-height: 830px;
  padding-top: 138px;
}
.hero-grid {
  grid-template-columns: 0.77fr 1.5fr;
  gap: 28px;
}
.hero-product {
  min-height: 565px;
  perspective: 1800px;
  transform-style: preserve-3d;
}
.product-light-ribbon {
  transform: translateZ(-120px);
}
.hero-depth-plane {
  position: absolute;
  z-index: 1;
  right: 1%;
  top: -5px;
  width: 690px;
  height: 485px;
  border: 1px solid rgba(67, 132, 221, 0.25);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.82),
    rgba(177, 211, 255, 0.3)
  );
  box-shadow:
    18px 35px 76px rgba(31, 92, 169, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform-origin: 50% 90%;
  backdrop-filter: blur(12px);
}
.hero-depth-plane.plane-one {
  transform: translate3d(34px, -25px, -60px) rotateY(-11deg) rotateZ(-1.8deg);
  opacity: 0.92;
}
.hero-depth-plane.plane-two {
  transform: translate3d(63px, -45px, -112px) rotateY(-12deg) rotateZ(-2.4deg);
  opacity: 0.68;
}
.hero-platform-floor {
  position: absolute;
  z-index: 0;
  left: -1%;
  right: -12%;
  bottom: 2px;
  height: 112px;
  border: 1px solid rgba(58, 128, 221, 0.15);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.86),
    rgba(91, 155, 245, 0.15) 44%,
    transparent 72%
  );
  box-shadow:
    0 -13px 46px rgba(66, 135, 235, 0.17),
    inset 0 13px 36px rgba(255, 255, 255, 0.75);
  transform: rotateX(68deg) translateZ(-55px);
  filter: blur(0.3px);
}
.hero-platform-floor::after {
  content: "";
  position: absolute;
  inset: 31% 13%;
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    rgba(56, 132, 241, 0.18),
    transparent
  );
  filter: blur(8px);
}
.hero-accent-bead {
  position: absolute;
  z-index: 6;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  box-shadow:
    0 10px 16px rgba(25, 75, 130, 0.2),
    inset 2px 2px 4px rgba(255, 255, 255, 0.7);
}
.hero-accent-bead::after {
  content: "";
  position: absolute;
  left: 20%;
  top: 14%;
  width: 32%;
  height: 24%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}
.bead-blue {
  left: 1%;
  bottom: 48px;
  background: var(--accent-blue);
}
.bead-yellow {
  left: 14%;
  bottom: 118px;
  width: 11px;
  height: 11px;
  background: var(--accent-yellow);
}
.bead-red {
  right: 4%;
  bottom: 18px;
  width: 10px;
  height: 10px;
  background: var(--accent-red);
}
.desktop-frame {
  z-index: 3;
  top: 3px;
  right: 0;
  width: 710px;
  height: 505px;
  padding: 8px;
  border-color: rgba(38, 103, 188, 0.2);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    38px 54px 90px rgba(21, 70, 135, 0.2),
    0 12px 30px rgba(49, 127, 225, 0.12),
    inset 0 1px 0 #fff;
  transform: translate3d(
      var(--hero-shift-x, 0px),
      var(--hero-shift-y, 0px),
      38px
    )
    rotateY(-8deg) rotateX(2.2deg) rotateZ(-1deg);
  transform-origin: 50% 88%;
  transform-style: preserve-3d;
}
.desktop-frame::after {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 17px;
  right: -10px;
  width: 11px;
  border-radius: 0 14px 14px 0;
  background: linear-gradient(
    180deg,
    rgba(227, 239, 255, 0.92),
    rgba(108, 163, 234, 0.3)
  );
  box-shadow: inset -1px 0 rgba(51, 108, 187, 0.13);
  transform: skewY(-14deg);
}
.desktop-topbar {
  height: 32px;
  border-bottom: 1px solid #edf2f7;
}
.desktop-topbar label {
  width: 158px;
  height: 18px;
  margin-left: auto;
  padding: 0 9px;
  display: flex;
  align-items: center;
  border: 1px solid #e1e9f2;
  border-radius: 7px;
  color: #9aaabd;
  background: #fbfdff;
  font-size: 6px;
}
.desktop-topbar > em {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent-red);
  box-shadow: 0 4px 10px rgba(255, 98, 95, 0.25);
  font-size: 6px;
  font-style: normal;
}
.desktop-topbar strong {
  margin-left: 5px;
}
.desktop-body {
  height: calc(100% - 32px);
  grid-template-columns: 108px 1fr;
}
.mock-sidebar {
  padding: 16px 10px;
}
.mock-sidebar a {
  height: 31px;
}
.mock-dashboard {
  padding: 13px 14px 12px;
}
.mock-heading strong {
  font-size: 12px;
}
.metric-row {
  gap: 7px;
  margin-top: 9px;
}
.metric-row > div {
  position: relative;
  min-height: 62px;
  padding: 10px 9px;
  box-shadow: 0 9px 21px rgba(31, 87, 153, 0.07);
}
.metric-row > div > i {
  position: absolute;
  right: 9px;
  top: 10px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5);
}
.metric-row .metric-blue > i {
  background: linear-gradient(145deg, #d7e9ff, #5f9dff);
}
.metric-row .metric-cyan > i {
  background: linear-gradient(145deg, #d9fbf8, #42c9bc);
}
.metric-row .metric-yellow > i {
  background: linear-gradient(145deg, #fff4d4, #f5ba45);
}
.metric-row .metric-red > i {
  background: linear-gradient(145deg, #ffe0df, #ff716d);
}
.chart-row {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  margin-top: 8px;
}
.line-chart,
.progress-chart {
  height: 151px;
  padding: 10px;
}
.line-chart svg {
  height: 92px;
  margin-top: 11px;
}
.source-donut {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 9px 0 0 4px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-blue) 0 52%,
    var(--accent-cyan) 52% 82%,
    var(--accent-yellow) 82% 97%,
    var(--accent-red) 97% 100%
  );
  box-shadow: 0 9px 20px rgba(38, 108, 200, 0.14);
}
.source-donut::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #fff;
}
.source-donut strong {
  position: relative;
  color: #173f69;
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
}
.source-donut small {
  display: block;
  margin-top: 3px;
  color: #8094a8;
  font-size: 5px;
  font-weight: 500;
}
.source-legend {
  position: absolute;
  left: 101px;
  right: 9px;
  top: 37px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.source-legend li {
  margin: 6px 0;
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 4px;
  color: #678098;
  font-size: 5px;
}
.source-legend li i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.source-legend li i.blue {
  background: var(--accent-blue);
}
.source-legend li i.cyan {
  background: var(--accent-cyan);
}
.source-legend li i.yellow {
  background: var(--accent-yellow);
}
.source-legend li i.red {
  background: var(--accent-red);
}
.source-legend li b {
  color: #345b82;
  font-size: 5px;
}
.hero-task-table {
  height: 82px;
  margin-top: 8px;
  padding: 8px 10px;
  overflow: hidden;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(35, 80, 135, 0.05);
}
.hero-task-table header {
  height: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #8294a7;
  font-size: 5px;
}
.hero-task-table header b {
  margin-right: auto;
  color: #294e74;
  font-size: 7px;
}
.hero-task-table p {
  min-height: 25px;
  margin: 0;
  display: grid;
  grid-template-columns: 9px 62px 1fr 46px;
  align-items: center;
  border-top: 1px solid #eff3f7;
  color: #7890a7;
  font-size: 5px;
}
.hero-task-table p > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.hero-task-table p > i.yellow {
  background: var(--accent-yellow);
}
.hero-task-table p > i.red {
  background: var(--accent-red);
}
.hero-task-table p b {
  color: #365b81;
  font-size: 6px;
}
.hero-task-table p em {
  justify-self: end;
  color: #2874dc;
  font-style: normal;
}
.phone-frame {
  z-index: 6;
  right: -26px;
  top: 119px;
  width: 178px;
  height: 392px;
  padding: 7px;
  border: 1px solid rgba(42, 106, 187, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    34px 42px 70px rgba(20, 64, 120, 0.24),
    0 0 0 5px rgba(255, 255, 255, 0.58),
    inset 0 1px 0 #fff;
  transform: translate3d(
      var(--hero-phone-x, 0px),
      var(--hero-phone-y, 0px),
      105px
    )
    rotateY(-7deg) rotateZ(2deg);
  transform-origin: 50% 88%;
}
.phone-frame::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 58px;
  width: 6px;
  height: 54px;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(#f4f8ff, #9fc0ea, #f8fbff);
}
.phone-speaker {
  background: #102c4d;
}
.phone-screen {
  padding-bottom: 63px;
  border-radius: 22px;
}
.mobile-shortcuts {
  margin-top: 8px;
  padding-top: 7px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-top: 1px solid #e9eef5;
}
.mobile-shortcuts span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #71879e;
  font-size: 5px;
}
.mobile-shortcuts i {
  width: 13px;
  height: 13px;
  border-radius: 4px;
}
.mobile-shortcuts i.blue {
  background: #ddecff;
  box-shadow: inset 0 0 0 3px var(--accent-blue);
}
.mobile-shortcuts i.yellow {
  background: #fff4d6;
  box-shadow: inset 0 0 0 3px var(--accent-yellow);
}
.mobile-shortcuts i.red {
  background: #ffe6e5;
  box-shadow: inset 0 0 0 3px var(--accent-red);
}
.phone-screen > button {
  margin-top: 8px;
}
.hero-proof-stack {
  right: 103px;
  bottom: 5px;
  gap: 8px;
  transform: translateZ(150px);
}
.hero-proof-card {
  width: 151px;
  min-height: 74px;
  padding: 11px 12px;
  border-color: rgba(44, 108, 193, 0.15);
  border-radius: 12px;
  box-shadow:
    0 18px 36px rgba(25, 75, 135, 0.15),
    inset 0 1px 0 #fff;
}
.hero-proof-card.proof-data strong {
  color: #175fc4;
  font-size: 9px;
}
.hero-proof-card.proof-data small {
  color: #20a483;
}
.hero-proof-card.proof-risk strong {
  color: #a94542;
  font-size: 9px;
}
.hero-proof-card.proof-risk strong i {
  background: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(255, 98, 95, 0.12);
}
.hero-note span:nth-child(1) i {
  background: var(--accent-blue);
}
.hero-note span:nth-child(2) i {
  background: var(--accent-yellow);
}
.hero-note span:nth-child(3) i {
  background: var(--accent-red);
}

.scene-art {
  min-height: 475px;
  overflow: visible;
  perspective: 1500px;
  transform-style: preserve-3d;
}
.scene-art::after {
  border-radius: inherit;
}
.ui-window {
  transform-style: preserve-3d;
}
.form-window {
  width: 88%;
  height: 360px;
  transform: translateX(-2%) translateZ(20px) rotateY(-4deg) rotateX(1.2deg);
}
.form-fields {
  padding: 15px 16px;
  gap: 8px 10px;
}
.form-fields input,
.form-fields select {
  height: 25px;
}
.form-section-title {
  gap: 12px;
}
.field-inspector {
  padding: 14px 11px;
}
.inspector-status {
  margin-top: 13px;
  padding-top: 10px;
  display: grid;
  gap: 7px;
  border-top: 1px solid #e7edf4;
}
.field-inspector .inspector-status span {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: none;
  color: #637d98;
  font-size: 6px;
}
.inspector-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.inspector-status i.blue {
  background: var(--accent-blue);
}
.inspector-status i.yellow {
  background: var(--accent-yellow);
}
.form-preview-card {
  position: absolute;
  z-index: 5;
  right: -2%;
  top: 64px;
  width: 152px;
  min-height: 236px;
  padding: 15px 13px;
  border: 1px solid rgba(45, 111, 197, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 27px 54px rgba(23, 72, 134, 0.2),
    inset 0 1px 0 #fff;
  transform: translateZ(82px) rotateY(-3deg);
}
.form-preview-card header {
  padding-bottom: 11px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e8eef5;
  color: #2a5279;
  font-size: 8px;
}
.form-preview-card header span {
  color: #8699ad;
  font-size: 6px;
}
.form-preview-card p {
  margin: 13px 0 0;
}
.form-preview-card small,
.form-preview-card strong {
  display: block;
}
.form-preview-card small {
  color: #8a9cae;
  font-size: 6px;
}
.form-preview-card strong {
  margin-top: 3px;
  color: #3b5d7e;
  font-size: 7px;
}
.scene-float-note.warning-note {
  right: 1%;
  bottom: 3%;
  width: 235px;
  border-color: rgba(245, 186, 69, 0.35);
  background: #fff9e9;
  transform: translateZ(110px);
}
.warning-note > span {
  color: #b77a17;
}
.warning-note > span i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--accent-yellow);
}
.scene-accent {
  position: absolute;
  z-index: 7;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow:
    0 7px 13px rgba(30, 74, 128, 0.2),
    inset 1px 1px 3px rgba(255, 255, 255, 0.75);
}
.scene-accent.red {
  right: 2%;
  top: 11%;
  background: var(--accent-red);
}
.scene-accent.yellow {
  left: 4%;
  bottom: 12%;
  background: var(--accent-yellow);
}
.scene-accent.blue {
  right: 16%;
  bottom: 4%;
  background: var(--accent-blue);
}
.table-window {
  left: 1%;
  width: 84%;
  height: 345px;
  transform: translateZ(22px) rotateY(3deg);
}
.fake-table p {
  height: 37px;
}
.fake-table p em.reject {
  color: #c34d49;
  background: #ffeceb;
}
.review-summary {
  right: 1%;
  top: 48px;
  bottom: auto;
  width: 157px;
  transform: translateZ(85px);
}
.review-summary > div i.blue {
  background: linear-gradient(180deg, #62a4ff, var(--accent-blue));
}
.review-summary > div i.cyan {
  background: linear-gradient(180deg, #67e0e6, var(--accent-cyan));
}
.review-summary > div i.yellow {
  background: linear-gradient(180deg, #ffda7a, var(--accent-yellow));
}
.review-summary > div i.red {
  background: linear-gradient(180deg, #ff9996, var(--accent-red));
}
.review-activity {
  position: absolute;
  z-index: 6;
  right: 1%;
  bottom: 30px;
  width: 190px;
  padding: 13px 13px 10px;
  border: 1px solid rgba(45, 111, 197, 0.15);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 44px rgba(24, 73, 133, 0.18);
  transform: translateZ(100px);
}
.review-activity header {
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e9eef4;
  color: #315879;
  font-size: 7px;
}
.review-activity header span {
  color: #249b7e;
  font-size: 6px;
}
.review-activity p {
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 6px;
  color: #667e96;
  font-size: 6px;
}
.review-activity p i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.review-activity p i.blue {
  background: var(--accent-blue);
}
.review-activity p i.yellow {
  background: var(--accent-yellow);
}
.review-activity p i.red {
  background: var(--accent-red);
}
.review-activity time {
  color: #97a7b6;
  font-size: 5px;
}
.exam-session-panel {
  width: 165px;
  top: 51px;
  transform: translateZ(62px);
}
.schedule-window {
  right: 2%;
  width: 70%;
  height: 365px;
  transform: translateZ(18px) rotateY(-2deg);
}
.exam-resource-board {
  position: absolute;
  z-index: 5;
  right: 1%;
  top: 67px;
  width: 165px;
  padding: 13px;
  border: 1px solid rgba(45, 111, 197, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 44px rgba(24, 73, 133, 0.17);
  transform: translateZ(88px);
}
.exam-resource-board header {
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  color: #315879;
  border-bottom: 1px solid #e9eef4;
  font-size: 7px;
}
.exam-resource-board header span {
  color: #249b7e;
  font-size: 6px;
}
.exam-resource-board p {
  margin: 9px 0 0;
  display: grid;
  grid-template-columns: 45px 1fr 32px;
  align-items: center;
  gap: 5px;
  color: #637c94;
  font-size: 6px;
}
.exam-resource-board p > i {
  height: 4px;
  overflow: hidden;
  border-radius: 6px;
  background: #e8eff6;
}
.exam-resource-board p > i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent-blue);
}
.exam-resource-board p > i b.yellow {
  background: var(--accent-yellow);
}
.exam-resource-board p > i b.red {
  background: var(--accent-red);
}
.exam-resource-board p em {
  justify-self: end;
  font-style: normal;
}
.ticket-card {
  right: 1%;
  bottom: 3%;
  width: 190px;
  padding: 14px;
  transform: translateZ(112px) rotateZ(1.5deg);
}
.ticket-stamp {
  position: absolute;
  right: 9px;
  bottom: 8px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 98, 95, 0.5);
  border-radius: 50%;
  color: var(--accent-red);
  font-size: 6px;
  font-style: normal;
  transform: rotate(-10deg);
}

.scenario-card {
  min-height: 560px;
  overflow: visible;
}
.scenario-preview {
  min-height: 315px;
  overflow: visible;
  transform: perspective(1100px) rotateX(1.6deg);
  transform-origin: 50% 88%;
}
.scenario-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.scenario-kpis > span {
  position: relative;
  min-height: 54px;
  padding: 8px;
  border: 1px solid #e2eaf3;
  border-radius: 8px;
  background: #fbfdff;
  box-shadow: 0 8px 17px rgba(33, 85, 146, 0.06);
}
.scenario-kpis small,
.scenario-kpis b {
  display: block;
}
.scenario-kpis small {
  color: #7890a7;
  font-size: 6px;
}
.scenario-kpis b {
  margin-top: 3px;
  color: #29547d;
  font-size: 10px;
}
.scenario-kpis i {
  position: absolute;
  right: 7px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.scenario-kpis i.blue {
  background: var(--accent-blue);
}
.scenario-kpis i.yellow {
  background: var(--accent-yellow);
}
.scenario-kpis i.red {
  background: var(--accent-red);
}
.public-body {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 11px;
  align-items: center;
}
.funnel-stack {
  height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.funnel-stack i {
  height: 18px;
  clip-path: polygon(6% 0, 94% 0, 84% 100%, 16% 100%);
  background: linear-gradient(90deg, #92c5ff, var(--accent-blue));
  box-shadow: 0 4px 10px rgba(47, 124, 246, 0.13);
}
.public-bars p {
  margin: 8px 0;
  grid-template-columns: 43px 1fr 27px;
}
.public-bars p i {
  height: 5px;
}
.public-bars p em.yellow {
  background: linear-gradient(90deg, #ffe29a, var(--accent-yellow));
}
.public-bars p em.red {
  background: linear-gradient(90deg, #ffb1ae, var(--accent-red));
}
.scenario-alert {
  position: absolute;
  left: 12px;
  bottom: -21px;
  width: 164px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 9px 1fr;
  border: 1px solid rgba(255, 98, 95, 0.22);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 17px 34px rgba(38, 80, 135, 0.15);
}
.scenario-alert i {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--accent-red);
}
.scenario-alert b,
.scenario-alert span {
  display: block;
}
.scenario-alert b {
  color: #c44a47;
  font-size: 7px;
}
.scenario-alert span {
  grid-column: 2;
  color: #8394a5;
  font-size: 6px;
}
.internal-preview header span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.internal-preview header span i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.internal-preview header span i.blue {
  background: var(--accent-blue);
}
.internal-preview header span i.yellow {
  margin-left: 5px;
  background: var(--accent-yellow);
}
.internal-preview .org-map {
  height: 198px;
}
.node-four {
  right: 7px;
  bottom: 0;
  border-color: #ffd8d6;
  background: #fff4f3;
}
.org-detail {
  position: absolute;
  z-index: 4;
  right: -12px;
  top: 51px;
  width: 130px;
  padding: 10px;
  border: 1px solid #dfe8f2;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 27px rgba(33, 81, 139, 0.13);
}
.org-detail b,
.org-detail span,
.org-detail strong {
  display: block;
}
.org-detail b {
  color: #31597e;
  font-size: 7px;
}
.org-detail span {
  margin-top: 5px;
  color: #8295a8;
  font-size: 6px;
}
.org-detail strong {
  margin-top: 4px;
  color: var(--accent-blue);
  font-size: 8px;
}
.evaluation-bar {
  padding: 9px 10px;
  border: 1px solid #e2eaf3;
  border-radius: 8px;
  background: #fbfdff;
  color: #647d96;
  font-size: 6px;
}
.evaluation-bar i {
  height: 4px;
  margin-top: 6px;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #e7eef6;
}
.evaluation-bar b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-blue), #55cfde);
}
.mini-calendar span.warning {
  color: #7b5715;
  background: #fff0c5;
  box-shadow: 0 5px 12px rgba(245, 186, 69, 0.23);
}
.mini-calendar span.danger {
  color: #fff;
  background: var(--accent-red);
  box-shadow: 0 5px 12px rgba(255, 98, 95, 0.22);
}
.mini-session.secondary {
  margin-top: 7px;
}
.mini-session.secondary em {
  color: #9c6a17;
  background: #fff3d4;
}
.seat-progress {
  margin-top: 9px;
  color: #71869b;
  font-size: 6px;
}
.seat-progress i {
  height: 4px;
  margin-top: 5px;
  display: block;
  overflow: hidden;
  border-radius: 7px;
  background: #e8eff6;
}
.seat-progress b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
}

.support-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.support-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.support-dots i.red {
  background: var(--accent-red);
}
.support-dots i.yellow {
  background: var(--accent-yellow);
}
.support-dots i.blue {
  background: #61a0ff;
}
.support-secondary article {
  min-height: 174px;
}
.support-timeline p {
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: 7px 1fr auto;
  align-items: center;
  gap: 7px;
  color: #607a94;
  font-size: 7px;
}
.support-timeline p i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.support-timeline p i.blue {
  background: var(--accent-blue);
}
.support-timeline p i.yellow {
  background: var(--accent-yellow);
}
.support-timeline p i.red {
  background: var(--accent-red);
}
.support-timeline p b {
  margin: 0;
  font-size: 7px;
  font-weight: 600;
}
.support-timeline p small {
  color: #98a8b7;
  font-size: 6px;
}
.support-checklist p {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #617a93;
  font-size: 7px;
}
.support-checklist p i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e8f6f2;
  box-shadow: inset 0 0 0 3px #29ad8d;
}
.support-checklist a {
  margin-top: 13px;
}
.workspace-head > div span:nth-child(1) {
  background: var(--accent-red);
}
.workspace-head > div span:nth-child(2) {
  background: var(--accent-yellow);
}
.workspace-head > div span:nth-child(3) {
  background: var(--accent-blue);
}
.project-pulse dl div:nth-child(1) dd {
  color: #88c2ff;
}
.project-pulse dl div:nth-child(2) dd {
  color: #70e0c5;
}
.project-pulse dl div:nth-child(3) dd {
  color: #ffd277;
}

.motion-ready .hero-depth-plane.plane-one {
  animation: depthPlaneOne 8s ease-in-out infinite alternate;
}
.motion-ready .hero-depth-plane.plane-two {
  animation: depthPlaneTwo 10s ease-in-out infinite alternate;
}
.motion-ready .hero-accent-bead {
  animation: accentBeadFloat 4.8s ease-in-out infinite;
}
.motion-ready .hero-accent-bead.bead-yellow {
  animation-delay: -1.7s;
}
.motion-ready .hero-accent-bead.bead-red {
  animation-delay: -3s;
}
@keyframes depthPlaneOne {
  to {
    transform: translate3d(36px, -27px, -58px) rotateY(-9deg) rotateZ(-1.2deg);
  }
}
@keyframes depthPlaneTwo {
  to {
    transform: translate3d(64px, -43px, -110px) rotateY(-10deg) rotateZ(-1.6deg);
  }
}
@keyframes accentBeadFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -11px;
  }
}

@media (max-width: 1180px) {
  .desktop-frame {
    right: 1%;
    width: 670px;
  }
  .hero-depth-plane {
    width: 650px;
  }
  .phone-frame {
    right: -1%;
  }
  .hero-proof-stack {
    right: 11%;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-product {
    width: min(880px, 100%);
    margin: 0 auto;
  }
  .desktop-frame {
    left: 50%;
    right: auto;
    width: 700px;
    transform: translateX(-51%) translateZ(35px) rotateY(-6deg) rotateX(2deg)
      rotateZ(-0.8deg);
  }
  .hero-depth-plane {
    left: 50%;
    right: auto;
    width: 680px;
  }
  .hero-depth-plane.plane-one {
    transform: translate3d(-46%, -22px, -60px) rotateY(-8deg) rotateZ(-1.4deg);
  }
  .hero-depth-plane.plane-two {
    transform: translate3d(-43%, -38px, -112px) rotateY(-9deg) rotateZ(-2deg);
  }
  .phone-frame {
    right: 1%;
  }
  .hero-proof-stack {
    right: 15%;
  }
  .scene-art {
    min-height: 500px;
  }
  .scenario-card {
    min-height: 540px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-bottom: 88px;
  }
  .hero-product {
    min-height: 372px;
  }
  .desktop-frame {
    top: 0;
    width: 700px;
    height: 505px;
    transform: translateX(-54%) scale(0.55) rotateY(-4deg) rotateZ(-0.5deg);
    transform-origin: top center;
  }
  .hero-depth-plane {
    top: -8px;
    width: 650px;
    height: 475px;
    transform-origin: top center;
  }
  .hero-depth-plane.plane-one {
    transform: translateX(-51%) scale(0.55) translateY(-15px) rotateZ(-1deg);
  }
  .hero-depth-plane.plane-two {
    transform: translateX(-49%) scale(0.55) translateY(-27px) rotateZ(-1.6deg);
  }
  .phone-frame {
    top: 84px;
    right: -2%;
    transform: scale(0.58) rotateZ(2deg);
    transform-origin: top right;
  }
  .hero-platform-floor {
    bottom: -2px;
  }
  .hero-accent-bead {
    transform: scale(0.75);
  }
  .scene-art {
    min-height: 395px;
    overflow: hidden;
  }
  .form-window {
    width: 112%;
    height: 330px;
    transform: translateX(1%) scale(0.82);
    transform-origin: center;
  }
  .form-preview-card {
    right: -2%;
    top: 52px;
    transform: scale(0.76);
    transform-origin: right top;
  }
  .scene-float-note.warning-note {
    right: -2%;
    bottom: 2%;
    transform: scale(0.78);
    transform-origin: right bottom;
  }
  .table-window {
    left: auto;
    width: 116%;
    height: 330px;
    transform: scale(0.8);
    transform-origin: center;
  }
  .review-summary {
    right: -1%;
    top: 42px;
    transform: scale(0.78);
    transform-origin: right top;
  }
  .review-activity {
    right: -1%;
    bottom: 12px;
    transform: scale(0.76);
    transform-origin: right bottom;
  }
  .exam-session-panel {
    display: block;
    left: 1%;
    top: 51px;
    transform: scale(0.68);
    transform-origin: left top;
  }
  .schedule-window {
    right: auto;
    width: 112%;
    height: 345px;
    transform: scale(0.8);
    transform-origin: center;
  }
  .exam-resource-board {
    right: -1%;
    top: 48px;
    transform: scale(0.72);
    transform-origin: right top;
  }
  .ticket-card {
    right: -1%;
    bottom: 1%;
    transform: scale(0.76) rotateZ(1.5deg);
    transform-origin: right bottom;
  }
  .scenario-card {
    min-height: 530px;
  }
  .scenario-preview {
    min-height: 295px;
  }
  .public-preview {
    min-height: 285px;
  }
  .scenario-alert {
    bottom: -17px;
  }
}

/* Final raster artwork integration — the rendered page now uses the latest generated assets. */
.hero-product.has-raster > :not(.hero-raster),
.scene-art.has-raster > :not(.scene-raster):not(.raster-ui-labels),
.scenario-preview.has-raster > :not(.scenario-raster),
.faq-support-visual.has-raster > :not(.faq-raster) {
  display: none !important;
}

.hero-product.has-raster {
  min-height: 565px;
  isolation: isolate;
}
.hero-raster {
  position: absolute;
  z-index: 3;
  left: 0;
  top: -1%;
  width: 110%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 6%, #000 84%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 8%, #000 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 6%, #000 84%, transparent 100%);
  mask-composite: intersect;
  filter: saturate(0.97) brightness(1.015)
    drop-shadow(0 34px 42px rgba(27, 78, 145, 0.15));
  transform: perspective(1500px) rotateY(1.75deg) translateZ(24px);
  transform-origin: 50% 86%;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.72, 0.22, 1),
    filter 0.8s ease;
}
.hero-product.has-raster:hover .hero-raster {
  filter: saturate(1) brightness(1.02)
    drop-shadow(0 42px 48px rgba(27, 78, 145, 0.19));
  transform: perspective(1500px) rotateY(0.9deg) translate3d(0, -5px, 30px)
    scale(1.008);
}

.scene-art.has-raster {
  min-height: 455px;
  padding: 0;
  overflow: visible;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.scene-art.has-raster::before,
.scene-art.has-raster::after,
.scenario-preview.has-raster::before,
.scenario-preview.has-raster::after {
  display: none;
}
.scene-raster,
.scenario-raster,
.faq-raster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      #000 2.5%,
      #000 97.5%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      #000 2.5%,
      #000 97.5%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      #000 2.5%,
      #000 97.5%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      #000 2.5%,
      #000 97.5%,
      transparent 100%
    );
  mask-composite: intersect;
  filter: saturate(0.94) brightness(1.025);
  transition:
    transform 0.8s cubic-bezier(0.2, 0.72, 0.22, 1),
    filter 0.8s ease;
}
.scene-raster-story {
  object-fit: contain;
  -webkit-mask-image: none;
  mask-image: none;
  filter: none;
}
.capability-scene:not(.reverse) .scene-raster-story {
  transform: none;
  transform-origin: center;
}
.capability-scene:not(.reverse)
  .scene-art.has-raster:hover
  .scene-raster-story {
  filter: none;
  transform: translateY(-3px) scale(1.008);
}
.raster-ui-labels {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  color: #1d5fba;
  font-size: clamp(9px, 0.95vw, 13px);
  font-weight: 650;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.88);
}
.raster-ui-labels span {
  position: absolute;
  white-space: nowrap;
}
.label-title {
  color: #135db9;
  font-size: clamp(12px, 1.35vw, 18px);
  letter-spacing: 0.03em;
}
.label-field,
.label-metric {
  padding: 0.36em 0.7em;
  border: 1px solid rgba(63, 128, 214, 0.17);
  border-radius: 0.55em;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 12px rgba(45, 98, 166, 0.07);
}
.label-status {
  padding: 0.36em 0.75em;
  border-radius: 999px;
  color: #2676d7;
  background: rgba(235, 246, 255, 0.86);
}
.form-labels .label-title {
  left: 48%;
  top: 17%;
}
.form-labels .field-one {
  left: 50%;
  top: 31%;
}
.form-labels .field-two {
  left: 50%;
  top: 42%;
}
.form-labels .field-three {
  left: 50%;
  top: 54%;
}
.form-labels .label-status {
  left: 31%;
  top: 64%;
}
.hub-labels .label-title {
  left: 37%;
  top: 17%;
}
.hub-labels .metric-one {
  left: 31%;
  top: 31%;
}
.hub-labels .metric-two {
  left: 54%;
  top: 31%;
}
.hub-labels .metric-three {
  left: 54%;
  top: 54%;
}
.hub-labels .label-status {
  left: 39%;
  top: 69%;
}

.scene-copy .scene-facts {
  display: grid;
  gap: 9px;
  margin: 21px 0 23px;
  padding: 0;
  list-style: none;
}
.scene-copy .scene-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.45;
}
.scene-copy .scene-facts b {
  min-width: 48px;
  padding: 4px 8px;
  border-radius: 8px;
  color: #226ed1;
  background: #edf5ff;
  font-size: 11px;
  text-align: center;
}

.platform-workspace.has-raster > :not(.platform-raster) {
  display: none !important;
}
.platform-workspace.has-raster {
  min-height: 500px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.platform-raster {
  position: absolute;
  inset: -4% -4%;
  display: block;
  width: 108%;
  height: 108%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.96) brightness(1.02)
    drop-shadow(0 28px 32px rgba(34, 88, 161, 0.11));
  transform: perspective(1500px) rotateY(1.2deg) translateZ(10px);
  transform-origin: 48% 54%;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.72, 0.22, 1),
    filter 0.8s ease;
}
.platform-workspace.has-raster:hover .platform-raster {
  filter: saturate(1) brightness(1.025)
    drop-shadow(0 34px 38px rgba(34, 88, 161, 0.14));
  transform: perspective(1500px) rotateY(0.55deg) translate3d(0, -4px, 16px)
    scale(1.008);
}
.capability-scene:not(.reverse) .scene-raster {
  transform: perspective(1400px) rotateY(1.35deg);
  transform-origin: 48% 50%;
}
.capability-scene.reverse .scene-raster {
  transform: perspective(1400px) rotateY(-1.35deg);
  transform-origin: 52% 50%;
}
.scene-art.has-raster:hover .scene-raster,
.scenario-card:hover .scenario-raster,
.faq-support-visual.has-raster:hover .faq-raster {
  filter: saturate(0.99) brightness(1.03) contrast(1.005);
}
.capability-scene:not(.reverse) .scene-art.has-raster:hover .scene-raster {
  transform: perspective(1400px) rotateY(0.65deg) translateY(-4px) scale(1.015);
}
.capability-scene.reverse .scene-art.has-raster:hover .scene-raster {
  transform: perspective(1400px) rotateY(-0.65deg) translateY(-4px) scale(1.015);
}
.scenario-card:hover .scenario-raster {
  transform: translateY(-3px) scale(1.018);
}

.scenario-preview.has-raster {
  min-height: 300px;
  padding: 0;
  overflow: visible;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.scenario-card > .scenario-preview.has-raster {
  width: 100%;
  max-width: none;
}
.scenario-card > .scenario-copy,
.scenario-card > .scenario-copy p {
  max-width: none;
}
.scenario-preview.has-raster .scenario-raster {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
}
.scenario-preview.public-preview .scenario-raster,
.scenario-preview.internal-preview .scenario-raster {
  inset: 0;
  width: 100%;
  height: 100%;
  /* Square sources may trim only their intentionally blank top/bottom padding,
       keeping every business element visible within the narrow card. */
  object-fit: cover;
  transform: none;
}
.scenario-card:hover .scenario-preview.public-preview .scenario-raster,
.scenario-card:hover .scenario-preview.internal-preview .scenario-raster {
  transform: translateY(-3px) scale(1.01);
}

/* Inner pages share the homepage's open, product-led rhythm without repeating its hero. */
.inner-feature {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}
.inner-feature-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 72px;
}
.inner-feature-grid.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.inner-feature-grid.reverse .inner-feature-copy {
  order: 2;
}
.inner-feature-grid.reverse .inner-visual {
  order: 1;
}
.section-index {
  display: inline-block;
  margin-bottom: 14px;
  color: #2679eb;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
}
.inner-feature-copy .section-heading {
  max-width: 500px;
}
.feature-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #dfeaf6;
}
.feature-list li {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #dfeaf6;
}
.feature-list b {
  color: #174575;
  font-size: 16px;
  line-height: 1.7;
}
.feature-list span {
  color: #6a829a;
  font-size: 16px;
  line-height: 1.7;
}
.inner-visual {
  min-height: 380px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(61, 124, 202, 0.13);
  border-radius: 22px;
  background: #f7fbff;
  box-shadow: 0 24px 62px rgba(42, 98, 170, 0.12);
}
.inner-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.03);
}
.inner-modules {
  background: #fff;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.module-grid article {
  min-height: 220px;
  padding: 28px;
  border-top: 2px solid #2b7cf0;
  background: #f8fbff;
}
.module-grid span,
.solution-grid span {
  color: #2679eb;
  font-size: 13px;
  font-weight: 700;
}
.module-grid h3 {
  margin: 22px 0 10px;
  color: #153d69;
  font-size: 22px;
  line-height: 1.45;
}
.module-grid p {
  margin: 0;
  color: #6a829a;
  font-size: 16px;
  line-height: 1.8;
}
.solution-rail {
  background: linear-gradient(180deg, #fff, #f5faff);
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.solution-grid article {
  overflow: hidden;
  border: 1px solid rgba(61, 124, 202, 0.13);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(42, 98, 170, 0.09);
}
.solution-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  background: #f7fbff;
}
.solution-grid div {
  padding: 23px 24px 27px;
}
.solution-grid h3 {
  margin: 15px 0 9px;
  color: #153d69;
  font-size: 19px;
}
.solution-grid p {
  margin: 0;
  color: #6a829a;
  font-size: 14px;
  line-height: 1.7;
}
.service-journey {
  background: linear-gradient(180deg, #fff, #f4f9ff);
}
.journey-grid {
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  list-style: none;
}
.journey-grid li {
  position: relative;
  min-height: 190px;
  padding: 24px 18px;
  border-top: 2px solid #2b7cf0;
  background: rgba(255, 255, 255, 0.78);
}
.journey-grid li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -8px;
  top: 34px;
  z-index: 1;
  color: #2b7cf0;
  font-size: 16px;
}
.journey-grid b {
  color: #2b7cf0;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.journey-grid h3 {
  margin: 18px 0 9px;
  color: #153d69;
  font-size: 19px;
}
.journey-grid p {
  margin: 0;
  color: #6a829a;
  font-size: 15px;
  line-height: 1.8;
}
.company-intro {
  background: linear-gradient(180deg, #fff, #f7fbff);
}
.company-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.company-copy h2,
.contact-band h2 {
  margin: 0 0 24px;
  color: #153d69;
  font-size: 34px;
  line-height: 1.3;
  letter-spacing: 0;
}
.company-copy p {
  margin: 0 0 17px;
  color: #617c96;
  font-size: 16px;
  line-height: 1.9;
}
.contact-band {
  background: #0c396f;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  color: #fff;
}
.contact-band .section-index {
  color: #83c2ff;
}
.contact-band h2 {
  color: #fff;
}
.contact-band p {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.9;
}
.contact-grid figure {
  width: 180px;
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}
.contact-grid figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.contact-grid figcaption {
  margin-top: 8px;
  color: #47637f;
  font-size: 12px;
}
@media (max-width: 820px) {
  .inner-feature-grid,
  .inner-feature-grid.reverse,
  .solution-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }
  .inner-feature-grid.reverse .inner-feature-copy,
  .inner-feature-grid.reverse .inner-visual {
    order: initial;
  }
  .inner-feature-grid {
    gap: 34px;
  }
  .inner-visual {
    min-height: 300px;
  }
}
@media (max-width: 820px) {
  .journey-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .journey-grid li::after {
    display: none;
  }
  .company-intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact-grid figure {
    width: 170px;
  }
}

/* Page-specific UI illustrations. They use the same interface vocabulary as the homepage,
   while each page explains its own business subject instead of reusing a homepage asset. */
.product-board,
.service-board,
.case-board,
.company-map {
  border: 1px solid rgba(61, 124, 202, 0.16);
  border-radius: 16px;
  background: linear-gradient(150deg, #fff, #f1f8ff);
  box-shadow: 0 24px 62px rgba(42, 98, 170, 0.12);
}
.product-board {
  overflow: hidden;
  min-height: 356px;
}
.product-board header {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-bottom: 1px solid #dbe9f6;
  background: rgba(255, 255, 255, 0.72);
}
.product-board header i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9bfd7;
}
.product-board header i:first-child {
  background: #72b9fa;
}
.product-board header b {
  margin-left: 8px;
  color: #315477;
  font-size: 12px;
}
.product-board header span {
  margin-left: auto;
  padding: 3px 8px;
  color: #2a78d9;
  border-radius: 5px;
  background: #e8f4ff;
  font-size: 10px;
}
.product-board-body {
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 310px;
}
.product-board aside {
  padding: 20px 11px;
  border-right: 1px solid #dceaf6;
  background: rgba(236, 246, 255, 0.72);
}
.product-board aside b {
  display: block;
  margin: 0 7px 12px;
  color: #49718f;
  font-size: 11px;
}
.product-board aside span {
  display: block;
  margin: 3px 0;
  padding: 7px;
  border-radius: 5px;
  color: #66839d;
  font-size: 10px;
}
.product-board aside .active {
  color: #fff;
  background: #277ced;
  box-shadow: 0 7px 15px rgba(35, 117, 224, 0.2);
}
.product-board main {
  padding: 22px 23px;
  background: rgba(255, 255, 255, 0.42);
}
.product-board main h3 {
  margin: 0 0 17px;
  color: #214d7b;
  font-size: 16px;
}
.product-board main label {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  min-height: 38px;
  margin-top: 8px;
  color: #54718d;
  font-size: 11px;
}
.product-board main em {
  justify-self: start;
  margin-left: 6px;
  padding: 1px 4px;
  color: #df6e4b;
  border-radius: 3px;
  background: #fff0eb;
  font-size: 9px;
  font-style: normal;
}
.product-board main strong {
  grid-column: 2;
  grid-row: 1;
  padding: 8px 9px;
  color: #7c96ac;
  border: 1px solid #d8e6f2;
  border-radius: 5px;
  background: #fff;
  font-size: 10px;
  font-weight: 500;
}
.product-board main footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #dce9f5;
  color: #58a77f;
  font-size: 10px;
}
.product-board main button {
  padding: 7px 10px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  background: #277ced;
  font-size: 10px;
}

.service-board {
  min-height: 350px;
  padding: 26px 28px 0;
  overflow: hidden;
}
.service-board header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dbe9f6;
}
.service-board header span {
  color: #6390b8;
  font-size: 11px;
}
.service-board header b {
  color: #204b78;
  font-size: 17px;
}
.service-board > p {
  display: grid;
  grid-template-columns: 11px 1fr auto;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid #e1edf7;
}
.service-board > p i {
  width: 10px;
  height: 10px;
  border: 2px solid #55a2f5;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #fff;
  background: #55a2f5;
}
.service-board > p b {
  color: #426485;
  font-size: 12px;
}
.service-board > p span {
  padding: 2px 6px;
  color: #247bdb;
  border-radius: 10px;
  background: #eaf5ff;
  font-size: 10px;
}
.service-board > p:nth-of-type(3) span {
  color: #a27427;
  background: #fff6dc;
}
.service-board footer {
  margin: 14px -28px 0;
  padding: 13px 28px;
  color: #3976ae;
  background: #eaf5ff;
  font-size: 11px;
}

.company-map {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 35px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at center,
      #fff 0 22%,
      #eaf6ff 23% 24%,
      transparent 25%
    ),
    linear-gradient(145deg, #f8fcff, #eaf6ff);
}
.company-map::before,
.company-map::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 150px;
  border: 1px solid rgba(67, 146, 229, 0.24);
  border-radius: 50%;
}
.company-map::before {
  transform: rotate(27deg);
}
.company-map::after {
  transform: rotate(-27deg);
}
.company-map > b {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #126ae9, #55bbf5);
  box-shadow:
    0 18px 38px rgba(32, 119, 228, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
.company-map > div {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.company-map > div:first-child {
  top: 42px;
}
.company-map > div:last-child {
  bottom: 42px;
}
.company-map span {
  padding: 6px 9px;
  color: #3d73a7;
  border: 1px solid rgba(94, 159, 223, 0.22);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 17px rgba(55, 111, 175, 0.08);
  font-size: 10px;
}

.case-ledger {
  background: linear-gradient(180deg, #fff, #f5faff);
}
.case-board {
  margin-top: 42px;
  overflow: hidden;
}
.case-board header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid #dbe9f5;
  background: rgba(255, 255, 255, 0.78);
}
.case-board header span {
  color: #5790c4;
  font-size: 11px;
}
.case-board header b {
  color: #244e79;
  font-size: 15px;
}
.case-board header em {
  margin-left: auto;
  padding: 3px 9px;
  color: #1d9072;
  border-radius: 10px;
  background: #e8f9f3;
  font-size: 10px;
  font-style: normal;
}
.case-board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d8e7f3;
}
.case-board-grid section {
  position: relative;
  min-height: 190px;
  padding: 27px 25px;
  background: rgba(255, 255, 255, 0.84);
}
.case-board-grid section::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 17px;
  border-radius: 50%;
  background: #55b5f5;
  box-shadow: 0 0 0 5px #eaf6ff;
}
.case-board-grid small {
  color: #6691b4;
  font-size: 11px;
}
.case-board-grid strong {
  display: block;
  margin-top: 5px;
  color: #234d78;
  font-size: 17px;
}
.case-board-grid p {
  margin: 9px 0 13px;
  color: #678098;
  font-size: 12px;
  line-height: 1.7;
}
.case-board-grid i {
  padding: 3px 8px;
  color: #2c84dc;
  border-radius: 10px;
  background: #eaf5ff;
  font-size: 10px;
  font-style: normal;
}
.case-board-grid section:last-child i {
  color: #1b9073;
  background: #e8f8f2;
}
.case-practices {
  background: #fff;
}
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.practice-grid article {
  min-height: 338px;
  padding: 29px;
  border: 1px solid #deebf6;
  border-top: 3px solid #2b7cf0;
  background: #f9fcff;
  box-shadow: 0 16px 36px rgba(42, 98, 170, 0.06);
}
.practice-grid span {
  color: #2578e8;
  font-size: 12px;
  font-weight: 700;
}
.practice-grid h3 {
  margin: 17px 0 10px;
  color: #183f6a;
  font-size: 20px;
  line-height: 1.45;
}
.practice-grid p {
  min-height: 73px;
  margin: 0;
  color: #657e97;
  font-size: 13px;
  line-height: 1.75;
}
.practice-grid dl {
  margin: 22px 0 0;
  padding-top: 14px;
  border-top: 1px solid #dce9f4;
}
.practice-grid dt {
  margin-top: 9px;
  color: #6092bd;
  font-size: 11px;
}
.practice-grid dd {
  margin: 2px 0 0;
  color: #426485;
  font-size: 12px;
  line-height: 1.6;
}
.case-method {
  padding-top: 0;
  background: #fff;
}
.case-method .section-heading {
  margin-bottom: 32px;
}
.case-method-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid #dceaf6;
  background: #f6fbff;
}
.case-method-row span {
  display: grid;
  place-items: center;
  min-width: 105px;
  min-height: 52px;
  padding: 8px 12px;
  color: #265d91;
  border: 1px solid #d5e6f5;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 650;
}
.case-method-row i {
  flex: 1;
  max-width: 70px;
  height: 1px;
  margin: 0 8px;
  background: #9cc9f3;
  position: relative;
}
.case-method-row i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #5ba6eb;
  border-right: 1px solid #5ba6eb;
  transform: rotate(45deg);
}

.solution-rail {
  background: linear-gradient(180deg, #fff, #f5faff);
}
.solution-stack {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}
.solution-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 48px;
  padding: 34px 38px;
  border: 1px solid #dceaf6;
  background: #fff;
  box-shadow: 0 18px 46px rgba(42, 98, 170, 0.08);
}
.solution-panel:nth-child(even) {
  grid-template-columns: 1.08fr 0.92fr;
  background: #f8fcff;
}
.solution-panel:nth-child(even) .solution-copy {
  order: 2;
}
.solution-copy > span {
  color: #2679eb;
  font-size: 13px;
  font-weight: 750;
}
.solution-copy h3 {
  margin: 13px 0 11px;
  color: #173e69;
  font-size: 28px;
  line-height: 1.42;
}
.solution-copy > p {
  margin: 0;
  color: #627c96;
  font-size: 16px;
  line-height: 1.85;
}
.solution-copy ul {
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e0ebf5;
}
.solution-copy li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #e0ebf5;
}
.solution-copy li b {
  color: #34638e;
  font-size: 14px;
}
.solution-copy li em {
  color: #6a839a;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}
.solution-diagram {
  position: relative;
  min-height: 205px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(79, 143, 211, 0.16);
  border-radius: 12px;
  background: linear-gradient(145deg, #f9fcff, #e8f5ff);
}
.solution-diagram small {
  display: block;
  color: #6592b8;
  font-size: 11px;
}
.solution-diagram footer {
  position: absolute;
  right: 22px;
  bottom: 19px;
  left: 22px;
  display: flex;
  gap: 7px;
}
.solution-diagram footer span {
  padding: 3px 7px;
  color: #3674ad;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.78);
  font-size: 10px;
}
.public-diagram > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.public-diagram > div b {
  display: grid;
  place-items: center;
  width: 76px;
  height: 50px;
  color: #255c91;
  border: 1px solid #cae1f5;
  border-radius: 7px;
  background: #fff;
  font-size: 11px;
}
.public-diagram > div i {
  width: 18px;
  height: 1px;
  background: #74b4ec;
  position: relative;
}
.public-diagram > div i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #54a1e7;
  border-right: 1px solid #54a1e7;
  transform: rotate(45deg);
}
.internal-core {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr 0.9fr 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 35px;
}
.internal-core b {
  padding: 12px 6px;
  color: #245b90;
  border: 1px solid #cce2f5;
  border-radius: 7px;
  background: #fff;
  font-size: 11px;
  text-align: center;
}
.internal-core span {
  color: #6e8ba5;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}
.internal-core strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: auto;
  border-radius: 50%;
  color: #fff;
  background: #2481ee;
  box-shadow: 0 10px 20px rgba(36, 129, 238, 0.24);
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
}
.exam-diagram > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 40px;
}
.exam-diagram > div b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #37678f;
  font-size: 11px;
  text-align: center;
}
.exam-diagram > div i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #2678e8;
  border: 1px solid #bcdcf6;
  background: #fff;
  box-shadow: 0 7px 15px rgba(57, 128, 203, 0.1);
  font-size: 10px;
  font-style: normal;
}
.implementation-path {
  background: #fff;
}
.implementation-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin: 43px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid #dbe9f5;
}
.implementation-steps li {
  position: relative;
  min-height: 138px;
  padding: 24px 17px;
  background: #fbfdff;
}
.implementation-steps li + li {
  border-left: 1px solid #dbe9f5;
}
.implementation-steps li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #49aaf2;
  box-shadow: 0 0 0 5px #eaf6ff;
}
.implementation-steps b {
  display: block;
  color: #254f7a;
  font-size: 14px;
}
.implementation-steps span {
  display: block;
  margin-top: 5px;
  color: #6c849a;
  font-size: 11px;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .product-board {
    min-height: 330px;
  }
  .product-board-body {
    grid-template-columns: 95px 1fr;
  }
  .product-board main {
    padding: 18px 14px;
  }
  .product-board main label {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .product-board main strong {
    grid-column: 1;
    grid-row: auto;
  }
  .product-board main em {
    margin-left: 4px;
  }
  .service-board {
    padding: 23px 20px 0;
  }
  .service-board footer {
    margin-right: -20px;
    margin-left: -20px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .company-map {
    min-height: 295px;
  }
  .company-map > div:first-child {
    top: 30px;
  }
  .company-map > div:last-child {
    bottom: 30px;
  }
  .company-map span {
    padding: 5px 6px;
    font-size: 9px;
  }
  .case-board-grid,
  .practice-grid {
    grid-template-columns: 1fr;
  }
  .case-board-grid section {
    min-height: 0;
  }
  .case-method-row {
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px;
  }
  .case-method-row span {
    flex: 1;
    min-width: 112px;
  }
  .case-method-row i {
    flex: 0 0 20px;
  }
  .solution-panel,
  .solution-panel:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 27px 21px;
  }
  .solution-panel:nth-child(even) .solution-copy {
    order: initial;
  }
  .solution-copy h3 {
    font-size: 22px;
  }
  .solution-diagram {
    min-height: 195px;
    padding: 22px 14px;
  }
  .solution-diagram footer {
    right: 14px;
    left: 14px;
  }
  .public-diagram > div {
    gap: 4px;
  }
  .public-diagram > div b {
    width: 61px;
    height: 47px;
    font-size: 10px;
  }
  .public-diagram > div i {
    width: 9px;
  }
  .internal-core {
    gap: 4px;
  }
  .internal-core b {
    padding: 10px 3px;
    font-size: 10px;
  }
  .internal-core span {
    font-size: 9px;
  }
  .implementation-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .implementation-steps li + li {
    border-left: 1px solid #dbe9f5;
  }
  .implementation-steps li:nth-child(odd) {
    border-left: 0;
  }
  .implementation-steps li:nth-child(n + 3) {
    border-top: 1px solid #dbe9f5;
  }
}

/* Give inner-page illustrations enough scale to carry the section visually. */
.inner-feature-grid {
  grid-template-columns: 0.76fr 1.24fr;
  gap: 84px;
}
.product-board {
  min-height: 470px;
  border-radius: 18px;
  box-shadow: 0 34px 78px rgba(32, 98, 174, 0.16);
}
.product-board header {
  height: 56px;
  padding: 0 21px;
}
.product-board header i {
  width: 9px;
  height: 9px;
}
.product-board header b {
  font-size: 14px;
}
.product-board header span {
  font-size: 11px;
}
.product-board-body {
  grid-template-columns: 148px 1fr;
  min-height: 414px;
}
.product-board aside {
  padding: 28px 15px;
}
.product-board aside b {
  margin-bottom: 18px;
  font-size: 13px;
}
.product-board aside span {
  margin: 6px 0;
  padding: 10px;
  font-size: 12px;
}
.product-board main {
  padding: 30px 34px;
}
.product-board main h3 {
  margin-bottom: 24px;
  font-size: 20px;
}
.product-board main label {
  grid-template-columns: 112px 1fr;
  min-height: 48px;
  margin-top: 12px;
  font-size: 13px;
}
.product-board main em {
  font-size: 10px;
}
.product-board main strong {
  padding: 11px 12px;
  font-size: 12px;
}
.product-board main footer {
  margin-top: 28px;
  padding-top: 20px;
  font-size: 12px;
}
.product-board main button {
  padding: 9px 14px;
  font-size: 11px;
}
.service-board {
  min-height: 456px;
  padding: 35px 38px 0;
  border-radius: 18px;
  box-shadow: 0 34px 78px rgba(32, 98, 174, 0.16);
}
.service-board header {
  gap: 6px;
  padding-bottom: 21px;
}
.service-board header span {
  font-size: 13px;
}
.service-board header b {
  font-size: 21px;
}
.service-board > p {
  grid-template-columns: 13px 1fr auto;
  gap: 13px;
  padding: 17px 0;
}
.service-board > p i {
  width: 13px;
  height: 13px;
}
.service-board > p b {
  font-size: 14px;
}
.service-board > p span {
  padding: 3px 8px;
  font-size: 11px;
}
.service-board footer {
  margin: 18px -38px 0;
  padding: 16px 38px;
  font-size: 12px;
}
.company-map {
  min-height: 454px;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 34px 78px rgba(32, 98, 174, 0.16);
}
.company-map::before,
.company-map::after {
  width: 470px;
  height: 205px;
}
.company-map > b {
  width: 174px;
  height: 174px;
  font-size: 21px;
}
.company-map > div {
  gap: 12px;
}
.company-map > div:first-child {
  top: 60px;
}
.company-map > div:last-child {
  bottom: 60px;
}
.company-map span {
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 12px;
}
.solution-panel {
  grid-template-columns: 0.72fr 1.28fr;
  min-height: 438px;
  gap: 64px;
  padding: 42px 46px;
}
.solution-panel:nth-child(even) {
  grid-template-columns: 1.28fr 0.72fr;
}
.solution-copy h3 {
  font-size: 28px;
}
.solution-copy > p {
  font-size: 16px;
}
.solution-copy li {
  grid-template-columns: 58px 1fr;
  padding: 12px 0;
}
.solution-copy li b,
.solution-copy li em {
  font-size: 14px;
}
.solution-diagram {
  min-height: 332px;
  padding: 38px;
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 19px 36px rgba(58, 125, 196, 0.12);
}
.solution-diagram small {
  font-size: 13px;
}
.solution-diagram footer {
  right: 30px;
  bottom: 28px;
  left: 30px;
  gap: 9px;
}
.solution-diagram footer span {
  padding: 5px 10px;
  font-size: 11px;
}
.public-diagram > div {
  gap: 14px;
  margin-top: 76px;
}
.public-diagram > div b {
  width: 104px;
  height: 68px;
  border-radius: 10px;
  font-size: 13px;
}
.public-diagram > div i {
  width: 29px;
}
.public-diagram > div i::after {
  width: 8px;
  height: 8px;
  top: -4px;
}
.internal-core {
  gap: 12px;
  margin-top: 62px;
}
.internal-core b {
  padding: 17px 8px;
  border-radius: 9px;
  font-size: 13px;
}
.internal-core span {
  font-size: 12px;
}
.internal-core strong {
  width: 82px;
  height: 82px;
  font-size: 13px;
}
.exam-diagram > div {
  gap: 15px;
  margin-top: 62px;
}
.exam-diagram > div b {
  gap: 10px;
  font-size: 13px;
}
.exam-diagram > div i {
  width: 48px;
  height: 48px;
  font-size: 12px;
}

/* About: use an address-first contact area rather than a dark promotional band. */
.contact-band {
  overflow: hidden;
  background: linear-gradient(135deg, #eff8ff 0%, #fff 56%, #e8f5ff 100%);
  border-top: 1px solid #dcebf7;
  border-bottom: 1px solid #dcebf7;
}
.contact-grid {
  grid-template-columns: 1fr 260px;
  gap: 64px;
  color: var(--ink-900);
}
.contact-band .section-index {
  color: #2679eb;
}
.contact-band h2 {
  color: #153d69;
  font-size: 34px;
}
.contact-lead {
  max-width: none !important;
  margin: 0 0 26px !important;
  color: #5f7b96 !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}
.contact-address {
  max-width: none;
  margin: 0 0 30px;
  padding: 18px 20px;
  border-left: 3px solid #2580ef;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 25px rgba(43, 103, 177, 0.07);
}
.contact-address small {
  display: block;
  margin-bottom: 6px;
  color: #5d91be;
  font-size: 12px;
}
.contact-address strong {
  color: #315879;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}
.contact-qr {
  width: 260px !important;
  margin: 0 !important;
  padding: 14px !important;
  border: 1px solid #d6e8f7;
  border-radius: 16px !important;
  background: #fff;
  box-shadow: 0 24px 54px rgba(34, 97, 167, 0.14);
}
.contact-qr img {
  width: 100% !important;
}
.contact-qr figcaption {
  margin-top: 10px !important;
  color: #496b8b !important;
  font-size: 12px !important;
}

@media (max-width: 820px) {
  .inner-feature-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .product-board {
    min-height: 360px;
  }
  .product-board-body {
    grid-template-columns: 102px 1fr;
    min-height: 304px;
  }
  .product-board aside {
    padding: 18px 10px;
  }
  .product-board aside b {
    font-size: 11px;
  }
  .product-board aside span {
    padding: 7px;
    font-size: 10px;
  }
  .product-board main {
    padding: 19px 16px;
  }
  .product-board main h3 {
    margin-bottom: 13px;
    font-size: 16px;
  }
  .product-board main label {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 4px;
    margin-top: 7px;
    font-size: 11px;
  }
  .product-board main strong {
    grid-column: 1;
    grid-row: auto;
    padding: 8px;
    font-size: 10px;
  }
  .product-board main footer {
    margin-top: 13px;
    padding-top: 10px;
    font-size: 10px;
  }
  .service-board {
    min-height: 390px;
    padding: 26px 22px 0;
  }
  .service-board header b {
    font-size: 18px;
  }
  .service-board > p {
    padding: 14px 0;
  }
  .service-board > p b {
    font-size: 12px;
  }
  .service-board footer {
    margin: 14px -22px 0;
    padding: 13px 22px;
  }
  .company-map {
    min-height: 350px;
  }
  .company-map::before,
  .company-map::after {
    width: 350px;
    height: 155px;
  }
  .company-map > b {
    width: 142px;
    height: 142px;
    font-size: 17px;
  }
  .company-map > div:first-child {
    top: 43px;
  }
  .company-map > div:last-child {
    bottom: 43px;
  }
  .company-map span {
    padding: 6px 7px;
    font-size: 10px;
  }
  .solution-panel,
  .solution-panel:nth-child(even) {
    min-height: 0;
    padding: 28px 20px;
  }
  .solution-diagram {
    min-height: 250px;
    padding: 22px 14px;
  }
  .solution-diagram footer {
    right: 14px;
    bottom: 16px;
    left: 14px;
  }
  .public-diagram > div {
    gap: 5px;
    margin-top: 51px;
  }
  .public-diagram > div b {
    width: 66px;
    height: 54px;
    font-size: 10px;
  }
  .public-diagram > div i {
    width: 9px;
  }
  .internal-core {
    gap: 4px;
    margin-top: 45px;
  }
  .internal-core b {
    padding: 10px 3px;
    font-size: 10px;
  }
  .internal-core span {
    font-size: 9px;
  }
  .internal-core strong {
    width: 58px;
    height: 58px;
    font-size: 10px;
  }
  .exam-diagram > div {
    gap: 7px;
    margin-top: 44px;
  }
  .exam-diagram > div b {
    gap: 7px;
    font-size: 10px;
  }
  .exam-diagram > div i {
    width: 36px;
    height: 36px;
    font-size: 10px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .contact-band h2 {
    font-size: 32px;
  }
  .contact-address strong {
    font-size: 13px;
  }
  .contact-qr {
    width: min(100%, 240px) !important;
  }
  .contact-lead {
    font-size: 15px !important;
  }
}

/* Final visual pass: stronger type scale and more authored diagram geometry. */
.contact-qr {
  height: fit-content !important;
  align-self: center;
}
.contact-qr img {
  display: block;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.company-map > div {
  gap: 16px;
}
.company-map span {
  min-width: 108px;
  padding: 13px 15px;
  border-radius: 10px;
  color: #245a8e;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(44, 105, 178, 0.12);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
}
.company-map > div:first-child span:nth-child(2),
.company-map > div:last-child span:nth-child(2) {
  color: #fff;
  border-color: #2c85ed;
  background: #2c85ed;
  box-shadow: 0 14px 28px rgba(38, 127, 232, 0.22);
}
.public-diagram > div b {
  width: 132px;
  height: 88px;
  color: #15528c;
  border: 1px solid #b7d9f5;
  border-top: 4px solid #2583ec;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f1f8ff);
  box-shadow: 0 16px 26px rgba(57, 126, 199, 0.13);
  font-size: 16px;
  font-weight: 750;
}
.public-diagram > div i {
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, #61b5f4, #2583ec);
}
.public-diagram > div i::after {
  width: 10px;
  height: 10px;
  border-width: 2px;
}
.internal-core b {
  min-width: 120px;
  padding: 21px 10px;
  color: #15528c;
  border: 1px solid #b7d9f5;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, #f1f8ff);
  box-shadow: 0 16px 26px rgba(57, 126, 199, 0.12);
  font-size: 16px;
  font-weight: 750;
}
.internal-core span {
  color: #507b9f;
  font-size: 14px;
  line-height: 1.6;
}
.internal-core strong {
  width: 100px;
  height: 100px;
  font-size: 16px;
  box-shadow: 0 17px 32px rgba(36, 129, 238, 0.28);
}
.exam-diagram > div {
  position: relative;
}
.exam-diagram > div::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 6%;
  left: 6%;
  height: 2px;
  background: linear-gradient(90deg, #b8dcfa, #2583ec, #b8dcfa);
}
.exam-diagram > div b {
  position: relative;
  z-index: 1;
  gap: 14px;
  color: #245a8e;
  font-size: 15px;
  font-weight: 700;
}
.exam-diagram > div i {
  width: 62px;
  height: 62px;
  border: 3px solid #fff;
  outline: 2px solid #8fc9f7;
  color: #fff;
  background: #2583ec;
  box-shadow: 0 14px 26px rgba(38, 127, 232, 0.22);
  font-size: 14px;
  font-weight: 700;
}
.implementation-steps {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(42, 98, 170, 0.09);
}
.implementation-steps li {
  min-height: 172px;
  padding: 31px 23px;
  background: linear-gradient(180deg, #fff, #f6fbff);
}
.implementation-steps li::before {
  width: 14px;
  height: 14px;
  margin-bottom: 19px;
  background: #2583ec;
  box-shadow: 0 0 0 6px #e3f2ff;
}
.implementation-steps li::after {
  content: counter(step);
  position: absolute;
  top: 29px;
  right: 22px;
  color: #c1dff7;
  font-size: 30px;
  font-weight: 800;
}
.implementation-steps {
  counter-reset: step;
}
.implementation-steps li {
  counter-increment: step;
}
.implementation-steps b {
  font-size: 18px;
}
.implementation-steps span {
  margin-top: 10px;
  color: #6684a0;
  font-size: 14px;
  line-height: 1.7;
}
@media (max-width: 820px) {
  .company-map > div {
    gap: 6px;
  }
  .company-map span {
    min-width: 82px;
    padding: 8px 5px;
    font-size: 11px;
  }
  .public-diagram > div b {
    width: 72px;
    height: 60px;
    font-size: 11px;
  }
  .public-diagram > div i {
    width: 10px;
  }
  .internal-core {
    gap: 3px;
  }
  .internal-core b {
    min-width: 0;
    padding: 12px 3px;
    font-size: 11px;
  }
  .internal-core span {
    font-size: 9px;
  }
  .internal-core strong {
    width: 62px;
    height: 62px;
    font-size: 11px;
  }
  .exam-diagram > div::before {
    top: 24px;
  }
  .exam-diagram > div b {
    gap: 9px;
    font-size: 11px;
  }
  .exam-diagram > div i {
    width: 42px;
    height: 42px;
    font-size: 10px;
  }
  .implementation-steps li {
    min-height: 150px;
    padding: 23px 15px;
  }
  .implementation-steps li::after {
    top: 22px;
    right: 14px;
    font-size: 24px;
  }
  .implementation-steps li::before {
    width: 11px;
    height: 11px;
    margin-bottom: 15px;
  }
  .implementation-steps b {
    font-size: 15px;
  }
  .implementation-steps span {
    font-size: 12px;
  }
}

.faq-support-visual.has-raster {
  position: relative;
  min-height: 0;
  aspect-ratio: 3 / 2;
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1400px;
}
.faq {
  overflow: hidden;
}
.faq-grid > * {
  min-width: 0;
}
.faq-raster {
  position: absolute;
  inset: -4% -6%;
  width: 112%;
  height: 108%;
  object-fit: contain;
  filter: saturate(0.99) brightness(1.005) contrast(1.02);
  transform: perspective(1400px) rotateY(-1.6deg);
  transform-origin: 54% 52%;
}
.faq-support-visual.has-raster:hover .faq-raster {
  transform: perspective(1400px) rotateY(-0.8deg) translateY(-4px) scale(1.01);
}

@media (max-width: 980px) {
  .hero-product.has-raster {
    min-height: 510px;
  }
  .hero-raster {
    left: -3%;
    width: 106%;
  }
  .scene-art.has-raster {
    min-height: 470px;
  }
}

@media (max-width: 680px) {
  .raster-ui-labels {
    font-size: 8px;
  }
  .label-title {
    font-size: 10px;
  }
  .scene-copy .scene-facts {
    gap: 7px;
    margin: 17px 0 20px;
  }
  .scene-copy .scene-facts li {
    font-size: 12px;
  }
  .platform-workspace.has-raster {
    min-height: 330px;
  }
  .platform-raster {
    inset: -5%;
    width: 110%;
    height: 110%;
  }
  .hero {
    padding-bottom: 72px;
  }
  .hero-product.has-raster {
    min-height: 290px;
  }
  .hero-raster {
    left: -20%;
    top: -4%;
    width: 140%;
    height: 100%;
    transform: none;
  }
  .hero-product.has-raster:hover .hero-raster {
    transform: scale(1.008);
  }
  .scene-art.has-raster {
    min-height: 255px;
    border-radius: 0;
    overflow: hidden;
  }
  .form-scene.scene-art.has-raster {
    min-height: 300px;
  }
  .form-scene.has-raster .scene-raster {
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: contain;
  }
  .capability-scene:not(.reverse) .scene-raster,
  .capability-scene.reverse .scene-raster {
    transform: none;
  }
  .capability-scene:not(.reverse) .scene-art.has-raster:hover .scene-raster,
  .capability-scene.reverse .scene-art.has-raster:hover .scene-raster {
    transform: translateY(-2px) scale(1.01);
  }
  .scenario-card {
    min-height: 500px;
  }
  .scenario-preview.has-raster {
    min-height: 275px;
  }
  .faq-support-visual.has-raster {
    min-height: 255px;
    aspect-ratio: 3 / 2;
  }
  .faq-raster {
    inset: -3% -5%;
    width: 110%;
    height: 106%;
    transform: none;
  }
  .faq-support-visual.has-raster:hover .faq-raster {
    transform: translateY(-2px) scale(1.008);
  }
  .accordion button {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .hero-copy h1 {
    max-width: 520px;
    white-space: normal;
    font-size: 40px;
    line-height: 1.25;
  }
  .page-hero {
    min-height: 380px;
    padding: 132px 0 72px;
  }
  .page-hero h1 {
    font-size: 38px;
  }
  .page-hero p {
    font-size: 16px;
  }
  .section-heading h2 {
    font-size: 29px;
    line-height: 1.42;
  }
  .section-heading p {
    font-size: 16px;
    line-height: 1.8;
  }
  .scenario-card > .scenario-copy h3 {
    font-size: 24px;
  }
  .scenario-card > .scenario-copy p {
    font-size: 16px;
  }
  .feature-list b,
  .feature-list span,
  .module-grid p,
  .solution-copy > p {
    font-size: 16px;
  }
  .module-grid h3 {
    font-size: 21px;
  }
  .solution-copy h3 {
    font-size: 24px;
  }
  .solution-copy li {
    grid-template-columns: 82px 1fr;
  }
  .solution-copy li b,
  .solution-copy li em {
    font-size: 14px;
  }
}
