:root {
  color-scheme: light;
  --ink: #191917;
  --dark: #171715;
  --dark-soft: #22221f;
  --paper: #f6f4ee;
  --white: #fffefa;
  --muted: #74736d;
  --line: #e6e3dc;
  --line-dark: rgba(255, 255, 255, 0.12);
  --lime: #d9ff62;
  --lime-strong: #cffa40;
  --lime-deep: #a9d31f;
  --blue: #244df0;
  --danger: #c64531;
  --shadow: 0 24px 70px rgba(35, 33, 25, 0.13);
  --radius: 24px;
  --container: 1180px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
}

.form-error {
  margin: -2px 0 2px;
  color: var(--danger);
  font-size: 13px;
  line-height: 1.45;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--dark);
  background: var(--lime);
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section-dark {
  color: white;
  background: var(--dark);
}

.section-light {
  background: var(--white);
}

.section-paper {
  background: var(--paper);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 0;
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(217, 255, 98, 0.48);
  transition: width 0.08s linear;
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(23, 23, 21, 0.84);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 32px), 1240px);
  min-height: 58px;
  margin: auto;
  padding: 0 10px 0 16px;
  display: flex;
  align-items: center;
  gap: 34px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: rgba(31, 31, 28, 0.76);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.brand-mark,
.mini-mark {
  display: inline-block;
  color: var(--lime);
  background: transparent;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.mini-mark {
  width: 24px;
  height: 24px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: #b9b8b1;
  font-size: 13px;
  font-weight: 620;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  color: white;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 11px;
  color: white;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 0;
  border-radius: 12px;
  padding: 13px 19px;
  font-weight: 760;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button span {
  font-size: 1.1em;
}

.button-small {
  padding: 11px 15px;
  font-size: 12px;
}

.button-large {
  min-height: 56px;
  padding: 16px 23px;
  font-size: 15px;
  border-radius: 14px;
}

.button-lime {
  color: var(--dark);
  background: var(--lime);
  box-shadow: 0 10px 26px rgba(169, 211, 31, 0.14);
}

.button-lime:hover {
  background: var(--lime-strong);
  box-shadow: 0 15px 34px rgba(169, 211, 31, 0.22);
}

.button-dark {
  color: white;
  background: var(--dark);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 162px 0 38px;
  overflow: hidden;
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.075;
  background-image: linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.45) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 86%);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  width: 560px;
  height: 560px;
  top: 80px;
  right: -350px;
  background: var(--lime);
  opacity: 0.12;
  box-shadow: 0 0 130px var(--lime);
}

.hero-orb-two {
  width: 250px;
  height: 250px;
  left: -170px;
  bottom: 150px;
  border: 1px solid rgba(217, 255, 98, 0.26);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(530px, 1.12fr);
  gap: 74px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-dark {
  color: #cfcec7;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(217, 255, 98, 0.1), 0 0 14px rgba(217, 255, 98, 0.45);
}

.hero-copy h1 {
  max-width: 650px;
  margin: 28px 0 25px;
  font-size: clamp(54px, 5.25vw, 84px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero-copy h1 span {
  display: block;
  color: var(--lime);
}

.hero-lead {
  max-width: 590px;
  margin: 0;
  color: #aaa9a2;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.63;
  letter-spacing: -0.012em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d6d5ce;
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  color: var(--lime);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  color: #888780;
  list-style: none;
  font-size: 11px;
}

.trust-list span {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  border-radius: 50%;
  color: var(--dark);
  background: var(--lime);
  font-size: 9px;
  font-weight: 900;
}

.product-stage {
  position: relative;
  min-height: 515px;
  display: grid;
  place-items: center;
}

.stage-glow {
  position: absolute;
  width: 76%;
  height: 70%;
  border-radius: 50%;
  background: rgba(217, 255, 98, 0.12);
  filter: blur(70px);
}

.app-window {
  --window-x: 0deg;
  --window-y: 0deg;
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: #f8f6f0;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
  transform: perspective(1300px) rotateY(calc(-3deg + var(--window-y)))
    rotateX(calc(1.5deg + var(--window-x)));
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.window-topbar {
  height: 52px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
  background: #20201e;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.window-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #a3a29b;
  font-size: 9px;
}

.window-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(217, 255, 98, 0.6);
}

.window-dots {
  justify-self: end;
  display: flex;
  gap: 4px;
}

.window-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #77766f;
}

.app-body {
  min-height: 424px;
  display: grid;
  grid-template-columns: 148px 1fr;
}

.app-sidebar {
  padding: 18px 12px;
  color: white;
  background: #191917;
}

.ui-label {
  display: block;
  margin: 0 6px 10px;
  color: #676760;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-chip {
  margin-bottom: 6px;
  padding: 8px;
  display: grid;
  grid-template-columns: 28px 1fr 5px;
  align-items: center;
  gap: 7px;
  border-radius: 9px;
  background: #292925;
}

.site-chip.muted {
  color: #898881;
  background: transparent;
}

.site-chip b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--dark);
  background: var(--lime);
  font-size: 8px;
}

.site-chip.muted b {
  background: #e8e6de;
}

.site-chip strong,
.site-chip small {
  display: block;
  max-width: 74px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-chip strong {
  font-size: 8px;
}

.site-chip small {
  margin-top: 2px;
  color: #74736d;
  font-size: 6px;
}

.site-chip > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.add-chip {
  margin-top: 10px;
  padding: 9px;
  color: #77766f;
  border: 1px dashed #41413d;
  border-radius: 9px;
  font-size: 7px;
}

.app-chat {
  color: var(--ink);
  background: var(--paper);
}

.chat-heading {
  height: 59px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.chat-heading strong,
.chat-heading small {
  display: block;
}

.chat-heading strong {
  font-size: 10px;
}

.chat-heading small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
}

.chat-heading > span {
  color: var(--muted);
  font-size: 10px;
}

.chat-stream {
  padding: 24px 19px;
}

.chat-message {
  max-width: 78%;
  padding: 12px 13px;
  border-radius: 13px 4px 13px 13px;
  font-size: 9px;
  line-height: 1.55;
}

.user-message {
  margin-left: auto;
  color: white;
  background: var(--dark);
}

.thinking-line {
  margin: 20px 0 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.atlas-avatar {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: var(--dark);
  background: var(--lime);
  font-size: 8px;
  font-weight: 900;
}

.atlas-avatar.large {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 11px;
}

.thinking-line strong {
  font-size: 8px;
}

.typing-dots {
  display: inline-flex;
  gap: 2px;
  margin-left: 4px;
}

.typing-dots i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing 1.2s infinite;
}

.typing-dots i:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-dots i:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typing {
  50% {
    opacity: 0.25;
    transform: translateY(-2px);
  }
}

.proposal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: 0 14px 35px rgba(38, 36, 30, 0.08);
}

