:root {
  color-scheme: dark;
  --void: #050913;
  --void-2: #091426;
  --ink: #edf7ff;
  --muted: #92a9c4;
  --surface: rgba(10, 25, 45, 0.78);
  --surface-2: rgba(13, 34, 60, 0.92);
  --line: rgba(103, 219, 255, 0.22);
  --cyan: #18d7f3;
  --blue: #2f6bff;
  --violet: #4b7dff;
  --claw: #0ea5ff;
  --ember: #38bdf8;
  --gold: #7dd3fc;
  --paper: #f4f8ff;
  --dark-text: #101827;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(24, 215, 243, 0.12), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(47, 107, 255, 0.1), transparent 26%),
    #eef4ff;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  color: #fff;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 9, 19, 0.82);
  border-bottom: 1px solid rgba(24, 215, 243, 0.18);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand-mark,
.nav-action,
.main-nav {
  display: flex;
  align-items: center;
}

.brand-mark {
  justify-self: start;
  width: clamp(170px, 16vw, 246px);
  min-width: 0;
  filter: drop-shadow(0 0 18px rgba(24, 215, 243, 0.22));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.main-nav {
  justify-self: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  opacity: 0.84;
}

.main-nav a:hover {
  color: var(--cyan);
  opacity: 1;
}

.nav-action {
  justify-self: end;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(24, 215, 243, 0.42);
  background: linear-gradient(135deg, rgba(24, 215, 243, 0.12), rgba(47, 107, 255, 0.1));
  box-shadow: inset 0 0 22px rgba(24, 215, 243, 0.08);
  font-size: 14px;
  font-weight: 900;
}

.ui-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-action .ui-icon,
.primary-button .ui-icon,
.secondary-button .ui-icon,
.scene-tab .ui-icon {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: min(800px, 88svh);
  overflow: hidden;
  background: var(--void);
  color: #fff;
}

.hero-spline-panel {
  position: absolute;
  inset: 84px 0 0 auto;
  z-index: 1;
  width: min(54vw, 820px);
  height: calc(100% - 84px);
  overflow: hidden;
  background: transparent;
  mix-blend-mode: screen;
  opacity: 1;
}

.hero-spline-panel::before {
  content: none;
}

.hero-spline-panel video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  filter: none;
  transform: scale(1.04);
  transform-origin: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1120px, calc(100% - 40px));
  min-height: min(800px, 88svh);
  margin: 0 auto;
  padding: 118px 0 58px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--cyan);
  text-shadow: 0 0 22px rgba(24, 215, 243, 0.42);
}

.hero h1 {
  width: min(650px, 100%);
  margin: 0;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  color: transparent;
  background: linear-gradient(92deg, #fff 8%, #9ceeff 44%, #5fb9ff 72%, #2563eb 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  width: min(590px, 100%);
  margin: 24px 0 0;
  color: rgba(237, 247, 255, 0.82);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  position: relative;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid rgba(103, 219, 255, 0.4);
  border-radius: 10px;
  font-weight: 950;
  isolation: isolate;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.primary-button::before,
.secondary-button::before,
.download-trigger::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%);
  opacity: 0.55;
  pointer-events: none;
}

.primary-button {
  min-width: 154px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(135deg, #2563ff 0%, #10cfff 100%);
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(24, 215, 243, 0.16) inset,
    0 18px 42px rgba(16, 207, 255, 0.24),
    0 0 34px rgba(47, 107, 255, 0.18);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.18);
}

.secondary-button {
  border-color: rgba(24, 215, 243, 0.38);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.primary-button:hover,
.download-dropdown:hover .download-trigger,
.download-trigger:focus-visible {
  border-color: rgba(103, 219, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 20px 46px rgba(24, 215, 243, 0.25),
    0 0 42px rgba(47, 107, 255, 0.26);
  transform: translateY(-1px);
}

.download-dropdown {
  position: relative;
  z-index: 5;
  width: 220px;
  padding-bottom: 8px;
  margin-bottom: -8px;
  color: #111827;
}

.download-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 178px;
  min-height: 54px;
  padding: 0 18px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(127, 166, 255, 0.54);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(47, 107, 255, 0.86) 0%, rgba(126, 92, 255, 0.92) 100%),
    rgba(8, 20, 38, 0.72);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 16px 38px rgba(75, 125, 255, 0.24);
  isolation: isolate;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.14);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.download-trigger .ui-icon {
  width: 16px;
  height: 16px;
}

