:root {
  --bg-0: #04060c;
  --bg-1: #070a11;
  --bg-2: #0b0f17;
  --bg-3: #10151f;
  --bg-4: #151b27;
  --panel: rgba(10, 14, 22, 0.88);
  --panel-strong: rgba(13, 18, 28, 0.95);
  --text-100: #f4f7fb;
  --text-80: #c8d4e4;
  --text-60: #8a97ac;
  --text-40: #56647a;
  --teal: #237e8c;
  --teal-bright: #2db6ca;
  --teal-light: #82eeff;
  --teal-soft: rgba(45, 182, 202, 0.11);
  --teal-glow: rgba(45, 182, 202, 0.26);
  --teal-border: rgba(45, 182, 202, 0.24);
  --amber: #eeae54;
  --amber-soft: rgba(238, 174, 84, 0.13);
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.12);
  --shadow-xl: 0 32px 96px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-teal: 0 0 40px rgba(45, 182, 202, 0.22), 0 16px 48px rgba(0, 0, 0, 0.4);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.2, 0, 0, 1);
  --pad-section: clamp(100px, 11vw, 160px);
  --pad-h: clamp(20px, 5vw, 52px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top, rgba(47, 184, 202, 0.14), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(240, 177, 90, 0.08), transparent 22%),
    linear-gradient(180deg, #05070d 0%, #080b12 30%, #090c13 100%);
  color: var(--text-100);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 15%, rgba(47, 184, 202, 0.05), transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(47, 184, 202, 0.06), transparent 28%);
  z-index: -1;
}

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

button,
a.btn-elite,
a.btn-elite-outline,
a.btn-primary-lg,
a.btn-ghost-lg {
  font: inherit;
  cursor: pointer;
}

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

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.045'/%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
  z-index: 9999;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal-light);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}

.lead {
  color: var(--text-60);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.82;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.centered {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header h2,
.engine-copy h2,
.orch-copy h2,
.trust-copy h2,
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 60px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 16px;
  color: var(--text-100);
}

.section-header em,
.engine-copy em,
.cta-section em {
  color: var(--teal-light);
  font-style: italic;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s var(--ease-spring),
    transform 0.75s var(--ease-spring);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }

.btn-elite,
.btn-elite-outline,
.btn-primary-lg,
.btn-ghost-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    background 0.22s var(--ease-out),
    color 0.22s var(--ease-out);
}

.btn-elite {
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(45, 182, 202, 0.24);
}

.btn-elite:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 182, 202, 0.42);
}

.btn-elite-outline {
  padding: 9px 22px;
  border: 1px solid var(--teal-border);
  background: rgba(10, 14, 22, 0.6);
  color: var(--text-80);
  font-size: 13.5px;
  font-weight: 600;
}

.btn-elite-outline:hover {
  border-color: rgba(130, 238, 255, 0.5);
  color: var(--text-100);
  background: rgba(45, 182, 202, 0.08);
}

.btn-primary-lg {
  padding: 15px 38px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-bright) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 0 40px var(--teal-glow), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--teal-glow), 0 12px 36px rgba(45, 182, 202, 0.24);
}

.btn-ghost-lg {
  gap: 9px;
  padding: 15px 32px;
  border: 1px solid var(--border-strong);
  background: rgba(12, 16, 24, 0.5);
  color: var(--text-60);
  font-size: 15px;
  font-weight: 700;
}

.btn-ghost-lg:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text-100);
  background: rgba(255, 255, 255, 0.04);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px var(--pad-h) 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 8px 8px 20px;
  border: 1px solid rgba(45, 182, 202, 0.2);
  border-radius: 999px;
  background: rgba(4, 6, 12, 0.78);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled .nav {
  background: rgba(4, 6, 12, 0.92);
  border-color: rgba(45, 182, 202, 0.3);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text-100);
}

.nav-links,
.nav-cta {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  color: var(--text-40);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-100);
}

.nav-cta {
  gap: 8px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(5, 7, 13, 0.72) 0%, rgba(5, 7, 13, 0.42) 38%, rgba(5, 7, 13, 0.92) 100%);
}

.hero-glow {
  position: absolute;
  left: 50%;
  top: 44%;
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 182, 202, 0.14) 0%, rgba(45, 182, 202, 0.04) 45%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding: 0 var(--pad-h);
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  padding: 5px 14px 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(45, 182, 202, 0.3);
  background: rgba(45, 182, 202, 0.07);
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeInDown 0.7s var(--ease-spring) both;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 6px var(--teal-bright), 0 0 14px rgba(45, 182, 202, 0.5);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-headline {
  margin-bottom: 24px;
  color: var(--text-100);
  font-family: var(--font-display);
  font-size: clamp(46px, 7.8vw, 96px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  animation: fadeInUp 0.85s 0.12s var(--ease-spring) both;
}

.hero-headline em {
  color: var(--teal-light);
  font-style: italic;
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto 36px;
  color: var(--text-60);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
  animation: fadeInUp 0.85s 0.22s var(--ease-spring) both;
}

.hero-actions,
.hero-proof,
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 12px;
  margin-bottom: 40px;
  animation: fadeInUp 0.85s 0.3s var(--ease-spring) both;
}

