:root {
  color-scheme: dark;
  --mouse-x: 50vw;
  --mouse-y: 20vh;
  --bg: #070908;
  --bg-soft: #0d1110;
  --panel: #121816;
  --panel-strong: #18201d;
  --line: rgba(218, 235, 224, 0.14);
  --line-strong: rgba(218, 235, 224, 0.24);
  --text: #f5f7f2;
  --muted: #aeb9b2;
  --subtle: #76827b;
  --mint: #77f2bd;
  --mint-dark: #173b2e;
  --cyan: #7bd7ff;
  --amber: #f5c86b;
  --coral: #ff8f7b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  --radius-small: 6px;
  --shell: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 25% 0%, rgba(119, 242, 189, 0.13), transparent 30rem),
    radial-gradient(circle at 88% 12%, rgba(245, 200, 107, 0.09), transparent 26rem),
    linear-gradient(180deg, #070908 0%, #0a0d0c 38%, #080a09 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

.cursor-light {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      560px circle at var(--mouse-x) var(--mouse-y),
      rgba(119, 242, 189, 0.12),
      rgba(123, 215, 255, 0.045) 34%,
      transparent 68%
    );
  opacity: 0.75;
  transition: opacity 180ms ease;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

img,
svg {
  max-width: 100%;
}

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

button {
  font: inherit;
}

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

p {
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.65rem, 8vw, 4.75rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 8vw, 4.15rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.08rem;
}

h4 {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.shell {
  width: min(100% - 2rem, var(--shell));
  margin-inline: auto;
}

.section {
  padding: 4.75rem 0;
  scroll-margin-top: 5rem;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 999;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(7, 9, 8, 0.72);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 9, 8, 0.91);
}

.nav {
  display: flex;
  min-height: 4.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.98rem;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 3.05rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(119, 242, 189, 0.48);
  border-radius: var(--radius-small);
  background: linear-gradient(145deg, rgba(119, 242, 189, 0.28), rgba(123, 215, 255, 0.1));
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 850;
}

.nav-toggle {
  display: inline-grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.nav-menu {
  position: fixed;
  inset: 4.75rem 1rem auto 1rem;
  display: grid;
  gap: 0.4rem;
  padding: 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(13, 17, 16, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.6rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.nav-menu a {
  padding: 0.78rem 0.85rem;
  border-radius: var(--radius-small);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 680;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
}

.nav-menu .nav-cta {
  border: 1px solid rgba(119, 242, 189, 0.34);
  color: var(--mint);
}

.hero {
  position: relative;
  padding: 3.25rem 0 3rem;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 49rem;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  align-items: center;
  gap: 0.5rem;
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 20px rgba(119, 242, 189, 0.8);
  content: "";
}

.hero-subtitle {
  max-width: 42rem;
  margin-bottom: 1.5rem;
  color: #d6ddd7;
  font-size: clamp(1.05rem, 3.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.86rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  background: var(--mint);
  color: #06100c;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #9dffd5;
  border-color: rgba(255, 255, 255, 0.35);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(123, 215, 255, 0.44);
  background: rgba(123, 215, 255, 0.09);
}

.trust-note {
  margin: 0;
  color: var(--subtle);
  font-size: 0.88rem;
}

.lead-system-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: var(--shadow);
}

.lead-system-card::before {
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: calc(var(--radius) - 2px);
  pointer-events: none;
  content: "";
}

.visual-header,
.inquiry-card,
.pipeline-preview,
.automation-stack {
  position: relative;
  z-index: 1;
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.visual-header div {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.status-dot {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(119, 242, 189, 0.85);
}

.mini-badge,
.time-pill,
.pain-marker,
.package-label,
.featured-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.mini-badge {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(119, 242, 189, 0.32);
  color: var(--mint);
}

.inquiry-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(119, 242, 189, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(119, 242, 189, 0.14), rgba(123, 215, 255, 0.06));
}

.field-label,
.column-label {
  display: block;
  color: var(--subtle);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.time-pill {
  flex: 0 0 auto;
  padding: 0.42rem 0.55rem;
  background: rgba(119, 242, 189, 0.13);
  color: var(--mint);
}

.pipeline-preview {
  display: grid;
  gap: 0.72rem;
}

.pipeline-preview article {
  min-height: 6.2rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.pipeline-preview strong {
  display: block;
  margin: 0.55rem 0 0.25rem;
}

.pipeline-preview small {
  color: var(--muted);
}

.automation-stack {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.automation-stack > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.78rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.035);
}

.automation-stack p {
  margin: 0;
}

.automation-stack strong,
.automation-stack span:not(.automation-icon) {
  display: block;
}

.automation-stack span:not(.automation-icon) {
  margin-top: 0.1rem;
  color: var(--subtle);
  font-size: 0.82rem;
}

.automation-icon {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 200, 107, 0.14);
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 850;
}

.section-kicker,
.split-heading {
  margin-bottom: 2rem;
}

.section-kicker {
  max-width: 48rem;
}

.split-heading {
  display: grid;
  gap: 1rem;
}

.split-heading > p {
  max-width: 35rem;
  margin-bottom: 0;
}

.pain {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.pain-grid {
  display: grid;
  gap: 0.9rem;
}

.pain-item,
.build-card,
.price-card,
.case-card,
.proof-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(18, 24, 22, 0.74);
}

.pain-item {
  padding: 1rem;
}

.pain-marker {
  margin-bottom: 1.2rem;
  padding: 0.34rem 0.54rem;
  background: rgba(255, 143, 123, 0.12);
  color: var(--coral);
}

.pain-item p,
.build-card p,
.price-top p,
.case-card p,
.proof-block p {
  margin-bottom: 0;
}

.build-grid {
  display: grid;
  gap: 0.9rem;
}

.build-card {
  position: relative;
  min-height: 13rem;
  padding: 1rem;
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.build-card::after {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 7rem;
  height: 7rem;
  border: 1px solid rgba(119, 242, 189, 0.12);
  border-radius: 50%;
  content: "";
}

.build-card:hover {
  border-color: rgba(119, 242, 189, 0.26);
  background: rgba(22, 31, 28, 0.9);
  transform: translateY(-3px);
}

.build-icon {
  display: inline-flex;
  margin-bottom: 1.4rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
}

.pricing {
  position: relative;
}

.pricing-grid {
  display: grid;
  gap: 1rem;
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.15rem;
}

.price-card.featured {
  position: relative;
  border-color: rgba(119, 242, 189, 0.48);
  background:
    linear-gradient(180deg, rgba(119, 242, 189, 0.1), rgba(18, 24, 22, 0.78)),
    var(--panel);
}

.price-top h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.25rem, 11vw, 3.5rem);
}

.package-label {
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.58rem;
  background: rgba(123, 215, 255, 0.1);
  color: var(--cyan);
}

.featured-label {
  align-self: flex-start;
  padding: 0.38rem 0.65rem;
  background: var(--mint);
  color: #07100c;
}

.feature-list {
  display: grid;
  gap: 0.72rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #d8e0da;
}

.feature-list li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.price-card .button {
  margin-top: auto;
}

.live-walkthrough {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding: 1rem;
  overflow: hidden;
  overflow-anchor: none;
  border: 1px solid rgba(119, 242, 189, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(119, 242, 189, 0.09), rgba(123, 215, 255, 0.04) 46%, rgba(255, 255, 255, 0.02)),
    rgba(18, 24, 22, 0.82);
  box-shadow: var(--shadow);
}

.live-walkthrough::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, rgba(119, 242, 189, 0.08) 42%, rgba(123, 215, 255, 0.05) 50%, transparent 62%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-65%);
  content: "";
}

.live-walkthrough.is-running::before {
  animation: live-sheen 6.4s ease-in-out infinite;
}

.live-walkthrough > * {
  position: relative;
  z-index: 1;
}

.live-copy {
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.live-copy h3 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 7vw, 2.45rem);
}

.live-copy p {
  margin-bottom: 0;
}

.live-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  padding: 0.36rem 0.58rem;
  border: 1px solid rgba(119, 242, 189, 0.28);
  border-radius: 999px;
  background: rgba(119, 242, 189, 0.08);
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.live-label::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(119, 242, 189, 0.75);
  content: "";
  animation: live-pulse 1.4s ease-in-out infinite;
}

