:root {
  color-scheme: light;
  --ink: #080b0a;
  --ink-soft: #31403b;
  --muted: #66736f;
  --paper: #f5f8f7;
  --paper-strong: #ffffff;
  --paper-dim: #e7efeb;
  --line: rgba(8, 11, 10, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --green: #0b7c63;
  --green-bright: #31d0a2;
  --copper: #b85836;
  --copper-bright: #ef7748;
  --gold: #d9b24c;
  --black: #050706;
  --radius: 28px;
  --radius-sm: 18px;
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --font-sans: "Geist", "Aptos", "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --font-display: "Geist", "Aptos Display", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 100%;
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(8, 11, 10, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 11, 10, 0.45) 1px, transparent 1px);
  background-size: 42px 42px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--black);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 500ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 30;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.46);
  color: #fff;
  backdrop-filter: blur(24px);
  pointer-events: auto;
  transition:
    background 500ms var(--ease),
    border-color 500ms var(--ease),
    transform 500ms var(--ease);
}

.site-header[data-elevated="true"] .nav-shell {
  background: rgba(5, 7, 6, 0.76);
  border-color: rgba(255, 255, 255, 0.18);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
}

.brand-symbol {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: #fff;
  font-family: var(--font-display);
  font-size: 20px;
}

.brand-word {
  font-size: 18px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition:
    color 400ms var(--ease),
    background 400ms var(--ease);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 138px max(24px, calc((100vw - 1180px) / 2)) 38px;
  color: #fff;
  background: var(--black);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.06);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.96) 0%, rgba(5, 7, 6, 0.82) 39%, rgba(5, 7, 6, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 7, 6, 0.92) 0%, rgba(5, 7, 6, 0.1) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding: 0 0 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green-bright);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.hero h1,
.section h2,
.section-heading h2,
.ai-section h2,
.architecture-section h2,
.method-section h2,
.pilot-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(76px, 13vw, 182px);
  max-width: 900px;
}

.hero-lede {
  margin: 22px 0 0;
  font-size: clamp(29px, 4vw, 58px);
  line-height: 1.02;
  font-weight: 680;
  max-width: 880px;
}

.hero-copy {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
}

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

.hero-system-card {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 166px;
  z-index: 2;
  width: min(360px, calc(100% - 48px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  color: #fff;
  background: rgba(5, 7, 6, 0.82);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.system-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 760;
}

.live-dot,
.dashboard-status-line i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 7px rgba(49, 208, 162, 0.13);
  animation: livePulse 2.8s var(--ease) infinite;
}

.hero-system-card strong {
  display: block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.02;
}

.hero-system-card dl {
  display: grid;
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-system-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-system-card dt,
.hero-system-card dd {
  margin: 0;
  font-size: 13px;
}

.hero-system-card dt {
  color: rgba(255, 255, 255, 0.58);
}

.hero-system-card dd {
  font-weight: 780;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 720;
  transition:
    transform 450ms var(--ease),
    background 450ms var(--ease),
    color 450ms var(--ease);
}

.button-primary {
  gap: 13px;
  padding: 7px 7px 7px 22px;
  color: #fff;
  background: var(--green);
}

.button-primary.dark {
  background: var(--black);
}

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

.button-primary:active,
.button-secondary:active {
  transform: scale(0.98);
}

.button-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: #fff;
  transition: transform 450ms var(--ease);
}

.button-primary:hover .button-icon,
.button-primary:focus-visible .button-icon {
  transform: translate(3px, -2px) scale(1.04);
}

.button-secondary {
  padding: 0 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(960px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.hero-proof div {
  min-height: 112px;
  padding: 22px;
  background: rgba(5, 7, 6, 0.62);
}

.proof-value {
  display: block;
  font-size: clamp(23px, 3vw, 35px);
  font-weight: 760;
  line-height: 1.05;
}

.proof-label {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.intro-band {
  padding: 48px max(24px, calc((100vw - 1180px) / 2)) 18px;
}

.intro-inner {
  max-width: 1100px;
}

.intro-inner p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(29px, 5vw, 76px);
  font-weight: 700;
  line-height: 1.02;
}

.reel-section {
  padding: 98px max(24px, calc((100vw - 1240px) / 2)) 116px;
  background:
    linear-gradient(180deg, rgba(245, 248, 247, 0), rgba(238, 242, 235, 0.88)),
    #f8f4ed;
}

.reel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  grid-auto-rows: 300px;
  gap: 14px;
  margin-top: 46px;
}

.reel-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 11, 10, 0.1);
  border-radius: 28px;
  background: var(--black);
  box-shadow: 0 26px 70px rgba(41, 51, 45, 0.12);
}

