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

:root {
  --bg: #081019;
  --bg-soft: #0b1621;
  --panel: rgba(10, 18, 28, 0.82);
  --panel-strong: rgba(13, 22, 34, 0.95);
  --line: rgba(144, 176, 205, 0.18);
  --line-strong: rgba(144, 176, 205, 0.28);
  --text: #f2f7ff;
  --muted: #90a5b9;
  --dim: #63788d;
  --accent: #37e1c7;
  --accent-2: #7a9fff;
  --warm: #f3c36e;
  --danger: #ff7b86;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 18px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(78, 116, 255, 0.22), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(55, 225, 199, 0.16), transparent 26%),
    linear-gradient(180deg, #061018 0%, #081019 34%, #0a1118 100%);
  color: var(--text);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 146, 170, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 146, 170, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.15));
  pointer-events: none;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 12, 18, 0) 0%, rgba(7, 12, 18, 0.25) 18%, rgba(7, 12, 18, 0.7) 100%);
  pointer-events: none;
  z-index: -2;
}

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

button,
.button {
  font: inherit;
}

.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 30;
  box-shadow: 0 0 24px rgba(55, 225, 199, 0.4);
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

.ambient-left {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 16vh;
  background: rgba(55, 225, 199, 0.18);
  animation: floatGlow 12s ease-in-out infinite;
}

.ambient-right {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 44vh;
  background: rgba(122, 159, 255, 0.16);
  animation: floatGlow 15s ease-in-out infinite reverse;
}

.site-header,
.section-shell,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(8, 16, 25, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(143, 175, 204, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(55, 225, 199, 0.22), rgba(122, 159, 255, 0.28));
  border: 1px solid rgba(106, 219, 212, 0.28);
  color: #e6fcff;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.site-nav a,
.button,
.header-cta,
.fact-value,
.table-row span:last-child,
.timeline-item span,
.nav-chip,
.dashboard-top strong,
.dashboard-table span,
.site-footer {
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
}

.brand-copy strong {
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(140, 175, 205, 0.16);
  background: linear-gradient(135deg, rgba(55, 225, 199, 0.12), rgba(122, 159, 255, 0.12));
  color: var(--text);
  white-space: nowrap;
}

main {
  padding: 28px 0 30px;
}

.section-shell {
  position: relative;
  padding: 34px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: start;
  min-height: auto;
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.cta-section h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.hero h1 {
  /* max-width: 520px; */
  font-size: clamp(2.15rem, 3.85vw, 50px);
}

.hero h1 span {
  display: inline-block;
  margin-top: 0;
  color: #dce8ff;
}

.hero-lead,
.section-heading p,
.cta-section p,
.timeline-item p,
.benefit-stack p,
.trust-card p,
.compliance-note p,
.trust-panel p,
.pain-item p {
  color: var(--muted);
}

.hero-lead {
  max-width: 62ch;
  margin: 20px 0 0;
  font-size: 0.98rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041018;
  box-shadow: 0 18px 40px rgba(72, 145, 255, 0.24);
}

.button-secondary {
  border: 1px solid rgba(143, 175, 204, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.hero-tags li {
  padding: 7px 11px;
  border: 1px solid rgba(145, 177, 206, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: #d8e7f7;
  font-size: 0.86rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.fact-source-note {
  margin: 12px 4px 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}

.fact-source-note a {
  color: #bfd5ff;
}

.fact-source-note span {
  margin: 0 6px;
  color: rgba(145, 177, 206, 0.48);
}

.fact-card {
  padding: 15px 16px 17px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(145, 177, 206, 0.12);
  border-radius: var(--radius);
}

.fact-label {
  display: block;
  color: var(--dim);
  font-size: 0.78rem;
}

.fact-value {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(1.55rem, 2.45vw, 2.35rem);
  font-weight: 700;
}

.fact-unit {
  display: block;
  margin-top: 4px;
  color: #d6e2f0;
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  padding: 10px 0 0 28px;
}

.scene-carousel {
  width: min(100%, 640px);
}

.scene-stage {
  position: relative;
  min-height: 440px;
}

.scene-shot,
.market-frame,
.market-summary article {
  border: 1px solid rgba(147, 179, 207, 0.14);
  box-shadow: var(--shadow);
}

.scene-shot {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(11, 20, 30, 0.92);
}

.scene-shot img,
.market-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px) scale(0.985);
  pointer-events: none;
  transition: opacity 500ms ease, transform 500ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scene-shot figcaption {
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, rgba(10, 18, 28, 0.22), rgba(10, 18, 28, 0.94));
}

.scene-shot figcaption strong,
.market-copy h3,
.market-summary strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}

.scene-shot figcaption span,
.market-copy p,
.market-summary p {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
}

.scene-shot-primary {
  width: 100%;
  height: 100%;
  border-radius: 26px;
}

.scene-shot-primary img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.scene-shot-primary figcaption {
  min-height: 76px;
}

.scene-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.scene-dot {
  width: 34px;
  height: 6px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(145, 177, 206, 0.24);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, width 180ms ease;
}

.scene-dot.is-active {
  width: 54px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.scene-carousel.is-rotating .hero-slide:nth-child(1) {
  animation: carouselSlideOne 7.2s infinite;
}

.scene-carousel.is-rotating .hero-slide:nth-child(2) {
  animation: carouselSlideTwo 7.2s infinite;
}

.scene-carousel.is-rotating .scene-dot:nth-child(1) {
  animation: carouselDotOne 7.2s infinite;
}

.scene-carousel.is-rotating .scene-dot:nth-child(2) {
  animation: carouselDotTwo 7.2s infinite;
}

.command-panel,
.dashboard-shell,
.trust-panel,
.compliance-note,
.trust-card,
.cta-section {
  background: linear-gradient(180deg, rgba(13, 22, 34, 0.92), rgba(10, 18, 28, 0.86));
  border: 1px solid rgba(147, 179, 207, 0.14);
  box-shadow: var(--shadow);
}

.command-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
}

.command-panel::before,
.dashboard-shell::before,
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(55, 225, 199, 0.8), rgba(122, 159, 255, 0.18), transparent);
}

.panel-head,
.chart-title,
.dashboard-top,
.compliance-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.panel-head p,
.chart-title small,
.dashboard-top small {
  margin: 0;
  color: var(--muted);
}

.panel-head h2 {
  margin: 6px 0 0;
  font-size: 1.55rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #d8e7f6;
  font-size: 0.9rem;
}

.live-pill i,
.status-active::before,
.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(55, 225, 199, 0.45);
  animation: pulse 1.8s infinite;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.visual-grid article {
  min-height: 122px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(145, 177, 206, 0.12);
}

.visual-grid span,
.metric-strip span,
.dashboard-status span:first-child,
.trust-kicker,
.panel-label {
  color: var(--dim);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-grid strong,
.metric-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
}

.visual-grid em {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.93rem;
}

.signal-stage {
  position: relative;
  margin-top: 24px;
  padding: 22px 18px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10, 17, 25, 0.88), rgba(11, 18, 26, 0.62));
  border: 1px solid rgba(145, 177, 206, 0.12);
  overflow: hidden;
}

