:root {
  color-scheme: dark;
  --bg: #090909;
  --bg-2: #0d0d0b;
  --surface: rgba(18, 18, 16, 0.82);
  --surface-2: rgba(21, 21, 18, 0.9);
  --surface-3: rgba(246, 243, 235, 0.96);
  --ink: #fbfaf5;
  --muted: #a7a49c;
  --soft: #d2d0c8;
  --line: rgba(246, 243, 235, 0.12);
  --line-strong: rgba(246, 243, 235, 0.24);
  --accent: #f6f3eb;
  --accent-2: #b8ffbe;
  --accent-glow: rgba(159, 237, 159, 0.18);
  --card-bg: rgba(13, 14, 12, 0.92);
  --card-bg-2: rgba(18, 19, 16, 0.94);
  --card-bg-3: rgba(22, 24, 20, 0.96);
  --card-border: rgba(246, 243, 235, 0.13);
  --card-border-hot: rgba(184, 255, 190, 0.36);
  --card-soft-glow: 0 28px 86px rgba(0, 0, 0, 0.34), 0 0 58px rgba(159, 237, 159, 0.045);
  --card-hot-glow: 0 32px 110px rgba(0, 0, 0, 0.52), 0 0 78px rgba(159, 237, 159, 0.14);
  --card-sheen: linear-gradient(122deg, transparent 0 39%, rgba(246, 243, 235, 0.08) 48%, rgba(184, 255, 190, 0.1) 52%, transparent 62% 100%);
  --warn: #f1c57a;
  --bad: #ff8e8e;
  --shadow: 0 32px 96px rgba(0, 0, 0, 0.44);
  --shadow-green: 0 26px 92px rgba(1, 8, 3, 0.58), 0 0 70px rgba(159, 237, 159, 0.07);
  --glass-edge: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  font-family: "SF Pro Display", "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background:
    radial-gradient(circle at var(--pointer-x, 62%) var(--pointer-y, 18%), rgba(184, 255, 190, 0.1), transparent 18rem),
    radial-gradient(circle at calc(var(--pointer-x, 62%) - 7%) calc(var(--pointer-y, 18%) + 3%), rgba(246, 243, 235, 0.075) 0 0.22rem, transparent 0.3rem),
    radial-gradient(circle at calc(var(--pointer-x, 62%) + 6%) calc(var(--pointer-y, 18%) + 6%), rgba(255, 203, 68, 0.26) 0 0.24rem, transparent 0.32rem),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='88' viewBox='0 0 152 88'%3E%3Cg fill='none' stroke='%232d3328' stroke-opacity='.62' stroke-width='1'%3E%3Cpath d='M38 1 76 22v44L38 87 0 66V22zM114 1l38 21v44l-38 21-38-21V22z'/%3E%3Cpath d='M76 22 38 1M76 66 38 87M76 22l38-21M76 66l38 21' stroke-opacity='.32'/%3E%3C/g%3E%3C/svg%3E") 50% 4px / 152px 88px,
    var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
  font-variant-numeric: tabular-nums;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: transparent;
  overflow-x: clip;
}

#root {
  max-width: 100vw;
  overflow-x: clip;
}

.root-shell-loading {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(36px, 8vw, 92px) 0;
  color: #fbfaf5;
}

.root-shell-loading__nav {
  position: absolute;
  top: 26px;
  left: max(24px, calc((100vw - 1120px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(251, 250, 245, 0.92);
  font-weight: 850;
}

.root-shell-loading__mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(184, 255, 190, 0.32);
  border-radius: 10px;
  background: rgba(184, 255, 190, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 32px rgba(184, 255, 190, 0.16);
}

.root-shell-loading__nav i {
  width: 68px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b8ffbe, transparent);
}

.root-shell-loading__copy {
  display: grid;
  gap: 18px;
}

.root-shell-loading__copy span {
  color: #b8ffbe;
  font-size: 13px;
  font-weight: 850;
}

.root-shell-loading__copy h1 {
  max-width: 10em;
  margin: 0;
  font-size: clamp(46px, 7.6vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.root-shell-loading__copy p {
  max-width: 32em;
  margin: 0;
  color: rgba(251, 250, 245, 0.68);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.8;
}

.root-shell-loading__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.root-shell-loading__button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(184, 255, 190, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(184, 255, 190, 0.06), rgba(184, 255, 190, 0.018)),
    rgba(5, 15, 8, 0.76);
  color: rgba(251, 250, 245, 0.88);
  font-size: 13px;
  font-weight: 850;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 38px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.root-shell-loading__button.primary {
  border-color: rgba(184, 255, 190, 0.3);
  background:
    radial-gradient(circle at 20% 0%, rgba(184, 255, 190, 0.16), transparent 9rem),
    linear-gradient(135deg, rgba(10, 31, 14, 0.98), rgba(4, 12, 6, 0.98));
  color: #fbfaf5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.32),
    0 0 28px rgba(184, 255, 190, 0.08);
}

.root-shell-loading__button:hover,
.root-shell-loading__button:focus-visible {
  border-color: rgba(184, 255, 190, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 56px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(184, 255, 190, 0.08);
  transform: translateY(-2px);
}

.root-shell-loading__button:active {
  transform: translateY(0) scale(0.985);
}

.root-shell-loading__hint {
  max-width: 38em;
  color: rgba(251, 250, 245, 0.46);
  font-size: 12px;
  line-height: 1.7;
}

.root-shell-loading__panel {
  min-height: 360px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(184, 255, 190, 0.16), transparent 34%),
    rgba(13, 14, 12, 0.72);
  box-shadow: var(--shadow-green);
  overflow: hidden;
}

.root-shell-loading__panel div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(246, 243, 235, 0.1);
}

.root-shell-loading__panel span,
.root-shell-loading__panel b,
.root-shell-loading__panel em {
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(251, 250, 245, 0.08), rgba(184, 255, 190, 0.34), rgba(251, 250, 245, 0.08));
  background-size: 220% 100%;
  animation: rootShellPulse 1.6s ease-in-out infinite;
}

.root-shell-loading__panel span {
  height: 92px;
  margin: 24px;
}

.root-shell-loading__panel p {
  display: grid;
  gap: 16px;
  margin: 30px 28px;
}

.root-shell-loading__panel b {
  height: 18px;
}

.root-shell-loading__panel b:nth-child(2) {
  width: 72%;
}

.root-shell-loading__panel b:nth-child(3) {
  width: 48%;
}

.root-shell-loading__panel em {
  width: calc(100% - 56px);
  height: 116px;
  margin: 0 28px;
  border-radius: 16px;
}

@keyframes rootShellPulse {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.58;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.95;
  }
}

@media (max-width: 760px) {
  .root-shell-loading {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 430px);
    padding-top: 94px;
  }

  .root-shell-loading__nav {
    left: 24px;
  }

  .root-shell-loading__copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .root-shell-loading__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .root-shell-loading__button {
    width: 100%;
  }

  .root-shell-loading__panel {
    min-height: 260px;
  }
}

/* root384-type-border-refinement: preserve the marketing scale while keeping
   long Chinese headlines and the cockpit preview subordinate to the offer. */
.home-copy h1 {
  max-width: 12.5em !important;
  font-size: clamp(52px, 5.35vw, 68px) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.home-copy > p {
  max-width: 46em !important;
  font-size: clamp(16px, 1.45vw, 19px) !important;
  line-height: 1.65 !important;
}

.home-hero {
  border-color: rgba(246, 243, 235, 0.055) !important;
}

.workflow-board {
  border-color: rgba(184, 255, 190, 0.11) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25) !important;
}

.workflow-board :is(.workflow-node, .workflow-stat, .workflow-panel, article) {
  border-color: rgba(184, 255, 190, 0.075) !important;
  box-shadow: none !important;
}

@media (max-width: 760px) {
  .home-copy h1 {
    max-width: none !important;
    font-size: clamp(36px, 10.6vw, 44px) !important;
    line-height: 1.1 !important;
  }

  .workflow-board {
    border-color: rgba(184, 255, 190, 0.085) !important;
    box-shadow: none !important;
  }
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background:
    linear-gradient(96deg, transparent 0 36%, rgba(246, 243, 235, 0.11) 48%, rgba(184, 255, 190, 0.16) 52%, transparent 64% 100%) var(--body-sheen, -28vw) 0 / 34vw 100% no-repeat,
    radial-gradient(circle at var(--pointer-x, 62%) var(--pointer-y, 18%), rgba(246, 243, 235, 0.16), transparent 8rem),
    radial-gradient(circle at calc(var(--pointer-x, 62%) + 5%) calc(var(--pointer-y, 18%) + 5%), rgba(184, 255, 190, 0.16), transparent 11rem);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 88%);
  animation: page-hex-sheen 10s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.1), rgba(9, 9, 9, 0.82) 82%),
    radial-gradient(circle at 12% 16%, rgba(159, 237, 159, 0.08), transparent 24%),
    radial-gradient(circle at 92% 4%, rgba(246, 243, 235, 0.055), transparent 22%),
    radial-gradient(circle at 86% 78%, rgba(140, 240, 210, 0.055), transparent 26%);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

select option,
select optgroup {
  background: #f6f3eb;
  color: #111;
}

select option:disabled {
  color: #777;
}

:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(140, 240, 210, 0.35);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  text-wrap: pretty;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.headline-line {
  display: inline;
  white-space: normal;
  color: inherit !important;
  font: inherit !important;
  letter-spacing: inherit;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
}

p {
  line-height: 1.65;
}

.button,
.ghost-link,
.nav-link,
.collection-card,
.collection-feature-card,
.collection-scenario-strip article,
.product-flow-grid article,
.special-module-strip article,
.special-workflow article,
.home-capability-row,
.home-industry-grid article,
.market-share-panel article,
.pricing-card,
.pricing-value-strip div,
.pricing-onboarding,
.pricing-onboarding-steps article,
.capability-grid article,
.solution-steps article,
.solution-command-panel,
.solution-summary-band p,
.report-radar-grid article,
.cluster-grid article,
.model-list article,
.action-list article,
.visit-attribution-grid article,
.index-score-grid article,
.index-insight-grid article,
.index-faq-strip article,
.reports-console,
.reports-score-card,
.reports-type-grid article,
.reports-workflow-grid article,
.case-story article,
.case-stats,
.case-proof-strip article,
.case-timeline article,
.case-proof-matrix article,
.article-summary-card,
.article-cockpit,
.article-evidence-panel,
.contact-cards article {
  will-change: transform;
}

.section-label {
  margin: 0 0 14px;
  color: #97a9c3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 220;
  padding: 10px 14px;
  border: 1px solid rgba(184, 255, 190, 0.54);
  border-radius: 5px;
  background: #f6f3eb;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  outline: 3px solid rgba(184, 255, 190, 0.72);
  outline-offset: 3px;
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

.button:hover,
.button-light:hover,
.button-dark:hover,
.directory-toggle:hover,
.compact-link:hover,
.page-card:hover,
.feature-tile:hover,
.geo-nav button:hover,
.geo-toolbar button:hover,
.geo-panel header button:hover,
.geo-mini-button:hover,
.geo-action-grid button:hover,
.geo-evidence-grid button:hover {
  transform: translateY(-1px);
}

.button:active,
.button-light:active,
.button-dark:active,
.directory-toggle:active,
.compact-link:active,
.page-card:active,
.feature-tile:active,
.geo-nav button:active,
.geo-toolbar button:active,
.geo-panel header button:active,
.geo-mini-button:active,
.geo-action-grid button:active,
.geo-evidence-grid button:active {
  transform: translateY(0);
}

.button-dark {
  background: #f6f3eb;
  color: #111111;
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.08);
}

.button-light {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.wide {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 38px;
  align-items: center;
  width: min(1080px, calc(100% - 48px));
  min-height: 64px;
  margin: 0 auto;
  padding: 0;
  border-bottom: 0;
  background: rgba(9, 9, 9, 0.76);
  backdrop-filter: blur(18px);
}

.brand,
.geo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.brand-mark,
.geo-brand span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  font-weight: 800;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(236, 194, 112, 0.18);
}

.brand-mark img,
.footer-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav,
.header-actions,
.hero-actions,
.group-tabs,
.quick-actions,
.geo-toolbar,
.geo-topbar-actions,
.geo-action-grid,
.geo-evidence-grid {
  display: flex;
  align-items: center;
}

.nav {
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

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

.nav-link,
.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.nav-link:hover,
.nav-link.active,
.ghost-link:hover {
  background: transparent;
  color: var(--ink);
}

.nav-caret {
  color: #676762;
  font-size: 12px;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: fixed;
  top: 58px;
  left: 50%;
  z-index: 40;
  width: min(1030px, calc(100vw - 48px));
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 100%;
  height: 24px;
  background: transparent;
  transform: translateX(-50%);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-left: 1px solid #272722;
  border-top: 1px solid #272722;
  background: #090907;
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 34px;
  min-height: 330px;
  padding: 32px 34px 26px;
  border: 1px solid #272722;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 40%),
    #090907;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.62);
}

.nav-dropdown-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.nav-dropdown-column h2 {
  margin: 0 0 18px;
  color: #777770;
  font-size: 12px;
  font-weight: 750;
}

.nav-dropdown-link {
  display: grid;
  gap: 4px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(246, 243, 235, 0.055);
}

.nav-dropdown-link strong {
  color: #f8f7f2;
  font-size: 15px;
  letter-spacing: 0;
}

.nav-dropdown-link span {
  color: #8d8d86;
  font-size: 12px;
  line-height: 1.45;
}

.nav-dropdown-link:hover strong,
.nav-feature-link:hover {
  color: #ffffff;
}

.nav-feature-card {
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid #24241f;
  border-radius: 8px;
  background: #0f0f0d;
}

.nav-feature-visual {
  position: relative;
  height: 142px;
  overflow: hidden;
  border: 1px solid #282823;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 80%, rgba(246, 243, 235, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    #080807;
}

.nav-feature-visual i {
  position: absolute;
  inset: auto auto 8px 50%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(246, 243, 235, 0.14);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nav-feature-visual i:nth-child(2) {
  width: 260px;
  height: 260px;
  bottom: -62px;
}

.nav-feature-visual i:nth-child(3) {
  width: 110px;
  height: 110px;
  bottom: 28px;
}

.nav-feature-visual i:nth-child(4) {
  width: 24px;
  height: 24px;
  bottom: 72px;
  background: rgba(246, 243, 235, 0.72);
}

.nav-feature-visual strong {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(246, 243, 235, 0.2);
  border-radius: 6px;
  background: rgba(246, 243, 235, 0.12);
  color: #f8f7f2;
  font-size: 13px;
  transform: translateX(-50%);
}

.nav-feature-card h2 {
  margin: 0;
  color: #f8f7f2;
  font-size: 18px;
  line-height: 1.25;
}

.nav-feature-card p {
  margin: 0;
  color: #8d8d86;
  font-size: 13px;
  line-height: 1.55;
}

.nav-feature-link {
  width: fit-content;
  margin-top: 4px;
  color: #d8d8d1;
  font-size: 13px;
  font-weight: 750;
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
}

.index-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  overflow: hidden;
  border-bottom: 1px solid rgba(159, 237, 159, 0.28);
  background:
    linear-gradient(90deg, rgba(184, 255, 190, 0.18), rgba(246, 243, 235, 0.94) 28%, rgba(246, 243, 235, 0.92) 72%, rgba(184, 255, 190, 0.16)),
    #f3efe5;
  color: #1a1b17;
  font-size: 14px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.72), 0 0 42px rgba(159, 237, 159, 0.14);
}

.index-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.82) 48%, transparent 58% 100%),
    radial-gradient(circle at 25% 50%, rgba(159, 237, 159, 0.24), transparent 22%);
  opacity: 0.78;
  transform: translateX(-58%);
  animation: index-alert-sweep 5.8s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.index-bar strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #10110e;
  color: #eaffea;
  box-shadow: 0 0 24px rgba(159, 237, 159, 0.22), inset 0 0 0 1px rgba(159, 237, 159, 0.18);
  font-weight: 800;
}

.index-bar strong::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9fed9f;
  box-shadow: 0 0 12px rgba(159, 237, 159, 0.9);
  animation: alert-dot 1.8s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.index-bar span {
  position: relative;
  z-index: 1;
  color: #3c3a32;
  font-weight: 650;
}

.index-bar b {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 17, 14, 0.08);
  color: #111;
  font-size: 15px;
}

.home-hero {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: calc(100dvh - 64px);
  padding: clamp(70px, 10vh, 112px) 0 clamp(168px, 24vh, 248px);
  overflow: hidden;
  border-top: 1px solid rgba(246, 243, 235, 0.08);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: -120px 0 auto;
  z-index: -1;
  height: 560px;
  background:
    radial-gradient(circle at 50% 18%, rgba(184, 255, 190, 0.13), transparent 28%),
    radial-gradient(circle at 18% 30%, rgba(246, 243, 235, 0.075), transparent 26%),
    linear-gradient(180deg, rgba(159, 237, 159, 0.035), transparent 72%);
  pointer-events: none;
}

.home-copy {
  width: min(1120px, calc(100% - 40px));
  text-align: center;
  animation: home-rise 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.home-copy h1,
.pricing-head h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.7vw, 86px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: pretty;
}

.home-copy h1,
.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.contact-copy h1,
.reports-copy h1,
.index-landing h1 {
  word-break: normal;
  overflow-wrap: break-word;
  line-break: loose;
  text-wrap: balance;
}

.home-copy p {
  max-width: 760px;
  margin: 18px auto 0;
  color: #d1cec4;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.62;
  text-wrap: pretty;
}

.home-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  animation: home-rise 520ms 80ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.workflow-board {
  position: relative;
  width: min(1070px, calc(100% - 48px));
  min-height: 560px;
  margin-top: 28px;
  border: 1px solid rgba(159, 237, 159, 0.18);
  border-radius: 6px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 17%, transparent 70%, rgba(159, 237, 159, 0.035)),
    radial-gradient(circle at var(--workflow-x, 54%) var(--workflow-y, 42%), rgba(246, 243, 235, 0.18), transparent 8rem),
    radial-gradient(circle at calc(var(--workflow-x, 54%) + 8%) calc(var(--workflow-y, 42%) + 6%), rgba(255, 205, 54, 0.2) 0 0.25rem, transparent 0.35rem),
    radial-gradient(circle at 50% 50%, rgba(159, 237, 159, 0.21), transparent 30%),
    radial-gradient(circle at 18% 48%, rgba(70, 255, 194, 0.13), transparent 26%),
    radial-gradient(circle at 84% 52%, rgba(145, 176, 255, 0.13), transparent 28%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='88' viewBox='0 0 152 88'%3E%3Cg fill='none' stroke='%23414a37' stroke-opacity='.74' stroke-width='1.2'%3E%3Cpath d='M38 1 76 22v44L38 87 0 66V22zM114 1l38 21v44l-38 21-38-21V22z'/%3E%3Cpath d='M76 22 38 1M76 66 38 87M76 22l38-21M76 66l38 21' stroke-opacity='.28'/%3E%3C/g%3E%3C/svg%3E") 50% 0 / 152px 88px,
    #10100e;
  box-shadow:
    0 28px 92px rgba(0, 0, 0, 0.64),
    0 0 92px rgba(159, 237, 159, 0.14),
    inset 0 0 0 1px rgba(246, 243, 235, 0.03),
    inset 0 0 90px rgba(159, 237, 159, 0.06);
  animation: panel-lift 640ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.workflow-board::before,
.workflow-board::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.workflow-board::before {
  inset: 38px 0 0;
  background:
    linear-gradient(102deg, transparent, rgba(246, 243, 235, 0.2), rgba(184, 255, 190, 0.18), transparent) 0 0 / 40% 100% no-repeat,
    radial-gradient(circle at var(--workflow-x, 54%) var(--workflow-y, 42%), rgba(246, 243, 235, 0.24), transparent 7rem);
  opacity: 0.56;
  animation: workflow-sweep 5.2s linear infinite;
}

.workflow-board::after {
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--workflow-x, 54%) var(--workflow-y, 42%), rgba(255, 255, 255, 0.46) 0 0.18rem, transparent 0.32rem),
    radial-gradient(circle at calc(var(--workflow-x, 54%) + 10%) calc(var(--workflow-y, 42%) + 6%), rgba(255, 213, 67, 0.88) 0 0.22rem, transparent 0.34rem),
    radial-gradient(circle at 50% 50%, transparent 0 33%, rgba(159, 237, 159, 0.08) 34%, transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 16%, transparent 78%, rgba(255, 255, 255, 0.03));
  mix-blend-mode: screen;
}

.workflow-scan {
  position: absolute;
  inset: 38px 0 auto;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 237, 159, 0.85), transparent);
  box-shadow: 0 0 22px rgba(159, 237, 159, 0.58);
  animation: workflow-scan 4.8s ease-in-out infinite;
}

.workflow-grid-glow {
  position: absolute;
  inset: 38px 0 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--workflow-x, 50%) var(--workflow-y, var(--glow-y, 18%)), rgba(246, 243, 235, 0.18), transparent 9rem),
    radial-gradient(circle at 50% var(--glow-y, 18%), rgba(159, 237, 159, 0.18), transparent 18%),
    radial-gradient(circle at 46% 58%, rgba(140, 240, 210, 0.12), transparent 26%);
  opacity: 0.7;
  animation: workflow-glow 6s ease-in-out infinite;
}

.workflow-core {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 360px;
  height: 360px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 52px rgba(159, 237, 159, 0.34));
}

.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(159, 237, 159, 0.18);
}

.ring-1 {
  width: 350px;
  height: 350px;
  background:
    conic-gradient(from 0deg, transparent 0 16%, rgba(159, 237, 159, 0.46) 17%, transparent 20% 48%, rgba(140, 240, 210, 0.34) 51%, transparent 54% 100%);
  mask: radial-gradient(circle, transparent 0 63%, #000 64% 66%, transparent 67%);
  animation: core-rotate 16s linear infinite;
}

.ring-2 {
  width: 248px;
  height: 248px;
  border-color: rgba(140, 240, 210, 0.2);
  background:
    repeating-conic-gradient(from 30deg, rgba(159, 237, 159, 0.42) 0 5deg, transparent 5deg 18deg);
  mask: radial-gradient(circle, transparent 0 58%, #000 59% 62%, transparent 63%);
  animation: core-rotate-reverse 11s linear infinite;
}

.ring-3 {
  width: 146px;
  height: 146px;
  border-color: rgba(159, 237, 159, 0.24);
  background: radial-gradient(circle, rgba(159, 237, 159, 0.18), transparent 62%);
  box-shadow: inset 0 0 32px rgba(159, 237, 159, 0.16);
  animation: core-pulse 2.8s ease-in-out infinite;
}

.workflow-core strong {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(159, 237, 159, 0.28);
  border-radius: 8px;
  background: rgba(7, 14, 10, 0.78);
  color: #eaffea;
  font-size: 18px;
  letter-spacing: 0.12em;
  box-shadow: 0 0 42px rgba(159, 237, 159, 0.42), inset 0 0 30px rgba(159, 237, 159, 0.16);
}

.core-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 460px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 237, 159, 0.64), transparent);
  transform-origin: center;
  opacity: 0.72;
}

.beam-1 {
  transform: translate(-50%, -50%) rotate(22deg);
  animation: beam-flare 3.4s ease-in-out infinite;
}

.beam-2 {
  transform: translate(-50%, -50%) rotate(-31deg);
  animation: beam-flare 3.4s 1.1s ease-in-out infinite;
}

.workflow-side-panel {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 8px;
  width: 178px;
  padding: 16px;
  border: 1px solid rgba(159, 237, 159, 0.16);
  border-radius: 6px;
  background: rgba(11, 14, 11, 0.72);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28), inset 0 0 28px rgba(159, 237, 159, 0.04);
  backdrop-filter: blur(10px);
}

.workflow-side-panel span {
  color: #8d8d86;
  font-size: 11px;
}

.workflow-side-panel strong {
  color: #f4fff4;
  font-size: 30px;
  line-height: 1;
}

.workflow-side-panel i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(159, 237, 159, 0.9), rgba(159, 237, 159, 0.08));
  transform-origin: left center;
  animation: side-meter 2.8s ease-in-out infinite;
}

.workflow-side-panel i:nth-of-type(2) {
  width: 76%;
  animation-delay: 220ms;
}

.workflow-side-panel i:nth-of-type(3) {
  width: 58%;
  animation-delay: 440ms;
}

.side-left {
  left: 48px;
  top: 154px;
}

.side-right {
  right: 48px;
  bottom: 112px;
}

.demo-status {
  width: min(820px, calc(100% - 48px));
  margin: 18px auto 0;
  padding: 13px 16px;
  border: 1px solid rgba(159, 237, 159, 0.28);
  border-radius: 6px;
  background: rgba(159, 237, 159, 0.08);
  color: #dcffdf;
  font-size: 14px;
  text-align: center;
}

.workflow-top {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  padding: 0 38px;
  border-bottom: 1px solid #2c2c27;
  color: #d6d4cc;
  font-size: 12px;
}

.workflow-top div {
  display: flex;
  gap: 10px;
}

.workflow-top button {
  min-width: 70px;
  height: 22px;
  border: 1px solid #3a3a35;
  border-radius: 4px;
  background: #141411;
  color: #f6f3eb;
  font-size: 10px;
  cursor: pointer;
}

.workflow-top button:first-child {
  background: #f6f3eb;
  color: #111;
}

.workflow-kpi-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid rgba(246, 243, 235, 0.11);
  background: rgba(246, 243, 235, 0.09);
}

.workflow-kpi-strip article {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 16px 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(159, 237, 159, 0.13), transparent 34%),
    rgba(8, 10, 8, 0.84);
}

.workflow-kpi-strip article::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(159, 237, 159, 0.82), transparent);
  transform-origin: left center;
  animation: kpi-line 3.8s ease-in-out infinite;
}

.workflow-kpi-strip article:nth-child(2)::after {
  animation-delay: 180ms;
}

.workflow-kpi-strip article:nth-child(3)::after {
  animation-delay: 360ms;
}

.workflow-kpi-strip article:nth-child(4)::after {
  animation-delay: 540ms;
}

.workflow-kpi-strip span {
  color: #8d8d86;
  font-size: 12px;
}

.workflow-kpi-strip strong {
  color: #f8fff8;
  font-size: 28px;
  line-height: 1;
}

.workflow-kpi-strip em {
  color: #637267;
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
}

.workflow-path {
  position: absolute;
  inset: 38px 0 0;
  z-index: 2;
  pointer-events: none;
}

.path-line {
  position: absolute;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(159, 237, 159, 0.68), transparent);
  box-shadow: 0 0 22px rgba(159, 237, 159, 0.38);
  transform-origin: top center;
}

.path-1 {
  top: 164px;
  height: 66px;
  margin-left: -34px;
  transform: rotate(28deg);
}

.path-2 {
  top: 260px;
  height: 64px;
  margin-left: -10px;
  transform: rotate(-18deg);
}

.path-3 {
  top: 362px;
  height: 60px;
  margin-left: -36px;
  transform: rotate(22deg);
}

.data-pulse {
  position: absolute;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9fed9f;
  box-shadow: 0 0 0 6px rgba(159, 237, 159, 0.1), 0 0 22px rgba(159, 237, 159, 0.86);
  opacity: 0;
}

.pulse-1 {
  top: 188px;
  margin-left: -10px;
  animation: data-packet-1 3.6s ease-in-out infinite;
}

.pulse-2 {
  top: 284px;
  margin-left: -42px;
  animation: data-packet-2 3.6s 0.7s ease-in-out infinite;
}

.pulse-3 {
  top: 390px;
  margin-left: -14px;
  animation: data-packet-3 3.6s 1.4s ease-in-out infinite;
}

.workflow-node {
  position: absolute;
  left: 50%;
  display: grid;
  gap: 8px;
  width: 300px;
  min-height: 84px;
  padding: 15px 20px;
  border: 1px solid #34342f;
  border-radius: 6px;
  background:
    radial-gradient(circle at 82% 14%, rgba(159, 237, 159, 0.12), transparent 25%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.07), transparent 32%),
    rgba(17, 19, 16, 0.94);
  transform: translateX(-50%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.46), 0 0 34px rgba(159, 237, 159, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  animation: node-lift 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both, node-breathe 3.8s ease-in-out infinite;
  z-index: 3;
}

.workflow-node::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(159, 237, 159, 0.55), transparent);
  opacity: 0;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  animation: node-border-scan 4s ease-in-out infinite;
}

.workflow-node::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 14px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(159, 237, 159, 0.88), rgba(140, 240, 210, 0.18), transparent);
  transform-origin: left center;
  animation: node-progress 3.6s ease-in-out infinite;
}

.node-orbit {
  position: absolute;
  top: 17px;
  right: 60px;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(159, 237, 159, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(159, 237, 159, 0.25);
}

.node-orbit::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9fed9f;
  box-shadow: 0 0 12px #9fed9f;
  animation: orbit-dot 1.8s linear infinite;
}

.workflow-node strong {
  color: #fff;
  font-size: 16px;
}

.workflow-node span {
  color: #8d8d86;
  font-size: 13px;
}

.workflow-node small {
  display: block;
  margin-top: 2px;
  color: #5f7467;
  font-size: 11px;
  font-weight: 700;
}

.workflow-node em {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #9fed9f;
  font-size: 11px;
  font-style: normal;
}

.node-1 { top: 128px; animation-delay: 520ms; }
.node-2 { top: 232px; margin-left: -108px; animation-delay: 700ms; }
.node-3 { top: 336px; margin-left: 38px; animation-delay: 880ms; }
.node-4 { top: 444px; margin-left: -98px; animation-delay: 1060ms; }

.home-proof-section,
.home-capability-section {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  border-top: 1px solid #1f1f1b;
}

.home-proof-section {
  padding: 116px 0 92px;
  text-align: center;
}

.home-market-warning {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 52px;
  width: min(1180px, calc(100% - 48px));
  margin: -18px auto 0;
  padding: 72px 0 86px;
  border-top: 1px solid #1f1f1b;
  border-bottom: 1px solid #1f1f1b;
}

.home-market-warning::before {
  content: "";
  position: absolute;
  inset: 32px -28px;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(159, 237, 159, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(159, 237, 159, 0.04), transparent 42%);
  opacity: 0.9;
}

.market-warning-copy {
  align-self: center;
}

.market-warning-copy span {
  color: #9fed9f;
  font-size: 12px;
  font-weight: 800;
}

.market-warning-copy h2 {
  max-width: 560px;
  margin: 18px 0 0;
  color: #f8f7f2;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.market-warning-copy p {
  max-width: 620px;
  margin: 26px 0 0;
  color: #b8b5aa;
  font-size: 17px;
  line-height: 1.72;
}

.market-share-panel {
  display: grid;
  gap: 1px;
  align-self: stretch;
  min-height: 360px;
  border: 1px solid #2a2a25;
  background: #2a2a25;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45), 0 0 80px rgba(159, 237, 159, 0.06);
}

.market-share-panel article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 22px;
  align-content: center;
  min-height: 108px;
  padding: 26px 32px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(159, 237, 159, 0.08), transparent var(--share-end, 42%)),
    #080908;
}

.market-share-panel article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--share-width, 20%);
  background: linear-gradient(90deg, rgba(159, 237, 159, 0.18), rgba(159, 237, 159, 0.02));
}

.market-share-panel article:nth-child(1) {
  --share-width: 70%;
  --share-end: 80%;
}

.market-share-panel article:nth-child(2) {
  --share-width: 20%;
  --share-end: 46%;
}

.market-share-panel article:nth-child(3) {
  --share-width: 10%;
  --share-end: 36%;
}

.market-share-panel span,
.market-share-panel em,
.market-share-panel strong {
  position: relative;
  z-index: 1;
}

.market-share-panel span {
  color: #f4f2ea;
  font-size: 15px;
  font-weight: 800;
}

.market-share-panel strong {
  grid-row: span 2;
  align-self: center;
  color: #f8f7f2;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.9;
}

.market-share-panel em {
  color: #85837c;
  font-size: 13px;
  font-style: normal;
}

.market-share-panel .share-winner strong {
  color: #9fed9f;
  text-shadow: 0 0 32px rgba(159, 237, 159, 0.24);
}

#root.home-motion-ready .home-proof-section,
#root.home-motion-ready .home-market-warning,
#root.home-motion-ready .home-industry-grid article,
#root.home-motion-ready .home-proof-copy,
#root.home-motion-ready .home-proof-stats div,
#root.home-motion-ready .home-capability-head,
#root.home-motion-ready .home-capability-row {
  opacity: 1;
  transform: none;
}

#root.home-motion-ready .home-proof-section.is-visible,
#root.home-motion-ready .home-market-warning.is-visible,
#root.home-motion-ready .home-industry-grid article.is-visible,
#root.home-motion-ready .home-proof-copy.is-visible,
#root.home-motion-ready .home-proof-stats div.is-visible,
#root.home-motion-ready .home-capability-head.is-visible,
#root.home-motion-ready .home-capability-row.is-visible {
  animation: scroll-rise 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--motion-index, 0) * 54ms);
}

.home-proof-section > p {
  margin: 0 0 32px;
  color: #8d8d86;
  font-size: 13px;
}

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

.home-industry-grid article {
  position: relative;
  display: grid;
  min-height: 214px;
  align-content: start;
  gap: 14px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(246, 243, 235, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(159, 237, 159, 0.08), transparent 34%),
    rgba(7, 8, 7, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 22px 58px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.home-industry-grid article::before {
  content: "→";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(159, 237, 159, 0.26);
  border-radius: 50%;
  color: #caffcf;
  font-size: 15px;
  box-shadow: 0 0 22px rgba(159, 237, 159, 0.13);
}

.home-industry-grid article::after {
  content: "";
  position: absolute;
  inset: auto -20% -44% 12%;
  height: 110px;
  background: radial-gradient(circle, rgba(159, 237, 159, 0.18), transparent 62%);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-industry-grid article:hover::after {
  opacity: 1;
  transform: translateY(-8px);
}

.home-industry-grid span {
  color: #87857e;
  font-size: 12px;
  line-height: 1.5;
}

.home-industry-grid strong {
  color: #f2f0e8;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 700;
}

.home-industry-grid p {
  margin: 0;
  color: #b7b4ab;
  font-size: 14px;
  line-height: 1.75;
}

.home-proof-copy {
  max-width: 1060px;
  margin: 92px auto 0;
}

.home-proof-copy h2 {
  max-width: 900px;
  margin: 0;
  margin-inline: auto;
  color: #f8f7f2;
  font-size: clamp(30px, 3.05vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: pretty;
}

.home-proof-copy p {
  max-width: 560px;
  margin: 22px auto 0;
  color: #9d9b93;
  font-size: 16px;
  line-height: 1.65;
}

.home-proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  border: 1px solid #1f1f1b;
  background: #1f1f1b;
}

.home-proof-stats div {
  display: grid;
  gap: 10px;
  min-height: 138px;
  align-content: center;
  background: #0b0b09;
}

.home-proof-stats strong {
  color: #f8f7f2;
  font-size: 42px;
  line-height: 1;
}

.home-proof-stats span {
  color: #85837c;
  font-size: 13px;
}

.home-capability-section {
  padding: 96px 0 124px;
}

.home-capability-head {
  max-width: 1040px;
  margin: 0 auto 52px;
  text-align: center;
}

.home-capability-head span,
.home-capability-copy span {
  color: #8d8d86;
  font-size: 13px;
}

.home-capability-head h2 {
  max-width: 1080px;
  margin: 14px auto 0;
  color: #f8f7f2;
  font-size: clamp(38px, 4.05vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: pretty;
}

.home-capability-head p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #a5a39b;
  font-size: 17px;
  line-height: 1.72;
  text-wrap: pretty;
}

.home-capability-stack {
  display: grid;
  border: 1px solid #1f1f1b;
}

.home-capability-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(620px, 1.52fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: center;
  min-height: 520px;
  padding: clamp(28px, 4vw, 54px) clamp(32px, 5vw, 72px);
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 243, 235, 0.08);
  background:
    radial-gradient(circle at 84% 48%, rgba(159, 237, 159, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.025), transparent 46%),
    #080907;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.home-capability-row:hover {
  border-color: rgba(246, 243, 235, 0.2);
  background: #0d0d0b;
}

.home-capability-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(159, 237, 159, 0.1) 50%, transparent 58%),
    radial-gradient(circle at 78% 50%, rgba(121, 166, 255, 0.06), transparent 30%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity 260ms ease, transform 760ms cubic-bezier(0.32, 0.72, 0, 1);
}

.home-capability-row:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

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

.home-capability-row:last-child {
  border-bottom: 0;
}

.home-capability-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.home-capability-copy strong {
  display: block;
  max-width: 460px;
  margin-top: 12px;
  color: #f8f7f2;
  font-size: clamp(24px, 2.15vw, 32px);
  line-height: 1.12;
  white-space: nowrap;
  text-wrap: nowrap;
}

.home-capability-copy p {
  max-width: 340px;
  margin: 14px 0 22px;
  color: #8d8d86;
  font-size: 14px;
  line-height: 1.68;
  text-wrap: pretty;
}

.home-capability-copy em {
  justify-self: start;
  padding: 8px 12px;
  border: 1px solid #2f2f2a;
  border-radius: 4px;
  color: #f8f7f2;
  font-size: 12px;
  font-style: normal;
}

.home-product-shot {
  min-height: 420px;
  padding: clamp(24px, 4vw, 48px);
  border-left: 1px dashed #2c2c27;
  background:
    radial-gradient(circle at 72% 22%, rgba(246, 243, 235, 0.08), transparent 26%),
    transparent;
  transform: translateY(10px);
  transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease;
}

.home-capability-row.is-visible .home-product-shot {
  transform: translateY(0);
}

.demo-prompt,
.demo-score,
.demo-agent,
.demo-traffic {
  position: relative;
  width: min(100%, 720px);
  min-height: 330px;
  margin-left: auto;
}

.demo-prompt::before,
.demo-score::before,
.demo-traffic::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(246, 243, 235, 0.055);
  border-radius: 6px;
  box-shadow: inset 0 0 34px rgba(159, 237, 159, 0.025);
}

.demo-prompt::after,
.demo-score::after,
.demo-agent::after,
.demo-traffic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(159, 237, 159, 0.08) 50%, transparent 58%),
    radial-gradient(circle at 12% 16%, rgba(159, 237, 159, 0.12), transparent 22%);
  opacity: 0.42;
  transform: translateX(-18%);
  animation: panel-sweep 8s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.demo-prompt,
.demo-score {
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(159, 237, 159, 0.13);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 42%, rgba(159, 237, 159, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.035), transparent),
    rgba(9, 10, 8, 0.82);
  box-shadow: inset 0 0 46px rgba(159, 237, 159, 0.045);
}

.demo-score {
  min-height: 340px;
  padding-top: 22px;
}

.demo-holo-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(159, 237, 159, 0.08) 1px, transparent 1px) 0 0 / 92px 100%,
    linear-gradient(rgba(159, 237, 159, 0.06) 1px, transparent 1px) 0 0 / 100% 64px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 74%);
}

.demo-pill {
  position: relative;
  z-index: 2;
  width: fit-content;
  min-width: 300px;
  margin: 0 auto 22px;
  padding: 8px 18px;
  border-radius: 4px;
  background: #deddd8;
  color: #4f4f49;
  font-size: 14px;
  text-align: center;
}

.demo-score .demo-pill {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  min-width: 0;
  width: min(100%, 360px);
  margin: 0 auto;
  border: 1px solid rgba(159, 237, 159, 0.2);
  background: rgba(11, 14, 10, 0.92);
  color: #e8f7e7;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 28px rgba(159, 237, 159, 0.08);
}

.demo-control {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  width: min(100%, 500px);
  margin: 0 auto 14px;
  padding: 18px;
  border: 1px solid #383832;
  border-radius: 10px;
  background: rgba(15, 15, 13, 0.86);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.demo-control span,
.demo-bars span {
  width: fit-content;
  padding: 5px 10px;
  border-radius: 3px;
  background: #deddd8;
  color: #55554f;
  font-size: 12px;
}

.demo-control b {
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(159, 237, 159, 0.84), rgba(159, 237, 159, 0.12), transparent),
    #181816;
  animation: prompt-search 2.8s ease-in-out infinite;
}

.demo-control button {
  height: 28px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  background: #f4f2ec;
  color: #1b1b18;
  font-size: 12px;
  cursor: pointer;
}

.demo-bars {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
  width: min(100%, 520px);
  margin: 0 auto;
}

.demo-bars p {
  display: grid;
  grid-template-columns: 94px 1fr 68px;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.demo-bars i {
  position: relative;
  overflow: hidden;
  height: 28px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(159, 237, 159, 0.68), rgba(140, 240, 210, 0.24) var(--bar, 70%), rgba(255, 255, 255, 0.03) var(--bar, 70%)),
    #151513;
  box-shadow: inset 0 0 16px rgba(159, 237, 159, 0.08);
}

.demo-bars i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
  animation: metric-shine 2.7s ease-in-out infinite;
}

.demo-bars strong {
  color: #d9d7cf;
  font-size: 13px;
  text-align: right;
}

.demo-bars .bar-1 { --bar: 55%; }
.demo-bars .bar-2 { --bar: 100%; }
.demo-bars .bar-3 { --bar: 64%; }
.demo-bars .bar-4 { --bar: 42%; }

.prompt-radar {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  opacity: 0.86;
}

.prompt-radar i {
  position: absolute;
  border: 1px solid rgba(159, 237, 159, 0.16);
  border-radius: 50%;
}

.prompt-radar i:nth-child(1) {
  width: 160px;
  height: 160px;
  animation: core-rotate 14s linear infinite;
}

.prompt-radar i:nth-child(2) {
  width: 108px;
  height: 108px;
  animation: core-rotate-reverse 9s linear infinite;
}

.prompt-radar i:nth-child(3) {
  width: 54px;
  height: 54px;
  background: radial-gradient(circle, rgba(159, 237, 159, 0.22), transparent 68%);
  animation: core-pulse 2.5s ease-in-out infinite;
}

.prompt-radar strong {
  color: #eaffea;
  font-size: 34px;
  line-height: 1;
}

.prompt-radar span {
  margin-top: 44px;
  color: #8d8d86;
  font-size: 11px;
}

.score-row {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  min-height: auto;
}

.score-row article {
  position: relative;
  display: grid;
  align-content: center;
  gap: 4px;
  min-width: 96px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(159, 237, 159, 0.12);
  border-radius: 6px;
  background: rgba(17, 19, 16, 0.78);
  color: #d7ded3;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), inset 0 0 22px rgba(159, 237, 159, 0.035);
}

.score-row article:nth-child(even) {
  color: #f4f2ec;
  background: rgba(246, 243, 235, 0.08);
}

.score-row strong {
  color: inherit;
  font-size: 24px;
}

.score-row em {
  color: #2ecb80;
  font-size: 13px;
  font-style: normal;
}

.score-radar {
  position: absolute;
  inset: 78px 0 auto;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 170px;
  pointer-events: none;
}

.score-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(159, 237, 159, 0.15);
}

.score-ring-1 {
  width: 188px;
  height: 188px;
  background: conic-gradient(from 20deg, transparent, rgba(159, 237, 159, 0.28), transparent 34%, transparent);
  mask: radial-gradient(circle, transparent 0 67%, #000 68% 70%, transparent 71%);
  animation: core-rotate 13s linear infinite;
}

.score-ring-2 {
  width: 132px;
  height: 132px;
  background: repeating-conic-gradient(rgba(159, 237, 159, 0.2) 0 6deg, transparent 6deg 18deg);
  mask: radial-gradient(circle, transparent 0 58%, #000 59% 62%, transparent 63%);
  animation: core-rotate-reverse 9s linear infinite;
}

.score-ring-3 {
  width: 76px;
  height: 76px;
  background: radial-gradient(circle, rgba(159, 237, 159, 0.2), transparent 70%);
  animation: core-pulse 2.6s ease-in-out infinite;
}

.score-sweep {
  position: absolute;
  width: 198px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 237, 159, 0.74), transparent);
  animation: core-rotate 4.8s linear infinite;
}

.score-radar strong {
  color: #f4fff4;
  font-size: 38px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(159, 237, 159, 0.28);
}

.score-radar em {
  margin-top: 46px;
  color: #8d8d86;
  font-size: 12px;
  font-style: normal;
}

.demo-agent {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 58px;
  align-content: center;
  padding: 28px;
  border: 1px solid #383832;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(159, 237, 159, 0.1), transparent 34%),
    rgba(9, 10, 8, 0.76);
}

.demo-agent > * {
  position: relative;
  z-index: 2;
}

.demo-agent .agent-route {
  z-index: 1;
}

.demo-agent::before {
  content: "";
  position: absolute;
  inset: 50% 42px auto;
  height: 1px;
  background: #21a76f;
}

.agent-route {
  position: absolute;
  inset: 28px;
  pointer-events: none;
}

.agent-route i {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(159, 237, 159, 0.65), transparent);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.28);
}

.agent-route i:nth-child(1) {
  left: 26%;
  right: 26%;
  top: 50%;
  height: 1px;
}

.agent-route i:nth-child(2) {
  left: 50%;
  top: 14%;
  bottom: 14%;
  width: 1px;
}

.agent-route i:nth-child(3) {
  left: 20%;
  right: 20%;
  top: 50%;
  height: 1px;
  transform: rotate(24deg);
  transform-origin: center;
  opacity: 0.55;
}

.agent-node {
  position: relative;
  z-index: 1;
  min-height: 70px;
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid #34342f;
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.045), transparent 36%),
    #151512;
  color: #f6f3eb;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.agent-node span {
  color: #75d79c;
  font-size: 11px;
}

.agent-node strong {
  font-size: 17px;
}

.agent-node small {
  color: #85857d;
  font-size: 11px;
  font-weight: 600;
}

.agent-node.active {
  border-color: rgba(46, 203, 128, 0.55);
}

.demo-traffic {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(159, 237, 159, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 28% 34%, rgba(159, 237, 159, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.04), transparent),
    rgba(7, 8, 7, 0.88);
  box-shadow: inset 0 0 54px rgba(159, 237, 159, 0.035);
}

.traffic-chart {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: end;
  gap: 16px;
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 42%, rgba(159, 237, 159, 0.11), transparent 36%),
    linear-gradient(rgba(159, 237, 159, 0.07) 1px, transparent 1px) 0 0 / 100% 52px,
    linear-gradient(90deg, rgba(159, 237, 159, 0.04) 1px, transparent 1px) 0 0 / 58px 100%,
    #0d0f0c;
  box-shadow: inset 0 0 30px rgba(159, 237, 159, 0.05);
}

.traffic-chart i {
  position: relative;
  z-index: 3;
  flex: 1;
  max-width: 34px;
  border: 1px solid rgba(246, 243, 235, 0.22);
  border-radius: 5px 5px 2px 2px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(226, 255, 228, 0.72) 42%, rgba(103, 219, 145, 0.46)),
    #f4f2ec;
  box-shadow:
    0 0 18px rgba(159, 237, 159, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transform-origin: bottom;
  animation: bar-grow 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.traffic-chart i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-130%);
  animation: metric-shine 3.4s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.traffic-chart i:nth-of-type(1) { height: 34%; animation-delay: 80ms; }
.traffic-chart i:nth-of-type(2) { height: 52%; animation-delay: 140ms; }
.traffic-chart i:nth-of-type(3) { height: 70%; animation-delay: 210ms; }
.traffic-chart i:nth-of-type(4) { height: 62%; animation-delay: 280ms; }
.traffic-chart i:nth-of-type(5) { height: 78%; animation-delay: 350ms; }
.traffic-chart i:nth-of-type(6) { height: 92%; animation-delay: 420ms; }

.traffic-scan {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent, rgba(159, 237, 159, 0.2), transparent),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateY(-100%);
  animation: traffic-scan 4.6s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.traffic-orbit {
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.traffic-orbit span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(159, 237, 159, 0.13);
}

.traffic-orbit span:nth-child(1) {
  width: 210px;
  height: 210px;
  background: conic-gradient(from 10deg, transparent, rgba(159, 237, 159, 0.22), transparent 28%);
  mask: radial-gradient(circle, transparent 0 68%, #000 69% 71%, transparent 72%);
  animation: core-rotate 16s linear infinite;
}

.traffic-orbit span:nth-child(2) {
  width: 140px;
  height: 140px;
  animation: core-rotate-reverse 11s linear infinite;
}

.traffic-orbit span:nth-child(3) {
  width: 62px;
  height: 62px;
  background: radial-gradient(circle, rgba(159, 237, 159, 0.18), transparent 70%);
  animation: core-pulse 2.7s cubic-bezier(0.32, 0.72, 0, 1) infinite;
}

.traffic-axis {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 12px;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  color: rgba(246, 243, 235, 0.45);
  font-size: 10px;
}

.traffic-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  align-content: center;
}

.traffic-list p {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 7px;
  margin: 0;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  border-radius: 7px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.055), transparent 38%),
    rgba(14, 16, 13, 0.86);
  box-shadow: inset 0 0 20px rgba(159, 237, 159, 0.035);
}

.traffic-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 2px;
  border-radius: 999px;
  background: #9fed9f;
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.44);
}

.traffic-list span {
  color: #9c9c94;
  font-size: 12px;
}

.traffic-list strong {
  color: #f8fff4;
  font-size: 34px;
  line-height: 1;
  text-shadow: 0 0 22px rgba(159, 237, 159, 0.2);
}

.traffic-list em {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(159, 237, 159, 0.09);
  color: #9fed9f;
  font-size: 11px;
  font-style: normal;
}

@keyframes home-rise {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes page-hex-sheen {
  from {
    --body-sheen: -34vw;
  }
  to {
    --body-sheen: 134vw;
  }
}

@keyframes index-alert-sweep {
  0%, 34%, 100% {
    transform: translateX(-58%);
    opacity: 0.22;
  }
  50% {
    opacity: 0.9;
  }
  72% {
    transform: translateX(58%);
    opacity: 0.26;
  }
}

@keyframes alert-dot {
  0%, 100% {
    transform: scale(0.82);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes panel-lift {
  from {
    transform: translateY(24px) scale(0.985);
  }
  to {
    transform: translateY(0) scale(1);
  }
}

@keyframes node-lift {
  from {
    transform: translate(-50%, 18px) scale(0.98);
  }
  to {
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes workflow-sweep {
  from {
    background-position: -60% 0;
  }
  to {
    background-position: 160% 0;
  }
}

@keyframes workflow-scan {
  0%, 100% {
    transform: translateY(40px);
    opacity: 0.25;
  }
  50% {
    transform: translateY(500px);
    opacity: 0.72;
  }
}

@keyframes workflow-glow {
  0%, 100% {
    --glow-y: 18%;
    opacity: 0.42;
  }
  50% {
    --glow-y: 72%;
    opacity: 0.82;
  }
}

@keyframes core-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes core-rotate-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes core-pulse {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes beam-flare {
  0%, 100% {
    opacity: 0.22;
    filter: blur(0);
  }
  50% {
    opacity: 0.86;
    filter: blur(0.4px);
  }
}

@keyframes side-meter {
  0%, 100% {
    transform: scaleX(0.42);
    opacity: 0.38;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.92;
  }
}

@keyframes data-packet-1 {
  0%, 18% {
    transform: translate(0, -54px) scale(0.7);
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  78%, 100% {
    transform: translate(-92px, 38px) scale(1);
    opacity: 0;
  }
}

@keyframes data-packet-2 {
  0%, 18% {
    transform: translate(-70px, -50px) scale(0.7);
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  78%, 100% {
    transform: translate(18px, 42px) scale(1);
    opacity: 0;
  }
}

@keyframes data-packet-3 {
  0%, 18% {
    transform: translate(12px, -50px) scale(0.7);
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  78%, 100% {
    transform: translate(-88px, 36px) scale(1);
    opacity: 0;
  }
}

@keyframes panel-sweep {
  0%, 36%, 100% {
    opacity: 0.18;
    transform: translateX(-54%);
  }
  48%, 64% {
    opacity: 0.44;
  }
  82% {
    opacity: 0.18;
    transform: translateX(54%);
  }
}

@keyframes panel-sheen {
  0%, 34%, 100% {
    opacity: 0.24;
    transform: translateX(-28%);
  }
  48%, 62% {
    opacity: 0.52;
  }
  82% {
    opacity: 0.22;
    transform: translateX(28%);
  }
}

@keyframes traffic-scan {
  0%, 22%, 100% {
    opacity: 0;
    transform: translateY(-100%);
  }
  34% {
    opacity: 0.55;
  }
  72% {
    opacity: 0.18;
    transform: translateY(100%);
  }
}

@keyframes kpi-line {
  0%, 100% {
    transform: scaleX(0.28);
    opacity: 0.36;
  }
  50% {
    transform: scaleX(1);
    opacity: 0.92;
  }
}

@keyframes node-breathe {
  0%, 100% {
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(255, 255, 255, 0.018);
  }
  50% {
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.44), 0 0 28px rgba(159, 237, 159, 0.06), inset 0 0 0 1px rgba(159, 237, 159, 0.055);
  }
}

@keyframes node-border-scan {
  0%, 42%, 100% {
    opacity: 0;
  }
  52%, 72% {
    opacity: 0.62;
  }
}

@keyframes node-progress {
  0%, 100% {
    transform: scaleX(0.28);
    opacity: 0.42;
  }
  52% {
    transform: scaleX(1);
    opacity: 0.95;
  }
}

@keyframes orbit-dot {
  from {
    transform: rotate(0deg) translateY(9px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateY(9px) rotate(-360deg);
  }
}

@keyframes scroll-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bar-grow {
  from {
    transform: scaleY(0.18);
    opacity: 0.55;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes report-scroll {
  0%,
  7% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -50%, 0);
  }
}

@keyframes report-scan {
  from {
    transform: translateY(-180%);
    opacity: 0;
  }
  18% {
    opacity: 0.42;
  }
  to {
    transform: translateY(860%);
    opacity: 0;
  }
}

@keyframes report-progress {
  0%,
  12% {
    transform: scaleX(0.08);
    opacity: 0.45;
  }
  92% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.08);
    opacity: 0.45;
  }
}

@keyframes report-progress-y {
  0% {
    background-size: 100% 14%, 100% 100%;
    background-position: 0 0, 0 0;
  }
  100% {
    background-size: 100% 38%, 100% 100%;
    background-position: 0 100%, 0 0;
  }
}

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

@keyframes radar-pulse {
  0%,
  100% {
    transform: scale(0.68);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

@keyframes industry-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes premium-card-breathe {
  0%, 100% {
    box-shadow: var(--card-soft-glow), var(--glass-edge);
  }
  50% {
    box-shadow: 0 32px 96px rgba(0, 0, 0, 0.44), 0 0 82px rgba(159, 237, 159, 0.085), var(--glass-edge);
  }
}

@keyframes card-line-scan {
  0%, 36%, 100% {
    opacity: 0;
    transform: translateX(-64%);
  }
  48%, 72% {
    opacity: 0.5;
  }
  88% {
    opacity: 0;
    transform: translateX(64%);
  }
}

.collection-card,
.collection-feature-card,
.collection-scenario-strip article,
.product-flow-grid article,
.special-module-strip article,
.special-workflow article,
.home-industry-grid article,
.home-capability-row,
.pricing-card,
.pricing-value-strip div,
.pricing-onboarding,
.pricing-onboarding-steps article,
.capability-grid article,
.solution-steps article,
.solution-command-panel,
.solution-summary-band p,
.report-radar-grid article,
.cluster-grid article,
.model-list article,
.action-list article,
.visit-attribution-grid article,
.index-score-grid article,
.index-insight-grid article,
.index-faq-strip article,
.reports-console,
.reports-score-card,
.reports-type-grid article,
.reports-workflow-grid article,
.case-story article,
.case-stats,
.case-proof-strip article,
.case-timeline article,
.case-proof-matrix article,
.article-summary-card,
.article-cockpit,
.article-evidence-panel,
.article-action-grid article,
.article-insight-list article,
.trust-card-strip article,
.trust-status,
.trust-workflow article,
.contact-cards article {
  position: relative;
  border-color: var(--card-border);
  background-color: var(--card-bg);
  box-shadow: var(--card-soft-glow), var(--glass-edge);
  isolation: isolate;
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.collection-card::after,
.collection-feature-card::after,
.collection-scenario-strip article::after,
.product-flow-grid article::after,
.special-module-strip article::after,
.special-workflow article::after,
.home-industry-grid article::after,
.home-capability-row::after,
.pricing-card::after,
.pricing-value-strip div::after,
.pricing-onboarding::after,
.pricing-onboarding-steps article::after,
.capability-grid article::after,
.solution-steps article::after,
.solution-command-panel::after,
.solution-summary-band p::after,
.report-radar-grid article::after,
.cluster-grid article::after,
.model-list article::after,
.action-list article::after,
.visit-attribution-grid article::after,
.index-score-grid article::after,
.index-insight-grid article::after,
.index-faq-strip article::after,
.reports-console::after,
.reports-score-card::after,
.reports-type-grid article::after,
.reports-workflow-grid article::after,
.case-story article::after,
.case-stats::after,
.case-proof-strip article::after,
.case-timeline article::after,
.case-proof-matrix article::after,
.article-summary-card::after,
.article-cockpit::after,
.article-evidence-panel::after,
.article-action-grid article::after,
.article-insight-list article::after,
.trust-card-strip article::after,
.trust-status::after,
.trust-workflow article::after,
.contact-cards article::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(184, 255, 190, 0.095), transparent 34%),
    radial-gradient(circle at 12% 96%, rgba(246, 243, 235, 0.055), transparent 32%);
  opacity: 0.86;
}

.collection-card::before,
.collection-feature-card::before,
.collection-scenario-strip article::before,
.product-flow-grid article::before,
.special-module-strip article::before,
.special-workflow article::before,
.home-capability-row::before,
.pricing-card::before,
.pricing-value-strip div::before,
.pricing-onboarding::before,
.pricing-onboarding-steps article::before,
.capability-grid article::before,
.solution-steps article::before,
.solution-command-panel::before,
.solution-summary-band p::before,
.report-radar-grid article::before,
.cluster-grid article::before,
.model-list article::before,
.action-list article::before,
.visit-attribution-grid article::before,
.index-score-grid article::before,
.index-insight-grid article::before,
.index-faq-strip article::before,
.reports-console::before,
.reports-score-card::before,
.reports-type-grid article::before,
.reports-workflow-grid article::before,
.case-story article::before,
.case-stats::before,
.case-proof-strip article::before,
.case-timeline article::before,
.case-proof-matrix article::before,
.article-summary-card::before,
.article-cockpit::before,
.article-evidence-panel::before,
.article-action-grid article::before,
.article-insight-list article::before,
.trust-card-strip article::before,
.trust-status::before,
.trust-workflow article::before,
.contact-cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--card-sheen);
  opacity: 0;
  transform: translateX(-62%);
  transition: opacity 240ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.collection-card > *,
.collection-feature-card > *,
.collection-scenario-strip article > *,
.product-flow-grid article > *,
.special-module-strip article > *,
.special-workflow article > *,
.home-industry-grid article > *,
.home-capability-row > *,
.pricing-card > *,
.pricing-value-strip div > *,
.pricing-onboarding > *,
.pricing-onboarding-steps article > *,
.capability-grid article > *,
.solution-steps article > *,
.solution-command-panel > *,
.solution-summary-band p > *,
.report-radar-grid article > *,
.cluster-grid article > *,
.model-list article > *,
.action-list article > *,
.visit-attribution-grid article > *,
.index-score-grid article > *,
.index-insight-grid article > *,
.index-faq-strip article > *,
.reports-console > *,
.reports-score-card > *,
.reports-type-grid article > *,
.reports-workflow-grid article > *,
.case-story article > *,
.case-stats > *,
.case-proof-strip article > *,
.case-timeline article > *,
.case-proof-matrix article > *,
.article-summary-card > *,
.article-cockpit > *,
.article-evidence-panel > *,
.article-action-grid article > *,
.article-insight-list article > *,
.trust-card-strip article > *,
.trust-status > *,
.trust-workflow article > *,
.contact-cards article > * {
  position: relative;
  z-index: 1;
}

.collection-card:hover,
.collection-feature-card:hover,
.collection-scenario-strip article:hover,
.product-flow-grid article:hover,
.special-module-strip article:hover,
.special-workflow article:hover,
.home-industry-grid article:hover,
.home-capability-row:hover,
.pricing-card:hover,
.pricing-value-strip div:hover,
.pricing-onboarding-steps article:hover,
.capability-grid article:hover,
.solution-steps article:hover,
.solution-summary-band p:hover,
.report-radar-grid article:hover,
.cluster-grid article:hover,
.model-list article:hover,
.action-list article:hover,
.visit-attribution-grid article:hover,
.index-score-grid article:hover,
.index-insight-grid article:hover,
.index-faq-strip article:hover,
.reports-type-grid article:hover,
.reports-workflow-grid article:hover,
.case-story article:hover,
.case-proof-strip article:hover,
.case-timeline article:hover,
.case-proof-matrix article:hover,
.article-summary-card:hover,
.article-evidence-panel:hover,
.article-action-grid article:hover,
.article-insight-list article:hover,
.trust-card-strip article:hover,
.trust-workflow article:hover,
.contact-cards article:hover {
  border-color: var(--card-border-hot);
  background-color: var(--card-bg-2);
  transform: translateY(-4px);
  box-shadow: var(--card-hot-glow), var(--glass-edge);
}

.collection-card:hover::before,
.collection-feature-card:hover::before,
.collection-scenario-strip article:hover::before,
.product-flow-grid article:hover::before,
.special-module-strip article:hover::before,
.special-workflow article:hover::before,
.home-capability-row:hover::before,
.pricing-card:hover::before,
.pricing-value-strip div:hover::before,
.pricing-onboarding-steps article:hover::before,
.capability-grid article:hover::before,
.solution-steps article:hover::before,
.solution-summary-band p:hover::before,
.report-radar-grid article:hover::before,
.cluster-grid article:hover::before,
.model-list article:hover::before,
.action-list article:hover::before,
.visit-attribution-grid article:hover::before,
.index-score-grid article:hover::before,
.index-insight-grid article:hover::before,
.index-faq-strip article:hover::before,
.reports-type-grid article:hover::before,
.reports-workflow-grid article:hover::before,
.case-story article:hover::before,
.case-proof-strip article:hover::before,
.case-timeline article:hover::before,
.case-proof-matrix article:hover::before,
.article-summary-card:hover::before,
.article-evidence-panel:hover::before,
.article-action-grid article:hover::before,
.article-insight-list article:hover::before,
.trust-card-strip article:hover::before,
.trust-workflow article:hover::before,
.contact-cards article:hover::before {
  opacity: 1;
  transform: translateX(52%);
}

.pricing-card.featured,
.reports-console,
.article-cockpit,
.trust-console,
.solution-command-panel,
.index-report-preview,
.case-stats {
  animation: premium-card-breathe 7.5s ease-in-out infinite;
}

/* Final cockpit polish: sharper tactile states without changing layout. */
.button,
.nav-link,
.menu-button,
.nav-menu-card,
.nav-feature-link,
.index-bar,
.collection-card,
.collection-feature-card,
.pricing-card,
.capability-grid article,
.product-flow-grid article,
.reports-type-grid article,
.reports-workflow-grid article,
.case-story article,
.article-action-grid article,
.trust-card-strip article,
.contact-cards article {
  will-change: transform, box-shadow, border-color;
}

.button,
.nav-feature-link,
.geo-mini-button,
.geo-toolbar button,
.geo-topbar-actions button,
.geo-action-grid button,
.geo-evidence-grid button {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 16px 36px rgba(0, 0, 0, 0.28);
}

.button:hover,
.nav-feature-link:hover,
.geo-mini-button:hover,
.geo-toolbar button:hover,
.geo-topbar-actions button:hover,
.geo-action-grid button:hover,
.geo-evidence-grid button:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.03);
}

.button:active,
.nav-feature-link:active,
.geo-mini-button:active,
.geo-toolbar button:active,
.geo-topbar-actions button:active,
.geo-action-grid button:active,
.geo-evidence-grid button:active {
  transform: translateY(0) scale(0.985);
}

.nav-link:focus-visible,
.menu-button:focus-visible,
.button:focus-visible,
.nav-feature-link:focus-visible,
.collection-card:focus-visible,
.collection-feature-card:focus-visible,
.pricing-card a:focus-visible,
.geo-nav button:focus-visible,
.geo-toolbar button:focus-visible,
.geo-panel button:focus-visible,
.geo-field input:focus-visible,
.geo-field select:focus-visible,
.geo-field textarea:focus-visible {
  outline: 2px solid rgba(184, 255, 190, 0.86);
  outline-offset: 4px;
  box-shadow:
    0 0 0 6px rgba(184, 255, 190, 0.12),
    var(--card-hot-glow, 0 24px 70px rgba(87, 220, 122, 0.16));
}

.solution-command-panel,
.reports-console,
.article-cockpit,
.trust-console,
.index-report-preview,
.case-stats,
.insight-panel,
.hero-visual-panel,
.cn-preview-frame {
  background-blend-mode: screen, normal, normal, normal;
  border-color: rgba(184, 255, 190, 0.24) !important;
}

.solution-command-panel:hover,
.reports-console:hover,
.article-cockpit:hover,
.trust-console:hover,
.index-report-preview:hover,
.case-stats:hover,
.insight-panel:hover,
.hero-visual-panel:hover,
.cn-preview-frame:hover {
  box-shadow:
    0 0 0 1px rgba(184, 255, 190, 0.18),
    0 28px 90px rgba(92, 255, 142, 0.18),
    0 28px 80px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.collection-card strong,
.collection-feature-card strong,
.pricing-card h2,
.capability-grid strong,
.product-flow-grid strong,
.reports-type-grid strong,
.reports-workflow-grid strong,
.case-story strong,
.article-action-grid strong,
.trust-card-strip strong,
.contact-cards strong {
  text-wrap: balance;
}

/* Absolute final hero safety guard: keep copy and animated visuals in separate reading zones. */
@media (max-width: 1500px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    gap: clamp(28px, 4vw, 52px) !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero {
    width: min(100% - 48px, 1040px) !important;
    padding-top: clamp(52px, 6vw, 78px) !important;
    padding-bottom: clamp(48px, 5vw, 68px) !important;
  }

  .page-hero-shell,
  .pricing-hero {
    width: min(100% - 48px, 1040px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head {
    width: 100% !important;
    max-width: 900px !important;
    margin-right: auto !important;
    padding-right: 0 !important;
    z-index: 8 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    max-width: 900px !important;
    font-size: clamp(42px, 5vw, 68px) !important;
    line-height: 1.08 !important;
    text-wrap: balance !important;
    overflow-wrap: anywhere !important;
    z-index: 9 !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .pricing-head p {
    max-width: 720px !important;
    z-index: 9 !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .article-evidence-panel,
  .event-hero aside,
  .legal-cockpit,
  .legal-review-panel,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .special-visual,
  .page-visual-frame,
  .hero-visual-panel,
  .cn-preview-frame {
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    justify-self: start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    transform: none !important;
    z-index: 1 !important;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    font-size: clamp(34px, 10.4vw, 44px) !important;
  }
}

/* root397-motion-governor-eof */
:root { --motion-fast: 160ms; --motion-base: 260ms; --motion-enter: 420ms; --motion-ease: cubic-bezier(0.22, 0.72, 0.2, 1); }
body :is(button, .button, a.button, [role="button"], summary) { transition: transform var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) ease, background var(--motion-base) ease, color var(--motion-fast) ease, box-shadow var(--motion-base) ease !important; }
body *, body *::before, body *::after { animation-iteration-count: 1 !important; }
body :is([aria-busy="true"], [class*="loading"], [class*="spinner"], [class*="skeleton"]) *, body :is([class*="loading"], [class*="spinner"], [class*="skeleton"]), body :is([class*="loading"], [class*="spinner"], [class*="skeleton"])::before, body :is([class*="loading"], [class*="spinner"], [class*="skeleton"])::after { animation-iteration-count: infinite !important; }
/* root397-button-palette-final: keep public interactions in the same quiet dark system. */
body .demo-control button,
body .pricing-toggle .selected {
  border: 1px solid rgba(184, 255, 190, 0.3) !important;
  background: #151b16 !important;
  color: #f6f3eb !important;
  box-shadow: inset 3px 0 0 rgba(184, 255, 190, 0.78), 0 8px 20px rgba(0, 0, 0, 0.18) !important;
}
body .demo-control button:hover,
body .pricing-toggle .selected:hover {
  background: #1c2a1f !important;
  border-color: rgba(184, 255, 190, 0.58) !important;
}
body :is(button, .button, a[role="button"]) {
  background: #151b16 !important;
  background-image: none !important;
  border-color: rgba(184, 255, 190, 0.3) !important;
  color: #f6f3eb !important;
}
body :is(button, .button, a[role="button"]):hover {
  background: #1c2a1f !important;
  border-color: rgba(184, 255, 190, 0.58) !important;
  color: #ffffff !important;
}
@media (prefers-reduced-motion: reduce) { body *, body *::before, body *::after { animation: none !important; transition-duration: 0.01ms !important; } }

/* root397-motion-governor: one calm motion system for every public route. */
:root { --motion-fast: 160ms; --motion-base: 260ms; --motion-enter: 420ms; --motion-ease: cubic-bezier(0.22, 0.72, 0.2, 1); }
body :is(button, .button, a.button, [role="button"], summary) { transition: transform var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) ease, background var(--motion-base) ease, color var(--motion-fast) ease, box-shadow var(--motion-base) ease !important; }
body *, body *::before, body *::after { animation-iteration-count: 1 !important; }
body :is([aria-busy="true"], [class*="loading"], [class*="spinner"], [class*="skeleton"]) *,
body :is([class*="loading"], [class*="spinner"], [class*="skeleton"]),
body :is([class*="loading"], [class*="spinner"], [class*="skeleton"])::before,
body :is([class*="loading"], [class*="spinner"], [class*="skeleton"])::after { animation-iteration-count: infinite !important; }
@media (prefers-reduced-motion: reduce) {
  body *, body *::before, body *::after { animation: none !important; transition-duration: 0.01ms !important; }
}

/* root383-desktop-cockpit-color-lock: desktop pages should feel like one
   black-green command cabin, not a mix of yellow, cyan, orange and purple. */
@media (min-width: 761px) {
  :root {
    --accent: #f6f3eb;
    --accent-2: #b8ffbe;
    --accent-glow: rgba(184, 255, 190, 0.14);
    --warn: #c7b77a;
    --bad: #d9a2a2;
    --card-border-hot: rgba(184, 255, 190, 0.32);
    --card-hot-glow: 0 32px 110px rgba(0, 0, 0, 0.52), 0 0 72px rgba(184, 255, 190, 0.11);
  }

  html {
    background:
      radial-gradient(circle at var(--pointer-x, 62%) var(--pointer-y, 18%), rgba(184, 255, 190, 0.088), transparent 19rem),
      radial-gradient(circle at calc(var(--pointer-x, 62%) - 7%) calc(var(--pointer-y, 18%) + 3%), rgba(246, 243, 235, 0.06) 0 0.2rem, transparent 0.3rem),
      radial-gradient(circle at calc(var(--pointer-x, 62%) + 6%) calc(var(--pointer-y, 18%) + 6%), rgba(184, 255, 190, 0.15) 0 0.22rem, transparent 0.32rem),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='88' viewBox='0 0 152 88'%3E%3Cg fill='none' stroke='%232d3328' stroke-opacity='.62' stroke-width='1'%3E%3Cpath d='M38 1 76 22v44L38 87 0 66V22zM114 1l38 21v44l-38 21-38-21V22z'/%3E%3Cpath d='M76 22 38 1M76 66 38 87M76 22l38-21M76 66l38 21' stroke-opacity='.32'/%3E%3C/g%3E%3C/svg%3E") 50% 4px / 152px 88px,
      var(--bg) !important;
  }

  body::before {
    background:
      linear-gradient(96deg, transparent 0 36%, rgba(246, 243, 235, 0.09) 48%, rgba(184, 255, 190, 0.12) 52%, transparent 64% 100%) var(--body-sheen, -28vw) 0 / 34vw 100% no-repeat,
      radial-gradient(circle at var(--pointer-x, 62%) var(--pointer-y, 18%), rgba(246, 243, 235, 0.12), transparent 8rem),
      radial-gradient(circle at calc(var(--pointer-x, 62%) + 5%) calc(var(--pointer-y, 18%) + 5%), rgba(184, 255, 190, 0.12), transparent 11rem) !important;
  }

  .root-shell-loading__copy span,
  .collection-scenario-strip span,
  .product-flow-section aside span,
  .product-flow-grid span,
  .special-copy > span,
  .special-work-section aside > span,
  .special-related span,
  .capability-grid span,
  .solution-steps span,
  .case-story span,
  .case-proof-strip span,
  .case-timeline-section aside > span,
  .case-timeline span,
  .case-proof-matrix span,
  .article-summary-card span,
  .article-action-grid span,
  .reports-copy > span,
  .reports-section-head span,
  .reports-type-grid span,
  .reports-workflow-grid span,
  .index-industry-strip span,
  .index-score-section span,
  .index-insight-section aside > span,
  .index-faq-strip span,
  .cluster-grid span,
  .model-list span,
  .action-list span,
  .report-radar-grid span {
    color: #b8ffbe !important;
    -webkit-text-fill-color: #b8ffbe !important;
  }

  .root-shell-loading__button.primary,
  .button-dark,
  .button-light,
  .pricing-card.featured,
  .reports-console,
  .article-cockpit,
  .trust-console,
  .solution-command-panel,
  .index-report-preview,
  .case-stats,
  .source-bars b,
  .reports-source-mix b {
    border-color: rgba(184, 255, 190, 0.26) !important;
    background:
      radial-gradient(circle at 18% 16%, rgba(184, 255, 190, 0.09), transparent 9rem),
      linear-gradient(135deg, rgba(8, 25, 13, 0.98), rgba(4, 12, 6, 0.98)) !important;
    color: #f7f6f1 !important;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42), 0 0 34px rgba(184, 255, 190, 0.09) !important;
  }

  .source-bars span i,
  .source-bars span i.social,
  .source-bars span i.owned,
  .workflow-beam,
  .workflow-pulse,
  .workflow-orbit,
  .workflow-ring,
  .workflow-scan,
  .scan-line,
  .meter-fill,
  .progress-fill,
  [class*="progress"] i,
  [class*="meter"] i {
    background: linear-gradient(90deg, rgba(184, 255, 190, 0.72), rgba(184, 255, 190, 0.16)) !important;
    box-shadow: 0 0 18px rgba(184, 255, 190, 0.16) !important;
  }

  .workflow-node,
  .workflow-dot,
  .scanner-dot,
  .radar-dot,
  .orbit-dot {
    border-color: rgba(184, 255, 190, 0.28) !important;
    background: rgba(184, 255, 190, 0.13) !important;
    color: #eaffee !important;
    box-shadow: 0 0 18px rgba(184, 255, 190, 0.16) !important;
  }

  svg [stroke]:not([stroke="none"]) {
    stroke: rgba(184, 255, 190, 0.68) !important;
  }

  svg [fill]:not([fill="none"]) {
    fill: rgba(184, 255, 190, 0.16) !important;
  }

  svg stop {
    stop-color: #b8ffbe !important;
  }
}

@media (max-width: 900px) {
  .pricing-compare {
    display: grid !important;
    gap: 12px !important;
    border: 0 !important;
    background: transparent !important;
    overflow: visible !important;
  }

  .pricing-compare::after {
    content: none !important;
  }

  .compare-row,
  .compare-plans {
    display: grid !important;
    grid-template-columns: 1fr !important;
    min-width: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border: 1px solid rgba(246, 243, 235, 0.12) !important;
    border-radius: 8px !important;
    background: #0b0b0a !important;
  }

  .compare-row > * + * {
    border-left: 0 !important;
    border-top: 1px dashed rgba(246, 243, 235, 0.1) !important;
  }

  .compare-plans {
    align-items: stretch !important;
  }

  .compare-feature,
  .compare-plan,
  .compare-value {
    min-width: 0 !important;
    padding: 14px !important;
  }

  .compare-feature {
    background: rgba(246, 243, 235, 0.04) !important;
    color: #f8f7f2 !important;
    font-weight: 750 !important;
  }

  .compare-plan strong {
    justify-content: space-between !important;
    font-size: 16px !important;
  }

  .compare-plan .button {
    justify-self: stretch !important;
    width: 100% !important;
  }

  .compare-section {
    min-height: 0 !important;
    margin-top: 12px !important;
    overflow: hidden !important;
    border: 1px solid rgba(246, 243, 235, 0.12) !important;
    border-radius: 8px !important;
  }
}

/* 2026063001 root header fix: never show desktop and mobile CTAs together. */
@media (min-width: 1181px) {
  .mobile-nav-actions {
    display: none !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto !important;
    width: min(100% - 32px, 1080px) !important;
    gap: 14px !important;
  }

  .site-header .brand {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .site-header .brand > span:last-child {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .site-header > .nav {
    display: none !important;
  }

  .site-header > .header-actions {
    display: none !important;
  }

  .site-header > .menu-button {
    display: inline-grid !important;
    place-items: center !important;
  }

  .site-header > .nav.nav-open {
    grid-column: 1 / -1 !important;
    display: grid !important;
    gap: 10px !important;
    justify-content: stretch !important;
    width: 100% !important;
    padding: 12px 0 18px !important;
  }

  .site-header .mobile-nav-actions {
    display: grid !important;
    gap: 10px !important;
  }

  .site-header .mobile-nav-actions .button {
    width: 100% !important;
  }
}

/* 2026062905 cockpit motion polish: sharper copy, denser light mechanics, stronger premium surfaces. */
.workflow-board,
.insight-panel,
.collection-workbench,
.cn-preview-frame,
.demo-prompt,
.demo-score,
.demo-agent,
.demo-traffic {
  border-color: rgba(184, 255, 190, 0.2);
  background-blend-mode: screen, normal, normal;
  box-shadow:
    0 30px 96px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(246, 243, 235, 0.035),
    0 0 68px rgba(159, 237, 159, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 74px rgba(159, 237, 159, 0.055);
}

.workflow-board {
  background:
    radial-gradient(circle at var(--workflow-x, 54%) var(--workflow-y, 42%), rgba(255, 255, 255, 0.22), transparent 8rem),
    radial-gradient(circle at calc(var(--workflow-x, 54%) + 8%) calc(var(--workflow-y, 42%) + 6%), rgba(255, 215, 76, 0.28) 0 0.25rem, transparent 0.4rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 18%, transparent 70%, rgba(159, 237, 159, 0.045)),
    radial-gradient(circle at 50% 50%, rgba(159, 237, 159, 0.24), transparent 31%),
    radial-gradient(circle at 17% 45%, rgba(70, 255, 194, 0.14), transparent 26%),
    radial-gradient(circle at 86% 56%, rgba(145, 176, 255, 0.12), transparent 28%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='152' height='88' viewBox='0 0 152 88'%3E%3Cg fill='none' stroke='%23414a37' stroke-opacity='.74' stroke-width='1.2'%3E%3Cpath d='M38 1 76 22v44L38 87 0 66V22zM114 1l38 21v44l-38 21-38-21V22z'/%3E%3Cpath d='M76 22 38 1M76 66 38 87M76 22l38-21M76 66l38 21' stroke-opacity='.28'/%3E%3C/g%3E%3C/svg%3E") 50% 0 / 152px 88px,
    #0c0d0b;
}

.workflow-board::before {
  background:
    linear-gradient(102deg, transparent, rgba(246, 243, 235, 0.26), rgba(184, 255, 190, 0.2), transparent) 0 0 / 38% 100% no-repeat,
    radial-gradient(circle at var(--workflow-x, 54%) var(--workflow-y, 42%), rgba(246, 243, 235, 0.28), transparent 7.5rem);
  animation-duration: 4.6s;
}

.workflow-board::after,
.insight-panel::after,
.collection-workbench::after,
.cn-preview-frame::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.11), transparent 24%, transparent 72%, rgba(184, 255, 190, 0.08)),
    radial-gradient(circle at 78% 0%, rgba(184, 255, 190, 0.12), transparent 30%);
  opacity: 0.68;
  mix-blend-mode: screen;
}

.workflow-top {
  height: 42px;
  border-bottom-color: rgba(246, 243, 235, 0.12);
  background: rgba(4, 5, 4, 0.42);
}

.workflow-top > span,
.insight-top strong,
.collection-workbench-top strong,
.cn-preview-top strong {
  color: #f8fff4;
  text-shadow: 0 0 24px rgba(159, 237, 159, 0.16);
}

.workflow-top button,
.demo-control button {
  transition:
    transform 520ms cubic-bezier(0.32, 0.72, 0, 1),
    border-color 520ms cubic-bezier(0.32, 0.72, 0, 1),
    background 520ms cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 520ms cubic-bezier(0.32, 0.72, 0, 1);
}

.workflow-top button:hover,
.demo-control button:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 255, 190, 0.34);
  box-shadow: 0 12px 28px rgba(159, 237, 159, 0.12);
}

.workflow-core strong {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 34%),
    rgba(5, 12, 8, 0.88);
  border-color: rgba(184, 255, 190, 0.42);
  box-shadow:
    0 0 54px rgba(159, 237, 159, 0.48),
    0 0 0 6px rgba(159, 237, 159, 0.04),
    inset 0 0 34px rgba(159, 237, 159, 0.2);
}

.workflow-side-panel,
.workflow-node,
.workflow-kpi-strip article,
.insight-metrics div,
.collection-workbench-metrics div,
.cn-preview-body section,
.score-row article,
.agent-node {
  border-color: rgba(184, 255, 190, 0.16);
  background:
    radial-gradient(circle at 86% 12%, rgba(184, 255, 190, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 34%),
    rgba(10, 13, 10, 0.9);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 28px rgba(159, 237, 159, 0.04);
}

.workflow-node:hover,
.workflow-kpi-strip article:hover,
.insight-metrics div:hover,
.collection-workbench-metrics div:hover,
.cn-preview-body section:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 255, 190, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(159, 237, 159, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.workflow-node,
.workflow-kpi-strip article,
.insight-metrics div,
.collection-workbench-metrics div,
.cn-preview-body section {
  transition:
    transform 620ms cubic-bezier(0.32, 0.72, 0, 1),
    border-color 620ms cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 620ms cubic-bezier(0.32, 0.72, 0, 1);
}

.demo-holo-grid {
  background:
    linear-gradient(90deg, rgba(184, 255, 190, 0.09) 1px, transparent 1px) 0 0 / 78px 100%,
    linear-gradient(rgba(184, 255, 190, 0.065) 1px, transparent 1px) 0 0 / 100% 54px,
    radial-gradient(circle at 50% 42%, rgba(184, 255, 190, 0.1), transparent 42%);
  animation: holo-drift 9s cubic-bezier(0.32, 0.72, 0, 1) infinite alternate;
}

.prompt-radar,
.score-radar,
.traffic-orbit {
  filter: drop-shadow(0 0 28px rgba(159, 237, 159, 0.2));
}

.prompt-radar strong,
.score-radar strong {
  color: #f7fff5;
  text-shadow: 0 0 28px rgba(184, 255, 190, 0.26);
}

.insight-chart,
.cn-preview-chart,
.collection-signal {
  border-color: rgba(184, 255, 190, 0.14);
  background:
    linear-gradient(rgba(184, 255, 190, 0.06) 1px, transparent 1px) 0 0 / 100% 36px,
    linear-gradient(90deg, rgba(184, 255, 190, 0.04) 1px, transparent 1px) 0 0 / 48px 100%,
    rgba(5, 7, 5, 0.7);
}

.insight-list p,
.collection-workbench-list p,
.cn-preview-list p {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), transparent), rgba(10, 12, 10, 0.62);
  transition:
    transform 560ms cubic-bezier(0.32, 0.72, 0, 1),
    background 560ms cubic-bezier(0.32, 0.72, 0, 1);
}

.insight-list p:hover,
.collection-workbench-list p:hover,
.cn-preview-list p:hover {
  transform: translateX(3px);
  background: linear-gradient(90deg, rgba(184, 255, 190, 0.08), transparent), rgba(10, 12, 10, 0.72);
}

@keyframes holo-drift {
  from {
    transform: translate3d(-10px, -6px, 0);
    opacity: 0.58;
  }
  to {
    transform: translate3d(10px, 8px, 0);
    opacity: 0.86;
  }
}

@media (prefers-reduced-motion: reduce) {
  .demo-holo-grid,
  .workflow-board::before,
  .workflow-scan,
  .workflow-grid-glow,
  .workflow-node,
  .workflow-kpi-strip article::after,
  .prompt-radar i,
  .score-ring,
  .traffic-orbit span {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* 2026062829 absolute last desktop lane guard. */
@media (min-width: 1121px) and (max-width: 1720px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 0.56fr) minmax(360px, 0.44fr) !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: clamp(34px, 4vw, 58px) !important;
    width: min(100% - 64px, 1220px) !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero {
    padding-top: clamp(58px, 6vw, 86px) !important;
    padding-bottom: clamp(58px, 6vw, 86px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head {
    width: 100% !important;
    max-width: 620px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding-right: 0 !important;
    justify-self: start !important;
    position: relative !important;
    z-index: 4 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    width: 100% !important;
    max-width: 620px !important;
    font-size: clamp(38px, 3.45vw, 54px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    text-wrap: balance !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .pricing-head p {
    width: 100% !important;
    max-width: 560px !important;
    font-size: clamp(15px, 1.25vw, 17px) !important;
    line-height: 1.62 !important;
    text-wrap: pretty !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .article-evidence-panel,
  .event-hero aside,
  .legal-cockpit,
  .legal-review-panel,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .special-visual,
  .page-visual-frame,
  .hero-visual-panel,
  .cn-preview-frame,
  .contact-panel,
  .contact-signal-panel {
    width: min(100%, 500px) !important;
    max-width: 500px !important;
    justify-self: end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    transform: none !important;
    position: relative !important;
    z-index: 1 !important;
  }
}

/* 2026062829 true final visual lane guard: desktop keeps the cockpit on the right without covering copy. */
@media (min-width: 1121px) and (max-width: 1720px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 0.56fr) minmax(360px, 0.44fr) !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: clamp(34px, 4vw, 58px) !important;
    width: min(100% - 64px, 1220px) !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero {
    padding-top: clamp(58px, 6vw, 86px) !important;
    padding-bottom: clamp(58px, 6vw, 86px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head {
    width: 100% !important;
    max-width: 620px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding-right: 0 !important;
    justify-self: start !important;
    position: relative !important;
    z-index: 4 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    width: 100% !important;
    max-width: 620px !important;
    font-size: clamp(38px, 3.45vw, 54px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    text-wrap: balance !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .pricing-head p {
    width: 100% !important;
    max-width: 560px !important;
    font-size: clamp(15px, 1.25vw, 17px) !important;
    line-height: 1.62 !important;
    text-wrap: pretty !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .article-evidence-panel,
  .event-hero aside,
  .legal-cockpit,
  .legal-review-panel,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .special-visual,
  .page-visual-frame,
  .hero-visual-panel,
  .cn-preview-frame,
  .contact-panel,
  .contact-signal-panel {
    width: min(100%, 500px) !important;
    max-width: 500px !important;
    justify-self: end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    transform: none !important;
    position: relative !important;
    z-index: 1 !important;
  }
}

/* 2026062829 visual overlap correction: keep hero copy and cockpit visuals in separate lanes on desktop. */
@media (min-width: 1121px) and (max-width: 1720px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 0.56fr) minmax(360px, 0.44fr) !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: clamp(34px, 4vw, 58px) !important;
    width: min(100% - 64px, 1220px) !important;
    min-height: auto !important;
    overflow: hidden !important;
  }

  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero {
    padding-top: clamp(58px, 6vw, 86px) !important;
    padding-bottom: clamp(58px, 6vw, 86px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head {
    width: 100% !important;
    max-width: 620px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding-right: 0 !important;
    justify-self: start !important;
    position: relative !important;
    z-index: 4 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    width: 100% !important;
    max-width: 620px !important;
    font-size: clamp(38px, 3.45vw, 54px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    text-wrap: balance !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .pricing-head p {
    width: 100% !important;
    max-width: 560px !important;
    font-size: clamp(15px, 1.25vw, 17px) !important;
    line-height: 1.62 !important;
    text-wrap: pretty !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .article-evidence-panel,
  .event-hero aside,
  .legal-cockpit,
  .legal-review-panel,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .special-visual,
  .page-visual-frame,
  .hero-visual-panel,
  .cn-preview-frame,
  .contact-panel,
  .contact-signal-panel {
    width: min(100%, 500px) !important;
    max-width: 500px !important;
    justify-self: end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    transform: none !important;
    position: relative !important;
    z-index: 1 !important;
  }
}

/* 2026062827 final text-safety pass: visual cockpit cards stay outside the reading lane. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.special-hero,
.page-hero-shell,
.pricing-hero {
  isolation: isolate;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.special-copy,
.page-hero-copy,
.pricing-head {
  position: relative !important;
  z-index: 20 !important;
  min-width: 0 !important;
}

.collection-workbench,
.insight-panel,
.solution-command-panel,
.solution-metrics,
.case-stats,
.article-cockpit,
.article-evidence-panel,
.event-hero aside,
.legal-cockpit,
.legal-review-panel,
.trust-console,
.reports-console,
.special-cockpit,
.special-visual,
.page-visual-frame,
.hero-visual-panel,
.cn-preview-frame {
  position: relative !important;
  z-index: 2 !important;
}

@media (min-width: 1721px) {
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell {
    grid-template-columns: minmax(0, 0.52fr) minmax(420px, 0.48fr) !important;
    column-gap: clamp(72px, 6vw, 116px) !important;
  }

  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy {
    max-width: 700px !important;
  }

  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1 {
    max-width: 700px !important;
    text-wrap: balance !important;
  }
}

@media (max-width: 1720px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-flow: row !important;
    align-items: start !important;
    gap: clamp(28px, 4.4vw, 54px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head {
    grid-column: 1 !important;
    width: 100% !important;
    max-width: min(920px, 100%) !important;
    transform: none !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    width: 100% !important;
    max-width: min(920px, 100%) !important;
    font-size: clamp(40px, 4.8vw, 62px) !important;
    line-height: 1.08 !important;
    overflow: visible !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .article-evidence-panel,
  .event-hero aside,
  .legal-cockpit,
  .legal-review-panel,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .special-visual,
  .page-visual-frame,
  .hero-visual-panel,
  .cn-preview-frame {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    min-width: 0 !important;
    justify-self: start !important;
    margin: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    font-size: clamp(32px, 9.8vw, 42px) !important;
    line-height: 1.12 !important;
  }
}

/* 2026062828 mobile refinement: calmer rhythm, tighter cards, easier thumb actions. */
@media (max-width: 760px) {
  body {
    background-size: 160px 92px, 160px 92px, auto, auto, auto, auto, auto;
  }

  .site-header {
    width: min(100% - 32px, 520px);
    min-height: 82px;
    padding: 14px 0;
  }

  .brand {
    gap: 12px;
    font-size: 18px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .menu-button {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .home-hero,
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero,
  .contact-page {
    width: min(100% - 32px, 520px) !important;
    padding-top: clamp(28px, 8vw, 46px) !important;
    padding-bottom: clamp(34px, 9vw, 54px) !important;
    gap: 24px !important;
  }

  .home-copy h1,
  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1,
  .contact-copy h1,
  .index-landing h1 {
    max-width: 100% !important;
    margin-top: 18px !important;
    font-size: clamp(36px, 11.2vw, 47px) !important;
    line-height: 1.08 !important;
    text-wrap: balance !important;
  }

  .home-copy p,
  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .pricing-head p,
  .contact-copy p,
  .index-landing-copy > p {
    max-width: 100% !important;
    margin-top: 20px !important;
    font-size: 18px !important;
    line-height: 1.52 !important;
    color: #c8c8c1 !important;
  }

  .home-copy > span,
  .collection-hero > :first-child > span,
  .product-copy > span,
  .solution-hero > :first-child > span,
  .case-hero > :first-child > span,
  .article-hero-copy > span,
  .event-hero > :first-child > span,
  .reports-copy > span,
  .special-copy > span,
  .page-hero-copy > .section-label,
  .contact-copy span,
  .index-kicker {
    min-width: 0 !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #9fed9f !important;
    font-size: 14px !important;
    font-weight: 800 !important;
  }

  .page-hero-actions,
  .home-actions,
  .reports-actions,
  .trust-actions,
  .legal-actions,
  .pricing-actions,
  .contact-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px !important;
    width: 100%;
    margin-top: 24px !important;
  }

  .page-hero-actions .button,
  .home-actions .button,
  .reports-actions .button,
  .trust-actions .button,
  .legal-actions .button,
  .pricing-actions .button,
  .contact-actions a,
  .pricing-card .button {
    min-width: 0 !important;
    width: 100%;
    min-height: 52px !important;
    padding: 0 14px !important;
    border-radius: 7px !important;
    font-size: 15px !important;
    white-space: nowrap;
  }

  .home-actions .button,
  .reports-actions .button,
  .pricing-card .button {
    grid-column: auto !important;
  }

  .home-workflow-demo,
  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .article-evidence-panel,
  .event-hero aside,
  .legal-cockpit,
  .legal-review-panel,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .special-visual,
  .page-visual-frame,
  .hero-visual-panel,
  .cn-preview-frame,
  .index-report-preview,
  .report-hero-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 14px !important;
    border-radius: 8px !important;
  }

  .insight-panel,
  .reports-console,
  .article-cockpit,
  .legal-cockpit,
  .trust-console,
  .index-report-preview,
  .report-hero-card {
    padding: 16px !important;
  }

  .insight-metrics,
  .contact-signal-panel,
  .mini-stats,
  .reports-source-mix,
  .pricing-value-strip {
    grid-template-columns: 1fr !important;
  }

  .insight-metrics div,
  .contact-signal-panel div,
  .pricing-value-strip div {
    min-height: 78px !important;
    padding: 15px 16px !important;
  }

  .insight-metrics strong,
  .contact-signal-panel strong {
    font-size: 30px !important;
  }

  .insight-chart {
    min-height: 126px !important;
    padding: 18px !important;
  }

  .home-workflow-demo {
    padding: 0 !important;
  }

  .workflow-top {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 18px !important;
  }

  .workflow-top div {
    gap: 4px;
  }

  .workflow-top button {
    width: 100%;
    min-height: 44px;
  }

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

  .workflow-metrics article {
    min-height: 116px !important;
    padding: 18px !important;
  }

  .workflow-metrics strong {
    font-size: 36px !important;
  }

  .pricing-head {
    text-align: left !important;
  }

  .pricing-head > span {
    color: #9fed9f !important;
  }

  .pricing-toggle {
    width: 100% !important;
    max-width: 320px;
    margin: 22px 0 0 !important;
  }

  .pricing-notice {
    margin-top: 16px !important;
    font-size: 13px !important;
  }

  .pricing-grid {
    gap: 14px !important;
    margin-top: 28px !important;
  }

  .pricing-card {
    min-height: auto !important;
    padding: 22px 20px !important;
  }

  .pricing-card span {
    font-size: 20px !important;
  }

  .pricing-card strong {
    margin-top: 18px !important;
    font-size: 38px !important;
  }

  .pricing-card small {
    min-height: 0 !important;
    margin-top: 12px !important;
    font-size: 14px !important;
  }

  .pricing-card ul {
    gap: 10px !important;
    font-size: 13px !important;
  }

  .index-landing {
    width: min(100% - 32px, 520px) !important;
    padding-top: 34px !important;
  }

  .index-report-form label,
  .lead-form label {
    font-size: 12px !important;
  }

  .index-report-form input,
  .index-report-form select,
  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    min-height: 54px !important;
    font-size: 15px !important;
  }

  .index-report-form button,
  .lead-form button {
    min-height: 54px !important;
    border-radius: 7px !important;
  }

  .index-deep-list {
    margin-top: 22px !important;
  }

  .index-deep-list p {
    gap: 10px !important;
    font-size: 15px !important;
  }

  .reports-score-card,
  .article-cockpit-score,
  .event-cockpit-score,
  .legal-score,
  .trust-status {
    min-height: 168px !important;
    padding: 18px !important;
  }

  .reports-score-card strong,
  .article-cockpit-score strong,
  .legal-score strong,
  .trust-status strong,
  .report-hero-card > div:first-child strong {
    font-size: clamp(54px, 18vw, 72px) !important;
  }

  .reports-score-card i {
    width: 92px !important;
    height: 92px !important;
  }

  .article-meta-strip {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    width: 100% !important;
    margin-top: 24px !important;
  }

  .article-meta-strip span:last-child {
    grid-column: 1 / -1;
  }

  .article-body,
  .content-layout,
  .reports-type-section,
  .reports-workflow-section,
  .index-score-section,
  .index-insight-section,
  .product-flow-section,
  .capability-grid,
  .contact-cards,
  .collection-grid,
  .collection-scenario-strip {
    width: min(100% - 32px, 520px) !important;
  }

  .article-summary-card,
  .capability-grid article,
  .product-flow-grid article,
  .reports-type-grid article,
  .reports-workflow-grid article,
  .index-score-grid article,
  .index-insight-grid article,
  .contact-cards article,
  .collection-card,
  .collection-scenario-strip article {
    min-height: auto !important;
    padding: 20px !important;
    border-radius: 8px !important;
  }

  .reports-section-head h2,
  .product-flow-section h2,
  .index-section-head h2,
  .index-insight-section h2,
  .lead-form h2 {
    font-size: clamp(28px, 8.5vw, 34px) !important;
    line-height: 1.12 !important;
  }

  .lead-form {
    padding: 24px 20px !important;
  }

  .contact-signal-panel {
    margin-top: 26px !important;
  }

  .site-footer {
    padding-top: 46px !important;
  }
}

@media (max-width: 420px) {
  .index-bar {
    padding: 8px 12px !important;
  }

  .index-bar strong {
    font-size: 11px !important;
  }

  .index-bar span {
    font-size: 11px !important;
  }

  .home-copy h1,
  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1,
  .contact-copy h1,
  .index-landing h1 {
    font-size: clamp(35px, 10.8vw, 43px) !important;
  }

  .page-hero-actions,
  .home-actions,
  .reports-actions,
  .trust-actions,
  .legal-actions,
  .pricing-actions,
  .contact-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Delivery polish 2026062826: richer cockpit surfaces and steadier Chinese reading rhythm. */
.collection-card,
.collection-feature-card,
.product-flow-grid article,
.special-module-strip article,
.special-workflow article,
.home-capability-row,
.pricing-card,
.pricing-value-strip div,
.pricing-onboarding-steps article,
.capability-grid article,
.solution-steps article,
.solution-summary-band p,
.report-radar-grid article,
.cluster-grid article,
.model-list article,
.action-list article,
.visit-attribution-grid article,
.index-score-grid article,
.index-insight-grid article,
.index-faq-strip article,
.reports-type-grid article,
.reports-workflow-grid article,
.case-story article,
.case-proof-strip article,
.case-timeline article,
.case-proof-matrix article,
.article-summary-card,
.article-evidence-panel,
.article-action-grid article,
.article-insight-list article,
.trust-card-strip article,
.trust-workflow article,
.contact-cards article,
.insight-panel,
.solution-command-panel,
.reports-console,
.trust-console,
.article-cockpit,
.special-cockpit,
.legal-cockpit,
.event-hero aside,
.page-visual-frame,
.hero-visual-panel {
  border-color: rgba(246, 243, 235, 0.16) !important;
  background:
    linear-gradient(145deg, rgba(246, 243, 235, 0.07), transparent 33%),
    radial-gradient(circle at 84% 16%, rgba(184, 255, 190, 0.1), transparent 30%),
    rgba(13, 14, 12, 0.9) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018),
    0 34px 110px rgba(0, 0, 0, 0.42),
    0 0 78px rgba(159, 237, 159, 0.055) !important;
}

.collection-card:hover,
.collection-feature-card:hover,
.product-flow-grid article:hover,
.special-module-strip article:hover,
.special-workflow article:hover,
.home-capability-row:hover,
.pricing-card:hover,
.pricing-value-strip div:hover,
.pricing-onboarding-steps article:hover,
.capability-grid article:hover,
.solution-steps article:hover,
.report-radar-grid article:hover,
.cluster-grid article:hover,
.model-list article:hover,
.action-list article:hover,
.visit-attribution-grid article:hover,
.index-score-grid article:hover,
.index-insight-grid article:hover,
.index-faq-strip article:hover,
.reports-type-grid article:hover,
.reports-workflow-grid article:hover,
.case-story article:hover,
.case-proof-strip article:hover,
.case-timeline article:hover,
.case-proof-matrix article:hover,
.article-summary-card:hover,
.article-evidence-panel:hover,
.article-action-grid article:hover,
.article-insight-list article:hover,
.trust-card-strip article:hover,
.trust-workflow article:hover,
.contact-cards article:hover {
  border-color: rgba(184, 255, 190, 0.42) !important;
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 42px 130px rgba(0, 0, 0, 0.52),
    0 0 96px rgba(159, 237, 159, 0.12) !important;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

.collection-card h3,
.collection-feature-card h3,
.product-flow-grid h3,
.special-module-strip h3,
.special-workflow h3,
.home-capability-row h3,
.pricing-card h3,
.capability-grid h3,
.solution-steps h3,
.report-radar-grid h3,
.cluster-grid h3,
.model-list h3,
.action-list h3,
.visit-attribution-grid h3,
.index-score-grid h3,
.index-insight-grid h3,
.reports-type-grid h3,
.reports-workflow-grid h3,
.case-story h3,
.case-proof-strip h3,
.case-timeline h3,
.case-proof-matrix h3,
.article-summary-card h3,
.article-action-grid h3,
.article-insight-list h3,
.trust-card-strip h3,
.trust-workflow h3,
.contact-cards h3 {
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.button,
.button-dark,
.button-light,
.menu-button,
.pricing-modal-actions button,
.contact-form button,
.index-report-form button {
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

.button::before,
.button-dark::before,
.button-light::before,
.pricing-modal-actions button::before,
.contact-form button::before,
.index-report-form button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(112deg, transparent 0 35%, rgba(255, 255, 255, 0.22) 46%, rgba(184, 255, 190, 0.22) 52%, transparent 66% 100%);
  transform: translateX(-70%);
  transition: opacity 180ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover::before,
.button-dark:hover::before,
.button-light:hover::before,
.pricing-modal-actions button:hover::before,
.contact-form button:hover::before,
.index-report-form button:hover::before {
  opacity: 1;
  transform: translateX(70%);
}

.page-hero-copy h1,
.product-copy h1,
.collection-hero h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.special-copy h1,
.pricing-head h1 {
  letter-spacing: 0 !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

@media (min-width: 1721px) {
  .product-copy,
  .page-hero-copy,
  .article-hero-copy,
  .special-copy,
  .reports-copy,
  .trust-copy,
  .legal-copy {
    padding-right: clamp(24px, 3vw, 56px);
  }
}

/* Final readable-title guard: Chinese hero headings must wrap before touching cockpit visuals. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.special-hero,
.page-hero-shell,
.pricing-hero,
.contact-page {
  isolation: isolate !important;
  overflow: visible !important;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.special-copy,
.page-hero-copy,
.pricing-head,
.contact-copy {
  position: relative !important;
  z-index: 40 !important;
  min-width: 0 !important;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.special-copy h1,
.page-hero-copy h1,
.pricing-head h1,
.contact-copy h1 {
  position: relative !important;
  z-index: 41 !important;
  max-width: 100% !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
  line-break: loose !important;
  text-wrap: balance !important;
}

.collection-hero p,
.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.special-copy p,
.page-hero-copy p,
.pricing-head p,
.contact-copy p,
.page-hero-actions {
  position: relative !important;
  z-index: 41 !important;
}

.collection-workbench,
.insight-panel,
.solution-command-panel,
.solution-metrics,
.case-stats,
.article-cockpit,
.article-evidence-panel,
.event-hero aside,
.legal-cockpit,
.legal-review-panel,
.trust-console,
.reports-console,
.special-cockpit,
.special-visual,
.page-visual-frame,
.hero-visual-panel,
.cn-preview-frame,
.contact-panel,
.contact-signal-panel {
  position: relative !important;
  z-index: 1 !important;
  max-width: min(100%, 820px) !important;
  transform: none !important;
}

@media (min-width: 1721px) {
  .product-copy h1,
  .page-hero-copy h1,
  .special-copy h1,
  .reports-copy h1,
  .trust-copy h1,
  .legal-copy h1 {
    max-width: min(100%, 680px) !important;
    font-size: clamp(54px, 3.7vw, 68px) !important;
    line-height: 1.08 !important;
  }

  .product-copy,
  .page-hero-copy,
  .special-copy,
  .reports-copy,
  .trust-copy,
  .legal-copy {
    max-width: 700px !important;
  }

  .insight-panel,
  .page-visual-frame,
  .hero-visual-panel,
  .special-cockpit,
  .special-visual,
  .reports-console,
  .trust-console,
  .legal-cockpit {
    max-width: 520px !important;
  }
}

/* End-of-file hero safety guard: this stays last so no page-specific rule can place visuals over text again. */
@media (max-width: 1500px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    gap: clamp(28px, 4vw, 52px) !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero {
    width: min(100% - 48px, 1040px) !important;
    padding-top: clamp(52px, 6vw, 78px) !important;
    padding-bottom: clamp(48px, 5vw, 68px) !important;
  }

  .page-hero-shell,
  .pricing-hero {
    width: min(100% - 48px, 1040px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head {
    width: 100% !important;
    max-width: 900px !important;
    margin-right: auto !important;
    padding-right: 0 !important;
    z-index: 8 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    max-width: 900px !important;
    font-size: clamp(42px, 5vw, 68px) !important;
    line-height: 1.08 !important;
    text-wrap: balance !important;
    overflow-wrap: anywhere !important;
    z-index: 9 !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .pricing-head p {
    max-width: 720px !important;
    z-index: 9 !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .article-evidence-panel,
  .event-hero aside,
  .legal-cockpit,
  .legal-review-panel,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .special-visual,
  .page-visual-frame,
  .hero-visual-panel,
  .cn-preview-frame {
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    justify-self: start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    transform: none !important;
    z-index: 1 !important;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    font-size: clamp(34px, 10.4vw, 44px) !important;
  }
}

/* Final anti-overlap guard: keep animated hero visuals out of reading copy. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.special-hero,
.page-hero-shell,
.contact-page,
.pricing-hero {
  isolation: isolate !important;
  column-gap: clamp(44px, 6vw, 96px) !important;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.special-copy,
.page-hero-copy,
.pricing-head,
.contact-copy {
  position: relative !important;
  z-index: 10 !important;
  min-width: 0 !important;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.special-copy h1,
.page-hero-copy h1,
.pricing-head h1,
.contact-copy h1 {
  max-width: min(100%, 820px) !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  line-break: loose !important;
  text-wrap: balance !important;
}

.collection-hero p,
.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.special-copy p,
.page-hero-copy p,
.pricing-head p,
.contact-copy p {
  max-width: min(100%, 720px) !important;
  overflow-wrap: break-word !important;
}

.insight-panel,
.collection-workbench,
.solution-command-panel,
.solution-metrics,
.case-stats,
.article-cockpit,
.article-evidence-panel,
.event-hero aside,
.legal-cockpit,
.legal-review-panel,
.trust-console,
.reports-console,
.index-report-preview,
.special-visual,
.special-cockpit,
.page-visual-frame,
.hero-visual-panel,
.cn-preview-frame,
.contact-panel,
.contact-signal-panel {
  position: relative !important;
  z-index: 1 !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.contact-copy p {
  margin-bottom: 30px !important;
}

.contact-signal-panel {
  margin-top: 0 !important;
}

@media (max-width: 1560px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page,
  .pricing-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    justify-items: stretch !important;
    width: min(100% - 48px, 1120px) !important;
    max-width: 1120px !important;
    min-height: auto !important;
    gap: clamp(28px, 4vw, 46px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-top: clamp(56px, 7vw, 88px) !important;
    padding-bottom: clamp(54px, 7vw, 82px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head,
  .contact-copy {
    width: 100% !important;
    max-width: 980px !important;
    padding-right: 0 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1,
  .contact-copy h1 {
    max-width: min(100%, 980px) !important;
    font-size: clamp(42px, 5.2vw, 68px) !important;
    line-height: 1.08 !important;
  }

  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .article-evidence-panel,
  .event-hero aside,
  .legal-cockpit,
  .legal-review-panel,
  .trust-console,
  .reports-console,
  .index-report-preview,
  .special-visual,
  .special-cockpit,
  .page-visual-frame,
  .hero-visual-panel,
  .cn-preview-frame,
  .contact-panel,
  .contact-signal-panel {
    justify-self: stretch !important;
    width: min(100%, 920px) !important;
    max-width: 920px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .contact-page {
    gap: 34px !important;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page,
  .pricing-hero {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 24px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1,
  .contact-copy h1 {
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: 1.12 !important;
    text-wrap: pretty !important;
  }
}

/* Absolute final guard: keep every hero copy readable above animated panels. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.special-hero,
.page-hero-shell,
.contact-page,
.pricing-hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: clip !important;
  column-gap: clamp(36px, 6vw, 92px) !important;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.special-copy,
.page-hero-copy,
.pricing-head,
.contact-copy {
  position: relative !important;
  z-index: 40 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: min(100%, 980px) !important;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.special-copy h1,
.page-hero-copy h1,
.pricing-head h1,
.contact-copy h1 {
  max-width: 100% !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
  text-wrap: balance !important;
}

.collection-hero p,
.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.special-copy p,
.page-hero-copy p,
.pricing-head p,
.contact-copy p {
  max-width: min(100%, 760px) !important;
}

.insight-panel,
.collection-workbench,
.solution-command-panel,
.solution-metrics,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.index-report-preview,
.special-visual,
.special-cockpit,
.page-visual-frame,
.hero-visual-panel,
.contact-panel,
.contact-signal-panel {
  position: relative !important;
  z-index: 1 !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

@media (max-width: 1500px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page,
  .pricing-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: stretch !important;
    align-items: start !important;
    gap: clamp(24px, 4vw, 42px) !important;
    width: min(100% - 48px, 1120px) !important;
    max-width: 1120px !important;
    min-height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-top: clamp(56px, 7vw, 86px) !important;
    padding-bottom: clamp(52px, 7vw, 78px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head,
  .contact-copy {
    max-width: 980px !important;
    padding-right: 0 !important;
  }

  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .index-report-preview,
  .special-visual,
  .special-cockpit,
  .page-visual-frame,
  .hero-visual-panel,
  .contact-panel,
  .contact-signal-panel {
    width: 100% !important;
    max-width: min(100%, 980px) !important;
    margin: 0 !important;
  }
}

/* Final tactile polish: richer surfaces without changing page structure. */
:root {
  --lingxi-edge-glow: 0 0 0 1px rgba(184, 255, 190, 0.11), 0 26px 82px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.065);
  --lingxi-hover-glow: 0 0 0 1px rgba(184, 255, 190, 0.2), 0 34px 104px rgba(0, 0, 0, 0.38), 0 0 40px rgba(184, 255, 190, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.button,
.geo-toolbar button,
.geo-panel > button,
.geo-form-grid button,
.pricing-modal-actions button,
.pricing-card .button,
.contact-form button {
  position: relative;
  isolation: isolate;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease,
    color 180ms ease;
}

.button::after,
.geo-toolbar button::after,
.geo-panel > button::after,
.geo-form-grid button::after,
.pricing-modal-actions button::after,
.contact-form button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.16) 42%, transparent 58%),
    radial-gradient(circle at 78% 18%, rgba(184, 255, 190, 0.16), transparent 32%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 220ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover,
.geo-toolbar button:hover,
.geo-panel > button:hover,
.geo-form-grid button:hover,
.pricing-modal-actions button:hover,
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--lingxi-hover-glow);
}

.button:hover::after,
.geo-toolbar button:hover::after,
.geo-panel > button:hover::after,
.geo-form-grid button:hover::after,
.pricing-modal-actions button:hover::after,
.contact-form button:hover::after {
  opacity: 1;
  transform: translateX(18%);
}

.collection-card,
.collection-feature-card,
.collection-scenario-strip article,
.product-flow-grid article,
.special-module-strip article,
.special-workflow article,
.home-industry-grid article,
.home-capability-row,
.pricing-card,
.pricing-value-strip div,
.pricing-onboarding,
.pricing-onboarding-steps article,
.capability-grid article,
.solution-steps article,
.solution-command-panel,
.solution-summary-band p,
.report-radar-grid article,
.cluster-grid article,
.model-list article,
.action-list article,
.visit-attribution-grid article,
.index-score-grid article,
.index-insight-grid article,
.index-faq-strip article,
.reports-console,
.reports-score-card,
.reports-type-grid article,
.reports-workflow-grid article,
.case-story article,
.case-stats,
.case-proof-strip article,
.case-timeline article,
.case-proof-matrix article,
.article-summary-card,
.article-cockpit,
.article-evidence-panel,
.article-action-grid article,
.article-insight-list article,
.trust-card-strip article,
.trust-status,
.trust-workflow article,
.contact-cards article,
.geo-panel,
.geo-kpi,
.geo-activity,
.geo-brief,
.geo-command {
  box-shadow: var(--lingxi-edge-glow) !important;
}

.collection-card:hover,
.collection-feature-card:hover,
.collection-scenario-strip article:hover,
.product-flow-grid article:hover,
.special-module-strip article:hover,
.special-workflow article:hover,
.home-industry-grid article:hover,
.home-capability-row:hover,
.pricing-card:hover,
.pricing-value-strip div:hover,
.pricing-onboarding-steps article:hover,
.capability-grid article:hover,
.solution-steps article:hover,
.solution-summary-band p:hover,
.report-radar-grid article:hover,
.cluster-grid article:hover,
.model-list article:hover,
.action-list article:hover,
.visit-attribution-grid article:hover,
.index-score-grid article:hover,
.index-insight-grid article:hover,
.index-faq-strip article:hover,
.reports-type-grid article:hover,
.reports-workflow-grid article:hover,
.case-story article:hover,
.case-proof-strip article:hover,
.case-timeline article:hover,
.case-proof-matrix article:hover,
.article-summary-card:hover,
.article-evidence-panel:hover,
.article-action-grid article:hover,
.article-insight-list article:hover,
.trust-card-strip article:hover,
.trust-workflow article:hover,
.contact-cards article:hover,
.geo-panel:hover,
.geo-kpi:hover {
  box-shadow: var(--lingxi-hover-glow) !important;
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .geo-toolbar button,
  .geo-panel > button,
  .geo-form-grid button,
  .pricing-modal-actions button,
  .pricing-card .button,
  .contact-form button {
    transition: none;
  }
}

/* Final polish layer: sharpen cards, buttons, and cockpit surfaces without changing layout. */
.button-dark,
.button-light,
.ghost-link {
  backdrop-filter: blur(16px) saturate(1.12);
}

.button-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(226, 232, 218, 0.92));
  color: #080a07;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 18px 58px rgba(184, 255, 190, 0.16),
    0 10px 26px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.button-light,
.ghost-link {
  border-color: rgba(246, 243, 235, 0.18);
  background:
    linear-gradient(180deg, rgba(246, 243, 235, 0.072), rgba(246, 243, 235, 0.028));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 38px rgba(0, 0, 0, 0.22);
}

.button-dark:hover,
.button-light:hover,
.ghost-link:hover {
  filter: brightness(1.04) saturate(1.05);
  box-shadow:
    0 22px 72px rgba(184, 255, 190, 0.2),
    0 14px 38px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.collection-card,
.collection-feature-card,
.product-flow-grid article,
.home-industry-grid article,
.home-capability-row,
.pricing-card,
.capability-grid article,
.solution-steps article,
.report-radar-grid article,
.reports-type-grid article,
.reports-workflow-grid article,
.article-summary-card,
.article-evidence-panel,
.contact-cards article {
  border-image: linear-gradient(135deg, rgba(246, 243, 235, 0.22), rgba(184, 255, 190, 0.13), rgba(246, 243, 235, 0.04)) 1;
}

.insight-panel,
.collection-workbench,
.solution-command-panel,
.case-stats,
.article-cockpit,
.reports-console,
.index-report-preview,
.page-visual-frame,
.cn-preview-frame {
  background:
    linear-gradient(rgba(184, 255, 190, 0.045) 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(90deg, rgba(246, 243, 235, 0.035) 1px, transparent 1px) 0 0 / 46px 100%,
    radial-gradient(circle at 82% 12%, rgba(184, 255, 190, 0.14), transparent 31%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.065), rgba(246, 243, 235, 0.022) 52%, rgba(4, 6, 4, 0.88)),
    #090b09 !important;
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.48),
    0 0 82px rgba(184, 255, 190, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.085),
    inset 0 0 0 1px rgba(184, 255, 190, 0.07) !important;
}

.section-label,
.pricing-head > span,
.collection-hero > div > span,
.product-copy > span,
.special-copy > span,
.reports-copy > span {
  color: rgba(184, 255, 190, 0.82) !important;
  text-transform: none !important;
  letter-spacing: 0.08em !important;
}

.page-hero-meta span,
.content-status-grid p,
.content-insight-strip div,
.pricing-value-strip div {
  background:
    linear-gradient(180deg, rgba(246, 243, 235, 0.05), rgba(246, 243, 235, 0.018));
  border-color: rgba(184, 255, 190, 0.13) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

/* Delivery guard: hero copy and animated cockpit visuals must never collide. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.special-hero,
.page-hero-shell,
.contact-page,
.pricing-hero {
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.special-copy,
.page-hero-copy,
.pricing-head,
.contact-copy {
  position: relative !important;
  z-index: 30 !important;
  min-width: 0 !important;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.special-copy h1,
.page-hero-copy h1,
.pricing-head h1,
.contact-copy h1 {
  max-width: 100% !important;
  letter-spacing: 0 !important;
  line-height: 1.1 !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
  text-wrap: balance !important;
}

.collection-hero p,
.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.special-copy p,
.page-hero-copy p,
.pricing-head p,
.contact-copy p {
  position: relative !important;
  z-index: 31 !important;
  text-wrap: pretty !important;
}

.insight-panel,
.collection-workbench,
.solution-command-panel,
.solution-metrics,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.index-report-preview,
.special-visual,
.special-cockpit,
.page-visual-frame,
.hero-visual-panel,
.contact-panel,
.contact-signal-panel {
  position: relative !important;
  z-index: 1 !important;
  min-width: 0 !important;
  transform: none !important;
}

@media (max-width: 1700px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page,
  .pricing-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: stretch !important;
    align-items: start !important;
    width: min(100% - 48px, 1080px) !important;
    max-width: 1080px !important;
    min-height: auto !important;
    gap: clamp(26px, 4vw, 44px) !important;
    padding-top: clamp(58px, 7vw, 84px) !important;
    padding-bottom: clamp(52px, 7vw, 76px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head,
  .contact-copy {
    width: 100% !important;
    max-width: 980px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1,
  .contact-copy h1 {
    font-size: clamp(40px, 4.9vw, 64px) !important;
    max-width: 980px !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .pricing-head p,
  .contact-copy p {
    max-width: 820px !important;
  }

  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .index-report-preview,
  .special-visual,
  .special-cockpit,
  .page-visual-frame,
  .hero-visual-panel,
  .contact-panel,
  .contact-signal-panel {
    justify-self: start !important;
    align-self: start !important;
    width: min(100%, 820px) !important;
    max-width: min(100%, 820px) !important;
    margin: 0 !important;
  }
}

@media (min-width: 1701px) {
  .page-hero-shell,
  .product-hero {
    grid-template-columns: minmax(0, 620px) minmax(420px, 500px) !important;
    column-gap: clamp(56px, 5vw, 96px) !important;
  }

  .page-hero-copy,
  .product-copy {
    max-width: 620px !important;
  }

  .page-visual-frame,
  .insight-panel {
    max-width: 500px !important;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page,
  .pricing-hero {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 42px !important;
    padding-bottom: 46px !important;
    gap: 22px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1,
  .contact-copy h1 {
    font-size: clamp(32px, 9.5vw, 42px) !important;
    line-height: 1.14 !important;
    text-wrap: pretty !important;
  }
}

/* Final overlap guard: keep hero copy readable above every animated visual layer. */
.page-hero-shell,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.reports-hero,
.trust-hero,
.legal-hero,
.legal-page {
  isolation: isolate;
}

.page-hero-copy,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.reports-copy,
.trust-copy,
.legal-copy {
  position: relative !important;
  z-index: 30 !important;
  min-width: 0 !important;
  max-width: min(100%, 680px) !important;
}

.page-hero-copy h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.reports-copy h1,
.trust-copy h1,
.legal-copy h1 {
  max-width: min(100%, 660px) !important;
  white-space: normal !important;
  word-break: normal !important;
  line-break: loose !important;
  overflow-wrap: anywhere !important;
  text-wrap: pretty !important;
  position: relative !important;
  z-index: 31 !important;
}

.page-hero-copy p,
.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.reports-copy p,
.trust-copy p,
.legal-copy p,
.page-hero-actions,
.article-meta-strip {
  max-width: min(100%, 620px) !important;
  position: relative !important;
  z-index: 31 !important;
}

.page-visual-frame,
.hero-visual-panel,
.insight-panel,
.solution-command-panel,
.case-stats,
.article-cockpit,
.event-hero aside,
.reports-console,
.trust-console,
.legal-cockpit {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 1500px) {
  .page-hero-shell {
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.72fr) !important;
    gap: clamp(30px, 4.8vw, 64px) !important;
    align-items: center !important;
  }

  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .reports-hero,
  .trust-hero,
  .legal-hero,
  .legal-page {
    grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.72fr) !important;
    gap: clamp(30px, 5vw, 68px) !important;
  }

  .page-hero-copy,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .reports-copy,
  .trust-copy,
  .legal-copy {
    max-width: 610px !important;
  }

  .page-hero-copy h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .reports-copy h1,
  .trust-copy h1,
  .legal-copy h1 {
    max-width: 590px !important;
    font-size: clamp(40px, 4.45vw, 64px) !important;
    line-height: 1.06 !important;
  }
}

@media (max-width: 1179px) {
  .page-hero-shell,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .reports-hero,
  .trust-hero,
  .legal-hero,
  .legal-page {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    min-height: auto !important;
  }

  .page-hero-copy,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .reports-copy,
  .trust-copy,
  .legal-copy,
  .page-hero-copy h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .reports-copy h1,
  .trust-copy h1,
  .legal-copy h1 {
    max-width: 100% !important;
  }
}

/* Absolute last layout guard: secondary-page hero visuals must never cover copy. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.page-hero-shell {
  isolation: isolate;
  overflow: visible;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.page-hero-copy {
  position: relative;
  z-index: 20 !important;
  min-width: 0;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.page-hero-copy h1 {
  position: relative;
  z-index: 21 !important;
  max-width: 100%;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: loose;
  text-wrap: balance;
}

.collection-hero p,
.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.page-hero-copy p {
  position: relative;
  z-index: 21 !important;
  max-width: min(100%, 720px);
}

.collection-workbench,
.insight-panel,
.solution-command-panel,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.page-visual-frame,
.hero-visual-panel {
  position: relative;
  z-index: 1 !important;
}

@media (max-width: 1500px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .page-hero-shell {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: clamp(24px, 4vw, 40px) !important;
    width: min(100% - 48px, 1040px) !important;
    min-height: auto !important;
    padding-top: clamp(56px, 7vw, 84px) !important;
    padding-bottom: clamp(52px, 7vw, 78px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .page-hero-copy {
    max-width: min(100%, 900px) !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .page-hero-copy h1 {
    max-width: min(100%, 900px) !important;
    font-size: clamp(40px, 5.1vw, 68px) !important;
    line-height: 1.08 !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .page-visual-frame,
  .hero-visual-panel {
    justify-self: stretch !important;
    width: min(100%, 820px) !important;
    max-width: 820px !important;
    min-height: auto !important;
    margin-top: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .page-hero-shell {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 42px !important;
    gap: 22px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: 1.12 !important;
    text-wrap: pretty;
  }
}

/* Executive polish pass: richer cockpit surfaces while preserving text clarity. */
.collection-card,
.collection-feature-card,
.collection-scenario-strip article,
.product-flow-grid article,
.special-module-strip article,
.special-workflow article,
.home-industry-grid article,
.home-capability-row,
.pricing-card,
.pricing-value-strip div,
.pricing-onboarding,
.pricing-onboarding-steps article,
.capability-grid article,
.solution-steps article,
.solution-summary-band p,
.report-radar-grid article,
.cluster-grid article,
.model-list article,
.action-list article,
.visit-attribution-grid article,
.index-score-grid article,
.index-insight-grid article,
.index-faq-strip article,
.reports-score-card,
.reports-type-grid article,
.reports-workflow-grid article,
.case-story article,
.case-proof-strip article,
.case-timeline article,
.case-proof-matrix article,
.article-summary-card,
.article-evidence-panel,
.article-action-grid article,
.article-insight-list article,
.trust-card-strip article,
.trust-status,
.trust-workflow article,
.contact-cards article,
.toc-panel,
.article-panel,
.content-command-bar,
.content-insight-strip {
  border-color: rgba(246, 243, 235, 0.16);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 40%, transparent 100%),
    radial-gradient(circle at 82% 12%, rgba(184, 255, 190, 0.105), transparent 32%),
    radial-gradient(circle at 10% 100%, rgba(246, 243, 235, 0.055), transparent 36%);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 70px rgba(159, 237, 159, 0.055),
    var(--glass-edge);
}

.collection-card::after,
.collection-feature-card::after,
.collection-scenario-strip article::after,
.product-flow-grid article::after,
.special-module-strip article::after,
.special-workflow article::after,
.home-industry-grid article::after,
.home-capability-row::after,
.pricing-card::after,
.pricing-value-strip div::after,
.pricing-onboarding::after,
.pricing-onboarding-steps article::after,
.capability-grid article::after,
.solution-steps article::after,
.solution-summary-band p::after,
.report-radar-grid article::after,
.cluster-grid article::after,
.model-list article::after,
.action-list article::after,
.visit-attribution-grid article::after,
.index-score-grid article::after,
.index-insight-grid article::after,
.index-faq-strip article::after,
.reports-score-card::after,
.reports-type-grid article::after,
.reports-workflow-grid article::after,
.case-story article::after,
.case-proof-strip article::after,
.case-timeline article::after,
.case-proof-matrix article::after,
.article-summary-card::after,
.article-evidence-panel::after,
.article-action-grid article::after,
.article-insight-list article::after,
.trust-card-strip article::after,
.trust-status::after,
.trust-workflow article::after,
.contact-cards article::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent 16%),
    radial-gradient(circle at 84% 10%, rgba(184, 255, 190, 0.13), transparent 30%),
    linear-gradient(90deg, transparent, rgba(184, 255, 190, 0.05), transparent);
  opacity: 0.92;
}

.content-command-bar,
.content-insight-strip,
.toc-panel,
.article-panel {
  backdrop-filter: blur(16px);
}

.content-command-bar > div:first-child span,
.toc-panel .section-label,
.content-status-grid span,
.content-insight-strip span,
.content-insight-strip em {
  color: #b8ffbe;
}

.collection-card:hover,
.collection-feature-card:hover,
.collection-scenario-strip article:hover,
.product-flow-grid article:hover,
.special-module-strip article:hover,
.special-workflow article:hover,
.home-industry-grid article:hover,
.home-capability-row:hover,
.pricing-card:hover,
.pricing-value-strip div:hover,
.pricing-onboarding-steps article:hover,
.capability-grid article:hover,
.solution-steps article:hover,
.solution-summary-band p:hover,
.report-radar-grid article:hover,
.cluster-grid article:hover,
.model-list article:hover,
.action-list article:hover,
.visit-attribution-grid article:hover,
.index-score-grid article:hover,
.index-insight-grid article:hover,
.index-faq-strip article:hover,
.reports-type-grid article:hover,
.reports-workflow-grid article:hover,
.case-story article:hover,
.case-proof-strip article:hover,
.case-timeline article:hover,
.case-proof-matrix article:hover,
.article-summary-card:hover,
.article-evidence-panel:hover,
.article-action-grid article:hover,
.article-insight-list article:hover,
.trust-card-strip article:hover,
.trust-workflow article:hover,
.contact-cards article:hover {
  filter: saturate(1.08) brightness(1.045);
  transform: translateY(-5px);
}

/* Final overlap guard: keep hero copy readable after every page-specific polish rule. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.special-hero,
.page-hero-shell,
.pricing-hero,
.contact-page {
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.special-copy,
.page-hero-copy,
.pricing-head,
.contact-copy {
  position: relative !important;
  z-index: 40 !important;
  min-width: 0 !important;
  max-width: min(100%, 980px) !important;
  contain: layout !important;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.special-copy h1,
.page-hero-copy h1,
.pricing-head h1,
.contact-copy h1 {
  max-width: min(100%, 980px) !important;
  letter-spacing: 0 !important;
  line-height: 1.08 !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
  line-break: loose !important;
  text-wrap: balance !important;
  overflow: visible !important;
}

.collection-hero p,
.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.special-copy p,
.page-hero-copy p,
.pricing-head p,
.contact-copy p {
  max-width: min(100%, 780px) !important;
  position: relative !important;
  z-index: 41 !important;
  text-wrap: pretty !important;
}

.collection-workbench,
.insight-panel,
.solution-command-panel,
.solution-metrics,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.special-visual,
.special-cockpit,
.page-visual-frame,
.hero-visual-panel,
.contact-panel,
.contact-signal-panel,
.index-report-preview {
  position: relative !important;
  z-index: 1 !important;
  transform: none !important;
}

@media (max-width: 1760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - 48px, 1080px) !important;
    min-height: auto !important;
    gap: clamp(26px, 4vw, 46px) !important;
    align-items: start !important;
    justify-items: start !important;
    padding-top: clamp(58px, 7vw, 82px) !important;
    padding-bottom: clamp(48px, 7vw, 72px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .contact-copy {
    width: 100% !important;
    max-width: 960px !important;
    padding-right: 0 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .contact-copy h1 {
    max-width: 960px !important;
    font-size: clamp(40px, 5.1vw, 68px) !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .special-visual,
  .special-cockpit,
  .page-visual-frame,
  .contact-panel,
  .index-report-preview {
    justify-self: start !important;
    align-self: start !important;
    width: min(100%, 820px) !important;
    max-width: min(100%, 820px) !important;
    min-height: auto !important;
    margin: 0 !important;
  }
}

@media (min-width: 1761px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page {
    display: grid !important;
    grid-template-columns: minmax(0, 620px) minmax(360px, 480px) !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: clamp(40px, 5vw, 86px) !important;
  }
}

/* Final visual safety layer: hero titles and animated panels must never share paint space. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.special-hero,
.page-hero-shell,
.contact-page {
  isolation: isolate;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.special-copy,
.page-hero-copy,
.contact-copy {
  position: relative !important;
  z-index: 5 !important;
  min-width: 0 !important;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.special-copy h1,
.page-hero-copy h1,
.contact-copy h1 {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  letter-spacing: 0 !important;
  overflow: visible !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  line-break: loose !important;
  text-wrap: balance !important;
}

.insight-panel,
.collection-workbench,
.solution-command-panel,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.special-cockpit,
.page-visual-frame,
.hero-visual-panel,
.contact-signal-panel {
  position: relative !important;
  z-index: 1 !important;
  min-width: 0 !important;
  transform: none !important;
}

@media (min-width: 1181px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page {
    display: grid !important;
    grid-template-columns: minmax(0, 560px) minmax(360px, 440px) !important;
    justify-content: space-between !important;
    align-items: center !important;
    column-gap: clamp(48px, 5vw, 84px) !important;
    overflow: visible !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .contact-copy {
    width: 100% !important;
    max-width: 560px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .contact-copy h1 {
    font-size: clamp(40px, 4.05vw, 58px) !important;
    line-height: 1.08 !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .contact-copy p {
    max-width: 540px !important;
  }

  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .page-visual-frame,
  .hero-visual-panel,
  .contact-signal-panel {
    justify-self: end !important;
    width: min(100%, 440px) !important;
    max-width: 440px !important;
  }
}

@media (max-width: 1179px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: start !important;
    justify-items: stretch !important;
    gap: 28px !important;
    overflow: visible !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .contact-copy,
  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .page-visual-frame,
  .hero-visual-panel,
  .contact-signal-panel {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Final live overlap fix: keep long Chinese hero copy outside dashboard visuals. */
@media (min-width: 1181px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page {
    display: grid !important;
    grid-template-columns: minmax(0, 620px) minmax(360px, 480px) !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: clamp(36px, 4vw, 72px) !important;
    width: min(100% - 96px, 1120px) !important;
    overflow: visible !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .contact-copy {
    width: 100% !important;
    max-width: 620px !important;
    min-width: 0 !important;
    padding-right: 0 !important;
    position: relative !important;
    z-index: 10 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .contact-copy h1 {
    max-width: 620px !important;
    font-size: clamp(40px, 4.1vw, 60px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    text-wrap: balance !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .contact-copy p {
    max-width: 560px !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .special-visual,
  .special-cockpit,
  .page-visual-frame,
  .contact-panel {
    justify-self: end !important;
    width: min(100%, 480px) !important;
    max-width: 480px !important;
    margin: 0 !important;
    transform: none !important;
    position: relative !important;
    z-index: 1 !important;
  }
}

@media (max-width: 1179px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page {
    grid-template-columns: 1fr !important;
    width: min(100% - 40px, 860px) !important;
    gap: 28px !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .special-visual,
  .special-cockpit,
  .page-visual-frame,
  .contact-panel {
    justify-self: start !important;
    width: min(100%, 720px) !important;
    max-width: 720px !important;
  }
}

/* Final hero legibility guard: long Chinese titles must stay out of cockpit visuals. */
.page-hero-shell,
.product-hero,
.collection-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.contact-page {
  isolation: isolate;
}

.page-hero-copy,
.product-copy,
.collection-hero > :first-child,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.contact-copy {
  max-width: min(100%, 680px);
  contain: layout paint;
}

.page-hero-copy h1,
.product-copy h1,
.collection-hero h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.contact-copy h1 {
  max-width: 11.5em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

@media (max-width: 1500px) {
  .page-hero-shell,
  .product-hero,
  .collection-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .contact-page {
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - 56px, 1040px) !important;
    gap: clamp(24px, 4vw, 42px) !important;
    align-items: start !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .page-hero-copy,
  .product-copy,
  .collection-hero > :first-child,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .contact-copy {
    max-width: 820px !important;
    width: min(100%, 820px);
    z-index: 5 !important;
  }

  .page-hero-copy h1,
  .product-copy h1,
  .collection-hero h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .contact-copy h1 {
    max-width: 820px !important;
    font-size: clamp(40px, 5.1vw, 66px) !important;
    line-height: 1.08 !important;
  }

  .page-visual-frame,
  .hero-visual-panel,
  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .index-report-preview,
  .special-cockpit {
    justify-self: start !important;
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    z-index: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .page-hero-shell,
  .product-hero,
  .collection-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .contact-page {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .page-hero-copy h1,
  .product-copy h1,
  .collection-hero h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .contact-copy h1 {
    max-width: 100% !important;
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: 1.12 !important;
  }
}

/* Absolute final overlap guard: this block stays after every visual polish layer. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.special-hero,
.page-hero-shell,
.pricing-hero,
.contact-page {
  position: relative !important;
  isolation: isolate !important;
  overflow: visible !important;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.special-copy,
.page-hero-copy,
.pricing-head,
.contact-copy {
  position: relative !important;
  z-index: 30 !important;
  min-width: 0 !important;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.special-copy h1,
.page-hero-copy h1,
.pricing-head h1,
.contact-copy h1 {
  max-width: min(100%, 980px) !important;
  word-break: keep-all !important;
  overflow-wrap: anywhere !important;
  line-break: loose !important;
  text-wrap: balance !important;
}

.collection-hero p,
.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.special-copy p,
.page-hero-copy p,
.pricing-head p,
.contact-copy p {
  max-width: min(100%, 780px) !important;
  position: relative !important;
  z-index: 31 !important;
  text-wrap: pretty !important;
}

.collection-workbench,
.insight-panel,
.solution-command-panel,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.special-visual,
.special-cockpit,
.page-visual-frame,
.contact-panel,
.index-report-preview {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 1760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - 48px, 1080px) !important;
    min-height: auto !important;
    gap: clamp(26px, 4vw, 46px) !important;
    align-items: start !important;
    justify-items: start !important;
    padding-top: clamp(58px, 7vw, 82px) !important;
    padding-bottom: clamp(48px, 7vw, 72px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .contact-copy {
    width: 100% !important;
    max-width: 960px !important;
    padding-right: 0 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .contact-copy h1 {
    max-width: 960px !important;
    font-size: clamp(40px, 5.1vw, 68px) !important;
    line-height: 1.08 !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .special-visual,
  .special-cockpit,
  .page-visual-frame,
  .contact-panel,
  .index-report-preview {
    justify-self: start !important;
    align-self: start !important;
    width: min(100%, 820px) !important;
    max-width: min(100%, 820px) !important;
    min-height: auto !important;
    margin: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page,
  .pricing-hero {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 22px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1,
  .contact-copy h1 {
    max-width: 100% !important;
    font-size: clamp(32px, 9.4vw, 42px) !important;
    line-height: 1.14 !important;
    text-wrap: pretty !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .special-visual,
  .special-cockpit,
  .page-visual-frame,
  .contact-panel,
  .index-report-preview {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Final premium surface pass: sharper cockpit cards without covering content. */
.collection-card,
.collection-feature-card,
.collection-scenario-strip article,
.product-flow-grid article,
.special-module-strip article,
.special-workflow article,
.home-industry-grid article,
.home-capability-row,
.pricing-card,
.pricing-value-strip div,
.pricing-onboarding,
.pricing-onboarding-steps article,
.capability-grid article,
.solution-steps article,
.solution-command-panel,
.solution-summary-band p,
.report-radar-grid article,
.cluster-grid article,
.model-list article,
.action-list article,
.visit-attribution-grid article,
.index-score-grid article,
.index-insight-grid article,
.index-faq-strip article,
.reports-console,
.reports-score-card,
.reports-type-grid article,
.reports-workflow-grid article,
.case-story article,
.case-stats,
.case-proof-strip article,
.case-timeline article,
.case-proof-matrix article,
.article-summary-card,
.article-cockpit,
.article-evidence-panel,
.article-action-grid article,
.article-insight-list article,
.trust-card-strip article,
.trust-status,
.trust-workflow article,
.contact-cards article,
.collection-workbench,
.insight-panel,
.special-cockpit,
.page-visual-frame,
.index-report-preview {
  border-color: rgba(218, 255, 219, 0.16) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.018) 42%, rgba(184, 255, 190, 0.024)),
    radial-gradient(circle at 84% 12%, rgba(184, 255, 190, 0.13), transparent 31%),
    radial-gradient(circle at 12% 92%, rgba(246, 243, 235, 0.07), transparent 28%),
    linear-gradient(90deg, rgba(246, 243, 235, 0.026) 1px, transparent 1px) 0 0 / 68px 100%,
    linear-gradient(rgba(246, 243, 235, 0.022) 1px, transparent 1px) 0 0 / 100% 54px,
    rgba(9, 11, 9, 0.9) !important;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.48),
    0 0 86px rgba(159, 237, 159, 0.082),
    0 1px 0 rgba(255, 255, 255, 0.064) inset,
    0 0 0 1px rgba(255, 255, 255, 0.024) inset !important;
}

.collection-card::after,
.collection-feature-card::after,
.collection-scenario-strip article::after,
.product-flow-grid article::after,
.special-module-strip article::after,
.special-workflow article::after,
.home-industry-grid article::after,
.home-capability-row::after,
.pricing-card::after,
.pricing-value-strip div::after,
.pricing-onboarding::after,
.pricing-onboarding-steps article::after,
.capability-grid article::after,
.solution-steps article::after,
.solution-command-panel::after,
.solution-summary-band p::after,
.report-radar-grid article::after,
.cluster-grid article::after,
.model-list article::after,
.action-list article::after,
.visit-attribution-grid article::after,
.index-score-grid article::after,
.index-insight-grid article::after,
.index-faq-strip article::after,
.reports-console::after,
.reports-score-card::after,
.reports-type-grid article::after,
.reports-workflow-grid article::after,
.case-story article::after,
.case-stats::after,
.case-proof-strip article::after,
.case-timeline article::after,
.case-proof-matrix article::after,
.article-summary-card::after,
.article-cockpit::after,
.article-evidence-panel::after,
.article-action-grid article::after,
.article-insight-list article::after,
.trust-card-strip article::after,
.trust-status::after,
.trust-workflow article::after,
.contact-cards article::after,
.collection-workbench::after,
.insight-panel::after,
.special-cockpit::after,
.page-visual-frame::after,
.index-report-preview::after {
  z-index: 0 !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), transparent 17%),
    linear-gradient(115deg, transparent 0 36%, rgba(246, 243, 235, 0.09) 48%, rgba(184, 255, 190, 0.12) 54%, transparent 66% 100%),
    radial-gradient(circle at var(--pointer-x, 76%) var(--pointer-y, 18%), rgba(184, 255, 190, 0.11), transparent 18rem);
  opacity: 0.78 !important;
  mix-blend-mode: screen;
}

.collection-card:hover,
.collection-feature-card:hover,
.collection-scenario-strip article:hover,
.product-flow-grid article:hover,
.special-module-strip article:hover,
.special-workflow article:hover,
.home-industry-grid article:hover,
.home-capability-row:hover,
.pricing-card:hover,
.pricing-value-strip div:hover,
.pricing-onboarding-steps article:hover,
.capability-grid article:hover,
.solution-steps article:hover,
.solution-summary-band p:hover,
.report-radar-grid article:hover,
.cluster-grid article:hover,
.model-list article:hover,
.action-list article:hover,
.visit-attribution-grid article:hover,
.index-score-grid article:hover,
.index-insight-grid article:hover,
.index-faq-strip article:hover,
.reports-type-grid article:hover,
.reports-workflow-grid article:hover,
.case-story article:hover,
.case-proof-strip article:hover,
.case-timeline article:hover,
.case-proof-matrix article:hover,
.article-summary-card:hover,
.article-evidence-panel:hover,
.article-action-grid article:hover,
.article-insight-list article:hover,
.trust-card-strip article:hover,
.trust-workflow article:hover,
.contact-cards article:hover {
  border-color: rgba(184, 255, 190, 0.48) !important;
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-5px);
  box-shadow:
    0 42px 130px rgba(0, 0, 0, 0.56),
    0 0 104px rgba(159, 237, 159, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.085) inset,
    0 0 0 1px rgba(184, 255, 190, 0.065) inset !important;
}

/* Last-stage hero overlap guard for common laptop screenshots.
   Keep animated dashboards under the copy, then stack earlier than desktop-wide layouts. */
.product-hero,
.collection-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.page-hero-shell,
.special-hero,
.contact-page,
.pricing-hero {
  position: relative;
  isolation: isolate;
}

.product-copy,
.collection-hero > :first-child,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.page-hero-copy,
.special-copy,
.contact-copy,
.pricing-head {
  position: relative !important;
  z-index: 20 !important;
  min-width: 0 !important;
}

.product-copy h1,
.collection-hero h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.page-hero-copy h1,
.special-copy h1,
.contact-copy h1,
.pricing-head h1,
.index-landing h1 {
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.product-copy p,
.collection-hero p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.page-hero-copy p,
.special-copy p,
.contact-copy p,
.pricing-head p {
  position: relative;
  z-index: 21;
  text-wrap: pretty;
}

.insight-panel,
.collection-workbench,
.solution-command-panel,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.page-visual-frame,
.special-visual,
.contact-panel {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 1700px) {
  .product-hero,
  .collection-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .page-hero-shell,
  .special-hero,
  .contact-page {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - 48px, 1080px) !important;
    min-height: auto !important;
    gap: clamp(24px, 4vw, 44px) !important;
    align-items: start !important;
    overflow: visible !important;
  }

  .product-copy,
  .collection-hero > :first-child,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .page-hero-copy,
  .special-copy,
  .contact-copy {
    width: 100% !important;
    max-width: 960px !important;
    padding-right: 0 !important;
  }

  .product-copy h1,
  .collection-hero h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .page-hero-copy h1,
  .special-copy h1,
  .contact-copy h1 {
    max-width: 940px !important;
    font-size: clamp(40px, 5.2vw, 68px) !important;
    line-height: 1.08 !important;
  }

  .product-copy p,
  .collection-hero p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .page-hero-copy p,
  .special-copy p,
  .contact-copy p {
    max-width: 760px !important;
  }

  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .page-visual-frame,
  .special-visual,
  .contact-panel {
    justify-self: start !important;
    width: min(100%, 820px) !important;
    max-width: min(100%, 820px) !important;
    min-height: auto !important;
    margin: 0 !important;
    transform: none !important;
  }
}

@media (min-width: 1701px) {
  .product-copy {
    max-width: 720px;
  }

  .product-copy h1 {
    max-width: 720px;
  }

  .insight-panel {
    max-width: 500px;
  }
}

@media (max-width: 760px) {
  .product-hero,
  .collection-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .page-hero-shell,
  .special-hero,
  .contact-page,
  .pricing-hero {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .product-copy h1,
  .collection-hero h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .page-hero-copy h1,
  .special-copy h1,
  .contact-copy h1,
  .pricing-head h1 {
    font-size: clamp(32px, 10.5vw, 44px) !important;
    line-height: 1.12 !important;
  }
}

/* Final hero collision guard: keep every cockpit visual below the copy on laptop widths. */
.product-copy,
.collection-hero > :first-child,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.page-hero-copy {
  position: relative;
  z-index: 6;
  min-width: 0;
}

.product-copy h1,
.collection-hero h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.page-hero-copy h1 {
  max-width: min(100%, 760px);
  overflow-wrap: break-word;
  word-break: normal;
  text-wrap: balance;
}

.product-copy p,
.collection-hero p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.page-hero-copy p {
  max-width: min(100%, 680px);
}

.insight-panel,
.collection-workbench,
.solution-command-panel,
.solution-metrics,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.page-visual-frame,
.hero-visual-panel {
  position: relative;
  z-index: 1;
}

@media (max-width: 1600px) {
  .product-hero,
  .collection-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .page-hero-shell {
    display: grid;
    grid-template-columns: 1fr !important;
    width: min(100% - 48px, 1040px);
    gap: clamp(24px, 4vw, 42px);
    align-items: start;
    min-height: auto;
    padding-top: clamp(54px, 6vw, 76px);
    padding-bottom: clamp(48px, 6vw, 70px);
    overflow: visible;
  }

  .product-copy,
  .collection-hero > :first-child,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .page-hero-copy {
    width: 100%;
    max-width: 900px;
  }

  .product-copy h1,
  .collection-hero h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .page-hero-copy h1 {
    max-width: min(100%, 900px);
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.08;
  }

  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .page-visual-frame,
  .hero-visual-panel {
    justify-self: start;
    width: min(100%, 820px);
    max-width: 820px;
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .product-hero,
  .collection-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .page-hero-shell {
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
    gap: 22px;
  }

  .product-copy h1,
  .collection-hero h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.12;
    text-wrap: pretty;
  }
}

/* Final navigation guard: dropdowns must float above the page, never occupy layout space. */
.nav-dropdown {
  position: fixed;
  top: 58px;
  left: 50%;
  z-index: 60;
  width: min(980px, calc(100vw - 48px));
  max-height: min(560px, calc(100dvh - 86px));
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px) scale(0.985);
  transform-origin: 50% 0;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.nav-dropdown-inner {
  min-height: 0;
  max-height: min(520px, calc(100dvh - 104px));
  overflow: auto;
  border-color: rgba(184, 255, 190, 0.16);
  background:
    radial-gradient(circle at 78% 0%, rgba(184, 255, 190, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(18, 22, 17, 0.96), rgba(8, 9, 7, 0.94));
  box-shadow:
    0 26px 86px rgba(0, 0, 0, 0.54),
    0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  backdrop-filter: blur(24px) saturate(1.18);
}

.nav-dropdown-column h2 {
  color: rgba(184, 255, 190, 0.78);
}

.nav-dropdown-link {
  border-bottom-color: rgba(246, 243, 235, 0.07);
}

.nav-dropdown-link strong {
  font-size: 14px;
}

.nav-dropdown-link span {
  color: #a5a49d;
  font-size: 12px;
}

.nav-feature-card {
  background:
    radial-gradient(circle at 74% 12%, rgba(184, 255, 190, 0.12), transparent 32%),
    #0d0e0c;
}

@media (max-width: 760px) {
  .nav-dropdown {
    position: static;
    width: 100%;
    max-height: none;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown-inner {
    max-height: none;
    overflow: visible;
  }
}

/* Final hero safety guard: keep copy and visual dashboards from sharing the same
   horizontal space on laptop and screenshot-width viewports. */
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.reports-hero,
.trust-hero,
.legal-hero,
.page-hero-shell {
  isolation: isolate;
}

.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.reports-copy,
.trust-copy,
.legal-copy,
.page-hero-copy {
  position: relative;
  z-index: 6;
  min-width: 0;
}

.insight-panel,
.solution-command-panel,
.case-stats,
.article-cockpit,
.event-hero aside,
.reports-console,
.trust-console,
.legal-cockpit,
.page-visual-frame {
  position: relative;
  z-index: 1;
}

@media (max-width: 1600px) {
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .reports-hero,
  .trust-hero,
  .legal-hero,
  .page-hero-shell {
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    gap: clamp(24px, 4vw, 42px) !important;
    width: min(100% - 48px, 1040px) !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .reports-copy,
  .trust-copy,
  .legal-copy,
  .page-hero-copy {
    max-width: 920px !important;
    width: 100% !important;
  }

  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .reports-copy h1,
  .trust-copy h1,
  .legal-copy h1,
  .page-hero-copy h1 {
    max-width: 920px !important;
    font-size: clamp(40px, 5.8vw, 70px) !important;
    line-height: 1.06 !important;
  }

  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .reports-copy p,
  .trust-copy p,
  .legal-copy p,
  .page-hero-copy p {
    max-width: 760px !important;
  }

  .insight-panel,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .reports-console,
  .trust-console,
  .legal-cockpit,
  .page-visual-frame {
    justify-self: start !important;
    width: min(100%, 760px) !important;
    max-width: min(100%, 760px) !important;
    margin-top: 0 !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .reports-hero,
  .trust-hero,
  .legal-hero,
  .page-hero-shell {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 20px !important;
  }

  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .reports-copy h1,
  .trust-copy h1,
  .legal-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(34px, 11vw, 46px) !important;
    line-height: 1.1 !important;
  }
}

/* Absolute last overlap guard: keep every hero copy layer above moving panels. */
.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.special-copy,
.page-hero-copy,
.pricing-head,
.contact-copy {
  position: relative;
  z-index: 8;
  min-width: 0;
}

.insight-panel,
.collection-workbench,
.solution-command-panel,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.index-report-preview,
.special-cockpit,
.page-visual-frame,
.hero-visual-panel,
.contact-signal-panel {
  position: relative;
  z-index: 1;
}

@media (max-width: 1500px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    justify-items: stretch !important;
    width: min(100% - 48px, 1040px) !important;
    min-height: auto !important;
    gap: 30px !important;
    padding-top: clamp(58px, 7vw, 82px) !important;
    padding-bottom: clamp(50px, 6vw, 72px) !important;
    overflow: visible !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .contact-copy {
    width: 100% !important;
    max-width: 920px !important;
    text-align: left !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .contact-copy h1 {
    max-width: 920px !important;
    font-size: clamp(40px, 4.9vw, 64px) !important;
    line-height: 1.1 !important;
    overflow: visible !important;
    overflow-wrap: anywhere !important;
    text-wrap: balance !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .contact-copy p {
    max-width: 780px !important;
  }

  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .index-report-preview,
  .special-cockpit,
  .page-visual-frame,
  .hero-visual-panel,
  .contact-signal-panel {
    justify-self: start !important;
    width: min(100%, 820px) !important;
    max-width: min(100%, 820px) !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .contact-page {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .contact-copy h1 {
    font-size: clamp(32px, 9.5vw, 42px) !important;
    line-height: 1.14 !important;
    text-wrap: pretty !important;
  }
}

/* Fine polish: make controls and panels feel more precise without adding clutter. */
.button,
.nav-link,
.site-header {
  position: relative;
  isolation: isolate;
}

.button {
  overflow: hidden;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  z-index: -1;
  width: 58%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-18deg);
  transition: left 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover::after {
  left: 116%;
}

.button-dark {
  box-shadow:
    0 16px 44px rgba(159, 237, 159, 0.15),
    0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-dropdown {
  box-shadow:
    0 28px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(159, 237, 159, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-dropdown::after,
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(184, 255, 190, 0.12), transparent),
    radial-gradient(circle at 12% 0%, rgba(121, 166, 255, 0.11), transparent 32%);
  opacity: 0.7;
}

.insight-panel,
.collection-workbench,
.solution-command-panel,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.index-report-preview,
.special-cockpit,
.page-visual-frame {
  outline: 1px solid rgba(255, 255, 255, 0.025);
  outline-offset: -2px;
}

.insight-panel:hover,
.solution-command-panel:hover,
.case-stats:hover,
.article-cockpit:hover,
.reports-console:hover,
.index-report-preview:hover {
  filter: saturate(1.06) brightness(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .button::after,
  .collection-card::before,
  .pricing-card::before,
  .reports-console::before,
  .article-cockpit::before,
  .solution-command-panel::before {
    transition: none !important;
  }

  .pricing-card.featured,
  .reports-console,
  .article-cockpit,
  .trust-console,
  .solution-command-panel,
  .index-report-preview,
  .case-stats {
    animation: none !important;
  }
}

/* Final safety layer: prevent cockpit visuals from covering hero copy on laptop widths. */
@media (max-width: 1500px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell {
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    width: min(100% - 48px, 1040px) !important;
    min-height: auto !important;
    gap: 30px !important;
    padding-top: clamp(54px, 7vw, 76px) !important;
    overflow: visible !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy {
    max-width: 900px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 4 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1 {
    max-width: 900px !important;
    font-size: clamp(40px, 5vw, 64px) !important;
    line-height: 1.1 !important;
    overflow-wrap: anywhere !important;
    text-wrap: balance !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p {
    max-width: 760px !important;
  }

  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .index-report-preview,
  .special-cockpit,
  .page-visual-frame {
    justify-self: start !important;
    width: min(100%, 820px) !important;
    max-width: min(100%, 820px) !important;
    position: relative !important;
    z-index: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(32px, 9.6vw, 42px) !important;
    line-height: 1.14 !important;
    text-wrap: pretty !important;
  }
}

/* Final visual polish: unify the site around a sharper cockpit glass language. */
.site-header {
  border-bottom-color: rgba(184, 255, 190, 0.12);
  background:
    linear-gradient(180deg, rgba(12, 14, 11, 0.88), rgba(12, 14, 11, 0.66)),
    radial-gradient(circle at var(--pointer-x, 58%) 0%, rgba(184, 255, 190, 0.08), transparent 24rem);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34), inset 0 -1px 0 rgba(255, 255, 255, 0.026);
  backdrop-filter: blur(22px) saturate(1.22);
}

.nav-link,
.nav-feature-card,
.nav-dropdown-inner,
.button-dark,
.button-light {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.button-dark,
.button-light {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button-dark::after,
.button-light::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.2) 48%, rgba(184, 255, 190, 0.2) 54%, transparent 66% 100%);
  opacity: 0;
  transform: translateX(-70%);
  transition: opacity 220ms ease, transform 620ms cubic-bezier(0.18, 0.82, 0.22, 1);
}

.button-dark:hover::after,
.button-light:hover::after {
  opacity: 0.7;
  transform: translateX(70%);
}

.home-hero,
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.pricing-hero,
.index-landing {
  position: relative;
}

.home-hero::after,
.collection-hero::after,
.product-hero::after,
.solution-hero::after,
.case-hero::after,
.article-hero::after,
.event-hero::after,
.legal-hero::after,
.trust-hero::after,
.reports-hero::after,
.pricing-hero::after,
.index-landing::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(184, 255, 190, 0.36), rgba(246, 243, 235, 0.18), transparent);
  opacity: 0.76;
}

.collection-card,
.collection-feature-card,
.collection-scenario-strip article,
.product-flow-grid article,
.special-module-strip article,
.special-workflow article,
.home-industry-grid article,
.home-capability-row,
.pricing-card,
.pricing-value-strip div,
.pricing-onboarding,
.pricing-onboarding-steps article,
.capability-grid article,
.solution-steps article,
.solution-command-panel,
.solution-summary-band p,
.report-radar-grid article,
.cluster-grid article,
.model-list article,
.action-list article,
.visit-attribution-grid article,
.index-score-grid article,
.index-insight-grid article,
.index-faq-strip article,
.reports-console,
.reports-score-card,
.reports-type-grid article,
.reports-workflow-grid article,
.case-story article,
.case-stats,
.case-proof-strip article,
.case-timeline article,
.case-proof-matrix article,
.article-summary-card,
.article-cockpit,
.article-evidence-panel,
.article-action-grid article,
.article-insight-list article,
.trust-card-strip article,
.trust-status,
.trust-workflow article,
.contact-cards article {
  border-color: rgba(246, 243, 235, 0.15);
  background-image:
    radial-gradient(circle at 84% 10%, rgba(184, 255, 190, 0.075), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  box-shadow: var(--card-soft-glow), var(--glass-edge);
}

.collection-card strong,
.collection-feature-card strong,
.product-flow-grid strong,
.special-module-strip strong,
.special-workflow strong,
.home-industry-grid strong,
.home-capability-copy strong,
.pricing-card h2,
.pricing-card strong,
.capability-grid strong,
.solution-steps strong,
.report-radar-grid strong,
.cluster-grid strong,
.model-list strong,
.action-list strong,
.index-score-grid strong,
.index-insight-grid strong,
.reports-type-grid strong,
.reports-workflow-grid strong,
.case-story strong,
.case-proof-strip strong,
.case-timeline strong,
.case-proof-matrix strong,
.article-summary-card strong,
.article-action-grid strong,
.article-insight-list strong,
.trust-card-strip strong,
.trust-workflow strong,
.contact-cards strong {
  color: #fbfaf5;
  text-shadow: 0 0 18px rgba(184, 255, 190, 0.065);
}

.collection-card p,
.collection-feature-card p,
.product-flow-grid p,
.special-module-strip p,
.special-workflow p,
.home-industry-grid p,
.home-capability-copy p,
.pricing-card p,
.capability-grid p,
.solution-steps p,
.report-radar-grid p,
.cluster-grid p,
.model-list p,
.action-list p,
.index-score-grid p,
.index-insight-grid p,
.reports-type-grid p,
.reports-workflow-grid p,
.case-story p,
.case-timeline p,
.case-proof-matrix p,
.article-action-grid p,
.trust-card-strip p,
.trust-workflow p,
.contact-cards p {
  color: #bbb8ae;
}

/* Final overlap shield: wide feature titles should never sit underneath cockpit visuals. */
@media (max-width: 1600px) {
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero {
    grid-template-columns: 1fr !important;
    align-items: start;
    width: min(100% - 56px, 1080px);
    min-height: auto;
    gap: clamp(24px, 3.4vw, 40px);
    padding-top: clamp(58px, 5.4vw, 82px);
    padding-bottom: clamp(54px, 5.2vw, 76px);
  }

  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy {
    max-width: min(100%, 920px) !important;
    z-index: 8;
  }

  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1 {
    max-width: min(100%, 920px) !important;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p {
    max-width: min(100%, 720px) !important;
  }

  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console {
    justify-self: start !important;
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    z-index: 1;
  }
}

/* Final micro-polish: stronger cockpit tactility without reducing readability. */
.button,
.compact-link,
.special-related-link,
.nav-dropdown-link {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button::before,
.compact-link::before,
.special-related-link::before,
.nav-dropdown-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.18) 48%, rgba(184, 255, 190, 0.16) 52%, transparent 66% 100%);
  opacity: 0;
  transform: translateX(-58%);
  transition: opacity 220ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover::before,
.compact-link:hover::before,
.special-related-link:hover::before,
.nav-dropdown-link:hover::before {
  opacity: 1;
  transform: translateX(54%);
}

.button-dark {
  box-shadow:
    0 14px 34px rgba(246, 243, 235, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.68) inset;
}

.button-light {
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 255, 190, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 0 1px rgba(184, 255, 190, 0.035) inset;
}

.button-light:hover,
.ghost-link:hover {
  border-color: rgba(184, 255, 190, 0.32);
  color: #f8fff5;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24), 0 0 28px rgba(159, 237, 159, 0.08);
}

.collection-card,
.pricing-card,
.capability-grid article,
.solution-steps article,
.case-story article,
.article-summary-card,
.article-evidence-panel,
.article-action-grid article,
.article-insight-list article,
.reports-type-grid article,
.reports-workflow-grid article,
.trust-card-strip article,
.contact-cards article {
  backdrop-filter: blur(14px);
}

.collection-card:hover,
.pricing-card:hover,
.capability-grid article:hover,
.solution-steps article:hover,
.case-story article:hover,
.article-summary-card:hover,
.article-evidence-panel:hover,
.article-action-grid article:hover,
.article-insight-list article:hover,
.reports-type-grid article:hover,
.reports-workflow-grid article:hover,
.trust-card-strip article:hover,
.contact-cards article:hover {
  filter: saturate(1.08) brightness(1.04);
}

/* Final readability guard: hero visuals must never sit on top of copy. */
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.page-hero-shell {
  isolation: isolate;
  overflow: visible;
}

.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.page-hero-copy {
  position: relative;
  z-index: 5;
  min-width: 0;
}

.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.page-hero-copy h1 {
  max-width: min(100%, 820px);
  overflow-wrap: break-word;
  word-break: normal;
  line-break: loose;
  text-wrap: balance;
}

.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.page-hero-copy p {
  max-width: min(100%, 680px);
  overflow-wrap: break-word;
}

.insight-panel,
.solution-command-panel,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.page-visual-frame {
  position: relative;
  z-index: 1;
}

@media (max-width: 1420px) {
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 980px);
    gap: 30px;
    align-items: start;
    min-height: auto;
    padding-top: clamp(54px, 6vw, 72px);
    padding-bottom: clamp(46px, 6vw, 66px);
  }

  .page-hero-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    align-items: start;
  }

  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .page-hero-copy {
    max-width: 880px;
  }

  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .page-hero-copy h1 {
    max-width: 880px;
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1.08;
  }

  .insight-panel,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .page-visual-frame {
    justify-self: stretch;
    width: min(100%, 780px);
    max-width: 780px;
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero {
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
    gap: 22px;
  }

  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.12;
    text-wrap: pretty;
  }
}

/* Resource page polish: make article pages feel like decision cockpits, not translated archives. */
.article-cockpit {
  border-color: rgba(184, 255, 190, 0.22);
  background:
    linear-gradient(rgba(246, 243, 235, 0.05) 1px, transparent 1px) 0 0 / 100% 42px,
    linear-gradient(90deg, rgba(246, 243, 235, 0.028) 1px, transparent 1px) 0 0 / 56px 100%,
    radial-gradient(circle at 82% 12%, rgba(184, 255, 190, 0.18), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(121, 166, 255, 0.12), transparent 34%),
    #090c0a;
  box-shadow:
    0 44px 132px rgba(0, 0, 0, 0.5),
    0 0 92px rgba(159, 237, 159, 0.12),
    var(--glass-edge);
}

.article-cockpit::before {
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(246, 243, 235, 0.08) 48%, rgba(184, 255, 190, 0.12) 52%, transparent 64% 100%),
    radial-gradient(circle at 50% 58%, rgba(184, 255, 190, 0.08), transparent 34%);
  opacity: 0.72;
}

.article-cockpit-top strong,
.article-cockpit-list strong {
  color: #f6f3eb;
}

.article-cockpit-score {
  border-color: rgba(184, 255, 190, 0.16);
  background:
    radial-gradient(circle at 50% 52%, rgba(184, 255, 190, 0.16), transparent 38%),
    repeating-radial-gradient(circle at 70% 35%, rgba(184, 255, 190, 0.16) 0 1px, transparent 1px 38px),
    rgba(0, 0, 0, 0.22);
}

.article-cockpit-score strong {
  color: #f8fff5;
  text-shadow: 0 0 28px rgba(184, 255, 190, 0.24);
}

.article-evidence-panel,
.article-summary-card,
.article-insight-list article {
  border-color: rgba(184, 255, 190, 0.15);
  box-shadow: var(--card-soft-glow), var(--glass-edge);
}

.article-evidence-panel div,
.article-summary-card,
.article-insight-list article {
  background:
    radial-gradient(circle at 88% 12%, rgba(184, 255, 190, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.052), transparent 68%),
    #10110e;
}

/* Collision guard: keep hero copy readable on laptop and tablet widths. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.contact-page {
  overflow: visible;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.contact-copy {
  min-width: 0;
  max-width: 720px;
  position: relative;
  z-index: 3;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.contact-copy h1 {
  max-width: 720px;
  overflow-wrap: break-word;
  word-break: normal;
  line-break: loose;
  text-wrap: balance;
}

.insight-panel,
.collection-workbench,
.solution-command-panel,
.case-stats,
.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.index-report-preview,
.special-cockpit {
  max-width: min(100%, 440px);
  justify-self: end;
  z-index: 1;
}

.article-cockpit,
.event-hero aside,
.legal-cockpit,
.trust-console,
.reports-console,
.special-cockpit {
  overflow: hidden;
}

@media (max-width: 1420px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .contact-page {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 980px);
    gap: 28px;
    align-items: start;
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 56px;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .contact-copy {
    max-width: 860px;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .contact-copy h1 {
    max-width: 860px;
    font-size: clamp(42px, 5.2vw, 68px);
    line-height: 1.08;
  }

  .insight-panel,
  .collection-workbench,
  .solution-command-panel,
  .case-stats,
  .article-cockpit,
  .event-hero aside,
  .legal-cockpit,
  .trust-console,
  .reports-console,
  .index-report-preview,
  .special-cockpit {
    justify-self: stretch;
    width: min(100%, 760px);
    max-width: 760px;
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .contact-page {
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
    gap: 22px;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .contact-copy h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.12;
    text-wrap: pretty;
  }

  .geo-main-grid,
  .geo-dashboard-grid,
  .geo-form-grid,
  .geo-card-grid,
  .geo-kpi-grid {
    grid-template-columns: 1fr;
  }

  .geo-table {
    overflow-x: auto;
  }
}

/* Final polish pass: quieter, richer cockpit surfaces across marketing pages. */
.insight-panel,
.collection-workbench,
.solution-command-panel,
.reports-console,
.article-cockpit,
.special-cockpit,
.case-stats,
.index-report-preview {
  border-color: rgba(216, 255, 220, 0.18);
  background:
    linear-gradient(rgba(246, 243, 235, 0.038) 1px, transparent 1px) 0 0 / 100% 42px,
    linear-gradient(90deg, rgba(246, 243, 235, 0.022) 1px, transparent 1px) 0 0 / 58px 100%,
    radial-gradient(circle at 76% 10%, rgba(184, 255, 190, 0.13), transparent 28%),
    radial-gradient(circle at 10% 86%, rgba(246, 243, 235, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006)),
    #090b09;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.46),
    0 0 74px rgba(159, 237, 159, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 0 0 1px rgba(255, 255, 255, 0.018);
}

.collection-card,
.collection-feature-card,
.collection-scenario-strip article,
.product-flow-grid article,
.capability-grid article,
.solution-steps article,
.reports-type-grid article,
.reports-workflow-grid article,
.case-story article,
.case-proof-strip article,
.case-timeline article,
.case-proof-matrix article,
.article-summary-card,
.article-action-grid article,
.article-insight-list article,
.trust-card-strip article,
.contact-cards article {
  border-color: rgba(246, 243, 235, 0.115);
  background:
    radial-gradient(circle at 88% 10%, rgba(184, 255, 190, 0.105), transparent 30%),
    radial-gradient(circle at 12% 100%, rgba(246, 243, 235, 0.05), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 68%),
    #0c0d0b;
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.collection-card:hover,
.collection-feature-card:hover,
.collection-scenario-strip article:hover,
.product-flow-grid article:hover,
.capability-grid article:hover,
.solution-steps article:hover,
.reports-type-grid article:hover,
.reports-workflow-grid article:hover,
.case-story article:hover,
.case-proof-strip article:hover,
.case-timeline article:hover,
.case-proof-matrix article:hover,
.article-summary-card:hover,
.article-action-grid article:hover,
.article-insight-list article:hover,
.trust-card-strip article:hover,
.contact-cards article:hover {
  border-color: rgba(184, 255, 190, 0.32);
  box-shadow:
    0 30px 96px rgba(0, 0, 0, 0.38),
    0 0 48px rgba(159, 237, 159, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

/* Final end-of-file correction for data visuals and remaining page-specific blue accents. */
.index-kicker,
.special-signal-list span,
.index-preview-status em,
.index-report-slide > header em,
.report-hero-card span,
.report-mini-stack span {
  color: #b8ffbe;
}

.index-report-preview {
  border-color: rgba(184, 255, 190, 0.18);
  box-shadow:
    0 58px 150px rgba(0, 0, 0, 0.56),
    0 0 92px rgba(159, 237, 159, 0.12),
    0 0 0 1px rgba(184, 255, 190, 0.08) inset;
}

.index-report-viewport::before {
  background:
    linear-gradient(180deg, transparent, rgba(184, 255, 190, 0.07), transparent),
    linear-gradient(90deg, transparent, rgba(246, 243, 235, 0.1), transparent);
}

.index-report-viewport::after {
  background:
    linear-gradient(180deg, rgba(184, 255, 190, 0.82), rgba(246, 243, 235, 0.2) 34%, rgba(255, 255, 255, 0.06) 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.34);
}

.index-preview-status em,
.index-preview-float,
.index-report-slide > header em {
  border-color: rgba(184, 255, 190, 0.24);
  background: rgba(159, 237, 159, 0.075);
  color: #b8ffbe;
}

.report-hero-card {
  border-color: rgba(184, 255, 190, 0.17);
  background:
    radial-gradient(circle at 52% 52%, rgba(159, 237, 159, 0.13), transparent 29%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(2, 4, 8, 0.78);
}

/* Final reading safety guard: keep long Chinese hero copy away from animated panels. */
.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-hero,
.trust-hero,
.reports-hero,
.special-hero,
.page-hero-shell,
.pricing-hero {
  position: relative;
  isolation: isolate;
}

.collection-hero > :first-child,
.product-copy,
.solution-hero > :first-child,
.case-hero > :first-child,
.article-hero-copy,
.event-hero > :first-child,
.legal-copy,
.trust-copy,
.reports-copy,
.special-copy,
.page-hero-copy,
.pricing-head {
  position: relative;
  z-index: 6;
  min-width: 0;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1,
.legal-copy h1,
.trust-copy h1,
.reports-copy h1,
.special-copy h1,
.page-hero-copy h1,
.pricing-head h1 {
  max-width: min(100%, 900px);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.collection-hero p,
.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p,
.legal-copy p,
.trust-copy p,
.reports-copy p,
.special-copy p,
.page-hero-copy p,
.pricing-head p {
  max-width: min(100%, 720px);
  text-wrap: pretty;
}

.collection-workbench,
.insight-panel,
.solution-command-panel,
.solution-metrics,
.case-stats,
.article-cockpit,
.article-evidence-panel,
.event-hero aside,
.legal-cockpit,
.legal-review-panel,
.trust-console,
.reports-console,
.special-cockpit,
.special-visual,
.page-visual-frame,
.hero-visual-panel,
.cn-preview-frame {
  position: relative;
  z-index: 1;
}

@media (max-width: 1500px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    gap: clamp(28px, 4vw, 52px) !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero {
    width: min(100% - 48px, 1040px) !important;
    padding-top: clamp(52px, 6vw, 78px) !important;
    padding-bottom: clamp(48px, 5vw, 68px) !important;
  }

  .page-hero-shell,
  .pricing-hero {
    width: min(100% - 48px, 1040px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head {
    width: 100% !important;
    max-width: 900px !important;
    margin-right: auto !important;
    padding-right: 0 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    max-width: 900px !important;
    font-size: clamp(42px, 5vw, 68px) !important;
    line-height: 1.08 !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .pricing-head p {
    max-width: 720px !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .article-evidence-panel,
  .event-hero aside,
  .legal-cockpit,
  .legal-review-panel,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .special-visual,
  .page-visual-frame,
  .hero-visual-panel,
  .cn-preview-frame {
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    justify-self: start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    font-size: clamp(34px, 10.4vw, 44px) !important;
  }
}

.report-radar,
.special-radar {
  background:
    radial-gradient(circle, rgba(184, 255, 190, 0.2) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, rgba(159, 237, 159, 0.22) 0 1px, transparent 1px 34px);
}

.report-radar i,
.special-radar b,
.reports-score-card i {
  border-color: rgba(184, 255, 190, 0.25);
}

.report-radar b,
.special-radar em {
  background: linear-gradient(90deg, rgba(184, 255, 190, 0.96), transparent);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.42);
}

.heat {
  background: rgba(159, 237, 159, 0.08);
}

.heat-1 {
  background: linear-gradient(135deg, rgba(184, 255, 190, 0.72), rgba(75, 148, 88, 0.74));
  color: #071007;
  font-weight: 800;
}

.heat-2 {
  background: linear-gradient(135deg, rgba(126, 219, 136, 0.52), rgba(45, 105, 58, 0.54));
}

.heat-3 {
  background: linear-gradient(135deg, rgba(90, 172, 101, 0.38), rgba(28, 74, 40, 0.5));
}

.heat-4 {
  background: rgba(19, 48, 28, 0.58);
}

.heat-5 {
  background: rgba(8, 16, 10, 0.72);
}

.mention-analysis tr.is-brand {
  outline-color: rgba(184, 255, 190, 0.86);
}

.mention-analysis td:first-child i {
  background: #b8ffbe;
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.28);
}

.report-radar-grid article::before {
  background: linear-gradient(90deg, #b8ffbe var(--score), rgba(255, 255, 255, 0.08) var(--score));
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.28);
}

.reports-score-card i {
  background:
    radial-gradient(circle, rgba(184, 255, 190, 0.35) 0 5px, transparent 6px),
    repeating-radial-gradient(circle, rgba(159, 237, 159, 0.2) 0 1px, transparent 1px 28px);
}

.reports-console::before {
  background: linear-gradient(90deg, transparent, rgba(184, 255, 190, 0.16), transparent);
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .workflow-board::before,
  .workflow-scan,
  .workflow-grid-glow,
  .pricing-card.featured,
  .reports-console,
  .article-cockpit,
  .trust-console,
  .solution-command-panel,
  .index-report-preview,
  .case-stats {
    animation: none !important;
  }
}

/* Final end-of-file correction for data visuals and remaining page-specific blue accents. */
.index-kicker,
.special-signal-list span,
.index-preview-status em,
.index-report-slide > header em,
.report-hero-card span,
.report-mini-stack span {
  color: #b8ffbe;
}

.index-report-preview {
  border-color: rgba(184, 255, 190, 0.18);
  box-shadow:
    0 58px 150px rgba(0, 0, 0, 0.56),
    0 0 92px rgba(159, 237, 159, 0.12),
    0 0 0 1px rgba(184, 255, 190, 0.08) inset;
}

.index-report-viewport::before {
  background:
    linear-gradient(180deg, transparent, rgba(184, 255, 190, 0.07), transparent),
    linear-gradient(90deg, transparent, rgba(246, 243, 235, 0.1), transparent);
}

.index-report-viewport::after {
  background:
    linear-gradient(180deg, rgba(184, 255, 190, 0.82), rgba(246, 243, 235, 0.2) 34%, rgba(255, 255, 255, 0.06) 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.34);
}

.index-preview-status em,
.index-preview-float,
.index-report-slide > header em {
  border-color: rgba(184, 255, 190, 0.24);
  background: rgba(159, 237, 159, 0.075);
  color: #b8ffbe;
}

.report-hero-card {
  border-color: rgba(184, 255, 190, 0.17);
  background:
    radial-gradient(circle at 52% 52%, rgba(159, 237, 159, 0.13), transparent 29%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(2, 4, 8, 0.78);
}

.report-radar,
.special-radar {
  background:
    radial-gradient(circle, rgba(184, 255, 190, 0.2) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, rgba(159, 237, 159, 0.22) 0 1px, transparent 1px 34px);
}

.report-radar i,
.special-radar b,
.reports-score-card i {
  border-color: rgba(184, 255, 190, 0.25);
}

.report-radar b,
.special-radar em {
  background: linear-gradient(90deg, rgba(184, 255, 190, 0.96), transparent);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.42);
}

.heat {
  background: rgba(159, 237, 159, 0.08);
}

.heat-1 {
  background: linear-gradient(135deg, rgba(184, 255, 190, 0.72), rgba(75, 148, 88, 0.74));
  color: #071007;
  font-weight: 800;
}

.heat-2 {
  background: linear-gradient(135deg, rgba(126, 219, 136, 0.52), rgba(45, 105, 58, 0.54));
}

.heat-3 {
  background: linear-gradient(135deg, rgba(90, 172, 101, 0.38), rgba(28, 74, 40, 0.5));
}

.heat-4 {
  background: rgba(19, 48, 28, 0.58);
}

.heat-5 {
  background: rgba(8, 16, 10, 0.72);
}

.mention-analysis tr.is-brand {
  outline-color: rgba(184, 255, 190, 0.86);
}

.mention-analysis td:first-child i {
  background: #b8ffbe;
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.28);
}

.report-radar-grid article::before {
  background: linear-gradient(90deg, #b8ffbe var(--score), rgba(255, 255, 255, 0.08) var(--score));
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.28);
}

.reports-score-card i {
  background:
    radial-gradient(circle, rgba(184, 255, 190, 0.35) 0 5px, transparent 6px),
    repeating-radial-gradient(circle, rgba(159, 237, 159, 0.2) 0 1px, transparent 1px 28px);
}

.reports-console::before {
  background: linear-gradient(90deg, transparent, rgba(184, 255, 190, 0.16), transparent);
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .workflow-board::before,
  .workflow-scan,
  .workflow-grid-glow,
  .pricing-card.featured,
  .reports-console,
  .article-cockpit,
  .trust-console,
  .solution-command-panel,
  .index-report-preview,
  .case-stats {
    animation: none !important;
  }
}

/* Final override for data visuals and remaining page-specific blue accents. */
.index-kicker,
.special-signal-list span,
.index-preview-status em,
.index-report-slide > header em,
.report-hero-card span,
.report-mini-stack span {
  color: #b8ffbe;
}

.index-report-preview {
  border-color: rgba(184, 255, 190, 0.18);
  box-shadow:
    0 58px 150px rgba(0, 0, 0, 0.56),
    0 0 92px rgba(159, 237, 159, 0.12),
    0 0 0 1px rgba(184, 255, 190, 0.08) inset;
}

.index-report-viewport::before {
  background:
    linear-gradient(180deg, transparent, rgba(184, 255, 190, 0.07), transparent),
    linear-gradient(90deg, transparent, rgba(246, 243, 235, 0.1), transparent);
}

.index-report-viewport::after {
  background:
    linear-gradient(180deg, rgba(184, 255, 190, 0.82), rgba(246, 243, 235, 0.2) 34%, rgba(255, 255, 255, 0.06) 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.34);
}

.index-preview-status em,
.index-preview-float,
.index-report-slide > header em {
  border-color: rgba(184, 255, 190, 0.24);
  background: rgba(159, 237, 159, 0.075);
  color: #b8ffbe;
}

.report-hero-card {
  border-color: rgba(184, 255, 190, 0.17);
  background:
    radial-gradient(circle at 52% 52%, rgba(159, 237, 159, 0.13), transparent 29%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(2, 4, 8, 0.78);
}

.report-radar,
.special-radar {
  background:
    radial-gradient(circle, rgba(184, 255, 190, 0.2) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, rgba(159, 237, 159, 0.22) 0 1px, transparent 1px 34px);
}

.report-radar i,
.special-radar b,
.reports-score-card i {
  border-color: rgba(184, 255, 190, 0.25);
}

.report-radar b,
.special-radar em {
  background: linear-gradient(90deg, rgba(184, 255, 190, 0.96), transparent);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.42);
}

.heat {
  background: rgba(159, 237, 159, 0.08);
}

.heat-1 {
  background: linear-gradient(135deg, rgba(184, 255, 190, 0.72), rgba(75, 148, 88, 0.74));
  color: #071007;
  font-weight: 800;
}

.heat-2 {
  background: linear-gradient(135deg, rgba(126, 219, 136, 0.52), rgba(45, 105, 58, 0.54));
}

.heat-3 {
  background: linear-gradient(135deg, rgba(90, 172, 101, 0.38), rgba(28, 74, 40, 0.5));
}

.heat-4 {
  background: rgba(19, 48, 28, 0.58);
}

.heat-5 {
  background: rgba(8, 16, 10, 0.72);
}

.mention-analysis tr.is-brand {
  outline-color: rgba(184, 255, 190, 0.86);
}

.mention-analysis td:first-child i {
  background: #b8ffbe;
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.28);
}

.report-radar-grid article::before {
  background: linear-gradient(90deg, #b8ffbe var(--score), rgba(255, 255, 255, 0.08) var(--score));
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.28);
}

.reports-score-card i {
  background:
    radial-gradient(circle, rgba(184, 255, 190, 0.35) 0 5px, transparent 6px),
    repeating-radial-gradient(circle, rgba(159, 237, 159, 0.2) 0 1px, transparent 1px 28px);
}

.reports-console::before {
  background: linear-gradient(90deg, transparent, rgba(184, 255, 190, 0.16), transparent);
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card.featured,
  .reports-console,
  .article-cockpit,
  .trust-console,
  .solution-command-panel,
  .index-report-preview,
  .case-stats {
    animation: none !important;
  }
}

/* Data visual color correction */
.index-kicker,
.special-signal-list span,
.index-preview-status em,
.index-report-slide > header em,
.report-hero-card span,
.report-mini-stack span {
  color: #b8ffbe;
}

.index-landing::before {
  background:
    radial-gradient(circle at 73% 12%, rgba(159, 237, 159, 0.16), transparent 28%),
    radial-gradient(circle at 54% 60%, rgba(246, 243, 235, 0.055), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 104px 100%,
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 100% 74px;
}

.index-landing::after {
  border-color: rgba(184, 255, 190, 0.11);
  background: radial-gradient(circle, rgba(159, 237, 159, 0.07), transparent 66%);
}

.index-report-preview {
  border-color: rgba(184, 255, 190, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 118px 100%,
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 100% 86px,
    radial-gradient(circle at 18% 28%, rgba(159, 237, 159, 0.18), transparent 31%),
    radial-gradient(circle at 78% 18%, rgba(246, 243, 235, 0.06), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(7, 8, 10, 0.94);
  box-shadow:
    0 58px 150px rgba(0, 0, 0, 0.56),
    0 0 92px rgba(159, 237, 159, 0.12),
    0 0 0 1px rgba(184, 255, 190, 0.08) inset;
}

.index-report-viewport::before {
  background:
    linear-gradient(180deg, transparent, rgba(184, 255, 190, 0.07), transparent),
    linear-gradient(90deg, transparent, rgba(246, 243, 235, 0.1), transparent);
}

.index-report-viewport::after {
  background:
    linear-gradient(180deg, rgba(184, 255, 190, 0.82), rgba(246, 243, 235, 0.2) 34%, rgba(255, 255, 255, 0.06) 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.34);
}

.index-report-preview > .index-window-top::after,
.special-signal-list i {
  background:
    linear-gradient(90deg, rgba(184, 255, 190, 0.28), rgba(246, 243, 235, 0.46)),
    rgba(255, 255, 255, 0.06);
}

.index-preview-status em,
.index-preview-float,
.index-report-slide > header em {
  border-color: rgba(184, 255, 190, 0.24);
  background: rgba(159, 237, 159, 0.075);
  color: #b8ffbe;
}

.report-hero-card {
  border-color: rgba(184, 255, 190, 0.17);
  background:
    radial-gradient(circle at 52% 52%, rgba(159, 237, 159, 0.13), transparent 29%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(2, 4, 8, 0.78);
}

.report-radar,
.special-radar {
  background:
    radial-gradient(circle, rgba(184, 255, 190, 0.2) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, rgba(159, 237, 159, 0.22) 0 1px, transparent 1px 34px);
}

.report-radar i,
.special-radar b,
.reports-score-card i {
  border-color: rgba(184, 255, 190, 0.25);
}

.report-radar b,
.special-radar em {
  background: linear-gradient(90deg, rgba(184, 255, 190, 0.96), transparent);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.42);
}

.heat {
  background: rgba(159, 237, 159, 0.08);
}

.heat-1 {
  background: linear-gradient(135deg, rgba(184, 255, 190, 0.72), rgba(75, 148, 88, 0.74));
  color: #071007;
  font-weight: 800;
}

.heat-2 {
  background: linear-gradient(135deg, rgba(126, 219, 136, 0.52), rgba(45, 105, 58, 0.54));
}

.heat-3 {
  background: linear-gradient(135deg, rgba(90, 172, 101, 0.38), rgba(28, 74, 40, 0.5));
}

.heat-4 {
  background: rgba(19, 48, 28, 0.58);
}

.heat-5 {
  background: rgba(8, 16, 10, 0.72);
}

.mention-analysis tr.is-brand {
  outline-color: rgba(184, 255, 190, 0.86);
}

.mention-analysis td:first-child i,
.report-radar-grid article::before {
  background: #b8ffbe;
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.28);
}

.report-radar-grid article::before {
  background: linear-gradient(90deg, #b8ffbe var(--score), rgba(255, 255, 255, 0.08) var(--score));
}

.reports-score-card i {
  background:
    radial-gradient(circle, rgba(184, 255, 190, 0.35) 0 5px, transparent 6px),
    repeating-radial-gradient(circle, rgba(159, 237, 159, 0.2) 0 1px, transparent 1px 28px);
}

.reports-console::before {
  background: linear-gradient(90deg, transparent, rgba(184, 255, 190, 0.16), transparent);
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card.featured,
  .reports-console,
  .article-cockpit,
  .trust-console,
  .solution-command-panel,
  .index-report-preview,
  .case-stats {
    animation: none !important;
  }
}

.reports-console::before,
.article-cockpit::before,
.solution-command-panel::before {
  animation: card-line-scan 6.8s ease-in-out infinite;
}

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

  .home-proof-section,
  .home-market-warning,
  .home-industry-grid article,
  .home-proof-copy,
  .home-proof-stats div,
  .home-capability-head,
  .home-capability-row,
  .shot-bars i,
  .index-report-panel {
    opacity: 1;
    transform: none;
  }
}

.replica-page {
  padding: 24px clamp(18px, 4vw, 44px) 42px;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: calc(100dvh - 100px);
  padding: clamp(24px, 6vw, 72px) 0 34px;
}

.page-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 700px;
}

.page-hero-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.7;
}

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

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: var(--soft);
  font-size: 12px;
}

.cn-preview-frame,
.page-visual-frame,
.hero-visual-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 219, 244, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(19, 19, 16, 0.98), rgba(11, 11, 10, 0.98));
  box-shadow: var(--shadow);
}

.page-visual-frame {
  display: grid;
}

.replica-shot {
  display: none;
}

.cn-preview-frame {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.cn-preview-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  min-height: 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2c2c27;
}

.cn-preview-top strong {
  color: #fff;
  font-size: 15px;
}

.cn-preview-top span {
  color: #8d8d86;
  font-size: 12px;
}

.cn-preview-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cn-preview-body section {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: center;
  padding: 16px;
  border: 1px solid #2c2c27;
  border-radius: 6px;
  background: #11110f;
}

.cn-preview-body span,
.cn-preview-body small,
.cn-preview-list span {
  color: #8d8d86;
  font-size: 12px;
}

.cn-preview-body strong {
  color: #fff;
  font-size: 34px;
}

.cn-preview-chart {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 170px;
  padding: 20px;
  border: 1px solid #2c2c27;
  border-radius: 6px;
  background:
    linear-gradient(rgba(246, 243, 235, 0.06) 1px, transparent 1px) 0 0 / 100% 34px,
    #11110f;
}

.cn-preview-chart i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: #f6f3eb;
}

.cn-preview-chart i:nth-child(1) { height: 42%; }
.cn-preview-chart i:nth-child(2) { height: 58%; }
.cn-preview-chart i:nth-child(3) { height: 72%; }
.cn-preview-chart i:nth-child(4) { height: 66%; }
.cn-preview-chart i:nth-child(5) { height: 88%; }

.cn-preview-list {
  display: grid;
  gap: 10px;
}

.cn-preview-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #2c2c27;
  border-radius: 6px;
  background: #11110f;
}

.cn-preview-list strong {
  color: #f6f3eb;
  font-size: 13px;
  text-align: right;
}

.page-visual-frame img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: top;
}

.page-visual-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 14px;
  border-top: 1px solid rgba(198, 219, 244, 0.08);
  color: var(--muted);
  font-size: 12px;
}

.page-visual-frame.figma {
  border-color: rgba(236, 236, 236, 0.15);
}

.hero-visual-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cn-panel-title,
.cn-panel-row {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(198, 219, 244, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.cn-panel-title {
  display: flex;
  align-items: center;
  color: #dceaf9;
  font-size: 13px;
  font-weight: 700;
}

.cn-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cn-panel-metrics span {
  display: grid;
  gap: 6px;
  min-height: 92px;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(198, 219, 244, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.015);
  color: var(--muted);
  font-size: 12px;
}

.cn-panel-metrics strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.cn-panel-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 146px;
  padding: 16px;
  border: 1px solid rgba(198, 219, 244, 0.09);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at 50% 0%, rgba(119, 168, 255, 0.12), transparent 42%);
}

.cn-panel-chart i {
  flex: 1;
  min-width: 20px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, rgba(140, 240, 210, 1), rgba(119, 168, 255, 1));
}

.cn-panel-chart i:nth-child(1) { height: 40%; }
.cn-panel-chart i:nth-child(2) { height: 56%; }
.cn-panel-chart i:nth-child(3) { height: 72%; }
.cn-panel-chart i:nth-child(4) { height: 64%; }
.cn-panel-chart i:nth-child(5) { height: 88%; }

.cn-panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d4e3f7;
  font-size: 13px;
}

.cn-panel-row strong {
  color: var(--accent);
}

.rail-section,
.directory-section,
.content-section,
.form-section,
.pricing-hero {
  padding: 74px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.38fr) minmax(0, 1fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0;
}

.rail-section .section-heading h2 {
  font-size: clamp(28px, 3.6vw, 50px);
}

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

.feature-tile,
.page-card,
.compact-link,
.geo-panel,
.geo-project-card,
.geo-kpi,
.geo-module-brief,
.geo-search-hero,
.geo-security,
.geo-steps,
.geo-empty,
.geo-empty-inline {
  border: 1px solid rgba(198, 219, 244, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.feature-tile,
.page-card {
  display: grid;
  gap: 10px;
  min-height: 188px;
  padding: 22px;
  border-radius: 20px;
}

.feature-tile span,
.page-card span,
.geo-module-brief span,
.geo-brief-copy span,
.geo-kpi em {
  color: #8fb0df;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-tile strong,
.page-card strong {
  font-size: 24px;
  line-height: 1.16;
}

.feature-tile small,
.page-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.quick-actions {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(198, 219, 244, 0.1);
  border-radius: 20px;
}

.mini-stats div {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
}

.mini-stats strong {
  font-size: 32px;
}

.mini-stats span {
  color: var(--muted);
}

.content-section {
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 0%, rgba(119, 168, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(7, 11, 17, 0.96), rgba(5, 7, 11, 0.98));
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: start;
}

.toc-panel {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 20px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(198, 219, 244, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

dl,
dd {
  margin: 0;
}

.toc-panel dl {
  display: grid;
  gap: 14px;
}

.toc-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.toc-panel dd {
  margin-top: 4px;
  color: var(--ink);
  font-size: 14px;
}

.toc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.toc-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--soft);
  font-size: 13px;
}

.article-panel {
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.content-command-bar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(198, 219, 244, 0.11);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(140, 240, 210, 0.11), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 72px 100%,
    rgba(255, 255, 255, 0.028);
  box-shadow: var(--glass-edge);
}

.content-command-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0 42%, rgba(159, 237, 159, 0.1) 50%, transparent 58% 100%);
  opacity: 0.7;
  transform: translateX(-38%);
}

.content-command-bar > div:first-child {
  display: grid;
  gap: 8px;
}

.content-command-bar > div:first-child span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.content-command-bar > div:first-child strong {
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.12;
}

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

.content-status-grid p {
  display: grid;
  gap: 8px;
  min-height: 74px;
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(198, 219, 244, 0.09);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
}

.content-status-grid span,
.content-insight-strip span,
.content-insight-strip em {
  color: var(--muted);
  font-size: 12px;
}

.content-status-grid strong {
  color: #f8f7f2;
  font-size: 14px;
}

.content-insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(198, 219, 244, 0.09);
  border-radius: 8px;
  background: rgba(198, 219, 244, 0.08);
}

.content-insight-strip div {
  display: grid;
  gap: 7px;
  min-height: 120px;
  padding: 18px;
  background:
    radial-gradient(circle at 84% 0%, rgba(159, 237, 159, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.022);
}

.content-insight-strip strong {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.95;
}

.heading-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.heading-list h2 {
  position: relative;
  min-height: 112px;
  margin: 0;
  padding: 18px 18px 22px;
  border-radius: 8px;
  border: 1px solid rgba(198, 219, 244, 0.1);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 58%),
    rgba(255, 255, 255, 0.025);
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.16;
}

.heading-list h2::before {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.42);
}

.body-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.body-list p {
  position: relative;
  min-height: 90px;
  margin: 0;
  padding: 18px 18px 18px 42px;
  border-radius: 8px;
  border: 1px solid rgba(198, 219, 244, 0.08);
  background:
    linear-gradient(90deg, rgba(159, 237, 159, 0.055), transparent 28%),
    rgba(255, 255, 255, 0.02);
  color: var(--soft);
  font-size: 15px;
  line-height: 1.7;
}

.body-list p::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(159, 237, 159, 0.48);
}

.directory-section {
  background:
    radial-gradient(circle at 80% 0%, rgba(140, 240, 210, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(7, 11, 17, 0.98), rgba(5, 7, 11, 0.98));
}

.directory-controls {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.search-field {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.search-field input,
.lead-form input,
.lead-form select,
.lead-form textarea,
.geo-field input,
.geo-field select,
.geo-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(198, 219, 244, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  outline: none;
}

.lead-form textarea,
.geo-field textarea {
  min-height: 104px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
}

.search-field input:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.geo-field input:focus,
.geo-field select:focus,
.geo-field textarea:focus {
  border-color: rgba(140, 240, 210, 0.65);
  box-shadow: 0 0 0 3px rgba(140, 240, 210, 0.18);
}

.group-tabs {
  gap: 8px;
  flex-wrap: wrap;
}

.group-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(198, 219, 244, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.group-tabs button.selected {
  border-color: rgba(140, 240, 210, 0.5);
  background: rgba(140, 240, 210, 0.08);
  color: #dffcf2;
}

.page-grid {
  column-count: 2;
  column-gap: 14px;
}

.directory-group {
  display: grid;
  gap: 10px;
  min-width: 0;
  break-inside: avoid;
  margin: 0 0 14px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(198, 219, 244, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.directory-group header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(198, 219, 244, 0.08);
}

.directory-group header span {
  color: #8fb0df;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.directory-group header strong {
  color: var(--muted);
  font-size: 13px;
}

.directory-group > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-card {
  min-height: 82px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.page-card strong {
  font-size: 14px;
  line-height: 1.28;
}

.page-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.directory-note,
.empty-state,
.directory-toggle {
  margin-top: 20px;
  color: var(--muted);
}

.directory-toggle {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(198, 219, 244, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  cursor: pointer;
}

.compact-directory {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 52px);
  padding: 58px 0;
  border-top: 1px solid rgba(198, 219, 244, 0.08);
  background: linear-gradient(180deg, rgba(6, 9, 14, 0.96), rgba(5, 7, 11, 0.98));
}

.compact-directory h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 44px);
}

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

.compact-link {
  display: grid;
  gap: 10px;
  min-height: 104px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.compact-link strong {
  font-size: 15px;
  line-height: 1.3;
}

.compact-link small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.compact-back {
  grid-column: 2;
  justify-self: start;
}

.collection-hero,
.product-hero,
.solution-hero,
.case-hero,
.article-hero,
.event-hero,
.legal-page,
.legal-hero,
.legal-summary-strip {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.collection-hero,
.solution-hero,
.case-hero,
.event-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(320px, 0.36fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
  min-height: 430px;
  padding: 78px 0 58px;
  border-bottom: 1px solid #24241f;
}

.solution-hero {
  grid-template-columns: minmax(0, 0.64fr) minmax(340px, 0.36fr);
  align-items: center;
}

.case-hero {
  grid-template-columns: minmax(0, 0.66fr) minmax(300px, 0.34fr);
  align-items: center;
  min-height: 500px;
}

.collection-hero > :first-child,
.solution-hero > :first-child,
.case-hero > :first-child,
.event-hero > :first-child {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.collection-hero span,
.product-copy span,
.solution-hero span,
.case-hero span,
.article-hero span,
.event-hero span {
  color: #8d8d86;
  font-size: 13px;
}

.collection-hero h1,
.product-copy h1,
.solution-hero h1,
.case-hero h1,
.article-hero h1,
.event-hero h1 {
  max-width: min(780px, 100%);
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

.case-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.1vw, 68px);
  line-height: 1.04;
  text-wrap: pretty;
}

.collection-hero p,
.product-copy p,
.solution-hero p,
.case-hero p,
.article-hero p,
.event-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #bdbbb4;
  font-size: 18px;
  line-height: 1.55;
}

.collection-workbench,
.event-hero aside,
.case-stats,
.solution-metrics,
.solution-command-panel {
  border: 1px solid rgba(246, 243, 235, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    #11110f;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.collection-workbench {
  position: relative;
  display: grid;
  gap: 12px;
  align-self: center;
  min-height: 0;
  padding: 18px;
  border-color: rgba(159, 237, 159, 0.18);
  background:
    radial-gradient(circle at 80% 8%, rgba(159, 237, 159, 0.16), transparent 24%),
    radial-gradient(circle at 16% 92%, rgba(121, 166, 255, 0.08), transparent 28%),
    linear-gradient(120deg, rgba(246, 243, 235, 0.075), transparent 42%),
    linear-gradient(rgba(246, 243, 235, 0.035) 1px, transparent 1px) 0 0 / 100% 38px,
    #10100e;
  box-shadow: 0 32px 94px rgba(0, 0, 0, 0.4), 0 0 44px rgba(159, 237, 159, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.075), inset 0 0 0 1px rgba(159, 237, 159, 0.035);
  overflow: hidden;
}

.collection-workbench::after,
.insight-panel::after,
.solution-command-panel::after,
.special-cockpit::after,
.article-cockpit::after,
.trust-console::after,
.legal-cockpit::after,
.event-cockpit::after,
.case-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.075) 50%, transparent 58% 100%),
    radial-gradient(circle at 82% 10%, rgba(159, 237, 159, 0.08), transparent 26%);
  opacity: 0.35;
  transform: translateX(-18%);
  animation: panel-sheen 7s ease-in-out infinite;
}

.collection-workbench-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #2b2b26;
}

.collection-workbench-top span,
.collection-workbench-metrics span,
.collection-workbench-list span {
  color: #8d8d86;
  font-size: 12px;
}

.collection-workbench-top strong {
  color: #f8f7f2;
  font-size: 14px;
  text-align: right;
}

.collection-workbench-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.collection-workbench-metrics div {
  display: grid;
  gap: 8px;
  min-height: 74px;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  border-radius: 5px;
  background:
    radial-gradient(circle at 82% 14%, rgba(159, 237, 159, 0.08), transparent 36%),
    rgba(0, 0, 0, 0.2);
}

.collection-workbench-metrics strong {
  color: #f8f7f2;
  font-size: 22px;
  line-height: 1;
}

.collection-signal {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(159, 237, 159, 0.055), transparent 68%),
    #0b0b09;
  box-shadow: inset 0 0 30px rgba(159, 237, 159, 0.025);
}

.collection-signal i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #eaffea, rgba(159, 237, 159, 0.42));
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.16);
}

.collection-signal i:nth-child(1) { height: 34%; }
.collection-signal i:nth-child(2) { height: 52%; }
.collection-signal i:nth-child(3) { height: 76%; }
.collection-signal i:nth-child(4) { height: 62%; }
.collection-signal i:nth-child(5) { height: 88%; }
.collection-signal i:nth-child(6) { height: 70%; }

.collection-workbench-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #2b2b26;
  border-radius: 5px;
  background: #2b2b26;
}

.collection-workbench-list p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 10px 12px;
  background: #11110f;
}

.collection-workbench-list strong {
  color: #f6f3eb;
  font-size: 12px;
}

.collection-showcase {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 100px;
}

.collection-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  min-height: 300px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(246, 243, 235, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(159, 237, 159, 0.12), transparent 28%),
    radial-gradient(circle at 14% 100%, rgba(121, 166, 255, 0.065), transparent 30%),
    linear-gradient(rgba(246, 243, 235, 0.04) 1px, transparent 1px),
    #0f0f0d;
  background-size: auto, 100% 42px, auto;
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.collection-feature-card span,
.collection-filter-row span,
.collection-card span {
  color: #8d8d86;
  font-size: 13px;
}

.collection-feature-card strong {
  display: block;
  max-width: 760px;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.collection-feature-card p {
  max-width: 660px;
  margin: 18px 0 0;
  color: #bdbbb4;
  font-size: 17px;
  line-height: 1.6;
}

.collection-feature-card b {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 5px;
  background: #f6f3eb;
  color: #111;
  font-size: 14px;
}

.collection-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 16px;
}

.collection-filter-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #2c2c27;
  border-radius: 999px;
  background: #11110f;
}

.collection-filter-row .active {
  border-color: #f6f3eb;
  background: #f6f3eb;
  color: #111;
}

.collection-scenario-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 16px;
  border: 1px solid rgba(246, 243, 235, 0.09);
  background: rgba(246, 243, 235, 0.09);
}

.collection-scenario-strip article {
  display: grid;
  align-content: start;
  min-height: 158px;
  padding: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(159, 237, 159, 0.065), transparent 30%),
    linear-gradient(180deg, rgba(121, 166, 255, 0.045), transparent 64%),
    #0d0d0b;
}

.collection-scenario-strip span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 800;
}

.collection-scenario-strip strong {
  margin-top: 28px;
  color: #f8f7f2;
  font-size: 18px;
  line-height: 1.25;
}

.collection-scenario-strip p {
  margin: 12px 0 0;
  color: #9d9fa8;
  font-size: 14px;
  line-height: 1.6;
}

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

.collection-card {
  display: grid;
  position: relative;
  gap: 14px;
  min-height: 250px;
  padding: 22px;
  border: 1px solid rgba(246, 243, 235, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 8%, rgba(159, 237, 159, 0.13), transparent 26%),
    radial-gradient(circle at 12% 100%, rgba(121, 166, 255, 0.075), transparent 28%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.055), transparent 42%),
    #11110f;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.28), var(--glass-edge);
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1), border-color 260ms cubic-bezier(0.32, 0.72, 0, 1), box-shadow 260ms cubic-bezier(0.32, 0.72, 0, 1);
}

.collection-card::after,
.pricing-card::after,
.solution-steps article::after,
.case-story article::after,
.article-action-grid article::after,
.article-insight-list article::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), transparent 18%),
    linear-gradient(90deg, rgba(159, 237, 159, 0.08), transparent 34%, transparent 66%, rgba(246, 243, 235, 0.035));
  opacity: 0.72;
}

.solution-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.solution-command-panel {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: stretch;
  min-height: 390px;
  padding: 22px;
  background:
    radial-gradient(circle at 86% 12%, rgba(121, 166, 255, 0.16), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 42px,
    #0d0f12;
  box-shadow: 0 34px 110px rgba(36, 67, 163, 0.16), var(--glass-edge);
  overflow: hidden;
}

.solution-command-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(121, 166, 255, 0.08);
  pointer-events: none;
}

.solution-command-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  color: #798191;
  font-size: 12px;
}

.solution-command-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.solution-command-top strong {
  margin-left: auto;
  color: #dfe6f4;
  font-size: 12px;
}

.solution-command-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.solution-command-metrics p {
  display: grid;
  gap: 10px;
  min-height: 118px;
  margin: 0;
  padding: 18px 14px;
  background:
    radial-gradient(circle at 72% 18%, rgba(215, 251, 54, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.035);
}

.solution-command-metrics strong {
  color: #f7fbff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.95;
}

.solution-command-metrics span {
  color: #8d93a1;
  font-size: 12px;
}

.solution-command-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.solution-command-list p {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.035);
}

.solution-command-list span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 700;
}

.solution-command-list strong {
  color: #dfe6f4;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.solution-summary-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 18px;
  border: 1px solid #2c2c27;
  background: #2c2c27;
}

.solution-summary-band p {
  display: grid;
  align-content: space-between;
  gap: 34px;
  min-height: 148px;
  margin: 0;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(121, 166, 255, 0.055), transparent 70%),
    #0d0d0b;
}

.solution-summary-band span {
  color: #8d8d86;
  font-size: 12px;
}

.solution-summary-band strong {
  color: #f8f7f2;
  font-size: 18px;
  line-height: 1.28;
}

.collection-card::before,
.pricing-card::before,
.capability-grid article::before,
.solution-steps article::before,
.case-story article::before,
.contact-cards article::before,
.article-action-grid article::before,
.article-insight-list article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 42%, rgba(159, 237, 159, 0.11) 50%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 220ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.collection-card:hover,
.home-capability-row:hover,
.pricing-card:hover,
.capability-grid article:hover,
.solution-steps article:hover,
.case-story article:hover,
.contact-cards article:hover,
.article-action-grid article:hover,
.article-insight-list article:hover {
  border-color: rgba(159, 237, 159, 0.28);
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}

.collection-card:hover::before,
.pricing-card:hover::before,
.capability-grid article:hover::before,
.solution-steps article:hover::before,
.case-story article:hover::before,
.contact-cards article:hover::before,
.article-action-grid article:hover::before,
.article-insight-list article:hover::before {
  opacity: 1;
  transform: translateX(45%);
}

.capability-grid span,
.solution-steps span,
.case-story span,
.event-agenda span {
  color: #8d8d86;
  font-size: 13px;
}

.collection-card strong {
  color: #fff;
  font-size: 23px;
  line-height: 1.18;
}

.collection-card p {
  margin: 0;
  color: #aaa79f;
  font-size: 14px;
  line-height: 1.55;
}

.collection-card em {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: #5f5e59;
  font-size: 12px;
  font-style: normal;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 0.38fr);
  gap: clamp(44px, 5vw, 76px);
  align-items: center;
  padding: 82px 0 74px;
}

.product-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 620px;
}

.product-copy h1 {
  max-width: 620px;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.06;
}

.product-copy p {
  max-width: 560px;
}

.insight-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 440px;
  justify-self: end;
  min-height: 470px;
  padding: 22px;
  border: 1px solid rgba(159, 237, 159, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 10%, rgba(159, 237, 159, 0.17), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(121, 166, 255, 0.08), transparent 32%),
    radial-gradient(circle at 78% 10%, rgba(246, 243, 235, 0.1), transparent 28%),
    linear-gradient(rgba(246, 243, 235, 0.04) 1px, transparent 1px) 0 0 / 100% 48px,
    #10100e;
  box-shadow: var(--shadow-green), 0 44px 128px rgba(0, 0, 0, 0.4), var(--glass-edge);
}

.insight-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2b2b26;
}

.insight-top span,
.insight-metrics span,
.insight-list span {
  color: #8d8d86;
  font-size: 12px;
}

.insight-top strong {
  color: #f8f7f2;
  font-size: 14px;
}

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

.insight-metrics div {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(246, 243, 235, 0.11);
  border-radius: 5px;
  background:
    radial-gradient(circle at 82% 12%, rgba(159, 237, 159, 0.08), transparent 38%),
    rgba(0, 0, 0, 0.22);
}

.insight-metrics strong {
  color: #f8f7f2;
  font-size: 32px;
  line-height: 1;
}

.insight-chart {
  display: flex;
  align-items: end;
  gap: 14px;
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(246, 243, 235, 0.11);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(159, 237, 159, 0.055), transparent 72%),
    #0b0b09;
}

.insight-chart i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #fffdf3, rgba(159, 237, 159, 0.55));
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.14);
}

.insight-chart i:nth-child(1) { height: 38%; }
.insight-chart i:nth-child(2) { height: 54%; }
.insight-chart i:nth-child(3) { height: 76%; }
.insight-chart i:nth-child(4) { height: 62%; }
.insight-chart i:nth-child(5) { height: 88%; }

.insight-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid #2b2b26;
  border-radius: 5px;
  background: #2b2b26;
}

.insight-list p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 13px 14px;
  background: #11110f;
}

.insight-list strong {
  color: #f6f3eb;
  font-size: 12px;
}

.product-proof-band,
.case-result-band {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 18px;
  border: 1px solid rgba(246, 243, 235, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(159, 237, 159, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 64%),
    #0d0d0b;
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

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

.product-proof-band div {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(246, 243, 235, 0.1);
  background: linear-gradient(180deg, rgba(246, 243, 235, 0.022), transparent 70%);
}

.product-proof-band div:last-child {
  border-right: 0;
}

.product-proof-band strong {
  color: #f8f7f2;
  font-size: 20px;
  line-height: 1.25;
}

.product-proof-band span,
.case-result-band p {
  color: #8d8d86;
  line-height: 1.65;
}

.product-flow-section {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 18px;
  padding: 44px 0 24px;
  border-top: 1px solid rgba(246, 243, 235, 0.08);
}

.product-flow-section aside {
  position: sticky;
  top: 92px;
  align-self: start;
}

.product-flow-section aside span,
.product-flow-grid span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 800;
}

.product-flow-section h2 {
  margin: 16px 0 0;
  color: #f8f7f2;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.product-flow-section aside p {
  margin: 18px 0 0;
  color: #9d9fa8;
  line-height: 1.7;
}

.product-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(246, 243, 235, 0.09);
  background: rgba(246, 243, 235, 0.09);
}

.product-flow-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 24px;
  background:
    radial-gradient(circle at 92% 12%, rgba(159, 237, 159, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(121, 166, 255, 0.065), transparent 64%),
    #0d0d0b;
  overflow: hidden;
}

.product-flow-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.065) 50%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-55%);
  transition: opacity 220ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-flow-grid article:hover::after {
  opacity: 1;
  transform: translateX(55%);
}

.product-flow-grid strong {
  margin-top: 28px;
  color: #f8f7f2;
  font-size: 20px;
  line-height: 1.25;
}

.product-flow-grid p {
  margin: 14px 0 0;
  color: #9d9fa8;
  font-size: 14px;
  line-height: 1.65;
}

.special-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.48fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  width: min(1220px, calc(100% - 48px));
  min-height: calc(100dvh - 96px);
  margin: 0 auto;
  padding: clamp(46px, 6vw, 86px) 0 70px;
  border-bottom: 1px solid rgba(246, 243, 235, 0.1);
}

.special-copy {
  display: grid;
  justify-items: start;
}

.special-copy > span,
.special-work-section aside > span,
.special-related span {
  color: #79a6ff;
  font-size: 13px;
  font-weight: 700;
}

.special-copy h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: #f8f7f2;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
}

.special-copy p {
  max-width: 640px;
  margin: 24px 0 0;
  color: #a7a7a0;
  font-size: 18px;
  line-height: 1.7;
}

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

.special-cockpit {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 520px;
  padding: 22px;
  border: 1px solid rgba(121, 166, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%, rgba(36, 67, 163, 0.22), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 46px,
    rgba(7, 8, 10, 0.94);
  box-shadow: 0 44px 130px rgba(0, 0, 0, 0.42), var(--glass-edge);
}

.special-cockpit::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(215, 251, 54, 0.055), transparent),
    radial-gradient(circle at 50% 55%, rgba(215, 251, 54, 0.08), transparent 34%);
  opacity: 0.7;
}

.special-cockpit > * {
  position: relative;
  z-index: 1;
}

.special-cockpit-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
}

.special-cockpit-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.special-cockpit-top strong {
  margin-left: auto;
  color: #dfe6f4;
  font-size: 12px;
}

.special-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.special-metrics p {
  display: grid;
  gap: 10px;
  min-height: 112px;
  margin: 0;
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.035);
}

.special-metrics strong {
  color: #f7fbff;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 0.95;
}

.special-metrics span {
  color: #8d93a1;
  font-size: 12px;
}

.special-radar {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle, rgba(215, 251, 54, 0.12) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, rgba(121, 166, 255, 0.24) 0 1px, transparent 1px 40px),
    rgba(0, 0, 0, 0.18);
}

.special-radar b {
  position: absolute;
  border: 1px solid rgba(121, 166, 255, 0.24);
  border-radius: 50%;
}

.special-radar b:nth-child(1) {
  width: 150px;
  height: 150px;
}

.special-radar b:nth-child(2) {
  width: 96px;
  height: 96px;
}

.special-radar b:nth-child(3) {
  width: 42px;
  height: 42px;
}

.special-radar em {
  width: 130px;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(215, 251, 54, 0.95), transparent);
  box-shadow: 0 0 18px rgba(215, 251, 54, 0.4);
  animation: radar-spin 5.6s linear infinite;
}

.special-signal-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.special-signal-list p {
  display: grid;
  grid-template-columns: 42px 1fr 70px;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.035);
}

.special-signal-list span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 700;
}

.special-signal-list strong {
  color: #dfe6f4;
  font-size: 13px;
}

.special-signal-list i {
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2448b0, #d7fb36);
}

.special-module-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(246, 243, 235, 0.1);
}

.special-module-strip article {
  display: grid;
  align-content: space-between;
  gap: 34px;
  min-height: 158px;
  padding: 24px;
  background:
    radial-gradient(circle at 84% 12%, rgba(121, 166, 255, 0.1), transparent 34%),
    #0d0d0b;
}

.special-module-strip span {
  color: #8d8d86;
  font-size: 12px;
}

.special-module-strip strong {
  color: #f8f7f2;
  font-size: 20px;
  line-height: 1.25;
}

.special-work-section,
.special-related {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.special-work-section h2,
.special-related h2 {
  margin: 16px 0 0;
  color: #f8f7f2;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.06;
}

.special-work-section aside p {
  margin: 18px 0 0;
  color: #9d9fa8;
  line-height: 1.7;
}

.special-workflow {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(246, 243, 235, 0.1);
}

.special-workflow article {
  display: grid;
  grid-template-columns: 58px minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 132px;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(215, 251, 54, 0.055), transparent 32%),
    #0d0d0b;
}

.special-workflow span {
  color: #79a6ff;
  font-size: 13px;
  font-weight: 700;
}

.special-workflow strong {
  color: #f8f7f2;
  font-size: 20px;
}

.special-workflow p {
  margin: 0;
  color: #9d9fa8;
  line-height: 1.65;
}

.special-related {
  padding-top: 0;
}

.special-related > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.special-related-link {
  display: grid;
  gap: 14px;
  min-height: 142px;
  padding: 22px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(255, 255, 255, 0.025);
}

.special-related-link strong {
  color: #f8f7f2;
  font-size: 18px;
  line-height: 1.25;
}

.special-related-link small {
  color: #9d9fa8;
  font-size: 13px;
  line-height: 1.55;
}

.index-landing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.58fr) minmax(660px, 1.18fr);
  gap: clamp(54px, 6.8vw, 102px);
  align-items: start;
  width: min(1340px, calc(100% - 48px));
  min-height: calc(100dvh - 96px);
  margin: 0 auto;
  padding: clamp(28px, 4.4vw, 58px) 0 74px;
  overflow: hidden;
}

.index-landing::before {
  content: "";
  position: absolute;
  inset: -28px -7vw 0;
  z-index: -1;
  background:
    radial-gradient(circle at 73% 12%, rgba(35, 66, 178, 0.24), transparent 28%),
    radial-gradient(circle at 54% 60%, rgba(215, 251, 54, 0.06), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 104px 100%,
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 100% 74px;
  mask-image: linear-gradient(180deg, #000, transparent 92%);
}

.index-landing::after {
  content: "";
  position: absolute;
  inset: 12% -6vw auto auto;
  z-index: -1;
  width: min(52vw, 720px);
  height: min(52vw, 720px);
  border: 1px solid rgba(121, 166, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 67, 163, 0.08), transparent 66%);
  opacity: 0.9;
}

.index-landing-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
  padding-top: 6px;
}

.index-kicker {
  color: #79a6ff;
  font-size: 14px;
  font-weight: 700;
}

.index-landing h1 {
  max-width: min(520px, calc(100vw - 48px));
  margin: 0;
  color: #f7fbff;
  font-size: clamp(44px, 5.45vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.index-landing-copy > p {
  max-width: 430px;
  margin: 0 0 2px;
  color: #9d9fa8;
  font-size: 17px;
  line-height: 1.65;
}

.index-report-form {
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  margin-top: 2px;
}

.index-report-form label {
  display: grid;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.index-report-form span {
  color: #666a75;
  font-size: 12px;
}

.index-report-form input,
.index-report-form select {
  width: 100%;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f3f6fb;
  font-size: 16px;
  outline: 0;
}

.index-report-form select {
  cursor: pointer;
}

.index-report-form button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: #dfe6f4;
  font-size: 14px;
  cursor: pointer;
  transition: transform 260ms cubic-bezier(0.32, 0.72, 0, 1), border-color 260ms cubic-bezier(0.32, 0.72, 0, 1), background 260ms cubic-bezier(0.32, 0.72, 0, 1);
}

.index-report-form button:hover {
  border-color: rgba(121, 166, 255, 0.55);
  background: rgba(36, 67, 163, 0.22);
  transform: translateY(-1px);
}

.index-deep-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.index-deep-list strong {
  color: #f7fbff;
  font-size: 14px;
}

.index-deep-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #dfe6f4;
  font-size: 14px;
}

.index-deep-list i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #f7fbff;
  color: #030303;
  font-size: 11px;
  font-style: normal;
}

.index-report-preview {
  position: relative;
  min-width: 0;
  width: min(100%, 820px);
  justify-self: end;
  --report-scroll-window: min(690px, calc(100dvh - 126px));
  height: var(--report-scroll-window);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 118px 100%,
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 100% 86px,
    radial-gradient(circle at 18% 28%, rgba(36, 67, 163, 0.28), transparent 31%),
    radial-gradient(circle at 78% 18%, rgba(215, 251, 54, 0.055), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(7, 8, 10, 0.94);
  box-shadow:
    0 58px 150px rgba(0, 0, 0, 0.56),
    0 0 92px rgba(36, 67, 163, 0.16),
    0 0 0 1px rgba(121, 166, 255, 0.08) inset;
  transform: translateY(2px);
  overflow: hidden;
}

.index-report-preview:hover .index-preview-float {
  opacity: 0.42;
  transform: translateY(-3px);
}

.index-report-preview::selection {
  background: rgba(215, 251, 54, 0.28);
}

.index-report-preview::before,
.index-report-preview::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  height: 92px;
  pointer-events: none;
}

.index-report-preview::before {
  top: 96px;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.98), rgba(7, 8, 10, 0.56), transparent);
}

.index-report-preview::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(7, 8, 10, 0.98), rgba(7, 8, 10, 0.58), transparent);
}

.index-report-viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  height: 52px;
  background:
    linear-gradient(180deg, transparent, rgba(215, 251, 54, 0.055), transparent),
    linear-gradient(90deg, transparent, rgba(121, 166, 255, 0.12), transparent);
  filter: blur(0.2px);
  opacity: 0.55;
  pointer-events: none;
  animation: report-scan 9s cubic-bezier(0.36, 0, 0.2, 1) infinite;
}

.index-report-viewport::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 14px;
  z-index: 5;
  width: 3px;
  height: calc(100% - 48px);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(215, 251, 54, 0.75), rgba(121, 166, 255, 0.2) 34%, rgba(255, 255, 255, 0.06) 34%),
    rgba(255, 255, 255, 0.07);
  transform-origin: top;
  box-shadow: 0 0 18px rgba(121, 166, 255, 0.34);
  animation: report-progress-y 46s linear infinite;
}

.index-report-preview > .index-window-top::after {
  content: "";
  width: min(360px, 48%);
  height: 9px;
  margin-left: auto;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(121, 166, 255, 0.16), rgba(215, 251, 54, 0.32)),
    rgba(255, 255, 255, 0.06);
  transform-origin: left;
  animation: report-progress 18s cubic-bezier(0.55, 0.03, 0.2, 1) infinite;
}

.index-window-top {
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 50px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.index-window-top span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.index-preview-status {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  min-height: 46px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 10, 0.66);
  backdrop-filter: blur(14px);
}

.index-preview-status span,
.index-preview-status em {
  color: #697080;
  font-size: 12px;
  font-style: normal;
}

.index-preview-status strong {
  color: #f7fbff;
  font-size: 13px;
}

.index-preview-status em {
  padding: 5px 8px;
  border: 1px solid rgba(215, 251, 54, 0.18);
  color: #d7fb36;
}

.index-preview-float {
  position: absolute;
  z-index: 7;
  display: grid;
  gap: 4px;
  min-width: 130px;
  padding: 10px 12px;
  border: 1px solid rgba(215, 251, 54, 0.18);
  background: rgba(5, 8, 12, 0.58);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32), inset 0 0 28px rgba(215, 251, 54, 0.035);
  backdrop-filter: blur(16px);
  pointer-events: none;
  opacity: 0.74;
  transition: opacity 240ms ease, transform 240ms ease;
}

.index-preview-float span {
  color: #7c808c;
  font-size: 11px;
}

.index-preview-float strong {
  color: #f7fbff;
  font-size: 24px;
  line-height: 1;
}

.float-share {
  top: 112px;
  right: 20px;
}

.float-source {
  right: 20px;
  bottom: 22px;
}

.index-report-panel {
  display: flex;
  flex-direction: column;
  min-height: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.index-report-slide {
  display: grid;
  flex: 0 0 auto;
  gap: 30px;
  min-height: 0;
  padding: clamp(34px, 4vw, 50px) clamp(26px, 3.1vw, 44px) 80px;
}

.index-report-viewport {
  position: relative;
  height: calc(100% - 96px);
  overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  .index-report-panel {
    animation: report-scroll 52s linear infinite;
  }

  .index-report-preview:hover .index-report-panel {
    animation-play-state: paused;
  }
}

.index-report-slide > header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  color: #6f7481;
  font-size: 12px;
}

.index-report-slide > header strong {
  color: #f7fbff;
}

.index-report-slide > header em {
  padding: 5px 9px;
  border: 1px solid rgba(215, 251, 54, 0.2);
  border-radius: 999px;
  background: rgba(215, 251, 54, 0.08);
  color: #d7fb36;
  font-size: 11px;
  font-style: normal;
}

.report-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(178px, 0.9fr) 148px minmax(158px, 0.72fr);
  gap: 14px;
  align-items: stretch;
  width: 100%;
  min-height: 216px;
  padding: 22px;
  border: 1px solid rgba(121, 166, 255, 0.14);
  background:
    radial-gradient(circle at 52% 52%, rgba(121, 166, 255, 0.18), transparent 29%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(2, 4, 8, 0.78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34) inset;
  overflow: hidden;
}

.report-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 38px 100%,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 38px;
  opacity: 0.42;
  pointer-events: none;
}

.report-hero-card > div {
  position: relative;
  z-index: 1;
}

.report-hero-card span,
.report-mini-stack span {
  color: #798191;
  font-size: 12px;
  font-weight: 700;
}

.report-hero-card > div:first-child strong {
  display: block;
  margin-top: 18px;
  color: #f7fbff;
  font-size: clamp(48px, 5.2vw, 62px);
  line-height: 0.9;
}

.report-hero-card > div:first-child p {
  max-width: 190px;
  margin: 18px 0 0;
  color: #9ca3b4;
  font-size: 13px;
  line-height: 1.55;
}

.report-radar {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(215, 251, 54, 0.14) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, rgba(121, 166, 255, 0.26) 0 1px, transparent 1px 34px);
}

.report-radar i {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(121, 166, 255, 0.24);
  border-radius: 50%;
  animation: radar-pulse 3.4s ease-in-out infinite;
}

.report-radar i:nth-child(2) {
  inset: 48px;
  animation-delay: -1.1s;
}

.report-radar i:nth-child(3) {
  inset: 72px;
  animation-delay: -2.1s;
}

.report-radar b {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72px;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(215, 251, 54, 0.95), transparent);
  box-shadow: 0 0 18px rgba(215, 251, 54, 0.42);
  animation: radar-spin 4.8s linear infinite;
}

.report-mini-stack {
  display: grid;
  gap: 10px;
  align-self: center;
}

.report-mini-stack p {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.report-mini-stack strong {
  color: #f7fbff;
  font-size: 20px;
}

.mention-analysis,
.citation-sources,
.cluster-board,
.model-compare,
.prompt-monitor-board,
.visit-attribution-board,
.index-action-plan,
.report-event-stream {
  display: grid;
  gap: 18px;
}

.mention-analysis h2,
.citation-sources h2,
.cluster-board h2,
.model-compare h2,
.prompt-monitor-board h2,
.visit-attribution-board h2,
.index-action-plan h2,
.report-event-stream h2 {
  margin: 0;
  color: #f7fbff;
  font-size: 20px;
  line-height: 1.2;
}

.mention-analysis p,
.citation-sources p,
.cluster-board > div > p,
.model-compare > div > p,
.prompt-monitor-board > div > p,
.visit-attribution-board > div > p,
.index-action-plan > div > p,
.report-event-stream > div:first-child > p {
  margin: 6px 0 0;
  color: #7c808c;
  font-size: 13px;
  line-height: 1.5;
}

.mention-analysis table {
  width: 100%;
  border-collapse: collapse;
  color: #dfe6f4;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.35);
}

.mention-analysis th,
.mention-analysis td {
  min-width: 92px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.mention-analysis th:first-child,
.mention-analysis td:first-child {
  min-width: 150px;
  text-align: left;
}

.mention-analysis th {
  color: #c9ced8;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.045);
}

.mention-analysis tr.is-brand {
  outline: 1px solid rgba(255, 255, 255, 0.82);
  outline-offset: -1px;
}

.mention-analysis td:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mention-analysis td:first-child i {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: #d7fb36;
}

.mention-analysis td:first-child em {
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f7fbff;
  font-size: 10px;
  font-style: normal;
}

.heat {
  background: rgba(159, 237, 159, 0.08);
}

.heat-1 {
  background: linear-gradient(135deg, rgba(184, 255, 190, 0.72), rgba(75, 148, 88, 0.74));
  color: #071007;
  font-weight: 800;
}

.heat-2 {
  background: linear-gradient(135deg, rgba(126, 219, 136, 0.52), rgba(45, 105, 58, 0.54));
}

.heat-3 {
  background: linear-gradient(135deg, rgba(90, 172, 101, 0.38), rgba(28, 74, 40, 0.5));
}

.heat-4 {
  background: rgba(19, 48, 28, 0.58);
}

.heat-5 {
  background: rgba(8, 16, 10, 0.72);
}

.source-bars {
  display: grid;
  gap: 13px;
  width: 100%;
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 100% 44px,
    rgba(0, 0, 0, 0.34);
}

.source-bars p {
  display: grid;
  grid-template-columns: 112px 1fr 56px;
  gap: 14px;
  align-items: center;
  margin: 0;
}

.source-bars span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9ca3b4;
  font-size: 12px;
}

.source-bars span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2448b0;
}

.source-bars span i.social {
  background: #5a39b8;
}

.source-bars span i.owned {
  background: #66d6a2;
}

.source-bars b {
  height: 13px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #2448b0, #6b3dca var(--bar), rgba(255, 255, 255, 0.05) var(--bar));
  box-shadow: 0 0 22px rgba(71, 63, 211, 0.24);
}

.source-bars strong {
  color: #dfe6f4;
  font-size: 12px;
  text-align: right;
}

.report-radar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.report-radar-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(121, 166, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(121, 166, 255, 0.09), transparent 56%),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.report-radar-grid article::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, #d7fb36 var(--score), rgba(255, 255, 255, 0.08) var(--score));
  box-shadow: 0 0 18px rgba(215, 251, 54, 0.28);
}

.report-radar-grid span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 700;
}

.report-radar-grid strong {
  margin-top: 30px;
  color: #f7fbff;
  font-size: 19px;
}

.report-radar-grid p {
  margin: 12px 0 0;
  color: #8d93a1;
  font-size: 12px;
  line-height: 1.55;
}

.report-radar-grid i {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(215, 251, 54, 0.2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 251, 54, 0.28) 0 4px, transparent 5px);
}

.cluster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.cluster-grid article,
.model-list article,
.action-list article {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(121, 166, 255, 0.08), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

.cluster-grid article {
  min-height: 170px;
  padding: 18px;
}

.cluster-grid span,
.model-list span,
.action-list span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 700;
}

.cluster-grid strong {
  display: block;
  margin-top: 18px;
  color: #f7fbff;
  font-size: 30px;
  line-height: 1;
}

.cluster-grid em {
  display: inline-block;
  margin-top: 8px;
  color: #d7fb36;
  font-size: 12px;
  font-style: normal;
}

.cluster-grid p,
.model-list p,
.action-list p {
  margin: 14px 0 0;
  color: #8d93a1;
  font-size: 12px;
  line-height: 1.55;
}

.model-list,
.action-list {
  display: grid;
  gap: 1px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.model-list article {
  display: grid;
  grid-template-columns: 116px 88px 82px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.model-list strong {
  color: #f7fbff;
  font-size: 22px;
}

.model-list em {
  color: #d7fb36;
  font-size: 12px;
  font-style: normal;
}

.model-list p {
  margin: 0;
}

.action-list article {
  display: grid;
  grid-template-columns: 78px minmax(136px, 0.38fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.action-list strong {
  color: #f7fbff;
  font-size: 17px;
}

.action-list p {
  margin: 0;
}

.report-event-stream > div:last-child {
  display: grid;
  gap: 1px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.report-event-stream > div:last-child p {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 17px 18px;
  background:
    radial-gradient(circle at 96% 50%, rgba(215, 251, 54, 0.08), transparent 28%),
    rgba(255, 255, 255, 0.035);
}

.report-event-stream span {
  color: #d7fb36;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.report-event-stream strong {
  color: #dfe6f4;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.prompt-monitor-table {
  display: grid;
  gap: 1px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.prompt-monitor-table p {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 116px 74px 72px;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 17px 18px;
  background:
    linear-gradient(90deg, rgba(215, 251, 54, 0.052), transparent 38%),
    rgba(255, 255, 255, 0.035);
}

.prompt-monitor-table span {
  color: #dfe6f4;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.prompt-monitor-table strong {
  color: #f7fbff;
  font-size: 13px;
}

.prompt-monitor-table em,
.prompt-monitor-table b {
  color: #d7fb36;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

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

.visit-attribution-grid article {
  display: grid;
  gap: 16px;
  min-height: 134px;
  padding: 18px;
  border: 1px solid rgba(121, 166, 255, 0.13);
  background:
    radial-gradient(circle at 88% 14%, rgba(215, 251, 54, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(121, 166, 255, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.035);
}

.visit-attribution-grid span {
  color: #798191;
  font-size: 12px;
  font-weight: 700;
}

.visit-attribution-grid strong {
  color: #f7fbff;
  font-size: 31px;
  line-height: 1;
}

.visit-attribution-grid em {
  color: #d7fb36;
  font-size: 12px;
  font-style: normal;
}

.index-faq-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 84px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.index-industry-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  margin: 8px auto 0;
  padding: 26px 0 58px;
  overflow: hidden;
}

.index-industry-strip > div:first-child {
  display: grid;
  gap: 8px;
}

.index-industry-strip span,
.index-score-section span,
.index-insight-section aside > span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 700;
}

.index-industry-strip strong {
  max-width: 340px;
  color: #f7fbff;
  font-size: 22px;
  line-height: 1.25;
}

.industry-ticker {
  position: relative;
  display: flex;
  gap: 14px;
  min-width: 0;
  max-width: 100%;
  padding: 2px 0;
  overflow: hidden;
  overflow: clip;
  contain: paint;
  isolation: isolate;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.industry-ticker p {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  margin: 0;
  animation: industry-marquee 28s linear infinite;
}

.industry-ticker b {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #dfe6f4;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.index-score-section,
.index-insight-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.index-score-section {
  padding: 78px 0 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.index-section-head {
  display: grid;
  gap: 16px;
  max-width: 880px;
}

.index-section-head h2,
.index-insight-section h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
}

.index-section-head p,
.index-insight-section aside > p {
  max-width: 720px;
  margin: 0;
  color: #9d9fa8;
  font-size: 16px;
  line-height: 1.75;
}

.index-score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.index-score-grid article {
  min-height: 250px;
  padding: 28px;
  background:
    radial-gradient(circle at 78% 14%, rgba(121, 166, 255, 0.13), transparent 34%),
    #080807;
}

.index-score-grid strong {
  display: block;
  margin-top: 44px;
  color: #f7fbff;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.9;
}

.index-score-grid p {
  margin: 24px 0 0;
  color: #9d9fa8;
  font-size: 14px;
  line-height: 1.65;
}

.index-insight-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 106px);
  padding: 82px 0 96px;
}

.index-insight-section aside {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.index-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.index-insight-grid article {
  min-height: 238px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(121, 166, 255, 0.06), transparent 62%),
    #080807;
}

.index-insight-grid span {
  color: #d7fb36;
  font-size: 12px;
  font-weight: 700;
}

.index-insight-grid strong {
  display: block;
  margin-top: 52px;
  color: #f7fbff;
  font-size: 24px;
}

.index-insight-grid p {
  margin: 16px 0 0;
  color: #9d9fa8;
  font-size: 14px;
  line-height: 1.68;
}

.index-faq-strip article {
  min-height: 172px;
  padding: 24px;
  background: #080807;
}

.index-faq-strip span {
  color: #79a6ff;
  font-size: 12px;
}

.index-faq-strip strong {
  display: block;
  margin-top: 12px;
  color: #f7fbff;
  font-size: 20px;
  line-height: 1.25;
}

.index-faq-strip p {
  margin: 12px 0 0;
  color: #8c909b;
  font-size: 14px;
  line-height: 1.55;
}

.reports-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(520px, 0.82fr);
  gap: clamp(34px, 4.8vw, 72px);
  align-items: center;
  width: min(1280px, calc(100% - 48px));
  min-height: calc(100dvh - 86px);
  margin: 0 auto;
  padding: 76px 0 72px;
}

.reports-hero::before {
  content: "";
  position: absolute;
  inset: 9% -8% auto 52%;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121, 166, 255, 0.16), transparent 64%);
  filter: blur(4px);
  pointer-events: none;
}

.reports-copy {
  position: relative;
  display: grid;
  gap: 22px;
  min-width: 0;
  z-index: 1;
}

.reports-copy > span,
.reports-section-head span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 800;
}

.reports-copy h1 {
  max-width: min(700px, 100%);
  margin: 0;
  color: #f7fbff;
  font-size: clamp(42px, 4.6vw, 70px);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.reports-copy .headline-line {
  white-space: normal;
}

.reports-copy p,
.reports-section-head p {
  max-width: 620px;
  margin: 0;
  color: #a4a8b2;
  font-size: 17px;
  line-height: 1.75;
}

.reports-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.reports-console {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  min-width: 0;
  min-height: 620px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 42px,
    radial-gradient(circle at 16% 42%, rgba(215, 251, 54, 0.1), transparent 28%),
    rgba(6, 7, 9, 0.95);
  box-shadow: 0 46px 130px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(121, 166, 255, 0.06) inset;
  overflow: hidden;
}

.reports-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(121, 166, 255, 0.18), transparent);
  opacity: 0.32;
  transform: translateX(-62%);
  animation: panel-sweep 7s ease-in-out infinite;
  pointer-events: none;
}

.reports-console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reports-console-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.reports-console-top strong {
  margin-left: auto;
  color: #dfe6f4;
  font-size: 13px;
}

.reports-score-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(121, 166, 255, 0.16);
  background:
    radial-gradient(circle at 78% 50%, rgba(121, 166, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.reports-score-card span {
  color: #8b92a0;
  font-size: 12px;
  font-weight: 800;
}

.reports-score-card strong {
  display: block;
  margin-top: 20px;
  color: #f7fbff;
  font-size: clamp(70px, 9vw, 116px);
  line-height: 0.88;
}

.reports-score-card p {
  max-width: 310px;
  margin: 20px 0 0;
  color: #a4a8b2;
  font-size: 13px;
  line-height: 1.62;
}

.reports-score-card i {
  position: absolute;
  right: 42px;
  top: 50%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(121, 166, 255, 0.28);
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle, rgba(215, 251, 54, 0.35) 0 5px, transparent 6px),
    repeating-radial-gradient(circle, rgba(121, 166, 255, 0.24) 0 1px, transparent 1px 28px);
}

.reports-table,
.reports-source-mix {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.reports-table p {
  display: grid;
  grid-template-columns: 120px 90px 72px 1fr;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.035);
}

.reports-table span,
.reports-source-mix span {
  color: #9ca3b4;
  font-size: 12px;
}

.reports-table strong {
  color: #f7fbff;
  font-size: 21px;
}

.reports-table em {
  color: #d7fb36;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.reports-table small {
  color: #8d93a1;
  font-size: 12px;
  line-height: 1.5;
}

.reports-source-mix {
  padding: 16px;
  background: rgba(0, 0, 0, 0.28);
}

.reports-source-mix p {
  display: grid;
  grid-template-columns: 82px 1fr 48px;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 8px 0;
}

.reports-source-mix b {
  height: 11px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #2448b0, #d7fb36 var(--value), rgba(255, 255, 255, 0.06) var(--value));
}

.reports-source-mix strong {
  color: #dfe6f4;
  font-size: 12px;
  text-align: right;
}

.reports-type-section,
.reports-workflow-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reports-section-head {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.reports-section-head h2 {
  margin: 0;
  color: #f7fbff;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.05;
}

.reports-type-grid,
.reports-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.reports-type-grid article,
.reports-workflow-grid article {
  min-height: 250px;
  padding: 26px;
  background:
    radial-gradient(circle at 88% 16%, rgba(121, 166, 255, 0.12), transparent 32%),
    #080807;
}

.reports-type-grid span,
.reports-workflow-grid span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 800;
}

.reports-type-grid strong,
.reports-workflow-grid strong {
  display: block;
  margin-top: 52px;
  color: #f7fbff;
  font-size: 23px;
  line-height: 1.2;
}

.reports-type-grid p,
.reports-workflow-grid p {
  margin: 16px 0 0;
  color: #9d9fa8;
  font-size: 14px;
  line-height: 1.65;
}

.reports-type-grid em {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  padding: 6px 9px;
  border: 1px solid rgba(215, 251, 54, 0.18);
  color: #d7fb36;
  font-size: 11px;
  font-style: normal;
}

.capability-grid,
.solution-steps,
.case-story,
.event-agenda {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 104px;
}

.capability-grid article,
.solution-steps article,
.case-story article,
.event-agenda article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid #2c2c27;
  border-radius: 6px;
  background: #11110f;
}

.capability-grid h3,
.solution-steps h3,
.event-agenda h3 {
  margin-top: 28px;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
}

.capability-grid p,
.solution-steps p,
.case-story p,
.event-agenda p {
  color: #aaa79f;
  line-height: 1.65;
}

.solution-metrics {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 16px;
  padding: 28px;
}

.solution-metrics strong {
  font-size: 34px;
}

.solution-metrics span {
  align-self: center;
  color: #8d8d86;
}

.case-stats {
  position: relative;
  display: grid;
  gap: 1px;
  overflow: hidden;
  align-self: center;
  border-color: rgba(159, 237, 159, 0.16);
  background:
    linear-gradient(rgba(159, 237, 159, 0.05) 1px, transparent 1px) 0 0 / 100% 42px,
    #11110f;
  box-shadow: 0 32px 110px rgba(91, 129, 96, 0.16), var(--glass-edge);
}

.case-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 75% 45%, rgba(215, 251, 54, 0.08), transparent 34%),
    linear-gradient(110deg, transparent 0 42%, rgba(215, 251, 54, 0.08) 50%, transparent 58% 100%);
  opacity: 0.65;
}

.case-stats > * {
  position: relative;
  z-index: 1;
}

.case-stats-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.035);
}

.case-stats-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.case-stats-top strong {
  margin-left: auto;
  color: #dfe6f4;
  font-size: 12px;
}

.case-stats > div:not(.case-stats-top) {
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: center;
  padding: 22px 24px;
  background:
    radial-gradient(circle at 88% 14%, rgba(159, 237, 159, 0.12), transparent 24%),
    rgba(20, 20, 17, 0.9);
}

.case-stats > div:not(.case-stats-top) strong {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.95;
}

.case-stats > div:not(.case-stats-top) span {
  color: #8d8d86;
}

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

.case-result-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: 22px;
  align-items: end;
  padding: 30px 34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(159, 237, 159, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(246, 243, 235, 0.04), transparent 58%),
    #0d0d0b;
}

.case-result-band span {
  grid-column: 1 / -1;
  color: #8d8d86;
  font-size: 13px;
}

.case-result-band strong {
  max-width: 760px;
  color: #f8f7f2;
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.case-result-band p {
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid rgba(246, 243, 235, 0.16);
}

.case-story h2 {
  margin-top: 22px;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: pretty;
}

.case-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 48px));
  margin: 18px auto 0;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(246, 243, 235, 0.1);
}

.case-proof-strip article {
  display: grid;
  gap: 18px;
  min-height: 140px;
  align-content: center;
  padding: 22px;
  background:
    radial-gradient(circle at 86% 12%, rgba(159, 237, 159, 0.09), transparent 30%),
    #0d0d0b;
}

.case-proof-strip span,
.case-timeline-section aside > span,
.case-timeline span,
.case-proof-matrix span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 700;
}

.case-proof-strip strong {
  color: #f8f7f2;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 0.98;
}

.case-timeline-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 20px;
}

.case-timeline-section h2 {
  margin: 16px 0 0;
  color: #f8f7f2;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.case-timeline-section aside p {
  margin: 18px 0 0;
  color: #9d9fa8;
  line-height: 1.7;
}

.case-timeline {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(246, 243, 235, 0.1);
}

.case-timeline article {
  display: grid;
  grid-template-columns: 82px minmax(130px, 0.3fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 108px;
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(159, 237, 159, 0.055), transparent 30%),
    #0d0d0b;
}

.case-timeline strong {
  color: #f8f7f2;
  font-size: 19px;
}

.case-timeline p {
  margin: 0;
  color: #9d9fa8;
  line-height: 1.6;
}

.case-proof-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 104px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(246, 243, 235, 0.1);
}

.case-proof-matrix article {
  display: grid;
  align-content: start;
  position: relative;
  min-height: 220px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(159, 237, 159, 0.11), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(121, 166, 255, 0.075), transparent 34%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.04), transparent 62%),
    #11110f;
}

.case-proof-matrix strong {
  margin-top: 32px;
  color: #f8f7f2;
  font-size: 20px;
  line-height: 1.22;
}

.case-proof-matrix p {
  margin: 14px 0 0;
  color: #9d9fa8;
  font-size: 13px;
  line-height: 1.6;
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 0.38fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  min-height: 620px;
  padding: 82px 0 64px;
  text-align: left;
}

.article-hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.article-hero-copy > span {
  color: #79a6ff;
  font-size: 13px;
  font-weight: 700;
}

.article-hero h1 {
  max-width: min(760px, 100%);
  margin: 18px 0 0;
  font-size: clamp(42px, 4.5vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
}

.article-hero p {
  max-width: 700px;
  margin: 22px 0 0;
  color: #bdbbb4;
  font-size: 17px;
  line-height: 1.72;
}

.article-meta-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid #2c2c27;
  border-radius: 6px;
  background: #2c2c27;
}

.article-meta-strip span {
  padding: 10px 14px;
  background: #11110f;
  color: #bdbbb4;
  font-size: 12px;
}

.article-cockpit {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 440px;
  justify-self: end;
  min-height: 420px;
  padding: 22px;
  border: 1px solid rgba(121, 166, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(36, 67, 163, 0.28), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(159, 237, 159, 0.08), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 100% 44px,
    #0d0f12;
  box-shadow: 0 42px 128px rgba(0, 0, 0, 0.42), 0 0 84px rgba(36, 67, 163, 0.16), var(--glass-edge);
}

.article-cockpit::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(215, 251, 54, 0.08) 50%, transparent 58% 100%),
    radial-gradient(circle at 50% 58%, rgba(215, 251, 54, 0.08), transparent 34%);
  opacity: 0.65;
}

.article-cockpit > * {
  position: relative;
  z-index: 1;
}

.article-cockpit-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
}

.article-cockpit-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.article-cockpit-top strong {
  margin-left: auto;
  color: #dfe6f4;
  font-size: 12px;
}

.article-cockpit-score {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 52%, rgba(159, 237, 159, 0.12), transparent 38%),
    repeating-radial-gradient(circle at 70% 35%, rgba(121, 166, 255, 0.22) 0 1px, transparent 1px 38px),
    rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.article-cockpit-score::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159, 237, 159, 0.7), transparent);
  box-shadow: 0 0 20px rgba(159, 237, 159, 0.32);
  animation: report-scan 5.6s ease-in-out infinite;
}

.article-cockpit-score span,
.article-cockpit-score em,
.article-cockpit-list span {
  color: #8d93a1;
  font-size: 12px;
}

.article-cockpit-score strong {
  margin-top: 20px;
  color: #f7fbff;
  font-size: 86px;
  line-height: 0.88;
}

.article-cockpit-score em {
  margin-top: 12px;
  font-style: normal;
}

.article-cockpit-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.article-cockpit-list p {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.035);
}

.article-cockpit-list strong {
  color: #dfe6f4;
  font-size: 13px;
  line-height: 1.45;
}

.article-evidence-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 235, 0.12);
  border-radius: 8px;
  background: rgba(246, 243, 235, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  text-align: left;
}

.article-evidence-panel div {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 98px;
  align-content: center;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(159, 237, 159, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 70%),
    #11110f;
  overflow: hidden;
}

.article-evidence-panel div::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(159, 237, 159, 0.68), transparent);
  opacity: 0.58;
}

.article-evidence-panel span {
  color: #8d8d86;
  font-size: 12px;
}

.article-evidence-panel strong {
  color: #f8f7f2;
  font-size: 16px;
  line-height: 1.25;
}

.article-body {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: clamp(36px, 6vw, 82px);
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 110px;
}

.article-body aside {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid #2c2c27;
  border-radius: 6px;
  background: rgba(17, 17, 15, 0.86);
  box-shadow: var(--glass-edge);
  backdrop-filter: blur(12px);
}

.article-body aside strong {
  margin-bottom: 8px;
}

.article-body aside a {
  color: #8d8d86;
  font-size: 13px;
}

.article-body article {
  display: grid;
  gap: 26px;
}

.article-summary-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(159, 237, 159, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 10%, rgba(159, 237, 159, 0.18), transparent 32%),
    radial-gradient(circle at 0% 100%, rgba(121, 166, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.06), transparent 70%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.34), 0 0 56px rgba(159, 237, 159, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.075);
  overflow: hidden;
}

.article-summary-card span,
.article-action-grid span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 700;
}

.article-summary-card strong {
  color: #f8f7f2;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.22;
}

.article-summary-card p {
  margin-top: 0;
  color: #d1d6cf;
  font-size: 16px;
  line-height: 1.8;
}

.article-insight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 235, 0.1);
  border-radius: 8px;
  background: rgba(246, 243, 235, 0.1);
}

.article-insight-list article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 158px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 12%, rgba(159, 237, 159, 0.13), transparent 32%),
    radial-gradient(circle at 12% 100%, rgba(121, 166, 255, 0.07), transparent 30%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.035), transparent 70%),
    #0d0d0b;
}

.article-insight-list span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid rgba(159, 237, 159, 0.16);
  border-radius: 999px;
  color: #b8ffbe;
  background: rgba(159, 237, 159, 0.055);
  font-size: 12px;
  font-weight: 800;
}

.article-insight-list strong {
  position: relative;
  z-index: 1;
  color: #f4f2ec;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.52;
}

.article-body article section {
  position: relative;
  padding: 2px 0 34px 22px;
  border-bottom: 1px solid #2c2c27;
}

.article-body article section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 2px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(159, 237, 159, 0.06));
  box-shadow: 0 0 14px rgba(159, 237, 159, 0.24);
}

.article-body h2 {
  margin: 0;
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: pretty;
}

.article-body p {
  max-width: 68ch;
  margin: 14px 0 0;
  color: #c8c7bf;
  font-size: 16px;
  line-height: 1.82;
}

.article-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 10px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(246, 243, 235, 0.1);
}

.article-action-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(159, 237, 159, 0.12), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(121, 166, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.045), transparent 68%),
    #0d0d0b;
}

.article-action-grid article > * {
  position: relative;
  z-index: 1;
}

.article-action-grid strong {
  margin-top: 28px;
  color: #f8f7f2;
  font-size: 19px;
  line-height: 1.24;
}

.article-action-grid p {
  margin-top: 14px;
  color: #9d9fa8;
  font-size: 13px;
  line-height: 1.6;
}

.event-hero aside {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 430px;
  padding: 22px;
  text-align: left;
  overflow: hidden;
  border-color: rgba(121, 166, 255, 0.16);
  background:
    radial-gradient(circle at 84% 8%, rgba(36, 67, 163, 0.22), transparent 30%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 44px,
    #0d0f12;
  box-shadow: 0 34px 110px rgba(36, 67, 163, 0.16), var(--glass-edge);
}

.event-hero aside::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 58%, rgba(215, 251, 54, 0.08), transparent 34%),
    linear-gradient(110deg, transparent 0 42%, rgba(215, 251, 54, 0.08) 50%, transparent 58% 100%);
  opacity: 0.65;
}

.event-hero aside > * {
  position: relative;
  z-index: 1;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.event-cockpit-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
}

.event-cockpit-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.event-cockpit-top strong {
  margin-left: auto;
  color: #dfe6f4;
  font-size: 12px;
}

.event-cockpit-score {
  display: grid;
  align-content: end;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    repeating-radial-gradient(circle at 70% 35%, rgba(121, 166, 255, 0.22) 0 1px, transparent 1px 38px),
    rgba(0, 0, 0, 0.18);
}

.event-cockpit-score strong {
  margin-top: 20px;
  color: #f7fbff;
  font-size: clamp(44px, 4.8vw, 72px);
  line-height: 0.92;
}

.event-cockpit-score span,
.event-cockpit-score em,
.event-cockpit-list span {
  color: #8d93a1;
  font-size: 12px;
}

.event-cockpit-score em {
  margin-top: 12px;
  font-style: normal;
}

.event-cockpit-list {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.event-cockpit-list p {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.035);
}

.event-cockpit-list strong {
  color: #dfe6f4;
  font-size: 13px;
  line-height: 1.45;
}

.event-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 18px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(246, 243, 235, 0.1);
}

.event-value-strip article {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 24px;
  background:
    radial-gradient(circle at 86% 12%, rgba(121, 166, 255, 0.09), transparent 30%),
    #0d0d0b;
}

.event-value-strip span,
.event-cta-band span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 700;
}

.event-value-strip strong {
  margin-top: 30px;
  color: #f8f7f2;
  font-size: 22px;
  line-height: 1.2;
}

.event-value-strip p {
  margin: 14px 0 0;
  color: #9d9fa8;
  font-size: 14px;
  line-height: 1.6;
}

.event-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  width: min(1120px, calc(100% - 48px));
  margin: -76px auto 104px;
  padding: 28px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background:
    radial-gradient(circle at 88% 18%, rgba(159, 237, 159, 0.1), transparent 24%),
    #0d0d0b;
}

.event-cta-band span {
  grid-column: 1 / -1;
}

.event-cta-band strong {
  max-width: 760px;
  color: #f8f7f2;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.14;
  letter-spacing: 0;
}

.legal-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.38fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: 520px;
  padding: 82px 0 54px;
  border-bottom: 1px solid rgba(246, 243, 235, 0.08);
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 22px -8vw 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 22%, rgba(159, 237, 159, 0.13), transparent 32%),
    radial-gradient(circle at 38% 58%, rgba(121, 166, 255, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 112px 100%,
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 100% 82px;
  mask-image: linear-gradient(180deg, #000 0 72%, transparent 100%);
}

.legal-copy > span,
.legal-summary-strip span,
.legal-review-panel > span,
.legal-document-head span,
.legal-document section > span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 800;
}

.legal-copy h1 {
  max-width: 760px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(44px, 5.8vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: pretty;
}

.legal-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #bdbbb4;
  font-size: 18px;
  line-height: 1.65;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.legal-cockpit {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(159, 237, 159, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 22%, rgba(159, 237, 159, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 48%),
    rgba(10, 12, 10, 0.86);
  box-shadow: 0 34px 94px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
}

.legal-cockpit::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 54px 100%,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 54px;
  opacity: 0.42;
  pointer-events: none;
}

.legal-cockpit-top,
.legal-score,
.legal-meta-grid {
  position: relative;
  z-index: 1;
}

.legal-cockpit-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  color: #8d8d86;
  font-size: 12px;
}

.legal-cockpit-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.legal-cockpit-top strong {
  margin-left: auto;
  color: #e9efe9;
  font-size: 12px;
}

.legal-score {
  display: grid;
  align-content: end;
  min-height: 190px;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(159, 237, 159, 0.16);
  background:
    radial-gradient(circle at 78% 22%, rgba(159, 237, 159, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.legal-score span {
  color: #8d8d86;
  font-size: 12px;
  font-weight: 700;
}

.legal-score strong {
  margin-top: 16px;
  color: #f8fff8;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.9;
}

.legal-score em {
  margin-top: 16px;
  color: #9fed9f;
  font-size: 13px;
  font-style: normal;
}

.legal-meta-grid {
  display: grid;
  gap: 1px;
  margin-top: 12px;
  border: 1px solid rgba(246, 243, 235, 0.08);
  background: rgba(246, 243, 235, 0.08);
}

.legal-meta-grid p {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.035);
}

.legal-meta-grid span {
  color: #7f837c;
  font-size: 12px;
}

.legal-meta-grid strong {
  color: #f8f7f2;
  font-size: 13px;
  line-height: 1.35;
}

.legal-summary-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  border: 1px solid rgba(246, 243, 235, 0.09);
  background: rgba(246, 243, 235, 0.09);
}

.legal-summary-strip article {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(121, 166, 255, 0.055), transparent 58%),
    #0d0d0b;
}

.legal-summary-strip strong {
  margin-top: 34px;
  color: #f8f7f2;
  font-size: 20px;
  line-height: 1.25;
}

.legal-summary-strip p {
  margin: 16px 0 0;
  color: #9d9fa8;
  font-size: 14px;
  line-height: 1.65;
}

.legal-page {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  padding: 56px 0 118px;
}

.legal-review-panel {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(246, 243, 235, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 12%, rgba(159, 237, 159, 0.08), transparent 28%),
    rgba(17, 17, 15, 0.86);
  box-shadow: var(--glass-edge);
  backdrop-filter: blur(12px);
}

.legal-review-panel > strong {
  color: #f8f7f2;
  font-size: 18px;
  line-height: 1.35;
}

.legal-review-panel div {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 235, 0.08);
  background: rgba(246, 243, 235, 0.08);
}

.legal-review-panel p {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.035);
}

.legal-review-panel em {
  color: #9fed9f;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.legal-review-panel b {
  color: #f8f7f2;
  font-size: 14px;
}

.legal-review-panel small {
  color: #9d9fa8;
  font-size: 12px;
  line-height: 1.55;
}

.legal-document {
  display: grid;
  gap: 18px;
}

.legal-document-head {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(159, 237, 159, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(159, 237, 159, 0.1), transparent 28%),
    rgba(255, 255, 255, 0.028);
}

.legal-document-head strong {
  color: #f8f7f2;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.22;
}

.legal-document section {
  position: relative;
  overflow: hidden;
  padding: 26px 28px 28px;
  border: 1px solid #2c2c27;
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 14%, rgba(159, 237, 159, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 44%),
    #11110f;
  box-shadow: var(--glass-edge);
}

.legal-document section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.62;
}

.legal-document h2 {
  margin: 18px 0 0;
  color: #f8f7f2;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: pretty;
}

.legal-document p {
  max-width: 76ch;
  margin: 16px 0 0;
  color: #bdbbb4;
  font-size: 16px;
  line-height: 1.82;
}

.trust-hero,
.trust-card-strip,
.trust-work-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.trust-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(340px, 0.4fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  min-height: 520px;
  padding: 82px 0 58px;
  border-bottom: 1px solid rgba(246, 243, 235, 0.08);
}

.trust-hero::before {
  content: "";
  position: absolute;
  inset: 16px -8vw 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 24%, rgba(121, 166, 255, 0.15), transparent 30%),
    radial-gradient(circle at 40% 62%, rgba(159, 237, 159, 0.11), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.034) 1px, transparent 1px) 0 0 / 112px 100%,
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 100% 82px;
  mask-image: linear-gradient(180deg, #000 0 76%, transparent 100%);
}

.trust-copy > span,
.trust-card-strip span,
.trust-work-section aside span,
.trust-workflow span {
  color: #79a6ff;
  font-size: 12px;
  font-weight: 800;
}

.trust-copy h1 {
  max-width: 800px;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(44px, 5.7vw, 74px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: pretty;
}

.trust-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  color: #bdbbb4;
  font-size: 18px;
  line-height: 1.66;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-console {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 18px;
  border: 1px solid rgba(121, 166, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 20%, rgba(121, 166, 255, 0.18), transparent 32%),
    radial-gradient(circle at 24% 82%, rgba(159, 237, 159, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), transparent 50%),
    rgba(10, 12, 12, 0.86);
  box-shadow: 0 34px 94px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
}

.trust-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 54px 100%,
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 54px;
  opacity: 0.4;
  pointer-events: none;
}

.trust-console-top,
.trust-status,
.trust-metrics {
  position: relative;
  z-index: 1;
}

.trust-console-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
}

.trust-console-top i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.trust-console-top strong {
  margin-left: auto;
  color: #e9efe9;
  font-size: 12px;
}

.trust-status {
  display: grid;
  align-content: end;
  min-height: 190px;
  margin-top: 20px;
  padding: 22px;
  border: 1px solid rgba(121, 166, 255, 0.16);
  background:
    radial-gradient(circle at 78% 22%, rgba(121, 166, 255, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.035);
}

.trust-status span {
  color: #8d8d86;
  font-size: 12px;
  font-weight: 700;
}

.trust-status strong {
  margin-top: 16px;
  color: #f8fff8;
  font-size: clamp(50px, 5.8vw, 74px);
  line-height: 0.9;
}

.trust-status em {
  margin-top: 16px;
  color: #9fed9f;
  font-size: 13px;
  font-style: normal;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 12px;
  border: 1px solid rgba(246, 243, 235, 0.08);
  background: rgba(246, 243, 235, 0.08);
}

.trust-metrics p {
  display: grid;
  gap: 8px;
  min-height: 86px;
  align-content: center;
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.trust-metrics span {
  color: #7f837c;
  font-size: 12px;
}

.trust-metrics strong {
  color: #f8f7f2;
  font-size: 18px;
  line-height: 1.1;
}

.trust-card-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(246, 243, 235, 0.09);
  background: rgba(246, 243, 235, 0.09);
}

.trust-card-strip article {
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(121, 166, 255, 0.058), transparent 58%),
    #0d0d0b;
}

.trust-card-strip strong {
  margin-top: 34px;
  color: #f8f7f2;
  font-size: 20px;
  line-height: 1.25;
}

.trust-card-strip p {
  margin: 16px 0 0;
  color: #9d9fa8;
  font-size: 14px;
  line-height: 1.65;
}

.trust-work-section {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  padding: 58px 0 118px;
}

.trust-work-section aside {
  position: sticky;
  top: 92px;
  align-self: start;
}

.trust-work-section h2 {
  margin: 16px 0 0;
  color: #f8f7f2;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.trust-work-section aside p {
  margin: 18px 0 0;
  color: #9d9fa8;
  line-height: 1.7;
}

.trust-workflow {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(246, 243, 235, 0.09);
  background: rgba(246, 243, 235, 0.09);
}

.trust-workflow article {
  display: grid;
  grid-template-columns: 64px minmax(170px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: 24px;
  background:
    radial-gradient(circle at 96% 50%, rgba(159, 237, 159, 0.06), transparent 28%),
    #0d0d0b;
}

.trust-workflow strong {
  color: #f8f7f2;
  font-size: 18px;
  line-height: 1.25;
}

.trust-workflow p {
  margin: 0;
  color: #9d9fa8;
  font-size: 14px;
  line-height: 1.65;
}

.contact-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 80px;
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 70px;
  align-items: start;
}

.contact-copy {
  padding-top: 16px;
}

.contact-copy span {
  display: inline-flex;
  min-width: 160px;
  height: 34px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #2c2c27;
  border-radius: 999px;
  color: #bdbbb4;
  font-size: 13px;
  background: #11110f;
}

.contact-copy h1 {
  max-width: 650px;
  margin: 34px 0 0;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: 0;
}

.contact-copy p {
  max-width: 640px;
  margin: 34px 0 0;
  color: #c4c0b7;
  font-size: 20px;
  line-height: 1.55;
}

.contact-signal-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid #2c2c27;
  border-radius: 6px;
  background: #2c2c27;
}

.contact-signal-panel div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  align-content: center;
  padding: 18px;
  background: #11110f;
}

.contact-signal-panel strong {
  color: #f8f7f2;
  font-size: 30px;
  line-height: 1;
}

.contact-signal-panel span {
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8d8d86;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  font-weight: 800;
}

.contact-actions a {
  display: inline-flex;
  min-width: 128px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #f6f3eb;
  color: #111;
  padding: 0 16px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 30px 32px;
  border: 1px solid #2c2c27;
  border-radius: 6px;
  background:
    radial-gradient(circle at 80% 0%, rgba(246, 243, 235, 0.08), transparent 30%),
    #11110f;
  color: #f8f7f2;
  box-shadow: var(--shadow);
}

.lead-form h2 {
  margin: 0 0 18px;
  color: #f8f7f2;
  font-size: 28px;
  letter-spacing: 0;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #aaa79f;
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 46px;
  border-color: #34342f;
  border-radius: 6px;
  background: #0b0b09;
  color: #f8f7f2;
}

.lead-form textarea {
  min-height: 112px;
}

.success-state {
  margin: 4px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(184, 255, 190, 0.25);
  border-radius: 6px;
  background: rgba(184, 255, 190, 0.08);
  color: #dfffe4;
  font-size: 14px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1216px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 116px;
}

.contact-cards article {
  min-height: 154px;
  padding: 22px;
  border: 1px solid #2c2c27;
  border-radius: 6px;
  background: #11110f;
  color: #f8f7f2;
}

.contact-cards i {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f6f3eb;
}

.contact-cards h3 {
  color: #f8f7f2;
  font-size: 24px;
}

.contact-cards p {
  margin: 0;
  color: #aaa79f;
  line-height: 1.55;
}

.pricing-hero {
  display: grid;
  gap: 0;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 68px;
}

.pricing-head {
  display: block;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.pricing-head > span {
  display: block;
  margin-bottom: 16px;
  color: #f6f3eb;
  font-size: 14px;
}

.pricing-head h1 {
  max-width: 820px;
  margin-inline: auto;
}

.pricing-title-line {
  display: block;
}

.pricing-head p {
  max-width: 690px;
  margin: 18px auto 0;
  color: #bdbbb4;
  font-size: 17px;
  line-height: 1.55;
}

.pricing-head .pricing-audience-note {
  max-width: 610px;
  margin-top: 12px;
  color: #83837c;
  font-size: 13px;
}

.pricing-toggle {
  display: flex;
  width: 222px;
  height: 34px;
  margin: 30px auto 0;
  padding: 4px;
  border: 1px solid #33332e;
  border-radius: 6px;
  background: #11110f;
}

.pricing-toggle button {
  flex: 1;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #d8d8d1;
  font-size: 11px;
  font-weight: 700;
}

.pricing-toggle .selected {
  background: #f6f3eb;
  color: #111;
}

.pricing-notice {
  margin-top: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(246, 243, 235, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(246, 243, 235, 0.08), transparent 62%),
    rgba(246, 243, 235, 0.045);
  color: #f8f7f2;
  font-size: 14px;
  line-height: 1.55;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto auto auto 1fr;
  align-content: start;
  min-height: 470px;
  padding: 26px 22px;
  border-radius: 8px;
  border: 1px solid rgba(246, 243, 235, 0.12);
  background:
    radial-gradient(circle at 86% 10%, rgba(159, 237, 159, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.045), transparent 44%),
    #0f0f0d;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), var(--glass-edge);
}

.pricing-card.featured {
  border-color: rgba(184, 255, 190, 0.62);
  background:
    radial-gradient(circle at 86% 10%, rgba(184, 255, 190, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.08), transparent 48%),
    #131310;
  transform: none;
  box-shadow: 0 34px 104px rgba(0, 0, 0, 0.46), 0 0 66px rgba(159, 237, 159, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-card span {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-card strong {
  margin-top: 22px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
}

.pricing-card strong em {
  color: #8d8d86;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}

.pricing-card small {
  min-height: 58px;
  margin-top: 16px;
  color: #b9b8b0;
  font-size: 15px;
  line-height: 1.52;
}

.pricing-card .button {
  align-self: end;
  margin-top: 14px;
}

.pricing-card hr {
  width: 100%;
  height: 1px;
  margin: 22px 0 18px;
  border: 0;
  background: rgba(246, 243, 235, 0.14);
}

.pricing-card b {
  margin-bottom: 16px;
  font-size: 14px;
}

.pricing-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #c8c7bf;
  font-size: 14px;
}

.pricing-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f6f3eb;
  flex: 0 0 auto;
}

.pricing-value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 235, 0.12);
  border-radius: 8px;
  background: rgba(246, 243, 235, 0.1);
  box-shadow: var(--glass-edge);
}

.pricing-value-strip div {
  display: grid;
  gap: 9px;
  min-height: 104px;
  align-content: center;
  padding: 18px 20px;
  background:
    radial-gradient(circle at 88% 18%, rgba(159, 237, 159, 0.08), transparent 26%),
    #10100e;
}

.pricing-value-strip span {
  color: #8d8d86;
  font-size: 12px;
}

.pricing-value-strip strong {
  color: #f8f7f2;
  font-size: 16px;
  line-height: 1.32;
}

.pricing-onboarding {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(159, 237, 159, 0.14);
  border-radius: 8px;
  background: rgba(246, 243, 235, 0.1);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.28), var(--glass-edge);
}

.pricing-onboarding > div:first-child {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background:
    radial-gradient(circle at 86% 18%, rgba(159, 237, 159, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.045), transparent 70%),
    #0d0d0b;
}

.pricing-onboarding span,
.pricing-onboarding-steps span {
  color: #9fed9f;
  font-size: 12px;
  font-weight: 800;
}

.pricing-onboarding h2 {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.pricing-onboarding p {
  max-width: 560px;
  margin: 0;
  color: #bdbbb4;
  font-size: 15px;
  line-height: 1.72;
}

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

.pricing-onboarding-steps article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(159, 237, 159, 0.08), transparent 30%),
    #10100e;
}

.pricing-onboarding-steps article::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 20%);
}

.pricing-onboarding-steps strong {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  color: #f8f7f2;
  font-size: 20px;
  line-height: 1.2;
}

.pricing-onboarding-steps p,
.pricing-onboarding-steps span {
  position: relative;
  z-index: 1;
}

.pricing-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(2px);
}

.pricing-subscribe-modal,
.pricing-pay-modal {
  position: relative;
  width: min(570px, calc(100vw - 40px));
  border-radius: 10px;
  background: #fff;
  color: #15181d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.pricing-subscribe-modal {
  padding: 24px 22px 22px;
}

.pricing-pay-modal {
  width: min(462px, calc(100vw - 40px));
  padding: 24px 20px 26px;
  text-align: center;
}

.pricing-subscribe-modal h2,
.pricing-pay-modal h2 {
  margin: 0 0 12px;
  color: #15181d;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.pricing-pay-modal h2 {
  text-align: left;
  font-size: 16px;
}

.pricing-subscribe-modal p {
  margin: 0 42px 20px 0;
  color: #1f242b;
  font-size: 14px;
  line-height: 1.7;
}

.pricing-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #20242a;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  z-index: 3;
  transition: background 180ms ease, transform 180ms ease;
}

.pricing-modal-close:hover {
  background: rgba(15, 18, 24, 0.08);
  transform: scale(1.04);
}

.subscribe-valid,
.subscribe-plan {
  border-radius: 10px;
  background: #f5f6f8;
}

.subscribe-valid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  color: #8c939d;
  font-size: 13px;
}

.subscribe-valid strong {
  color: #15181d;
  font-weight: 500;
}

.subscribe-plan {
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding: 16px 14px;
}

.subscribe-plan > strong {
  color: #15181d;
  font-size: 14px;
}

.subscribe-plan div,
.subscribe-total,
.subscribe-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.subscribe-plan span,
.subscribe-total span {
  color: #8c939d;
  font-size: 14px;
}

.subscribe-plan b {
  color: #15181d;
  font-size: 16px;
}

.subscribe-plan del {
  color: #9da3ad;
  font-size: 13px;
  font-weight: 500;
}

.subscribe-plan em {
  color: #7d8490;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}

.subscribe-total {
  align-items: flex-end;
  margin-top: 16px;
}

.subscribe-total strong {
  color: #1b1e24;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.subscribe-actions {
  justify-content: flex-end;
  margin-top: 8px;
}

.subscribe-cancel,
.subscribe-confirm {
  min-width: 66px;
  height: 30px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.subscribe-cancel {
  border: 1px solid #e3e5e8;
  background: #fff;
  color: #1f242b;
}

.subscribe-confirm {
  border: 0;
  background: #14191f;
  color: #fff;
}

.pay-amount {
  margin: 46px 0 18px;
  color: #1b1e24;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.pay-provider-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 auto 16px;
  padding: 5px;
  border-radius: 999px;
  background: #f1f3f5;
}

.pay-provider-tabs button {
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #656d77;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.pay-provider-tabs button.selected {
  background: #15181d;
  color: #fff;
  box-shadow: 0 8px 18px rgba(15, 18, 22, 0.16);
}

.pay-qr {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  border: 1px solid #eceff2;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.pay-qr i {
  position: absolute;
  left: calc(10px + var(--x) * 7.5px);
  top: calc(10px + var(--y) * 7.5px);
  width: 6px;
  height: 6px;
  background: rgba(15, 15, 15, 0.08);
}

.pay-qr-ready i {
  background: rgba(15, 15, 15, 0.12);
}

.pay-qr-image {
  overflow: visible;
}

.pay-qr img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: contain;
}

.pay-qr > div {
  position: absolute;
  inset: auto 15px 14px;
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 76px;
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: #6d737c;
  font-size: 11px;
  line-height: 1.45;
  box-shadow: 0 10px 28px rgba(12, 17, 22, 0.12);
}

.pay-qr p,
.pay-qr span {
  margin: 0;
}

.pay-qr button {
  height: 34px;
  margin-top: 4px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.pay-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin: 0 0 24px;
  color: #5f6670;
  font-size: 12px;
}

.pay-methods span {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  color: transparent;
}

.pay-methods span:first-child {
  background: #12b969;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.pay-methods span:nth-child(2) {
  background: #18a8f2;
}

.pay-status {
  margin: -10px 0 14px;
  color: #767e88;
  font-size: 12px;
}

.pay-status.paid {
  color: #148a54;
  font-weight: 800;
}

.pay-agreement {
  margin: 20px 0 0;
  color: #9aa0a8;
  font-size: 12px;
  text-align: center;
}

.pay-error {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff1f1;
  color: #c32929;
  font-size: 13px;
  line-height: 1.5;
}

.pricing-compare {
  border: 1px solid rgba(246, 243, 235, 0.12);
  background:
    linear-gradient(90deg, rgba(246, 243, 235, 0.08) 1px, transparent 1px) 25% 0 / 25% 100%,
    #0b0b0a;
}

.compare-row {
  display: grid;
  grid-template-columns: 25% repeat(3, minmax(0, 1fr));
  min-height: 46px;
  border-bottom: 1px solid rgba(246, 243, 235, 0.11);
}

.compare-row > * + * {
  border-left: 1px dashed rgba(246, 243, 235, 0.1);
}

.compare-plans {
  min-height: 112px;
  align-items: end;
}

.compare-feature,
.compare-plan,
.compare-value {
  padding: 14px 16px;
}

.compare-feature {
  color: #aaa79f;
  font-size: 13px;
}

.compare-plan {
  display: grid;
  align-content: center;
  gap: 10px;
}

.compare-plan strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f8f7f2;
  font-size: 18px;
}

.compare-plan em {
  padding: 2px 7px;
  border: 1px solid rgba(246, 243, 235, 0.14);
  border-radius: 999px;
  color: #8d8d86;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
}

.compare-plan span {
  color: #d8d6ce;
  font-size: 13px;
}

.compare-plan .button {
  min-height: 30px;
  margin-top: 6px;
  font-size: 12px;
}

.compare-section {
  display: grid;
  gap: 8px;
  min-height: 82px;
  padding: 22px 16px;
  border-bottom: 1px solid rgba(246, 243, 235, 0.12);
  background:
    radial-gradient(circle at 22% 50%, rgba(246, 243, 235, 0.055), transparent 24%),
    linear-gradient(90deg, rgba(246, 243, 235, 0.035), transparent 55%),
    #0f0f0d;
}

.compare-section strong {
  color: #f8f7f2;
  font-size: 16px;
}

.compare-section span {
  color: #aaa79f;
  font-size: 13px;
}

.compare-value {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #f0eee7;
  font-size: 13px;
  line-height: 1.45;
}

.compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  margin-top: 2px;
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.compare-icon.yes {
  background: #f6f3eb;
  color: #0b0b0a;
}

.compare-icon.no {
  background: rgba(246, 243, 235, 0.18);
  color: #77756e;
}

.pricing-faq {
  display: grid;
  grid-template-columns: minmax(200px, 0.5fr) minmax(0, 1fr);
  min-height: 520px;
  margin-top: 0;
  border-inline: 1px solid rgba(246, 243, 235, 0.12);
  border-bottom: 1px solid rgba(246, 243, 235, 0.12);
  background:
    linear-gradient(90deg, rgba(246, 243, 235, 0.08) 1px, transparent 1px) 0 0 / 25% 100%,
    #0b0b0a;
}

.pricing-faq h2 {
  margin: 0;
  padding: 100px 18px 0;
  font-size: 22px;
  letter-spacing: 0;
}

.faq-list {
  border-left: 1px solid rgba(246, 243, 235, 0.12);
}

.faq-list details {
  border-bottom: 1px solid rgba(246, 243, 235, 0.1);
}

.faq-list summary {
  position: relative;
  min-height: 62px;
  padding: 22px 56px 18px 28px;
  cursor: pointer;
  color: #f8f7f2;
  font-size: 14px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "⌄";
  position: absolute;
  top: 22px;
  right: 28px;
  color: #77756e;
  font-size: 16px;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list p {
  max-width: 720px;
  margin: -8px 56px 22px 28px;
  color: #aaa79f;
  font-size: 13px;
  line-height: 1.6;
}

.not-found {
  min-height: calc(100dvh - 140px);
  padding: 110px clamp(18px, 4vw, 44px);
}

.not-found p {
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 2.7fr);
  gap: clamp(42px, 7vw, 120px);
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  padding: 76px clamp(18px, 6vw, 80px) 24px;
  border-top: 1px solid rgba(198, 219, 244, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #070807;
  background-size: 52px 52px;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}

.footer-logo:hover {
  color: var(--ink);
}

.footer-mark {
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 6px;
  background: #090909;
  box-shadow: 0 0 22px rgba(236, 194, 112, 0.18);
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
  color: #8c8c86;
  font-size: 14px;
  line-height: 1.7;
}

.footer-columns {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: #f4f2ea;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-column a {
  color: #8b8b84;
  font-size: 13px;
  line-height: 1.35;
}

.footer-column a:hover {
  color: #f4f2ea;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid rgba(198, 219, 244, 0.08);
  color: #6f6f69;
  font-size: 12px;
}

.geo-admin-shell {
  --geo-bg: #05070b;
  --geo-ink: #edf4ff;
  --geo-muted: #8fa0b8;
  --geo-soft: #cad5e5;
  --geo-line: rgba(198, 219, 244, 0.1);
  --geo-line-strong: rgba(198, 219, 244, 0.18);
  --geo-surface: rgba(12, 18, 29, 0.7);
  --geo-surface-2: rgba(15, 24, 38, 0.88);
  --geo-accent: #8cf0d2;
  --geo-warn: #f1c57a;
  --geo-bad: #ff8e8e;
  display: grid;
  grid-template-columns: 286px minmax(0, 1fr);
  min-height: 100dvh;
  background:
    radial-gradient(circle at 84% 2%, rgba(119, 168, 255, 0.14), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(140, 240, 210, 0.09), transparent 32%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--geo-bg);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  color: var(--geo-ink);
  letter-spacing: 0;
}

.geo-admin-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.22) 1px, transparent 0);
  background-size: 8px 8px;
}

.geo-sidebar {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: auto;
  padding: 22px 14px;
  border-right: 1px solid rgba(198, 219, 244, 0.08);
  background: rgba(7, 10, 16, 0.76);
  backdrop-filter: blur(18px);
}

.geo-brand {
  min-height: 38px;
  padding: 0 8px;
}

.geo-brand strong {
  font-size: 13px;
}

.geo-nav {
  display: grid;
  gap: 6px;
}

.geo-nav button,
.geo-topbar-actions button,
.geo-toolbar button,
.geo-panel header button,
.geo-mini-button,
.geo-action-grid button,
.geo-evidence-grid button {
  border: 1px solid rgba(198, 219, 244, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--geo-ink);
  cursor: pointer;
}

.geo-nav button {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 12px;
  border-radius: 18px;
  text-align: left;
}

.geo-nav button svg {
  width: 18px;
  height: 18px;
  color: var(--geo-soft);
}

.geo-nav button span {
  display: grid;
  gap: 3px;
}

.geo-nav button strong {
  font-size: 14px;
}

.geo-nav button small {
  color: var(--geo-muted);
  font-size: 12px;
}

.geo-nav button.active {
  border-color: rgba(140, 240, 210, 0.55);
  background: rgba(140, 240, 210, 0.1);
}

.geo-main {
  padding: 20px 20px 28px;
}

@media (max-width: 1120px) {
  .page-hero-shell,
  .contact-page,
  .pricing-head,
  .content-layout,
  .content-command-bar,
  .directory-controls,
  .section-heading,
  .compact-directory {
    grid-template-columns: 1fr;
  }

  .compact-back {
    grid-column: auto;
  }

  .pricing-actions {
    justify-content: flex-start;
  }

  .contact-cards,
  .pricing-grid,
  .pricing-value-strip,
  .pricing-onboarding,
  .pricing-onboarding-steps,
  .workflow-kpi-strip,
  .home-proof-stats {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-onboarding > div:first-child,
  .pricing-onboarding-steps article {
    min-height: 190px;
  }

  .pricing-compare {
    overflow: visible;
  }

  .compare-row {
    min-width: 0;
  }

  .pricing-faq {
    grid-template-columns: 1fr;
  }

  .pricing-faq h2 {
    padding: 48px 24px 28px;
    border-bottom: 1px solid rgba(246, 243, 235, 0.12);
  }

  .faq-list {
    border-left: 0;
  }

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

  .home-capability-row {
    grid-template-columns: 1fr;
  }

  .index-landing {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .index-report-preview {
    justify-self: stretch;
    width: 100%;
    --report-scroll-window: min(620px, calc(100dvh - 120px));
  }

  .index-industry-strip,
  .index-insight-section,
  .reports-hero {
    grid-template-columns: 1fr;
  }

  .index-insight-section aside {
    position: static;
  }

  .index-report-preview {
    width: 100%;
  }

  .index-report-panel {
    min-height: auto;
  }

  .mention-analysis,
  .citation-sources {
    overflow-x: auto;
  }

  .page-visual-frame img {
    max-height: 620px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 1600px) {
  .reports-hero {
    grid-template-columns: 1fr;
    align-items: start;
    width: min(100% - 48px, 1040px);
    min-height: auto;
    padding-top: 58px;
  }

  .reports-copy {
    max-width: 860px;
  }

  .reports-copy h1 {
    max-width: 860px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
  }

  .reports-console {
    width: min(100%, 820px);
    justify-self: start;
    min-height: auto;
  }
}

@media (max-width: 1320px) {

  .index-landing {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 980px);
    min-height: auto;
    overflow: visible;
  }

  .index-landing h1,
  .index-landing-copy > p {
    max-width: 760px;
  }

  .index-report-preview {
    justify-self: stretch;
    width: min(100%, 860px);
  }
}

@media (max-width: 1180px) {
  .geo-admin-shell {
    grid-template-columns: 1fr;
  }

  .geo-sidebar {
    position: relative;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(198, 219, 244, 0.08);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    width: min(100% - 28px, 1080px);
  }

  .index-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 10px;
    min-height: auto;
    padding: 8px 14px;
    font-size: 12px;
  }

  .index-bar strong {
    min-height: 24px;
    padding: 0 10px;
    font-size: 12px;
  }

  .index-bar span {
    flex: 1 1 190px;
    line-height: 1.35;
  }

  .index-bar b {
    width: 24px;
    height: 24px;
  }

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .nav.nav-open {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    justify-content: stretch;
    width: 100%;
    padding: 12px 0 18px;
  }

  .nav-item {
    display: grid;
  }

  .nav-link {
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(246, 243, 235, 0.08);
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-dropdown-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 18px;
  }

  .nav-dropdown-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nav-feature-card {
    display: none;
  }

  .menu-button {
    display: inline-block;
  }

  .page-hero-shell {
    min-height: auto;
    padding-top: 12px;
  }

  .feature-rail,
  .pricing-grid,
  .reports-type-grid,
  .reports-workflow-grid,
  .special-hero,
  .special-module-strip,
  .special-work-section,
  .special-related,
  .collection-hero,
  .collection-scenario-strip,
  .collection-grid,
  .product-hero,
  .product-flow-section,
  .product-flow-grid,
  .solution-hero,
  .solution-steps,
  .case-hero,
  .case-story,
  .case-proof-strip,
  .case-timeline-section,
  .case-proof-matrix,
  .article-body,
  .event-hero,
  .event-agenda,
  .event-value-strip,
  .event-cta-band,
  .legal-hero,
  .legal-summary-strip,
  .legal-page,
  .trust-hero,
  .trust-card-strip,
  .trust-work-section,
  .contact-page,
  .contact-cards,
  .home-industry-grid,
  .home-proof-stats,
  .home-capability-row,
  .heading-list,
  .body-list,
  .directory-group > div,
  .compact-link-grid,
  .mini-stats,
  .cn-panel-metrics {
    grid-template-columns: 1fr;
  }

  .home-market-warning {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 8px;
    padding-top: 54px;
    padding-bottom: 62px;
  }

  .market-share-panel {
    min-height: auto;
  }

  .market-share-panel article {
    min-height: 96px;
    padding: 22px 20px;
  }

  .page-grid {
    column-count: 1;
  }

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

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

  .home-copy h1,
  .pricing-head h1,
  .index-landing h1,
  .contact-copy h1,
  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1 {
    font-size: 42px;
  }

  .headline-line {
    white-space: normal;
  }

  .home-capability-copy strong {
    white-space: normal;
    font-size: 28px;
  }

  .pricing-head h1 {
    max-width: 330px;
    font-size: 36px;
    line-height: 1.08;
  }

  .pricing-head p {
    max-width: 330px;
    font-size: 15px;
  }

  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .event-hero {
    min-height: auto;
    padding-top: 54px;
  }

  .case-hero h1 {
    font-size: 40px;
  }

  .case-result-band {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .case-result-band p {
    padding-left: 0;
    border-left: 0;
  }

  .case-proof-strip,
  .case-timeline-section,
  .case-proof-matrix {
    width: min(100% - 28px, 520px);
  }

  .case-proof-strip article,
  .case-proof-matrix article {
    min-height: auto;
  }

  .case-timeline-section {
    padding-top: 54px;
  }

  .case-timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
  }

  .event-hero aside {
    min-height: auto;
    padding: 16px;
  }

  .event-cockpit-score {
    min-height: 160px;
  }

  .event-cockpit-list p {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .event-value-strip,
  .event-cta-band {
    width: min(100% - 28px, 520px);
  }

  .event-value-strip article {
    min-height: auto;
  }

  .event-cta-band {
    margin-top: -48px;
    margin-bottom: 70px;
  }

  .article-body aside,
  .legal-review-panel {
    position: static;
  }

  .product-flow-section {
    width: min(100% - 28px, 520px);
    padding-top: 38px;
  }

  .product-flow-section aside {
    position: static;
  }

  .product-flow-section h2 {
    font-size: 30px;
  }

  .product-flow-grid article {
    min-height: auto;
    padding: 22px;
  }

  .legal-hero {
    width: min(100% - 28px, 520px);
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .legal-copy p {
    font-size: 15px;
  }

  .legal-actions {
    display: grid;
  }

  .legal-cockpit {
    min-height: auto;
    padding: 16px;
  }

  .legal-score {
    min-height: 170px;
    padding: 18px;
  }

  .legal-score strong {
    font-size: 58px;
  }

  .legal-meta-grid p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-summary-strip,
  .legal-page {
    width: min(100% - 28px, 520px);
  }

  .legal-summary-strip article {
    min-height: auto;
    padding: 22px;
  }

  .legal-summary-strip strong {
    margin-top: 24px;
  }

  .legal-page {
    padding-top: 38px;
    padding-bottom: 72px;
  }

  .legal-review-panel,
  .legal-document-head,
  .legal-document section {
    padding: 20px;
  }

  .legal-document h2 {
    font-size: 24px;
  }

  .trust-hero {
    width: min(100% - 28px, 520px);
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .trust-copy h1 {
    font-size: 42px;
  }

  .trust-copy p {
    font-size: 15px;
  }

  .trust-actions {
    display: grid;
  }

  .trust-console {
    min-height: auto;
    padding: 16px;
  }

  .trust-status {
    min-height: 170px;
    padding: 18px;
  }

  .trust-status strong {
    font-size: 56px;
  }

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

  .trust-card-strip,
  .trust-work-section {
    width: min(100% - 28px, 520px);
  }

  .trust-card-strip article {
    min-height: auto;
    padding: 22px;
  }

  .trust-card-strip strong {
    margin-top: 24px;
  }

  .trust-work-section {
    padding-top: 42px;
    padding-bottom: 72px;
  }

  .trust-work-section aside {
    position: static;
  }

  .trust-work-section h2 {
    font-size: 30px;
  }

  .trust-workflow article {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 22px;
  }

  .article-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 44px;
  }

  .article-hero h1 {
    font-size: 40px;
  }

  .article-cockpit {
    min-height: auto;
    padding: 16px;
  }

  .article-cockpit-score {
    min-height: 160px;
  }

  .article-cockpit-score strong {
    font-size: 68px;
  }

  .article-cockpit-list p {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .article-evidence-panel,
  .article-action-grid,
  .article-insight-list {
    grid-template-columns: 1fr;
  }

  .article-evidence-panel {
    width: min(100% - 32px, 520px);
  }

  .article-summary-card {
    padding: 22px;
  }

  .article-insight-list article {
    min-height: 126px;
    padding: 18px;
  }

  .workflow-board {
    min-height: 700px;
    width: 100%;
    max-width: 100%;
    contain: paint;
  }

  .workflow-path,
  .workflow-grid-glow,
  .workflow-side-panel {
    display: none;
  }

  .workflow-core {
    top: 52%;
    width: min(330px, calc(100vw - 32px));
    height: min(330px, calc(100vw - 32px));
    overflow: hidden;
    filter: drop-shadow(0 0 34px rgba(159, 237, 159, 0.28));
  }

  .workflow-kpi-strip article {
    min-height: 78px;
    padding: 14px 16px;
  }

  .workflow-kpi-strip strong {
    font-size: 24px;
  }

  .ring-1 {
    width: min(300px, calc(100vw - 56px));
    height: min(300px, calc(100vw - 56px));
  }

  .ring-2 {
    width: min(218px, calc(100vw - 130px));
    height: min(218px, calc(100vw - 130px));
  }

  .ring-3 {
    width: 130px;
    height: 130px;
  }

  .core-beam {
    width: min(330px, calc(100vw - 64px));
  }

  .workflow-node {
    width: min(300px, calc(100% - 32px));
    margin-left: 0;
  }

  .node-2,
  .node-3,
  .node-4 {
    margin-left: 0;
  }

  .geo-main-grid,
  .geo-dashboard-grid,
  .geo-form-grid,
  .geo-card-grid,
  .geo-kpi-grid {
    grid-template-columns: 1fr;
  }

  .geo-table {
    overflow-x: auto;
  }

  .pricing-card {
    min-height: auto;
  }

  .index-landing {
    padding-top: 42px;
  }

  .index-landing h1 {
    max-width: 360px;
    font-size: 42px;
  }

  .index-industry-strip,
  .index-score-section,
  .index-insight-section {
    width: min(100% - 28px, 520px);
  }

  .index-industry-strip {
    gap: 18px;
    padding-bottom: 42px;
  }

  .index-score-section,
  .index-insight-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .index-section-head h2,
  .index-insight-section h2 {
    font-size: 34px;
  }

  .index-score-grid,
  .index-insight-grid,
  .index-faq-strip {
    grid-template-columns: 1fr;
  }

  .index-score-grid article,
  .index-insight-grid article {
    min-height: auto;
    padding: 24px;
  }

  .index-score-grid strong {
    margin-top: 28px;
  }

  .index-insight-grid strong {
    margin-top: 30px;
  }

  .index-report-form {
    width: 100%;
  }

  .reports-hero {
    width: min(100% - 28px, 520px);
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .reports-copy h1 {
    max-width: 360px;
    font-size: 42px;
  }

  .reports-copy p {
    font-size: 15px;
  }

  .reports-actions {
    display: grid;
  }

  .reports-console {
    min-height: auto;
    padding: 16px;
  }

  .reports-console-top strong {
    max-width: 190px;
    font-size: 12px;
    text-align: right;
  }

  .reports-score-card {
    min-height: 220px;
    padding: 20px;
  }

  .reports-score-card strong {
    font-size: 68px;
  }

  .reports-score-card i {
    right: 20px;
    width: 104px;
    height: 104px;
    opacity: 0.72;
  }

  .reports-table p,
  .reports-source-mix p {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .reports-table small,
  .reports-source-mix strong {
    text-align: left;
  }

  .reports-type-section,
  .reports-workflow-section {
    width: min(100% - 28px, 520px);
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .reports-section-head h2 {
    font-size: 34px;
  }

  .reports-type-grid article,
  .reports-workflow-grid article {
    min-height: auto;
    padding: 24px;
  }

  .reports-type-grid strong,
  .reports-workflow-grid strong {
    margin-top: 30px;
  }

  .index-report-panel {
    animation-duration: 40s;
  }

  .index-report-viewport {
    overflow: hidden;
  }

  .index-report-preview::before,
  .index-report-preview::after {
    display: block;
    height: 70px;
  }

  .index-report-slide {
    gap: 28px;
    min-height: 0;
    padding: 24px 18px 44px;
  }

  .solution-command-metrics,
  .solution-summary-band {
    grid-template-columns: 1fr;
  }

  .solution-command-panel {
    min-height: auto;
  }

  .solution-command-list p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .index-report-slide > header,
  .report-hero-card,
  .mention-analysis,
  .citation-sources,
  .report-radar-grid,
  .cluster-board,
  .model-compare,
  .report-event-stream,
  .prompt-monitor-board,
  .visit-attribution-board,
  .index-action-plan {
    min-width: 100%;
  }

  .mention-analysis table {
    width: 100%;
    min-width: 0;
    font-size: 11px;
  }

  .mention-analysis th,
  .mention-analysis td {
    min-width: auto;
    padding: 11px 8px;
  }

  .mention-analysis th:first-child,
  .mention-analysis td:first-child {
    min-width: 96px;
  }

  .report-hero-card,
  .report-radar-grid,
  .cluster-grid,
  .visit-attribution-grid {
    grid-template-columns: 1fr;
  }

  .report-radar {
    justify-self: center;
  }

  .source-bars p,
  .model-list article,
  .action-list article,
  .prompt-monitor-table p,
  .report-event-stream > div:last-child p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .prompt-monitor-table em,
  .prompt-monitor-table b {
    text-align: left;
  }

  .index-preview-status {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .index-preview-status span {
    display: none;
  }

  .index-preview-float {
    display: none;
  }

  .source-bars {
    width: 100%;
    padding: 14px;
  }

  .compare-row {
    min-width: 0;
  }

  .index-faq-strip {
    grid-template-columns: 1fr;
  }

  .home-product-shot {
    min-height: auto;
    padding: 18px 0 0;
    border-left: 0;
  }

  .demo-prompt,
  .demo-score,
  .demo-agent,
  .demo-traffic {
    width: 100%;
    min-height: auto;
    margin-left: 0;
  }

  .demo-prompt,
  .demo-score {
    padding: 18px;
  }

  .demo-pill {
    width: 100%;
    min-width: 0;
    font-size: 12px;
  }

  .demo-score .demo-pill {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
  }

  .demo-control {
    grid-template-columns: 1fr;
  }

  .demo-bars p {
    grid-template-columns: 78px 1fr 54px;
  }

  .prompt-radar {
    right: 18px;
    bottom: 18px;
    width: 116px;
    height: 116px;
    opacity: 0.5;
  }

  .prompt-radar i:nth-child(1) {
    width: 112px;
    height: 112px;
  }

  .prompt-radar i:nth-child(2) {
    width: 78px;
    height: 78px;
  }

  .prompt-radar strong {
    font-size: 26px;
  }

  .score-radar {
    position: relative;
    inset: auto;
    height: 190px;
    margin-top: -4px;
  }

  .score-ring-1 {
    width: 190px;
    height: 190px;
  }

  .score-ring-2 {
    width: 130px;
    height: 130px;
  }

  .score-radar strong {
    font-size: 34px;
  }

  .score-row {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .score-row article {
    min-width: 0;
    min-height: 62px;
  }

  .demo-agent {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .demo-agent::before,
  .agent-route {
    display: none;
  }

  .agent-node {
    min-height: 62px;
    padding: 14px;
  }

  .demo-traffic {
    grid-template-columns: 1fr;
  }

  .traffic-chart {
    min-height: 230px;
    gap: 10px;
    padding: 18px 18px 30px;
  }

  .traffic-chart i {
    max-width: none;
  }

  .traffic-orbit {
    width: 150px;
    height: 150px;
  }

  .traffic-orbit span:nth-child(1) {
    width: 150px;
    height: 150px;
  }

  .traffic-orbit span:nth-child(2) {
    width: 100px;
    height: 100px;
  }

  .traffic-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .page-grid {
    column-count: 1;
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  #root,
  .app-shell {
    max-width: 100vw;
    overflow-x: clip;
  }

  .cn-preview-body {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .home-market-warning,
  .home-proof-section,
  .home-capability-section {
    max-width: 100%;
    overflow-x: clip;
  }

  .home-hero,
  .home-market-warning,
  .home-proof-section,
  .home-capability-section,
  .index-landing,
  .index-faq-strip,
  .pricing-hero,
  .collection-hero,
  .collection-grid,
  .product-hero,
  .capability-grid,
  .solution-hero,
  .solution-steps,
  .case-hero,
  .case-story,
  .article-hero,
  .article-body,
  .event-hero,
  .event-agenda,
  .legal-page,
  .contact-page,
  .contact-cards,
  .replica-page,
  .rail-section,
  .directory-section,
  .content-section,
  .compact-directory {
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .content-command-bar,
  .content-insight-strip {
    border-radius: 7px;
  }

  .content-status-grid,
  .content-insight-strip,
  .special-metrics,
  .special-related > div:last-child {
    grid-template-columns: 1fr;
  }

  .content-insight-strip div {
    min-height: auto;
  }

  .special-hero,
  .special-module-strip,
  .special-work-section,
  .special-related {
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .special-hero {
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .special-copy h1 {
    font-size: 42px;
  }

  .special-copy p {
    font-size: 15px;
  }

  .special-cockpit {
    min-height: auto;
    padding: 16px;
  }

  .special-radar {
    min-height: 160px;
  }

  .special-module-strip article {
    min-height: auto;
    padding: 22px;
  }

  .special-work-section,
  .special-related {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .special-workflow article {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 22px;
  }

  .home-copy {
    width: 100%;
  }

  .home-copy h1 {
    font-size: 42px;
    line-height: 1.08;
  }

  .home-copy p {
    font-size: 15px;
  }

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

  .workflow-kpi-strip {
    grid-template-columns: 1fr;
  }

  .workflow-kpi-strip article {
    min-height: auto;
  }

  .workflow-board {
    min-height: auto;
    padding-bottom: 18px;
  }

  .workflow-core {
    display: none;
  }

  .workflow-node,
  .node-1,
  .node-2,
  .node-3,
  .node-4 {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    margin: 12px 16px 0;
    transform: none;
    animation: none;
  }

  .workflow-node::before {
    animation: none;
  }

  .market-warning-copy h2 {
    font-size: 34px;
  }

  .market-warning-copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  .market-share-panel article {
    grid-template-columns: 1fr;
  }

  .market-share-panel strong {
    grid-row: auto;
    font-size: 48px;
  }
}

/* Final data visual correction, kept last so old page-specific colors cannot override it. */
.index-kicker,
.special-signal-list span,
.index-preview-status em,
.index-report-slide > header em,
.report-hero-card span,
.report-mini-stack span,
.collection-scenario-strip span,
.product-flow-section aside span,
.product-flow-grid span,
.special-copy > span,
.special-work-section aside > span,
.special-related span,
.capability-grid span,
.solution-steps span,
.case-story span,
.case-proof-strip span,
.case-timeline-section aside > span,
.case-timeline span,
.case-proof-matrix span,
.article-summary-card span,
.article-action-grid span,
.reports-copy > span,
.reports-section-head span,
.reports-type-grid span,
.reports-workflow-grid span,
.index-industry-strip span,
.index-score-section span,
.index-insight-section aside > span,
.index-faq-strip span,
.cluster-grid span,
.model-list span,
.action-list span,
.report-radar-grid span {
  color: #b8ffbe;
}

.index-landing::before {
  background:
    radial-gradient(circle at 73% 12%, rgba(159, 237, 159, 0.16), transparent 28%),
    radial-gradient(circle at 54% 60%, rgba(246, 243, 235, 0.055), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 104px 100%,
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 100% 74px;
}

.index-landing::after {
  border-color: rgba(184, 255, 190, 0.11);
  background: radial-gradient(circle, rgba(159, 237, 159, 0.07), transparent 66%);
}

.index-report-preview {
  border-color: rgba(184, 255, 190, 0.18);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 118px 100%,
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 100% 86px,
    radial-gradient(circle at 18% 28%, rgba(159, 237, 159, 0.18), transparent 31%),
    radial-gradient(circle at 78% 18%, rgba(246, 243, 235, 0.06), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(7, 8, 10, 0.94);
  box-shadow:
    0 58px 150px rgba(0, 0, 0, 0.56),
    0 0 92px rgba(159, 237, 159, 0.12),
    0 0 0 1px rgba(184, 255, 190, 0.08) inset;
}

.index-report-viewport::before {
  background:
    linear-gradient(180deg, transparent, rgba(184, 255, 190, 0.07), transparent),
    linear-gradient(90deg, transparent, rgba(246, 243, 235, 0.1), transparent);
}

.index-report-viewport::after {
  background:
    linear-gradient(180deg, rgba(184, 255, 190, 0.82), rgba(246, 243, 235, 0.2) 34%, rgba(255, 255, 255, 0.06) 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.34);
}

.index-report-preview > .index-window-top::after,
.special-signal-list i {
  background:
    linear-gradient(90deg, rgba(184, 255, 190, 0.28), rgba(246, 243, 235, 0.46)),
    rgba(255, 255, 255, 0.06);
}

.index-preview-status em,
.index-preview-float,
.index-report-slide > header em {
  border-color: rgba(184, 255, 190, 0.24);
  background: rgba(159, 237, 159, 0.075);
  color: #b8ffbe;
}

.report-hero-card {
  border-color: rgba(184, 255, 190, 0.17);
  background:
    radial-gradient(circle at 52% 52%, rgba(159, 237, 159, 0.13), transparent 29%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(2, 4, 8, 0.78);
}

.report-radar,
.special-radar {
  background:
    radial-gradient(circle, rgba(184, 255, 190, 0.2) 0 3px, transparent 4px),
    repeating-radial-gradient(circle, rgba(159, 237, 159, 0.22) 0 1px, transparent 1px 34px);
}

.report-radar i,
.special-radar b,
.reports-score-card i {
  border-color: rgba(184, 255, 190, 0.25);
}

.report-radar b,
.special-radar em {
  background: linear-gradient(90deg, rgba(184, 255, 190, 0.96), transparent);
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.42);
}

.heat {
  background: rgba(159, 237, 159, 0.08);
}

.heat-1 {
  background: linear-gradient(135deg, rgba(184, 255, 190, 0.72), rgba(75, 148, 88, 0.74));
  color: #071007;
  font-weight: 800;
}

.heat-2 {
  background: linear-gradient(135deg, rgba(126, 219, 136, 0.52), rgba(45, 105, 58, 0.54));
}

.heat-3 {
  background: linear-gradient(135deg, rgba(90, 172, 101, 0.38), rgba(28, 74, 40, 0.5));
}

.heat-4 {
  background: rgba(19, 48, 28, 0.58);
}

.heat-5 {
  background: rgba(8, 16, 10, 0.72);
}

.mention-analysis tr.is-brand {
  outline-color: rgba(184, 255, 190, 0.86);
}

.mention-analysis td:first-child i {
  background: #b8ffbe;
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.28);
}

.report-radar-grid article::before {
  background: linear-gradient(90deg, #b8ffbe var(--score), rgba(255, 255, 255, 0.08) var(--score));
  box-shadow: 0 0 18px rgba(159, 237, 159, 0.28);
}

.reports-score-card i {
  background:
    radial-gradient(circle, rgba(184, 255, 190, 0.35) 0 5px, transparent 6px),
    repeating-radial-gradient(circle, rgba(159, 237, 159, 0.2) 0 1px, transparent 1px 28px);
}

.reports-console::before {
  background: linear-gradient(90deg, transparent, rgba(184, 255, 190, 0.16), transparent);
}

@media (prefers-reduced-motion: reduce) {
  .pricing-card.featured,
  .reports-console,
  .article-cockpit,
  .trust-console,
  .solution-command-panel,
  .index-report-preview,
  .case-stats {
    animation: none !important;
  }
}

/* Premium card polish layer */
.collection-card,
.collection-feature-card,
.collection-scenario-strip article,
.product-flow-grid article,
.special-module-strip article,
.special-workflow article,
.home-industry-grid article,
.home-capability-row,
.pricing-card,
.pricing-value-strip div,
.pricing-onboarding,
.pricing-onboarding-steps article,
.capability-grid article,
.solution-steps article,
.solution-command-panel,
.solution-summary-band p,
.report-radar-grid article,
.cluster-grid article,
.model-list article,
.action-list article,
.visit-attribution-grid article,
.index-score-grid article,
.index-insight-grid article,
.index-faq-strip article,
.reports-console,
.reports-score-card,
.reports-type-grid article,
.reports-workflow-grid article,
.case-story article,
.case-stats,
.case-proof-strip article,
.case-timeline article,
.case-proof-matrix article,
.article-summary-card,
.article-cockpit,
.article-evidence-panel,
.article-action-grid article,
.article-insight-list article,
.trust-card-strip article,
.trust-status,
.trust-workflow article,
.contact-cards article {
  position: relative;
  border-color: var(--card-border);
  background-color: var(--card-bg);
  box-shadow: var(--card-soft-glow), var(--glass-edge);
  isolation: isolate;
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.collection-feature-card,
.pricing-card,
.reports-score-card,
.article-summary-card,
.trust-status {
  background:
    radial-gradient(circle at 84% 10%, rgba(184, 255, 190, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.06), transparent 58%),
    var(--card-bg-2);
}

.collection-card,
.home-industry-grid article,
.capability-grid article,
.solution-steps article,
.case-story article,
.reports-type-grid article,
.reports-workflow-grid article,
.index-score-grid article,
.index-insight-grid article,
.article-action-grid article,
.article-insight-list article,
.trust-card-strip article,
.contact-cards article {
  background:
    radial-gradient(circle at 86% 12%, rgba(184, 255, 190, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.045), transparent 62%),
    var(--card-bg);
}

.collection-scenario-strip article,
.product-flow-grid article,
.solution-summary-band p,
.case-proof-strip article,
.case-timeline article,
.case-proof-matrix article,
.trust-workflow article,
.index-faq-strip article,
.pricing-onboarding-steps article {
  background:
    radial-gradient(circle at 90% 14%, rgba(184, 255, 190, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.035), transparent 64%),
    #0c0d0b;
}

.solution-command-panel,
.reports-console,
.article-cockpit,
.special-cockpit {
  border-color: rgba(184, 255, 190, 0.2);
  background:
    linear-gradient(rgba(246, 243, 235, 0.04) 1px, transparent 1px) 0 0 / 100% 42px,
    linear-gradient(90deg, rgba(246, 243, 235, 0.025) 1px, transparent 1px) 0 0 / 56px 100%,
    radial-gradient(circle at 82% 12%, rgba(184, 255, 190, 0.16), transparent 30%),
    radial-gradient(circle at 14% 74%, rgba(246, 243, 235, 0.06), transparent 28%),
    #090b09;
  box-shadow: var(--card-hot-glow), var(--glass-edge);
}

.collection-card::after,
.collection-feature-card::after,
.collection-scenario-strip article::after,
.product-flow-grid article::after,
.special-module-strip article::after,
.special-workflow article::after,
.home-industry-grid article::after,
.home-capability-row::after,
.pricing-card::after,
.pricing-value-strip div::after,
.pricing-onboarding::after,
.pricing-onboarding-steps article::after,
.capability-grid article::after,
.solution-steps article::after,
.solution-command-panel::after,
.solution-summary-band p::after,
.report-radar-grid article::after,
.cluster-grid article::after,
.model-list article::after,
.action-list article::after,
.visit-attribution-grid article::after,
.index-score-grid article::after,
.index-insight-grid article::after,
.index-faq-strip article::after,
.reports-console::after,
.reports-score-card::after,
.reports-type-grid article::after,
.reports-workflow-grid article::after,
.case-story article::after,
.case-stats::after,
.case-proof-strip article::after,
.case-timeline article::after,
.case-proof-matrix article::after,
.article-summary-card::after,
.article-cockpit::after,
.article-evidence-panel::after,
.article-action-grid article::after,
.article-insight-list article::after,
.trust-card-strip article::after,
.trust-status::after,
.trust-workflow article::after,
.contact-cards article::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), transparent 18%),
    radial-gradient(circle at 86% 10%, rgba(184, 255, 190, 0.095), transparent 34%),
    radial-gradient(circle at 12% 96%, rgba(246, 243, 235, 0.055), transparent 32%);
  opacity: 0.88;
}

.collection-card::before,
.collection-feature-card::before,
.collection-scenario-strip article::before,
.product-flow-grid article::before,
.special-module-strip article::before,
.special-workflow article::before,
.home-capability-row::before,
.pricing-card::before,
.pricing-value-strip div::before,
.pricing-onboarding::before,
.pricing-onboarding-steps article::before,
.capability-grid article::before,
.solution-steps article::before,
.solution-command-panel::before,
.solution-summary-band p::before,
.report-radar-grid article::before,
.cluster-grid article::before,
.model-list article::before,
.action-list article::before,
.visit-attribution-grid article::before,
.index-score-grid article::before,
.index-insight-grid article::before,
.index-faq-strip article::before,
.reports-console::before,
.reports-score-card::before,
.reports-type-grid article::before,
.reports-workflow-grid article::before,
.case-story article::before,
.case-stats::before,
.case-proof-strip article::before,
.case-timeline article::before,
.case-proof-matrix article::before,
.article-summary-card::before,
.article-cockpit::before,
.article-evidence-panel::before,
.article-action-grid article::before,
.article-insight-list article::before,
.trust-card-strip article::before,
.trust-status::before,
.trust-workflow article::before,
.contact-cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--card-sheen);
  opacity: 0;
  transform: translateX(-62%);
  transition: opacity 240ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.collection-card > *,
.collection-feature-card > *,
.collection-scenario-strip article > *,
.product-flow-grid article > *,
.special-module-strip article > *,
.special-workflow article > *,
.home-industry-grid article > *,
.home-capability-row > *,
.pricing-card > *,
.pricing-value-strip div > *,
.pricing-onboarding > *,
.pricing-onboarding-steps article > *,
.capability-grid article > *,
.solution-steps article > *,
.solution-command-panel > *,
.solution-summary-band p > *,
.report-radar-grid article > *,
.cluster-grid article > *,
.model-list article > *,
.action-list article > *,
.visit-attribution-grid article > *,
.index-score-grid article > *,
.index-insight-grid article > *,
.index-faq-strip article > *,
.reports-console > *,
.reports-score-card > *,
.reports-type-grid article > *,
.reports-workflow-grid article > *,
.case-story article > *,
.case-stats > *,
.case-proof-strip article > *,
.case-timeline article > *,
.case-proof-matrix article > *,
.article-summary-card > *,
.article-cockpit > *,
.article-evidence-panel > *,
.article-action-grid article > *,
.article-insight-list article > *,
.trust-card-strip article > *,
.trust-status > *,
.trust-workflow article > *,
.contact-cards article > * {
  position: relative;
  z-index: 1;
}

.collection-card:hover,
.collection-feature-card:hover,
.collection-scenario-strip article:hover,
.product-flow-grid article:hover,
.special-module-strip article:hover,
.special-workflow article:hover,
.home-industry-grid article:hover,
.home-capability-row:hover,
.pricing-card:hover,
.pricing-value-strip div:hover,
.pricing-onboarding-steps article:hover,
.capability-grid article:hover,
.solution-steps article:hover,
.solution-summary-band p:hover,
.report-radar-grid article:hover,
.cluster-grid article:hover,
.model-list article:hover,
.action-list article:hover,
.visit-attribution-grid article:hover,
.index-score-grid article:hover,
.index-insight-grid article:hover,
.index-faq-strip article:hover,
.reports-type-grid article:hover,
.reports-workflow-grid article:hover,
.case-story article:hover,
.case-proof-strip article:hover,
.case-timeline article:hover,
.case-proof-matrix article:hover,
.article-summary-card:hover,
.article-evidence-panel:hover,
.article-action-grid article:hover,
.article-insight-list article:hover,
.trust-card-strip article:hover,
.trust-workflow article:hover,
.contact-cards article:hover {
  border-color: var(--card-border-hot);
  background-color: var(--card-bg-2);
  transform: translateY(-4px);
  box-shadow: var(--card-hot-glow), var(--glass-edge);
}

.collection-card:hover::before,
.collection-feature-card:hover::before,
.collection-scenario-strip article:hover::before,
.product-flow-grid article:hover::before,
.special-module-strip article:hover::before,
.special-workflow article:hover::before,
.home-capability-row:hover::before,
.pricing-card:hover::before,
.pricing-value-strip div:hover::before,
.pricing-onboarding-steps article:hover::before,
.capability-grid article:hover::before,
.solution-steps article:hover::before,
.solution-summary-band p:hover::before,
.report-radar-grid article:hover::before,
.cluster-grid article:hover::before,
.model-list article:hover::before,
.action-list article:hover::before,
.visit-attribution-grid article:hover::before,
.index-score-grid article:hover::before,
.index-insight-grid article:hover::before,
.index-faq-strip article:hover::before,
.reports-type-grid article:hover::before,
.reports-workflow-grid article:hover::before,
.case-story article:hover::before,
.case-proof-strip article:hover::before,
.case-timeline article:hover::before,
.case-proof-matrix article:hover::before,
.article-summary-card:hover::before,
.article-evidence-panel:hover::before,
.article-action-grid article:hover::before,
.article-insight-list article:hover::before,
.trust-card-strip article:hover::before,
.trust-workflow article:hover::before,
.contact-cards article:hover::before {
  opacity: 1;
  transform: translateX(52%);
}

.collection-scenario-strip span,
.product-flow-section aside span,
.product-flow-grid span,
.special-copy > span,
.special-work-section aside > span,
.special-related span,
.capability-grid span,
.solution-steps span,
.case-story span,
.case-proof-strip span,
.case-timeline-section aside > span,
.case-timeline span,
.case-proof-matrix span,
.article-summary-card span,
.article-action-grid span,
.reports-copy > span,
.reports-section-head span,
.reports-type-grid span,
.reports-workflow-grid span,
.index-industry-strip span,
.index-score-section span,
.index-insight-section aside > span,
.index-faq-strip span,
.cluster-grid span,
.model-list span,
.action-list span,
.report-radar-grid span {
  color: #b8ffbe;
}

.source-bars span i,
.source-bars span i.social,
.source-bars span i.owned {
  background: #9fed9f;
  box-shadow: 0 0 14px rgba(159, 237, 159, 0.2);
}

.source-bars b,
.reports-source-mix b {
  background:
    linear-gradient(90deg, #b8ffbe, #f6f3eb var(--bar, var(--value)), rgba(255, 255, 255, 0.06) var(--bar, var(--value)));
  box-shadow: 0 0 22px rgba(159, 237, 159, 0.2);
}

.pricing-card.featured,
.reports-console,
.article-cockpit,
.trust-console,
.solution-command-panel,
.index-report-preview,
.case-stats {
  animation: premium-card-breathe 7.5s ease-in-out infinite;
}

/* root397-motion-governor-final: placed after every decorative animation. */
:root { --motion-fast: 160ms; --motion-base: 260ms; --motion-enter: 420ms; --motion-ease: cubic-bezier(0.22, 0.72, 0.2, 1); }
body :is(button, .button, a.button, [role="button"], summary) { transition: transform var(--motion-fast) var(--motion-ease), border-color var(--motion-fast) ease, background var(--motion-base) ease, color var(--motion-fast) ease, box-shadow var(--motion-base) ease !important; }
body *, body *::before, body *::after { animation-iteration-count: 1 !important; }
body :is([aria-busy="true"], [class*="loading"], [class*="spinner"], [class*="skeleton"]) *, body :is([class*="loading"], [class*="spinner"], [class*="skeleton"]), body :is([class*="loading"], [class*="spinner"], [class*="skeleton"])::before, body :is([class*="loading"], [class*="spinner"], [class*="skeleton"])::after { animation-iteration-count: infinite !important; }
@media (prefers-reduced-motion: reduce) { body *, body *::before, body *::after { animation: none !important; transition-duration: 0.01ms !important; } }

/* True final hero safety guard: copy and animated visuals must never overlap. */
@media (max-width: 1720px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: start !important;
    gap: clamp(32px, 4.2vw, 58px) !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero {
    width: min(100% - 48px, 1040px) !important;
    padding-top: clamp(52px, 6vw, 78px) !important;
    padding-bottom: clamp(48px, 5vw, 68px) !important;
  }

  .page-hero-shell,
  .pricing-hero {
    width: min(100% - 48px, 1040px) !important;
  }

  .collection-hero > :first-child,
  .product-copy,
  .solution-hero > :first-child,
  .case-hero > :first-child,
  .article-hero-copy,
  .event-hero > :first-child,
  .legal-copy,
  .trust-copy,
  .reports-copy,
  .special-copy,
  .page-hero-copy,
  .pricing-head {
    width: 100% !important;
    max-width: min(900px, 100%) !important;
    margin-right: auto !important;
    padding-right: 0 !important;
    z-index: 8 !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    width: 100% !important;
    max-width: min(900px, 100%) !important;
    font-size: clamp(42px, 5vw, 68px) !important;
    line-height: 1.08 !important;
    text-wrap: balance !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
    z-index: 9 !important;
  }

  .collection-hero p,
  .product-copy p,
  .solution-hero p,
  .case-hero p,
  .article-hero p,
  .event-hero p,
  .legal-copy p,
  .trust-copy p,
  .reports-copy p,
  .special-copy p,
  .page-hero-copy p,
  .pricing-head p {
    width: 100% !important;
    max-width: min(720px, 100%) !important;
    z-index: 9 !important;
  }

  .collection-workbench,
  .insight-panel,
  .solution-command-panel,
  .solution-metrics,
  .case-stats,
  .article-cockpit,
  .article-evidence-panel,
  .event-hero aside,
  .legal-cockpit,
  .legal-review-panel,
  .trust-console,
  .reports-console,
  .special-cockpit,
  .special-visual,
  .page-visual-frame,
  .hero-visual-panel,
  .cn-preview-frame {
    width: min(100%, 760px) !important;
    max-width: 760px !important;
    justify-self: start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    transform: none !important;
    z-index: 1 !important;
  }
}

@media (max-width: 760px) {
  .collection-hero,
  .product-hero,
  .solution-hero,
  .case-hero,
  .article-hero,
  .event-hero,
  .legal-hero,
  .trust-hero,
  .reports-hero,
  .special-hero,
  .page-hero-shell,
  .pricing-hero {
    width: auto !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .collection-hero h1,
  .product-copy h1,
  .solution-hero h1,
  .case-hero h1,
  .article-hero h1,
  .event-hero h1,
  .legal-copy h1,
  .trust-copy h1,
  .reports-copy h1,
  .special-copy h1,
  .page-hero-copy h1,
  .pricing-head h1 {
    font-size: clamp(34px, 10.4vw, 44px) !important;
  }
}
