@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400..950&display=swap');

:root {
  --ink: #11140f;
  --ink-2: #313a34;
  --muted: #667064;
  --paper: #ffffff;
  --canvas: #fbfbf2;
  --cream: #f6f2df;
  --wash: #f3f6ed;
  --night: #10130e;
  --night-2: #1b2119;
  --orange: #ff6b1a;
  --orange-50: #fff2e8;
  --orange-100: #ffdfc9;
  --orange-700: #b6460d;
  --lime: #b9ff18;
  --lime-soft: #eeffc2;
  --green: #23c463;
  --green-soft: #ddf8e5;
  --teal: #13b8a6;
  --teal-soft: #dcfaf6;
  --blue: #3157ff;
  --blue-soft: #e6ebff;
  --violet: #7c3aed;
  --violet-soft: #eee8ff;
  --red: #ef4444;
  --line: #dde5d8;
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 26px 70px rgba(17, 20, 15, 0.16);
  --shadow-soft: 0 18px 44px rgba(17, 20, 15, 0.1);
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--orange-50);
  color: var(--orange-700);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.92em;
}

[hidden] {
  display: none !important;
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.top-ribbon {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 18px;
  background: var(--lime);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.top-ribbon span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(17, 20, 15, 0.1);
}

.top-ribbon a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-nav {
  position: fixed;
  inset: 56px max(14px, calc((100vw - 1210px) / 2)) auto;
  z-index: 40;
  min-height: 62px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  padding: 9px 10px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(16, 19, 14, 0.78);
  color: #fff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  transition: inset 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav.is-scrolled {
  inset-block-start: 12px;
  border-color: rgba(221, 229, 216, 0.92);
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

body:not(.home-page) .site-nav {
  inset-block-start: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.brand > span:last-child {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: currentColor;
  opacity: 0.64;
  font-size: 11px;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  color: currentColor;
  opacity: 0.78;
  font-size: 14px;
  font-weight: 760;
}

.nav-links:first-of-type {
  margin-left: auto;
}

.nav-links a,
.nav-group-trigger {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  opacity: 1;
}

.nav-group {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-group > summary {
  list-style: none;
}

.nav-group > summary::-webkit-details-marker {
  display: none;
}

.nav-group-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: currentColor;
  background: none;
  border: 0;
  opacity: 0.78;
  font-size: 14px;
  font-weight: 760;
}

.nav-group-trigger::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.7;
}

.nav-group-trigger:hover,
.nav-group-trigger.active,
.nav-group[open] .nav-group-trigger {
  color: var(--orange);
  opacity: 1;
}

.nav-group-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 3;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(16, 19, 14, 0.96);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-group[open] .nav-group-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-group-link {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
}

.nav-group-link:hover,
.nav-group-link.active {
  background: var(--orange-50);
  color: var(--orange-700);
}

.site-nav.is-scrolled .nav-group-panel {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.98);
}

.site-nav.is-scrolled .nav-group-link {
  color: var(--ink-2);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(185, 255, 24, 0.26);
}

.auth-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auth-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 107, 26, 0.54);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.auth-btn:hover {
  transform: translateY(-1px);
}

.auth-btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.auth-btn.secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
}

.site-nav.is-scrolled .auth-btn.secondary,
body:not(.home-page) .auth-btn.secondary {
  border-color: var(--line);
  background: var(--wash);
  color: var(--ink);
}

.auth-user-slot {
  min-width: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
}

.auth-status {
  color: currentColor;
  font-size: 12px;
  font-weight: 800;
  opacity: 0.72;
  white-space: nowrap;
}

.cl-phoneInputBox .cl-selectButton__countryCode,
.cl-phoneInputBox .cl-selectButton__countryCode span {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

.cl-phoneInputBox > div > p {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.cl-phoneInputBox .cl-formFieldInput__phoneNumber {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
}

.nav-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, var(--night), #171d15 72%, #24231b);
  color: #fff;
}

.page-hero {
  min-height: 56svh;
  display: grid;
  align-items: end;
  padding: 180px 0 80px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(19, 184, 166, 0.13) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, rgba(255, 107, 26, 0.12), transparent 42%),
    linear-gradient(115deg, rgba(185, 255, 24, 0.2), transparent 40%),
    linear-gradient(180deg, #ffffff, var(--wash));
}

.feature-overview-page .page-hero,
.feature-page .page-hero {
  border-bottom-color: var(--line-dark);
  background:
    radial-gradient(circle at 84% 18%, rgba(19, 184, 166, 0.28), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(255, 107, 26, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, var(--night), #171d15 72%, #24231b);
  color: #fff;
}

.feature-overview-page .page-hero .eyebrow,
.feature-page .page-hero .eyebrow {
  color: var(--lime);
}

.home-hero {
  min-height: 98svh;
  padding: 168px 0 90px;
}

.hero-stack,
.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-stack {
  display: grid;
  gap: 34px;
}

.home-page .hero-stack {
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 880px;
}

.hero-offer-copy {
  max-width: 720px;
}

.centered-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.centered-copy .hero-sub,
.centered-copy .hero-actions,
.centered-copy .trust-row {
  margin-inline: auto;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero-badge {
  width: fit-content;
  margin: 0 0 18px;
  padding: 9px 13px;
  border: 1px solid rgba(185, 255, 24, 0.38);
  border-radius: 999px;
  background: rgba(185, 255, 24, 0.12);
  color: var(--lime);
  box-shadow: 0 0 34px rgba(185, 255, 24, 0.1);
  font-size: 13px;
  font-weight: 950;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 1040px;
  font-size: 78px;
  line-height: 0.95;
}

.hero-offer-copy h1 {
  max-width: 760px;
  font-size: clamp(56px, 5.6vw, 78px);
  line-height: 0.92;
}

h2 {
  font-size: 52px;
  line-height: 1.04;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
}

.hero-sub {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.42;
}

.page-hero .hero-sub {
  color: var(--ink-2);
}

.feature-overview-page .page-hero .hero-sub,
.feature-page .page-hero .hero-sub {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 107, 26, 0.26);
}

.btn-primary:hover {
  background: var(--orange-700);
}

.btn-secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.feature-overview-page .page-hero .btn-secondary,
.feature-page .page-hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-secondary:hover {
  border-color: var(--orange);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 820px;
  margin-top: 30px;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 760;
}

.hero-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
  margin-top: 24px;
}

.hero-value-grid span {
  min-height: 98px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.18), transparent 52%),
    linear-gradient(315deg, rgba(185, 255, 24, 0.13), rgba(255, 255, 255, 0.06));
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 780;
}

.hero-value-grid strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin-top: 34px;
}

.hero-metrics span {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(17, 20, 15, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.08), transparent 56%),
    linear-gradient(315deg, rgba(19, 184, 166, 0.08), #fff 68%);
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.hero-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.feature-overview-page .hero-metrics span,
.feature-page .hero-metrics span {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.18), transparent 56%),
    linear-gradient(315deg, rgba(185, 255, 24, 0.13), rgba(255, 255, 255, 0.06));
  color: rgba(255, 255, 255, 0.72);
}

.feature-overview-page .hero-metrics strong,
.feature-page .hero-metrics strong {
  color: #fff;
}

.hero-product,
.screen-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.screen-frame {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.screen-frame:hover {
  border-color: rgba(255, 107, 26, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.hero-product {
  position: relative;
  width: min(780px, 100%);
  margin: 0 auto;
  border-color: rgba(255, 255, 255, 0.16);
  background: #f6f7f3;
  transform: perspective(1600px) rotateX(2deg) rotateY(-4deg);
  animation: float-screen 8s ease-in-out infinite;
}

.home-page .hero-product {
  margin-right: 0;
}

.product-callout {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(185, 255, 24, 0.38);
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(17, 20, 15, 0.2);
  font-size: 13px;
  font-weight: 950;
}

.callout-top {
  top: 54px;
  right: 18px;
}

.callout-bottom {
  left: 18px;
  bottom: 78px;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.screen-bar {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-bottom: 1px solid var(--line);
  background: #f7f8f4;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.screen-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
}

.screen-bar span:nth-child(2) {
  background: #ffbd2e;
}

.screen-bar span:nth-child(3) {
  margin-right: 6px;
  background: #28c840;
}

.hero-product figcaption {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.hero-product figcaption span {
  padding: 14px 16px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.hero-product figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 23px;
  line-height: 1;
}

.hero-command {
  width: min(840px, 100%);
  border-color: rgba(185, 255, 24, 0.2);
  background:
    radial-gradient(circle at 88% 6%, rgba(19, 184, 166, 0.46), transparent 24%),
    linear-gradient(115deg, #050705, #131911 62%, #080a08);
  color: #fff;
}

.command-shell {
  position: relative;
  min-height: 572px;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 22px;
  overflow: hidden;
  padding: 26px;
}

.command-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(19, 184, 166, 0.16) 55%, transparent 72%),
    repeating-linear-gradient(90deg, transparent 0 15px, rgba(19, 184, 166, 0.3) 16px, transparent 18px);
  opacity: 0.42;
  pointer-events: none;
}

.command-rail,
.command-screen {
  position: relative;
  z-index: 1;
}

.command-rail {
  display: grid;
  align-content: center;
  gap: 12px;
}

.command-rail span {
  min-height: 62px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 850;
}

.command-rail span.is-active {
  border-color: rgba(185, 255, 24, 0.62);
  background: rgba(185, 255, 24, 0.12);
  color: #fff;
  box-shadow: 0 0 38px rgba(185, 255, 24, 0.12);
}

.command-rail strong {
  color: var(--lime);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 11px;
}

.command-screen {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #f5f7f4;
  color: var(--ink);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.command-topbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.command-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff5f57;
}

.command-topbar span:nth-child(2) {
  background: #ffbd2e;
}

.command-topbar span:nth-child(3) {
  margin-right: 6px;
  background: #28c840;
}

.command-stage {
  position: relative;
  min-height: 414px;
}

.command-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  opacity: 0;
  transform: translateX(18px);
  animation: command-cycle 16s infinite;
}

.command-slide:nth-child(2) {
  animation-delay: 4s;
}

.command-slide:nth-child(3) {
  animation-delay: 8s;
}

.command-slide:nth-child(4) {
  animation-delay: 12s;
}

.command-slide p {
  width: fit-content;
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--lime-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
}

.command-slide h3 {
  max-width: 520px;
  font-size: clamp(25px, 2.7vw, 36px);
  line-height: 1;
}

.command-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 20, 15, 0.1);
}

.command-shot img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  object-position: left top;
}

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

