:root {
  color-scheme: dark;
  --bg: #050b14;
  --bg-2: #08111d;
  --surface: rgba(13, 24, 38, 0.78);
  --surface-strong: rgba(16, 31, 49, 0.92);
  --surface-light: #f7fafc;
  --ink: #eef6ff;
  --ink-soft: #c8d7e6;
  --muted: #8fa2b8;
  --dark: #071321;
  --line: rgba(174, 199, 224, 0.14);
  --line-strong: rgba(174, 199, 224, 0.24);
  --cyan: #2dd4ff;
  --cyan-strong: #0ea5e9;
  --cyan-soft: rgba(45, 212, 255, 0.14);
  --gold: #c8a24a;
  --green: #5eead4;
  --danger: #fb7185;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.2);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #050b14 0%, #071321 38%, #f6f8fb 38.1%, #ffffff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 62%);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 92px;
  padding: 14px clamp(20px, 4vw, 62px) 16px;
  border-bottom: 1px solid rgba(174, 199, 224, 0.12);
  background: rgba(5, 11, 20, 0.78);
  backdrop-filter: blur(22px);
}

.brand,
.site-header nav,
.header-actions,
.hero-actions,
.hero-proof,
.film-toolbar,
.film-caption,
.film-body,
.film-metrics,
.film-table div,
.film-controls,
.board-toolbar,
.board-toolbar div,
.board-table div,
.command-strip,
.signal-feed {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(200, 162, 74, 0.42);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(10, 22, 36, 0.95), rgba(21, 36, 56, 0.92));
  color: #f7fbff;
  font-size: 28px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 26px rgba(0, 0, 0, 0.24);
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  top: 50%;
  height: 1px;
  background: rgba(238, 246, 255, 0.8);
  transform: translateY(-50%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 74, 0.12);
  transform: translateY(-50%);
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong {
  color: #ffffff;
  font-size: 19px;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
}

.site-header nav {
  justify-content: center;
  gap: 28px;
}

.site-header nav a,
.ghost-link {
  color: #b6c5d7;
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-header nav a:hover,
.ghost-link:hover {
  color: #ffffff;
}

.header-actions {
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(45, 212, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(45, 212, 255, 0.98), rgba(14, 165, 233, 0.94));
  color: #03111d;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(14, 165, 233, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.96);
  box-shadow: 0 22px 44px rgba(14, 165, 233, 0.32);
}

.button.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13px;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
  color: #f8fbff;
  border-color: rgba(174, 199, 224, 0.24);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: rgba(45, 212, 255, 0.54);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.button.quiet {
  border-color: rgba(174, 199, 224, 0.18);
  background: transparent;
  color: #bdd0e3;
  box-shadow: none;
}

.button.quiet:hover {
  border-color: rgba(174, 199, 224, 0.34);
  color: #ffffff;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(430px, 0.72fr) minmax(680px, 1.28fr);
  align-items: start;
  gap: clamp(20px, 2.4vw, 38px);
  min-height: calc(100vh - 76px);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 3.8vw, 62px) clamp(44px, 5vw, 64px);
  background:
    linear-gradient(118deg, rgba(5, 11, 20, 0.98) 0%, rgba(7, 19, 33, 0.98) 48%, rgba(8, 32, 52, 0.94) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 212, 255, 0.42), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: auto;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(38px, 3.25vw, 55px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--dark);
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 21px;
  line-height: 1.18;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.6;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof span {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(174, 199, 224, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #a9bbcd;
  font-size: 13px;
  font-weight: 750;
}

.hero-proof strong {
  color: #ffffff;
}

.signal-path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  max-width: 680px;
  margin-top: 20px;
  padding: 8px;
  border: 1px solid rgba(174, 199, 224, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.signal-path span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 10px;
  border: 1px solid rgba(45, 212, 255, 0.18);
  border-radius: 8px;
  background: rgba(45, 212, 255, 0.075);
  color: #eaf7ff;
  font-size: 12px;
  font-weight: 900;
}

.signal-path i {
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(125, 211, 252, 0.24), rgba(200, 162, 74, 0.82));
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 0;
}

.hero-actions .button {
  min-height: 44px;
  padding: 0 10px;
  font-size: 12px;
}

.demo-film {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  justify-self: end;
}

.demo-film::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border: 1px solid rgba(45, 212, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(45, 212, 255, 0.09), rgba(255, 255, 255, 0.018));
}

.film-shell {
  overflow: hidden;
  border: 1px solid rgba(174, 199, 224, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(10, 21, 34, 0.98), rgba(7, 15, 26, 0.98));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #e5edf5;
}