.scenario-tabs {
  display: grid;
  gap: 0.5rem;
}

.scenario-tab {
  min-height: 2.65rem;
  padding: 0.66rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 820;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.scenario-tab:hover,
.scenario-tab:focus-visible,
.scenario-tab.is-active {
  border-color: rgba(119, 242, 189, 0.34);
  background: rgba(119, 242, 189, 0.1);
  color: var(--text);
  outline: none;
}

.scenario-tab:hover,
.scenario-tab:focus-visible {
  transform: translateY(-1px);
}

.live-board {
  display: grid;
  min-width: 0;
  gap: 0.85rem;
  padding: 0.85rem;
  overflow-anchor: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.live-board.is-processing {
  border-color: rgba(119, 242, 189, 0.3);
}

.live-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.live-board-top div {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.5rem;
}

.live-board-top strong {
  overflow: hidden;
  color: var(--text);
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-clock {
  flex: 0 0 auto;
  padding: 0.34rem 0.54rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
}

.live-motion-rail {
  position: relative;
  height: 0.5rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.live-motion-rail::before,
.live-motion-rail::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 143, 123, 0.28), rgba(119, 242, 189, 0.42), rgba(123, 215, 255, 0.22));
  opacity: 0.34;
  content: "";
}

.live-motion-rail span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -32%;
  width: 32%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--mint), transparent);
  box-shadow: 0 0 20px rgba(119, 242, 189, 0.62);
  animation: live-rail 2.1s linear infinite;
}