.command-kpis span,
.command-table span {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.command-kpis span {
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 13px;
}

.command-kpis strong {
  display: block;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

.command-table {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.command-table span {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.command-table span:nth-child(2n) {
  justify-content: flex-end;
  color: var(--green);
}

.command-bars {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.command-bars span {
  position: relative;
  overflow: hidden;
  height: 18px;
  border-radius: 999px;
  background: #e9eee8;
}

.command-bars span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

.command-chart {
  min-height: 116px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.command-chart i {
  flex: 1;
  min-width: 20px;
  height: var(--h);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--teal), var(--orange));
}

.command-wave {
  height: 60px;
  border-top: 1px solid rgba(17, 20, 15, 0.08);
  background:
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(19, 184, 166, 0.85) 13px, transparent 15px),
    linear-gradient(180deg, rgba(185, 255, 24, 0.13), rgba(19, 184, 166, 0.1));
  animation: signal-slide 4s linear infinite;
}

.command-band {
  background:
    radial-gradient(circle at 86% 18%, rgba(19, 184, 166, 0.26), transparent 28%),
    linear-gradient(180deg, var(--night), #171d15);
  color: #fff;
  border-bottom: 1px solid var(--line-dark);
}

.command-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.command-band-copy {
  max-width: 640px;
}

.command-band-copy h2 {
  color: #fff;
}

.command-band-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
}

.command-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.command-band-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 255, 24, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.screen-frame figcaption {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.proof-strip {
  width: min(var(--max), calc(100% - 36px));
  margin: -36px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.proof-strip div {
  min-height: 112px;
  padding: 23px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  font-size: 26px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 94px 0;
}

.problem-section,
.pricing-preview {
  background: var(--canvas);
}

.showcase-section,
.faq-preview {
  background:
    linear-gradient(90deg, rgba(255, 107, 26, 0.08), transparent 38%),
    linear-gradient(115deg, transparent 42%, rgba(19, 184, 166, 0.1)),
    linear-gradient(180deg, #fff, var(--wash));
  border-block: 1px solid var(--line);
}

.workflow-section {
  background:
    linear-gradient(90deg, rgba(49, 87, 255, 0.06), transparent 34%),
    linear-gradient(180deg, var(--cream), #fff);
  border-block: 1px solid var(--line);
}

.operator-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(19, 184, 166, 0.24), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(255, 107, 26, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, var(--night), #171d15);
  color: #fff;
  border-block: 1px solid var(--line-dark);
}

.comparison-section {
  background:
    linear-gradient(180deg, #11140f, #1b2119);
  color: #fff;
}

.section-head {
  max-width: 850px;
  margin-bottom: 34px;
}

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

.section-head.centered p {
  margin-inline: auto;
}

.section-head p,
.split-head > p,
.compare-slab p,
.feature-detail-card p,
.sync-grid p,
.price-card p,
.timeline p,
.workflow-grid p,
.outcome-grid p,
.step-grid p,
.faq-list p,
.final-inner p {
  color: var(--muted);
}

.comparison-section .compare-slab p {
  color: rgba(255, 255, 255, 0.72);
}

.operator-section .split-head > p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 18px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: 44px;
  align-items: end;
}

.split-head > p {
  margin: 0;
  font-size: 18px;
}

.outcome-grid,
.workflow-grid,
.pricing-grid,
.step-grid,
.sync-grid,
.feature-detail-grid,
.timeline {
  display: grid;
  gap: 16px;
}

.outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.workflow-grid,
.step-grid,
.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

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

.checkout-promo {
  margin: -6px auto 22px;
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 10px;
}

.checkout-promo label {
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.checkout-promo input {
  width: min(260px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

.checkout-promo input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(219, 106, 58, 0.16);
}

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

.outcome-grid article,
.workflow-grid article,
.step-grid article,
.timeline article,
.price-card,
.feature-detail-card,
.sync-grid article,
.calculator,
.mini-compare,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.feature-detail-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.04), transparent 40%),
    linear-gradient(315deg, rgba(19, 184, 166, 0.06), transparent 38%),
    var(--paper);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.feature-detail-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.page-enhancement-section {
  background:
    linear-gradient(90deg, rgba(19, 184, 166, 0.08), transparent 40%),
    linear-gradient(180deg, #fff, var(--canvas));
}

.page-enhancement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
  gap: 30px;
  align-items: stretch;
}

.page-enhancement-copy,
.page-enhancement-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.06), transparent 48%),
    linear-gradient(315deg, rgba(185, 255, 24, 0.16), #fff 64%);
  box-shadow: var(--shadow-soft);
}

.page-enhancement-copy {
  padding: 32px;
}

.page-enhancement-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.page-enhancement-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
}

.page-enhancement-panel strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.page-enhancement-cards {
  margin-top: 18px;
}

.related-section {
  background:
    linear-gradient(90deg, rgba(255, 107, 26, 0.07), transparent 42%),
    linear-gradient(180deg, var(--wash), #fff);
  border-block: 1px solid var(--line);
}

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

.related-card {
  display: block;
  min-height: 188px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(19, 184, 166, 0.06), transparent 42%),
    linear-gradient(315deg, rgba(255, 107, 26, 0.06), #fff 66%);
  box-shadow: 0 14px 34px rgba(17, 20, 15, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.related-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.related-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.outcome-grid article,
.workflow-grid article,
.step-grid article,
.timeline article,
.feature-detail-card,
.sync-grid article {
  padding: 24px;
}

.outcome-grid article {
  min-height: 238px;
}

.workflow-grid article,
.step-grid article,
.timeline article {
  min-height: 214px;
}

.workflow-grid span,
.step-grid span,
.timeline span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--orange);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 13px;
  font-weight: 900;
}

.timeline article {
  position: relative;
}

.timeline article::after {
  content: "";
  position: absolute;
  top: 33px;
  right: -17px;
  width: 18px;
  height: 2px;
  background: var(--orange);
}

.timeline article:last-child::after {
  display: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.tag.orange {
  background: var(--orange-100);
  color: var(--orange-700);
}

.tag.lime {
  background: var(--lime-soft);
  color: #3f5700;
}

.tag.green {
  background: var(--green-soft);
  color: #166534;
}

.tag.teal {
  background: var(--teal-soft);
  color: #0f766e;
}

.tag.blue {
  background: var(--blue-soft);
  color: #1d4ed8;
}

.tag.violet {
  background: var(--violet-soft);
  color: #6d28d9;
}

.tag.slate {
  background: #e2e8f0;
  color: #334155;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.35fr);
  gap: 24px;
  align-items: stretch;
}

.tour-copy {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.tour-tabs {
  display: grid;
  gap: 10px;
}

.tour-tab {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink-2);
  font-weight: 900;
  text-align: left;
  box-shadow: 0 10px 24px rgba(17, 20, 15, 0.04);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.tour-tab span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--wash);
  color: var(--muted);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 12px;
}

.tour-tab:hover,
.tour-tab.is-active {
  border-color: var(--orange);
  background:
    linear-gradient(90deg, var(--orange-50), rgba(220, 250, 246, 0.68));
  color: var(--ink);
  transform: translateX(3px);
}

.tour-tab.is-active span {
  background: var(--orange);
  color: #fff;
}

.tour-tab.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform-origin: left;
  animation: tour-progress 5.6s linear infinite;
}

.tour-notes {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--lime-soft), transparent 58%),
    linear-gradient(315deg, var(--teal-soft), #fff 66%);
}

.tour-notes p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.tour-stage {
  min-width: 0;
  align-self: stretch;
}

.tour-panel img {
  width: 100%;
}

.tour-panel.is-active {
  animation: panel-in 460ms ease both;
}

.feature-list-section {
  background:
    linear-gradient(90deg, rgba(255, 107, 26, 0.08), transparent 36%),
    linear-gradient(115deg, transparent 50%, rgba(19, 184, 166, 0.11)),
    linear-gradient(180deg, var(--canvas), #fff);
  border-bottom: 1px solid var(--line);
}

.home-feature-section,
.feature-overview-page .feature-list-section {
  background:
    radial-gradient(circle at 86% 18%, rgba(19, 184, 166, 0.23), transparent 29%),
    radial-gradient(circle at 16% 82%, rgba(255, 107, 26, 0.2), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, #11140f, #171d15);
  color: #fff;
  border-block: 1px solid var(--line-dark);
}

.home-feature-section .section-head h2,
.feature-overview-page .feature-list-section .section-head h2 {
  color: #fff;
}

.home-feature-section .section-head p:not(.eyebrow),
.feature-overview-page .feature-list-section .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.home-feature-section .eyebrow,
.feature-overview-page .feature-list-section .eyebrow,
.operator-section .eyebrow {
  color: var(--lime);
}

.home-feature-section .feature-row,
.feature-overview-page .feature-list-section .feature-row {
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--ink);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.22);
}

.feature-list {
  display: grid;
  gap: 46px;
}

.home-feature-list {
  gap: 34px;
}

.home-feature-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.operator-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 26px;
  align-items: stretch;
  margin-top: 34px;
}

.operator-panel {
  display: grid;
  gap: 12px;
}

.operator-panel article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.08), transparent 48%),
    linear-gradient(315deg, rgba(19, 184, 166, 0.08), #fff 68%);
  box-shadow: 0 14px 32px rgba(17, 20, 15, 0.06);
}