.film-toolbar {
  justify-content: space-between;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(174, 199, 224, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.window-controls {
  width: 46px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #516171 0 10px, #91a4b8 10px 24px, #2dd4ff 24px);
}

.film-toolbar strong {
  color: #f8fafc;
  font-size: 14px;
}

.film-toolbar small {
  justify-self: center;
  padding: 5px 8px;
  border: 1px solid rgba(174, 199, 224, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #9fb1c5;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.film-toolbar em {
  min-width: 238px;
  color: #7dd3fc;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-align: right;
}

.film-body {
  align-items: stretch;
  min-height: 438px;
}

.film-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
  width: 116px;
  padding: 14px 10px;
  border-right: 1px solid rgba(174, 199, 224, 0.1);
  background: rgba(255, 255, 255, 0.022);
}

.film-sidebar button,
.film-controls button,
.modal-close {
  border: 1px solid rgba(174, 199, 224, 0.13);
  border-radius: 8px;
  color: inherit;
  font: inherit;
  font-weight: 860;
}

.film-sidebar button {
  min-height: 38px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.042);
  color: #9fb1c5;
  overflow: hidden;
  font-size: 13px;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  transition: 160ms ease;
}

.film-sidebar button:hover,
.film-sidebar button.active {
  border-color: rgba(45, 212, 255, 0.42);
  background: rgba(45, 212, 255, 0.12);
  color: #ffffff;
}

.film-stage {
  position: relative;
  flex: 1;
  min-width: 0;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(45, 212, 255, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01));
}

.command-strip,
.signal-feed {
  flex-wrap: wrap;
  gap: 7px;
}

.command-strip {
  margin-bottom: 10px;
}

.command-strip span,
.signal-feed span,
.film-filterbar span {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(174, 199, 224, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #b8c8d9;
  font-size: 11px;
  font-weight: 840;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.command-strip span,
.signal-feed span {
  padding: 7px 9px;
}

.command-strip span:first-child {
  border-color: rgba(45, 212, 255, 0.38);
  color: #dff8ff;
}

.film-filterbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 9px;
}

.film-filterbar span {
  padding: 8px 9px;
}

.film-metrics {
  gap: 9px;
  margin-top: 9px;
}

.film-metrics article,
.film-headline,
.film-table div,
.film-opportunity-card,
.film-timeline span,
.board-kpis article,
.board-table div,
.board-action,
.module-visual,
.compare-signal {
  border: 1px solid rgba(174, 199, 224, 0.12);
  background: rgba(255, 255, 255, 0.052);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.film-metrics article {
  flex: 1;
  min-height: 68px;
  padding: 10px;
  border-radius: 10px;
}

.film-metrics span,
.film-metrics strong,
.film-metrics small {
  display: block;
}

.film-headline span,
.film-metrics span,
.film-table em,
.film-caption span {
  color: #9fb1c5;
}

.film-metrics span {
  font-size: 12px;
  font-weight: 820;
}

.film-metrics strong {
  margin-top: 8px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
}

.film-metrics small {
  margin-top: 7px;
  color: #7f93aa;
  font-size: 10px;
  font-weight: 840;
}

.film-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 202px;
  gap: 10px;
  margin-top: 10px;
}

.film-main-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(200px, 0.52fr);
  gap: 10px;
}

.film-headline {
  min-height: 100%;
  padding: 16px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(45, 212, 255, 0.1), rgba(255, 255, 255, 0.045));
}

.film-headline span {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 920;
  text-transform: uppercase;
}

.film-headline strong {
  display: block;
  max-width: 540px;
  color: #ffffff;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.04;
}

.film-chart {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 9px;
  min-height: 98px;
  padding: 12px;
  border: 1px solid rgba(174, 199, 224, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(3, 10, 20, 0.18), rgba(3, 10, 20, 0.42));
}

.film-chart span {
  display: block;
  height: var(--bar);
  min-height: 28px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #5eead4, #2dd4ff 58%, #0ea5e9);
  transform-origin: bottom;
}

.film-table {
  display: grid;
  gap: 7px;
  grid-column: 1 / -1;
}

.film-table div {
  gap: 10px;
  min-height: 46px;
  padding: 7px 12px;
  border-radius: 9px;
}

.film-table span {
  flex: 1.15;
  min-width: 0;
  overflow: hidden;
  color: #dbeafe;
  font-size: 13px;
  font-weight: 830;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.film-table strong,
.film-table i,
.film-table em {
  font-size: 12px;
}

.film-table strong {
  width: 90px;
  color: #ffffff;
  white-space: nowrap;
}

.film-table i {
  width: 124px;
  color: #bdd0e3;
  font-style: normal;
  font-weight: 820;
}

.film-table em {
  width: 138px;
  color: #7dd3fc;
  font-style: normal;
  font-weight: 920;
  text-align: right;
}

.film-opportunity-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  border-color: rgba(94, 234, 212, 0.22);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(14, 37, 55, 0.98), rgba(10, 24, 39, 0.98));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.film-opportunity-card span,
.film-opportunity-card small {
  color: #8ba2ba;
  font-size: 11px;
  font-weight: 920;
  text-transform: uppercase;
}

.film-opportunity-card strong,
.film-opportunity-card b {
  color: #ffffff;
}

.film-opportunity-card strong {
  font-size: 18px;
  line-height: 1.12;
}

.film-opportunity-card p {
  margin: 0;
  color: #b8c6d8;
  font-size: 13px;
  line-height: 1.48;
}

.film-opportunity-card div {
  padding-top: 12px;
  border-top: 1px solid rgba(174, 199, 224, 0.12);
}

.signal-feed {
  margin-top: 10px;
}

.signal-feed span {
  border-color: rgba(200, 162, 74, 0.22);
}