.signal-line {
  position: absolute;
  inset: 16px auto 16px 0;
  width: 100%;
  background:
    linear-gradient(90deg, transparent, rgba(55, 225, 199, 0.24), transparent),
    linear-gradient(180deg, transparent 49%, rgba(145, 177, 206, 0.1) 50%, transparent 51%);
  background-size: 180px 100%, 100% 33%;
  animation: scan 10s linear infinite;
}

.signal-bars,
.chart-bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
  min-height: 180px;
}

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

.signal-bars span,
.chart-bars span {
  position: relative;
  min-height: 28px;
  height: var(--bar);
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, rgba(122, 159, 255, 0.92), rgba(55, 225, 199, 0.62));
  animation: rise 1.6s ease both;
}

.signal-bars span::after,
.chart-bars span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 46%);
  border-radius: inherit;
}

.signal-bars span:nth-child(odd),
.chart-bars span:nth-child(odd) {
  animation-delay: 0.12s;
}

.exec-log {
  margin-top: 24px;
  border-top: 1px solid rgba(145, 177, 206, 0.12);
}

.exec-row,
.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(145, 177, 206, 0.1);
}

.exec-row span,
.exec-row b,
.table-head span,
.table-row span {
  font-size: 0.95rem;
}

.exec-row span,
.table-head span,
.table-row span:nth-child(2) {
  color: var(--muted);
}

.exec-row b,
.state-positive,
.status-active {
  color: var(--accent);
}