.operator-section .operator-panel article {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.17), transparent 52%),
    linear-gradient(315deg, rgba(19, 184, 166, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.operator-panel span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange);
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.operator-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.operator-section .operator-panel span {
  color: var(--lime);
}

.operator-section .operator-panel h3 {
  color: #fff;
}

.operator-section .operator-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.operator-screen {
  align-self: center;
}

.lifecycle-steps article {
  position: relative;
  overflow: hidden;
  animation: lifecycle-card 16s infinite;
}

.lifecycle-steps article:nth-child(2) {
  animation-delay: 4s;
}

.lifecycle-steps article:nth-child(3) {
  animation-delay: 8s;
}

.lifecycle-steps article:nth-child(4) {
  animation-delay: 12s;
}

.lifecycle-steps article::after {
  content: "";
  position: absolute;
  inset: auto 20px 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--teal), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  animation: lifecycle-card-progress 16s infinite;
}

.lifecycle-steps article:nth-child(2)::after {
  animation-delay: 4s;
}

.lifecycle-steps article:nth-child(3)::after {
  animation-delay: 8s;
}

.lifecycle-steps article:nth-child(4)::after {
  animation-delay: 12s;
}

.lifecycle-screen {
  overflow: hidden;
}

.lifecycle-stage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #fff;
}

.lifecycle-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  opacity: 0;
  transform: scale(1.015);
  animation: lifecycle-screen-cycle 16s infinite;
}

.lifecycle-stage img:nth-child(2) {
  animation-delay: 4s;
}

.lifecycle-stage img:nth-child(3) {
  animation-delay: 8s;
}

.lifecycle-stage img:nth-child(4) {
  animation-delay: 12s;
}

.lifecycle-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 12px;
}

.lifecycle-progress i {
  position: relative;
  overflow: hidden;
  height: 5px;
  border-radius: 999px;
  background: var(--wash);
}

.lifecycle-progress i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  animation: lifecycle-card-progress 16s infinite;
}

.lifecycle-progress i:nth-child(2)::after {
  animation-delay: 4s;
}

.lifecycle-progress i:nth-child(3)::after {
  animation-delay: 8s;
}

.lifecycle-progress i:nth-child(4)::after {
  animation-delay: 12s;
}

.feature-row {
  --row-accent: var(--orange);
  --row-soft: var(--orange-50);
  display: grid;
  grid-template-columns: minmax(390px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--row-accent) 12%, transparent), transparent 42%),
    linear-gradient(315deg, rgba(19, 184, 166, 0.1), transparent 46%),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.feature-row:nth-child(even) {
  --row-accent: var(--teal);
  --row-soft: var(--teal-soft);
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  background:
    linear-gradient(135deg, rgba(19, 184, 166, 0.1), transparent 44%),
    linear-gradient(315deg, rgba(185, 255, 24, 0.13), transparent 40%),
    var(--paper);
}

.feature-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 107, 26, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--orange-50), #fff 52%),
    linear-gradient(315deg, var(--lime-soft), transparent 48%);
  color: var(--ink);
  box-shadow: 0 22px 44px rgba(17, 20, 15, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-visual::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 255, 24, 0.7), transparent 66%);
  pointer-events: none;
}

.feature-visual:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.feature-visual.accent-teal {
  border-color: rgba(19, 184, 166, 0.32);
  background:
    linear-gradient(135deg, var(--teal-soft), #fff 54%),
    linear-gradient(315deg, var(--lime-soft), transparent 50%);
}

.feature-visual.accent-blue {
  border-color: rgba(49, 87, 255, 0.28);
  background:
    linear-gradient(135deg, var(--blue-soft), #fff 52%),
    linear-gradient(315deg, var(--orange-50), transparent 50%);
}

.feature-visual.accent-lime {
  border-color: rgba(185, 255, 24, 0.58);
  background:
    linear-gradient(135deg, var(--lime-soft), #fff 50%),
    linear-gradient(315deg, var(--teal-soft), transparent 50%);
}

.feature-visual.accent-violet {
  border-color: rgba(124, 58, 237, 0.28);
  background:
    linear-gradient(135deg, var(--violet-soft), #fff 52%),
    linear-gradient(315deg, var(--orange-50), transparent 48%);
}

.feature-visual.accent-green {
  border-color: rgba(35, 196, 99, 0.3);
  background:
    linear-gradient(135deg, var(--green-soft), #fff 52%),
    linear-gradient(315deg, var(--lime-soft), transparent 48%);
}

.feature-copy {
  max-width: 620px;
}

.feature-kicker {
  width: fit-content;
  margin: 0 0 14px;
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--row-accent) 42%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--row-soft) 86%, #fff);
  color: var(--row-accent);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-copy h2 span {
  display: block;
  color: var(--row-accent);
}

.feature-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.feature-points {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--ink-2);
  font-weight: 720;
  list-style: none;
}

.feature-points li {
  position: relative;
  min-height: 28px;
  padding-left: 40px;
}

.feature-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--row-accent) 16%, var(--lime-soft));
}

.feature-points li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

.feature-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(17, 20, 15, 0.12);
}

.feature-window img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
}

.feature-stats,
.feature-searches {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

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

.feature-stats span,
.feature-searches span {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(221, 229, 216, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.feature-stats strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.feature-searches span {
  position: relative;
  padding-left: 36px;
  color: var(--ink-2);
}

.feature-searches span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  transform: translateY(-50%);
}

.feature-story-section {
  --story-accent: var(--orange);
  --story-soft: var(--orange-50);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--story-accent) 11%, transparent), transparent 40%),
    linear-gradient(115deg, transparent 46%, rgba(185, 255, 24, 0.13)),
    linear-gradient(180deg, #fff, var(--wash));
  border-bottom: 1px solid var(--line);
}

.feature-page .feature-story-section {
  background:
    radial-gradient(circle at 84% 18%, color-mix(in srgb, var(--story-accent) 24%, transparent), transparent 30%),
    radial-gradient(circle at 16% 78%, rgba(255, 107, 26, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 86px),
    linear-gradient(180deg, var(--night), #171d15);
  color: #fff;
  border-bottom-color: var(--line-dark);
}

.feature-story-teal {
  --story-accent: var(--teal);
  --story-soft: var(--teal-soft);
}

.feature-story-blue {
  --story-accent: var(--blue);
  --story-soft: var(--blue-soft);
}

.feature-story-lime {
  --story-accent: var(--green);
  --story-soft: var(--lime-soft);
}

.feature-story-green {
  --story-accent: var(--green);
  --story-soft: var(--green-soft);
}

.feature-story-violet {
  --story-accent: var(--violet);
  --story-soft: var(--violet-soft);
}

.feature-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.feature-story::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 48px;
  height: 220px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 20%, var(--story-accent) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 38%, var(--line) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 56%, var(--line) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 74%, var(--line) 0 5px, transparent 6px),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(17, 20, 15, 0.08);
  transform: translateY(-50%);
  pointer-events: none;
}

.feature-page .feature-story::after {
  border-color: var(--line-dark);
  background:
    radial-gradient(circle at 50% 20%, var(--story-accent) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 56%, rgba(255, 255, 255, 0.28) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 74%, rgba(255, 255, 255, 0.28) 0 5px, transparent 6px),
    rgba(255, 255, 255, 0.08);
}

.feature-story-visual {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--story-accent) 34%, var(--line));
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-story-visual:hover {
  border-color: var(--story-accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

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

.feature-story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.feature-story-metrics span {
  min-width: 0;
  padding: 14px 15px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

.feature-story-metrics strong {
  display: block;
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

.feature-story-copy {
  max-width: 720px;
}

.feature-story-pill {
  width: fit-content;
  margin: 0 0 24px;
  padding: 8px 13px;
  border: 1px solid color-mix(in srgb, var(--story-accent) 40%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--story-soft) 86%, #fff);
  color: var(--story-accent);
  font-size: 13px;
  font-weight: 950;
}

.feature-page .feature-story-pill {
  border-color: color-mix(in srgb, var(--story-accent) 46%, rgba(255, 255, 255, 0.18));
  background: rgba(255, 255, 255, 0.08);
}

.feature-page .feature-story .btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.feature-story-copy h2 {
  max-width: 720px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.96;
}

.feature-page .feature-story-copy h2 {
  color: #fff;
}

.feature-story-copy h2 span {
  display: block;
  color: var(--story-accent);
}

.feature-story-copy > p:not(.feature-story-pill) {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: 20px;
  line-height: 1.5;
}

.feature-page .feature-story-copy > p:not(.feature-story-pill),
.feature-page .story-checks li {
  color: rgba(255, 255, 255, 0.74);
}

.story-checks {
  display: grid;
  gap: 15px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.story-checks li {
  position: relative;
  min-height: 30px;
  padding-left: 44px;
  color: var(--ink-2);
  font-size: 17px;
  font-weight: 820;
}

.story-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--story-accent) 17%, var(--lime-soft));
}

.feature-page .story-checks li::before {
  background: color-mix(in srgb, var(--story-accent) 28%, rgba(255, 255, 255, 0.1));
}

.story-checks li::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 8px;
  height: 14px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--orange-700);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.mini-ui {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.mini-ui strong {
  color: var(--ink);
  font-size: 18px;
}

.mini-ui span {
  position: relative;
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: var(--wash);
}

.mini-ui span::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 72%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--teal));
}