.film-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.film-timeline span {
  position: relative;
  min-height: 38px;
  padding: 8px 10px 8px 22px;
  border-radius: 10px;
  color: #aab8ca;
  font-size: 11px;
  font-weight: 820;
}

.film-timeline span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}

.film-timeline b {
  display: block;
  color: #ffffff;
  font-size: 12px;
}

.film-cursor {
  position: absolute;
  left: 69%;
  top: 62%;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 7px rgba(94, 234, 212, 0.18), 0 12px 28px rgba(0, 0, 0, 0.34);
  transition: left 520ms ease, top 520ms ease;
}

.film-cursor::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -7px;
  width: 0;
  height: 0;
  border-top: 14px solid #ffffff;
  border-right: 8px solid transparent;
  transform: rotate(-18deg);
}

.film-caption {
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 9px 16px;
  border-top: 1px solid rgba(174, 199, 224, 0.12);
  background: rgba(8, 16, 28, 0.96);
}

.film-caption span {
  max-width: 680px;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}

.film-controls {
  flex-shrink: 0;
  gap: 8px;
}

.film-controls button,
.modal-close {
  min-height: 36px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.film-controls .icon-control {
  width: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 0;
  color: #cfe9f7;
  font-size: 10px;
  letter-spacing: 0;
  opacity: 0.72;
}

.film-controls .icon-control::before {
  content: "";
  display: block;
  width: 9px;
  height: 12px;
  margin: auto;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.film-controls .icon-control[data-state="play"]::before {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
  border-right: 0;
}

.film-controls .icon-control:hover {
  opacity: 1;
}

.film-controls button:last-child,
.modal-close {
  border-color: rgba(94, 234, 212, 0.38);
  color: #7dd3fc;
}

.step-pulse .film-cursor {
  animation: cursor-click 900ms ease;
}

.step-pulse .film-chart span {
  animation: bar-rise 700ms ease both;
}

.step-pulse .film-headline,
.step-pulse .film-metrics article {
  animation: soft-flash 620ms ease;
}

.section {
  padding: clamp(72px, 8vw, 116px) clamp(18px, 5vw, 76px);
  border-bottom: 1px solid rgba(7, 19, 33, 0.08);
  background: #f7fafc;
  color: var(--dark);
}

.section:nth-of-type(odd) {
  background: #ffffff;
}

.section-heading {
  max-width: 930px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 820px;
}

.section-heading p,
.closing-cta p,
.modal-copy p:not(.eyebrow) {
  color: #44566b;
  font-size: 19px;
  line-height: 1.64;
}

.value-grid,
.compare-grid,
.board-kpis {
  display: grid;
  gap: 16px;
}

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

.value-grid article,
.compare-grid article,
.product-board,
.contact-form,
.module-experience {
  border: 1px solid rgba(7, 19, 33, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 19, 33, 0.055);
}

.value-grid article {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 24px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.value-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-strong), rgba(200, 162, 74, 0.72));
  opacity: 0;
  transition: opacity 160ms ease;
}

.value-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.32);
  box-shadow: 0 22px 44px rgba(7, 19, 33, 0.09);
}

.value-grid article:hover::before {
  opacity: 1;
}

.value-grid article i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 9px;
  background: linear-gradient(180deg, #ffffff, #eef9ff);
}

.value-grid article i::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid var(--cyan-strong);
  border-left-color: transparent;
  border-radius: 999px;
}

.value-grid span {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 920;
}

.value-grid p,
.compare-grid li,
.board-kpis small {
  color: #586b80;
  line-height: 1.56;
}

.module-experience {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  background: #071321;
  color: #eaf3ff;
}