.hero-proof {
  gap: 12px;
  color: var(--text-40);
  font-size: 12.5px;
  animation: fadeInUp 0.85s 0.4s var(--ease-spring) both;
}

.proof-sep {
  opacity: 0.3;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: var(--text-40);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeInUp 0.9s 0.75s var(--ease-spring) both;
}

.scroll-bar {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(45, 182, 202, 0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.marquee-section,
.engine-section,
.walkthrough-section,
.features-section,
.orch-section,
.testimonials-section,
.trust-section,
.cta-section,
.footer {
  position: relative;
  border-top: 1px solid var(--border);
}

.marquee-section {
  padding: 44px 0 48px;
  overflow: hidden;
}

.marquee-eyebrow {
  margin-bottom: 24px;
  color: var(--text-40);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.marquee-fade {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(10, 14, 22, 0.7);
  color: var(--text-60);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-chip img {
  width: 16px;
  height: 16px;
  padding: 5px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: contain;
  box-sizing: content-box;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(235, 242, 250, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(8, 12, 18, 0.07),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.engine-section,
.walkthrough-section,
.features-section,
.orch-section,
.testimonials-section,
.trust-section,
.cta-section {
  padding: var(--pad-section) var(--pad-h);
}

.engine-copy {
  max-width: 660px;
  margin: 0 auto 64px;
  text-align: center;
}

.engine-visual {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
}

.engine-glow,
.orch-glow {
  position: absolute;
  inset: -70px;
  background: radial-gradient(ellipse at 50% 50%, rgba(47, 184, 202, 0.2) 0%, transparent 66%);
  pointer-events: none;
  z-index: 0;
}

.console-shell,
.orch-board,
.proof-bar,
.comp-item,
.tcard,
.feat,
.step-btn,
.stage-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.console-shell {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(130, 238, 255, 0.14);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, transparent 20%),
    var(--panel-strong);
  box-shadow: var(--shadow-xl);
}

.console-topbar,
.console-card-head,
.stage-heading,
.orch-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-topbar {
  margin-bottom: 24px;
}

.console-label,
.mini-label {
  color: var(--text-40);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.console-topbar h3 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-100);
}

.console-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(45, 182, 202, 0.18);
  border-radius: 999px;
  background: rgba(45, 182, 202, 0.07);
  color: var(--text-60);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 12px var(--teal-light), 0 0 24px rgba(45, 182, 202, 0.4);
  animation: pulse 2.4s ease-in-out infinite;
}

.console-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) 300px;
  gap: 20px;
}

.console-side {
  display: grid;
  gap: 20px;
}

/* Card base shared styles */
.console-card,
.stage-card,
.orch-board {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  background: rgba(11, 15, 22, 0.76);
}

.console-card {
  padding: 20px;
}

.console-card-head,
.stage-heading,
.orch-board-top {
  margin-bottom: 18px;
  color: var(--text-40);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thread-stack,
.command-steps,
.matrix-list,
.workflow-list,
.approval-stack,
.learn-metrics {
  display: grid;
  gap: 12px;
}

.thread-bubble {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text-80);
  font-size: 13.5px;
  line-height: 1.6;
}

.thread-bubble.customer {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.thread-bubble.system {
  background: rgba(238, 174, 84, 0.07);
  border: 1px solid rgba(238, 174, 84, 0.15);
}

.thread-bubble.ai,
.command-step.live,
.action-pills span,
.signal-grid span {
  background: rgba(45, 182, 202, 0.08);
  border: 1px solid rgba(45, 182, 202, 0.16);
}

.intent-row,
.mini-meta,
.approval-stack div,
.workflow-list div,
.matrix-list div,
.learn-metrics div,
.orch-feed div,
.tcard-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.intent-row {
  margin-top: 18px;
  color: var(--text-40);
  font-size: 12px;
  font-weight: 700;
  flex-wrap: wrap;
}

.command-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-80);
  font-size: 13.5px;
}

.command-step.done {
  background: rgba(255, 255, 255, 0.025);
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-light));
  box-shadow: 0 0 18px rgba(47, 184, 202, 0.34);
}

.meter {
  width: 100%;
  height: 12px;
  margin: 18px 0 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.meter span {
  display: block;
  width: var(--meter);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  box-shadow: 0 0 24px rgba(47, 184, 202, 0.3);
}

.mini-meta strong,
.approval-stack strong,
.matrix-list strong,
.learn-metrics strong,
.orch-feed strong {
  color: var(--text-100);
  font-size: 14px;
}

.mini-meta span,
.approval-stack span,
.matrix-list span,
.learn-metrics span,
.orch-feed span {
  color: var(--text-60);
  font-size: 13px;
}

.approval-stack div {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.approval-stack div:last-child {
  border-bottom: 0;
}

.engine-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -28px;
  padding: 0 12px;
}

.estat {
  padding: 24px 18px;
  border: 1px solid rgba(45, 182, 202, 0.2);
  border-radius: var(--radius-md);
  background: rgba(9, 13, 20, 0.88);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s ease, border-color 0.25s ease;
}

.estat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(45, 182, 202, 0.36);
}

