:root {
  --bg: #070909;
  --bg-elevated: #0e1014;
  --fg: #f4f4f5;
  --muted: #71717a;
  --muted2: #52525b;
  --accent: #0d9488;
  --accent-bright: #14b8a6;
  --accent-dim: rgba(13, 148, 136, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(20, 184, 166, 0.45);
  --glow-teal: rgba(20, 184, 166, 0.12);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Inter", var(--font);
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-tap: 0.1s;
  --ease-tap: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.38;
}

.bg-glow-1 {
  width: 55vw;
  height: 55vw;
  max-width: 720px;
  max-height: 720px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.09) 0%, transparent 70%);
}

.bg-glow-2 {
  width: 40vw;
  height: 40vw;
  bottom: 10%;
  left: -15%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% -5%, black 35%, transparent 72%);
}

.bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0) 3px,
      rgba(255, 255, 255, 0.018) 3px,
      rgba(255, 255, 255, 0.018) 4px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0,
      rgba(0, 0, 0, 0) 1px,
      rgba(0, 0, 0, 0.06) 1px,
      rgba(0, 0, 0, 0.06) 2px
    );
  background-size: 100% 100%, 4px 100%;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1180px, 94vw);
  margin: 0 auto;
}

.band {
  padding: 2.75rem 0;
  position: relative;
  z-index: 1;
}

.band-dark {
  background: #070909;
  color: var(--fg);
}

.band-dark.band-dark--lift {
  background: #0b0d10;
}

.band-hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible;
  background-color: #070909;
  background-image:
    radial-gradient(ellipse 90% 72% at 68% 12%, rgba(20, 184, 166, 0.035) 0%, transparent 58%),
    radial-gradient(ellipse 48% 42% at 8% 88%, rgba(255, 255, 255, 0.018) 0%, transparent 55%);
}

.band-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 42%, transparent 42%, rgba(0, 0, 0, 0.82) 100%);
}

.band-hero > .wrap {
  position: relative;
  z-index: 1;
}

main > section + section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

section.band > .wrap {
  position: relative;
  z-index: 1;
}

.band-soft {
  --bg: #050505;
  --bg-elevated: #080a0c;
  --fg: #ebe9e4;
  --muted: #8b98ab;
  --muted2: #6a7789;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(20, 184, 166, 0.32);
  --accent-dim: rgba(13, 148, 136, 0.1);
  --glow-teal: rgba(20, 184, 166, 0.12);
  color: var(--fg);
  background: var(--bg);
}

.band-soft::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.band.section-tight {
  padding-top: 0;
  padding-bottom: 2.5rem;
}

.band.section-tight-top {
  padding-top: 0;
  padding-bottom: 2.25rem;
}

.band.section-case {
  padding: 1.55rem 0 1.85rem;
}

.band.section-band-compact {
  padding-top: 1.65rem;
  padding-bottom: 1.85rem;
}

.band.section-band-airy {
  padding-top: 3.35rem;
  padding-bottom: 3.55rem;
}

.band.section-tight-top.section-results-pad {
  padding-bottom: 3.05rem;
}

section#pricing.band.section-band-airy {
  padding-top: 3.65rem;
}

.band-soft.band-soft--elevate {
  --bg: #08090c;
  --bg-elevated: #0c0e14;
  background: var(--bg);
}

.band-soft.band-soft-trial {
  --bg: #0a0c10;
  --bg-elevated: #0f1218;
  background: var(--bg);
}

.band-soft .btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg);
}

.band-soft .btn-ghost:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 18px rgba(20, 184, 166, 0.1);
}

.band-soft .proof-strip {
  background: linear-gradient(
    135deg,
    rgba(20, 184, 166, 0.05) 0%,
    rgba(10, 13, 16, 0.96) 42%,
    rgba(5, 6, 8, 0.55) 100%
  );
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.band-soft .proof-pill {
  background: rgba(255, 255, 255, 0.04);
}

.band-soft .before-after {
  box-shadow:
    0 8px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.trial-callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.35rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(125deg, rgba(20, 184, 166, 0.07) 0%, rgba(14, 16, 22, 0.92) 50%);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.22s ease, box-shadow 0.28s var(--ease), transform 0.26s var(--ease);
}

.trial-callout:hover {
  border-color: rgba(20, 184, 166, 0.22);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(20, 184, 166, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.trial-callout p {
  margin: 0;
  max-width: 40rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.trial-callout .btn-trial-deploy {
  flex-shrink: 0;
}

.band-soft .manage-list li {
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(20, 184, 166, 0.06);
}

.band-soft .manage-list li:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(20, 184, 166, 0.12), 0 4px 18px rgba(20, 184, 166, 0.04);
  transform: translateY(-2px);
}

.band-soft .process-step {
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(20, 184, 166, 0.06);
}

.band-soft .process-step:hover {
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(20, 184, 166, 0.12), 0 4px 20px rgba(20, 184, 166, 0.04);
  transform: translateY(-2px);
}

.trial-foot {
  margin: 0.75rem 0 0;
  max-width: 42rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted2);
}

.band-hero .hero-lead {
  color: #a8b0bd;
}

.band-hero .hero-lead strong {
  color: #f4f2ed;
}

.section-kicker,
.section-sub,
.proof-label,
.form-section-label,
.form-note,
.case-foot,
.trial-foot,
.before-after-label,
.hero-badge-title,
.hero-badge-online,
.per,
.pricing-foot,
.typical-setup-h,
.compare-h,
.label,
.desk-rail,
.cli-feed,
.process-n {
  font-family: var(--font-mono);
}

.desk-rail {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(2, 2, 2, 0.92) 100%);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted2);
}

.desk-rail__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.4rem 0;
  min-height: 2rem;
}

.desk-rail__status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}

.desk-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding: 0.18rem 0.42rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 14, 0.85);
  color: #b8c4d4;
  font-weight: 500;
}

.desk-pill strong {
  color: #e2e8f0;
  font-weight: 600;
}

.desk-pill__muted {
  opacity: 0.55;
  font-weight: 500;
}

.desk-pill__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.55);
  animation: deskDotPulse 2.2s ease-in-out infinite;
}

.desk-pill__dot--warn {
  background: #eab308;
  box-shadow: 0 0 6px rgba(234, 179, 8, 0.45);
}

@keyframes deskDotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.92);
  }
}

.desk-spark {
  flex-shrink: 0;
  width: 52px;
  height: 22px;
  opacity: 0.85;
}