.module-tabs {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-right: 1px solid rgba(174, 199, 224, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.module-tabs button {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #aebfd1;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.module-tabs button:hover,
.module-tabs button.active {
  border-color: rgba(45, 212, 255, 0.28);
  background: rgba(45, 212, 255, 0.1);
  color: #ffffff;
}

.module-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 1fr);
  gap: 30px;
  align-items: center;
  min-height: 390px;
  padding: clamp(26px, 4vw, 48px);
}

.module-preview h3 {
  max-width: 560px;
  color: #ffffff;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
}

.module-preview p:not(.eyebrow) {
  max-width: 580px;
  color: #bdd0e3;
  font-size: 17px;
  line-height: 1.65;
}

.module-visual {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.module-visual span {
  display: block;
  height: 56px;
  border: 1px solid rgba(174, 199, 224, 0.14);
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(45, 212, 255, 0.26), rgba(255, 255, 255, 0.075) 48%, rgba(255, 255, 255, 0.035));
  transition: width 220ms ease;
}

.module-visual span:nth-child(2) {
  width: 84%;
}

.module-visual span:nth-child(3) {
  width: 72%;
}

.module-visual b {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 84px;
  height: 84px;
  border: 12px solid rgba(45, 212, 255, 0.14);
  border-top-color: var(--cyan);
  border-radius: 999px;
  transition: transform 220ms ease;
}

.capability-section .section-heading {
  max-width: 1040px;
}

.module-experience {
  grid-template-columns: 360px minmax(0, 1fr);
  border-color: rgba(174, 199, 224, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 78% 12%, rgba(45, 212, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #071321 0%, #0b2035 58%, #071321 100%);
  box-shadow: 0 28px 80px rgba(7, 19, 33, 0.22);
}

.module-tabs {
  gap: 10px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.module-tabs button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 4px;
  align-items: center;
  min-height: 78px;
  padding: 13px 14px;
  border-color: rgba(174, 199, 224, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.module-tabs button > span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(45, 212, 255, 0.2);
  border-radius: 8px;
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 920;
}

.module-tabs button > strong {
  color: #eef6ff;
  font-size: 14px;
  line-height: 1.18;
}

.module-tabs button > small {
  color: #8fa2b8;
  font-size: 11px;
  font-weight: 760;
}

.module-tabs button:hover,
.module-tabs button.active {
  transform: translateX(2px);
  border-color: rgba(94, 234, 212, 0.32);
  background: rgba(45, 212, 255, 0.085);
}

.module-preview {
  grid-template-columns: minmax(330px, 1.06fr) minmax(340px, 0.94fr);
  gap: clamp(20px, 3vw, 40px);
  min-height: 560px;
  padding: clamp(28px, 4vw, 54px);
}

.module-copy {
  display: grid;
  align-content: center;
}

.module-preview h3 {
  max-width: 700px;
  font-size: clamp(28px, 2.75vw, 42px);
}

.module-output {
  display: grid;
  gap: 8px;
  margin: 22px 0 18px;
  padding: 16px;
  border: 1px solid rgba(94, 234, 212, 0.22);
  border-radius: 10px;
  background: rgba(94, 234, 212, 0.075);
}

.module-output span,
.module-flow span,
.module-visual span,
.module-recommendation span {
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 920;
  text-transform: uppercase;
}

.module-output span,
.module-flow span,
.module-visual-grid span,
.module-signal-row span,
.module-recommendation span {
  display: inline;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.module-output strong {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
}

.module-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.module-flow article {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(174, 199, 224, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.module-flow strong {
  display: block;
  margin-top: 8px;
  color: #eaf3ff;
  font-size: 13px;
  line-height: 1.35;
}

.module-visual {
  align-self: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(174, 199, 224, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(10, 21, 34, 0.98), rgba(7, 15, 26, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 24px 70px rgba(0, 0, 0, 0.28);
}

.module-visual::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.58), transparent);
  animation: scan-pass 5.5s ease-in-out infinite;
  pointer-events: none;
}

.module-visual-toolbar,
.module-visual-grid,
.module-signal-row {
  display: grid;
}

.module-visual-toolbar {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.module-visual-toolbar > span {
  width: 42px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #516171 0 10px, #91a4b8 10px 24px, #2dd4ff 24px);
}

.module-visual-toolbar strong,
.module-signal-row strong,
.module-recommendation strong {
  color: #ffffff;
}

.module-visual-toolbar em {
  color: #7dd3fc;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.module-visual-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.module-visual-grid article,
.module-signal-row,
.module-recommendation {
  border: 1px solid rgba(174, 199, 224, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.module-visual-grid article {
  min-height: 110px;
  padding: 12px;
}

.module-visual-grid strong {
  display: block;
  margin-top: 14px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.05;
}

.module-signal-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px;
}

.module-bars {
  display: grid;
  gap: 9px;
}

.module-bars span {
  display: block;
  height: 14px;
  border: 1px solid rgba(45, 212, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 212, 255, 0.46), rgba(94, 234, 212, 0.18), rgba(255, 255, 255, 0.05));
  transition: width 220ms ease;
}

.module-bars span:nth-child(2) {
  width: 84%;
}

.module-bars span:nth-child(3) {
  width: 72%;
}

.module-recommendation {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-color: rgba(94, 234, 212, 0.22);
  background: rgba(94, 234, 212, 0.075);
}

.module-switched .module-preview {
  animation: soft-flash 520ms ease;
}

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

.compare-grid article {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.compare-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 7px;
  background: #edf2f7;
  color: #64748b;
  font-size: 12px;
  font-weight: 920;
  text-transform: uppercase;
}

.compare-grid .after-card {
  border-color: rgba(14, 165, 233, 0.34);
  background: linear-gradient(135deg, #071321 0%, #0b2035 62%, #0d2d46 100%);
  box-shadow: 0 22px 54px rgba(7, 19, 33, 0.18);
}

.compare-grid .after-card h3,
.compare-grid .after-card li {
  color: #eef6ff;
}

.compare-grid .after-card span {
  background: rgba(45, 212, 255, 0.12);
  color: #7dd3fc;
}

.compare-grid ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.compare-grid li {
  position: relative;
  padding-left: 20px;
}

.compare-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan-strong);
}

.compare-grid article:not(.after-card) {
  background: linear-gradient(135deg, #ffffff, #f6f8fb);
}

.compare-grid article:not(.after-card) li::before {
  background: #94a3b8;
}

.compare-signal {
  display: inline-grid;
  gap: 3px;
  margin-top: 26px;
  padding: 13px 15px;
  border-radius: 9px;
  border-color: rgba(45, 212, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.compare-signal strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.compare-signal small {
  color: #bdd0e3;
  font-weight: 820;
}

.product-board {
  overflow: hidden;
  background: #071321;
  color: #eef6ff;
}

.board-toolbar {
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(174, 199, 224, 0.12);
}

.board-toolbar strong {
  color: #ffffff;
  font-size: 16px;
}

.board-toolbar div {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.board-toolbar span {
  padding: 7px 10px;
  border: 1px solid rgba(174, 199, 224, 0.13);
  border-radius: 7px;
  color: #aebfd1;
  font-size: 12px;
  font-weight: 850;
}

.board-content {
  display: grid;
  grid-template-columns: 0.72fr 1.18fr 0.72fr;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(45, 212, 255, 0.07), transparent 38%),
    rgba(255, 255, 255, 0.025);
}

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

.board-kpis article {
  min-height: 112px;
  padding: 18px;
  border-radius: 10px;
}

.board-kpis span,
.board-kpis strong,
.board-kpis small {
  display: block;
}

.board-kpis span {
  color: #9fb1c5;
  font-size: 13px;
  font-weight: 850;
}

.board-kpis strong {
  margin-top: 12px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
}

.board-kpis small {
  margin-top: 8px;
  color: #91a4b8;
}

.board-table {
  display: grid;
  gap: 10px;
}

.board-table div {
  gap: 14px;
  min-height: 62px;
  padding: 0 16px;
  border-radius: 10px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.board-table div:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 212, 255, 0.34);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.board-table span {
  flex: 1;
  color: #eaf3ff;
  font-weight: 850;
}

.board-table strong {
  width: 142px;
  color: #ffffff;
  font-size: 13px;
}

.board-table em {
  width: 74px;
  color: #7dd3fc;
  font-size: 12px;
  font-style: normal;
  font-weight: 920;
  text-align: right;
}

.board-action {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border-color: rgba(94, 234, 212, 0.22);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(94, 234, 212, 0.08), rgba(255, 255, 255, 0.052));
}

.board-action span {
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 920;
  text-transform: uppercase;
}

.board-action strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.12;
}

.board-action p {
  color: #b8c6d8;
  line-height: 1.55;
}

.closing-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(72px, 8vw, 116px) clamp(18px, 5vw, 76px);
  border-bottom: 1px solid rgba(174, 199, 224, 0.1);
  background: linear-gradient(135deg, #071321 0%, #0b2035 58%, #071321 100%);
  color: #ffffff;
}

.closing-cta h2 {
  color: #ffffff;
}

.closing-cta p {
  color: #bdd0e3;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(174, 199, 224, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #c8d7e6;
  font-size: 13px;
  font-weight: 820;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(174, 199, 224, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contact-form input {
  min-height: 44px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 76px);
  background: #050b14;
  color: #8fa2b8;
  font-size: 14px;
  font-weight: 720;
}

.film-modal {
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(174, 199, 224, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 12%, rgba(45, 212, 255, 0.12), transparent 30%),
    linear-gradient(145deg, rgba(7, 19, 33, 0.98), rgba(5, 11, 20, 0.98));
  color: var(--ink);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.56);
  opacity: 0;
  transform: translateY(12px) scale(0.985);
  transition: opacity 180ms ease, transform 180ms ease;
}

.film-modal[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.film-modal::backdrop {
  background: rgba(3, 10, 18, 0.76);
  backdrop-filter: blur(10px);
}

.film-modal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-height: calc(100vh - 32px);
  padding: 28px;
  overflow: auto;
}

.modal-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
  column-gap: 24px;
  align-self: start;
  max-width: none;
  padding: 2px 54px 0 0;
}

.modal-intro .eyebrow {
  grid-column: 1 / -1;
}

.modal-intro h2,
.demo-panel-copy h3 {
  color: #ffffff;
}

.modal-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 3.5vw, 48px);
}

.modal-intro strong {
  display: block;
  margin-bottom: 16px;
  color: #7dd3fc;
  font-size: 18px;
}

.modal-intro p {
  color: #bdd0e3;
  font-size: 15px;
  line-height: 1.54;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(174, 199, 224, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #dceafa;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.demo-tour {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
}

.demo-steps {
  display: grid;
  gap: 10px;
  align-content: start;
}

.demo-steps button {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 112px;
  padding: 13px 14px 13px 18px;
  border: 1px solid rgba(174, 199, 224, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #d8e6f5;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.demo-steps button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: rgba(45, 212, 255, 0.16);
}

.demo-steps button:hover,
.demo-steps button.active {
  transform: translateX(2px);
  border-color: rgba(94, 234, 212, 0.34);
  background: rgba(45, 212, 255, 0.08);
}

.demo-steps button.active::before {
  background: linear-gradient(180deg, var(--cyan), var(--green));
  box-shadow: 0 0 20px rgba(45, 212, 255, 0.22);
}

.demo-steps span,
.demo-panel-copy span,
.tour-command span {
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 920;
  text-transform: uppercase;
}

.demo-steps strong {
  color: #ffffff;
  font-size: 15px;
}

.demo-steps small {
  color: #9fb1c5;
  font-size: 12px;
  line-height: 1.42;
}

.demo-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: 14px;
  min-width: 0;
}

.demo-panel-copy {
  min-height: auto;
  padding: 18px;
  border: 1px solid rgba(174, 199, 224, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.demo-panel-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(23px, 2vw, 31px);
}

.demo-panel-copy p {
  max-width: 650px;
  color: #c7d7e8;
  font-size: 14px;
  line-height: 1.5;
}

.tour-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin: 4px 0 10px;
  padding: 0 12px;
  border: 1px solid rgba(94, 234, 212, 0.32);
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.1);
  color: #ffffff;
  font-size: 13px;
}

.demo-panel-copy small {
  display: block;
  color: #94a9bf;
  font-weight: 760;
}

.tour-command {
  position: relative;
  display: grid;
  gap: 9px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(174, 199, 224, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(10, 21, 34, 0.98), rgba(7, 15, 26, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 22px 56px rgba(0, 0, 0, 0.26);
}

.tour-command::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.68), transparent);
  animation: scan-pass 5.5s ease-in-out infinite;
  pointer-events: none;
}

.tour-toolbar,
.tour-metrics,
.tour-row,
.tour-action,
.tour-result,
.demo-controls {
  display: flex;
  align-items: center;
}

.tour-toolbar {
  justify-content: space-between;
  gap: 12px;
}

.tour-toolbar > span {
  width: 42px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #516171 0 10px, #91a4b8 10px 24px, #2dd4ff 24px);
}

.tour-toolbar strong {
  color: #ffffff;
}

.tour-toolbar em {
  color: #7dd3fc;
  font-size: 12px;
  font-style: normal;
  font-weight: 880;
}

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

.tour-metrics article,
.tour-row,
.tour-action,
.tour-result {
  border: 1px solid rgba(174, 199, 224, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.tour-metrics article {
  padding: 10px;
}

.tour-metrics strong {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-size: 16px;
}

.tour-row {
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 10px;
}

.tour-row strong,
.tour-action strong,
.tour-result strong {
  color: #ffffff;
}

.tour-row em {
  color: #9fb1c5;
  font-style: normal;
  font-weight: 780;
}

.tour-action,
.tour-result {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.tour-action p {
  margin: 0;
  color: #9fb1c5;
  font-size: 13px;
}

.tour-command[data-tour-state="signal"] .is-highlight-signal,
.tour-command[data-tour-state="priority"] .is-highlight-priority,
.tour-command[data-tour-state="action"] .is-highlight-action,
.tour-command[data-tour-state="advantage"] .is-highlight-advantage {
  border-color: rgba(94, 234, 212, 0.42);
  background: rgba(94, 234, 212, 0.085);
  box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.08), 0 16px 38px rgba(0, 0, 0, 0.18);
}

.demo-controls {
  position: sticky;
  bottom: -28px;
  z-index: 3;
  grid-column: 1 / -1;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 33, 0), rgba(7, 19, 33, 0.96) 34%, rgba(7, 19, 33, 0.98));
}

.modal-open {
  overflow: hidden;
}

@keyframes cursor-click {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.72);
  }
}

@keyframes bar-rise {
  from {
    transform: scaleY(0.35);
    opacity: 0.72;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes soft-flash {
  0%, 100% {
    border-color: rgba(174, 199, 224, 0.12);
  }
  42% {
    border-color: rgba(94, 234, 212, 0.46);
  }
}

@media (max-width: 1160px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
  }

  .demo-film {
    justify-self: stretch;
  }
}

@media (max-width: 1120px) {
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-experience,
  .module-preview {
    grid-template-columns: 1fr;
  }

  .module-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(174, 199, 224, 0.12);
  }
}

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

  .site-header nav {
    display: none;
  }

  .closing-cta,
  .board-content,
  .film-modal-content,
  .film-workspace,
  .film-main-panel {
    grid-template-columns: 1fr;
  }

  .film-filterbar,
  .film-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: auto;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small,
  .ghost-link {
    display: none;
  }

  .button.small {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  h1 {
    font-size: 40px;
    line-height: 0.98;
  }

  h2 {
    font-size: 34px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-proof span {
    border-radius: 8px;
  }

  .value-grid,
  .compare-grid,
  .module-tabs {
    grid-template-columns: 1fr;
  }

  .film-body,
  .film-caption {
    align-items: stretch;
    flex-direction: column;
  }

  .film-body {
    min-height: auto;
  }

  .film-sidebar {
    display: none;
  }

  .film-stage {
    padding: 12px;
  }

  .film-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .command-strip span:nth-child(n+3),
  .signal-feed,
  .film-filterbar span:nth-child(n+3),
  .film-opportunity-card,
  .film-timeline,
  .film-table div:nth-child(3),
  .film-metrics article:nth-child(4),
  .film-caption span {
    display: none;
  }

  .film-filterbar {
    grid-template-columns: 1fr;
  }

  .film-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }

  .film-toolbar em {
    min-width: 0;
    text-align: left;
  }

  .film-headline strong {
    font-size: 24px;
  }

  .film-chart {
    min-height: 88px;
  }

  .film-table div,
  .board-table div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
  }

  .film-table span,
  .board-table span {
    white-space: normal;
  }

  .film-table strong,
  .film-table em,
  .board-table strong,
  .board-table em {
    width: auto;
    text-align: left;
  }

  .film-controls {
    width: 100%;
  }

  .film-controls button {
    flex: 1;
  }

  .film-controls .icon-control {
    flex: 0 0 30px;
  }

  .module-preview {
    padding: 20px;
  }

  .board-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .board-toolbar div {
    justify-content: flex-start;
  }

  .film-modal {
    width: calc(100vw - 20px);
  }

  .film-modal-content {
    padding: 18px;
  }

  .modal-close {
    position: static;
    width: fit-content;
    margin-left: auto;
  }

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

/* Enterprise narrative refinements */
.authority-line {
  max-width: 680px;
  margin: 18px 0 0;
  color: #d8e6f5;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.45;
}

.command-center .film-shell {
  border-color: rgba(174, 199, 224, 0.24);
}

.scan-line {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 80px;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.72), transparent);
  box-shadow: 0 0 24px rgba(45, 212, 255, 0.28);
  animation: scan-pass 5.5s ease-in-out infinite;
  pointer-events: none;
}