.reel-card-wide {
  grid-row: span 2;
}

.reel-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  opacity: 0.28;
  transform: translateY(-120%);
  animation: scanFrame 6.4s var(--ease) infinite;
  pointer-events: none;
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.9;
  transition: transform 900ms var(--ease), opacity 900ms var(--ease);
}

.reel-card:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.reel-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 520px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #fff;
  background: rgba(5, 7, 6, 0.78);
}

.reel-overlay span {
  display: block;
  color: var(--green-bright);
  font-size: 12px;
  font-weight: 800;
}

.reel-overlay strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.08;
}

.reel-overlay p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.demo-stand {
  padding: 96px max(18px, calc((100vw - 1320px) / 2)) 124px;
  background:
    radial-gradient(circle at 18% 18%, rgba(11, 124, 99, 0.13), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(184, 88, 54, 0.11), transparent 24%),
    #edf4f1;
}

.dashboard-product {
  width: min(1320px, 100%);
  margin: 48px auto 0;
  padding: 16px;
  border: 1px solid rgba(8, 11, 10, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 248, 0.74)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 34px 90px rgba(24, 51, 43, 0.14);
}

.dashboard-topbar,
.dashboard-segments,
.dashboard-kpis,
.dashboard-grid {
  min-width: 0;
}

.dashboard-status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  margin-bottom: 10px;
  padding: 9px 14px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.72);
  background: #09100e;
  font-size: 12px;
  font-weight: 720;
}

.dashboard-status-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 25px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 14px;
}

.dashboard-kicker {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 780;
}

.dashboard-topbar strong {
  display: block;
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.dashboard-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-controls label {
  display: grid;
  gap: 5px;
  min-width: 152px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-controls select {
  min-height: 42px;
  padding: 0 38px 0 14px;
  border: 1px solid rgba(8, 11, 10, 0.12);
  border-radius: 13px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.dashboard-segments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 14px;
  padding: 6px;
  border-radius: 20px;
  background: #dfe9e5;
}

.demo-segment {
  min-height: 48px;
  border: 0;
  border-radius: 15px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-weight: 760;
  transition:
    color 350ms var(--ease),
    background 350ms var(--ease),
    transform 350ms var(--ease);
}

.demo-segment:hover,
.demo-segment:focus-visible,
.demo-segment.is-active {
  color: #fff;
  background: var(--black);
  transform: translateY(-1px);
}

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

.kpi-card {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(8, 11, 10, 0.09);
  border-radius: 22px;
  background: #fff;
}

.kpi-card.accent {
  color: #fff;
  background: linear-gradient(135deg, #0b7c63, #12211d);
}

.kpi-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.kpi-card.accent span,
.kpi-card.accent em {
  color: rgba(255, 255, 255, 0.72);
}

.kpi-card strong {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 0.98;
  font-variant-numeric: tabular-nums lining-nums;
}

.kpi-card em {
  color: var(--green);
  font-size: 13px;
  font-style: normal;
  font-weight: 760;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.88fr);
  grid-auto-flow: dense;
  gap: 10px;
  margin-top: 10px;
}

.dashboard-panel {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(8, 11, 10, 0.09);
  border-radius: 24px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.chart-panel,
.drill-panel {
  grid-column: 1;
}

.ai-brief,
.breakdown-panel {
  grid-column: 2;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.panel-heading.compact {
  justify-content: flex-start;
  align-items: center;
}

.panel-heading span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.panel-heading h3 {
  margin: 3px 0 0;
  font-size: 22px;
  line-height: 1.1;
}

.panel-heading strong {
  color: var(--green);
  font-size: 14px;
}

.trend-chart {
  display: grid;
  grid-template-columns: repeat(12, minmax(16px, 1fr));
  align-items: end;
  gap: 8px;
  height: 274px;
  margin-top: 26px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(8, 11, 10, 0.08);
}

.trend-bar {
  position: relative;
  min-height: 30px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--green-bright), var(--green));
  transition:
    height 520ms var(--ease),
    transform 350ms var(--ease);
}

.trend-bar::after {
  position: absolute;
  left: 50%;
  bottom: -23px;
  content: attr(data-label);
  color: var(--muted);
  font-size: 11px;
  transform: translateX(-50%);
}

.trend-bar:hover {
  transform: translateY(-4px);
}

.ai-brief {
  color: #fff;
  background:
    radial-gradient(circle at 15% 5%, rgba(49, 208, 162, 0.18), transparent 34%),
    #09100e;
}

.ai-brief h3 {
  margin: 34px 0 0;
  font-family: var(--font-display);
  font-size: clamp(29px, 3vw, 42px);
  line-height: 1.03;
}

.ai-brief p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.ai-next-action {
  width: 100%;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: var(--green-bright);
  cursor: pointer;
  font-weight: 780;
  transition:
    transform 350ms var(--ease),
    background 350ms var(--ease);
}

.ai-next-action:hover,
.ai-next-action:focus-visible {
  background: #fff;
  transform: translateY(-2px);
}

.breakdown-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.breakdown-item {
  display: grid;
  gap: 8px;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
}

.breakdown-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ede9;
}

.breakdown-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transition: width 520ms var(--ease);
}