.proposal-head,
.change-row,
.proposal-actions {
  display: flex;
  align-items: center;
}

.proposal-head {
  justify-content: space-between;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
}

.proposal-head span {
  padding: 4px 6px;
  color: #1731a5;
  border-radius: 999px;
  background: #e9eeff;
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-head b {
  font-size: 7px;
}

.change-row {
  gap: 10px;
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
}

.change-number {
  color: var(--muted);
  font: 700 7px/1 ui-monospace, monospace;
}

.change-row div {
  flex: 1;
}

.change-row strong,
.change-row small {
  display: block;
}

.change-row strong {
  font-size: 8px;
}

.change-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
}

.check {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #476412;
  background: #eaffaa;
  font-size: 7px;
  font-weight: 900;
}

.proposal-actions {
  justify-content: space-between;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 6px;
}

.proposal-actions button {
  border: 0;
  border-radius: 7px;
  padding: 7px 9px;
  color: var(--dark);
  background: var(--lime);
  font-size: 7px;
  font-weight: 800;
}

.floating-proof {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 208px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 13px;
  background: rgba(255, 254, 250, 0.94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.proof-one {
  left: -28px;
  bottom: 16px;
}

.proof-two {
  right: -35px;
  top: 54px;
  animation-delay: -2s;
}

.proof-icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: white;
  background: var(--dark);
  font-size: 13px;
  font-weight: 800;
}

.proof-icon.lime {
  color: var(--dark);
  background: var(--lime);
}

.floating-proof strong,
.floating-proof small {
  display: block;
}

.floating-proof strong {
  font-size: 9px;
}

.floating-proof small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
}

@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}

.hero-foot {
  position: relative;
  z-index: 1;
  margin-top: 82px;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #66665f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compatibility {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #8f8e87;
  font: 700 9px/1 ui-monospace, monospace;
}

.compatibility i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
}

.signal-bar {
  overflow: hidden;
  padding: 14px 0;
  color: var(--dark);
  background: var(--lime);
}

.signal-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: marquee 52s linear infinite;
  font: 850 10px/1 ui-monospace, monospace;
  letter-spacing: 0.09em;
  will-change: transform;
}

.signal-sequence {
  min-width: 100vw;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 26px;
  padding-right: 26px;
}

.signal-sequence span {
  flex: 0 0 auto;
}

.signal-sequence i {
  flex: 0 0 auto;
  font-style: normal;
}

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

.problem,
.workflow,
.capabilities,
.control,
.built-for,
.faq {
  padding: 120px 0;
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: 80px;
  align-items: end;
}

.section-heading h2,
.control-copy h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.062em;
}

.section-heading > p,
.split-heading > p,
.control-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 18px !important;
  color: var(--lime-deep) !important;
  font-size: 10px !important;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.comparison-card.after {
  color: white;
  border-color: var(--dark);
  background: var(--dark);
}