.metric-counts article {
  position: relative;
  overflow: hidden;
}

.metric-counts article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  transform: translateX(-120%);
  animation: metric-sheen 6s ease-in-out infinite;
}

.enterprise-workspace {
  grid-template-columns: minmax(0, 1fr) 218px;
}

.enterprise-panel {
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
}

.opportunity-table .table-head {
  min-height: 30px;
  background: rgba(255, 255, 255, 0.028);
}

.opportunity-table .table-head span,
.opportunity-table .table-head strong,
.opportunity-table .table-head b,
.opportunity-table .table-head em {
  color: #8ba2ba;
  font-size: 10px;
  font-weight: 920;
  text-transform: uppercase;
}

.film-table b {
  width: 96px;
  min-width: 96px;
  padding: 5px 7px;
  border: 1px solid rgba(174, 199, 224, 0.14);
  border-radius: 8px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 920;
  line-height: 1.05;
  text-align: left;
}

.film-table b small {
  display: block;
  margin-top: 3px;
  color: #9fb1c5;
  font-size: 9px;
  font-weight: 820;
}

.score-high {
  border-color: rgba(94, 234, 212, 0.28) !important;
  background: rgba(94, 234, 212, 0.08);
}

.score-active {
  border-color: rgba(45, 212, 255, 0.28) !important;
  background: rgba(45, 212, 255, 0.08);
}