.desk-spark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.desk-spark__line {
  fill: none;
  stroke: rgba(20, 184, 166, 0.55);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 42 80;
  animation: deskSparkShift 4.5s linear infinite;
}

@keyframes deskSparkShift {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -122;
  }
}

.desk-ticker-wrap {
  flex: 1;
  min-width: 180px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  animation: deskTickerWrapDrift 24s ease-in-out infinite alternate;
}

@keyframes deskTickerWrapDrift {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(4px);
  }
}

.desk-ticker {
  display: flex;
  width: max-content;
  gap: 3.75rem;
  white-space: nowrap;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.52);
  animation: deskTickerScroll 38s linear infinite;
}

.desk-ticker__chunk {
  padding-right: 0.15rem;
}

.desk-ticker__sep {
  display: inline-block;
  margin: 0 0.35rem;
  color: rgba(148, 163, 184, 0.35);
  font-weight: 700;
  animation: deskSepPulse 2.6s ease-in-out infinite;
}

@keyframes deskSepPulse {
  0%,
  40% {
    opacity: 0.35;
  }

  55% {
    opacity: 0.95;
  }

  100% {
    opacity: 0.35;
  }
}

@keyframes deskTickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.terminal-panel[data-panel] {
  position: relative;
}

.terminal-panel[data-panel]::before {
  content: attr(data-panel);
  position: absolute;
  top: 0.45rem;
  left: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted2);
  pointer-events: none;
}

.proof-strip.terminal-panel[data-panel] {
  padding-top: 1.85rem;
}

.cli-feed {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(20, 184, 166, 0.18);
  background: linear-gradient(165deg, rgba(12, 16, 20, 0.95) 0%, rgba(4, 6, 8, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 28px rgba(20, 184, 166, 0.06);
  font-size: 0.72rem;
  line-height: 1.55;
  color: #9db0c4;
  overflow: hidden;
}

.cli-feed[data-panel]::before {
  top: 0.4rem;
  left: 0.65rem;
}

.cli-feed[data-panel] {
  padding-top: 2rem;
}

.cli-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cli-line::before {
  content: "› ";
  color: rgba(20, 184, 166, 0.55);
}

.cli-ts {
  color: #64748b;
  margin-right: 0.35rem;
}

.cli-cursor {
  display: inline-block;
  width: 0.45em;
  margin-left: 0.08rem;
  color: rgba(20, 184, 166, 0.32);
  animation: cliCursorBlink 1.85s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes cliCursorBlink {
  0%,
  48% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

.trial-callout.terminal-panel[data-panel] {
  padding-top: 2.15rem;
}

.trial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 290px);
  gap: 1.5rem 1.75rem;
  align-items: start;
}

.trial-main {
  min-width: 0;
}

.trial-row-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}

.trial-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.32rem 0.55rem;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted2);
}

.trial-chip--accent {
  border-color: rgba(20, 184, 166, 0.38);
  background: rgba(20, 184, 166, 0.09);
  color: var(--accent-bright);
}

.trial-dash {
  padding: 0.85rem 0.9rem 0.95rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(8, 10, 14, 0.96) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.trial-dash.terminal-panel[data-panel] {
  padding-top: 2.05rem;
}

.trial-dash-dl {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.trial-dash-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.65rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trial-dash-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trial-dash-dt {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
}

.trial-dash-dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg);
  text-align: right;
}

.trial-dash-dd span {
  color: var(--accent-bright);
  font-weight: 700;
}

@media (max-width: 900px) {
  .trial-layout {
    grid-template-columns: 1fr;
  }

  .trial-dash {
    max-width: 420px;
  }
}

.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}

.logo span {
  color: var(--accent-bright);
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: color 0.2s var(--ease);
}

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

.nav-cta {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform var(--dur-tap) var(--ease-tap),
    background 0.11s var(--ease-tap),
    border-color 0.11s var(--ease-tap),
    box-shadow 0.12s var(--ease-tap);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-sm {
  padding: 0.42rem 0.75rem;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 0.72rem 1.25rem;
  font-size: 0.92rem;
  flex: 1;
  min-width: min(100%, 160px);
}

.btn-primary {
  background: var(--accent-bright);
  color: #020617;
  box-shadow: 0 0 16px rgba(20, 184, 166, 0.14);
}

.btn-primary:hover {
  background: #2dd4bf;
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.22);
}

.btn-trial-deploy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.btn-trial-deploy__arrow {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  opacity: 0.88;
  transition: transform 0.32s var(--ease), opacity 0.22s ease;
}

.btn-trial-deploy:hover .btn-trial-deploy__arrow {
  transform: translateX(4px);
  opacity: 1;
}

.btn-trial-deploy.btn-primary:hover {
  box-shadow: 0 0 28px rgba(20, 184, 166, 0.28), 0 0 56px rgba(20, 184, 166, 0.1);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-accent);
  background: var(--accent-dim);
  box-shadow: 0 0 14px rgba(20, 184, 166, 0.08);
  transform: translateY(-1px);
}

.hero {
  padding: 2.25rem 0 2.75rem;
}

.band-hero .hero {
  padding: 3.1rem 0 4.1rem;
}

@media (max-width: 960px) {
  .band-hero .hero {
    padding: 2.6rem 0 3.2rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.28fr);
  gap: clamp(1.5rem, 3.8vw, 2.75rem);
  align-items: start;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy .hero-cta {
    justify-content: center;
  }

  .hero-mockup {
    justify-self: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    font-size: clamp(11.2px, 2.72vw, 13.1px);
    transform: translateY(-6px) scale(1.02);
    transform-origin: center center;
  }
}

.hero-copy {
  text-align: left;
}

@media (max-width: 960px) {
  .hero-copy {
    text-align: center;
  }

  .hero-copy .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-badge {
  display: inline-grid;
  grid-template-columns: auto max-content;
  grid-template-rows: auto auto;
  column-gap: 0.55rem;
  row-gap: 0.06rem;
  align-items: center;
  justify-items: start;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 0 24px rgba(20, 184, 166, 0.06);
}

.hero-badge-dot {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
}

.hero-badge-title {
  grid-column: 2;
  grid-row: 1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--fg);
  line-height: 1.2;
}

.hero-badge-online {
  grid-column: 2;
  grid-row: 2;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #6ee7b7;
  line-height: 1.2;
  animation: onlinePulse 2.4s ease-in-out infinite;
}

@keyframes onlinePulse {
  0%,
  100% {
    opacity: 0.95;
  }
  50% {
    opacity: 0.55;
  }
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px #34d399;
  animation: livePulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(0.92);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.8vw, 2.55rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  max-width: 22ch;
}

