:root {
  color-scheme: dark;
  --bg: #07111d;
  --bg-elevated: rgba(18, 34, 54, 0.88);
  --bg-soft: rgba(255, 255, 255, 0.03);
  --panel: rgba(13, 25, 41, 0.82);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(141, 216, 255, 0.24);
  --text: #edf6ff;
  --text-soft: rgba(237, 246, 255, 0.74);
  --text-dim: rgba(237, 246, 255, 0.54);
  --blue: #52a8ff;
  --cyan: #33d9ff;
  --green: #62d39b;
  --amber: #ffc56d;
  --red: #ff7f7f;
  --max: 1260px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 26px 80px rgba(1, 14, 31, 0.55);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

@property --fill {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 16%, rgba(51, 217, 255, 0.16), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(82, 168, 255, 0.16), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(39, 89, 170, 0.18), transparent 34%),
    linear-gradient(180deg, #07111d 0%, #08111b 44%, #0a1321 100%);
  color: var(--text);
}

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

button,
select,
input {
  font: inherit;
}

.site-shell {
  width: min(100%, calc(var(--max) + 80px));
  margin: 0 auto;
  padding: 18px 20px 48px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(6, 12, 21, 0.78);
  backdrop-filter: blur(20px);
}

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

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, #c9f3ff, transparent 32%),
    linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 24px rgba(51, 217, 255, 0.54);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}

.brand-copy span:last-child {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.topnav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.topnav a {
  transition: color 160ms ease;
}

.topnav a:hover,
.topnav a:focus-visible {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.88rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
  cursor: pointer;
}

.nav-cta,
.button-primary {
  color: #04101d;
  background: linear-gradient(135deg, #93ddff 0%, #52a8ff 100%);
  box-shadow: 0 10px 32px rgba(82, 168, 255, 0.24);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 26px;
  align-items: stretch;
  min-height: calc(100svh - 120px);
  padding: 22px 0 48px;
}

.hero-copy,
.hero-visual,
.support-strip,
.workflow-section,
.demo-section,
.pilot-section,
.proof-section,
.final-cta,
.footer {
  position: relative;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 0 18px 6px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.support-strip h2,
.final-cta h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
}

.hero-text,
.section-intro p,
.support-strip p,
.pilot-card p,
.proof-panel p,
.final-cta p,
.panel-copy,
.helper-note,
.proof-note,
.footer p {
  color: var(--text-soft);
  line-height: 1.65;
}

.hero-text {
  max-width: 38rem;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

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

.hero-metric {
  padding: 16px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(82, 168, 255, 0.1), transparent 52%),
    rgba(255, 255, 255, 0.025);
}

.hero-metric strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.05em;
}

.hero-metric span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

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

.hero-points {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-soft);
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(82, 168, 255, 0.42);
}

.hero-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    rgba(9, 18, 31, 0.92);
  box-shadow: var(--shadow-glow);
}

.visual-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 92%);
  pointer-events: none;
}

.hero-console {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
  height: 100%;
  min-height: 720px;
  padding: 22px;
}

.console-topline,
.panel-head,
.stage-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.console-topline {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(98, 211, 155, 0.48);
}

.console-tag,
.ghost-pill,
.stage-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.78rem;
  white-space: nowrap;
}

.ghost-pill.ok,
.stage-badge.complete {
  border-color: rgba(98, 211, 155, 0.32);
  color: #ccffeb;
}

.ghost-pill.warn,
.stage-badge.running {
  border-color: rgba(255, 197, 109, 0.34);
  color: #ffe3b4;
}

.console-main {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
  gap: 18px;
  min-height: 0;
}