.score-risk {
  border-color: rgba(200, 162, 74, 0.34) !important;
  background: rgba(200, 162, 74, 0.08);
}

.opportunity-table .table-head i {
  color: #8ba2ba;
  font-size: 10px;
  font-weight: 920;
  text-transform: uppercase;
}

.film-opportunity-card dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.film-opportunity-card dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px 0 0;
  border-top: 1px solid rgba(174, 199, 224, 0.12);
}

.film-opportunity-card dt {
  color: #8ba2ba;
  font-size: 10px;
  font-weight: 920;
  text-transform: uppercase;
}

.film-opportunity-card dd {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 880;
  text-align: right;
}

.score-explain {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(174, 199, 224, 0.12);
}

.score-explain span {
  color: #7dd3fc;
}

.score-explain ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.score-explain li {
  padding: 5px 7px;
  border: 1px solid rgba(174, 199, 224, 0.13);
  border-radius: 999px;
  color: #bdd0e3;
  font-size: 10px;
  font-weight: 820;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 76px);
  background: linear-gradient(90deg, rgba(45, 212, 255, 0.28), rgba(200, 162, 74, 0.18));
}

.proof-strip article {
  min-height: 122px;
  padding: 22px 14px;
  background: #071321;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  color: #ffffff;
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1;
}