@media (max-width: 960px) {
  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-lead {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.1rem;
  line-height: 1.5;
}

.hero-lead strong {
  color: var(--fg);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-mockup {
  position: relative;
  isolation: isolate;
  justify-self: end;
  width: min(108%, 640px);
  margin-right: clamp(-0.25rem, -1.2vw, -0.85rem);
  font-size: clamp(12.1px, 2.95vw, 14.25px);
  color: var(--muted2);
  transform: translate(22px, -30px) scale(1.06);
  transform-origin: center right;
}

.hero-mockup::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 125%;
  height: 118%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 48%,
    rgba(45, 212, 191, 0.045) 0%,
    rgba(20, 184, 166, 0.025) 38%,
    transparent 68%
  );
  filter: blur(1px);
  opacity: 0.32;
  pointer-events: none;
}

.mockup-window {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(20, 184, 166, 0.28);
  background: linear-gradient(155deg, #14181c 0%, #0a0c0f 52%, #0b1012 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(20, 184, 166, 0.03);
  overflow: hidden;
  animation: mockFloat 8s ease-in-out infinite;
}

.mockup-window::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 56px rgba(20, 184, 166, 0.06);
  opacity: 0.36;
  animation: winGlowPulse 5s ease-in-out infinite;
}

.mockup-window::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.14;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.045) 3px,
    rgba(255, 255, 255, 0.045) 4px
  );
}

/* Hero mockup only: scanlines + barely-there noise + slow horizontal seam */
.hero-mockup .mockup-window {
  box-shadow:
    0.5px 0 0 rgba(255, 64, 90, 0.07),
    -0.5px 0 0 rgba(48, 140, 255, 0.065),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(20, 184, 166, 0.03);
  animation:
    mockFloatAlive 8s ease-in-out infinite,
    mockShellFlicker 6.4s ease-in-out infinite;
}

.hero-mockup .mockup-window::after {
  mix-blend-mode: soft-light;
  opacity: 0.12;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.04) 3px,
      rgba(255, 255, 255, 0.04) 4px
    ),
    repeating-linear-gradient(
      -14deg,
      rgba(255, 255, 255, 0.007) 0,
      rgba(255, 255, 255, 0.007) 1px,
      transparent 1px,
      transparent 5px
    ),
    linear-gradient(
      92deg,
      transparent 0%,
      transparent 44%,
      rgba(255, 255, 255, 0.028) 49.6%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.028) 50.4%,
      transparent 56%,
      transparent 100%
    );
  background-size:
    100% 100%,
    7px 7px,
    220% 100%;
  background-position:
    0 0,
    0 0,
    0 0;
  animation:
    mockNoiseWander 11s linear infinite,
    mockAfterBreath 5.8s ease-in-out infinite,
    mockHLineDrift 16s linear infinite;
}

.hero-mockup .mockup-window.mockup-window--glitch {
  filter: brightness(1.05) contrast(1.02);
}

@keyframes mockFloatAlive {
  0%,
  100% {
    transform: translateY(0) skewX(0deg);
  }

  35% {
    transform: translateY(-2px) skewX(0.035deg);
  }

  50% {
    transform: translateY(-4px) skewX(0.055deg);
  }

  65% {
    transform: translateY(-2px) skewX(0.028deg);
  }
}

@keyframes mockShellFlicker {
  0%,
  100% {
    opacity: 1;
  }

  43% {
    opacity: 0.993;
  }

  76% {
    opacity: 0.998;
  }
}

@keyframes mockNoiseWander {
  0% {
    background-position:
      0 0,
      0 0,
      0% 0;
  }

  100% {
    background-position:
      0 0,
      11px 8px,
      38% 0;
  }
}

@keyframes mockAfterBreath {
  0%,
  100% {
    opacity: 0.1;
  }

  40% {
    opacity: 0.135;
  }

  70% {
    opacity: 0.118;
  }
}

@keyframes mockHLineDrift {
  0%,
  100% {
    background-position:
      0 0,
      0 0,
      -12% 0;
  }

  50% {
    background-position:
      0 0,
      3px 2px,
      18% 0;
  }
}

@keyframes winGlowPulse {
  0%,
  100% {
    opacity: 0.32;
  }
  50% {
    opacity: 0.46;
  }
}

@keyframes mockFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.mockup-titlebar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.mock-title-right {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 8px;
  color: var(--muted2);
}

.mock-feed-label {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted2);
}

.mock-ws-pulse {
  font-size: 8px;
  color: var(--accent-bright);
  animation: wsBlink 1.2s ease-in-out infinite;
}

@keyframes wsBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.mockup-dots {
  display: flex;
  gap: 4px;
}

.mockup-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted2);
  opacity: 0.45;
}

.mockup-dots i:first-child {
  background: #f87171;
  opacity: 0.85;
}

.mockup-dots i:nth-child(2) {
  background: #fbbf24;
  opacity: 0.85;
}

.mockup-dots i:nth-child(3) {
  background: #34d399;
  opacity: 0.85;
}

.mockup-title {
  text-align: center;
  font-weight: 600;
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.mockup-body {
  display: grid;
  grid-template-columns: minmax(76px, 88px) 1fr;
  min-height: 300px;
}

.mockup-side {
  padding: 0.55rem 0.45rem;
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.mockup-side-h {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted2);
  margin: 0.35rem 0 0.3rem;
}

.mockup-side-h:first-child {
  margin-top: 0;
}

.mockup-bal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 9px;
  margin-bottom: 0.2rem;
  color: var(--muted);
}

.mockup-bal strong {
  color: var(--fg);
  font-weight: 600;
  transition: color 0.15s;
}

.mockup-alert {
  font-size: 8px;
  padding: 0.22rem 0.32rem;
  border-radius: 4px;
  margin-bottom: 0.25rem;
  border: 1px solid var(--border);
  transition: border-color 0.2s, opacity 0.2s;
}

.mockup-alert.ok {
  border-color: rgba(52, 211, 153, 0.4);
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.08);
}

.mockup-alert.warn {
  border-color: rgba(251, 191, 36, 0.35);
  color: #fcd34d;
  background: rgba(251, 191, 36, 0.06);
}

.mock-latency-flash {
  animation: latFlash 0.45s ease;
}

@keyframes latFlash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
  100% {
    opacity: 1;
  }
}

.mockup-main {
  padding: 0.5rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.02);
}

.mockup-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
}