.card-kicker {
  padding: 21px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.after .card-kicker {
  border-color: var(--line-dark);
}

.card-kicker span {
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.before .card-kicker span {
  color: var(--danger);
}

.after .card-kicker span {
  color: var(--lime);
}

.card-kicker b {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.comparison-card ol {
  margin: 0;
  padding: 12px 24px 8px;
  list-style: none;
}

.comparison-card li {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.comparison-card li span {
  color: #aaa89f;
  font: 700 9px/1 ui-monospace, monospace;
}

.comparison-card li p {
  margin: 0;
  font-size: 13px;
}

.comparison-card li em {
  color: var(--danger);
  font-size: 11px;
  font-style: normal;
  font-weight: 760;
}

.single-request {
  margin: 23px 24px 15px;
  padding: 17px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #22221f;
}

.single-request p {
  margin: 0;
  color: #d2d1ca;
  font-size: 13px;
  line-height: 1.55;
}

.automation-stack {
  padding: 0 24px 15px 70px;
  display: grid;
  gap: 10px;
}

.automation-stack span {
  color: #999891;
  font-size: 11px;
}

.automation-stack i {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  margin-right: 6px;
  border-radius: 50%;
  color: var(--dark);
  background: var(--lime);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}

.total-row {
  margin-top: 8px;
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.after .total-row {
  border-color: var(--line-dark);
}

.total-row span {
  color: var(--muted);
  font-size: 11px;
}

.total-row strong {
  font-size: 28px;
  letter-spacing: -0.05em;
}

.after .total-row strong {
  color: var(--lime);
}

.centered {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.centered > p:last-child {
  max-width: 570px;
  margin: 18px auto 0;
}

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

.workflow-card {
  min-height: 400px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.workflow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.workflow-card.featured {
  color: white;
  border-color: var(--dark);
  background: var(--dark);
}

.step-top {
  margin-bottom: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font: 700 10px/1 ui-monospace, monospace;
}

.step-top i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--dark);
  background: var(--lime);
  font-family: sans-serif;
  font-size: 18px;
  font-style: normal;
}

.workflow-card h3 {
  margin: 0 0 11px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.workflow-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.mini-ui {
  margin-top: auto;
  border-radius: 13px;
}

.message-ui {
  padding: 11px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.message-ui span {
  flex: 1;
  color: #75746e;
  font-size: 9px;
  line-height: 1.45;
}

.message-ui button {
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: var(--dark);
}

.scan-ui {
  padding: 16px;
  color: #bab9b2;
  background: #292925;
}

.scan-ui div {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}

.scan-ui b {
  color: var(--lime);
}

.scan-ui > i {
  display: block;
  height: 5px;
  margin: 11px 0;
  overflow: hidden;
  border-radius: 99px;
  background: #3a3a35;
}

.scan-ui em {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
}

.scan-ui small {
  color: #74736d;
  font-size: 7px;
}

.done-ui {
  padding: 12px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  background: #f8ffe3;
}

.done-check {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #476412;
  background: #eaffaa;
  font-size: 12px;
  font-weight: 900;
}

.done-ui strong,
.done-ui small {
  display: block;
}

.done-ui strong {
  font-size: 9px;
}

.done-ui small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
}

.undo {
  color: var(--muted);
  font-size: 7px;
  text-decoration: underline;
}

.capabilities {
  position: relative;
  overflow: hidden;
}

.capability-glow {
  position: absolute;
  top: 30%;
  right: -300px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(217, 255, 98, 0.08);
  filter: blur(30px);
}

.light-heading {
  position: relative;
  z-index: 1;
}

.light-heading > p {
  color: #96958f;
}

.capability-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.capability-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #1d1d1b;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.capability-card:hover {
  border-color: rgba(217, 255, 98, 0.45);
  transform: translateY(-3px);
}

.capability-card.wide {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 20px;
}

.cap-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #55554f;
  font: 700 9px/1 ui-monospace, monospace;
}

.cap-copy {
  align-self: start;
}

.cap-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 12px;
  color: var(--dark);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.cap-copy h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.cap-copy p {
  max-width: 350px;
  margin: 0;
  color: #8e8d86;
  font-size: 13px;
  line-height: 1.6;
}

.type-demo {
  align-self: end;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 15px;
  background: #242421;
}

.type-demo small {
  color: #74736d;
  font-size: 8px;
}

.type-demo strong {
  display: block;
  min-height: 58px;
  margin: 14px 0 20px;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  transition: opacity 0.2s ease, transform 0.22s ease, filter 0.22s ease;
}

.type-demo div {
  display: flex;
  gap: 5px;
}

.type-demo span {
  padding: 5px 6px;
  border-radius: 5px;
  color: #8e8d86;
  background: #33332f;
  font: 700 6px/1 ui-monospace, monospace;
}

.block-demo {
  position: absolute;
  right: 28px;
  bottom: 24px;
  width: 44%;
  height: 94px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
}

.block-demo i {
  border-radius: 5px;
  background: #353530;
}

.block-demo i:first-child {
  grid-row: 1 / 3;
  background: var(--lime);
  opacity: 0.85;
}

.image-demo {
  position: absolute;
  right: 30px;
  bottom: 25px;
  width: 43%;
  height: 105px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #51514b, #262623);
}

.image-demo span {
  position: absolute;
  width: 90px;
  height: 90px;
  right: -18px;
  bottom: -22px;
  border-radius: 50%;
  background: var(--lime);
}

.image-demo i {
  position: absolute;
  top: 10px;
  right: 11px;
  font-style: normal;
}

.device-demo {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.device-demo i {
  display: block;
  border: 1px solid #4b4b45;
  border-radius: 5px;
  background: #282825;
}

.device-demo i:nth-child(1) {
  width: 78px;
  height: 56px;
}

.device-demo i:nth-child(2) {
  width: 43px;
  height: 63px;
}

.device-demo i:nth-child(3) {
  width: 27px;
  height: 52px;
  border-color: var(--lime);
}

.batch-demo {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 46%;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  color: #b1b0a9;
  background: #2b2b27;
  font-size: 8px;
}

.batch-demo b {
  padding: 5px 7px;
  border-radius: 99px;
  color: var(--dark);
  background: var(--lime);
  font-size: 7px;
}

.landing-demo {
  align-self: end;
  height: 230px;
  padding: 14px;
  display: grid;
  grid-template-rows: 0.85fr 1fr 0.7fr;
  gap: 6px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #242421;
}

.landing-demo > i,
.landing-demo > b,
.landing-demo div span {
  display: block;
  border-radius: 6px;
}

.landing-demo > i {
  background: var(--lime);
}

.landing-demo div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.landing-demo div span {
  background: #393934;
}

.landing-demo > b {
  background: #30302c;
}

.control-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.control-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 24px;
}

.control-points {
  margin-top: 36px;
  display: grid;
  gap: 19px;
}

.control-points > div {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.control-points > div > span {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--dark);
  background: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.control-points p,
.control-points strong,
.control-points small {
  display: block;
  margin: 0;
}

.control-points strong {
  font-size: 13px;
}

.control-points small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.audit-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.audit-head {
  padding: 19px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.audit-head > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}

.secure-pill {
  padding: 6px 8px;
  color: #527213;
  border-radius: 999px;
  background: #eaffaa;
  font: 800 7px/1 ui-monospace, monospace;
  letter-spacing: 0.08em;
}

.audit-list {
  padding: 13px 20px;
}

.audit-item {
  padding: 15px 3px;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.audit-item:last-child {
  border: 0;
}

.audit-item.faded {
  opacity: 0.56;
}

.audit-status {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 900;
}

.audit-status.applied {
  color: #476412;
  background: #eaffaa;
}

.audit-status.waiting {
  color: #1731a5;
  background: #e9eeff;
}

.audit-status.snapshot {
  color: var(--muted);
  background: white;
}

.audit-item strong,
.audit-item small {
  display: block;
}

.audit-item strong {
  font-size: 12px;
}

.audit-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.audit-item time {
  color: var(--muted);
  font: 600 8px/1 ui-monospace, monospace;
}

.audit-footer {
  padding: 14px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
  font-size: 8px;
}

.audit-footer span:first-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.audit-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-deep);
}

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

.outcome-card {
  min-height: 310px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.outcome-card > span {
  color: var(--muted);
  font: 700 9px/1 ui-monospace, monospace;
}

.outcome-card h3 {
  margin: auto 0 13px;
  font-size: 29px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.outcome-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.dark-card {
  color: white;
  border-color: var(--dark);
  background: var(--dark);
}

.dark-card p {
  color: #8f8e87;
}

.lime-card {
  border-color: var(--lime);
  background: var(--lime);
}

.lime-card p,
.lime-card > span {
  color: #536410;
}

.pricing {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}

.pricing-grid-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.055;
  background-image: linear-gradient(rgba(255, 255, 255, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 18%, black 82%, transparent 100%);
  animation: grid-drift 44s linear infinite;
}

.pricing-glow {
  position: absolute;
  z-index: -1;
  top: 120px;
  left: 50%;
  width: min(860px, 85vw);
  height: 360px;
  border-radius: 50%;
  background: rgba(217, 255, 98, 0.08);
  filter: blur(90px);
  transform: translateX(-50%);
  pointer-events: none;
  animation: stage-pulse 10s ease-in-out infinite;
}

.pricing-heading {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
}

.pricing-heading > p:last-child {
  max-width: 570px;
  margin: 24px auto 0;
  color: #9c9b94;
  font-size: 16px;
  line-height: 1.7;
}

.pricing-cycle {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.cycle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pricing-toggle {
  width: fit-content;
  margin: -18px auto 13px;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-toggle label {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 10px;
  color: #a6a59e;
  font-size: 13px;
  font-weight: 730;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.pricing-toggle label span {
  padding: 5px 7px;
  border-radius: 999px;
  color: #536410;
  background: var(--lime);
  font-size: 8px;
  font-weight: 840;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cycle-monthly:checked ~ .pricing-toggle label[for="billing-monthly"],
.cycle-annual:checked ~ .pricing-toggle label[for="billing-annual"] {
  color: var(--dark);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.cycle-monthly:focus-visible ~ .pricing-toggle label[for="billing-monthly"],
.cycle-annual:focus-visible ~ .pricing-toggle label[for="billing-annual"] {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.pricing-cycle-note {
  margin: 0 0 36px;
  color: #77766f;
  text-align: center;
  font-size: 10px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-width: 0;
  min-height: 575px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: rgba(34, 34, 31, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0, rgba(217, 255, 98, 0.11), transparent 37%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(217, 255, 98, 0.38);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.27);
  transform: translateY(-6px);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.recommended {
  border-color: rgba(217, 255, 98, 0.68);
  background: linear-gradient(180deg, rgba(55, 61, 35, 0.98), rgba(34, 34, 31, 0.98) 35%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.29), 0 0 0 1px rgba(217, 255, 98, 0.05);
}

.recommended-badge {
  width: fit-content;
  margin: -15px 0 22px auto;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  color: var(--lime);
  background: rgba(217, 255, 98, 0.09);
  font-size: 8px;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recommended-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(217, 255, 98, 0.7);
  animation: status-pulse 2.8s ease-out infinite;
}

.plan-topline {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.plan-topline > span {
  font-size: 23px;
  font-weight: 780;
  letter-spacing: -0.045em;
}

.plan-topline small {
  color: #85847d;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-copy {
  min-height: 50px;
  margin: 16px 0 28px;
  color: #989790;
  font-size: 13px;
  line-height: 1.55;
}

.plan-price {
  min-height: 66px;
  display: flex;
  align-items: end;
}

.price-view {
  align-items: end;
  gap: 8px;
  animation: price-view-in 0.28s ease both;
}

.price-view strong {
  font-size: clamp(42px, 4.1vw, 55px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.price-meta {
  padding-bottom: 3px;
  display: grid;
  gap: 3px;
  align-items: start;
}

.price-view small {
  color: #8c8b84;
  font-size: 12px;
}

.price-meta em {
  color: var(--lime);
  font-size: 8px;
  font-style: normal;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-annual {
  display: none;
}

.cycle-annual:checked ~ .pricing-cards .price-monthly {
  display: none;
}

.cycle-annual:checked ~ .pricing-cards .price-view.price-annual {
  display: inline-flex;
}

.cycle-annual:checked ~ .pricing-cards .annual-equivalent.price-annual {
  display: block;
}

.cycle-annual:checked ~ .pricing-cards li.price-annual {
  display: block;
}

.annual-equivalent {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--lime);
  font-size: 10px;
  font-weight: 680;
}

.pricing-card ul {
  margin: 31px 0 30px;
  padding: 26px 0 0;
  display: grid;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 23px;
  color: #aaa9a2;
  font-size: 12px;
  line-height: 1.45;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--lime);
  font-weight: 820;
}

.pricing-card li span {
  color: white;
  font-weight: 760;
}

.plan-button {
  width: 100%;
  min-height: 51px;
  margin-top: auto;
  color: var(--dark);
  background: var(--white);
  font-size: 13px;
}

.recommended .plan-button {
  background: var(--lime);
}

.credit-packs {
  margin-top: 18px;
  padding: 29px;
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(440px, 1.35fr) auto;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.packs-intro .eyebrow {
  margin-bottom: 9px !important;
}

.packs-intro h3 {
  margin: 0 0 8px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.packs-intro > p:last-child {
  margin: 0;
  color: #8e8d86;
  font-size: 11px;
  line-height: 1.5;
}

.pack-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pack-list article {
  min-width: 0;
  padding: 14px;
  display: grid;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.13);
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.pack-list article:hover {
  border-color: rgba(217, 255, 98, 0.34);
  background: rgba(217, 255, 98, 0.055);
  transform: translateY(-2px);
}

.pack-list article span {
  color: #94938c;
  font-size: 10px;
}

.pack-list article span strong {
  color: white;
  font-size: 15px;
}

.pack-list article b {
  color: var(--lime);
  font-size: 21px;
  letter-spacing: -0.04em;
}

.pack-list article b small {
  display: block;
  margin-top: 3px;
  color: #8e8d86;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.packs-link {
  white-space: nowrap;
  font-size: 12px;
}

.trial-strip {
  margin-top: 18px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 17px;
  align-items: center;
  border-radius: 20px;
  color: var(--dark);
  background: var(--lime);
}

.trial-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 23, 21, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.22);
  font-size: 16px;
  font-weight: 850;
}

.trial-strip strong {
  font-size: 16px;
  letter-spacing: -0.025em;
}

.trial-strip p {
  margin: 5px 0 0;
  color: #586c0d;
  font-size: 11px;
}

.trial-strip .button {
  min-height: 48px;
  color: white;
  background: var(--dark);
  font-size: 12px;
}

@keyframes price-view-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 110px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: clamp(39px, 4vw, 56px);
}

.faq-intro > p:not(.eyebrow) {
  margin: 25px 0 22px;
}

.dark-link {
  color: var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.025em;
}

.faq-item button i {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--dark);
  background: var(--paper);
  font-style: normal;
}

.faq-item.open button i {
  background: var(--lime);
}

.faq-answer {
  padding: 0 55px 24px 0;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: var(--dark);
  background: var(--lime);
}

.cta-grid {
  opacity: 0.12;
  background-image: linear-gradient(rgba(23, 23, 21, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 21, 0.5) 1px, transparent 1px);
}

.cta-orbit {
  position: absolute;
  top: 57%;
  right: -120px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(23, 23, 21, 0.16);
  border-radius: 50%;
  transform: translateY(-50%);
}

.cta-orbit i {
  position: absolute;
  inset: 15%;
  border: inherit;
  border-radius: inherit;
}

.cta-orbit i:nth-child(2) {
  inset: 31%;
}

.cta-orbit i:nth-child(3) {
  inset: 47.7%;
  border-color: rgba(23, 23, 21, 0.32);
  background: rgba(23, 23, 21, 0.28);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content .pill {
  margin-inline: auto;
  color: #45550b;
  border-color: rgba(23, 23, 21, 0.15);
  background: rgba(255, 255, 255, 0.22);
}

.cta-content .live-dot {
  background: var(--dark);
  box-shadow: none;
}

.cta-content h2 {
  margin: 27px auto 20px;
  font-size: clamp(46px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.cta-content > p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: #4f6010;
  font-size: 17px;
  line-height: 1.6;
}

.cta-note {
  display: block;
  margin-top: 17px;
  color: #5b6f0e;
  font-size: 10px;
}

.site-footer {
  padding: 64px 0 26px;
  color: white;
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.footer-brand p {
  max-width: 360px;
  margin: 20px 0 0;
  color: #77766f;
  font-size: 13px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links span {
  margin-bottom: 5px;
  color: #5f5f58;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  color: #a4a39c;
  font-size: 12px;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  color: #575750;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 9px;
}

.modal-backdrop {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(17, 17, 15, 0.78);
  backdrop-filter: blur(12px);
}

.modal-backdrop[hidden] {
  display: none;
}

.access-modal {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 38px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: var(--paper);
  font-size: 21px;
}

.modal-mark {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  display: block;
  color: var(--lime-deep);
  background: transparent;
}

.access-modal h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.modal-copy {
  margin: 14px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  gap: 15px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: 750;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  color: var(--ink);
  background: white;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(25, 25, 23, 0.08);
}

.lead-form .button {
  width: 100%;
  margin-top: 3px;
}

.lead-form > small {
  color: #999890;
  font-size: 9px;
  text-align: center;
}

.form-success {
  padding: 22px 0 8px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success > span {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #476412;
  background: #eaffaa;
  font-size: 21px;
  font-weight: 900;
}

.form-success h3 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.form-success p {
  margin: 10px 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Ambient motion system */

.hero-grid {
  background-position: 0 0;
  animation: grid-drift 28s linear infinite;
}

.cta-grid {
  background-position: 0 0;
  animation: grid-drift-reverse 34s linear infinite;
}

.hero-orb {
  translate: var(--parallax-x, 0) var(--parallax-y, 0);
  transition: translate 0.9s cubic-bezier(0.2, 0.75, 0.25, 1);
  will-change: transform, translate;
}

.hero-orb-one {
  animation: orb-breathe 12s ease-in-out infinite;
}

.hero-orb-two {
  animation: orb-drift 15s ease-in-out infinite;
}

.hero-orb-two::before,
.hero-orb-two::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(217, 255, 98, 0.65);
}

.hero-orb-two::before {
  top: 28px;
  right: 25px;
}

.hero-orb-two::after {
  left: 38px;
  bottom: 12px;
  width: 5px;
  height: 5px;
  opacity: 0.55;
}

.stage-glow {
  animation: stage-pulse 7s ease-in-out infinite;
}

.product-stage.motion-active .app-window {
  animation: window-float 7.5s ease-in-out infinite;
}

.app-window::after {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 24%,
    rgba(255, 255, 255, 0.11) 43%,
    transparent 57%
  );
  transform: translateX(-125%);
}

.product-stage.motion-active .app-window::after {
  animation: glass-sweep 8s ease-in-out infinite 1.6s;
}

.window-status span,
.status-dot.online,
.live-dot {
  animation: status-pulse 2.4s ease-out infinite;
}

.change-row {
  position: relative;
  overflow: hidden;
}

.change-row::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(217, 255, 98, 0.16), transparent);
  transform: translateX(-110%);
}

.product-stage.motion-active .change-row:nth-of-type(2)::after {
  animation: row-review 5.4s ease-in-out infinite 1.1s;
}

.product-stage.motion-active .change-row:nth-of-type(3)::after {
  animation: row-review 5.4s ease-in-out infinite 1.8s;
}

.product-stage.motion-active .change-row:nth-of-type(2) .check {
  animation: check-pop 5.4s ease-in-out infinite 1.7s;
}

.product-stage.motion-active .change-row:nth-of-type(3) .check {
  animation: check-pop 5.4s ease-in-out infinite 2.4s;
}

.proposal-actions button {
  position: relative;
  overflow: hidden;
}

.proposal-actions button::after,
.button-lime::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -45%;
  width: 28%;
  height: 220%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.52);
  transform: rotate(18deg) translateX(-250%);
}

.product-stage.motion-active .proposal-actions button::after {
  animation: button-sheen 4.6s ease-in-out infinite 2.6s;
}

.button {
  position: relative;
  overflow: hidden;
}

.button:hover::after {
  animation: button-sheen-once 0.72s ease-out;
}

.button > span,
.text-link > span {
  transition: transform 0.22s ease;
}

.button:hover > span,
.text-link:hover > span {
  transform: translate(3px, -2px);
}

.floating-proof {
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.floating-proof:hover {
  border-color: rgba(217, 255, 98, 0.85);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.32), 0 0 0 4px rgba(217, 255, 98, 0.08);
}

.capability-glow {
  animation: capability-glow-drift 14s ease-in-out infinite;
}

.capability-card {
  --spot-x: 50%;
  --spot-y: 50%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-lift: 0px;
  isolation: isolate;
  transition: border-color 0.25s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.capability-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(
    280px circle at var(--spot-x) var(--spot-y),
    rgba(217, 255, 98, 0.17),
    transparent 62%
  );
  transition: opacity 0.35s ease;
}

.capability-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: -65%;
  width: 34%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0;
}

.reveal.visible.capability-card {
  transform: perspective(1050px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateY(var(--card-lift));
}

.capability-card:hover {
  --card-lift: -5px;
  border-color: rgba(217, 255, 98, 0.48);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.capability-card:hover::before {
  opacity: 1;
}

.capability-card:hover::after {
  opacity: 1;
  animation: card-edge-scan 1.1s ease-out;
}

.cap-icon {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(169, 211, 31, 0.08);
  transition: transform 0.35s cubic-bezier(0.2, 0.85, 0.25, 1.25), box-shadow 0.3s ease;
}

.cap-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(23, 23, 21, 0.18);
  border-radius: 7px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.capability-card:hover .cap-icon {
  transform: translateY(-4px) rotate(-4deg) scale(1.06);
  box-shadow: 0 13px 34px rgba(169, 211, 31, 0.2);
}

.capability-card:hover .cap-icon::after {
  opacity: 1;
  transform: scale(1);
}

.capability-card.motion-active .cap-number {
  animation: number-blink 4.5s steps(1, end) infinite;
}

.type-demo {
  position: relative;
  overflow: hidden;
}

.type-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(217, 255, 98, 0.07), transparent);
  transform: translateX(-110%);
}

.capability-card.motion-active .type-demo::before {
  animation: demo-scan 5.2s ease-in-out infinite;
}

.type-demo strong::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.86em;
  margin-left: 5px;
  vertical-align: -0.06em;
  background: var(--lime);
  opacity: 0;
}

.capability-card.motion-active .type-demo strong::after {
  opacity: 1;
  animation: caret-blink 0.9s steps(1, end) infinite;
}

.capability-card.motion-active .type-demo span {
  animation: tag-pulse 4.2s ease-in-out infinite;
}

.capability-card.motion-active .type-demo span:nth-child(2) {
  animation-delay: 0.35s;
}

.capability-card.motion-active .type-demo span:nth-child(3) {
  animation-delay: 0.7s;
}

.block-demo {
  perspective: 500px;
}

.block-demo::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  top: 10px;
  left: 38%;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 77, 240, 0.15);
  opacity: 0;
}

.capability-card.motion-active .block-demo::after {
  animation: block-cursor 5.8s ease-in-out infinite;
}

.capability-card.motion-active .block-demo i {
  transform-origin: center;
  animation: block-morph 5.8s ease-in-out infinite;
}

.capability-card.motion-active .block-demo i:nth-child(2) {
  animation-delay: 0.28s;
}

.capability-card.motion-active .block-demo i:nth-child(3) {
  animation-delay: 0.56s;
}

.capability-card.motion-active .block-demo i:nth-child(4) {
  animation-delay: 0.84s;
}

.image-demo {
  isolation: isolate;
}

.image-demo::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 2px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(217, 255, 98, 0.9);
  opacity: 0;
}

.image-demo::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.14), transparent 30%);
}

.capability-card.motion-active .image-demo::after {
  animation: image-light-shift 6s ease-in-out infinite;
}

.capability-card.motion-active .image-demo::before {
  animation: image-scan 5.5s ease-in-out infinite;
}

.capability-card.motion-active .image-demo span {
  z-index: 1;
  animation: image-subject 5.5s ease-in-out infinite;
}

.capability-card.motion-active .image-demo i {
  z-index: 4;
  animation: crop-corner 5.5s ease-in-out infinite;
}

.device-demo i {
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.device-demo i::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 2px;
  background:
    linear-gradient(var(--lime), var(--lime)) 50% 18% / 68% 14% no-repeat,
    linear-gradient(#45453f, #45453f) 50% 47% / 72% 8% no-repeat,
    linear-gradient(#45453f, #45453f) 50% 66% / 56% 8% no-repeat,
    #22221f;
  opacity: 0.42;
}

.device-demo::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 16px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  opacity: 0;
}

.capability-card.motion-active .device-demo i {
  animation: device-select 6s ease-in-out infinite;
}

.capability-card.motion-active .device-demo i:nth-child(2) {
  animation-delay: 1.2s;
}

.capability-card.motion-active .device-demo i:nth-child(3) {
  animation-delay: 2.4s;
}

.capability-card.motion-active .device-demo i::before {
  animation: device-screen 6s ease-in-out infinite;
}

.capability-card.motion-active .device-demo::after {
  animation: device-signal 3s ease-out infinite 1.3s;
}

.batch-demo {
  overflow: hidden;
}

.batch-demo::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(217, 255, 98, 0.55);
}

.batch-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.09), transparent 68%);
  transform: translateX(-110%);
}

.capability-card.motion-active .batch-demo::before {
  animation: upload-progress 5.8s cubic-bezier(0.3, 0.7, 0.2, 1) infinite;
}

.capability-card.motion-active .batch-demo::after {
  animation: demo-scan 5.8s ease-in-out infinite 0.7s;
}

.capability-card.motion-active .batch-demo b {
  animation: badge-complete 5.8s ease-in-out infinite;
}

.landing-demo {
  position: relative;
  overflow: hidden;
  perspective: 700px;
}

.landing-demo::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -40% auto -40% -18%;
  width: 22%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(8px);
  transform: rotate(16deg);
}

.landing-demo::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 10px;
  height: 10px;
  right: 27px;
  top: 35px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 77, 240, 0.16);
}