.drill-table {
  display: grid;
  gap: 7px;
  margin-top: 22px;
}

.drill-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) minmax(96px, 0.55fr) minmax(92px, 0.55fr) minmax(120px, 0.7fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid rgba(8, 11, 10, 0.08);
  border-radius: 15px;
  background: #f7faf8;
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 14px;
  transition:
    border-color 300ms var(--ease),
    background 300ms var(--ease),
    transform 300ms var(--ease);
}

.drill-row:first-child {
  min-height: 34px;
  color: var(--muted);
  background: transparent;
  border-color: transparent;
  cursor: default;
  font-size: 12px;
  font-weight: 760;
}

.drill-row:not(:first-child):hover,
.drill-row.is-selected {
  border-color: rgba(11, 124, 99, 0.34);
  background: #eef8f4;
  transform: translateX(3px);
}

.drill-row strong {
  color: var(--ink);
  font-variant-numeric: tabular-nums lining-nums;
}

.drill-detail {
  display: grid;
  grid-template-columns: minmax(120px, 0.78fr) minmax(160px, 1fr) minmax(160px, 1fr);
  gap: 1px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.drill-detail div {
  min-height: 78px;
  padding: 14px;
  background: #0d1210;
}

.drill-detail span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 780;
}

.drill-detail strong {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  line-height: 1.2;
}

.drill-detail em {
  display: block;
  margin-top: 7px;
  color: var(--green-bright);
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
}

.section,
.ai-section,
.benefits-section,
.architecture-section,
.method-section,
.pilot-section {
  padding: 112px max(24px, calc((100vw - 1180px) / 2));
}

.split-section,
.architecture-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.section-copy,
.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-copy h2,
.section-heading h2,
.ai-section h2,
.architecture-section h2,
.method-section h2,
.pilot-section h2 {
  font-size: clamp(42px, 7vw, 92px);
}

.section-copy p,
.section-heading p,
.pilot-copy p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.clarity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.signal-card,
.benefit-card,
.pipeline-step,
.method-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper-strong);
}

.signal-card {
  padding: 28px;
}

.signal-number,
.pipeline-step span,
.method-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.signal-card h3,
.benefit-card h3,
.pipeline-step strong,
.method-list strong {
  display: block;
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.signal-card p,
.benefit-card p,
.pipeline-step p,
.method-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.ai-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(49, 208, 162, 0.12) 0%, rgba(5, 7, 6, 0) 46%),
    var(--black);
}