.verifier-ui span::after {
  background: linear-gradient(90deg, var(--teal), var(--lime));
}

.signal-list {
  display: grid;
  gap: 12px;
}

.signal-list span {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px 0 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-2);
  font-weight: 850;
}

.signal-list span::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--orange), var(--teal));
}

.signal-list.checks span::before {
  width: 13px;
  height: 8px;
  border-right: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  border-radius: 0;
  background: none;
  transform: translateY(-2px) rotate(45deg);
}

.compare-slab {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 1.08fr);
  gap: 48px;
  align-items: center;
}

.compare-slab p {
  font-size: 18px;
}

.mini-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mini-compare div {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.mini-compare div + div {
  background: var(--orange-50);
  border-left: 1px solid var(--line);
}

.mini-compare strong {
  font-size: 22px;
}

.mini-compare span {
  color: var(--ink-2);
  font-size: 15px;
}

.price-card {
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.price-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.pricing-grid.compact .price-card {
  min-height: 318px;
}

.price-card.featured {
  border-color: var(--orange);
  background:
    linear-gradient(180deg, var(--orange-50), #fff 60%);
  box-shadow: var(--shadow-soft);
}

.plan {
  margin: 0;
  color: var(--orange-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.price-card h2,
.price-card h3 {
  font-size: 56px;
  line-height: 0.96;
}

.price-card h2 span,
.price-card h3 span {
  color: var(--muted);
  font-size: 18px;
}

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

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink-2);
}

.check-list li {
  position: relative;
  padding-left: 20px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--orange);
}

.calculator {
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.comparison-section .calculator {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.calculator label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.comparison-section .calculator label {
  color: rgba(255, 255, 255, 0.68);
}

.calculator input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--wash);
}

.calc-result {
  padding: 18px;
  border-radius: 8px;
  background: var(--wash);
}

.comparison-section .calc-result {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.calc-result span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.comparison-section .calc-result span {
  color: var(--muted);
}

.calc-result strong {
  display: block;
  margin-top: 6px;
  font-size: 34px;
  line-height: 1;
}

.comparison-section .calc-result strong {
  color: var(--ink);
}

.calc-result.highlight {
  background: var(--lime-soft);
}

.calc-result.highlight strong {
  color: #426000;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.compare-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  background: var(--wash);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compare-table td {
  color: var(--ink-2);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table tbody tr {
  transition: background 160ms ease;
}

.compare-table tbody tr:hover {
  background: rgba(19, 184, 166, 0.05);
}

.compare-table td:first-child {
  color: var(--ink);
  font-weight: 850;
}

.compare-table th:last-child,
.compare-table td:last-child {
  background: var(--orange-50);
}

.product-band .screen-frame {
  box-shadow: var(--shadow-soft);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-list.large {
  margin-top: 0;
}

.faq-list details {
  padding: 0 20px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(255, 107, 26, 0.34);
  box-shadow: 0 12px 28px rgba(17, 20, 15, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
}

.faq-list p {
  margin: 0 0 20px;
  max-width: 880px;
}

.final-cta {
  padding: 94px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 107, 26, 0.13), transparent 46%),
    linear-gradient(180deg, #fff, var(--wash));
}

.final-cta h2 {
  max-width: 860px;
}

.final-inner p {
  max-width: 640px;
  margin: 16px 0 0;
  font-size: 18px;
}

.sticky-buy {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 50;
  width: min(520px, calc(100% - 24px));
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 12px 11px 18px;
  border: 1px solid rgba(255, 107, 26, 0.38);
  border-radius: 8px;
  background: rgba(16, 19, 14, 0.94);
  color: #fff;
  box-shadow: 0 22px 56px rgba(17, 20, 15, 0.28);
  transform: translate(-50%, 110px);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
  backdrop-filter: blur(18px);
}

.sticky-buy.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.sticky-buy div {
  display: grid;
  gap: 2px;
}

.sticky-buy span {
  color: #d5dfcf;
  font-size: 13px;
}

.sticky-buy .btn {
  min-height: 44px;
  padding-inline: 18px;
}

.footer {
  padding: 28px 0 26px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 107, 26, 0.08), transparent 42%),
    linear-gradient(180deg, var(--paper), var(--wash));
}

.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-inner {
  justify-content: space-between;
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--orange);
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 540ms ease, transform 540ms ease;
}

html.reveal-ready .feature-row[data-reveal]:nth-child(2n).is-visible,
html.reveal-ready .outcome-grid [data-reveal]:nth-child(2).is-visible,
html.reveal-ready .workflow-grid [data-reveal]:nth-child(2).is-visible,
html.reveal-ready .step-grid [data-reveal]:nth-child(2).is-visible,
html.reveal-ready .timeline [data-reveal]:nth-child(2).is-visible {
  transition-delay: 80ms;
}

html.reveal-ready .feature-row[data-reveal]:nth-child(3n).is-visible,
html.reveal-ready .outcome-grid [data-reveal]:nth-child(3).is-visible,
html.reveal-ready .workflow-grid [data-reveal]:nth-child(3).is-visible,
html.reveal-ready .step-grid [data-reveal]:nth-child(3).is-visible,
html.reveal-ready .timeline [data-reveal]:nth-child(3).is-visible {
  transition-delay: 140ms;
}

@keyframes float-screen {
  0%,
  100% {
    transform: perspective(1600px) rotateX(2deg) rotateY(-4deg) translateY(0);
  }

  50% {
    transform: perspective(1600px) rotateX(2deg) rotateY(-4deg) translateY(-8px);
  }
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes tour-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes command-cycle {
  0%,
  20% {
    opacity: 1;
    transform: translateX(0);
  }

  25%,
  100% {
    opacity: 0;
    transform: translateX(-16px);
  }
}

@keyframes signal-slide {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 72px 0, 0 0;
  }
}

@keyframes lifecycle-screen-cycle {
  0%,
  20% {
    opacity: 1;
    transform: scale(1);
  }

  25%,
  100% {
    opacity: 0;
    transform: scale(1.015);
  }
}

@keyframes lifecycle-card {
  0%,
  20% {
    border-color: rgba(255, 107, 26, 0.42);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
  }

  25%,
  100% {
    border-color: var(--line);
    box-shadow: 0 14px 32px rgba(17, 20, 15, 0.06);
    transform: translateY(0);
  }
}

@keyframes lifecycle-card-progress {
  0% {
    transform: scaleX(0);
  }

  20% {
    transform: scaleX(1);
  }

  25%,
  100% {
    transform: scaleX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-nav,
  .sticky-buy,
  .hero-product,
  .screen-frame,
  .screen-frame:hover,
  .btn,
  .btn:hover,
  .feature-detail-card,
  .feature-detail-card:hover,
  .feature-visual,
  .feature-visual:hover,
  .feature-story-visual,
  .feature-story-visual:hover,
  .price-card,
  .price-card:hover,
  .related-card,
  .related-card:hover,
  .tour-panel.is-active,
  .tour-tab,
  .tour-tab:hover,
  .tour-tab.is-active,
  .tour-tab.is-active::after,
  html.reveal-ready [data-reveal],
  html.reveal-ready [data-reveal].is-visible {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
  }

  .command-slide,
  .command-wave,
  .lifecycle-stage img,
  .lifecycle-steps article,
  .lifecycle-steps article::after,
  .lifecycle-progress i::after {
    animation: none;
  }

  .command-slide {
    opacity: 0;
    transform: none;
  }

  .command-slide:first-child {
    opacity: 1;
  }

  .lifecycle-stage img {
    opacity: 0;
    transform: none;
  }

  .lifecycle-stage img:first-child {
    opacity: 1;
  }

  .lifecycle-steps article:first-child {
    border-color: rgba(255, 107, 26, 0.42);
    box-shadow: var(--shadow-soft);
  }
}

@media (max-width: 1000px) {
  .top-ribbon {
    flex-wrap: wrap;
  }

  .site-nav {
    position: relative;
    inset: auto;
    width: min(100% - 20px, var(--max));
    margin: 10px auto 0;
    min-height: 0;
    gap: 10px;
    padding: 10px;
  }

  .site-nav.is-scrolled,
  body:not(.home-page) .site-nav {
    inset: auto;
  }

  .nav-menu-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .nav-cta {
    order: 3;
    margin-left: 0;
  }

  .auth-controls {
    order: 5;
    width: 100%;
    display: none;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 8px;
    margin-left: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-nav.is-open .auth-controls {
    display: flex;
  }

  .site-nav.is-scrolled .auth-controls,
  body:not(.home-page) .auth-controls {
    border-top-color: var(--line);
  }

  .auth-btn {
    flex: 1 1 120px;
    min-height: 40px;
  }

  .auth-user-slot {
    min-height: 40px;
    justify-content: start;
  }

  .auth-status {
    width: 100%;
  }

  .nav-links {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-nav.is-open .nav-links {
    display: flex;
  }

  .site-nav.is-scrolled .nav-links {
    border-top-color: var(--line);
  }

  .nav-links a,
  .nav-group-trigger {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 11px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-scrolled .nav-links a,
  .site-nav.is-scrolled .nav-group-trigger {
    background: var(--wash);
  }

  .nav-group {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .nav-group-panel {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 240px;
    overflow: auto;
    margin-top: 8px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-group-link {
    min-height: 38px;
    white-space: normal;
  }

  .site-nav.is-scrolled .nav-group-panel {
    background: var(--paper);
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero,
  .page-hero {
    padding-top: 86px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .proof-strip,
  .hero-value-grid,
  .hero-metrics,
  .home-page .hero-stack,
  .outcome-grid,
  .workflow-grid,
  .pricing-grid,
  .step-grid,
  .feature-detail-grid,
  .sync-grid,
  .split-head,
  .compare-slab,
  .mini-compare,
  .page-enhancement,
  .related-grid,
  .operator-layout,
  .tour-layout,
  .feature-story,
  .feature-row,
  .feature-row:nth-child(even),
  .timeline {
    grid-template-columns: 1fr;
  }

  .feature-row {
    gap: 24px;
  }

  .feature-story::after {
    display: none;
  }

  .home-page .hero-stack {
    gap: 40px;
  }

  .home-page .hero-product {
    margin-inline: auto;
  }

  .command-band-inner {
    grid-template-columns: 1fr;
  }

  .command-band-copy {
    max-width: 820px;
  }

  .page-enhancement-copy,
  .page-enhancement-panel {
    padding: 24px;
  }

  .timeline article::after {
    display: none;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .tour-copy {
    position: static;
  }

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

  .feature-visual {
    min-height: 240px;
  }

  .command-shell {
    min-height: 590px;
  }

  .feature-story-copy {
    max-width: none;
  }

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

  .mini-compare div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .section-inner,
  .proof-strip {
    width: min(100% - 24px, var(--max));
  }

  .top-ribbon {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    padding: 8px 12px;
    text-align: left;
  }

  .top-ribbon strong {
    min-width: 0;
  }

  .site-nav {
    position: relative;
    inset: auto;
    width: min(100% - 20px, var(--max));
    margin: 10px auto 0;
    min-height: 58px;
    padding: 10px;
  }

  .site-nav.is-scrolled,
  body:not(.home-page) .site-nav {
    inset: auto;
  }

  .brand > span:last-child {
    max-width: 138px;
    overflow: hidden;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .auth-btn {
    flex-basis: 100%;
  }

  .auth-user-slot {
    width: 100%;
  }

  .nav-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-group-trigger {
    padding-top: 0;
  }

  .nav-group-link {
    white-space: normal;
  }

  .home-hero,
  .page-hero {
    padding-top: 56px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-offer-copy h1 {
    font-size: 50px;
    line-height: 0.94;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-sub {
    font-size: 18px;
    line-height: 1.45;
  }

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

  .trust-row span {
    font-size: 12px;
  }

  .hero-metrics span {
    min-height: 74px;
    padding: 14px;
  }

  .hero-product {
    transform: none;
    animation: none;
  }

  .command-shell {
    grid-template-columns: 1fr;
    min-height: 680px;
    padding: 16px;
  }

  .command-rail {
    display: flex;
    align-content: stretch;
    overflow-x: auto;
  }

  .command-rail span {
    min-width: 104px;
    min-height: 54px;
  }

  .command-stage {
    min-height: 500px;
  }

  .command-slide {
    gap: 12px;
    padding: 18px;
  }

  .command-slide h3 {
    font-size: 25px;
  }

  .command-shot img {
    aspect-ratio: 16 / 9;
  }

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

  .command-kpis span {
    min-height: 78px;
    padding: 10px;
    font-size: 11px;
  }

  .command-kpis strong {
    font-size: 24px;
  }

  .command-table span {
    min-height: 36px;
    padding-inline: 9px;
    font-size: 11px;
  }

  .command-wave {
    height: 42px;
  }

  .hero-badge {
    max-width: 100%;
  }

  .hero-value-grid span {
    min-height: 78px;
  }

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

  .outcome-grid article,
  .workflow-grid article,
  .step-grid article,
  .timeline article,
  .feature-detail-card,
  .sync-grid article,
  .feature-row,
  .feature-visual,
  .price-card,
  .calculator {
    padding: 20px;
  }

  .feature-story-copy h2 {
    font-size: 40px;
  }

  .feature-story-copy > p:not(.feature-story-pill),
  .feature-copy p {
    font-size: 17px;
  }

  .feature-stats span,
  .feature-searches span,
  .feature-story-metrics span {
    padding: 10px;
    font-size: 11px;
  }

  .feature-stats strong,
  .feature-story-metrics strong {
    font-size: 20px;
  }

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

  .page-enhancement-copy,
  .page-enhancement-panel,
  .related-card {
    padding: 20px;
  }

  .price-card h2,
  .price-card h3 {
    font-size: 44px;
  }

  .sticky-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .sticky-buy .btn {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .top-ribbon {
    grid-template-columns: 1fr auto;
  }

  .top-ribbon span {
    order: 1;
    width: fit-content;
  }

  .top-ribbon a {
    order: 2;
    justify-self: end;
  }

  .top-ribbon strong {
    order: 3;
    grid-column: 1 / -1;
  }

  .brand > span:last-child {
    max-width: 118px;
  }

  .nav-cta {
    min-height: 36px;
    padding-inline: 9px;
    font-size: 12px;
  }
}

/* Professional no-gradient design layer */
:root {
  --ink: #111827;
  --ink-2: #334155;
  --muted: #64748b;
  --paper: #ffffff;
  --canvas: #f7f8fb;
  --cream: #f3f5f7;
  --wash: #f1f5f9;
  --night: #111827;
  --night-2: #1f2937;
  --orange: #f15a24;
  --orange-50: #fff3ed;
  --orange-100: #ffd9c7;
  --orange-700: #b64016;
  --lime: #d7f15f;
  --lime-soft: #f2f8d9;
  --green: #16a34a;
  --green-soft: #e8f7ee;
  --teal: #0f9f90;
  --teal-soft: #e3f5f3;
  --blue: #2563eb;
  --blue-soft: #e8efff;
  --violet: #6d5dfc;
  --violet-soft: #f0eeff;
  --line: #d9e2ea;
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 16px 34px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  background-image: none !important;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.scroll-progress {
  background-color: var(--orange);
}

.top-ribbon {
  background: var(--night);
  color: #fff;
}

.top-ribbon span {
  background: rgba(255, 255, 255, 0.1);
}

.site-nav {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(17, 24, 39, 0.94);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.2);
}

.site-nav.is-scrolled,
body:not(.home-page) .site-nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.brand-mark,
.btn-primary,
.auth-btn,
.tour-tab.is-active span,
.nav-cta {
  background: var(--orange);
  color: #fff;
}

.nav-cta {
  box-shadow: 0 12px 28px rgba(241, 90, 36, 0.22);
}

.nav-group-panel {
  background: #121a2a;
}

.site-nav.is-scrolled .nav-group-panel,
body:not(.home-page) .nav-group-panel {
  background: #fff;
}

.nav-group-link:hover,
.nav-group-link.active,
code {
  background: var(--orange-50);
  color: var(--orange-700);
}

.hero,
.feature-overview-page .page-hero,
.feature-page .page-hero,
.home-feature-section,
.feature-overview-page .feature-list-section,
.operator-section,
.comparison-section,
.command-band,
.feature-page .feature-story-section {
  border-color: var(--line-dark);
  background: var(--night);
  color: #fff;
}

.page-hero,
.showcase-section,
.workflow-section,
.feature-list-section,
.faq-preview,
.page-enhancement-section,
.related-section,
.feature-story-section,
.final-cta {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.home-feature-section,
.feature-overview-page .feature-list-section {
  border-color: var(--line-dark);
  background: var(--night);
  color: #fff;
}

.problem-section,
.pricing-preview {
  background: var(--canvas);
}

.faq-preview,
.workflow-section,
.related-section,
.footer {
  background: var(--wash);
}

.footer {
  color: var(--ink-2);
}

.hero .eyebrow,
.feature-overview-page .page-hero .eyebrow,
.feature-page .page-hero .eyebrow,
.home-feature-section .eyebrow,
.feature-overview-page .feature-list-section .eyebrow,
.operator-section .eyebrow,
.command-band-copy .eyebrow {
  color: var(--orange);
}

.hero-badge {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.hero-value-grid span,
.feature-overview-page .hero-metrics span,
.feature-page .hero-metrics span,
.command-rail span,
.command-kpis span,
.feature-story-copy .btn-secondary,
.feature-story-metrics span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
}

.hero-metrics span,
.feature-detail-card,
.page-enhancement-copy,
.page-enhancement-panel,
.related-card,
.tour-notes,
.feature-row,
.feature-visual,
.feature-story-visual,
.price-card,
.calculator,
.mini-compare,
.outcome-grid article,
.workflow-grid article,
.step-grid article,
.timeline article,
.sync-grid article,
.faq-list details,
.compare-table-wrap,
.proof-strip,
.hero-product,
.screen-frame {
  background: #fff;
}

.feature-row:nth-child(even) {
  background: #fff;
}

.feature-visual.accent-teal {
  background: var(--teal-soft);
}

.feature-visual.accent-blue {
  background: var(--blue-soft);
}

.feature-visual.accent-lime {
  background: var(--lime-soft);
}

.feature-visual.accent-violet {
  background: var(--violet-soft);
}

.feature-visual.accent-green {
  background: var(--green-soft);
}

.feature-visual::after,
.command-shell::before,
.feature-story::after {
  display: none;
}

.hero-command,
.command-shell,
.command-screen,
.lifecycle-screen {
  background: #111827;
  color: #fff;
}

.command-topbar,
.screen-bar {
  background: #f8fafc;
}

.command-slide,
.command-shot,
.lifecycle-stage {
  background: #fff;
  color: var(--ink);
}

.command-wave {
  background: rgba(15, 159, 144, 0.14);
}

.trust-row span,
.hero .btn-secondary,
.feature-overview-page .page-hero .btn-secondary,
.feature-page .page-hero .btn-secondary,
.command-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-secondary,
.auth-btn.secondary {
  background: #fff;
  color: var(--ink);
}

.home-page .site-nav:not(.is-scrolled) .auth-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.feature-copy h2 span {
  color: var(--row-accent);
  background: none !important;
}

.feature-searches span::before,
.tour-tab.is-active::after,
.lifecycle-steps article::after,
.lifecycle-progress i::after,
.feature-story-metrics::before,
.compare-table td:last-child,
.compare-table th:last-child {
  background-color: var(--orange);
}

.feature-searches span::before,
.tour-tab.is-active::after,
.lifecycle-steps article::after,
.lifecycle-progress i::after {
  background: var(--orange);
}

.compare-table td:last-child,
.compare-table th:last-child,
.mini-compare div + div {
  background: var(--orange-50);
}

.price-card.featured {
  border-color: rgba(241, 90, 36, 0.38);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.sticky-buy {
  background: rgba(17, 24, 39, 0.96);
}

@media (max-width: 1000px) {
  .nav-menu-toggle {
    background: rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-scrolled .nav-menu-toggle,
  body:not(.home-page) .nav-menu-toggle {
    background: var(--wash);
  }
}

/* Stitch-inspired Luminous Precision layer */
:root {
  --ink: #0c1110;
  --ink-2: #26312f;
  --muted: #687572;
  --paper: #ffffff;
  --canvas: #f8fbf7;
  --cream: #f5f8f1;
  --wash: #eef5f2;
  --night: #0c1110;
  --night-2: #17201d;
  --orange: #f15a24;
  --orange-50: #fff2eb;
  --orange-100: #ffd9c7;
  --orange-700: #af3f14;
  --lime: #c7ff00;
  --lime-soft: #efffbd;
  --green: #14a667;
  --green-soft: #e3f8ec;
  --teal: #22c8b6;
  --teal-soft: #dcfaf4;
  --blue: #5c7cff;
  --blue-soft: #edf2ff;
  --violet: #9f8cff;
  --violet-soft: #f0edff;
  --line: rgba(17, 33, 29, 0.13);
  --line-dark: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --shadow: 0 34px 90px rgba(24, 42, 38, 0.16);
  --shadow-soft: 0 18px 44px rgba(24, 42, 38, 0.1);
}

body {
  background:
    linear-gradient(115deg, rgba(199, 255, 0, 0.12), transparent 22%),
    linear-gradient(72deg, rgba(34, 200, 182, 0.15), transparent 36%),
    linear-gradient(105deg, transparent 42%, rgba(159, 140, 255, 0.16) 64%, transparent 86%),
    var(--canvas);
  color: var(--ink);
}

.top-ribbon {
  background: var(--lime) !important;
  color: var(--ink) !important;
}

.top-ribbon span {
  background: rgba(12, 17, 16, 0.1) !important;
}

.site-nav {
  border-color: rgba(12, 17, 16, 0.12);
  background: rgba(255, 255, 255, 0.72) !important;
  color: var(--ink) !important;
  box-shadow: 0 22px 70px rgba(31, 49, 45, 0.14);
  backdrop-filter: blur(22px) saturate(1.2);
}

.site-nav.is-scrolled,
body:not(.home-page) .site-nav {
  background: rgba(255, 255, 255, 0.88) !important;
}

.nav-group-panel {
  border-color: rgba(12, 17, 16, 0.12);
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(20px);
}

.nav-group-link {
  color: var(--ink-2);
}

.brand-mark {
  background: var(--ink) !important;
  color: var(--lime) !important;
}

.btn-primary,
.nav-cta {
  background: var(--lime) !important;
  color: var(--ink) !important;
  box-shadow: 0 18px 42px rgba(199, 255, 0, 0.35);
}

.auth-btn {
  border-color: rgba(12, 17, 16, 0.16);
  background: var(--ink) !important;
  color: #fff !important;
}

.auth-btn.secondary,
.home-page .site-nav:not(.is-scrolled) .auth-btn.secondary {
  background: rgba(255, 255, 255, 0.58) !important;
  color: var(--ink) !important;
}

.btn-secondary,
.hero .btn-secondary,
.feature-overview-page .page-hero .btn-secondary,
.feature-page .page-hero .btn-secondary {
  border-color: rgba(12, 17, 16, 0.14);
  background: rgba(255, 255, 255, 0.68) !important;
  color: var(--ink) !important;
  backdrop-filter: blur(16px);
}

.hero,
.page-hero,
.feature-overview-page .page-hero,
.feature-page .page-hero {
  border-color: rgba(12, 17, 16, 0.12);
  background:
    linear-gradient(115deg, rgba(199, 255, 0, 0.2), transparent 28%),
    linear-gradient(78deg, rgba(34, 200, 182, 0.18), transparent 42%),
    linear-gradient(105deg, transparent 40%, rgba(159, 140, 255, 0.2) 66%, transparent 88%),
    #fbfdf9 !important;
  color: var(--ink) !important;
  background-size: 160% 160%;
  animation: laminate-shift 18s ease-in-out infinite alternate;
}

.hero .eyebrow,
.page-hero .eyebrow,
.feature-overview-page .page-hero .eyebrow,
.feature-page .page-hero .eyebrow {
  color: #415200;
}

.hero-sub,
.page-hero .hero-sub,
.feature-overview-page .page-hero .hero-sub,
.feature-page .page-hero .hero-sub {
  color: var(--ink-2);
}

.hero-badge,
.trust-row span,
.hero-value-grid span,
.hero-metrics span,
.feature-overview-page .hero-metrics span,
.feature-page .hero-metrics span {
  border-color: rgba(12, 17, 16, 0.12);
  background: var(--glass) !important;
  color: var(--ink-2);
  box-shadow: 0 14px 36px rgba(24, 42, 38, 0.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

.hero-value-grid strong,
.hero-metrics strong,
.feature-overview-page .hero-metrics strong,
.feature-page .hero-metrics strong {
  color: var(--ink);
}

.hero-command,
.hero-product,
.screen-frame,
.feature-story-visual,
.feature-visual {
  border-color: rgba(12, 17, 16, 0.13);
  background: var(--glass-strong) !important;
  color: var(--ink);
  box-shadow: 0 34px 90px rgba(24, 42, 38, 0.14);
  backdrop-filter: blur(22px) saturate(1.12);
}

.command-shell,
.command-screen,
.command-slide,
.command-shot,
.lifecycle-screen,
.lifecycle-stage {
  background: rgba(255, 255, 255, 0.78) !important;
  color: var(--ink);
}

.command-rail span,
.command-kpis span,
.feature-story-metrics span {
  border-color: rgba(12, 17, 16, 0.12);
  background: rgba(255, 255, 255, 0.62) !important;
  color: var(--ink-2);
}

.command-rail span.is-active,
.lifecycle-steps article.is-active {
  border-color: rgba(65, 82, 0, 0.34);
  background: var(--lime-soft) !important;
  color: var(--ink);
}

.screen-bar,
.command-topbar {
  background: rgba(255, 255, 255, 0.74) !important;
  color: var(--muted);
}

.showcase-section,
.workflow-section,
.feature-list-section,
.faq-preview,
.page-enhancement-section,
.related-section,
.feature-story-section,
.final-cta,
.footer {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68)),
    linear-gradient(82deg, rgba(34, 200, 182, 0.12), transparent 38%),
    linear-gradient(105deg, transparent 48%, rgba(159, 140, 255, 0.12) 76%, transparent) !important;
  color: var(--ink);
}

.home-feature-section,
.feature-overview-page .feature-list-section,
.operator-section,
.comparison-section,
.command-band,
.feature-page .feature-story-section {
  border-color: var(--line-dark);
  background:
    linear-gradient(110deg, rgba(199, 255, 0, 0.08), transparent 28%),
    linear-gradient(80deg, rgba(34, 200, 182, 0.12), transparent 46%),
    var(--night) !important;
  color: #fff;
}

.final-cta {
  background:
    linear-gradient(110deg, rgba(199, 255, 0, 0.16), transparent 30%),
    linear-gradient(80deg, rgba(34, 200, 182, 0.16), transparent 46%),
    var(--night) !important;
  color: #fff;
}

.home-feature-section .eyebrow,
.feature-overview-page .feature-list-section .eyebrow,
.operator-section .eyebrow,
.command-band-copy .eyebrow,
.comparison-section .eyebrow,
.final-cta .eyebrow {
  color: var(--lime);
}

.home-feature-section .section-head h2,
.feature-overview-page .feature-list-section .section-head h2,
.operator-section h2,
.comparison-section h2,
.command-band h2,
.final-cta h2 {
  color: #fff;
}

.home-feature-section .section-head p:not(.eyebrow),
.feature-overview-page .feature-list-section .section-head p:not(.eyebrow),
.operator-section .split-head > p,
.command-band-copy p:not(.eyebrow),
.comparison-section .compare-slab p,
.final-inner p {
  color: rgba(255, 255, 255, 0.74);
}

.feature-detail-card,
.page-enhancement-copy,
.page-enhancement-panel,
.related-card,
.tour-notes,
.feature-row,
.price-card,
.calculator,
.mini-compare,
.outcome-grid article,
.workflow-grid article,
.step-grid article,
.timeline article,
.sync-grid article,
.faq-list details,
.compare-table-wrap,
.proof-strip {
  border-color: rgba(12, 17, 16, 0.12);
  background: var(--glass-strong) !important;
  box-shadow: 0 22px 58px rgba(24, 42, 38, 0.09);
  backdrop-filter: blur(18px) saturate(1.08);
}

.feature-row:nth-child(even) {
  background: rgba(255, 255, 255, 0.82) !important;
}

.feature-visual.accent-teal {
  background: rgba(220, 250, 244, 0.72) !important;
}

.feature-visual.accent-blue {
  background: rgba(237, 242, 255, 0.74) !important;
}

.feature-visual.accent-lime {
  background: rgba(239, 255, 189, 0.72) !important;
}

.feature-visual.accent-violet {
  background: rgba(240, 237, 255, 0.74) !important;
}

.feature-visual.accent-green {
  background: rgba(227, 248, 236, 0.74) !important;
}

.feature-copy h2 span {
  color: #445700;
}

.feature-kicker,
.feature-story-pill,
.tag.lime,
.status-pill {
  background: var(--lime-soft) !important;
  color: #415200;
}

.tag.teal {
  background: var(--teal-soft) !important;
  color: #087d72;
}

.tag.orange,
.tag.blue,
.tag.violet,
.tag.green {
  background: var(--wash) !important;
  color: var(--ink-2);
}

.feature-searches span::before,
.tour-tab.is-active::after,
.lifecycle-steps article::after,
.lifecycle-progress i::after {
  background: var(--lime) !important;
}

.price-card.featured {
  border-color: rgba(199, 255, 0, 0.72);
  box-shadow: 0 28px 70px rgba(65, 82, 0, 0.18);
}

.sticky-buy {
  border-color: rgba(199, 255, 0, 0.4);
  background: rgba(12, 17, 16, 0.92) !important;
  backdrop-filter: blur(18px);
}

.sticky-buy .btn {
  background: var(--lime) !important;
  color: var(--ink) !important;
}

.btn-primary,
.nav-cta,
.auth-btn,
.feature-detail-card,
.feature-row,
.feature-visual,
.price-card,
.related-card,
.tour-tab {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary:hover,
.nav-cta:hover,
.feature-detail-card:hover,
.feature-row:hover,
.feature-visual:hover,
.price-card:hover,
.related-card:hover {
  transform: translateY(-3px);
}

.btn-primary,
.nav-cta {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.nav-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: translateX(-120%);
  animation: glass-sweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes laminate-shift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes glass-sweep {
  0%,
  62% {
    transform: translateX(-120%);
  }
  82%,
  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero,
  .page-hero,
  .btn-primary::after,
  .nav-cta::after {
    animation: none !important;
  }
}

@media (max-width: 620px) {
  .command-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .command-rail span {
    width: auto;
    min-width: 0;
  }

  .compare-table-wrap {
    overflow: visible;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tr {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .compare-table tr:last-child {
    border-bottom: 0;
  }

  .compare-table td {
    padding: 10px 0;
    border-bottom: 1px solid rgba(12, 17, 16, 0.08);
  }

  .compare-table td:last-child {
    margin-top: 8px;
    padding: 12px;
    border-bottom: 0;
    border-radius: 8px;
  }

  .compare-table td::before {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .compare-table td:nth-child(1)::before {
    content: "Decision point";
  }

  .compare-table td:nth-child(2)::before {
    content: "Lead-credit tools";
  }

  .compare-table td:nth-child(3)::before {
    content: "Manual spreadsheets";
  }

  .compare-table td:nth-child(4)::before {
    content: "Leads Angel";
  }
}

/* Moonpush reference refinement: clean SaaS system with electric-lime focus */
:root {
  --ink: #191c1d;
  --ink-2: #454932;
  --muted: #5d5e61;
  --paper: #ffffff;
  --canvas: #f8f9fa;
  --cream: #f3f4f5;
  --wash: #edeeef;
  --night: #191c1d;
  --night-2: #2e3132;
  --orange: #556500;
  --orange-50: #f3ffd2;
  --orange-100: #d9ff00;
  --orange-700: #3f4c00;
  --lime: #d9ff00;
  --lime-soft: #efff9a;
  --green: #16a34a;
  --green-soft: #dcfce7;
  --teal: #556500;
  --teal-soft: #f3ffd2;
  --blue: #585f6c;
  --blue-soft: #e9efff;
  --violet: #5d5e61;
  --violet-soft: #e2e2e5;
  --line: #dfe3dc;
  --line-dark: rgba(255, 255, 255, 0.16);
  --glass: rgba(255, 255, 255, 0.82);
  --glass-strong: #ffffff;
  --shadow: 0 18px 45px rgba(25, 28, 29, 0.12);
  --shadow-soft: 0 8px 24px rgba(25, 28, 29, 0.08);
  --shadow-card: 0 2px 4px rgba(25, 28, 29, 0.04), 0 12px 32px rgba(25, 28, 29, 0.06);
  --max: 1240px;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

.scroll-progress {
  background: var(--lime);
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 4.8vw, 64px);
  line-height: 1.04;
  font-weight: 850;
}

.hero-offer-copy h1 {
  max-width: 720px;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  font-weight: 780;
}

h3 {
  font-weight: 760;
}

.top-ribbon {
  min-height: 44px;
  background: var(--lime) !important;
  color: var(--ink) !important;
}

.top-ribbon a {
  color: var(--ink);
  text-decoration-color: rgba(25, 28, 29, 0.45);
}

.site-nav {
  inset: 0 0 auto !important;
  width: 100%;
  min-height: 72px;
  margin: 0;
  padding: 14px max(18px, calc((100vw - var(--max)) / 2));
  border-width: 0 0 1px;
  border-style: solid;
  border-color: rgba(117, 121, 96, 0.2);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86) !important;
  color: var(--ink) !important;
  box-shadow: 0 2px 8px rgba(25, 28, 29, 0.04);
  backdrop-filter: blur(16px) saturate(1.05);
}

.home-page .site-nav:not(.is-scrolled) {
  inset-block-start: 44px !important;
}

.site-nav.is-scrolled,
body:not(.home-page) .site-nav {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 6px 24px rgba(25, 28, 29, 0.08);
}

.brand {
  gap: 12px;
}

.brand strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  opacity: 1;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ink) !important;
  color: var(--lime) !important;
}

.nav-links,
.nav-group-trigger {
  color: var(--muted);
  opacity: 1;
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.active,
.nav-group-trigger:hover,
.nav-group-trigger.active,
.nav-group[open] .nav-group-trigger {
  color: var(--orange);
}

.nav-links a.active {
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.nav-group-panel {
  border-color: rgba(117, 121, 96, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: var(--shadow);
}

.btn,
.nav-cta,
.auth-btn {
  border-radius: 10px;
  font-weight: 820;
}

.btn-primary,
.nav-cta,
.sticky-buy .btn {
  border-color: transparent !important;
  background: var(--lime) !important;
  color: var(--ink) !important;
  box-shadow: 0 14px 28px rgba(85, 101, 0, 0.18);
}

.btn-primary:hover,
.nav-cta:hover,
.feature-detail-card:hover,
.feature-row:hover,
.feature-visual:hover,
.price-card:hover,
.related-card:hover {
  transform: translateY(-2px);
}

.btn-secondary,
.hero .btn-secondary,
.feature-overview-page .page-hero .btn-secondary,
.feature-page .page-hero .btn-secondary,
.final-cta .btn-secondary {
  border: 1px solid rgba(117, 121, 96, 0.34);
  background: #fff !important;
  color: var(--ink) !important;
  box-shadow: none;
}

.auth-btn {
  background: var(--ink) !important;
  color: #fff !important;
}

.auth-btn.secondary,
.home-page .site-nav:not(.is-scrolled) .auth-btn.secondary {
  background: #fff !important;
  color: var(--ink) !important;
}

.hero,
.page-hero,
.feature-overview-page .page-hero,
.feature-page .page-hero {
  position: relative;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle at 78% 46%, rgba(217, 255, 0, 0.26), transparent 24%),
    radial-gradient(#d9ff00 0.5px, transparent 0.7px),
    #fff !important;
  background-size: auto, 24px 24px, auto;
  color: var(--ink) !important;
  animation: none;
}

.home-hero {
  padding-top: 178px;
}

body:not(.home-page) .page-hero,
.feature-page .page-hero,
.feature-overview-page .page-hero {
  padding-top: 152px;
}

.hero .eyebrow,
.page-hero .eyebrow,
.feature-overview-page .page-hero .eyebrow,
.feature-page .page-hero .eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(85, 101, 0, 0.42);
  animation: moonpush-pulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-badge {
  background: var(--lime) !important;
  color: var(--orange);
  text-transform: uppercase;
}

.hero-sub,
.page-hero .hero-sub,
.feature-overview-page .page-hero .hero-sub,
.feature-page .page-hero .hero-sub,
.section-head p,
.split-head > p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-value-grid span,
.hero-metrics span,
.trust-row span,
.feature-overview-page .hero-metrics span,
.feature-page .hero-metrics span {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--ink);
  box-shadow: var(--shadow-card);
}

.trust-row span {
  border-radius: 999px;
  box-shadow: none;
}

.hero-command,
.hero-product,
.screen-frame,
.feature-story-visual,
.feature-visual {
  border: 1px solid rgba(117, 121, 96, 0.22);
  border-radius: 16px;
  background: #fff !important;
  box-shadow: 0 30px 80px rgba(85, 101, 0, 0.16), 0 4px 16px rgba(25, 28, 29, 0.08);
  backdrop-filter: none;
}

.hero-product::before,
.feature-visual::before,
.screen-frame::before {
  background: radial-gradient(circle, rgba(217, 255, 0, 0.22), transparent 64%);
}

.command-shell,
.command-screen,
.command-slide,
.command-shot,
.lifecycle-screen,
.lifecycle-stage,
.feature-window,
.screen-bar,
.command-topbar {
  background: #fff !important;
  color: var(--ink);
}

.command-rail span,
.command-kpis span,
.feature-story-metrics span,
.feature-stats span,
.feature-searches span {
  border: 1px solid rgba(117, 121, 96, 0.22);
  border-radius: 10px;
  background: #fff !important;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(25, 28, 29, 0.06);
}

.command-rail span.is-active,
.lifecycle-steps article.is-active {
  border-color: rgba(85, 101, 0, 0.32);
  background: var(--lime) !important;
}

.section {
  padding: 104px 0;
}

.problem-section,
.pricing-preview,
.workflow-section,
.showcase-section,
.faq-preview,
.page-enhancement-section,
.related-section,
.feature-story-section,
.feature-list-section,
.home-feature-section,
.feature-overview-page .feature-list-section,
.operator-section,
.command-band,
.feature-page .feature-story-section,
.comparison-section,
.footer {
  border-color: var(--line);
  background: var(--canvas) !important;
  color: var(--ink);
}

.problem-section,
.feature-list-section,
.pricing-preview,
.faq-preview,
.footer {
  background: #fff !important;
}

.workflow-section,
.operator-section,
.command-band,
.comparison-section,
.feature-page .feature-story-section {
  background: var(--cream) !important;
}

.home-feature-section .eyebrow,
.feature-overview-page .feature-list-section .eyebrow,
.operator-section .eyebrow,
.command-band-copy .eyebrow,
.comparison-section .eyebrow,
.final-cta .eyebrow {
  color: var(--orange);
}

.home-feature-section .section-head h2,
.feature-overview-page .feature-list-section .section-head h2,
.operator-section h2,
.comparison-section h2,
.command-band h2 {
  color: var(--ink);
}

.home-feature-section .section-head p:not(.eyebrow),
.feature-overview-page .feature-list-section .section-head p:not(.eyebrow),
.operator-section .split-head > p,
.command-band-copy p:not(.eyebrow),
.comparison-section .compare-slab p {
  color: var(--muted);
}

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

.feature-detail-card,
.page-enhancement-copy,
.page-enhancement-panel,
.related-card,
.tour-notes,
.feature-row,
.price-card,
.calculator,
.mini-compare,
.outcome-grid article,
.workflow-grid article,
.step-grid article,
.timeline article,
.sync-grid article,
.faq-list details,
.compare-table-wrap,
.proof-strip {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff !important;
  box-shadow: var(--shadow-card);
  backdrop-filter: none;
}

.feature-row:nth-child(even) {
  background: #fff !important;
}

.feature-detail-card,
.outcome-grid article,
.workflow-grid article,
.step-grid article,
.timeline article,
.sync-grid article {
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 180ms cubic-bezier(0.4, 0, 0.2, 1), border-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-detail-card:hover,
.outcome-grid article:hover,
.workflow-grid article:hover,
.step-grid article:hover,
.timeline article:hover,
.sync-grid article:hover {
  border-color: rgba(85, 101, 0, 0.34);
  box-shadow: 0 4px 12px rgba(25, 28, 29, 0.08), 0 18px 42px rgba(25, 28, 29, 0.08);
  transform: translateY(-2px);
}

.protocol-grid .tag {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 10px;
  background: var(--lime) !important;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
}

.feature-kicker,
.feature-story-pill,
.tag.lime,
.status-pill,
.tag.teal,
.tag.orange,
.tag.blue,
.tag.violet,
.tag.green {
  background: var(--lime) !important;
  color: var(--orange);
}

.feature-copy h2 span {
  display: inline;
  padding: 0 0.08em;
  background: var(--lime) !important;
  color: var(--ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.feature-visual.accent-teal,
.feature-visual.accent-blue,
.feature-visual.accent-lime,
.feature-visual.accent-violet,
.feature-visual.accent-green {
  background:
    radial-gradient(circle at 80% 18%, rgba(217, 255, 0, 0.28), transparent 32%),
    #fff !important;
}

.calculator {
  position: relative;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
}

.calculator::before {
  content: "ROI calculator";
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--lime);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.calculator label {
  min-height: 94px;
  padding: 14px;
  border-radius: 12px;
  background: var(--canvas);
  color: var(--muted);
}

.comparison-section .calculator label {
  color: var(--muted);
}

.calculator input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.calculator input:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-color: var(--orange);
}

.calc-result,
.comparison-section .calc-result {
  min-height: 118px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}

.calc-result.highlight {
  border-color: transparent;
  background: var(--lime) !important;
}

.calc-result strong {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 850;
  letter-spacing: 0;
}

.calc-result.highlight strong {
  color: var(--ink);
}

.compare-table-wrap {
  border-radius: 16px;
  background: #fff !important;
}

.compare-table th {
  background: var(--canvas);
  color: var(--muted);
}

.compare-table th:last-child,
.compare-table td:last-child,
.mini-compare div + div {
  background: #f3ffd2;
}

.price-card.featured {
  border-color: rgba(85, 101, 0, 0.36);
  box-shadow: 0 0 0 4px rgba(217, 255, 0, 0.32), var(--shadow-card);
}

.final-cta {
  padding: 72px 0;
  background: var(--canvas) !important;
  color: #fff;
}

.final-cta .final-inner {
  position: relative;
  overflow: hidden;
  max-width: min(var(--max), calc(100% - 36px));
  padding: clamp(42px, 8vw, 104px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(#d9ff00 0.55px, transparent 0.75px),
    var(--night) !important;
  background-size: 24px 24px, auto;
  color: #fff;
  box-shadow: 0 28px 70px rgba(25, 28, 29, 0.2);
}

.final-cta h2,
.final-inner p {
  color: #fff;
}

.final-inner p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent !important;
  color: #fff !important;
}

.feature-page .feature-story-copy h2 {
  color: var(--ink) !important;
}

.feature-page .feature-story-copy h2 span {
  color: var(--green);
}

.feature-page .feature-story-copy > p:not(.feature-story-pill),
.feature-page .story-checks li {
  color: var(--muted) !important;
}

.feature-page .feature-story-pill {
  border-color: transparent;
  background: var(--lime) !important;
  color: var(--orange);
}

.feature-page .feature-story .btn-secondary {
  border-color: rgba(117, 121, 96, 0.34);
  background: #fff !important;
  color: var(--ink) !important;
}

.feature-page .feature-story::after {
  border-color: var(--line);
  background:
    radial-gradient(circle at 50% 20%, var(--lime) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 38%, var(--line) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 56%, var(--line) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 74%, var(--line) 0 5px, transparent 6px),
    rgba(255, 255, 255, 0.82);
}

.sticky-buy {
  border-color: rgba(217, 255, 0, 0.38);
  background: rgba(25, 28, 29, 0.94) !important;
}

.footer {
  border-top: 1px solid var(--line);
}

@keyframes moonpush-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(85, 101, 0, 0.32);
  }

  100% {
    box-shadow: 0 0 0 10px rgba(85, 101, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow::before {
    animation: none !important;
  }
}

@media (max-width: 1000px) {
  .site-nav,
  .home-page .site-nav:not(.is-scrolled),
  body:not(.home-page) .site-nav {
    position: relative;
    inset: auto !important;
    width: min(100% - 20px, var(--max));
    margin: 10px auto 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .home-hero,
  body:not(.home-page) .page-hero,
  .feature-page .page-hero,
  .feature-overview-page .page-hero {
    padding-top: 72px;
  }

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

@media (max-width: 620px) {
  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .top-ribbon {
    min-height: 0;
  }

  .outcome-grid.protocol-grid,
  .calculator {
    grid-template-columns: 1fr;
  }

  .calculator label {
    min-height: 0;
  }

  .final-cta .final-inner {
    width: min(100% - 24px, var(--max));
    padding: 34px 22px;
    border-radius: 18px;
  }
}

/* Lifecycle section contrast fix for the Moonpush light system */
.operator-section .operator-panel article {
  border-color: var(--line) !important;
  background: #fff !important;
  box-shadow: var(--shadow-card) !important;
}

.operator-section .operator-panel span {
  color: var(--orange) !important;
}

.operator-section .operator-panel h3 {
  color: var(--ink) !important;
}

.operator-section .operator-panel p {
  color: var(--muted) !important;
}

.operator-section .lifecycle-steps article::after {
  background: var(--lime) !important;
}

.home-hero .hero-image-only {
  padding: 0;
  background: #fff !important;
}

.home-hero .hero-image-only img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
}

/* Site logo update */
.brand {
  position: relative;
  gap: 0;
}

.brand > span:last-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.brand-mark {
  width: clamp(104px, 10vw, 124px) !important;
  height: clamp(69px, 6.6vw, 82px) !important;
  border-radius: 8px !important;
  background: #fff url("assets/leads-angel-logo.png") center / contain no-repeat !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 720px) {
  .brand-mark {
    width: 104px !important;
    height: 69px !important;
  }
}