.estat-num,
.estat-unit {
  font-family: var(--font-display);
}

.estat-num {
  color: var(--text-100);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.estat-unit {
  color: var(--teal-light);
  font-size: 20px;
  font-weight: 400;
}

.estat p {
  margin-top: 8px;
  color: var(--text-40);
  font-size: 11.5px;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.steps-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.steps-nav {
  display: grid;
  gap: 10px;
}

.step-btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: rgba(10, 14, 22, 0.44);
  color: var(--text-40);
  text-align: left;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.step-btn:hover,
.step-btn:focus-visible {
  outline: none;
  color: var(--text-80);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(12, 16, 24, 0.72);
}

.step-btn.active {
  color: var(--text-100);
  border-color: var(--teal-border);
  background:
    linear-gradient(160deg, rgba(45, 182, 202, 0.07), transparent 80%),
    rgba(11, 15, 24, 0.9);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
}

.step-num {
  min-width: 26px;
  margin-top: 2px;
  color: var(--text-40);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.step-btn.active .step-num {
  color: var(--teal-light);
}

.step-text h4 {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.step-text p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-40);
}

.step-btn.active .step-text p {
  color: var(--text-60);
}

.step-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.step-progress {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.step-btn.active .step-progress {
  animation: progressFill 5s linear forwards;
}

.steps-display {
  position: relative;
}

.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  animation: panelIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.step-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
}

.stage-card {
  padding: 22px;
  min-height: 280px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.025) 0%, transparent 20%),
    rgba(10, 14, 22, 0.86);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
}

.stage-chat {
  display: grid;
  gap: 14px;
}

.stage-msg {
  max-width: 92%;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text-80);
  font-size: 14px;
  line-height: 1.65;
}

.stage-msg.inbound {
  background: rgba(255, 255, 255, 0.05);
}

.stage-msg.neutral {
  margin-left: auto;
  background: rgba(240, 177, 90, 0.08);
  border: 1px solid rgba(240, 177, 90, 0.14);
}

.stage-msg.outbound {
  background: rgba(47, 184, 202, 0.08);
  border: 1px solid rgba(47, 184, 202, 0.16);
}

.signal-grid,
.action-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-grid span,
.action-pills span {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--text-80);
  font-size: 12px;
  font-weight: 700;
}

.matrix-list div,
.workflow-list div,
.learn-metrics div {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.matrix-list div:last-child,
.workflow-list div:last-child,
.learn-metrics div:last-child {
  border-bottom: 0;
}

.matrix-list strong {
  color: var(--teal-light);
}

.confidence-ring {
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  margin: 10px auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(13, 17, 24, 0.9) 0 52%, transparent 53%),
    conic-gradient(from 180deg, var(--teal-bright) 0 79%, rgba(255, 255, 255, 0.08) 79% 100%);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.45);
}

.ring-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(47, 184, 202, 0.16);
  border-radius: 50%;
  background: rgba(8, 11, 18, 0.95);
}

.ring-center strong {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.04em;
}

.ring-center span {
  color: var(--text-40);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.workflow-list strong {
  color: var(--teal-light);
  font-size: 14px;
}

.trend-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 220px;
  padding-top: 20px;
}

.trend-bars span {
  display: block;
  width: 100%;
  max-width: 54px;
  height: var(--bar);
  margin-top: auto;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, var(--teal-light) 0%, var(--teal) 100%);
  box-shadow: 0 12px 28px rgba(47, 184, 202, 0.18);
}

.features-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
}

.feat {
  position: relative;
  overflow: hidden;
  padding: 40px 34px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.028) 0%, transparent 24%),
    rgba(10, 14, 22, 0.96);
  transition: transform 0.25s var(--ease-spring), background 0.25s ease;
}

.feat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(45, 182, 202, 0.1) 0%, transparent 52%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.feat:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, transparent 24%),
    rgba(13, 18, 28, 0.99);
}

.feat:hover::before {
  opacity: 1;
}

.feat {
  grid-column: span 2;
}

.feat-wide {
  grid-column: span 4;
}

/* Last two regular cells stretch equally to fill the bottom row */
.feat:nth-last-child(-n+2):not(.feat-wide) {
  grid-column: span 3;
}

.feat-alt {
  background:
    linear-gradient(160deg, rgba(45, 182, 202, 0.06) 0%, transparent 28%),
    rgba(13, 18, 30, 0.98);
}

.feat-icon,
.comp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--teal-border);
  background: var(--teal-soft);
  color: var(--teal-light);
}

.feat-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: var(--radius-sm);
}

.feat h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.feat p {
  color: var(--text-60);
  font-size: 13.5px;
  line-height: 1.7;
}