.proof-strip span {
  margin-top: 10px;
  color: #9fb1c5;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.35;
}

.proof-tags strong {
  color: #7dd3fc;
  font-size: 15px;
  line-height: 1.2;
}

.problem-grid,
.impact-grid,
.audience-grid,
.score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.problem-grid article,
.impact-grid article,
.audience-grid article,
.score-grid article {
  min-height: 214px;
  padding: 24px;
  border: 1px solid rgba(7, 19, 33, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 19, 33, 0.055);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.problem-grid article:hover,
.impact-grid article:hover,
.audience-grid article:hover,
.score-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 22px 44px rgba(7, 19, 33, 0.09);
}

.problem-grid span,
.audience-grid span,
.score-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan-strong);
  font-size: 12px;
  font-weight: 920;
  text-transform: uppercase;
}

.score-section {
  background: #ffffff;
}

.formula-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr) auto) minmax(170px, 1.15fr);
  align-items: center;
  gap: 8px;
  margin: -12px 0 24px;
  padding: 14px;
  border: 1px solid rgba(7, 19, 33, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 19, 33, 0.98), rgba(10, 32, 52, 0.96));
  box-shadow: 0 18px 42px rgba(7, 19, 33, 0.14);
}

.formula-strip span,
.formula-strip strong {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid rgba(174, 199, 224, 0.14);
  border-radius: 8px;
  color: #dceafa;
  font-size: 12px;
  font-weight: 880;
  line-height: 1.25;
  text-align: center;
}

.formula-strip b {
  color: #7dd3fc;
  font-size: 17px;
}

.formula-strip strong {
  border-color: rgba(94, 234, 212, 0.34);
  background: rgba(94, 234, 212, 0.09);
  color: #ffffff;
}

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

