:root {
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --bg: #f5f1ea;
  --bg-deep: #cdc6b8;
  --bg-stack: #f0ebe3;
  --ink: #070707;
  --ink-mid: rgba(7, 7, 7, 0.62);
  --ink-soft: rgba(7, 7, 7, 0.52);
  --accent: #0f6b52;
  --accent-bright: #2fd99a;
  --accent-glow: rgba(47, 217, 154, 0.45);
  --accent-soft: rgba(15, 107, 82, 0.12);
  --danger: #c41e14;
  --danger-soft: rgba(196, 30, 20, 0.14);
  --card: #fdfcfa;
  --border: #b8ae9e;
  --shadow-sm: 0 4px 14px rgba(7, 7, 7, 0.06);
  --shadow-md: 0 12px 36px rgba(7, 7, 7, 0.1);
  --shadow-lg: 0 22px 56px rgba(7, 7, 7, 0.14);
  --shadow-xl: 0 32px 72px rgba(7, 7, 7, 0.18);
  --shadow-cta: 0 10px 40px rgba(7, 7, 7, 0.28), 0 2px 0 rgba(255, 255, 255, 0.06) inset;
  --shadow-growth: 0 36px 88px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(47, 217, 154, 0.35), 0 0 48px rgba(47, 217, 154, 0.18);
  --radius: 2px;
  --radius-sharp: 0px;
  --max: 1180px;
  --section-tight: 44px;
  --section-mid: 56px;
  --rhythm: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body.page-flow {
  font-family: var(--font-sans);
  background: #dcd5c8;
  background-image: linear-gradient(180deg, #f0ebe3 0%, var(--bg) 22%, #cfc8bb 55%, #e8e2da 78%, #f2ede6 100%);
  background-size: 100% 420vh;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 480;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.serif {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--section-mid) 0;
  position: relative;
}

.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(7, 7, 7, 0.34);
  margin-bottom: 10px;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-weight: 880;
  letter-spacing: -0.038em;
  line-height: 1.03;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  margin-bottom: 10px;
}

h3 {
  font-size: 1.05rem;
  font-weight: 820;
  margin-bottom: 6px;
  letter-spacing: -0.022em;
}

.text-body {
  color: var(--ink-mid);
  font-size: 0.96rem;
  font-weight: 520;
}

.text-quiet {
  color: rgba(7, 7, 7, 0.45);
  font-weight: 480;
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(228, 223, 212, 0.96) 0%, rgba(228, 223, 212, 0.88) 100%);
  backdrop-filter: blur(16px) saturate(1.15);
  border-bottom: 1px solid rgba(7, 7, 7, 0.1);
  box-shadow: 0 8px 28px rgba(7, 7, 7, 0.06), 0 1px 0 rgba(255, 255, 255, 0.45) inset;
  transition: box-shadow 0.25s ease;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 11px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 680;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ghost {
  border: 1.5px solid rgba(7, 7, 7, 0.18);
  background: rgba(255, 255, 255, 0.5);
  padding: 9px 16px;
  border-radius: var(--radius-sharp);
  font: inherit;
  font-weight: 720;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.84rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-ghost:active {
  transform: translateY(0);
}

.btn-dark {
  background: linear-gradient(180deg, #121212 0%, #030303 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 11px 20px;
  border-radius: var(--radius-sharp);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
  font-size: 0.86rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: var(--shadow-cta);
  transition: filter 0.15s ease, transform 0.12s ease;
}

.btn-dark:hover {
  filter: brightness(1.07);
}

.btn-dark:active {
  transform: scale(0.98);
}

.announce {
  background: #080808;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(47, 217, 154, 0.2);
}

.announce strong {
  color: var(--accent-bright);
  font-weight: 850;
}

#hero-anchor,
#probleem,
#bewijs,
#uitleg,
#resultaat,
#veiligheid,
#impact,
#pricing,
#cta-final,
#vragen {
  scroll-margin-top: 84px;
}

#probleem .wrap--narrow {
  text-align: center;
}

#probleem .lead-prose {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

#bewijs .h-section,
#bewijs .evidence-note {
  text-align: center;
}

#bewijs .evidence-list {
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.sec-roi .h-section,
.sec-roi .lead-prose--roi {
  text-align: center;
}

.sec-roi .lead-prose--roi {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

@keyframes heroGradientShift {
  0%,
  100% {
    background-position: 0% 40%;
  }
  50% {
    background-position: 100% 60%;
  }
}

.hero--trigger {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 9vw, 88px) 0 clamp(56px, 10vw, 96px);
  text-align: center;
  border-bottom: 1px solid rgba(7, 7, 7, 0.08);
  box-shadow: 0 24px 48px rgba(7, 7, 7, 0.08);
}

.hero-bg-anim {
  position: absolute;
  inset: -20%;
  z-index: 0;
  background: linear-gradient(
    125deg,
    #f4efe8 0%,
    rgba(15, 107, 82, 0.18) 22%,
    #e8dfd4 38%,
    rgba(196, 30, 20, 0.09) 52%,
    #ebe6dc 68%,
    rgba(47, 217, 154, 0.12) 85%,
    #dcd5c8 100%
  );
  background-size: 220% 220%;
  animation: heroGradientShift 22s ease-in-out infinite;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 100px 50px rgba(0, 0, 0, 0.14), inset 0 -40px 80px rgba(0, 0, 0, 0.06);
}