.mock-tag {
  font-size: 8px;
  font-weight: 700;
  padding: 0.18rem 0.38rem;
  border-radius: 4px;
  background: var(--accent-dim);
  color: var(--accent-bright);
  border: 1px solid rgba(20, 184, 166, 0.35);
}

.mock-stat {
  font-size: 8px;
  color: var(--muted);
}

.mock-stat em {
  font-style: normal;
  color: var(--muted2);
  margin-right: 0.15rem;
}

.mockup-book {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.3rem;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

#mock-book {
  animation: bookBreathe 3.8s ease-in-out infinite;
}

@keyframes bookBreathe {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.88;
  }
}

.mock-row--flash {
  animation: rowFlash 0.22s ease-out;
}

.mock-row--tob-bid {
  animation: tobBidPulse 0.32s ease-out;
}

.mock-row--tob-ask {
  animation: tobAskPulse 0.32s ease-out;
}

@keyframes rowFlash {
  from {
    background-color: rgba(20, 184, 166, 0.25);
  }
  to {
    background-color: transparent;
  }
}

@keyframes tobBidPulse {
  0%,
  100% {
    background-color: transparent;
    color: inherit;
  }

  42% {
    background-color: rgba(52, 211, 153, 0.11);
    color: #f0fdf4;
    text-shadow: 0 0 8px rgba(52, 211, 153, 0.22);
  }
}

@keyframes tobAskPulse {
  0%,
  100% {
    background-color: transparent;
    color: inherit;
  }

  42% {
    background-color: rgba(248, 113, 113, 0.08);
    color: #fef2f2;
    text-shadow: 0 0 7px rgba(248, 113, 113, 0.18);
  }
}

.mock-spread-cap-blink {
  animation: capBlink 0.6s ease;
}

@keyframes capBlink {
  50% {
    border-color: rgba(20, 184, 166, 0.6);
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.25);
  }
}

#mock-spread {
  display: inline-block;
  transition: color 0.18s ease, transform 0.12s ease, text-shadow 0.2s ease;
  font-variant-numeric: tabular-nums;
  color: #a7f3d0;
  font-weight: 700;
  text-shadow:
    0 0 10px rgba(45, 212, 191, 0.55),
    0 0 22px rgba(20, 184, 166, 0.35);
}

#mock-spread.mock-spread--wide {
  color: #fde68a;
  text-shadow:
    0 0 10px rgba(251, 191, 36, 0.45),
    0 0 20px rgba(245, 158, 11, 0.25);
}

#mock-spread.mock-spread--tick {
  animation: spreadTick 0.2s ease;
}

@keyframes spreadTick {
  50% {
    transform: scale(1.06);
  }
}

.mock-tape-wrap {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  flex-shrink: 0;
}

.mock-tape-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.4rem;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 184, 166, 0.07);
}

.mock-tape-live-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mock-tape-live-wrap::before {
  content: "";
  position: absolute;
  inset: -3px -5px;
  border-radius: 4px;
  border: 1px solid rgba(248, 113, 113, 0.35);
  animation: liveRing 1.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes liveRing {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.mock-tape-live {
  position: relative;
  z-index: 1;
  color: #fecaca;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px rgba(248, 113, 113, 0.55);
  animation: tapeLive 1.1s ease-in-out infinite;
}

@keyframes tapeLive {
  0%,
  100% {
    opacity: 1;
  }
  45% {
    opacity: 0.45;
  }
}

.mock-tape {
  height: 64px;
  padding: 0.25rem 0.35rem;
  font-family: ui-monospace, monospace;
  font-size: 7.5px;
  line-height: 1.35;
  color: #b4b8c4;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.mock-tape-line {
  display: flex;
  gap: 0.35rem;
  white-space: nowrap;
  animation: tapeIn 0.35s var(--ease) both;
}

@keyframes tapeIn {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mock-tape-line--buy .mock-tape-side {
  color: #6ee7b7;
}

.mock-tape-line--sell .mock-tape-side {
  color: #fca5a5;
}

.mock-tape-time {
  color: #8b90a0;
  flex-shrink: 0;
}

.mock-tape-line--burst {
  animation-duration: 0.28s;
}

.mock-tape-line--dup-time .mock-tape-time {
  color: #a1a7b5;
  letter-spacing: -0.02em;
}

.mock-tape-line--bare .mock-tape-qty {
  letter-spacing: 0.02em;
}

.mock-tape-line--crossed {
  opacity: 0.82;
  transform: translateX(0.5px);
  filter: contrast(0.94);
}

.mock-tape-line--crossed .mock-tape-side {
  text-decoration: underline dotted rgba(255, 255, 255, 0.12);
  text-underline-offset: 2px;
}

.mockup-book-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: ui-monospace, "Cascadia Code", monospace;
  transition: transform 0.35s var(--ease);
}

.hero-mockup:hover .mockup-book-col.asks {
  transform: translateX(-2px);
}

.hero-mockup:hover .mockup-book-col.bids {
  transform: translateX(2px);
}

.mockup-book-col.asks .mock-row {
  justify-content: flex-end;
}

.mockup-book-col.asks .mock-row:nth-child(1) {
  background: linear-gradient(90deg, transparent 0%, rgba(248, 113, 113, 0.1) 30%, rgba(248, 113, 113, 0.26) 100%);
}

.mockup-book-col.asks .mock-row:nth-child(2) {
  background: linear-gradient(90deg, transparent 0%, rgba(248, 113, 113, 0.065) 35%, rgba(248, 113, 113, 0.16) 100%);
}

.mockup-book-col.asks .mock-row:nth-child(3) {
  background: linear-gradient(90deg, transparent 0%, rgba(248, 113, 113, 0.048) 40%, rgba(248, 113, 113, 0.12) 100%);
}

.mockup-book-col.asks .mock-row:nth-child(4) {
  background: linear-gradient(90deg, transparent 0%, rgba(248, 113, 113, 0.04) 45%, rgba(248, 113, 113, 0.075) 100%);
}

.mockup-book-col.asks .mock-row:nth-child(5) {
  background: linear-gradient(90deg, transparent 0%, rgba(248, 113, 113, 0.032) 50%, rgba(248, 113, 113, 0.055) 100%);
}

.mockup-book-col.asks .mock-row:nth-child(6) {
  background: linear-gradient(90deg, transparent 0%, rgba(248, 113, 113, 0.026) 55%, rgba(248, 113, 113, 0.042) 100%);
}

.mockup-book-col.bids .mock-row:nth-child(1) {
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.28) 0%, rgba(52, 211, 153, 0.15) 45%, rgba(52, 211, 153, 0.045) 78%, transparent 100%);
}