.score-grid article {
  min-height: 190px;
  background:
    linear-gradient(180deg, #ffffff, #f7fafc);
}

.score-grid h3 {
  font-size: 17px;
}

.score-grid p {
  color: #586b80;
  font-size: 14px;
  line-height: 1.5;
}

.problem-grid p,
.impact-grid p,
.audience-grid p,
.case-card p,
.paradigm-card p {
  color: #586b80;
  line-height: 1.58;
}

.compare-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--cyan-strong);
  font-size: 12px;
  font-weight: 920;
  text-transform: uppercase;
}

.paradigm-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(45, 212, 255, 0.16), transparent 28%),
    linear-gradient(135deg, #071321 0%, #0b2035 58%, #071321 100%);
}

.paradigm-card,
.case-card {
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(174, 199, 224, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.paradigm-card {
  padding: clamp(56px, 8vw, 112px);
  text-align: center;
}

.paradigm-card h2,
.paradigm-card p {
  color: #ffffff;
}

.paradigm-card h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 0.98;
}

.paradigm-card p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #bdd0e3;
}

.capability-section,
.audience-section {
  background: #f7fafc;
}

.impact-section {
  background: #ffffff;
}

.trust-section {
  background: #f7fafc;
}

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

.trust-grid article {
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(7, 19, 33, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 19, 33, 0.045);
}

.trust-grid h3 {
  font-size: 17px;
}

.trust-grid p {
  color: #586b80;
  font-size: 14px;
  line-height: 1.5;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 32px;
  padding: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(7, 19, 33, 0.98), rgba(11, 32, 53, 0.98));
  color: #ffffff;
}

.case-card h2,
.case-card p {
  color: #ffffff;
}

.case-card p {
  color: #bdd0e3;
}

.case-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-card li {
  padding: 14px;
  border: 1px solid rgba(174, 199, 224, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: #d8e6f5;
  font-weight: 780;
  line-height: 1.45;
}

.case-card li span {
  display: inline-flex;
  margin-right: 10px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 920;
}

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

.contact-form label:nth-last-of-type(1),
.contact-form .button {
  grid-column: 1 / -1;
}

.closing-cta small {
  display: inline-flex;
  margin-top: 18px;
  color: #9fb1c5;
  font-size: 13px;
  font-weight: 820;
}

.contact-form input:focus,
.contact-form textarea:focus,
.film-sidebar button:focus-visible,
.module-tabs button:focus-visible,
.demo-steps button:focus-visible,
.demo-controls button:focus-visible,
.modal-close:focus-visible,
.button:focus-visible,
.ghost-link:focus-visible,
.sticky-cta:focus-visible {
  outline: 2px solid rgba(45, 212, 255, 0.9);
  outline-offset: 3px;
}

.contact-form input:valid,
.contact-form textarea:valid {
  border-color: rgba(94, 234, 212, 0.34);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(45, 212, 255, 0.38);
  border-radius: 999px;
  background: rgba(7, 19, 33, 0.78);
  color: #ffffff;
  font-size: 13px;
  font-weight: 880;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.is-scrolled .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes scan-pass {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.25;
  }
  48% {
    transform: translateY(250px);
    opacity: 0.75;
  }
}

@keyframes metric-sheen {
  0%, 60%, 100% {
    transform: translateX(-120%);
  }
  78% {
    transform: translateX(120%);
  }
}

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

@media (max-width: 1180px) {
  .proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .formula-strip b {
    display: none;
  }

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

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

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

@media (max-width: 980px) {
  .enterprise-workspace,
  .enterprise-panel,
  .case-card {
    grid-template-columns: 1fr;
  }

  .film-modal-content,
  .demo-tour,
  .demo-panel {
    grid-template-columns: 1fr;
  }

  .modal-intro {
    padding-top: 4px;
  }

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

  .problem-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

  .signal-path {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .authority-line {
    font-size: 14px;
  }

  .film-modal {
    width: 100vw;
    max-width: none;
    max-height: 100vh;
    height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .film-modal-content {
    max-height: 100vh;
    padding: 18px;
  }

  .modal-close {
    position: sticky;
    top: 0;
    margin-left: auto;
  }

  .modal-intro h2 {
    font-size: 34px;
  }

  .modal-intro {
    grid-template-columns: 1fr;
  }

  .demo-steps {
    grid-template-columns: 1fr;
  }

  .demo-steps button {
    min-height: auto;
  }

  .tour-metrics {
    grid-template-columns: 1fr;
  }

  .tour-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-controls {
    align-items: stretch;
    flex-direction: column;
    bottom: 0;
  }

  .demo-controls .button {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding-left: 18px;
    padding-right: 18px;
  }

  .proof-strip article {
    min-height: auto;
    padding: 18px;
  }

  .signal-path {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .signal-path i {
    display: none;
  }

  .formula-strip {
    grid-template-columns: 1fr;
  }

  .impact-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .film-table b {
    width: auto;
    min-width: 0;
    text-align: left;
  }

  .film-table i {
    width: auto;
  }

  .film-opportunity-card dl {
    display: none;
  }

  .score-explain {
    display: none;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    bottom: 14px;
  }

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