.hero-note {
  margin: 18px 0 0;
  color: #d7e5f5;
  font-size: 0.94rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.section-heading p {
  margin: 0;
  font-size: 0.94rem;
}

.section-heading.narrow h2 {
  max-width: 975px;
}

.pain-section {
  padding-top: 18px;
}

.pain-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.pain-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(145, 177, 206, 0.12);
}

.pain-item:last-child {
  border-bottom: 1px solid rgba(145, 177, 206, 0.12);
}

.pain-index {
  color: rgba(122, 159, 255, 0.86);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  line-height: 1;
}

.pain-item h3,
.timeline-item h3,
.benefit-stack h3,
.trust-card h3,
.trust-panel h3,
.cta-section h2,
.compliance-note h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.85vw, 1.55rem);
  line-height: 1.2;
}

.pain-item p,
.timeline-item p,
.benefit-stack p,
.trust-card p,
.trust-panel p,
.cta-section p,
.compliance-note p {
  margin: 10px 0 0;
  font-size: 0.94rem;
}

.source-note {
  margin: 22px 0 0;
  color: var(--dim);
  font-size: 0.88rem;
}

.source-note a,
.compliance-note a {
  color: #bfd5ff;
}

.workflow-layout,
.capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  margin-top: 26px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(55, 225, 199, 0.62), rgba(122, 159, 255, 0.18));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 10px 0;
}

.timeline-item span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(55, 225, 199, 0.18), rgba(122, 159, 255, 0.16));
  border: 1px solid rgba(145, 177, 206, 0.18);
  color: var(--text);
  font-size: 0.92rem;
}

.trust-panel {
  padding: 22px;
  border-radius: 22px;
  align-self: start;
}

.panel-actions {
  margin-top: 18px;
}

.panel-label {
  display: inline-block;
  margin-bottom: 10px;
}

.trust-panel ul,
.compliance-note ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.trust-panel li,
.compliance-note li {
  position: relative;
  padding-left: 22px;
  color: #d9e8f7;
}

.trust-panel li::before,
.compliance-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 1px;
  background: var(--accent);
}

.market-evidence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.market-frame {
  overflow: hidden;
  border-radius: 24px;
}

.market-frame-dark {
  background: linear-gradient(180deg, rgba(13, 22, 34, 0.96), rgba(10, 18, 28, 0.92));
}

.market-copy {
  padding: 18px 18px 16px;
}