.mockup-book-col.bids .mock-row:nth-child(2) {
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.16) 0%, rgba(52, 211, 153, 0.1) 50%, rgba(52, 211, 153, 0.032) 85%, transparent 100%);
}

.mockup-book-col.bids .mock-row:nth-child(3) {
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.11) 0%, rgba(52, 211, 153, 0.062) 55%, transparent 100%);
}

.mockup-book-col.bids .mock-row:nth-child(4) {
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.072) 0%, rgba(52, 211, 153, 0.042) 60%, transparent 100%);
}

.mockup-book-col.bids .mock-row:nth-child(5) {
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.055) 0%, rgba(52, 211, 153, 0.028) 65%, transparent 100%);
}

.mockup-book-col.bids .mock-row:nth-child(6) {
  background: linear-gradient(90deg, rgba(52, 211, 153, 0.04) 0%, rgba(52, 211, 153, 0.022) 70%, transparent 100%);
}

.mock-row {
  display: flex;
  justify-content: space-between;
  gap: 0.45rem;
  padding: 0.18rem 0.32rem;
  border-radius: 3px;
  font-size: 8.5px;
  color: #9ca3af;
  transition: background 0.12s ease, color 0.12s ease;
}

.mock-row.hi {
  color: #e4e4e7;
  font-weight: 600;
}

.mockup-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 7.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.2rem 0.12rem;
  background: rgba(255, 255, 255, 0.025);
}

.mockup-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 7.5px;
  color: var(--muted2);
  padding-top: 0.2rem;
  border-top: 1px solid var(--border);
}

.section-head {
  margin-bottom: 1.35rem;
}

.section-head-tight {
  margin-bottom: 1rem;
}

.section-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-bright);
  margin: 0 0 0.35rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

.section-sub {
  color: var(--muted);
  margin: 0;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.06) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
  box-shadow: 0 0 40px rgba(20, 184, 166, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (max-width: 720px) {
  .proof-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-div {
    display: none;
  }
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.proof-item-wide {
  flex: 1;
  min-width: 200px;
}

.proof-num {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.35;
}

.proof-note {
  font-size: 0.75rem;
  color: var(--muted2);
}

.proof-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.proof-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
  justify-content: center;
}

@media (min-width: 961px) {
  .proof-metrics {
    justify-content: flex-start;
  }
}

.proof-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.band-soft .trust-strip {
  border-color: rgba(20, 184, 166, 0.2);
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.09) 0%, rgba(17, 22, 27, 0.65) 100%);
  box-shadow: 0 0 36px rgba(20, 184, 166, 0.08);
}

.trust-strip {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 184, 166, 0.22);
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  box-shadow: 0 0 28px rgba(20, 184, 166, 0.06);
}

.trust-strip strong {
  color: var(--accent-bright);
  font-weight: 700;
}

.pain-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.pain-grid--tiered {
  grid-template-columns: repeat(12, 1fr);
  gap: 0.55rem 0.65rem;
}

.pain-tile {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--fg);
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
  transition: border-color 0.22s var(--ease), box-shadow 0.28s var(--ease), transform 0.24s var(--ease);
}

.pain-grid--tiered .pain-tile--featured {
  grid-column: span 6;
  padding: 1rem 1.1rem;
  font-size: 0.93rem;
  line-height: 1.35;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
}

.pain-grid--tiered .pain-tile:not(.pain-tile--featured):not(.pain-tile--alert) {
  grid-column: span 3;
  font-size: 0.82rem;
  padding: 0.62rem 0.75rem;
}

.pain-grid--tiered .pain-tile--alert {
  grid-column: span 12;
  border-color: rgba(248, 113, 113, 0.35);
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.1) 0%, rgba(12, 10, 10, 0.92) 55%);
  color: #fecaca;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pain-tile:hover {
  border-color: var(--border-accent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(20, 184, 166, 0.12), 0 4px 20px rgba(20, 184, 166, 0.04);
  transform: translateY(-2px);
}

.pain-tile--alert:hover {
  border-color: rgba(252, 165, 165, 0.45);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(248, 113, 113, 0.2);
}

@media (max-width: 720px) {
  .pain-grid:not(.pain-grid--tiered) {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-grid--tiered .pain-tile--featured {
    grid-column: span 12;
    min-height: unset;
  }

  .pain-grid--tiered .pain-tile:not(.pain-tile--featured):not(.pain-tile--alert) {
    grid-column: span 6;
  }
}

@media (max-width: 420px) {
  .pain-grid:not(.pain-grid--tiered) {
    grid-template-columns: 1fr;
  }

  .pain-grid--tiered .pain-tile:not(.pain-tile--featured):not(.pain-tile--alert) {
    grid-column: span 12;
  }
}

.exchange-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-start;
}

@media (max-width: 560px) {
  .exchange-pills {
    justify-content: center;
  }
}

.exchange-pill {
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
  transition: box-shadow 0.28s var(--ease), border-color 0.2s, transform 0.22s var(--ease);
}

.exchange-pill:hover {
  border-color: var(--border-accent);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(20, 184, 166, 0.1), 0 3px 14px rgba(20, 184, 166, 0.04);
  transform: translateY(-2px);
}

.exchange-pill.dim {
  color: var(--muted2);
  font-weight: 500;
  font-style: normal;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  opacity: 0.92;
}

.manage-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 640px) {
  .manage-list {
    grid-template-columns: 1fr;
  }
}

.manage-list li {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s, box-shadow 0.28s var(--ease), transform 0.22s var(--ease);
}

.manage-list li:hover {
  border-color: rgba(20, 184, 166, 0.25);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(20, 184, 166, 0.1), 0 4px 18px rgba(20, 184, 166, 0.04);
  transform: translateY(-2px);
}

.manage-list strong {
  color: var(--fg);
  display: block;
  margin-bottom: 0.12rem;
  font-size: 0.88rem;
}

.grid-features {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .grid-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-links {
    order: 3;
    width: 100%;
  }
}

.card {
  padding: 1.1rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, var(--bg-elevated) 55%);
  transition:
    border-color 0.11s var(--ease-tap),
    box-shadow 0.12s var(--ease-tap),
    transform 0.1s var(--ease-tap);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(20, 184, 166, 0.04);
}

.card:hover {
  border-color: rgba(20, 184, 166, 0.42);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(20, 184, 166, 0.14),
    0 6px 28px rgba(20, 184, 166, 0.05);
  transform: translateY(-2px);
}

.card-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  color: var(--accent-bright);
}