.icon-rotate-up {
  transform: rotate(180deg);
}

.download-menu {
  display: grid;
  gap: 0;
  position: absolute;
  top: 64px;
  left: 0;
  width: 220px;
  padding: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 34, 62, 0.96), rgba(6, 14, 27, 0.96));
  border: 1px solid rgba(103, 219, 255, 0.24);
  border-radius: 12px;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(24, 215, 243, 0.1);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  visibility: hidden;
}

.download-dropdown:hover .download-menu,
.download-dropdown:focus-within .download-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.download-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 12px 0 14px;
  border-radius: 8px;
  color: #edf7ff;
  font-size: 14px;
  font-weight: 850;
}

.download-menu a:hover {
  background: rgba(24, 215, 243, 0.1);
  color: #fff;
}

.download-menu .ui-icon {
  width: 16px;
  height: 16px;
}

.inclusive-offer-section {
  padding-top: 72px;
  padding-bottom: 42px;
  scroll-margin-top: 96px;
}

.inclusive-offer {
  width: 100%;
  padding: 18px;
  background:
    radial-gradient(circle at 12% 20%, rgba(24, 215, 243, 0.18), transparent 32%),
    linear-gradient(135deg, #07111f, #11122b);
  border: 1px solid rgba(24, 215, 243, 0.24);
  box-shadow:
    0 22px 70px rgba(12, 27, 52, 0.18),
    inset 0 0 30px rgba(24, 215, 243, 0.06);
  color: #fff;
}

.inclusive-offer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 4px 16px;
  border-bottom: 1px solid rgba(103, 219, 255, 0.16);
}

.inclusive-offer-heading p {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.inclusive-offer-heading strong {
  max-width: 430px;
  color: rgba(237, 247, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
  text-align: right;
}

.inclusive-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 16px;
}

.inclusive-offer-grid article {
  position: relative;
  display: grid;
  min-height: 150px;
  padding: 16px;
  align-content: start;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(103, 219, 255, 0.12);
  overflow: hidden;
}

.inclusive-offer-grid article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(24, 215, 243, 0.22), transparent 68%);
  pointer-events: none;
}

.inclusive-offer-grid .offer-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
}

.inclusive-offer-grid span {
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}

.offer-metric {
  display: block;
  margin: 2px 0 6px;
  color: transparent;
  background: linear-gradient(92deg, #fff 0%, #9ceeff 32%, #18d7f3 58%, #7c5cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 1000;
  line-height: 0.95;
  text-shadow: 0 0 28px rgba(24, 215, 243, 0.3);
}

.inclusive-offer-grid p {
  margin: 8px 0 0;
  color: rgba(237, 247, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  color: var(--dark-text);
}

.inclusive-offer-section + .value-section {
  padding-top: 54px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2,
.product-copy h2,
.security-band h2,
.cta-content h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading h2 span {
  display: block;
}

#security-title {
  white-space: nowrap;
}

#value-title,
#product-title,
#services-title,
#scenes-title,
#security-title {
  font-size: clamp(28px, 3.4vw, 46px);
}

#value-title span,
#services-title span {
  white-space: nowrap;
}

.section-heading.compact {
  display: block;
  width: min(820px, 100%);
}

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

.value-item,
.service-card,
.scene-board,
.roi-capability-board {
  border: 1px solid rgba(47, 107, 255, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 54px rgba(12, 27, 52, 0.1);
}

.value-item {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 28px;
}

.value-item::before,
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--violet));
}

.icon-chip {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  background: #0b1830;
  color: var(--cyan);
}

.value-logo {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(47, 107, 255, 0.12);
  box-shadow: 0 12px 30px rgba(12, 27, 52, 0.08);
}

.icon-chip svg,
.feature-list .ui-icon,
.trust-points .ui-icon,
.task-row .ui-icon {
  width: 18px;
  height: 18px;
}

.value-logo img {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.value-item:nth-child(2) .icon-chip {
  background: rgba(255, 255, 255, 0.94);
}

.value-item:nth-child(3) .icon-chip {
  background: rgba(255, 255, 255, 0.94);
}

.value-item h3,
.scene-copy h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
}

.value-item p,
.product-copy p,
.security-band p,
.cta-content p,
.scene-copy p,
.service-card p {
  margin: 0;
  color: #526276;
  font-size: 16px;
  line-height: 1.75;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.workspace-visual {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(24, 215, 243, 0.24);
  box-shadow: var(--shadow);
}

.workspace-visual img,
.workspace-visual iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  object-fit: contain;
  object-position: center;
}