.feat-pill {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 11px;
  border: 1px solid var(--teal-border);
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feat-pill-alt {
  border-color: rgba(238, 174, 84, 0.22);
  background: var(--amber-soft);
  color: #fdd5a0;
}

.orch-layout,
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.orch-copy .lead,
.trust-copy .lead {
  margin-bottom: 36px;
}

.orch-list {
  list-style: none;
  display: grid;
  gap: 24px;
}

.orch-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.orch-dot {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--teal-light);
  box-shadow: 0 0 12px rgba(47, 184, 202, 0.5);
}

.orch-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 800;
}

.orch-list p {
  color: var(--text-60);
  font-size: 14px;
  line-height: 1.65;
}

.orch-visual {
  position: relative;
}

.orch-board {
  position: relative;
  z-index: 1;
  padding: 24px;
  box-shadow: var(--shadow-xl);
}

.orch-board-top p {
  color: var(--text-100);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
}

.orch-board-top span {
  color: var(--text-40);
}

.orch-network {
  position: relative;
  height: 380px;
  margin: 24px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(7, 10, 16, 0.88);
  background-size: 48px 48px, 48px 48px, auto;
}

.orch-node {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(13, 17, 24, 0.92);
  color: var(--text-80);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.orch-node.center {
  left: 50%;
  top: 50%;
  min-width: 136px;
  background: linear-gradient(135deg, rgba(47, 184, 202, 0.16), rgba(13, 17, 24, 0.96));
  color: var(--text-100);
  transform: translate(-50%, -50%);
}

.node-a { left: 10%; top: 12%; }
.node-b { right: 8%; top: 18%; }
.node-c { left: 12%; bottom: 18%; }
.node-d { right: 12%; bottom: 14%; }
.node-e { left: 50%; top: 12%; transform: translateX(-50%); }

.orch-line {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(47, 184, 202, 0.7), rgba(47, 184, 202, 0));
}

.line-a { width: 180px; transform: rotate(-146deg); }
.line-b { width: 190px; transform: rotate(-28deg); }
.line-c { width: 172px; transform: rotate(147deg); }
.line-d { width: 184px; transform: rotate(31deg); }
.line-e { width: 150px; transform: rotate(-90deg); }

.orch-feed {
  display: grid;
  gap: 12px;
}

.orch-feed div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.tgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 24px;
}

.tcard {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.025) 0%, transparent 20%),
    rgba(10, 14, 22, 0.86);
  transition:
    border-color 0.25s ease,
    transform 0.25s var(--ease-spring),
    box-shadow 0.25s ease;
}

.tcard:hover {
  transform: translateY(-4px);
  border-color: var(--teal-border);
  box-shadow: var(--shadow-teal);
}

.tcard-featured {
  border-color: var(--teal-border);
  background:
    linear-gradient(160deg, rgba(45, 182, 202, 0.07) 0%, transparent 24%),
    rgba(12, 17, 28, 0.96);
}

.tcard-stars {
  margin-bottom: 18px;
  color: var(--teal-light);
  font-size: 12px;
  letter-spacing: 3px;
  opacity: 0.8;
}

.tcard blockquote {
  flex: 1;
  margin-bottom: 22px;
  color: var(--text-80);
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.78;
}

.tcard-metric {
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(238, 174, 84, 0.12);
  border-radius: 999px;
  background: rgba(238, 174, 84, 0.05);
  color: #fdd09c;
  font-size: 11.5px;
  font-weight: 800;
  justify-content: center;
  text-align: center;
  letter-spacing: 0.01em;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-author > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tauthor-name {
  color: var(--text-100);
  font-size: 13px;
  font-weight: 800;
}

.tauthor-co {
  color: var(--text-40);
  font-size: 11.5px;
}

.proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
    rgba(10, 14, 22, 0.72);
}

.pstat {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
}

.pstat span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-100);
  font-family: var(--font-display);
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.pstat p {
  color: var(--text-40);
  font-size: 12.5px;
  letter-spacing: 0.01em;
}

.proof-divider {
  width: 1px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.07);
}

.compliance-grid {
  display: grid;
  gap: 16px;
}

.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(10, 14, 22, 0.74);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.comp-item:hover {
  border-color: var(--teal-border);
  background: rgba(45, 182, 202, 0.04);
}

.comp-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}

.comp-item h5 {
  margin-bottom: 3px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.005em;
}

.comp-item p {
  color: var(--text-40);
  font-size: 11.5px;
  line-height: 1.5;
}

.trust-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-system {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 340px;
}

.orbit {
  position: absolute;
  border: 1px solid var(--teal-border);
  border-radius: 50%;
  animation: orbitSpin linear infinite;
}

.orbit-1 { width: 130px; height: 130px; animation-duration: 8s; }
.orbit-2 { width: 220px; height: 220px; border-color: rgba(47, 184, 202, 0.22); animation-duration: 14s; animation-direction: reverse; }
.orbit-3 { width: 320px; height: 320px; border-color: rgba(47, 184, 202, 0.12); animation-duration: 22s; }

.orbit-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal-light);
  box-shadow: 0 0 14px var(--teal-light), 0 0 24px rgba(47, 184, 202, 0.34);
}