.live-path-grid {
  display: grid;
  gap: 0.75rem;
}

.live-column {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.032);
}

.live-column-bad {
  border-color: rgba(255, 143, 123, 0.17);
  background: rgba(255, 143, 123, 0.035);
  transition: opacity 260ms ease, transform 260ms ease;
}

.live-column-good {
  border-color: rgba(119, 242, 189, 0.22);
  background: rgba(119, 242, 189, 0.045);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.live-walkthrough.is-running .live-column-bad {
  transform: translateY(1px);
}

.live-walkthrough.is-running .live-column-good {
  border-color: rgba(119, 242, 189, 0.36);
  box-shadow: inset 0 0 0 1px rgba(119, 242, 189, 0.06);
}

.live-inbox {
  display: grid;
  gap: 0.75rem;
}

.live-mail-card {
  display: grid;
  gap: 0.62rem;
  padding: 0.85rem;
  border: 1px dashed rgba(255, 143, 123, 0.28);
  border-radius: var(--radius-small);
  background: rgba(0, 0, 0, 0.16);
  transition: opacity 220ms ease, transform 220ms ease;
}

.live-mail-card.is-draining {
  opacity: 0.54;
  transform: translateY(3px);
}

.live-mail-card::after {
  display: block;
  width: fit-content;
  margin-top: 0.1rem;
  padding: 0.26rem 0.46rem;
  border-radius: 999px;
  background: rgba(119, 242, 189, 0.1);
  color: var(--mint);
  font-size: 0.7rem;
  font-weight: 850;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 180ms ease;
  content: "Captured";
}

.live-mail-card.is-draining::after {
  opacity: 1;
}

.live-mail-card p {
  margin-bottom: 0;
  color: #d8e0da;
}

.live-before-list {
  display: grid;
  gap: 0.52rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.live-before-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.live-before-list li::before {
  position: absolute;
  top: 0.58rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.live-before-list li.is-muted {
  color: rgba(174, 185, 178, 0.5);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 143, 123, 0.38);
}

.live-record {
  display: grid;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid rgba(119, 242, 189, 0.2);
  border-radius: var(--radius-small);
  background: rgba(0, 0, 0, 0.16);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.live-record.is-live {
  border-color: rgba(119, 242, 189, 0.52);
  box-shadow: 0 0 0 1px rgba(119, 242, 189, 0.08), 0 20px 50px rgba(0, 0, 0, 0.24);
  animation: live-record-pop 580ms ease both;
}

.live-record dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
}

.live-record dl div {
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.035);
}

.live-record dt {
  margin-bottom: 0.24rem;
  color: var(--subtle);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.live-record dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: #e6ede7;
  font-size: 0.88rem;
  font-weight: 780;
}

.status-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.status-track span {
  min-height: 2.15rem;
  padding: 0.48rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-small);
  background: rgba(0, 0, 0, 0.14);
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 850;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.status-track span.is-on {
  border-color: rgba(119, 242, 189, 0.26);
  background: rgba(119, 242, 189, 0.1);
  color: var(--mint);
  transform: translateY(-1px);
  animation: status-pop 420ms ease both;
}

.live-feed {
  display: grid;
  align-content: start;
  gap: 0.5rem;
  height: 13rem;
  margin: 0;
  padding: 0.8rem;
  overflow: hidden;
  overflow-anchor: none;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.03);
  list-style: none;
}