.ai-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.ai-workbench {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  width: min(1080px, 100%);
  margin: 48px auto 0;
}

.prompt-list {
  display: grid;
  gap: 12px;
  align-content: start;
}

.prompt-chip {
  width: 100%;
  min-height: 74px;
  padding: 0 22px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
  cursor: pointer;
  transition:
    color 450ms var(--ease),
    background 450ms var(--ease),
    transform 450ms var(--ease);
}

.prompt-chip:hover,
.prompt-chip:focus-visible,
.prompt-chip.is-active {
  color: #fff;
  background: rgba(49, 208, 162, 0.18);
  transform: translateX(4px);
}

.analyst-panel {
  min-height: 420px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #0d1210;
}

.analyst-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 7px rgba(49, 208, 162, 0.12);
}

.analyst-panel h3 {
  margin: 48px 0 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(31px, 5vw, 58px);
  line-height: 1.03;
}

.analyst-panel p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 2vw, 21px);
}

.analyst-actions {
  display: grid;
  gap: 9px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.analyst-actions span {
  color: var(--green-bright);
  font-size: 14px;
  font-weight: 700;
}

.analyst-actions strong {
  max-width: 720px;
  font-size: 20px;
  line-height: 1.32;
}

.screens-section {
  padding-bottom: 92px;
}

.screen-tabs {
  margin-top: 44px;
}

.screen-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.screen-tab {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper-strong);
  cursor: pointer;
  transition:
    color 400ms var(--ease),
    background 400ms var(--ease),
    transform 400ms var(--ease);
}

.screen-tab:hover,
.screen-tab:focus-visible,
.screen-tab.is-active {
  color: #fff;
  background: var(--black);
  transform: translateY(-1px);
}

.screen-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
}

.screen-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #0a0d0c;
}

.screen-frame figcaption {
  padding: 18px 22px 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.benefits-section {
  padding-top: 86px;
}

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

.benefit-card {
  min-height: 260px;
  padding: 26px;
}

.benefit-card:nth-child(2) {
  background: #eef6f2;
}

.benefit-card:nth-child(3) {
  background: #f8f3ed;
}

.benefit-card:nth-child(4) {
  background: #eef1f7;
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: 106px max(24px, calc((100vw - 1180px) / 2)) 118px;
  background: #f6efe7;
}

.impact-lead {
  max-width: 650px;
}

.impact-lead h2 {
  margin: 0;
  max-width: 560px;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 760;
  line-height: 0.98;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.impact-lead p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
}

.impact-board {
  display: grid;
  gap: 12px;
}

.impact-board article {
  display: grid;
  grid-template-columns: minmax(90px, 0.42fr) minmax(120px, 0.58fr) minmax(200px, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 116px;
  padding: 20px;
  border: 1px solid rgba(8, 11, 10, 0.09);
  border-radius: 24px;
  background: #fff;
}

.impact-board article:nth-child(2) {
  color: #fff;
  background: var(--black);
}

.impact-board span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
}

.impact-board article:nth-child(2) span {
  color: var(--green-bright);
}

.impact-board strong {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.96;
  font-variant-numeric: tabular-nums lining-nums;
}

.impact-board p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.impact-board article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.68);
}

.architecture-section {
  color: #fff;
  background: var(--black);
}

.architecture-section .section-copy p {
  color: rgba(255, 255, 255, 0.68);
}

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

.pipeline-step {
  min-height: 228px;
  padding: 26px;
  border-color: var(--line-dark);
  background: #0d1210;
}

.pipeline-step span {
  background: rgba(255, 255, 255, 0.14);
}

.pipeline-step p {
  color: rgba(255, 255, 255, 0.62);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  min-height: 270px;
  padding: 26px;
}

.pilot-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
  background: #e9f1ed;
}

.pilot-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
}

.pilot-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top left;
}

.pilot-copy {
  min-width: 0;
  max-width: 560px;
}