.capability-card.motion-active .landing-demo::before {
  animation: landing-sheen 7s ease-in-out infinite;
}

.capability-card.motion-active .landing-demo::after {
  animation: landing-cursor 7s ease-in-out infinite;
}

.capability-card.motion-active .landing-demo > i {
  animation: landing-section 7s ease-in-out infinite;
}

.capability-card.motion-active .landing-demo div span:first-child {
  animation: landing-column-left 7s ease-in-out infinite;
}

.capability-card.motion-active .landing-demo div span:last-child {
  animation: landing-column-right 7s ease-in-out infinite;
}

.capability-card.motion-active .landing-demo > b {
  animation: landing-footer 7s ease-in-out infinite;
}

.audit-panel.motion-active .audit-item {
  animation: audit-enter 5.8s ease-in-out infinite;
}

.audit-panel.motion-active .audit-item:nth-child(2) {
  animation-delay: 0.25s;
}

.audit-panel.motion-active .audit-item:nth-child(3) {
  animation-delay: 0.5s;
}

.audit-panel.motion-active .audit-item:nth-child(4) {
  animation-delay: 0.75s;
}

.audit-panel.motion-active .audit-status.waiting {
  animation: waiting-status 1.4s ease-in-out infinite;
}

.audit-footer i {
  animation: status-pulse 2.3s ease-out infinite;
}