.live-feed li {
  display: grid;
  grid-template-columns: 3.8rem 1fr;
  gap: 0.55rem;
  min-height: 1.25rem;
  align-items: start;
  color: #d8e0da;
  font-size: 0.86rem;
  transition: color 160ms ease, opacity 160ms ease;
}

.live-feed time {
  display: inline-flex;
  min-height: 1.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(119, 242, 189, 0.18);
  border-radius: 999px;
  background: rgba(119, 242, 189, 0.07);
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.live-feed li.is-pending {
  color: rgba(174, 185, 178, 0.54);
}

.live-feed li.is-pending time {
  border-color: rgba(174, 185, 178, 0.12);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(174, 185, 178, 0.42);
}

.live-feed li.is-active {
  color: #d8e0da;
}

.live-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.live-actions .button {
  width: 100%;
}

@keyframes live-sheen {
  0% {
    opacity: 0;
    transform: translateX(-65%);
  }

  18%,
  48% {
    opacity: 1;
  }

  78%,
  100% {
    opacity: 0;
    transform: translateX(66%);
  }
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.84);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes live-rail {
  to {
    left: 100%;
  }
}

@keyframes live-record-pop {
  0% {
    transform: translateY(3px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes status-pop {
  0% {
    transform: translateY(2px);
  }

  100% {
    transform: translateY(-1px);
  }
}

.case-stack {
  display: grid;
  gap: 1.15rem;
}

.case-card {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(18, 24, 22, 0.78);
}

.case-heading {
  display: grid;
  gap: 0.45rem;
  max-width: 50rem;
  margin-bottom: 1.1rem;
}

.case-heading span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.case-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 6vw, 2rem);
}

.case-heading p {
  max-width: 42rem;
  margin-bottom: 0;
}

.before-after {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(0, 0, 0, 0.16);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.panel-top span {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.panel-top small {
  color: var(--subtle);
  font-size: 0.73rem;
  font-weight: 780;
  text-align: right;
  text-transform: uppercase;
}

.panel.before .panel-top span {
  color: var(--coral);
}

.panel.after .panel-top span {
  color: var(--mint);
}

.panel.before {
  border-color: rgba(255, 143, 123, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 143, 123, 0.045), rgba(0, 0, 0, 0.1)),
    rgba(0, 0, 0, 0.18);
}

.panel.after {
  border-color: rgba(119, 242, 189, 0.25);
  background: rgba(119, 242, 189, 0.065);
}

.demo-lead-card {
  display: grid;
  gap: 0.62rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.035);
}

.demo-lead-card.messy {
  border-style: dashed;
  border-color: rgba(255, 143, 123, 0.26);
  background: rgba(255, 143, 123, 0.045);
}

.demo-lead-card.clean {
  border-color: rgba(119, 242, 189, 0.26);
  background: rgba(119, 242, 189, 0.07);
}

.lead-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.lead-card-top strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.lead-card-top em {
  flex: 0 0 auto;
  padding: 0.25rem 0.48rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

.demo-lead-card.clean .lead-card-top em {
  background: rgba(119, 242, 189, 0.13);
  color: var(--mint);
}

.demo-lead-card p {
  margin-bottom: 0;
  color: #d8e0da;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.pill-row b {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.3rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.messy .pill-row b {
  border-color: rgba(255, 143, 123, 0.18);
  color: #f4afa2;
}

.clean .pill-row b {
  border-color: rgba(119, 242, 189, 0.2);
  color: #b8fbdc;
}

.mini-list,
.activity-feed {
  display: grid;
  gap: 0.58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li,
.activity-feed li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-list li::before {
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.82;
  content: "";
}

.activity-feed li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.55rem;
  padding-left: 0;
}

.activity-feed time {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 850;
}

.activity-feed span {
  color: #d8e0da;
}

.case-details {
  display: grid;
  gap: 0.8rem;
}

.case-details > div {
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.process {
  background: linear-gradient(180deg, rgba(119, 242, 189, 0.04), rgba(255, 255, 255, 0));
}

.process-shell {
  display: grid;
  gap: 1.5rem;
}

.process-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.step-number {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid rgba(245, 200, 107, 0.34);
  border-radius: var(--radius-small);
  background: rgba(245, 200, 107, 0.09);
  color: var(--amber);
  font-weight: 850;
}

.process-list h3,
.process-list p {
  margin-bottom: 0;
}

.process-list h3 {
  margin-bottom: 0.42rem;
}

.proof-grid {
  display: grid;
  gap: 0.9rem;
}

.proof-block {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    var(--panel);
}

.proof-block h3 {
  position: relative;
  padding-left: 1rem;
}

.proof-block h3::before {
  position: absolute;
  top: 0.28rem;
  left: 0;
  width: 0.28rem;
  height: 1.05rem;
  border-radius: 999px;
  background: var(--mint);
  content: "";
}

.final-cta {
  padding-top: 3rem;
}

.cta-panel {
  padding: 2rem 1rem;
  border: 1px solid rgba(119, 242, 189, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(119, 242, 189, 0.14), rgba(245, 200, 107, 0.08) 45%, rgba(123, 215, 255, 0.08)),
    var(--panel);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
}

.cta-panel p:not(.eyebrow) {
  max-width: 39rem;
  margin-bottom: 1.35rem;
}

.site-footer {
  padding: 1.6rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: grid;
  gap: 0.65rem;
  color: var(--subtle);
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--mint);
  font-weight: 760;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

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

  .cursor-light {
    display: none;
  }

  .live-walkthrough::before,
  .live-label::before,
  .live-motion-rail span,
  .live-record.is-live,
  .status-track span.is-on {
    animation: none !important;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-light {
    display: none;
  }
}

@media (min-width: 520px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button {
    width: fit-content;
    min-width: 11rem;
  }

  .scenario-tabs,
  .live-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .scenario-tab {
    text-align: center;
  }

  .live-actions .button {
    width: fit-content;
  }

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

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

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

@media (min-width: 760px) {
  .section {
    padding: 6.5rem 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    width: auto;
    align-items: center;
    gap: 0.3rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding: 0.58rem 0.72rem;
    font-size: 0.86rem;
  }

  .nav-menu .nav-cta {
    padding-inline: 0.95rem;
    border-radius: var(--radius-small);
  }

  .hero {
    display: grid;
    align-items: center;
    padding: 3.2rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.82fr);
    gap: 2.25rem;
  }

  .lead-system-card {
    padding: 1.15rem;
  }

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

  .build-card-wide {
    grid-column: span 2;
    min-height: auto;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .price-card {
    padding: 1.35rem;
  }

  .live-walkthrough {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 1.2rem;
    padding: 1.2rem;
  }

  .live-path-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .live-feed {
    height: 10rem;
  }

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

  .process-shell {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .cta-panel {
    padding: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .section-kicker,
  .split-heading {
    margin-bottom: 3rem;
  }

  .split-heading {
    grid-template-columns: 1fr minmax(18rem, 0.52fr);
    align-items: end;
  }

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

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

  .build-card-wide {
    grid-column: span 2;
  }

  .case-card {
    padding: 1.25rem;
  }

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

@media (min-width: 1120px) {
  .hero-grid {
    gap: 4rem;
  }

  .lead-system-card {
    transform: translateY(1rem);
  }
}