.workspace-visual iframe {
  position: absolute;
  top: 47%;
  left: 50%;
  width: 132%;
  height: 132%;
  min-height: 0;
  transform: translate(-50%, -50%) scale(0.64);
  transform-origin: center;
  mix-blend-mode: multiply;
}

.product-copy p {
  margin-top: 22px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list div,
.trust-points div,
.task-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list div {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(47, 107, 255, 0.16);
  background: rgba(255, 255, 255, 0.78);
  font-weight: 900;
}

.feature-list .ui-icon {
  width: 22px;
  height: 22px;
}

.service-section {
  padding-top: 56px;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  overflow: hidden;
}

.service-card-accent {
  background: linear-gradient(180deg, #081426, #11122b);
  border-color: rgba(24, 215, 243, 0.32);
  color: #fff;
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  color: #66768a;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.service-card-accent .service-topline {
  color: rgba(255, 255, 255, 0.72);
}

.service-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: #081426;
  color: var(--cyan);
}

.service-logo {
  padding: 7px;
  background: #fff;
  border: 1px solid rgba(47, 107, 255, 0.12);
  box-shadow: 0 12px 30px rgba(12, 27, 52, 0.08);
}

.service-card:nth-child(2) .service-icon {
  background: var(--cyan);
  color: #06101d;
}

.service-card:nth-child(3) .service-icon {
  background: var(--violet);
  color: #fff;
}

.service-card-accent .service-icon {
  background: var(--blue);
  color: #fff;
}

.service-icon svg {
  width: 19px;
  height: 19px;
}

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

.service-logo > svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card:nth-child(2) .service-logo,
.service-card:nth-child(3) .service-logo {
  background: #fff;
  color: inherit;
}

.service-logo-codex {
  padding: 9px;
}

.service-logo-codex svg {
  fill: #0b1220;
}

.service-card-accent .managed-logo {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 221, 161, 0.32);
  padding: 8px;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.18;
}

.service-card-accent p {
  color: rgba(237, 247, 255, 0.72);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--dark-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

.service-card-accent li {
  color: #fff;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--blue);
}

.service-card-accent li::before {
  background: var(--blue);
}

.scene-section {
  padding-top: 60px;
}

.scene-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.scene-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(47, 107, 255, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: #526276;
  cursor: pointer;
  font-weight: 900;
}

.scene-tab.is-active {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  border-color: transparent;
}

.scene-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 20px;
  min-height: 360px;
  padding: 28px;
}

.scene-kicker {
  margin-bottom: 14px;
  color: var(--blue) !important;
  font-size: 13px !important;
  font-weight: 950;
}

.task-stack {
  display: grid;
  align-content: center;
  gap: 14px;
}

.task-row {
  min-height: 70px;
  padding: 0 18px;
  background: #f2f6ff;
  border: 1px solid rgba(47, 107, 255, 0.12);
  font-weight: 900;
}

.task-row .task-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.task-row .task-icon.is-loading {
  animation: spin 1.5s linear infinite;
}

.security-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
  width: 100%;
  max-width: none;
  padding: 96px clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 107, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #06101d, #0c1830);
  color: #fff;
}

.security-band p {
  color: rgba(237, 247, 255, 0.7);
  margin-top: 20px;
  max-width: 760px;
}

.trust-points {
  display: grid;
  gap: 1px;
  background: rgba(24, 215, 243, 0.16);
  border: 1px solid rgba(24, 215, 243, 0.18);
}

.trust-points div {
  min-height: 82px;
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.trust-points .ui-icon {
  width: 24px;
  height: 24px;
}

.roi-section {
  padding-top: 64px;
}

.roi-capability-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 1px;
  background:
    linear-gradient(135deg, rgba(47, 107, 255, 0.3), rgba(24, 215, 243, 0.24)),
    rgba(255, 255, 255, 0.86);
}