.outcome-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.outcome-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.06;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.outcome-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.outcome-card:hover::after {
  opacity: 0.15;
  transform: scale(1.24) translate(-8px, -8px);
}

.faq-item button i {
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item button:hover i {
  transform: rotate(90deg);
}

.faq-item.open button i {
  transform: rotate(180deg);
}

.cta-orbit {
  animation: cta-orbit-spin 24s linear infinite;
}

.cta-orbit::before,
.cta-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--dark);
}

.cta-orbit::before {
  left: -6px;
}

.cta-orbit::after {
  right: 24px;
  width: 6px;
  height: 6px;
  opacity: 0.55;
}

.cta-orbit i:first-child {
  animation: cta-ring-reverse 13s linear infinite;
}

.cta-orbit i:nth-child(2) {
  animation: cta-ring-spin 9s linear infinite;
}

.workflow-card {
  position: relative;
  overflow: hidden;
}

.workflow-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  transform: scaleX(0);
  transition: transform 0.45s ease;
}

.workflow-card:hover::after {
  transform: scaleX(1);
}

.workflow-card.visible .message-ui button {
  animation: send-nudge 4.8s ease-in-out infinite 1.1s;
}

.workflow-card.visible .scan-ui em {
  transform-origin: left;
  animation: scan-progress 4.8s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.workflow-card.visible .done-check {
  animation: done-pop 4.8s ease-in-out infinite 1.5s;
}

.workflow-card.visible .undo {
  animation: undo-hint 4.8s ease-in-out infinite 2.1s;
}

.automation-stack i {
  animation: tiny-check 5s ease-in-out infinite;
}

.automation-stack span:nth-child(2) i {
  animation-delay: 0.35s;
}

.automation-stack span:nth-child(3) i {
  animation-delay: 0.7s;
}

.automation-stack span:nth-child(4) i {
  animation-delay: 1.05s;
}

.atlas-route-mark {
  position: relative;
  flex: 0 0 auto;
  overflow: visible;
  color: var(--lime);
  background: transparent;
  filter: drop-shadow(0 0 8px rgba(217, 255, 98, 0.15));
  transform: translateZ(0);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.brand:hover .atlas-route-mark {
  filter: drop-shadow(0 0 11px rgba(217, 255, 98, 0.55));
  transform: translateY(-1px);
}

.atlas-route-leg,
.atlas-route-bridge,
.atlas-route-dot {
  position: absolute;
  display: block;
  pointer-events: none;
}

.atlas-route-leg {
  bottom: 8%;
  width: 6.5%;
  height: 82%;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 9px rgba(217, 255, 98, 0.15);
  transform-origin: 50% 100%;
}

.atlas-route-leg-left {
  left: 14%;
  transform: rotate(27deg);
  animation: atlas-route-left-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.atlas-route-leg-right {
  right: 14%;
  transform: rotate(-27deg);
  animation: atlas-route-right-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.atlas-route-bridge {
  top: 59%;
  left: 31%;
  width: 38%;
  height: 6.5%;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 8px rgba(217, 255, 98, 0.18);
  transform: rotate(-7deg);
  transform-origin: 0 50%;
  animation: atlas-route-bridge-in 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.atlas-route-bridge::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2%;
  width: 32%;
  aspect-ratio: 1;
  border-top: max(1px, 0.07em) solid currentColor;
  border-right: max(1px, 0.07em) solid currentColor;
  transform: translate(22%, -50%) rotate(45deg);
}

.atlas-route-dot {
  z-index: 2;
  top: 76%;
  left: 10%;
  width: 14%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 23, 21, 0.45);
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 2px rgba(217, 255, 98, 0.12), 0 0 11px rgba(217, 255, 98, 0.85);
  opacity: 0;
  animation: atlas-route-travel 5.8s cubic-bezier(0.45, 0, 0.2, 1) 1.1s infinite;
}

.atlas-route-mark.mini-mark .atlas-route-dot,
.atlas-route-mark.atlas-avatar .atlas-route-dot {
  border-width: 0;
}

.atlas-route-mark.atlas-avatar {
  color: var(--lime-deep);
  background: transparent;
  border-radius: 0;
}

.section-dark .atlas-route-mark.atlas-avatar,
.hero .atlas-route-mark.atlas-avatar {
  color: var(--lime);
}

@keyframes atlas-route-left-in {
  from {
    opacity: 0;
    transform: rotate(27deg) scaleY(0);
  }
  to {
    opacity: 1;
    transform: rotate(27deg) scaleY(1);
  }
}

@keyframes atlas-route-right-in {
  from {
    opacity: 0;
    transform: rotate(-27deg) scaleY(0);
  }
  to {
    opacity: 1;
    transform: rotate(-27deg) scaleY(1);
  }
}

@keyframes atlas-route-bridge-in {
  from {
    opacity: 0;
    transform: rotate(-7deg) scaleX(0);
  }
  to {
    opacity: 1;
    transform: rotate(-7deg) scaleX(1);
  }
}

@keyframes atlas-route-travel {
  0%,
  64%,
  100% {
    top: 76%;
    left: 10%;
    opacity: 0;
    transform: scale(0.72);
  }
  5% {
    opacity: 1;
    transform: scale(1);
  }
  19% {
    top: 1%;
    left: 43%;
    opacity: 1;
    transform: scale(1);
  }
  33% {
    top: 76%;
    left: 76%;
    opacity: 1;
    transform: scale(1);
  }
  42% {
    top: 76%;
    left: 76%;
    opacity: 0;
    transform: scale(0.72);
  }
}

@keyframes grid-drift {
  to {
    background-position: 48px 48px;
  }
}

@keyframes grid-drift-reverse {
  to {
    background-position: -48px 48px;
  }
}

@keyframes send-nudge {
  0%,
  22%,
  100% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-3px) scale(1.08);
  }
  37% {
    transform: translateY(0) scale(1);
  }
}

@keyframes scan-progress {
  0%,
  12% {
    transform: scaleX(0.08);
  }
  54%,
  80% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0.08);
  }
}