.hero-inner {
  position: relative;
  z-index: 2;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.038;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.hero-title {
  margin: 0 auto;
  max-width: 12ch;
  text-wrap: balance;
  font-size: clamp(2.85rem, 8vw, 4.45rem);
  font-weight: 930;
  letter-spacing: -0.048em;
  line-height: 0.95;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-title__stress {
  color: var(--danger);
  font-size: 1.12em;
}

.hero-title__final {
  font-size: 0.68em;
  font-weight: 780;
  color: rgba(7, 7, 7, 0.38);
  letter-spacing: -0.02em;
}

.hero-decision {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-decision__zone {
  width: 100%;
  max-width: 560px;
  margin-top: clamp(40px, 7vw, 64px);
  margin-bottom: clamp(36px, 6vw, 56px);
  padding: clamp(20px, 4vw, 36px) clamp(16px, 3vw, 28px);
  border: 1px solid rgba(7, 7, 7, 0.06);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.trust-signals li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(7, 7, 7, 0.38);
}

.trust-signals__ico {
  font-size: 0.85rem;
  opacity: 0.85;
}

.input-tool {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, #fff 0%, #f7f5f0 100%);
  border: 2px solid rgba(7, 7, 7, 0.22);
  border-radius: var(--radius-sharp);
  overflow: hidden;
  min-height: 78px;
  box-shadow:
    0 22px 56px rgba(7, 7, 7, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-tool:focus-within {
  border-color: #0a5c46;
  box-shadow:
    0 28px 72px rgba(7, 7, 7, 0.16),
    0 0 0 2px rgba(15, 107, 82, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.input-tool.is-pressed {
  transform: scale(1.008);
  border-color: var(--accent);
}

.input-tool input {
  flex: 1;
  border: none;
  padding: 22px 22px;
  font: inherit;
  font-size: 1.06rem;
  font-weight: 560;
  outline: none;
  min-width: 0;
  background: transparent;
  color: var(--ink);
}

.input-tool input::placeholder {
  color: rgba(7, 7, 7, 0.4);
  font-weight: 520;
}

.input-tool button[type="submit"] {
  background: linear-gradient(180deg, #0d0d0d 0%, #000 100%);
  color: #fff;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 30px;
  font: inherit;
  font-weight: 880;
  font-size: 0.98rem;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.02em;
  border-radius: 0;
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.2);
  transition: filter 0.15s ease, transform 0.1s ease;
}

.input-tool button[type="submit"]:hover {
  filter: brightness(1.12);
}

.input-tool button[type="submit"]:active {
  transform: scale(0.98);
}

.strip-wrap {
  padding-bottom: var(--section-tight);
}

.flow-stage--neutral {
  position: relative;
}

.strip-warn {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  border: 1px solid rgba(196, 30, 20, 0.38);
  background: linear-gradient(165deg, #fff 0%, #fff5f2 100%);
  border-radius: var(--radius-sharp);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 640;
  color: var(--ink);
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.num-loss {
  color: var(--danger);
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--pending.reveal--up {
  opacity: 0;
  transform: translateY(36px);
}

.reveal--pending.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal--pending.reveal--right {
  opacity: 0;
  transform: translateX(40px);
}

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

.sec-problem.flow-stage--light {
  background: linear-gradient(180deg, #faf7f2 0%, #fff 38%, #f5efe6 100%);
  border-top: 1px solid rgba(7, 7, 7, 0.07);
  border-bottom: 1px solid rgba(7, 7, 7, 0.06);
  box-shadow: 0 -16px 48px rgba(7, 7, 7, 0.05);
}

.sec-problem .problem-urgency {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.prob-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: calc(var(--rhythm) + 6px);
}

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

.hit {
  color: var(--ink);
  font-weight: 800;
}

.prob-card--loss {
  background: linear-gradient(155deg, #fff 0%, #f2ebe3 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.92) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.prob-card--loss:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(196, 30, 20, 0.35);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(196, 30, 20, 0.08);
  background: linear-gradient(155deg, #fff 0%, #fff8f5 100%);
}

.prob-card h3 {
  color: var(--ink);
}

.prob-card .ico {
  font-size: 1.45rem;
  line-height: 1;
  filter: grayscale(0.12);
}

.prob-card p {
  font-size: 0.86rem;
  color: var(--ink-mid);
  margin-top: 6px;
  font-weight: 520;
}

.problem-kicker {
  font-size: 1.48rem;
  margin-bottom: 8px;
  line-height: 1.15;
}

.problem-lead {
  max-width: 42rem;
}

.sec-signals.flow-stage--mid {
  background: linear-gradient(180deg, #d4cdc3 0%, #c9c2b7 50%, #bfb8ad 100%);
  border-top: 1px solid rgba(7, 7, 7, 0.09);
  border-bottom: 1px solid rgba(7, 7, 7, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.sig-head-serif {
  font-size: 1.42rem;
  margin-bottom: 8px;
}

.sig-intro {
  max-width: 40rem;
}

.sig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
  gap: 10px;
  margin-top: var(--rhythm);
}

@keyframes sigBorderGlow {
  0%,
  100% {
    border-color: rgba(7, 7, 7, 0.12);
    box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  }
  50% {
    border-color: rgba(47, 217, 154, 0.45);
    box-shadow: 0 8px 28px rgba(47, 217, 154, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

.sig-card--engine {
  background: linear-gradient(180deg, #fff 0%, #f5f2ec 100%);
  border: 1px solid rgba(7, 7, 7, 0.11);
  border-radius: var(--radius-sharp);
  padding: 10px 8px;
  text-align: center;
  box-shadow: var(--shadow-sm), 0 1px 0 rgba(255, 255, 255, 0.88) inset;
  font-weight: 830;
  font-size: 0.78rem;
  line-height: 1.25;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.sig-card--engine::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(47, 217, 154, 0.35) 50%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.sig-card--engine:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15, 107, 82, 0.18), 0 0 24px rgba(47, 217, 154, 0.12);
  animation: sigBorderGlow 2s ease-in-out infinite;
}

.sig-card--engine:hover::before {
  opacity: 1;
}

.sig-card--engine span {
  display: block;
  font-size: 1.28rem;
  margin-bottom: 4px;
}

.sec-steps.flow-stage--dark {
  background: linear-gradient(188deg, #030504 0%, #0f1814 42%, #060908 100%);
  color: #e4e8e6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42);
}

.sec-steps .eyebrow {
  color: rgba(255, 255, 255, 0.36);
}

.sec-steps h2 {
  color: #fff;
}

.sec-steps .serif {
  color: var(--accent-bright);
}

.sec-steps .text-body {
  color: rgba(228, 232, 230, 0.68);
}

.steps-intro {
  font-size: 0.88rem;
  max-width: 28rem;
  margin-bottom: 6px;
}

.sec-steps .steps-intro {
  color: rgba(228, 232, 230, 0.62);
}

.step-head-serif {
  font-size: 1.38rem;
  margin-bottom: 8px;
}

.steps-wrap {
  position: relative;
  margin-top: 22px;
  padding-left: 8px;
}

.steps-line {
  position: absolute;
  left: 52px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(47, 217, 154, 0.55) 0%, rgba(47, 217, 154, 0.15) 50%, rgba(47, 217, 154, 0.35) 100%);
  box-shadow: 0 0 16px rgba(47, 217, 154, 0.25);
}

@media (max-width: 600px) {
  .steps-line {
    left: 28px;
  }
}

.steps {
  position: relative;
  z-index: 1;
}

.step-card--rail {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sharp);
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.step-card--rail:last-child {
  margin-bottom: 0;
}

.step-card--rail:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(47, 217, 154, 0.42);
  transform: translateX(4px);
}

@media (max-width: 600px) {
  .step-card--rail {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }
}

.reveal--pending .step-card--rail {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible .step-card--rail {
  animation: stepCardReveal 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--step-i) * 0.15s);
}

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

.reveal.is-visible .step-card--rail .step-num__inner {
  animation: stepNumIn 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(var(--step-i) * 0.15s + 0.08s);
}

@keyframes stepNumIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.step-num {
  font-weight: 900;
  font-size: clamp(2.55rem, 6vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.step-num__inner {
  display: inline-block;
  color: var(--accent-bright);
  text-shadow: 0 0 44px rgba(47, 217, 154, 0.45);
}

.step-body h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 4px;
}

.step-body p {
  font-size: 0.84rem;
  color: rgba(228, 232, 230, 0.62);
  font-weight: 500;
  line-height: 1.45;
  max-width: 48ch;
}

.sec-report.flow-stage--proof {
  background: linear-gradient(180deg, #faf9f6 0%, #efeae2 100%);
  border-top: 1px solid rgba(7, 7, 7, 0.07);
  box-shadow: 0 -12px 40px rgba(7, 7, 7, 0.06);
}

.report-head-serif {
  font-size: 1.42rem;
  margin-bottom: 8px;
}

.report-intro {
  max-width: 40rem;
  margin-bottom: 8px;
}

.report-lead {
  line-height: 1.6;
  margin-bottom: 10px;
}

.report-strong {
  color: var(--ink);
  font-weight: 880;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: var(--rhythm);
}

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

.val-prop-list {
  list-style: none;
  margin-top: 16px;
  padding: 0;
}

.val-prop-list li {
  position: relative;
  padding: 16px 16px 16px 50px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #fff 0%, #f5f1ea 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sharp);
  font-size: 0.96rem;
  font-weight: 560;
  color: var(--ink);
  box-shadow: var(--shadow-sm), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.val-prop-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.val-prop-list li strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(7, 7, 7, 0.42);
  margin-bottom: 4px;
  font-weight: 800;
}

.val-prop-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sharp);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(15, 107, 82, 0.15);
}

.mock-browser--live {
  background: var(--card);
  border: 1px solid rgba(7, 7, 7, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl), 0 1px 0 rgba(255, 255, 255, 0.92) inset;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mock-browser--live:hover {
  transform: translateY(-2px);
  box-shadow: 0 36px 80px rgba(7, 7, 7, 0.16), 0 0 0 1px rgba(15, 107, 82, 0.12);
}

.mock-top {
  background: linear-gradient(180deg, #161918 0%, #0a0c0b 100%);
  color: #fff;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 640;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mock-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}

.mock-body--fade {
  padding: 20px;
  animation: mockDataIn 0.9s ease 0.15s both;
}

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

.mock-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.38);
  margin-bottom: 8px;
  font-weight: 750;
}

.mock-score {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.mock-store-name {
  font-weight: 820;
  font-size: 1.08rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.mock-meta {
  font-size: 0.76rem;
  color: rgba(17, 17, 17, 0.42);
  margin-top: 4px;
}

.mock-score-right {
  text-align: right;
}

.mock-score-val {
  font-size: 2.55rem;
  font-weight: 920;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 28px rgba(47, 217, 154, 0.35), 0 0 60px rgba(15, 107, 82, 0.15);
  letter-spacing: -0.04em;
}

.mock-valid {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 850;
  letter-spacing: 0.06em;
}

.mock-issue {
  font-size: 0.72rem;
  margin-bottom: 10px;
  line-height: 1.45;
}

.mock-issue--bad strong {
  color: #c0392b;
}

.mock-issue--warn strong {
  color: #e67e22;
}

.mock-fix {
  opacity: 0.78;
}

.mock-table {
  width: 100%;
  font-size: 0.72rem;
  border-collapse: collapse;
  margin-top: 12px;
}

.mock-table th,
.mock-table td {
  border: 1px solid var(--border);
  padding: 8px;
  text-align: left;
}

.mock-table th {
  background: #e8e3d9;
  font-weight: 830;
  color: var(--ink);
}

.bureau-lead {
  font-size: 0.95rem;
  color: rgba(17, 17, 17, 0.76);
  line-height: 1.65;
  margin-bottom: 16px;
}

.bureau-list {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(17, 17, 17, 0.72);
  padding-left: 1rem;
}

.bureau-cta-wrap {
  margin-top: 20px;
}

.sec-bureau.flow-stage--mid {
  background: linear-gradient(180deg, #e8e2da 0%, #d9d3ca 100%);
  border-top: 1px solid rgba(7, 7, 7, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.agency-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: var(--rhythm);
}

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

.agency-card {
  background: linear-gradient(155deg, #141a17, #060908);
  color: #eee;
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid rgba(47, 217, 154, 0.28);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(47, 217, 154, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.agency-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), 0 0 56px rgba(47, 217, 154, 0.14);
}

.agency-card h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 820;
}

.agency-card .big {
  font-size: 2.05rem;
  font-weight: 900;
  color: var(--accent-bright);
  letter-spacing: -0.03em;
}

.big-suffix {
  font-size: 1rem;
  opacity: 0.6;
}

.agency-meta {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-top: 8px;
}

.agency-card ul {
  margin-top: 14px;
  list-style: none;
  font-size: 0.86rem;
  line-height: 1.62;
  font-weight: 520;
  color: rgba(255, 255, 255, 0.84);
}

.agency-card li::before {
  content: "✓ ";
  color: var(--accent-bright);
  font-weight: 900;
}

.agency-foot {
  font-size: 0.72rem;
  opacity: 0.45;
  margin-top: 16px;
}

.sec-roi.flow-stage--viz {
  background: linear-gradient(180deg, #fff 0%, #f4f1eb 55%, #fff 100%);
  border-top: 1px solid rgba(7, 7, 7, 0.06);
  background-image: radial-gradient(circle at 50% 30%, rgba(47, 217, 154, 0.06), transparent 45%), linear-gradient(180deg, #fff 0%, #f4f1eb 100%);
}

.roi-section-lead {
  max-width: 36rem;
  margin-bottom: 20px;
}

.roi-card {
  background: var(--card);
  border: 1px solid rgba(7, 7, 7, 0.11);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
}

.roi-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

@media (max-width: 500px) {
  .roi-fields {
    grid-template-columns: 1fr;
  }
}

.roi-fields label {
  display: block;
  font-size: 0.7rem;
  font-weight: 820;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(7, 7, 7, 0.45);
}

.roi-fields input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sharp);
  font: inherit;
  font-weight: 620;
  background: #f5f2eb;
  color: var(--ink);
}

.roi-result {
  background: radial-gradient(circle at 40% 25%, rgba(47, 217, 154, 0.18), transparent 50%), #030303;
  color: #fff;
  border-radius: var(--radius-sharp);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 18px 48px rgba(0, 0, 0, 0.35);
}

@media (max-width: 600px) {
  .roi-result {
    grid-template-columns: 1fr;
  }
}

.roi-cell {
  padding: 6px 4px;
}

.roi-cell--hero {
  position: relative;
  border-radius: var(--radius-sharp);
  background: rgba(47, 217, 154, 0.08);
  box-shadow: 0 0 32px rgba(47, 217, 154, 0.15), inset 0 0 24px rgba(47, 217, 154, 0.06);
}

.roi-val {
  font-size: 1.42rem;
  font-weight: 920;
  color: var(--accent-bright);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.roi-result .val.white {
  color: #fff;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
}

.roi-result .lbl {
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.58;
  margin-top: 8px;
  font-weight: 720;
}

.roi-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(7, 7, 7, 0.42);
  margin-top: 12px;
  font-weight: 620;
}

.sec-pricing.flow-stage--decision {
  padding: var(--section-mid) 0 calc(var(--section-mid) + 16px);
  background: radial-gradient(ellipse 100% 80% at 50% -10%, rgba(47, 217, 154, 0.14), transparent 55%), linear-gradient(190deg, #020403 0%, #0f1814 38%, #050807 100%);
  color: #e4e8e6;
  border-top: 1px solid rgba(47, 217, 154, 0.28);
  border-bottom: 1px solid rgba(0, 0, 0, 0.55);
  box-shadow: 0 -28px 72px rgba(0, 0, 0, 0.45);
}

.sec-pricing h2 {
  color: #fff;
}

.sec-pricing .eyebrow {
  color: rgba(255, 255, 255, 0.36);
}

.pricing-head {
  margin-bottom: 8px;
}

.pricing-sub {
  margin-bottom: clamp(28px, 5vw, 44px);
  font-size: 0.88rem;
}

.plan-default {
  position: relative;
  border-radius: var(--radius);
  padding: 26px 22px 20px;
  border: 2px solid rgba(47, 217, 154, 0.52);
  background: linear-gradient(168deg, rgba(28, 115, 85, 0.42) 0%, rgba(5, 14, 11, 0.97) 46%, #030806 100%);
  box-shadow: var(--shadow-growth);
  margin-bottom: clamp(28px, 5vw, 40px);
}

.plan-default__ribbon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.52rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 18px;
  background: var(--accent-bright);
  color: #03160f;
  border-radius: 0 var(--radius) 0 var(--radius);
  box-shadow: -4px 6px 22px rgba(47, 217, 154, 0.35);
}

.plan-default__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.plan-default__name {
  display: block;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(215, 255, 235, 0.88);
  margin-bottom: 4px;
}

.plan-default__price {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 920;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 0 28px rgba(47, 217, 154, 0.22);
}

.plan-default__price span {
  font-size: 0.42em;
  font-weight: 680;
  opacity: 0.48;
  margin-left: 6px;
}

.plan-default__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: var(--radius-sharp);
  font-size: 0.82rem;
  font-weight: 880;
  text-decoration: none;
  color: #03160f;
  background: linear-gradient(180deg, #48f0c8, #17905e);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 40px rgba(23, 144, 94, 0.45), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transition: transform 0.15s ease, filter 0.15s ease;
  white-space: nowrap;
}

.plan-default__cta:hover {
  filter: brightness(1.06);
}

.plan-default__cta:active {
  transform: scale(0.98);
}

.plan-default__bul {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-default__bul li {
  position: relative;
  padding: 7px 0 7px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(228, 232, 230, 0.88);
}

.plan-default__bul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: var(--radius-sharp);
  background: rgba(47, 217, 154, 0.85);
}

.pricing-alt-title {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plans-alt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

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

.plan-min {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.38);
}

.plan-min__n {
  flex: 1;
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(228, 232, 230, 0.42);
}

.plan-min__p {
  font-size: 0.92rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.72);
  font-variant-numeric: tabular-nums;
}

.plan-min a {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(47, 217, 154, 0.65);
  text-decoration: none;
  padding: 4px 8px;
  transition: color 0.15s ease;
}

.plan-min a:hover {
  color: var(--accent-bright);
}

@media (max-width: 560px) {
  .plan-default__row {
    flex-direction: column;
    align-items: stretch;
  }

  .plan-default__cta {
    width: 100%;
    justify-content: center;
  }
}

.sec-audience.flow-stage--light {
  background: linear-gradient(180deg, #f7f3ec 0%, var(--bg) 100%);
  border-top: 1px solid rgba(7, 7, 7, 0.05);
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: var(--rhythm);
}

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

.aud-card {
  background: linear-gradient(180deg, #fff 0%, #f4efe8 100%);
  border: 1px solid rgba(7, 7, 7, 0.09);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aud-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.aud-desc {
  font-size: 0.88rem;
  color: rgba(17, 17, 17, 0.68);
}

.aud-card .tag {
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.aud-card ul {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
  font-size: 0.86rem;
  color: var(--ink-mid);
  font-weight: 540;
}

.aud-card li {
  margin-bottom: 6px;
  padding-left: 14px;
  position: relative;
}

.aud-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.flow-stage--ticker.ticker {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  color: rgba(7, 7, 7, 0.36);
  font-weight: 780;
  border-top: 1px solid rgba(7, 7, 7, 0.08);
  border-bottom: 1px solid rgba(7, 7, 7, 0.08);
  background: rgba(255, 255, 255, 0.42);
}

.sec-proof-row.flow-stage--proof {
  background: #faf9f6;
  border-bottom: 1px solid rgba(7, 7, 7, 0.06);
  padding: var(--section-tight) 0;
  box-shadow: 0 8px 32px rgba(7, 7, 7, 0.04);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 0;
}

.proof-row--tight {
  gap: 8px;
}

.proof-row--tight .proof-item {
  padding: 12px;
}

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

@media (max-width: 500px) {
  .proof-row {
    grid-template-columns: 1fr;
  }
}

.proof-item {
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sharp);
  padding: 16px;
  box-shadow: var(--shadow-sm), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
  font-size: 0.84rem;
  font-weight: 540;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.proof-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  font-weight: 820;
  color: var(--ink);
}

.proof-sub {
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.86rem;
}

.proof-ico {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sharp);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(15, 107, 82, 0.12);
}

.sec-faq.flow-stage--neutral {
  background: linear-gradient(180deg, #efe9df 0%, #e5dfd6 100%);
  border-top: 1px solid rgba(7, 7, 7, 0.06);
}

.faq-serif {
  font-size: 1.35rem;
}

.faq-list {
  margin-top: var(--rhythm);
  max-width: 720px;
}

details.faq-item {
  background: #fff;
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: var(--radius-sharp);
  margin-bottom: 8px;
  padding: 0 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

details.faq-item:hover {
  box-shadow: var(--shadow-md);
}

details.faq-item summary {
  cursor: pointer;
  padding: 15px 8px;
  font-weight: 820;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-a {
  padding: 0 8px 15px;
  font-size: 0.88rem;
  color: var(--ink-mid);
  font-weight: 520;
  border-top: 1px solid transparent;
  line-height: 1.55;
}

details[open].faq-item .faq-a {
  border-top-color: var(--border);
  padding-top: 10px;
}

.final-cta.flow-stage--terminal {
  text-align: center;
  padding: clamp(72px, 12vw, 112px) 24px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 120%, rgba(47, 217, 154, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(154, 26, 18, 0.18), transparent 45%),
    linear-gradient(188deg, #000 0%, #060a08 45%, #020302 100%);
  border-top: 1px solid rgba(47, 217, 154, 0.35);
  color: #fff;
  box-shadow: 0 -32px 80px rgba(0, 0, 0, 0.55);
}

.final-cta .eyebrow {
  color: rgba(160, 255, 220, 0.48);
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(1.95rem, 5vw, 3rem);
  font-weight: 930;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(28px, 5vw, 44px);
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.55);
}

.final-cta .sub {
  font-size: clamp(1.38rem, 3vw, 2.05rem);
  margin-bottom: 12px;
  color: var(--accent-bright);
  font-weight: 560;
}

.final-cta .lead {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 560;
  margin-bottom: 28px;
  font-size: 1.02rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-xl--terminal {
  background: linear-gradient(180deg, #48ffd4 0%, #138a54 100%);
  color: #010806;
  border: 2px solid rgba(255, 255, 255, 0.14);
  padding: 22px 48px;
  border-radius: var(--radius-sharp);
  font: inherit;
  font-weight: 930;
  font-size: 1.14rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.025em;
  box-shadow:
    0 22px 56px rgba(21, 146, 95, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-xl--terminal:hover {
  filter: brightness(1.06);
  transform: translateY(-3px) scale(1.02);
}

.btn-xl--terminal:active {
  transform: scale(0.98);
}

.final-urgency {
  margin-top: clamp(20px, 4vw, 28px);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 120, 100, 0.85);
}

.final-note {
  margin-top: 14px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.38);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 560;
}

footer {
  text-align: center;
  padding: 26px 24px 36px;
  font-size: 0.74rem;
  color: rgba(7, 7, 7, 0.36);
  font-weight: 620;
  background: var(--bg);
  border-top: 1px solid rgba(7, 7, 7, 0.07);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg-anim {
    animation: none;
  }
}

/* ——— Elite homepage ——— */
.page-elite {
  font-family: var(--font-sans);
  font-weight: 450;
  letter-spacing: -0.01em;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.92em;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-text {
  font-size: 0.92rem;
}

.nav-links--elite {
  gap: 12px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.btn-ghost--nav {
  font-weight: 650;
}

.site-header--elite .nav-inner {
  padding: 12px 24px;
}

.hero--elite {
  padding: clamp(52px, 10vw, 100px) 0 clamp(40px, 7vw, 72px);
}

.hero-bg-anim--elite {
  background: linear-gradient(
    135deg,
    #0a0a0a 0%,
    #121c18 18%,
    #1a2620 32%,
    #0d1512 55%,
    #080808 72%,
    #141f1a 100%
  );
  background-size: 160% 160%;
  opacity: 1;
  animation-duration: 36s;
}

.hero-vignette--elite {
  box-shadow:
    inset 0 0 120px 60px rgba(0, 0, 0, 0.45),
    inset 0 -80px 100px rgba(0, 0, 0, 0.35);
}

.hero-inner--elite {
  max-width: 920px;
  margin: 0 auto;
}

.hero-title--elite {
  max-width: none;
  font-size: clamp(2.2rem, 5.2vw, 3.55rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #f5f1ea;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

.hero-title__line {
  font-weight: 680;
  color: rgba(245, 241, 234, 0.72);
}

.hero-title__strike {
  display: inline-block;
  margin-top: 0.12em;
  font-weight: 820;
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
  text-decoration-color: rgba(47, 217, 154, 0.55);
}

.hero-sub--elite {
  margin-top: clamp(20px, 3vw, 28px);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: rgba(245, 241, 234, 0.62);
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}

.hero-decision__zone--elite {
  margin-top: clamp(36px, 6vw, 52px);
  margin-bottom: 0;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  max-width: 640px;
}

.hero-micro {
  margin-top: 14px;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.38);
}

.input-tool--elite {
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #fff 0%, #f3f0ea 100%);
  min-height: 72px;
}

.input-tool--elite input {
  font-weight: 540;
}

.input-tool--elite button[type="submit"] {
  padding: 20px 28px;
  font-weight: 780;
}

.trust-strip {
  padding: 20px 24px 36px;
  position: relative;
  z-index: 2;
}

.trust-strip__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(7, 7, 7, 0.08);
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  border-radius: var(--radius);
}

@media (max-width: 820px) {
  .trust-strip__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .trust-strip__list {
    grid-template-columns: 1fr;
  }
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(7, 7, 7, 0.48);
}

.trust-strip__ico {
  display: flex;
  color: var(--accent);
  opacity: 0.9;
}

.flow-stage--dark-panel {
  background: linear-gradient(185deg, #050807 0%, #0c1411 42%, #060908 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.38);
}

.h-elite {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 720;
  letter-spacing: -0.038em;
  line-height: 1.12;
  margin-bottom: 14px;
}

.h-elite--light {
  color: #f2f3f2;
}

.h-elite--small {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.sec-lead {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 42ch;
}

.sec-lead--on-dark {
  color: rgba(228, 232, 230, 0.58);
}

.sec-lead--tight {
  margin-bottom: 22px;
}

.sec-lead--roi {
  margin-bottom: 20px;
  max-width: none;
}

.sec-lead--gevolg {
  font-size: 1.02rem;
  max-width: 48ch;
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

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

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

.telemetry-cell {
  background: rgba(10, 14, 12, 0.92);
  padding: 22px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.telemetry-label {
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.35;
}

.telemetry-val {
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 780;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.telemetry-dot {
  opacity: 0.55;
}

.telemetry-foot {
  margin-top: 16px;
  font-size: 0.68rem;
  font-weight: 620;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.32);
}

.reality-line {
  padding: clamp(36px, 6vw, 56px) 24px;
  background: #faf9f6;
  border-top: 1px solid rgba(7, 7, 7, 0.06);
  border-bottom: 1px solid rgba(7, 7, 7, 0.06);
}

.reality-line__text {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.45;
  color: var(--ink);
  max-width: 52ch;
  margin: 0 auto;
  text-align: center;
}

.flow-stage--system {
  background: linear-gradient(188deg, #020403 0%, #0d1714 48%, #030605 100%);
  border-top: 1px solid rgba(47, 217, 154, 0.12);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42);
}

.system-rows {
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.system-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  align-items: start;
}

.system-row:last-child {
  border-bottom: none;
}

@media (max-width: 540px) {
  .system-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.system-k {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(47, 217, 154, 0.75);
}

.system-v {
  font-size: 0.92rem;
  font-weight: 520;
  color: rgba(232, 236, 234, 0.82);
  line-height: 1.5;
}

.system-close {
  margin-top: 24px;
  font-size: 0.88rem;
  font-weight: 550;
  color: rgba(228, 232, 230, 0.45);
  line-height: 1.55;
}

.output-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 16px 0 20px;
  padding: 0;
}

.output-bullets li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  background: #0a0a0a;
  color: #e8ebe9;
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: var(--radius-sharp);
}

.mock-browser--elite {
  margin-top: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 7, 7, 0.16);
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(15, 107, 82, 0.08),
    0 0 80px rgba(47, 217, 154, 0.06);
  background: #0c0c0c;
}

.mock-top--elite {
  background: linear-gradient(180deg, #0f0f0f 0%, #050505 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
  gap: 8px;
}

.mock-top--elite .mock-dots span:nth-child(1) {
  background: #ff5f56;
}
.mock-top--elite .mock-dots span:nth-child(2) {
  background: #febc2e;
}
.mock-top--elite .mock-dots span:nth-child(3) {
  background: #28c840;
}

.mock-url {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.42);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-body--elite {
  background: linear-gradient(180deg, #faf9f6 0%, #ebe6dc 100%);
  padding: 22px;
}

.mock-status {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: var(--radius-sharp);
}

.mock-status--ok {
  background: rgba(15, 107, 82, 0.14);
  color: var(--accent);
  border: 1px solid rgba(47, 217, 154, 0.35);
}

.mock-table--elite {
  font-size: 0.68rem;
}

.mock-table--elite th,
.mock-table--elite td {
  vertical-align: top;
}

.sec-precisie .prec-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .sec-precisie .prec-cards {
    grid-template-columns: 1fr;
  }
}

.prec-card {
  padding: 18px 20px;
  background: linear-gradient(165deg, #fff 0%, #f6f2ea 100%);
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.prec-card p {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
}

.prec-close {
  margin-top: 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(7, 7, 7, 0.55);
  line-height: 1.5;
}

.roi-card--elite {
  max-width: 720px;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 7, 7, 0.1);
  box-shadow: var(--shadow-lg);
}

.roi-disclaimer {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(7, 7, 7, 0.38);
  margin-bottom: 16px;
}

.pricing-hero-title {
  margin-bottom: 8px;
}

.text-quiet-pricing {
  color: rgba(228, 232, 230, 0.48);
  font-size: 0.88rem;
  margin-bottom: 14px;
  max-width: 42ch;
}

.wrap--pricing {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-nudge {
  margin: 0 auto 28px;
  max-width: 44ch;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.45;
  color: rgba(193, 255, 225, 0.82);
  text-align: center;
}

.pricing-trust-row {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-trust-row li {
  position: relative;
  padding-left: 18px;
  font-size: 0.78rem;
  font-weight: 620;
  color: rgba(228, 232, 230, 0.55);
  line-height: 1.4;
}

.pricing-trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(47, 217, 154, 0.75);
  box-shadow: 0 0 0 3px rgba(47, 217, 154, 0.12);
}

@media (max-width: 560px) {
  .pricing-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

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

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

.plan-card {
  position: relative;
  padding: 22px 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan-card--starter,
.plan-card--entry {
  opacity: 0.9;
  box-shadow: var(--shadow-md);
}

.plan-card--entry {
  padding: 18px 16px 18px;
}

.plan-card--growth {
  grid-column: span 1;
  border: 1px solid rgba(47, 217, 154, 0.45);
  background: linear-gradient(168deg, #050807 0%, #0a1512 38%, #030604 100%);
  box-shadow: var(--shadow-growth);
  z-index: 2;
}

.plan-hot.plan-card--growth {
  border: 2px solid rgba(47, 217, 154, 0.78);
  box-shadow:
    0 0 0 1px rgba(47, 217, 154, 0.25),
    0 20px 56px rgba(23, 144, 94, 0.35),
    var(--shadow-growth);
}

.plan-card--anchor {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(168deg, #0c0a06 0%, #12100c 42%, #080705 100%);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
}

.plan-card--anchor .plan-card__name {
  color: rgba(255, 236, 200, 0.85);
}

.plan-card--operations {
  border: 1px solid rgba(120, 168, 220, 0.32);
  background: linear-gradient(168deg, #05080c 0%, #0b1320 42%, #060a0f 100%);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(120, 168, 220, 0.12) inset;
}

.plan-card--operations .plan-card__name {
  color: rgba(200, 222, 248, 0.9);
}

.plan-card__eyebrow {
  display: inline-block;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  padding: 4px 9px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.plan-card__eyebrow--core {
  color: rgba(72, 240, 200, 0.92);
  border-color: rgba(72, 240, 200, 0.34);
  background: rgba(47, 217, 154, 0.08);
}

.plan-card__eyebrow--ops {
  color: rgba(168, 200, 240, 0.92);
  border-color: rgba(120, 168, 220, 0.34);
  background: rgba(120, 168, 220, 0.08);
}

.plan-card__eyebrow--portfolio {
  color: rgba(232, 200, 128, 0.95);
  border-color: rgba(212, 175, 55, 0.34);
  background: rgba(212, 175, 55, 0.08);
}

.plan-card__bul--featured li {
  font-weight: 600;
  color: rgba(240, 248, 244, 0.92);
}

.plan-card__bul--featured li::before {
  background: rgba(72, 240, 200, 0.98);
  width: 6px;
  height: 6px;
  top: 12px;
}

.scan-row__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

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

.stores-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.08);
}

.stores-row:last-child {
  border-bottom: none;
}

.stores-row__host {
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.stores-row__meta {
  font-size: 0.8rem;
  color: var(--ink-mid);
}

.plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  background: rgba(47, 217, 154, 0.95);
  color: #03160f;
  border-radius: 0 var(--radius) 0 var(--radius);
}

.plan-badge--popular {
  font-size: 0.52rem;
  padding: 8px 16px;
  background: linear-gradient(135deg, #5cffd4, #2fd996 55%, #17a05e);
  color: #03160f;
  box-shadow: 0 4px 18px rgba(47, 217, 154, 0.35);
}

.plan-card__name {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(215, 255, 235, 0.78);
  margin-bottom: 6px;
}

.plan-card__tagline {
  font-size: 0.95rem;
  font-weight: 720;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
  min-height: 2.5em;
}

.plan-card__price {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 820;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 16px;
}

.plan-card__price span {
  font-size: 0.42em;
  font-weight: 650;
  opacity: 0.45;
  margin-left: 4px;
}

.plan-card__bul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}

.plan-card__bul li {
  position: relative;
  padding: 6px 0 6px 14px;
  font-size: 0.8rem;
  font-weight: 540;
  color: rgba(228, 232, 230, 0.78);
  line-height: 1.45;
}

.plan-card__bul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  background: rgba(47, 217, 154, 0.8);
  border-radius: 1px;
}

.plan-card__btn {
  width: 100%;
  padding: 12px 16px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: var(--radius-sharp);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: filter 0.15s ease, transform 0.12s ease;
}

.plan-card__btn--primary {
  background: linear-gradient(180deg, #48f0c8, #17905e);
  color: #03160f;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 36px rgba(23, 144, 94, 0.4), 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.plan-card__btn--primary:hover {
  filter: brightness(1.06);
}

.plan-card__btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}

.plan-card__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.plan-card__btn--agency {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.22), rgba(140, 110, 40, 0.18));
  color: rgba(255, 245, 220, 0.95);
  border-color: rgba(212, 175, 55, 0.35);
}

.plan-card__btn--agency:hover {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.32), rgba(140, 110, 40, 0.24));
  filter: brightness(1.05);
}

.plan-card__btn:active {
  transform: scale(0.99);
}

.flow-stage--consequent {
  background: linear-gradient(188deg, #020302 0%, #0a1010 45%, #050807 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(47, 217, 154, 0.06);
}

.final-cta__inner {
  text-align: center;
}

.final-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 750;
  letter-spacing: -0.038em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: clamp(24px, 4vw, 36px);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-xl--terminal {
  font-size: 1rem;
  padding: 18px 40px;
}

.final-cta__micro {
  margin-top: 22px;
  font-size: 0.82rem;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.42);
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.faq-list--compact {
  max-width: 720px;
  margin-top: 16px;
}

.sec-appendix .faq-item summary {
  font-size: 0.86rem;
}

.sec-appendix .faq-a {
  font-size: 0.84rem;
}

@media (max-width: 900px) {
  .nav-inner:not(.nav-inner--intl) .nav-links--elite {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid rgba(7, 7, 7, 0.08);
  }

  .nav-inner:not(.nav-inner--intl) {
    flex-wrap: wrap;
  }
}

/* ——— WAUW pass: depth, motion, mobile, chat ——— */
html {
  overflow-x: clip;
}

body.page-elite {
  overflow-x: clip;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

.nav-inner--elite {
  padding: 8px 20px;
  row-gap: 6px;
}

@media (max-width: 600px) {
  .nav-inner--elite {
    padding: 6px 14px;
  }

  .brand-text {
    font-size: 0.82rem;
  }

  .nav-links--elite {
    font-size: 0.72rem;
    gap: 8px 12px;
  }

  .nav-actions .btn-ghost--nav,
  .nav-actions .primary-cta {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}

/* Hero WAUW */
.hero--wow {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 8vw, 88px) 0 clamp(32px, 7vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero-spotlight {
  position: absolute;
  left: 50%;
  top: 18%;
  transform: translate(-50%, -50%);
  width: min(92vw, 820px);
  height: clamp(220px, 38vw, 340px);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 40%,
    rgba(47, 217, 154, 0.14) 0%,
    rgba(15, 107, 82, 0.06) 38%,
    transparent 68%
  );
  filter: blur(2px);
}

.hero-inner--wow {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 18px;
  padding: 6px 14px 6px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 1px rgba(47, 217, 154, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 14px rgba(47, 217, 154, 0.85);
  animation: heroPulseDot 2.4s ease-in-out infinite;
}

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

.hero-title--wow {
  max-width: none;
  font-size: clamp(2.35rem, 7vw, 4rem);
  font-weight: 820;
  letter-spacing: -0.048em;
  line-height: 1.02;
  color: #faf8f4;
  text-shadow: 0 4px 48px rgba(0, 0, 0, 0.55);
}

.hero-title--now {
  display: inline-block;
  margin-left: 0.12em;
  color: var(--accent-bright);
  text-shadow: 0 0 42px rgba(47, 217, 154, 0.35);
}

.hero-title--later {
  display: block;
  margin-top: 0.06em;
  font-size: 0.52em;
  font-weight: 680;
  letter-spacing: -0.03em;
  color: rgba(245, 241, 234, 0.42);
}

.hero-sub--wow {
  margin-top: 18px;
  font-size: clamp(1.02rem, 2.3vw, 1.22rem);
  font-weight: 500;
  color: rgba(245, 241, 234, 0.58);
  line-height: 1.5;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-inner--calm {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-title--calm {
  max-width: none;
  font-size: clamp(2.05rem, 5.2vw, 3.25rem);
  font-weight: 760;
  letter-spacing: -0.042em;
  line-height: 1.06;
  color: #faf8f4;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}

.hero-decision__zone--wow {
  margin-top: clamp(28px, 5vw, 44px);
  padding: clamp(18px, 3vw, 28px);
  max-width: 100%;
  width: min(100%, 620px);
}

.hero-micro--wow {
  margin-top: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.07em;
  color: rgba(245, 241, 234, 0.36);
}

.input-tool--wow {
  min-height: 68px;
  border-radius: var(--radius);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.input-tool--wow:focus-within {
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.38),
    0 0 0 2px rgba(47, 217, 154, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

@media (max-width: 520px) {
  .input-tool--wow {
    flex-direction: column;
    min-height: 0;
  }

  .input-tool--wow button[type="submit"] {
    border-left: none;
    border-top: 1px solid rgba(7, 7, 7, 0.12);
    padding: 16px 20px;
    width: 100%;
  }
}

/* Intelligence */
.flow-stage--intel {
  padding: clamp(28px, 5vw, 48px) 0;
  background: linear-gradient(180deg, #050706 0%, #0a1210 40%, #060908 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.45);
}

.intel-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0.35) 100%);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.intel-panel__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

.intel-meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.intel-meta--sep {
  opacity: 0.35;
}

.intel-chip {
  margin-left: auto;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: var(--radius-sharp);
  border: 1px solid rgba(47, 217, 154, 0.45);
  color: rgba(200, 255, 230, 0.92);
  background: rgba(47, 217, 154, 0.12);
}

@media (max-width: 560px) {
  .intel-chip {
    margin-left: 0;
  }
}

.intel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

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

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

.intel-cell {
  padding: 22px 16px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 12, 10, 0.65);
}

.intel-cell:nth-child(4n) {
  border-right: none;
}

@media (max-width: 900px) {
  .intel-cell:nth-child(2n) {
    border-right: none;
  }
}

.intel-label {
  display: block;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
  line-height: 1.35;
  margin-bottom: 10px;
}

.intel-value {
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  font-weight: 780;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  line-height: 1;
}

.reality-line--tight {
  padding: clamp(28px, 5vw, 44px) 24px;
}

/* Demo */
.flow-stage--demo {
  background: linear-gradient(185deg, #f7f4ee 0%, #ebe5da 50%, #f2ede6 100%);
  border-top: 1px solid rgba(7, 7, 7, 0.06);
}

.demo-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

@media (max-width: 960px) {
  .demo-split {
    grid-template-columns: 1fr;
  }
}

.demo-copy .eyebrow {
  margin-bottom: 8px;
}

.demo-bullets {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.demo-bullets li {
  position: relative;
  padding: 14px 0 14px 22px;
  border-bottom: 1px solid rgba(7, 7, 7, 0.08);
  font-size: 0.92rem;
  font-weight: 560;
  color: var(--ink);
  line-height: 1.45;
}

.demo-bullets li:last-child {
  border-bottom: none;
}

.demo-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(47, 217, 154, 0.35);
}

.demo-bullets strong {
  font-weight: 780;
  color: var(--ink);
}

.mock-browser--wow {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(7, 7, 7, 0.14);
  box-shadow:
    var(--shadow-xl),
    0 0 100px rgba(47, 217, 154, 0.07),
    0 0 0 1px rgba(15, 107, 82, 0.1);
}

.mock-body--wow {
  padding: 18px;
  background: linear-gradient(180deg, #f5f2eb 0%, #e8e2d8 100%);
}

.mock-runhead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.mock-score-block {
  text-align: right;
}

.mock-score-block .mock-score-val {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 28px rgba(47, 217, 154, 0.25);
}

.demo-scanlines {
  list-style: none;
  margin: 0 0 12px;
  padding: 10px 12px;
  background: #0a0c0b;
  border: 1px solid rgba(47, 217, 154, 0.2);
  border-radius: var(--radius-sharp);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: rgba(200, 255, 220, 0.88);
}

.demo-scanlines__i {
  padding: 4px 0;
  opacity: 0.35;
}

.demo-scanlines__i--on {
  opacity: 1;
}

.demo-scanlines__i--pulse {
  animation: scanlinePulse 2.8s ease-in-out infinite;
}

@keyframes scanlinePulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(47, 217, 154, 0.45);
  }
}

.mock-issuebar {
  font-size: 0.72rem;
  font-weight: 650;
  margin-bottom: 10px;
  color: rgba(7, 7, 7, 0.72);
}

.mock-table--wow {
  font-size: 0.7rem;
}

.mock-table--wow th {
  background: #dcd5c8;
}

.is-visible .mock-browser--wow {
  animation: demoPop 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/* Machine */
.flow-stage--machine {
  background: linear-gradient(188deg, #010302 0%, #0c1613 45%, #030605 100%);
  border-top: 1px solid rgba(47, 217, 154, 0.1);
}

.machine-rail {
  position: relative;
  margin-top: 24px;
  padding-left: 8px;
}

.machine-rail__line {
  position: absolute;
  left: 26px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(47, 217, 154, 0.55) 0%,
    rgba(47, 217, 154, 0.12) 50%,
    rgba(47, 217, 154, 0.4) 100%
  );
  box-shadow: 0 0 20px rgba(47, 217, 154, 0.25);
}

.machine-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  margin-bottom: 12px;
  z-index: 1;
}

.machine-step:last-child {
  margin-bottom: 0;
}

.machine-step__num {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.machine-step__num span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #03160f;
  background: linear-gradient(145deg, rgba(47, 217, 154, 0.95), rgba(15, 107, 82, 0.95));
  border-radius: var(--radius-sharp);
  box-shadow:
    0 0 28px rgba(47, 217, 154, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.machine-step__card {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.machine-step__card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 217, 154, 0.35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 40px rgba(47, 217, 154, 0.12);
}

.machine-step__k {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(47, 217, 154, 0.85);
  margin-bottom: 6px;
}

.machine-step__v {
  font-size: 0.9rem;
  font-weight: 520;
  color: rgba(232, 236, 234, 0.85);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 480px) {
  .machine-rail__line {
    left: 19px;
  }

  .machine-step {
    grid-template-columns: 44px 1fr;
  }

  .machine-step__num span {
    min-width: 34px;
    height: 34px;
    font-size: 0.62rem;
  }
}

/* Trust grid */
.flow-stage--trust {
  background: linear-gradient(180deg, #faf9f6 0%, #ece7df 100%);
  border-top: 1px solid rgba(7, 7, 7, 0.06);
}

.sec-lead--trust-hook {
  max-width: 36ch;
  margin-bottom: 22px;
  font-weight: 550;
  color: rgba(7, 7, 7, 0.45);
}

.trust-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 820px) {
  .trust-grid-6 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .trust-grid-6 {
    grid-template-columns: 1fr;
  }
}

.trust-guard {
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 7, 7, 0.08);
  background: linear-gradient(165deg, #fff 0%, #f4efe8 100%);
  box-shadow: var(--shadow-sm), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.trust-guard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-guard p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.4;
  color: var(--ink);
}

/* Homepage: copy-led sections */
.wrap--narrow {
  max-width: 680px;
}

.lead-prose {
  font-size: clamp(1rem, 2vw, 1.08rem);
  font-weight: 520;
  color: var(--ink-mid);
  line-height: 1.65;
  margin-top: 14px;
}

.lead-prose--roi {
  margin-bottom: 18px;
}

.h-section {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 720;
  letter-spacing: -0.036em;
  line-height: 1.12;
  margin-bottom: 12px;
}

.center-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.flow-stage--evidence {
  background: linear-gradient(188deg, #0a1010 0%, #121c18 42%, #0a0f0d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.22);
}

.h-section--light {
  color: #f2f3f2;
}

.evidence-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.evidence-list li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
  font-weight: 540;
  line-height: 1.5;
  color: rgba(232, 236, 234, 0.88);
}

.evidence-list li:last-child {
  border-bottom: none;
}

.evidence-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  background: var(--accent-bright);
  border-radius: 2px;
  opacity: 0.85;
}

.evidence-note {
  margin-top: 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.42);
  line-height: 1.5;
}

.flow-stage--how {
  background: linear-gradient(180deg, #f9f6f1 0%, #ebe5da 55%, #f3eee8 100%);
  border-top: 1px solid rgba(7, 7, 7, 0.06);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

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

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

.how-card {
  padding: 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(7, 7, 7, 0.08);
  background: linear-gradient(165deg, #fff 0%, #f4efe8 100%);
  box-shadow: var(--shadow-sm), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.how-card__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #03160f;
  background: linear-gradient(145deg, rgba(47, 217, 154, 0.95), rgba(15, 107, 82, 0.95));
  border-radius: var(--radius-sharp);
}

.how-card p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 540;
  line-height: 1.45;
  color: var(--ink);
}

.demo-split--human .demo-copy {
  max-width: 520px;
}

.h-example {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 2vw, 1.32rem);
  font-weight: 780;
  letter-spacing: -0.028em;
}

.example-prose {
  font-size: 0.94rem;
  color: var(--ink-mid);
  line-height: 1.6;
  font-weight: 520;
}

.mock-human-line {
  font-size: 0.72rem;
  font-weight: 650;
  margin: 0 0 12px;
  color: rgba(7, 7, 7, 0.62);
  line-height: 1.45;
}

.trust-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 1024px) {
  .trust-grid-5 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .trust-grid-5 {
    grid-template-columns: 1fr;
  }
}

.flow-stage--trust .h-section {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-page-title {
  text-align: center;
  margin-bottom: 22px;
}

/* Pricing engine layout */
.plans-grid--four {
  align-items: stretch;
}

.plan-card--hero-pricing {
  min-height: 100%;
  transform: scale(1.06);
  z-index: 3;
}

@media (max-width: 1080px) {
  .plan-card--hero-pricing {
    transform: scale(1.03);
  }

  .plans-grid--four .plan-card--growth {
    order: -1;
  }
}

@media (max-width: 560px) {
  .plans-grid--four .plan-card--growth {
    order: -1;
  }

  .plan-card--hero-pricing {
    transform: none;
  }
}

.site-footer-elite {
  text-align: center;
  padding: 22px 20px 100px;
  font-size: 0.72rem;
  color: rgba(7, 7, 7, 0.38);
  font-weight: 620;
  background: var(--bg);
  border-top: 1px solid rgba(7, 7, 7, 0.07);
}

.site-legal-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 650;
}

.site-legal-nav a {
  color: rgba(7, 7, 7, 0.52);
  text-decoration: none;
}

.site-legal-nav a:hover {
  color: rgba(7, 7, 7, 0.85);
  text-decoration: underline;
}

.site-legal-nav__sep {
  color: rgba(7, 7, 7, 0.22);
  user-select: none;
}

.scan-consent-hint {
  margin: 12px auto 0;
  max-width: 42rem;
  padding: 0 8px;
  font-size: 0.72rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(7, 7, 7, 0.42);
  text-align: center;
}

@media (max-width: 560px) {
  .scan-consent-hint {
    font-size: 0.68rem;
  }
}

/* Final CTA hard */
.final-cta--hard {
  padding: clamp(64px, 11vw, 120px) 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(47, 217, 154, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(196, 30, 20, 0.12), transparent 50%),
    linear-gradient(188deg, #000 0%, #070b09 42%, #020302 100%);
  border-top: 1px solid rgba(47, 217, 154, 0.28);
}

.final-cta__title--hard {
  max-width: 22ch;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 820;
  margin-bottom: 16px;
  text-shadow: 0 4px 48px rgba(0, 0, 0, 0.6);
}

.final-cta__sub {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  font-weight: 520;
  color: rgba(245, 241, 234, 0.52);
  margin-bottom: clamp(28px, 5vw, 40px);
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.final-cta--hard .btn-xl--terminal {
  box-shadow:
    0 20px 56px rgba(21, 146, 95, 0.5),
    0 0 48px rgba(47, 217, 154, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
}

.final-cta--hard .btn-xl--terminal:hover {
  filter: brightness(1.08);
  box-shadow:
    0 24px 64px rgba(21, 146, 95, 0.55),
    0 0 64px rgba(47, 217, 154, 0.22);
}

/* Chat */
.chat-dock {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.chat-dock > * {
  pointer-events: auto;
}

.chat-launcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(22, 24, 23, 0.92), rgba(6, 8, 7, 0.96));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #f0f3f1;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(47, 217, 154, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.chat-launcher:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 217, 154, 0.35);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(47, 217, 154, 0.15);
}

.chat-launcher__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px rgba(47, 217, 154, 0.9);
  animation: chatDotPulse 2.2s ease-in-out infinite;
}

@keyframes chatDotPulse {
  50% {
    opacity: 0.65;
    transform: scale(0.9);
  }
}

.chat-panel {
  width: min(100vw - 32px, 380px);
  max-height: min(72vh, 560px);
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(175deg, rgba(28, 30, 29, 0.97), rgba(8, 10, 9, 0.99));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(47, 217, 154, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform-origin: bottom right;
  animation: chatPanelIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes chatPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-panel[hidden] {
  display: none !important;
}

.chat-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-panel__title {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.chat-panel__sub {
  margin: 4px 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.35;
}

.chat-panel__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: var(--radius-sharp);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.chat-panel__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-quick__btn {
  font: inherit;
  font-size: 0.68rem;
  font-weight: 650;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(230, 240, 235, 0.88);
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease;
}

.chat-quick__btn:hover {
  border-color: rgba(47, 217, 154, 0.35);
  background: rgba(47, 217, 154, 0.1);
}

.chat-messages {
  flex: 1;
  min-height: 120px;
  max-height: 220px;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-msg {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  line-height: 1.45;
  font-weight: 500;
}

.chat-msg--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 248, 246, 0.92);
}

.chat-msg--user {
  align-self: flex-end;
  background: rgba(47, 217, 154, 0.15);
  border: 1px solid rgba(47, 217, 154, 0.25);
  color: #f4fcf8;
}

.chat-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.chat-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
}

.chat-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.chat-form input:focus {
  outline: none;
  border-color: rgba(47, 217, 154, 0.45);
  box-shadow: 0 0 0 2px rgba(47, 217, 154, 0.15);
}

.chat-form button {
  flex-shrink: 0;
  padding: 11px 14px;
  border-radius: 8px;
  border: none;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(180deg, #48f0c8, #17905e);
  color: #03160f;
}

@media (max-width: 400px) {
  .chat-launcher__label {
    display: none;
  }

  .chat-launcher {
    padding: 12px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-live__dot,
  .chat-launcher__pulse,
  .demo-scanlines__i--pulse {
    animation: none !important;
  }

  .chat-panel {
    animation: none !important;
  }

  .is-visible .mock-browser--wow {
    animation: none !important;
  }

  .hero-bg-anim--motion {
    animation: none !important;
  }
}

/* ——— International header & trust strip ——— */
.site-header--intl .nav-inner--intl {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px 12px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px;
}

.site-header--intl .brand-link {
  justify-self: start;
}

.nav-links--center {
  justify-content: center;
  justify-self: center;
  max-width: min(100%, 720px);
  min-width: 0;
}

.site-header--intl .nav-actions--intl {
  justify-self: end;
}

.nav-actions--intl .btn-ghost--nav,
.nav-actions--intl .primary-cta {
  min-height: 38px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-actions--intl {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  border-radius: var(--radius-sharp);
  border: 1px solid rgba(7, 7, 7, 0.14);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
}

.lang-btn {
  margin: 0;
  padding: 6px 10px;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: none;
  background: transparent;
  color: rgba(7, 7, 7, 0.45);
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn--active {
  background: rgba(7, 7, 7, 0.08);
  color: var(--ink);
}

.trust-strip-intl {
  padding: 16px 24px 28px;
  position: relative;
  z-index: 2;
}

.trust-strip-intl__list {
  list-style: none;
  margin: 0 auto;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: var(--max);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(7, 7, 7, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md), 0 1px 0 rgba(255, 255, 255, 0.88) inset;
}

.trust-strip-intl__list li {
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(7, 7, 7, 0.48);
  text-align: center;
  padding: 6px 4px;
}

@media (max-width: 720px) {
  .trust-strip-intl__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 380px) {
  .trust-strip-intl__list {
    grid-template-columns: 1fr;
  }
}

.intel-panel--wow .intel-value {
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  text-shadow: 0 0 40px rgba(47, 217, 154, 0.12);
}

.intel-panel--wow .intel-cell {
  padding: 26px 18px 30px;
}

.intel-panel--wow .intel-chip {
  box-shadow: 0 0 24px rgba(47, 217, 154, 0.15);
}

.hero-bg-anim--motion {
  animation: heroGradientShift 42s ease-in-out infinite;
}

.mono-wrap {
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .site-header--intl .nav-inner--intl {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
  }

  .site-header--intl .brand-link {
    grid-area: brand;
  }

  .site-header--intl .nav-actions--intl {
    grid-area: actions;
    justify-self: end;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-header--intl .nav-links--center {
    grid-area: nav;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 4px;
    width: 100%;
    border-top: 1px solid rgba(7, 7, 7, 0.06);
    padding-top: 8px;
    margin-top: 4px;
    mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
  }

  .site-header--intl .nav-links--center a {
    flex-shrink: 0;
  }
}

@media (max-width: 420px) {
  .nav-actions--intl .btn-ghost--nav {
    padding: 7px 10px;
    font-size: 0.74rem;
  }

  .nav-actions--intl .primary-cta {
    padding: 8px 12px;
    font-size: 0.76rem;
  }
}

/* Homepage scan preview — decision order matches dashboard */
.home-decision-wrap {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  text-align: center;
}
.home-decision {
  border: 1px solid rgba(7, 7, 7, 0.12);
  border-radius: 14px;
  background: var(--card);
  box-shadow: 0 10px 24px rgba(7, 7, 7, 0.08);
  padding: 20px 20px 18px;
  margin-bottom: 14px;
  text-align: left;
}
.home-decision--start {
  border-color: rgba(15, 107, 82, 0.35);
}
.home-decision--summary {
  position: sticky;
  top: 8px;
  z-index: 6;
  border-color: rgba(15, 107, 82, 0.28);
  background: linear-gradient(180deg, #fffdf8, #f7f4ec);
}
.home-decision__summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.home-decision__metric {
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 8px;
  padding: 8px;
  background: rgba(255,255,255,.72);
}
.home-decision__metric-label {
  display: block;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.home-decision__metric strong {
  font-size: .94rem;
  color: var(--ink);
}
.home-decision__eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 800;
  margin: 0 0 8px;
  text-align: center;
}
.home-decision__subhead {
  margin: 0 0 12px;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
}
.home-decision__quick {
  margin: 0 0 14px;
  padding-left: 1.2rem;
  text-align: left;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink-muted, rgba(0, 0, 0, 0.72));
}
.home-decision__quick li {
  margin-bottom: 6px;
}
.home-decision__impactrow {
  margin: 0 0 10px;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--ink-muted, rgba(0, 0, 0, 0.72));
}
.home-decision__tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(15, 107, 82, 0.12);
  color: var(--ink);
  margin-right: 6px;
  vertical-align: middle;
}
.home-decision__tag--critical { background: rgba(223,112,132,.14); border: 1px solid rgba(223,112,132,.3); }
.home-decision__tag--important { background: rgba(233,178,116,.14); border: 1px solid rgba(233,178,116,.3); }
.home-decision__tag--optimization { background: rgba(76,157,132,.14); border: 1px solid rgba(76,157,132,.3); }
.home-decision__tag--high { background: rgba(216,71,71,.12); }
.home-decision__tag--medium { background: rgba(243,160,42,.12); }
.home-decision__tag--low { background: rgba(15,107,82,.12); }
.home-decision__title {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 780;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-align: center;
  color: var(--ink);
}
.home-decision__grid {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}
@media (min-width: 520px) {
  .home-decision__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-decision__grid .lbl {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 750;
  margin-bottom: 4px;
}
.home-decision__grid p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--ink-mid);
}
.home-decision__exact {
  font-family: var(--font-mono);
  font-size: 0.8rem !important;
}
.home-decision__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  border: 0;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
}
.home-decision__btn:hover {
  filter: brightness(1.05);
}
.home-decision__h {
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--ink-soft);
  font-weight: 800;
  margin: 0 0 8px;
  text-align: center;
}
.home-decision__check {
  list-style: none;
  padding: 0;
  margin: 0;
}
.home-decision__check li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 8px 10px;
  border: 1px solid rgba(7, 7, 7, 0.08);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--ink-mid);
}
.home-decision__check input {
  margin-top: 3px;
  accent-color: var(--accent);
}
.home-decision__issue {
  border: 1px solid rgba(7, 7, 7, 0.1);
  border-radius: 12px;
  padding: 12px 13px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.62);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.home-decision__issue:hover {
  transform: translateY(-1px);
  border-color: rgba(7,7,7,.16);
  box-shadow: 0 8px 18px rgba(7,7,7,.08);
}
.home-decision__issue--critical { border-left: 4px solid #d84747; }
.home-decision__issue--important { border-left: 4px solid #f3a02a; }
.home-decision__issue--optimization { border-left: 4px solid #0f6b52; }
.home-decision__details {
  margin-top: 6px;
  border-top: 1px dashed rgba(0,0,0,.12);
  padding-top: 6px;
}
.home-decision__details summary {
  cursor: pointer;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink-mid);
}
.home-decision__problemStatement {
  margin: 0 0 6px;
  font-size: 0.92rem;
  font-weight: 820;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.home-decision__issue h4 {
  margin: 0 0 6px;
  font-size: 0.9rem;
  font-weight: 800;
}
.home-decision__issue p {
  margin: 0 0 4px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--ink-mid);
}
.home-decision__issue .lbl {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.home-decision__copy {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-weight: 650;
}
.home-decision__trust {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-soft);
  text-align: center;
  margin: 0;
}
.home-decision__meta {
  margin-top: 10px;
  text-align: center;
  font-size: 0.82rem;
}
.home-decision__meta a {
  color: var(--accent);
  font-weight: 750;
}
.home-scan-loading {
  max-width: 34rem;
  margin: 16px auto 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(7, 7, 7, 0.1);
  background: var(--card);
  text-align: center;
  box-shadow: 0 10px 24px rgba(7,7,7,.07);
}
.home-scan-loading__label {
  font-size: 0.82rem;
  color: var(--ink-mid);
  font-weight: 650;
}
.home-scan-loading__pulse {
  display: block;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  animation: homeScanPulse 1.2s ease-in-out infinite;
}
@keyframes homeScanPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.92);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}


.pricing-category-kicker {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(72, 240, 200, 0.75);
  margin: 0 0 12px;
}

.plan-card__consequence {
  margin: 10px 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(228, 236, 232, 0.62);
  font-weight: 600;
}

.plan-card--growth .plan-card__consequence {
  color: rgba(215, 255, 235, 0.78);
}

.plan-card--operations .plan-card__consequence {
  color: rgba(200, 222, 248, 0.72);
}

.plan-card--portfolio .plan-card__consequence,
.plan-card--anchor .plan-card__consequence {
  color: rgba(232, 210, 160, 0.78);
}

.plan-card--portfolio {
  border: 1px solid rgba(212, 175, 55, 0.42);
  background: linear-gradient(168deg, #0a0804 0%, #141008 40%, #080604 100%);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.14) inset;
}

.plan-card--portfolio .plan-card__name {
  color: rgba(255, 240, 210, 0.92);
}

.pricing-trust-row {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .pricing-category-kicker { letter-spacing: 0.14em; }
  .plan-card__consequence { font-size: 0.76rem; }
  .plans-grid--four .plan-card--growth { transform: none; }
}


.sec-proof-ladder {
  padding: var(--section-mid) 0;
  background: linear-gradient(180deg, #0a0c0b 0%, #0f1512 100%);
  color: #e4ebe8;
  border-top: 1px solid rgba(47, 217, 154, 0.12);
}
.proof-ladder__kicker {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(72, 240, 200, 0.72);
  margin: 0 0 12px;
  text-align: center;
}
.lead-prose--proof { text-align: center; max-width: 36rem; margin: 0 auto 28px; color: rgba(228, 236, 232, 0.72); }
.proof-ladder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
@media (max-width: 720px) {
  .proof-ladder__grid { grid-template-columns: 1fr; }
}
.proof-tier {
  border-radius: 14px;
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
}
.proof-tier--featured {
  border-color: rgba(47, 217, 154, 0.45);
  background: linear-gradient(168deg, rgba(12, 22, 18, 0.95), rgba(4, 8, 6, 0.98));
  box-shadow: 0 16px 48px rgba(23, 144, 94, 0.18);
}
.proof-tier__label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin: 0 0 8px;
}
.proof-tier--featured .proof-tier__label { color: rgba(72, 240, 200, 0.88); }
.proof-tier__title { font-size: 1.05rem; font-weight: 800; margin: 0 0 10px; color: #fff; }
.proof-tier__body { font-size: 0.84rem; line-height: 1.55; margin: 0; color: rgba(228, 236, 232, 0.72); }
.proof-ladder__note {
  text-align: center;
  font-size: 0.76rem;
  color: rgba(228, 236, 232, 0.48);
  margin: 0;
}