.card-icon .card-icon-svg {
  display: block;
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

#why .section-head-tight {
  margin-bottom: 0.72rem;
}

#why .grid-features {
  gap: 0.62rem;
}

#why .card {
  padding: 0.92rem 0.92rem;
}

#why .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 0.55rem;
  border: 1px solid rgba(20, 184, 166, 0.38);
  background: rgba(13, 148, 136, 0.14);
}

#why .card-icon .card-icon-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

#why .card h3 {
  margin-bottom: 0.28rem;
  font-size: 0.88rem;
}

#why .card p {
  font-size: 0.8rem;
  line-height: 1.38;
}

#why .card:hover {
  border-color: rgba(13, 116, 106, 0.55);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(10, 70, 64, 0.45),
    0 5px 22px rgba(6, 42, 38, 0.35);
  transform: translateY(-2px);
}

.band.section-case .section-head-tight {
  margin-bottom: 0.45rem;
}

.case-foot {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--muted2);
  text-align: center;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow:
    0 4px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(20, 184, 166, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

@media (max-width: 600px) {
  .before-after {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .before-after-divider {
    display: none;
  }
}

.before-after-col {
  padding: 0.75rem 1rem;
}

.before-after--before {
  background: linear-gradient(180deg, rgba(248, 113, 113, 0.07) 0%, transparent 55%);
}

.before-after--after {
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.09) 0%, transparent 55%);
}

@media (max-width: 600px) {
  .before-after--before {
    border-bottom: 1px solid var(--border);
  }
}

.before-after-divider {
  width: 1px;
  background: linear-gradient(180deg, transparent 8%, rgba(20, 184, 166, 0.35) 50%, transparent 92%);
  min-height: 100%;
}

.before-after-label {
  margin: 0 0 0.4rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.before-after--before .before-after-label {
  color: #fca5a5;
}

.before-after--after .before-after-label {
  color: var(--accent-bright);
}

.before-after-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-after-list li {
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 0.28rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.3;
}

.before-after-list li:last-child {
  margin-bottom: 0;
}

.before-after--before .before-after-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 800;
}

.before-after--after .before-after-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 800;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 380px);
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .pricing-layout {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  padding: 1.65rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-accent);
  background: linear-gradient(160deg, rgba(20, 184, 166, 0.1) 0%, var(--bg-elevated) 48%);
  box-shadow:
    0 0 0 1px rgba(20, 184, 166, 0.08),
    0 28px 56px rgba(0, 0, 0, 0.48),
    0 0 80px rgba(20, 184, 166, 0.06);
}

.pricing-card.pricing-card--main {
  background: linear-gradient(160deg, rgba(20, 184, 166, 0.17) 0%, rgba(20, 26, 32, 0.98) 42%, var(--bg-elevated) 88%);
  border-color: rgba(45, 212, 191, 0.42);
  box-shadow:
    0 0 0 1px rgba(20, 184, 166, 0.12),
    0 32px 64px rgba(0, 0, 0, 0.52),
    0 0 72px rgba(20, 184, 166, 0.08);
}

.pricing-card--main .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
  margin: 0 0 0.35rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.25rem;
}

.price-row .amount {
  font-size: clamp(2.2rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.per {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.pricing-lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.typical-setup {
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.typical-setup-h {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.typical-setup-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.typical-setup-list li {
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
}

.typical-setup-list li:last-child {
  margin-bottom: 0;
}

.typical-setup-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: 800;
}

.satisfaction {
  margin: 0 0 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(20, 184, 166, 0.22);
  background: rgba(20, 184, 166, 0.06);
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.satisfaction strong {
  color: var(--accent-bright);
}

.satisfaction em {
  color: var(--fg);
  font-style: normal;
  font-weight: 600;
}

.pricing-foot {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted2);
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.pricing-actions .btn {
  flex: 1;
  min-width: 120px;
}

.pricing-side {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.compare-card {
  padding: 1.1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  flex: 1;
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(20, 184, 166, 0.03);
  transition: box-shadow 0.3s ease, border-color 0.22s ease, transform 0.26s var(--ease);
}

.compare-card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(20, 184, 166, 0.12), 0 4px 22px rgba(20, 184, 166, 0.04);
  transform: translateY(-2px);
}

.compare-included {
  border-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #050608 0%, #080b10 100%);
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -12px 32px rgba(0, 0, 0, 0.35);
}

.compare-h {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

.compare-included .compare-h {
  color: var(--accent-bright);
}

.compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.45rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.35;
}

.compare-list-yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: 700;
  font-size: 0.75rem;
}

.pricing-sla {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-sla-h {
  margin: 0 0 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
}

.pricing-sla-grid {
  display: grid;
  gap: 0.38rem 0.75rem;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 340px) {
  .pricing-sla-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-sla-item {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  padding: 0.38rem 0.42rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
}

.pricing-sla-k {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted2);
}

.pricing-sla-v {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--fg);
}

.pricing-sla-v em {
  font-style: normal;
  color: var(--accent-bright);
  font-weight: 700;
}

.contact-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
  .contact-top {
    flex-direction: column;
  }

  .contact-top .btn-lg {
    width: 100%;
  }
}

.form-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-block {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-block {
    grid-template-columns: 1fr;
  }
}

.contact-panel {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, var(--bg-elevated) 55%);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.form-group {
  margin-bottom: 0.85rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.88rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.045);
  color: var(--fg);
  font-family: inherit;
  font-size: 0.9rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(0, 0, 0, 0.22);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted2);
  opacity: 0.55;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(20, 184, 166, 0.42);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(20, 184, 166, 0.14),
    0 0 22px rgba(20, 184, 166, 0.06);
}

.form-group textarea {
  min-height: 128px;
  resize: vertical;
}

.form-note {
  font-size: 0.72rem;
  color: var(--muted2);
  margin-top: 0.55rem;
}

.form-note code {
  font-size: 0.85em;
  color: var(--muted);
}

footer.footer-band {
  border-top: 1px solid var(--border);
  background: #070909;
  text-align: center;
  color: var(--muted2);
  font-size: 0.82rem;
}

.footer-copy {
  margin: 0 0 0.45rem;
}

.footer-mini {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.footer-mini a {
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-mini a:hover {
  color: var(--accent-bright);
}

.footer-mini-sep {
  margin: 0 0.4rem;
  opacity: 0.45;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
}

.process-step {
  display: flex;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.05) 0%, var(--bg-elevated) 60%);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(20, 184, 166, 0.04);
  transition: box-shadow 0.3s, border-color 0.2s, transform 0.24s var(--ease);
}

.process-step:hover {
  border-color: rgba(20, 184, 166, 0.28);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(20, 184, 166, 0.1), 0 4px 22px rgba(20, 184, 166, 0.05);
  transform: translateY(-2px);
}

.process-n {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-bright);
  border: 1px solid var(--border-accent);
  background: var(--accent-dim);
}