.dot-1 { animation: orbitDot1 8s linear infinite; }
.dot-2 { animation: orbitDot2 14s linear infinite reverse; }
.dot-3 { animation: orbitDot3 22s linear infinite; }

.orbit-core {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border: 1px solid var(--teal-border);
  border-radius: 50%;
  background: rgba(47, 184, 202, 0.12);
  box-shadow: 0 0 40px rgba(47, 184, 202, 0.36);
}

.orbit-core img {
  width: 36px;
  height: 36px;
}

.cta-section {
  overflow: hidden;
  text-align: center;
}

.cta-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(45, 182, 202, 0.22) 0%, rgba(45, 182, 202, 0.04) 45%, transparent 68%),
    radial-gradient(circle at 28% 18%, rgba(238, 174, 84, 0.07) 0%, transparent 28%),
    radial-gradient(circle at 72% 82%, rgba(45, 182, 202, 0.06) 0%, transparent 28%);
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-sub {
  max-width: 480px;
  margin: 0 auto 44px;
  color: var(--text-40);
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.cta-actions {
  gap: 12px;
}

.footer {
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 72px;
  align-items: start;
  margin-bottom: 52px;
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 260px;
  color: var(--text-40);
  font-size: 12.5px;
  line-height: 1.72;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-columns div {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-columns h5 {
  color: var(--text-60);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-columns a,
.footer-legal a,
.footer-bottom p {
  color: var(--text-40);
  font-size: 12.5px;
  transition: color 0.2s ease;
}

.footer-columns a:hover,
.footer-legal a:hover {
  color: var(--text-80);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal {
  display: flex;
  gap: 22px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px var(--teal-bright); }
  50% { opacity: 0.35; transform: scale(0.68); box-shadow: 0 0 2px var(--teal-bright); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.8; transform: scaleY(1); }
  50% { opacity: 0.2; transform: scaleY(0.7); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes progressFill {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

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

@keyframes orbitDot1 {
  from { transform: rotate(0deg) translateX(65px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(65px) rotate(-360deg); }
}

@keyframes orbitDot2 {
  from { transform: rotate(45deg) translateX(110px) rotate(-45deg); }
  to { transform: rotate(405deg) translateX(110px) rotate(-405deg); }
}

@keyframes orbitDot3 {
  from { transform: rotate(120deg) translateX(160px) rotate(-120deg); }
  to { transform: rotate(480deg) translateX(160px) rotate(-480deg); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@media (max-width: 1120px) {
  .console-grid {
    grid-template-columns: 1fr;
  }

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

  .steps-layout,
  .orch-layout,
  .trust-layout,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .step-stage {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .features-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat {
    grid-column: span 1;
  }

  .feat-wide {
    grid-column: span 2;
  }

  .feat:nth-last-child(-n+2):not(.feat-wide) {
    grid-column: span 1;
  }

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

  .engine-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    padding: 0;
  }

  .proof-bar {
    flex-direction: column;
  }

  .proof-divider {
    width: 50%;
    height: 1px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 14px 0;
  }

  .nav {
    padding: 8px 8px 8px 16px;
    border-radius: 20px;
  }

  .nav-cta .btn-elite-outline {
    display: none;
  }

  .hero-headline {
    font-size: clamp(38px, 11.5vw, 60px);
    letter-spacing: -0.04em;
  }

  .hero-sub {
    max-width: 520px;
    font-size: 15px;
  }

  .features-bento,
  .footer-columns,
  .console-side {
    grid-template-columns: 1fr;
  }

  .feat,
  .feat-wide,
  .feat:nth-last-child(-n+2):not(.feat-wide) {
    grid-column: span 1;
  }

  .steps-layout {
    gap: 30px;
  }

  .step-btn {
    padding: 18px;
  }

  .orch-network {
    height: 330px;
  }

  .orch-node {
    min-width: 90px;
    min-height: 48px;
    font-size: 12px;
  }

  .node-a { left: 4%; top: 12%; }
  .node-b { right: 3%; top: 18%; }
  .node-c { left: 5%; bottom: 16%; }
  .node-d { right: 4%; bottom: 12%; }
  .node-e { top: 8%; }
}

@media (max-width: 680px) {
  .hero-proof {
    gap: 6px;
    font-size: 11.5px;
  }

  .hero-scroll {
    display: none;
  }

  .console-shell,
  .orch-board,
  .stage-card {
    padding: 16px;
  }

  .engine-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .confidence-ring {
    width: 190px;
    height: 190px;
  }

  .ring-center {
    width: 110px;
    height: 110px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .orbit-system {
    width: 260px;
    height: 260px;
    transform: scale(0.76);
  }
}

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

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

/* Capabilities bento — feat with image */
.feat-has-img {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.feat-has-img .feat-content {
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
}

.feat-has-img .feat-content h3 {
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.feat-has-img .feat-content p {
  color: var(--text-60);
  font-size: 14px;
  line-height: 1.7;
}

.feat-cinematic {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.feat-cinematic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.feat-cinematic-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,16,24,0.85) 0%, rgba(12,16,24,0.1) 60%, transparent 100%);
}

/* Orchestration image frame */
.orch-frame {
  position: relative;
  z-index: 1;
  border: 1px solid var(--teal-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.orch-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.orch-frame-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5,7,13,0.08) 0%, rgba(5,7,13,0.18) 50%, rgba(5,7,13,0.88) 100%);
}

.orch-frame-feed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  display: grid;
  gap: 8px;
}

.orch-frame-feed div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(6,8,14,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.orch-frame-feed span {
  color: var(--text-60);
  font-size: 13px;
}

.orch-frame-feed strong {
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Testimonial avatars */
.tauthor-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47,184,202,0.22), rgba(47,184,202,0.06));
  border: 1px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.tauthor-avatar-teal {
  background: linear-gradient(135deg, rgba(47,184,202,0.36), rgba(47,184,202,0.12));
  box-shadow: 0 0 18px rgba(47,184,202,0.2);
}

/* ─── Scroll-scrubbed animation ─────────────────────────────────────── */
.scrub-section {
  position: relative;
  /* 300vh total: 100vh stays pinned + 200vh of scroll travel = full animation */
  height: 300vh;
  background: #000;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.scrub-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #000;
}

/* Canvas is sized in JS after first frame loads */
.scrub-canvas {
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.scrub-canvas.is-ready {
  opacity: 1;
}

/* Reduced-motion: collapse to single-frame static image */
@media (prefers-reduced-motion: reduce) {
  .scrub-section {
    height: auto;
  }
  .scrub-sticky {
    position: relative;
  }
}

/* ─── Scrub bridge section ───────────────────────────────────────────── */
.scrub-bridge {
  padding: clamp(96px, 13vh, 152px) var(--pad-h);
  text-align: center;
  background: linear-gradient(180deg, var(--bg-1) 0%, #000 100%);
  border-top: 1px solid var(--border);
}

.scrub-bridge-inner {
  max-width: 680px;
  margin: 0 auto;
}

.scrub-bridge-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.8vw, 76px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin-bottom: 20px;
  color: var(--text-100);
}

.scrub-bridge-inner em {
  color: var(--teal-light);
  font-style: italic;
}

.scrub-bridge-sub {
  color: var(--text-60);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.78;
  max-width: 500px;
  margin: 0 auto;
}

/* ─── Scrub section updates ──────────────────────────────────────────── */

.scrub-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      #000 0%,
      transparent 14%,
      transparent 86%,
      var(--bg-1) 100%
    );
  pointer-events: none;
  z-index: 2;
}

/* ─── Testimonials layout ────────────────────────────────────────────── */

/* Hero testimonial spans full top row */
.tcard-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 56px;
  align-items: end;
}

.tcard-hero .tcard-stars {
  grid-column: 1;
  grid-row: 1;
}

.tcard-hero blockquote {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(22px, 2.4vw, 30px);
  font-style: italic;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text-100);
  margin-bottom: 0;
}

.tcard-hero .tcard-metric {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  white-space: nowrap;
  font-size: 13px;
}

.tcard-hero .tcard-author {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

/* Smaller cards — minimal: just star + quote + author */
.tgrid .tcard:not(.tcard-hero) blockquote {
  font-size: 16px;
  line-height: 1.7;
}

/* Remove metric from smaller cards (they don't have one in new markup) */

/* Responsive: collapse hero card on mobile */
@media (max-width: 760px) {
  .tgrid {
    grid-template-columns: 1fr;
  }
  .tcard-hero {
    grid-template-columns: 1fr;
  }
  .tcard-hero blockquote {
    font-size: clamp(20px, 5vw, 26px);
  }
  .tcard-hero .tcard-metric {
    grid-column: 1;
    grid-row: auto;
    white-space: normal;
    margin-top: 16px;
  }
}

/* ─── CTA — larger, more dramatic ───────────────────────────────────── */
.cta-section h2 {
  font-size: clamp(48px, 6.5vw, 88px);
  margin-bottom: 28px;
}

.cta-sub {
  margin-bottom: 40px;
  color: var(--text-40);
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════════════
   AGENTS SECTION — cinematic, full-bleed, dramatic
   ═══════════════════════════════════════════════════════════════════════ */

.agents-section {
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agents-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 72% 46%, rgba(47, 184, 202, 0.26) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(47, 184, 202, 0.07) 0%, transparent 40%);
  z-index: 0;
}

.agents-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* ── Left copy ───────────────────────────────────────────────────────── */

.agents-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 140px) clamp(32px, 5vw, 80px) clamp(80px, 10vw, 140px) clamp(24px, 5.5vw, 90px);
}

.agents-copy .eyebrow {
  margin-bottom: 20px;
}

.agents-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(50px, 6.2vw, 86px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.01;
  color: var(--text-100);
  margin-bottom: 48px;
}

.agents-copy em {
  color: var(--teal-light);
  font-style: italic;
}

.agents-list {
  display: grid;
}

.agent-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-60);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.agent-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.agent-item:hover {
  color: var(--text-100);
}

.agent-num {
  color: var(--teal-bright);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  flex-shrink: 0;
  width: 24px;
  padding-top: 1px;
  opacity: 0.7;
}

/* ── Right image + live feed ─────────────────────────────────────────── */

.agents-visual {
  position: relative;
  overflow: hidden;
}

.agents-img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.agents-img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg-0) 0%,
    rgba(5, 7, 13, 0.35) 28%,
    transparent 58%
  );
}

.agents-live {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 28px 28px;
  background: linear-gradient(
    to top,
    rgba(5, 7, 13, 0.97) 0%,
    rgba(5, 7, 13, 0.7) 60%,
    transparent 100%
  );
}

.agents-live-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-40);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.agents-live-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 10px var(--teal-bright), 0 0 20px rgba(47, 184, 202, 0.4);
  animation: pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