@keyframes done-pop {
  0%,
  22%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(217, 255, 98, 0);
  }
  31% {
    transform: scale(0.78);
  }
  38% {
    transform: scale(1.16);
    box-shadow: 0 0 0 6px rgba(217, 255, 98, 0.12);
  }
  46% {
    transform: scale(1);
  }
}

@keyframes undo-hint {
  0%,
  50%,
  100% {
    color: var(--muted);
    transform: translateX(0);
  }
  58%,
  68% {
    color: var(--ink);
    transform: translateX(-2px);
  }
}

@keyframes tiny-check {
  0%,
  86%,
  100% {
    transform: scale(1);
  }
  91% {
    transform: scale(1.22);
  }
}

@keyframes orb-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.09);
    opacity: 0.145;
  }
}

@keyframes orb-drift {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(10deg) scale(1.08);
  }
}

@keyframes stage-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes window-float {
  0%,
  100% {
    translate: 0 0;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.38);
  }
  50% {
    translate: 0 -7px;
    box-shadow: 0 52px 118px rgba(0, 0, 0, 0.45);
  }
}

@keyframes glass-sweep {
  0%,
  70%,
  100% {
    transform: translateX(-125%);
  }
  86% {
    transform: translateX(125%);
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 255, 98, 0.4);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(217, 255, 98, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 255, 98, 0);
  }
}