.pilot-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.pilot-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(8, 11, 10, 0.08);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: var(--black);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: #fff;
  font-size: 20px;
}

.site-footer a {
  color: #fff;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes livePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.34);
  }
}

@keyframes scanFrame {
  0%,
  38% {
    transform: translateY(-120%);
  }

  72%,
  100% {
    transform: translateY(120%);
  }
}

@media (max-width: 1024px) {
  .benefit-grid,
  .method-list,
  .dashboard-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .architecture-section,
  .pilot-section,
  .impact-section,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-system-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: -22px 0 26px;
  }

  .reel-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .reel-card-wide {
    grid-row: span 1;
  }

  .chart-panel,
  .drill-panel,
  .ai-brief,
  .breakdown-panel {
    grid-column: auto;
  }

  .section-copy,
  .pilot-copy {
    max-width: 780px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .site-header {
    inset: 12px 0 auto;
  }

  .nav-shell {
    width: calc(100% - 20px);
    padding: 8px;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    position: relative;
    display: inline-grid;
    grid-template-columns: 18px auto;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
  }

  .nav-toggle-line {
    grid-column: 1;
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 430ms var(--ease),
      opacity 430ms var(--ease);
  }

  .nav-toggle-line + .nav-toggle-line {
    margin-top: -10px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-toggle-label {
    grid-column: 2;
    font-size: 14px;
  }

  .nav-menu {
    position: absolute;
    inset: calc(100% + 10px) 10px auto;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(5, 7, 6, 0.9);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition:
      opacity 430ms var(--ease),
      transform 430ms var(--ease);
  }

  .nav-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 13px 14px;
    font-size: 16px;
  }

  .hero {
    min-height: 84svh;
    padding: 112px 20px 28px;
  }

  .hero-media {
    opacity: 0.48;
  }

  .hero-media img {
    object-position: 70% top;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 7, 6, 0.96) 0%, rgba(5, 7, 6, 0.78) 100%),
      linear-gradient(0deg, rgba(5, 7, 6, 0.88) 0%, rgba(5, 7, 6, 0) 48%);
  }

  .hero-content {
    padding-bottom: 38px;
  }

  .hero h1 {
    font-size: clamp(70px, 24vw, 118px);
  }

  .hero-lede {
    font-size: clamp(28px, 9vw, 44px);
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: auto;
    padding: 18px;
  }

  .intro-band {
    padding: 34px 20px 8px;
  }

  .section,
  .ai-section,
  .benefits-section,
  .architecture-section,
  .method-section,
  .pilot-section,
  .demo-stand,
  .reel-section,
  .impact-section {
    padding: 78px 20px;
  }

  .dashboard-product {
    margin-top: 34px;
    padding: 10px;
    border-radius: 26px;
  }

  .dashboard-status-line {
    justify-content: flex-start;
    border-radius: 18px;
  }

  .dashboard-topbar {
    align-items: stretch;
    flex-direction: column;
    padding: 14px 10px;
  }

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

  .dashboard-controls label {
    min-width: 0;
  }

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

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

  .kpi-card {
    min-height: 112px;
  }

  .dashboard-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .trend-chart {
    height: 214px;
    gap: 5px;
    overflow: hidden;
  }

  .trend-bar::after {
    display: none;
  }

  .drill-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px;
  }

  .drill-detail,
  .impact-board article {
    grid-template-columns: 1fr;
  }

  .drill-row:first-child {
    display: none;
  }

  .section-copy h2,
  .section-heading h2,
  .ai-section h2,
  .architecture-section h2,
  .method-section h2,
  .pilot-section h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .ai-workbench,
  .pipeline,
  .benefit-grid,
  .method-list {
    grid-template-columns: 1fr;
  }

  .reel-grid {
    grid-auto-rows: 320px;
  }

  .analyst-panel {
    min-height: auto;
  }

  .screen-frame {
    border-radius: 20px;
  }

  .screen-frame img {
    aspect-ratio: 4 / 5;
  }

  .benefit-card,
  .method-list li,
  .pipeline-step {
    min-height: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