.agents-live-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  margin-bottom: 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  background: rgba(4, 6, 12, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.agents-live-row:last-child {
  margin-bottom: 0;
}

.alr-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.alr-dot-live {
  background: var(--teal-light);
  box-shadow: 0 0 8px var(--teal-light);
  animation: pulse 2.2s ease-in-out infinite;
}

.alr-dot-done {
  background: rgba(255, 255, 255, 0.2);
}

.alr-task {
  flex: 1;
  color: var(--text-60);
  font-size: 13px;
  line-height: 1.4;
}

.alr-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}

.alr-badge-live {
  color: var(--teal-light);
  background: rgba(47, 184, 202, 0.12);
  border: 1px solid rgba(47, 184, 202, 0.26);
}

.alr-badge-done {
  color: var(--text-40);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}


/* ═══════════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION — premium feel on all screen sizes
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Tablet: ≤ 1060px ────────────────────────────────────────────────── */
@media (max-width: 1060px) {
  /* Walkthrough: show visual panel ABOVE the nav buttons */
  .steps-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .steps-display {
    order: -1;
  }
  .steps-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .step-stage {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Engine: hide side mini-cards column, keep main two */
  .console-grid {
    grid-template-columns: 1fr 1fr;
  }
  .console-side {
    display: none;
  }

  /* Capabilities: image card stacks */
  .feat-has-img {
    grid-template-columns: 1fr;
  }
  .feat-cinematic {
    min-height: 220px;
    order: -1;
  }
  .feat-cinematic-fade {
    background: linear-gradient(to bottom, rgba(12,16,24,0.7) 0%, transparent 50%, transparent 80%, rgba(12,16,24,0.9) 100%);
  }

  /* Agents: stack, image on top */
  .agents-content {
    grid-template-columns: 1fr;
  }
  .agents-visual {
    order: -1;
    min-height: 55vw;
    max-height: 70vh;
  }
  .agents-img {
    min-height: unset;
    height: 100%;
  }
  .agents-img-fade {
    background: linear-gradient(
      to bottom,
      rgba(5,7,13,0.15) 0%,
      transparent 20%,
      transparent 55%,
      var(--bg-0) 100%
    );
  }
  .agents-copy {
    padding: 40px clamp(20px, 5vw, 48px) 60px;
  }
  .agents-copy h2 {
    font-size: clamp(40px, 8vw, 62px);
    margin-bottom: 36px;
  }
  .agents-section {
    min-height: auto;
  }
  .agents-content {
    min-height: auto;
  }
}

/* ── Mobile: ≤ 760px ─────────────────────────────────────────────────── */
@media (max-width: 760px) {

  /* Hero */
  .hero-headline {
    font-size: clamp(36px, 10.5vw, 54px);
    letter-spacing: -0.04em;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.72;
    margin-bottom: 32px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .btn-primary-lg,
  .btn-ghost-lg {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Engine dashboard */
  .console-shell {
    padding: 16px;
  }
  .console-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .console-topbar h3 {
    font-size: 17px;
  }
  .console-status {
    font-size: 11.5px;
    padding: 6px 12px;
  }
  .console-grid {
    grid-template-columns: 1fr;
  }
  .console-side {
    display: none;
  }
  .engine-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
    padding: 0;
  }

  /* Walkthrough */
  .steps-nav {
    grid-template-columns: 1fr;
  }
  .step-stage {
    grid-template-columns: 1fr;
  }
  .step-text p {
    display: none;
  }
  .step-btn {
    padding: 14px 16px;
  }

  /* Capabilities bento */
  .features-bento {
    border-radius: var(--radius-md);
  }
  .feat {
    padding: 28px 22px;
  }
  .feat-has-img .feat-content {
    padding: 28px 22px;
  }

  /* Scrub bridge */
  .scrub-bridge {
    padding: clamp(60px, 10vh, 96px) clamp(20px, 5vw, 36px);
  }
  .scrub-bridge-inner h2 {
    font-size: clamp(34px, 9.5vw, 52px);
  }
  .scrub-bridge-sub {
    font-size: 14.5px;
  }

  /* Agents */
  .agents-copy {
    padding: 36px 20px 48px;
  }
  .agents-copy h2 {
    font-size: clamp(34px, 9.5vw, 50px);
    margin-bottom: 26px;
  }
  .agents-live {
    padding: 0 14px 18px;
  }
  .agents-live-row {
    padding: 9px 12px;
  }
  .alr-task {
    font-size: 12px;
  }
  .agent-item {
    font-size: 14px;
    padding: 16px 0;
  }

  /* Testimonials */
  .tcard-hero {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }
  .tcard-hero blockquote {
    font-size: clamp(18px, 5.5vw, 24px);
  }
  .tcard-hero .tcard-metric {
    grid-column: 1;
    grid-row: auto;
    white-space: normal;
    text-align: left;
    justify-content: flex-start;
    margin-top: 12px;
  }
  .tcard {
    padding: 26px 22px;
  }
  .tcard blockquote {
    font-size: 14px;
    line-height: 1.72;
  }

  /* Trust */
  .trust-layout {
    gap: 36px;
  }
  .compliance-grid {
    grid-template-columns: 1fr;
  }
  .comp-item {
    padding: 12px 14px;
  }
  .orbit-system {
    width: 240px;
    height: 240px;
  }
  .orbit-3 { width: 230px; height: 230px; }
  .orbit-2 { width: 170px; height: 170px; }
  .orbit-1 { width: 104px; height: 104px; }

  /* CTA */
  .cta-section {
    padding: clamp(64px, 10vh, 96px) clamp(20px, 5vw, 36px);
  }
  .cta-section h2 {
    font-size: clamp(38px, 10vw, 58px);
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cta-actions .btn-primary-lg,
  .cta-actions .btn-ghost-lg {
    width: 100%;
    max-width: 300px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ── Small mobile: ≤ 480px ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(32px, 10vw, 44px);
  }
  .hero-badge {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .marquee-eyebrow {
    font-size: 9.5px;
    padding: 0 20px;
  }
  .logo-chip {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
    gap: 7px;
  }
  .engine-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .estat {
    padding: 16px 10px;
  }
  .estat-num {
    font-size: clamp(22px, 7vw, 32px);
  }
  .section-header h2,
  .engine-copy h2,
  .trust-copy h2 {
    font-size: clamp(28px, 8vw, 42px);
  }
  .proof-bar {
    flex-direction: column;
    border-radius: var(--radius-md);
  }
  .proof-divider {
    width: 44%;
    height: 1px;
  }
  .pstat {
    padding: 22px 18px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tgrid {
    grid-template-columns: 1fr;
  }
  .tcard-hero {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   SCROLL SCRUB — 3-panel narrative layout
   ═══════════════════════════════════════════════════════════════════════ */


/* Side panels */
.scrub-panel {
  width: clamp(150px, 18vw, 260px);
  flex-shrink: 0;
  padding: 0 clamp(20px, 2.2vw, 38px);
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

/* Stack phases on top of each other inside fixed-height wrapper */
.scrub-phase-wrap {
  position: relative;
  width: 100%;
  min-height: 320px;
}

.scrub-phase {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(32px) scale(0.94);
  filter: blur(6px);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.scrub-phase.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.scrub-phase .eyebrow {
  margin-bottom: 14px;
}

.scrub-phase-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-100);
  margin-bottom: 16px;
}

.scrub-phase-body {
  color: var(--text-60);
  font-size: 13px;
  line-height: 1.75;
}

/* ── Phase 1 (agents): panel accent ─────────────────────────────────── */
/* Left panel gets a teal top-border flash */
.scrub-sticky.is-phase-agents .scrub-panel-left {
  border-top: 2px solid var(--teal-bright);
}
.scrub-sticky:not(.is-phase-agents) .scrub-panel-left {
  border-top: 2px solid transparent;
}
.scrub-panel-left {
  border-top: 2px solid transparent;
  transition: border-color 0.4s ease;
}

/* Bullet points (right panel) */
.scrub-sticky.is-phase-agents .scrub-point-pos {
  color: var(--teal-light);
}

.scrub-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.4s ease, padding-left 0.4s ease;
}

.scrub-point:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.scrub-point::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.scrub-point-neg {
  color: var(--text-40);
}

.scrub-point-neg::before {
  background: rgba(255, 255, 255, 0.18);
}

.scrub-point-pos {
  color: var(--text-80);
}

.scrub-point-pos::before {
  background: var(--teal-light);
  box-shadow: 0 0 8px rgba(136, 241, 255, 0.5);
}

/* Center canvas column */
.scrub-center {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}

/* ── Mobile: collapse to canvas + caption below ──────────────────────── */
@media (max-width: 900px) {
  .scrub-sticky {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .scrub-panel-right {
    display: none;
  }

  .scrub-panel-left {
    order: 2;
    width: 100%;
    max-width: 100%;
    padding: 12px clamp(20px, 5vw, 40px) 4px;
    flex-shrink: 0;
  }

  .scrub-phase-wrap {
    min-height: 120px;
  }

  .scrub-phase-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .scrub-phase-body {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .scrub-center {
    order: 1;
    flex: none;
    width: 100%;
    flex-shrink: 0;
    padding: 8px 0 0;
  }

  .scrub-section {
    height: 250vh;
  }
}