@keyframes row-review {
  0%,
  20%,
  100% {
    transform: translateX(-110%);
  }
  48%,
  65% {
    transform: translateX(110%);
  }
}

@keyframes check-pop {
  0%,
  34%,
  100% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.72);
  }
  47% {
    transform: scale(1.22);
  }
  54% {
    transform: scale(1);
  }
}

@keyframes button-sheen {
  0%,
  58%,
  100% {
    transform: rotate(18deg) translateX(-250%);
  }
  78% {
    transform: rotate(18deg) translateX(650%);
  }
}

@keyframes button-sheen-once {
  from {
    transform: rotate(18deg) translateX(-250%);
  }
  to {
    transform: rotate(18deg) translateX(650%);
  }
}

@keyframes capability-glow-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-110px, 70px) scale(1.16);
  }
}

@keyframes card-edge-scan {
  from {
    left: -65%;
  }
  to {
    left: 130%;
  }
}

@keyframes number-blink {
  0%,
  92% {
    color: #55554f;
  }
  94%,
  98% {
    color: var(--lime);
  }
  100% {
    color: #55554f;
  }
}

@keyframes demo-scan {
  0%,
  18%,
  100% {
    transform: translateX(-110%);
  }
  52%,
  68% {
    transform: translateX(110%);
  }
}

@keyframes caret-blink {
  0%,
  48% {
    opacity: 1;
  }
  49%,
  100% {
    opacity: 0;
  }
}

@keyframes tag-pulse {
  0%,
  82%,
  100% {
    color: #8e8d86;
    background: #33332f;
  }
  88% {
    color: var(--dark);
    background: var(--lime);
  }
}

@keyframes block-morph {
  0%,
  20%,
  100% {
    transform: translateZ(0) scale(1);
    filter: brightness(1);
  }
  44% {
    transform: translateZ(18px) scale(0.94);
    filter: brightness(1.22);
  }
  58% {
    transform: translateZ(0) scale(1);
  }
}

@keyframes block-cursor {
  0%,
  14%,
  100% {
    opacity: 0;
    transform: translate(0, 42px);
  }
  24% {
    opacity: 1;
  }
  52% {
    opacity: 1;
    transform: translate(48px, 4px);
  }
  64% {
    opacity: 0;
    transform: translate(48px, 4px) scale(0.7);
  }
}

@keyframes image-scan {
  0%,
  16%,
  100% {
    left: -30%;
    opacity: 0;
  }
  24% {
    opacity: 0.8;
  }
  58% {
    left: 125%;
    opacity: 0.8;
  }
  66% {
    opacity: 0;
  }
}

@keyframes image-subject {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10px, -7px) scale(1.08);
  }
}