.process-step h3 {
  margin: 0 0 0.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.25;
}

.process-step p {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted2);
  line-height: 1.4;
}

#process .process-step {
  padding: 1.05rem 1.1rem 1.12rem;
  min-height: 5.35rem;
  align-items: flex-start;
  gap: 0.78rem;
}

#process .process-step h3 {
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
}

#process .process-step p {
  font-size: 0.78rem;
  line-height: 1.52;
  max-width: 46ch;
}

.contact-hint-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-hint-list li {
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 0.4rem;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.35;
}

.contact-hint-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: 800;
}

.contact-hint-list li:last-child {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .mock-tape {
    height: 56px;
    font-size: 7px;
  }

  .mockup-body {
    min-height: auto;
  }
}

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

  .desk-ticker__sep {
    animation: none !important;
    opacity: 0.42 !important;
  }

  .desk-spark__line {
    animation: none !important;
  }

  .desk-pill__dot {
    animation: none !important;
  }

  .cli-cursor {
    animation: none !important;
    opacity: 0.65;
  }

  .bg-layer::after {
    opacity: 0.12;
  }

  .mockup-window {
    animation: none !important;
  }

  .hero-mockup .mockup-window {
    animation: none !important;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.04),
      0 24px 56px rgba(0, 0, 0, 0.55),
      0 0 28px rgba(20, 184, 166, 0.03) !important;
  }

  .mockup-window::before {
    animation: none !important;
  }

  .hero-mockup .mockup-window::after {
    animation: none !important;
    mix-blend-mode: normal;
    opacity: 0.13 !important;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.042) 3px,
      rgba(255, 255, 255, 0.042) 4px
    );
    background-size: auto;
    background-position: 0 0;
    filter: none;
  }

  .hero-mockup .mockup-window.mockup-window--glitch {
    filter: none !important;
  }

  .contact-desk-rail-chip {
    animation: none !important;
  }

  #mock-book {
    animation: none !important;
  }

  .live-dot,
  .hero-badge-online,
  .mock-ws-pulse,
  .mock-tape-live,
  .mock-tape-live-wrap::before {
    animation: none !important;
  }

  .mock-row--tob-bid,
  .mock-row--tob-ask {
    animation: none !important;
  }

  #mock-spread.mock-spread--tick {
    animation: none !important;
  }

  .mock-tape-line {
    animation: none !important;
  }

  .bg-glow {
    opacity: 0.28;
  }

  .trial-callout:hover,
  .card:hover,
  .compare-card:hover,
  .pain-tile:hover,
  .exchange-pill:hover,
  .process-step:hover,
  .manage-list li:hover,
  .band-soft .process-step:hover,
  .band-soft .manage-list li:hover {
    transform: none !important;
  }

  .hero-mockup {
    transform: none !important;
  }

  .desk-ticker-wrap {
    animation: none !important;
  }

  .contact-desk-spark__line {
    animation: none !important;
  }

  .terminal-panel--subtle-flicker {
    animation: none !important;
  }

  .desk-pill--live .desk-pill__dot {
    animation: none !important;
  }

  .hero-readout-led,
  .contact-desk-op-dot {
    animation: none !important;
  }
}

/* Operational UI layer: hero readout, tonal cards, desk grids, contact intake */
.hero-readout {
  margin-top: 1.15rem;
  padding: 0.55rem 0.65rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(165deg, rgba(12, 18, 22, 0.92) 0%, rgba(4, 6, 8, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 10px 36px rgba(0, 0, 0, 0.45);
}

.hero-readout.terminal-panel[data-panel] {
  padding-top: 1.75rem;
}

.hero-readout-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  flex-wrap: wrap;
}

.hero-readout-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.55);
  animation: heroReadoutLed 1.8s ease-in-out infinite;
}

@keyframes heroReadoutLed {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

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

.hero-readout-kicker {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
}

.hero-readout-rotor {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: rgba(148, 163, 184, 0.55);
}

.hero-readout-metrics {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.45;
  color: #a8b8c8;
  letter-spacing: 0.02em;
}

.hero-readout-tape {
  margin-top: 0.45rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  max-height: 4.1rem;
  overflow: hidden;
  mask-image: linear-gradient(180deg, black 55%, transparent 100%);
}

.hero-readout-tape-line {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(148, 163, 184, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: heroTapeIn 0.45s var(--ease) both;
}

@keyframes heroTapeIn {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.terminal-panel--subtle-flicker {
  animation: panelMicroFlicker 9s steps(1, end) infinite;
}

@keyframes panelMicroFlicker {
  0%,
  94%,
  100% {
    opacity: 1;
  }

  95% {
    opacity: 0.92;
  }

  96% {
    opacity: 0.98;
  }
}

.desk-pill--live .desk-pill__dot {
  animation: deskWsDotPulse 2.4s ease-in-out infinite;
}

@keyframes deskWsDotPulse {
  0%,
  100% {
    opacity: 0.75;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.45);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.75);
  }
}

.card--tone-teal {
  background: linear-gradient(165deg, rgba(20, 184, 166, 0.09) 0%, var(--bg-elevated) 58%);
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(20, 184, 166, 0.1),
    0 0 28px rgba(20, 184, 166, 0.05);
}

.card--tone-matte {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, #0a0c10 60%);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.32);
}

.card--tone-blue {
  background: linear-gradient(165deg, rgba(99, 102, 241, 0.07) 0%, var(--bg-elevated) 58%);
  border-color: rgba(129, 140, 248, 0.18);
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(99, 102, 241, 0.08);
}

.card--tone-neutral {
  background: var(--bg-elevated);
  border-color: rgba(255, 255, 255, 0.07);
}

.card--tone-warm {
  background: linear-gradient(165deg, rgba(251, 113, 133, 0.06) 0%, var(--bg-elevated) 58%);
  border-color: rgba(251, 113, 133, 0.14);
}

.card--tone-teal-strong {
  background: linear-gradient(165deg, rgba(20, 184, 166, 0.12) 0%, var(--bg-elevated) 55%);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(20, 184, 166, 0.14),
    0 0 36px rgba(20, 184, 166, 0.06);
}

@media (min-width: 900px) {
  #why .grid-features--desk {
    grid-template-columns: repeat(12, 1fr);
    gap: 0.65rem 0.72rem;
  }

  #why .grid-features--desk .card:nth-child(1) {
    grid-column: span 7;
  }

  #why .grid-features--desk .card:nth-child(2) {
    grid-column: span 5;
  }

  #why .grid-features--desk .card:nth-child(3) {
    grid-column: span 4;
  }

  #why .grid-features--desk .card:nth-child(4) {
    grid-column: span 4;
    transform: translateY(5px);
  }

  #why .grid-features--desk .card:nth-child(5) {
    grid-column: span 4;
  }

  #why .grid-features--desk .card:nth-child(6) {
    grid-column: span 8;
    margin-top: 0.15rem;
  }
}