.market-kicker {
  color: var(--dim);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.market-copy h3 {
  margin: 8px 0 0;
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  line-height: 1.2;
}

.market-copy p {
  margin: 12px 0 0;
}

.market-summary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.market-summary article {
  padding: 16px 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.market-summary span {
  color: var(--dim);
  font-size: 0.8rem;
}

.market-summary strong {
  margin-top: 10px;
  font-size: 1rem;
}

.dashboard-shell {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 26px;
}

.dashboard-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.status-active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.dashboard-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.nav-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(145, 177, 206, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-chip::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(144, 165, 185, 0.42);
}

.nav-chip:hover,
.nav-chip:focus-visible,
.nav-chip.is-active {
  color: var(--text);
  border-color: rgba(55, 225, 199, 0.3);
  background: linear-gradient(135deg, rgba(55, 225, 199, 0.1), rgba(122, 159, 255, 0.1));
  transform: translateX(4px);
}

.nav-chip.is-active::after {
  background: var(--accent);
}

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

.metric-strip article {
  padding: 18px;
  border: 1px solid rgba(145, 177, 206, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.dashboard-chart {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(145, 177, 206, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.chart-title {
  align-items: center;
}

.chart-title strong {
  display: block;
  font-size: 1.12rem;
}

.chart-title span {
  color: var(--muted);
  font-size: 0.92rem;
}

.chart-bars {
  margin-top: 20px;
  min-height: 220px;
}

.dashboard-table {
  margin-top: 16px;
  border: 1px solid rgba(145, 177, 206, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.table-head,
.table-row {
  grid-template-columns: 1fr 1.4fr 0.8fr 0.9fr;
  padding: 14px 18px;
}

.table-head {
  border-bottom-color: rgba(145, 177, 206, 0.18);
}

.table-row span:first-child,
.table-row span:last-child {
  color: #e9f2ff;
}

.state-neutral {
  color: var(--warm);
}

.benefit-stack {
  display: grid;
  gap: 10px;
}

.benefit-stack article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid rgba(145, 177, 206, 0.12);
}

.benefit-stack article:last-child {
  border-bottom: 1px solid rgba(145, 177, 206, 0.12);
}

.stack-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(145, 177, 206, 0.18);
  color: var(--accent);
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.trust-card {
  padding: 20px;
  border-radius: 20px;
}

.trust-kicker {
  display: inline-block;
  margin-bottom: 10px;
}

.compliance-note {
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  align-items: flex-end;
}

.compliance-note p {
  max-width: 28ch;
  margin: 0;
  font-size: 0.9rem;
}

.cta-section {
  overflow: hidden;
  padding: 28px;
  border-radius: 26px;
  text-align: center;
}

.cta-section h2,
.cta-section p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  margin-top: 12px;
}

.cta-section .hero-actions {
  justify-content: center;
}

.site-footer {
  padding: 0 0 42px;
  text-align: center;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 6px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

@keyframes floatGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -22px, 0) scale(1.06);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(55, 225, 199, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(55, 225, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(55, 225, 199, 0);
  }
}

@keyframes scan {
  from {
    transform: translateX(-26%);
  }
  to {
    transform: translateX(38%);
  }
}

@keyframes rise {
  from {
    transform: scaleY(0.35);
    transform-origin: bottom;
    opacity: 0.2;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
}

@keyframes carouselSlideOne {
  0%,
  44% {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  50%,
  94% {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    pointer-events: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
}

@keyframes carouselSlideTwo {
  0%,
  44% {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    pointer-events: none;
  }
  50%,
  94% {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  100% {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
    pointer-events: none;
  }
}

@keyframes carouselDotOne {
  0%,
  44%,
  100% {
    width: 54px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
  }
  50%,
  94% {
    width: 34px;
    background: rgba(145, 177, 206, 0.24);
  }
}

@keyframes carouselDotTwo {
  0%,
  44% {
    width: 34px;
    background: rgba(145, 177, 206, 0.24);
  }
  50%,
  94% {
    width: 54px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
  }
  100% {
    width: 34px;
    background: rgba(145, 177, 206, 0.24);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 18px;
  }

  .site-nav {
    justify-content: flex-end;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .workflow-layout,
  .capability-layout {
    grid-template-columns: 1fr;
  }

  .market-evidence {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .hero h1 {
    max-width: none;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-nav {
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 1fr);
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 1440px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(calc(100% - 40px), 1180px);
  }

  .hero h1 {
    font-size: clamp(2rem, 3.35vw, 44px);
  }

  .section-heading h2 {
    font-size: clamp(1.65rem, 2.6vw, 2.55rem);
  }

  .hero-lead,
  .pain-item p,
  .timeline-item p,
  .benefit-stack p,
  .trust-card p,
  .trust-panel p,
  .cta-section p,
  .compliance-note p,
  .section-heading p {
    font-size: 0.9rem;
  }


  .hero-visual {
    min-height: 500px;
    padding-left: 18px;
  }

  .scene-carousel {
    width: min(100%, 600px);
  }

  .scene-stage {
    min-height: 404px;
  }

  .scene-shot figcaption {
    padding: 10px 12px 12px;
  }

  .scene-shot figcaption strong {
    font-size: 0.88rem;
  }

  .scene-shot figcaption span {
    font-size: 0.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .scene-shot-primary figcaption {
    min-height: 68px;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 28px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  main {
    padding-top: 22px;
  }

  .section-shell {
    width: min(calc(100% - 24px), var(--container));
    padding: 30px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: auto;
    padding: 0;
  }

  .scene-carousel {
    width: 100%;
  }

  .scene-stage {
    min-height: 0;
  }

  .hero-slide {
    position: static;
    display: none;
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .hero-slide.is-active {
    display: flex;
  }

  .scene-dot {
    animation: none !important;
  }

  .hero-facts,
  .visual-grid,
  .metric-strip,
  .trust-grid,
  .table-head,
  .table-row,
  .market-summary {
    grid-template-columns: 1fr;
  }

  .pain-item {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .compliance-note {
    align-items: flex-start;
  }

  .compliance-note p {
    max-width: none;
    margin-top: 18px;
  }

  .chart-bars,
  .signal-bars {
    gap: 6px;
  }
}

@media (max-width: 560px) {
  .site-nav {
    font-size: 0.74rem;
  }

  .command-panel,
  .dashboard-shell,
  .trust-panel,
  .trust-card,
  .compliance-note,
  .cta-section {
    padding: 20px;
    border-radius: 20px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