@keyframes image-light-shift {
  0%,
  100% {
    background-position: 0 0;
    opacity: 0.7;
  }
  50% {
    background-position: 18px -8px;
    opacity: 1;
  }
}

@keyframes crop-corner {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-7px, 6px) rotate(8deg);
  }
}

@keyframes device-select {
  0%,
  12%,
  100% {
    border-color: #4b4b45;
    box-shadow: none;
    transform: translateY(0);
  }
  18%,
  30% {
    border-color: var(--lime);
    box-shadow: 0 0 16px rgba(217, 255, 98, 0.16);
    transform: translateY(-4px);
  }
  38% {
    transform: translateY(0);
  }
}

@keyframes device-screen {
  0%,
  12%,
  100% {
    opacity: 0.34;
  }
  18%,
  30% {
    opacity: 1;
  }
}

@keyframes device-signal {
  0% {
    opacity: 0.65;
    transform: scale(0.2);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes upload-progress {
  0%,
  10% {
    width: 0;
  }
  62%,
  82% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes badge-complete {
  0%,
  55%,
  100% {
    transform: scale(1);
  }
  66% {
    transform: scale(1.12);
    box-shadow: 0 0 0 5px rgba(217, 255, 98, 0.08);
  }
}

@keyframes landing-sheen {
  0%,
  12%,
  100% {
    left: -18%;
  }
  55%,
  72% {
    left: 115%;
  }
}

@keyframes landing-cursor {
  0%,
  8%,
  100% {
    opacity: 0;
    transform: translate(-170px, 148px);
  }
  17% {
    opacity: 1;
  }
  40% {
    opacity: 1;
    transform: translate(-28px, 65px);
  }
  51% {
    transform: translate(-28px, 65px) scale(0.65);
  }
  64% {
    opacity: 1;
    transform: translate(-80px, 125px) scale(1);
  }
  76% {
    opacity: 0;
  }
}

@keyframes landing-section {
  0%,
  22%,
  100% {
    transform: translateY(0);
    filter: brightness(1);
  }
  34%,
  48% {
    transform: translateY(-4px);
    filter: brightness(1.08);
  }
}

@keyframes landing-column-left {
  0%,
  38%,
  100% {
    transform: translateX(0);
  }
  52%,
  68% {
    transform: translateX(7px);
    background: #45453f;
  }
}

@keyframes landing-column-right {
  0%,
  38%,
  100% {
    transform: translateX(0);
  }
  52%,
  68% {
    transform: translateX(-7px);
    background: #45453f;
  }
}

@keyframes landing-footer {
  0%,
  62%,
  100% {
    transform: scaleX(1);
  }
  74%,
  86% {
    transform: scaleX(0.88);
    background: #3c3c37;
  }
}

@keyframes audit-enter {
  0%,
  88%,
  100% {
    transform: translateX(0);
    background: transparent;
  }
  92% {
    transform: translateX(3px);
    background: rgba(217, 255, 98, 0.08);
  }
}

@keyframes waiting-status {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(36, 77, 240, 0.15);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 0 0 6px rgba(36, 77, 240, 0);
  }
}

@keyframes cta-orbit-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@keyframes cta-ring-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes cta-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .hero {
    padding-top: 142px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero-copy {
    max-width: 780px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-copy .pill {
    margin-inline: auto;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-list {
    justify-content: center;
  }

  .product-stage {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .app-window {
    min-width: 0;
    transform: none;
  }

  .split-heading,
  .control-layout,
  .faq-layout {
    gap: 60px;
  }

  .capability-card.wide {
    grid-template-columns: 1fr;
  }

  .type-demo,
  .landing-demo {
    display: none;
  }

  .credit-packs {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .packs-link {
    grid-column: 1 / -1;
    width: fit-content;
  }
}

@media (max-width: 820px) {
  .nav-shell {
    position: relative;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    background: rgba(25, 25, 23, 0.98);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

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

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

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .product-stage {
    min-height: 470px;
  }

  .proof-two {
    right: -8px;
  }

  .proof-one {
    left: -8px;
  }

  .hero-foot {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .split-heading,
  .comparison-grid,
  .workflow-grid,
  .capability-grid,
  .control-layout,
  .outcome-grid,
  .pricing-cards,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 25px;
  }

  .workflow-card {
    min-height: 330px;
  }

  .step-top {
    margin-bottom: 42px;
  }

  .capability-card,
  .capability-card.wide {
    min-height: 285px;
    display: block;
  }

  .faq-intro {
    position: static;
  }

  .pricing-cards {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .pricing-card {
    min-height: 0;
  }

  .plan-copy {
    min-height: 0;
  }

  .credit-packs {
    grid-template-columns: 1fr;
  }

  .packs-link {
    grid-column: auto;
  }

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

  .footer-bottom {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

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

  .hero {
    padding-top: 126px;
  }

  .hero-copy h1 {
    font-size: 53px;
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .trust-list {
    display: grid;
    justify-content: start;
    text-align: left;
  }

  .app-body {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .window-topbar {
    grid-template-columns: 1fr 1fr;
  }

  .window-status {
    justify-self: end;
  }

  .window-dots {
    display: none;
  }

  .product-stage {
    min-height: 430px;
  }

  .floating-proof {
    display: none;
  }

  .hero-foot {
    margin-top: 35px;
  }

  .compatibility {
    gap: 8px;
    flex-wrap: wrap;
  }

  .problem,
  .workflow,
  .capabilities,
  .control,
  .built-for,
  .pricing,
  .faq,
  .final-cta {
    padding: 82px 0;
  }

  .section-heading h2,
  .control-copy h2,
  .faq-intro h2 {
    font-size: 42px;
  }

  .comparison-card li {
    grid-template-columns: 28px 1fr;
  }

  .comparison-card li em {
    grid-column: 2;
  }

  .automation-stack {
    padding-left: 24px;
  }

  .capability-card {
    min-height: 320px;
  }

  .pricing-heading {
    margin-bottom: 44px;
  }

  .pricing-toggle {
    width: 100%;
    margin-top: -12px;
  }

  .pricing-toggle label {
    flex: 1;
    padding-inline: 10px;
    justify-content: center;
  }

  .pricing-toggle label span {
    font-size: 7px;
  }

  .pricing-card {
    padding: 25px;
  }

  .price-view strong {
    font-size: 47px;
  }

  .credit-packs {
    padding: 24px;
  }

  .pack-list {
    grid-template-columns: 1fr;
  }

  .pack-list article {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .trial-strip {
    grid-template-columns: auto 1fr;
  }

  .trial-strip .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .block-demo,
  .image-demo,
  .device-demo,
  .batch-demo {
    width: calc(100% - 56px);
    right: 28px;
  }

  .cta-orbit {
    right: -230px;
  }

  .cta-content h2 {
    font-size: 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
  }

  .access-modal {
    padding: 30px 21px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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