@media (max-width: 899px) {
  #why .grid-features--desk .card {
    transform: none !important;
  }
}

#process .process-steps--asymmetric {
  grid-template-columns: repeat(12, 1fr);
  gap: 0.72rem 0.65rem;
}

#process .process-steps--asymmetric .process-step:nth-child(1) {
  grid-column: span 12;
}

#process .process-steps--asymmetric .process-step:nth-child(2) {
  grid-column: span 6;
}

#process .process-steps--asymmetric .process-step:nth-child(3) {
  grid-column: span 6;
}

#process .process-steps--asymmetric .process-step:nth-child(4) {
  grid-column: span 7;
}

#process .process-steps--asymmetric .process-step:nth-child(5) {
  grid-column: span 5;
  transform: translateY(4px);
}

@media (max-width: 699px) {
  #process .process-steps--asymmetric {
    grid-template-columns: 1fr;
  }

  #process .process-steps--asymmetric .process-step {
    grid-column: span 12 !important;
    transform: none !important;
  }
}

.manage-list li.manage-row--tone-teal {
  background: linear-gradient(165deg, rgba(20, 184, 166, 0.08) 0%, var(--bg-elevated) 70%);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(20, 184, 166, 0.08);
}

.manage-list li.manage-row--tone-matte {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.025) 0%, #0a0c10 65%);
}

.manage-list li.manage-row--tone-blue {
  background: linear-gradient(165deg, rgba(99, 102, 241, 0.07) 0%, var(--bg-elevated) 70%);
  border-color: rgba(129, 140, 248, 0.15);
}

.manage-list li.manage-row--tone-neutral {
  background: var(--bg-elevated);
  border-color: rgba(255, 255, 255, 0.07);
}

.manage-list li.manage-row--tone-warm {
  background: linear-gradient(165deg, rgba(251, 113, 133, 0.05) 0%, var(--bg-elevated) 70%);
  border-color: rgba(251, 113, 133, 0.12);
}

.contact-inline-hint {
  margin: 0 0 1.1rem;
  max-width: 46rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
}

.contact-inline-hint strong {
  color: var(--fg);
  font-weight: 600;
}

.contact-block--desk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 960px) {
  .contact-block--desk {
    grid-template-columns: 1fr;
  }
}

.contact-desk {
  padding: 0.75rem 0.85rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(16, 20, 26, 0.95) 0%, rgba(6, 8, 10, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 14px 44px rgba(0, 0, 0, 0.45);
}

.contact-desk.terminal-panel[data-panel] {
  padding-top: 2rem;
}

.contact-desk-banner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.contact-desk-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.45);
  animation: heroReadoutLed 2.2s ease-in-out infinite;
}

.contact-desk-banner-k {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
}

.contact-desk-banner-v {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: #e2e8f0;
}

.contact-desk-sub {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  color: var(--muted2);
  line-height: 1.35;
}

.contact-desk-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 0 0 0.65rem;
  min-height: 1.35rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-desk-rail-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  padding: 0.1rem 0.38rem 0.12rem;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.32);
  color: #cbd5e1;
  font-weight: 600;
  animation: railChipIn 0.42s var(--ease, ease-out) both;
}

.contact-desk-rail-chip__arrow {
  opacity: 0.45;
  font-size: 0.85em;
  transform: translateY(-0.04em);
}

.contact-desk-rail-chip--ack {
  border-color: rgba(52, 211, 153, 0.38);
  color: #86efac;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.08);
}

.contact-desk-rail-chip--pending {
  border-color: rgba(251, 191, 36, 0.42);
  color: #fde68a;
}

.contact-desk-rail-chip--live {
  border-color: rgba(45, 212, 191, 0.42);
  color: #5eead4;
  box-shadow: 0 0 12px rgba(20, 184, 166, 0.12);
}

.contact-desk-rail-chip--route {
  border-style: dashed;
  border-color: rgba(148, 163, 184, 0.35);
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@keyframes railChipIn {
  from {
    opacity: 0;
    transform: translateY(3px);
  }

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

.contact-desk-section {
  margin-bottom: 0.75rem;
}

.contact-desk-section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

@media (max-width: 420px) {
  .contact-desk-section--split {
    grid-template-columns: 1fr;
  }
}

.contact-desk-h {
  margin: 0 0 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
}

.contact-desk-check {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-desk-check li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.32rem;
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.35;
}

.contact-desk-check-ico {
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.25);
}

.contact-desk-check-ico--on {
  border-color: rgba(20, 184, 166, 0.45);
  background: rgba(20, 184, 166, 0.15);
  box-shadow: 0 0 8px rgba(20, 184, 166, 0.2);
}

.contact-desk-mono {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  line-height: 1.4;
  color: #9db0c4;
}

.contact-desk-op {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.28);
}

.contact-desk-op-dot {
  width: 8px;
  height: 8px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  animation: deskWsDotPulse 2.8s ease-in-out infinite;
}

.contact-desk-op-k {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted2);
}

.contact-desk-op-v {
  margin: 0.1rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg);
}

.contact-desk-op-v em {
  font-style: normal;
  color: var(--accent-bright);
  font-weight: 700;
}

.contact-desk-spark {
  margin-top: 0.35rem;
  height: 32px;
  opacity: 0.55;
}

.contact-desk-spark__svg {
  width: 100%;
  height: 100%;
}

.contact-desk-spark__line {
  fill: none;
  stroke: rgba(148, 163, 184, 0.45);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 28 80;
  animation: contactDeskSpark 5s linear infinite;
}

@keyframes contactDeskSpark {
  0% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -120;
  }
}

.exchange-pill,
.pain-tile,
.process-step,
.compare-card {
  transition:
    box-shadow 0.12s var(--ease-tap),
    border-color 0.1s var(--ease-tap),
    transform 0.1s var(--ease-tap);
}