.impact-board {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(141, 216, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(51, 217, 255, 0.14), transparent 34%),
    radial-gradient(circle at right center, rgba(82, 168, 255, 0.12), transparent 32%),
    rgba(6, 17, 31, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.impact-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.impact-copy h2 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.impact-note {
  max-width: 30ch;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 0.9rem;
}

.impact-gauges,
.impact-lower {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.impact-lower {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.gauge-card,
.impact-trend-panel,
.impact-summary-panel {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(7, 14, 26, 0.78);
}

.gauge-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.gauge-ring {
  --fill: 0;
  width: 130px;
  aspect-ratio: 1;
  border-radius: 999px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0 54%, transparent 55%),
    conic-gradient(
      from -90deg,
      var(--tone-start) 0,
      var(--tone-end) calc(var(--fill) * 1%),
      rgba(255, 255, 255, 0.08) 0
    );
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.04);
  transition: --fill 1.6s cubic-bezier(0.2, 0.9, 0.22, 1);
}

.impact-board.is-live .gauge-ring {
  --fill: var(--pct);
}

.gauge-ring::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 34%),
    rgba(6, 13, 24, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.effort-ring {
  --tone-start: #33d9ff;
  --tone-end: #52a8ff;
}

.loop-ring {
  --tone-start: #ffd37e;
  --tone-end: #ff9f43;
}

.speed-ring {
  --tone-start: #67e0b2;
  --tone-end: #2dc6a0;
}

.gauge-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  text-align: center;
}

.gauge-core strong {
  display: block;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.05em;
}

.gauge-core span,
.gauge-copy p,
.summary-copy small,
.summary-tags span {
  color: var(--text-dim);
  font-size: 0.82rem;
  line-height: 1.45;
}

.gauge-copy {
  display: grid;
  gap: 6px;
}

.gauge-copy label,
.summary-copy label {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.gauge-copy p {
  margin: 0;
}

.gauge-copy p span {
  color: var(--text-soft);
  margin-inline: 4px;
}

.impact-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.impact-panel-head span:first-child {
  font-weight: 600;
}

.trend-chart {
  display: block;
  width: 100%;
  height: auto;
}

.trend-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-dasharray: 4 10;
  stroke-width: 1;
}

.trend-area {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center bottom;
  transform: translateY(18px) scaleY(0.92);
  transition:
    opacity 700ms ease,
    transform 1000ms ease;
}

.trend-area.before {
  fill: rgba(255, 172, 77, 0.18);
}

.trend-area.after {
  fill: rgba(82, 168, 255, 0.18);
}

.impact-board.is-live .trend-area {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.trend-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1400ms cubic-bezier(0.18, 0.85, 0.22, 1) 180ms;
}

.trend-line.before {
  stroke: #ffae57;
}

.trend-line.after {
  stroke: #62c3ff;
}

.impact-board.is-live .trend-line {
  stroke-dashoffset: 0;
}

.trend-dots circle {
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: transform 420ms ease;
}

.trend-dots.before circle {
  fill: #ffb467;
}

.trend-dots.after circle {
  fill: #7cd5ff;
}

.impact-board.is-live .trend-dots circle {
  transform: scale(1);
}

.trend-dots circle:nth-child(1) { transition-delay: 220ms; }
.trend-dots circle:nth-child(2) { transition-delay: 290ms; }
.trend-dots circle:nth-child(3) { transition-delay: 360ms; }
.trend-dots circle:nth-child(4) { transition-delay: 430ms; }
.trend-dots circle:nth-child(5) { transition-delay: 500ms; }
.trend-dots circle:nth-child(6) { transition-delay: 570ms; }

.trend-footer {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 0.76rem;
  text-align: center;
}

.summary-grid {
  display: grid;
  gap: 10px;
}

.summary-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.summary-row strong {
  font-size: 1rem;
  color: var(--text);
}

.summary-meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.summary-meter span {
  display: block;
  width: var(--to);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #33d9ff, #52a8ff);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 900ms cubic-bezier(0.2, 0.9, 0.22, 1) 220ms;
}

.summary-meter.amber span {
  background: linear-gradient(135deg, #ffd37e, #ff9f43);
}

.summary-meter.green span {
  background: linear-gradient(135deg, #67e0b2, #2dc6a0);
}

.impact-board.is-live .summary-meter span {
  transform: scaleX(1);
}

.summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.summary-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.flow-rail,
.preview-panel,
.workflow-card,
.demo-controls,
.demo-stage,
.demo-panel,
.pilot-card,
.proof-panel,
.final-cta {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.flow-rail,
.preview-panel,
.demo-controls,
.demo-stage,
.demo-panel,
.pilot-card,
.proof-panel {
  border-radius: var(--radius-lg);
}

.flow-rail {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 14px;
}

.flow-step {
  padding: 14px 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--text-dim);
}

.flow-step span,
.timeline-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  font-size: 0.8rem;
}

.flow-step strong,
.timeline-row strong,
.pilot-card h3,
.workflow-card h3 {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.flow-step small,
.timeline-row small {
  color: var(--text-dim);
  line-height: 1.4;
}

.flow-step.is-active,
.timeline-row.complete {
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at top left, rgba(51, 217, 255, 0.12), transparent 50%),
    rgba(10, 25, 44, 0.7);
  color: var(--text);
}

.preview-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
  align-content: start;
}

.preview-panel,
.demo-panel {
  padding: 18px;
}

.preview-panel-wide,
.demo-panel-wide {
  grid-column: 1 / -1;
}

.panel-head span:first-child {
  font-weight: 600;
}

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

.signal-item label {
  display: block;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.signal-item strong,
.price-range,
.proof-panel strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.mini-bar {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.mini-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.mini-bar.warn span {
  background: linear-gradient(135deg, #ffd37e, #ff9f43);
}

.code-block,
.draft-preview {
  margin: 16px 0 0;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(4, 10, 18, 0.7);
  color: #d5efff;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    monospace;
  font-size: 0.88rem;
  line-height: 1.68;
  overflow: auto;
  white-space: pre-wrap;
}

.evidence-list,
.detail-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.evidence-list li,
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
}

.evidence-list li span,
.detail-list li::before {
  width: 9px;
  height: 9px;
  margin-top: 0.45rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(98, 211, 155, 0.35);
}

.evidence-list li.muted {
  color: var(--text-dim);
}

.evidence-list li.muted span {
  background: var(--amber);
  box-shadow: 0 0 14px rgba(255, 197, 109, 0.28);
}

.support-strip,
.workflow-section,
.demo-section,
.pilot-section,
.proof-section {
  padding: 26px 0;
}

.support-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding-top: 10px;
  padding-bottom: 36px;
}

.support-strip h2,
.section-intro h2,
.final-cta h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.section-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-intro p:last-child {
  margin-top: 16px;
}

.workflow-columns,
.pilot-layout,
.proof-grid {
  display: grid;
  gap: 18px;
}

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

.workflow-card,
.pilot-card,
.proof-panel {
  padding: 22px;
}

.workflow-card p,
.pilot-card p,
.proof-panel p {
  margin: 0;
}

.demo-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.demo-controls {
  position: sticky;
  top: 104px;
  padding: 20px;
}

.control-group {
  margin-bottom: 18px;
}

.control-group label,
.control-group legend {
  display: block;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-weight: 600;
}

.control-group select {
  width: 100%;
  padding: 0.88rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(5, 12, 21, 0.9);
  color: var(--text);
}

.stack-fieldset {
  border: 0;
  margin: 0 0 18px;
  padding: 0;
}

.stack-fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
}

.stack-fieldset input {
  accent-color: var(--cyan);
}

.run-demo {
  width: 100%;
}

.helper-note,
.proof-note,
.footer-note {
  font-size: 0.9rem;
}

.demo-board {
  display: grid;
  gap: 18px;
}

.demo-stage {
  padding: 20px;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.timeline-row {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
}

.timeline-row.active {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-row.running {
  border: 1px solid rgba(255, 197, 109, 0.24);
  background:
    radial-gradient(circle at left top, rgba(255, 197, 109, 0.12), transparent 44%),
    rgba(20, 18, 9, 0.42);
}

.timeline-row.complete span,
.timeline-row.complete strong {
  color: var(--text);
}

.timeline-row.complete span {
  border-color: rgba(98, 211, 155, 0.28);
  background: rgba(98, 211, 155, 0.08);
}

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

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

.handoff-item {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.handoff-item label {
  display: block;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.handoff-item strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

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

.accent-card {
  background:
    radial-gradient(circle at top left, rgba(82, 168, 255, 0.18), transparent 52%),
    rgba(10, 22, 36, 0.95);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  margin-top: 26px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(51, 217, 255, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  align-content: center;
}

.footer {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: end;
  padding: 28px 0 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--text-dim);
}

.footer-note {
  justify-self: end;
  max-width: 30rem;
  text-align: right;
}

@media (max-width: 1160px) {
  .hero,
  .support-strip,
  .demo-layout,
  .final-cta,
  .footer {
    grid-template-columns: 1fr;
  }

  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .topnav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-console {
    min-height: 660px;
  }

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

  .impact-lower {
    grid-template-columns: 1fr;
  }

  .console-main {
    grid-template-columns: 1fr;
  }

  .flow-rail {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    overflow-x: auto;
  }

  .preview-stack,
  .workflow-columns,
  .pilot-layout,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .demo-controls {
    position: static;
  }

  .footer-note {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding-inline: 14px;
  }

  .hero {
    gap: 18px;
    padding-top: 8px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-console {
    min-height: auto;
    padding: 16px;
  }

  .hero-metrics,
  .impact-gauges,
  .impact-heading,
  .impact-lower,
  .preview-stack,
  .signal-bars,
  .workflow-columns,
  .demo-grid,
  .pilot-layout,
  .proof-grid,
  .handoff-grid {
    grid-template-columns: 1fr;
  }

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

  .summary-row {
    grid-template-columns: 1fr;
  }

  .flow-rail {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .topbar {
    position: static;
  }

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

  .button,
  .nav-cta {
    width: 100%;
  }

  .support-strip,
  .workflow-section,
  .demo-section,
  .pilot-section,
  .proof-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .final-cta {
    padding: 20px;
  }
}