.roi-capability-card {
  position: relative;
  display: grid;
  min-height: 238px;
  padding: 26px 22px 24px;
  align-content: start;
  background:
    radial-gradient(circle at 22% 12%, rgba(24, 215, 243, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.92);
}

.roi-capability-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.roi-capability-index {
  color: rgba(47, 107, 255, 0.5);
  font-size: 12px;
  font-weight: 950;
}

.roi-capability-card .roi-icon {
  width: 34px;
  height: 34px;
  margin-top: 18px;
  padding: 7px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(47, 107, 255, 0.22);
}

.roi-capability-card h3 {
  margin: 18px 0 10px;
  color: var(--dark-text);
  font-size: 21px;
  line-height: 1.18;
}

.roi-capability-card p {
  margin: 0;
  color: #526276;
  font-size: 15px;
  line-height: 1.7;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: 44px;
  align-items: center;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 76px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(24, 215, 243, 0.12), transparent 36%),
    linear-gradient(180deg, #07111f, #11122b);
  border: 1px solid rgba(24, 215, 243, 0.22);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-content p {
  color: rgba(237, 247, 255, 0.7);
  margin-top: 18px;
}

.qr-panel {
  display: grid;
  justify-items: center;
  padding: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(24, 215, 243, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(24, 215, 243, 0.18);
}

.qr-frame {
  width: min(300px, 100%);
  padding: 14px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.qr-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.consultant-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  visibility: hidden;
}

.consultant-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.consultant-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(24, 215, 243, 0.16), transparent 34%),
    rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(16px);
}

.consultant-dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(15, 34, 62, 0.96), rgba(6, 14, 27, 0.98));
  border: 1px solid rgba(103, 219, 255, 0.28);
  border-radius: 18px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.45),
    0 0 54px rgba(24, 215, 243, 0.16);
  transform: translateY(10px) scale(0.98);
  transition: transform 180ms ease;
}

.consultant-modal.is-open .consultant-dialog {
  transform: translateY(0) scale(1);
}

.consultant-dialog h2 {
  margin: 8px 0 12px;
  font-size: 30px;
  line-height: 1.15;
}

.consultant-dialog p:not(.eyebrow) {
  margin: 0;
  color: rgba(237, 247, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.consultant-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(103, 219, 255, 0.2);
  border-radius: 10px;
}

.consultant-close:hover {
  color: #fff;
  background: rgba(24, 215, 243, 0.12);
}

.consultant-close .ui-icon {
  width: 18px;
  height: 18px;
}

.consultant-qr {
  margin-top: 22px;
  padding: 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.consultant-qr img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

body.modal-open {
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(47, 107, 255, 0.12);
  color: #526276;
  background: #eef4ff;
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--dark-text);
  font-weight: 950;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 12px 18px;
  }

  .main-nav {
    display: none;
  }

  .nav-action {
    padding: 0 12px;
  }

  .hero,
  .hero-inner {
    min-height: 84svh;
  }

  .hero-inner {
    padding-top: 96px;
  }

  .hero-spline-panel {
    inset: 72px -34vw auto auto;
    width: 118vw;
    height: 64vh;
    opacity: 0.52;
  }

  .hero h1 {
    font-size: clamp(32px, 8.8vw, 42px);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.62;
  }

  .inclusive-offer-section {
    padding-top: 42px;
    padding-bottom: 24px;
  }

  .inclusive-offer {
    padding: 14px;
  }

  .inclusive-offer-heading {
    display: grid;
    gap: 10px;
  }

  .inclusive-offer-heading strong {
    max-width: none;
    text-align: left;
  }

  .inclusive-offer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .product-panel,
  .service-grid,
  .scene-board,
  .security-band,
  .roi-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

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

  .value-item,
  .service-card {
    min-height: auto;
  }

  .workspace-visual {
    min-height: 460px;
  }

  .roi-capability-board {
    grid-template-columns: 1fr;
  }

  .roi-capability-card {
    min-height: auto;
  }

  .security-band {
    padding: 72px 20px;
  }

  .cta-section {
    padding: 28px;
  }
}

@media (max-width: 560px) {
  .hero-inner {
    width: min(350px, calc(100% - 40px));
    margin-left: 20px;
    margin-right: auto;
  }

  .hero-spline-panel {
    inset: 94px -78vw auto auto;
    width: 168vw;
    height: 58vh;
    opacity: 0.38;
  }

  .site-header {
    gap: 12px;
  }

  .brand-mark {
    width: 138px;
  }

  .nav-action {
    width: 42px;
    min-height: 42px;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    min-height: 48px;
    width: 100%;
    padding: 0 12px;
  }

  .download-dropdown,
  .download-menu {
    width: 100%;
  }

  .download-trigger {
    width: 100%;
  }

  .scene-board,
  .cta-section {
    padding: 22px;
  }

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