:root {
  --jv-bg: #fbfaf7;
  --jv-band: #f1eee7;
  --jv-surface: #ffffff;
  --jv-ink: #0a1220;
  --jv-copy: #4a5567;
  --jv-muted: #7a8599;
  --jv-line: rgba(10, 18, 32, 0.1);
  --jv-line-strong: rgba(10, 18, 32, 0.16);
  --jv-teal: #1d676c;
  --jv-mint: #1ddbb7;
  --jv-blue: #2a6d8f;
  --jv-gold: #c68b3a;
  --jv-dark: #0a1220;
}

body {
  background: var(--jv-bg);
}

.jv-hero,
.jv-stats,
.jv-value,
.jv-features,
.jv-panels,
.jv-reasons,
.jv-audience,
.jv-cta {
  padding-top: 56px;
  padding-bottom: 56px;
}

.jv-hero {
  padding-top: 132px;
  padding-bottom: 88px;
}

.jv-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 72px;
  align-items: center;
}

.jv-crumbs {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--jv-muted);
}

.jv-crumbs .dash {
  width: 18px;
  height: 1px;
  background: var(--jv-line-strong);
}

.jv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--jv-teal);
}

.jv-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--jv-mint);
}

.jv-hero__title {
  max-width: 11ch;
  margin: 0;
  font-family: var(--f-display);
  font-size: 6rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.jv-hero__title em {
  color: var(--jv-teal);
  font-style: italic;
}

.jv-hero__lede {
  max-width: 46ch;
  margin-top: 28px;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--jv-copy);
}

.jv-hero__cta-row,
.jv-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.jv-hero__visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 32, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 219, 183, 0.12), transparent 32%),
    linear-gradient(225deg, rgba(198, 139, 58, 0.12), transparent 28%),
    linear-gradient(135deg, #f4f2ec, #ffffff 62%);
  --jv-tilt-x: 0px;
  --jv-tilt-y: 0px;
}

.jv-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 18, 32, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 18, 32, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at center, black 44%, transparent 82%);
}

.jv-dashboard {
  position: relative;
  z-index: 2;
  width: min(540px, 78%);
  min-height: 440px;
  padding: 18px;
  border: 1px solid rgba(10, 18, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 34px 80px rgba(10, 18, 32, 0.14);
  transform: translate3d(var(--jv-tilt-x), var(--jv-tilt-y), 0);
  transition: transform .4s ease;
}

.jv-dashboard__top,
.jv-dashboard__metrics,
.jv-dashboard__body,
.jv-dashboard__feed {
  position: relative;
  z-index: 2;
}

.jv-dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--jv-line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--jv-muted);
}

.jv-dashboard__top img {
  width: 124px;
  height: auto;
}

.jv-dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.jv-dashboard__metrics article,
.jv-insight,
.jv-panel-screen__metrics article {
  border: 1px solid var(--jv-line);
  border-radius: 8px;
  background: #fff;
}

.jv-dashboard__metrics article {
  padding: 12px;
}

.jv-dashboard__metrics span,
.jv-panel-screen__metrics span,
.jv-insight span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--jv-muted);
}

.jv-dashboard__metrics strong,
.jv-panel-screen__metrics strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
  color: var(--jv-ink);
}

.jv-dashboard__metrics small {
  display: block;
  margin-top: 8px;
  font-size: .82rem;
  color: var(--jv-teal);
}

.jv-dashboard__body {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(190px, .75fr);
  gap: 12px;
  margin-top: 12px;
}

.jv-chart {
  position: relative;
  min-height: 202px;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 32, 0.12);
  border-radius: 8px;
  background: var(--jv-dark);
}

.jv-chart__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
}

.jv-chart svg {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  overflow: visible;
}

.jv-chart__area {
  fill: rgba(29, 219, 183, 0.18);
}

.jv-chart__line {
  fill: none;
  stroke: var(--jv-mint);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 620;
  animation: jvDraw 2.4s ease both;
}

.jv-chart circle {
  fill: #fff;
  stroke: var(--jv-mint);
  stroke-width: 3;
  animation: jvPulse 2.6s ease-in-out infinite;
}

.jv-insight {
  padding: 16px;
  align-self: stretch;
}

.jv-insight strong {
  display: block;
  font-size: 1.28rem;
  line-height: 1.16;
  color: var(--jv-ink);
}

.jv-insight p {
  margin-top: 12px;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--jv-copy);
}

.jv-dashboard__feed {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.jv-dashboard__feed span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid var(--jv-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--jv-copy);
}

.jv-dashboard__feed i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jv-mint);
}

.jv-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
}

.jv-stat {
  min-height: 190px;
  padding: 36px 28px;
  border-top: 1px solid var(--jv-line);
  border-right: 1px solid var(--jv-line);
  border-bottom: 1px solid var(--jv-line);
}

.jv-stat:first-child {
  border-left: 1px solid var(--jv-line);
}

.jv-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 4.2rem;
  font-weight: 400;
  line-height: 1;
}

.jv-stat span {
  display: block;
  margin-top: 24px;
  max-width: 15ch;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--jv-muted);
}

.jv-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .58fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 42px;
}

.jv-section-head h2,
.jv-data__copy h2,
.jv-cta h2 {
  margin: 0;
  font-family: var(--f-display);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
}

.jv-section-head p,
.jv-data__copy p,
.jv-cta p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--jv-copy);
}

.jv-value__grid,
.jv-features__grid,
.jv-audience__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--jv-line);
  border-left: 1px solid var(--jv-line);
}

.jv-value-card,
.jv-feature-card,
.jv-audience-card {
  position: relative;
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--jv-line);
  border-bottom: 1px solid var(--jv-line);
  background: transparent;
}

.jv-value-card span,
.jv-audience-card span {
  display: block;
  margin-bottom: 70px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--jv-muted);
}

.jv-value-card h3,
.jv-feature-card h3,
.jv-audience-card h3 {
  margin: 0;
  font-family: var(--f-display);
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.jv-value-card p,
.jv-feature-card p,
.jv-audience-card p {
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--jv-copy);
}

.jv-data {
  margin-top: 56px;
  margin-bottom: 56px;
  padding: 84px 0;
  background:
    linear-gradient(180deg, rgba(244, 242, 236, 0.72), rgba(251, 250, 247, 0.96)),
    var(--jv-paper);
  color: var(--jv-ink);
}

.jv-data__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: 76px;
  align-items: center;
}

.jv-data .jv-eyebrow,
.jv-data__copy p {
  color: var(--jv-copy);
}

.jv-data .jv-eyebrow::before {
  background: var(--jv-teal);
}

.jv-intel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(10, 18, 32, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 243, 0.86)),
    #fff;
  box-shadow: 0 28px 70px rgba(10, 18, 32, 0.1);
  isolation: isolate;
}

.jv-intel__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 18, 32, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 18, 32, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 42%, black 0 48%, transparent 82%);
  z-index: -1;
}

.jv-intel__top,
.jv-intel__pipeline,
.jv-intel__board {
  position: relative;
  z-index: 2;
}

.jv-intel__top {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(10, 18, 32, 0.1);
}

.jv-intel__top img {
  width: 146px;
}

.jv-intel__top span,
.jv-intel__pipeline span,
.jv-score-card span,
.jv-score-card small,
.jv-signal-list span {
  font-family: var(--f-mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.jv-intel__top span {
  font-size: 12px;
  color: var(--jv-muted);
}

.jv-intel__pipeline {
  display: grid;
  grid-template-columns: auto minmax(32px, 1fr) auto minmax(32px, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.jv-intel__pipeline span {
  display: inline-flex;
  justify-content: center;
  min-width: 104px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 18, 32, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--jv-muted);
  font-size: 11px;
}

.jv-intel__pipeline i {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: rgba(10, 18, 32, 0.12);
}

.jv-intel__pipeline i::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jv-mint);
  box-shadow: 0 0 0 8px rgba(29, 219, 183, 0.12);
  animation: jvPipelineDot 3.2s ease-in-out infinite;
}

.jv-intel__pipeline i:nth-of-type(2)::after {
  animation-delay: .9s;
}

.jv-intel__board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, .82fr);
  grid-template-areas:
    "heat score"
    "heat signals";
  gap: 16px;
  margin-top: 24px;
}

.jv-organic-code {
  grid-area: heat;
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border-radius: 8px;
  background: #030712;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 38px rgba(29, 219, 183, 0.05);
  isolation: isolate;
}

.jv-organic-code::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  z-index: 0;
}

.jv-organic-code::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 7, 16, 0.82) 0 22%, transparent 42% 100%);
  pointer-events: none;
  z-index: 0;
}

.jv-organic-code svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 286px;
}

.jv-code-lines path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.jv-code-lines path {
  stroke: var(--c, rgba(29, 103, 108, 0.86));
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
  animation: jvCodeWrite 4.2s cubic-bezier(.18, .86, .26, 1) infinite;
  animation-delay: var(--d, 0s);
}

.jv-code-labels text,
.jv-code-prefixes text,
.jv-code-core-dots {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  fill: rgba(151, 163, 184, 0.82);
}

.jv-code-labels text,
.jv-code-prefixes text {
  opacity: 0;
  animation: jvCodeLabel 4.2s cubic-bezier(.18, .86, .26, 1) infinite;
  animation-delay: var(--d, 0s);
}

.jv-code-prefixes text {
  fill: rgba(29, 219, 183, 0.78);
}

.jv-code-core {
  fill: var(--jv-mint);
  filter: drop-shadow(0 18px 28px rgba(29, 219, 183, 0.18));
  animation: jvCodePill 4.2s cubic-bezier(.18, .86, .26, 1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.jv-code-core-dots {
  font-size: 13px;
  fill: rgba(2, 7, 16, 0.74);
  animation: jvCodeDots 4.2s cubic-bezier(.18, .86, .26, 1) infinite;
}

.jv-code-core-icon {
  filter: drop-shadow(0 4px 8px rgba(2, 7, 16, 0.16));
  pointer-events: none;
  transform-box: fill-box;
  transform-origin: center;
  animation: jvCodeIcon 4.2s cubic-bezier(.18, .86, .26, 1) infinite;
}

.jv-score-card {
  grid-area: score;
  padding: 22px;
  border: 1px solid rgba(10, 18, 32, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(10, 18, 32, 0.06);
}

.jv-score-card span,
.jv-score-card small {
  display: block;
  color: var(--jv-muted);
  font-size: 10px;
}

.jv-score-card strong {
  display: block;
  margin: 10px 0 8px;
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 5.6vw, 5.8rem);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  color: var(--jv-ink);
}

.jv-score-card__bar {
  height: 8px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(10, 18, 32, 0.08);
}

.jv-score-card__bar i {
  display: block;
  width: 94%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--jv-teal), var(--jv-mint));
  transform-origin: left;
  animation: jvScoreLoad 3.8s ease-in-out infinite;
}

.jv-signal-list {
  grid-area: signals;
  display: grid;
  gap: 10px;
}

.jv-signal-list span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid rgba(10, 18, 32, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--jv-copy);
  font-size: 10px;
}

.jv-signal-list b {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--jv-mint);
  box-shadow: 0 0 0 7px rgba(29, 219, 183, 0.1);
}

.jv-intel__stream {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 1;
  width: calc(100% - 44px);
  height: 146px;
  pointer-events: none;
  opacity: .62;
}

.jv-intel__stream path {
  fill: none;
  stroke: rgba(29, 103, 108, 0.32);
  stroke-width: 2;
  stroke-dasharray: 8 11;
  animation: jvStreamDash 4.4s linear infinite;
}

.jv-intel__stream path:nth-child(2) {
  animation-delay: -1.3s;
}

.jv-intel__stream circle {
  fill: var(--jv-mint);
  stroke: #fff;
  stroke-width: 3;
  animation: jvStreamPulse 2.8s ease-in-out infinite;
}

.jv-intel__stream circle:nth-of-type(2) {
  animation-delay: .7s;
}

.jv-intel__stream circle:nth-of-type(3) {
  animation-delay: 1.4s;
}

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

.jv-feature-card {
  overflow: hidden;
  isolation: isolate;
  min-height: 300px;
  cursor: pointer;
  transition: color .45s ease;
}

.jv-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--jv-dark);
  transform: translateY(102%);
  transition: transform .7s cubic-bezier(.2, .85, .25, 1);
}

.jv-feature-card > * {
  position: relative;
  z-index: 1;
}

.jv-feature-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 70px;
  border: 1px solid var(--jv-line-strong);
  border-radius: 50%;
  color: var(--jv-teal);
  transition:
    color .4s ease,
    border-color .4s ease,
    background .4s ease,
    transform .5s cubic-bezier(.2, .85, .25, 1);
}

.jv-feature-card__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jv-feature-card:hover {
  color: #fff;
}

.jv-feature-card:hover::before {
  transform: translateY(0);
}

.jv-feature-card:hover p,
.jv-feature-card:hover .jv-feature-card__icon {
  color: rgba(255, 255, 255, 0.72);
}

.jv-feature-card:hover .jv-feature-card__icon {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(29, 219, 183, 0.12);
  transform: rotate(-12deg) scale(1.1);
}

.jv-panels__workspace {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
}

.jv-panels__tabs {
  display: grid;
  gap: 10px;
  align-self: start;
}

.jv-panels__tabs button {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--jv-line);
  border-radius: 8px;
  background: transparent;
  text-align: left;
  color: var(--jv-copy);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.jv-panels__tabs button.is-active {
  border-color: var(--jv-dark);
  background: var(--jv-dark);
  color: #fff;
}

.jv-panel-screen {
  position: relative;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--jv-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(29, 219, 183, 0.1), transparent 38%),
    #fff;
}

.jv-panel-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 18, 32, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 18, 32, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.jv-panel-screen__head,
.jv-panel-screen__metrics,
.jv-panel-screen__chart,
.jv-panel-screen__feed {
  position: relative;
  z-index: 1;
}

.jv-panel-screen__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--jv-line);
}

.jv-panel-screen__head span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--jv-teal);
}

.jv-panel-screen__head strong {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.jv-panel-screen__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.jv-panel-screen__metrics article {
  padding: 18px;
}

.jv-panel-screen__chart {
  height: 170px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 44px);
  margin-top: 28px;
  padding: 0 32px 18px;
  border-bottom: 1px solid var(--jv-line);
}

.jv-panel-screen__chart span {
  position: relative;
  display: block;
  flex: 0 0 clamp(10px, 1vw, 14px);
  width: clamp(10px, 1vw, 14px);
  height: var(--h);
  min-height: 32px;
  overflow: hidden;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, var(--jv-mint), var(--jv-teal));
  box-shadow: 0 12px 26px rgba(29, 103, 108, 0.18);
  transform-origin: bottom;
  transform: scaleY(1);
  opacity: .98;
  will-change: transform, opacity;
}

.jv-panel-screen__chart span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 42%);
  opacity: 0;
  transform: translateY(120%);
}

.jv-panel-screen__chart.is-animating span {
  animation: jvBars 1.15s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: var(--d, 0s);
}

.jv-panel-screen__chart.is-animating span::after {
  animation: jvBarGlint 1.15s cubic-bezier(.16, 1, .3, 1) both;
  animation-delay: var(--d, 0s);
}

.jv-panel-screen__chart span:nth-child(1) { --d: .02s; }
.jv-panel-screen__chart span:nth-child(2) { --d: .16s; }
.jv-panel-screen__chart span:nth-child(3) { --d: .3s; }
.jv-panel-screen__chart span:nth-child(4) { --d: .44s; }
.jv-panel-screen__chart span:nth-child(5) { --d: .58s; }
.jv-panel-screen__chart span:nth-child(6) { --d: .72s; }
.jv-panel-screen__chart span:nth-child(7) { --d: .86s; }

.jv-panel-screen__feed {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.jv-panel-screen__feed li {
  padding: 12px 14px;
  border: 1px solid var(--jv-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--jv-copy);
}

.jv-reasons__title {
  max-width: 1180px;
  margin-top: 24px;
  font-family: var(--f-display);
  font-size: clamp(38px, 4.2vw, 68px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: 0;
}

.jv-reasons__title em {
  color: var(--jv-teal);
}

.jv-reasons__list {
  margin-top: 58px;
  border-top: 1px solid var(--jv-line);
}

.jv-reason {
  border-bottom: 1px solid var(--jv-line);
}

.jv-reason__toggle {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--jv-ink);
  text-align: left;
  cursor: pointer;
}

.jv-reason__toggle:focus-visible {
  outline: 2px solid var(--jv-mint);
  outline-offset: -2px;
}

.jv-reason__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--jv-muted);
}

.jv-reason__title {
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 400;
  line-height: .96;
  letter-spacing: -0.025em;
  transition: color .22s ease;
}

.jv-reason__plus {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--jv-line);
  border-radius: 50%;
  transition: transform .28s ease, background .28s ease;
}

.jv-reason__plus svg {
  width: 24px;
  height: 24px;
}

.jv-reason__copy-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.jv-reason__copy {
  max-width: 720px;
  margin: -2px 76px 28px 94px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--jv-copy);
}

.jv-reason.is-open .jv-reason__plus {
  transform: rotate(45deg);
  background: rgba(29, 219, 183, 0.08);
}

.jv-reason.is-open .jv-reason__copy-wrap {
  max-height: 220px;
}

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

.jv-audience-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.jv-audience-card > span {
  margin-bottom: 24px;
}

.jv-audience-card__viz {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 32, 0.06);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(29, 219, 183, 0.12), transparent 34%),
    #f4f2ec;
}

.jv-audience-card__viz::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 18, 32, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 18, 32, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
}

.jv-audience-card__viz svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transform: scale(1.04);
  transform-origin: center;
}

.jv-viz-panel,
.jv-viz-card {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(10, 18, 32, 0.13);
  stroke-width: 1.4;
  filter: drop-shadow(0 12px 18px rgba(10, 18, 32, 0.08));
}

.jv-viz-card--mint {
  fill: rgba(29, 219, 183, 0.13);
  stroke: rgba(29, 103, 108, 0.18);
}

.jv-viz-dark {
  fill: var(--jv-dark);
  stroke: rgba(10, 18, 32, 0.12);
  filter: drop-shadow(0 14px 20px rgba(10, 18, 32, 0.14));
}

.jv-viz-kpis rect {
  fill: #fff;
  stroke: rgba(10, 18, 32, 0.1);
}

.jv-viz-kpis path,
.jv-viz-dark-stroke,
.jv-viz-muted-stroke,
.jv-viz-light-stroke {
  fill: none;
  stroke-linecap: round;
  stroke-width: 5;
}

.jv-viz-kpis path,
.jv-viz-dark-stroke {
  stroke: var(--jv-dark);
}

.jv-viz-muted-stroke {
  stroke: rgba(122, 133, 153, 0.34);
}

.jv-viz-light-stroke {
  stroke: rgba(255, 255, 255, 0.82);
}

.jv-viz-area {
  fill: rgba(29, 219, 183, 0.14);
}

.jv-viz-line,
.jv-viz-flow-lines path {
  fill: none;
  stroke: var(--jv-teal);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.jv-viz-line {
  stroke-dasharray: 420;
  animation: jvVizDraw 3.2s ease-in-out infinite;
}

.jv-viz-flow-lines path {
  stroke-dasharray: 6 8;
  opacity: .74;
  animation: jvVizDash 3.4s linear infinite;
}

.jv-viz-dot,
.jv-viz-node {
  fill: var(--jv-teal);
  filter: drop-shadow(0 8px 14px rgba(29, 103, 108, 0.2));
  animation: jvVizPulse 2.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.jv-viz-dot--late {
  animation-delay: .65s;
}

.jv-viz-bar {
  fill: var(--jv-mint);
  transform-box: fill-box;
  transform-origin: bottom;
  animation: jvVizBar 2.7s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.jv-viz-float {
  animation: jvVizFloat 6.8s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  transform-box: fill-box;
  transform-origin: center;
}

.jv-viz-check {
  fill: none;
  stroke: var(--jv-teal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 62;
  animation: jvVizCheck 3.3s ease-in-out infinite;
}

.jv-viz-ring {
  fill: none;
  stroke: rgba(29, 103, 108, 0.34);
  stroke-width: 2;
  stroke-dasharray: 4 8;
  animation: jvVizDash 7.6s linear infinite;
}

.jv-viz-ring--outer {
  stroke: rgba(10, 18, 32, 0.12);
  animation-duration: 11s;
  animation-direction: reverse;
}

.jv-viz-alert circle {
  fill: rgba(198, 139, 58, 0.18);
  stroke: rgba(198, 139, 58, 0.38);
  animation: jvVizPulse 2.2s ease-in-out infinite;
}

.jv-viz-alert path {
  fill: none;
  stroke: var(--jv-gold);
  stroke-width: 3;
  stroke-linecap: round;
}

.jv-viz-ok,
.jv-viz-label {
  font-family: var(--f-mono);
  letter-spacing: .14em;
  fill: var(--jv-muted);
}

.jv-viz-ok {
  font-size: 11px;
  font-weight: 600;
  fill: var(--jv-teal);
}

.jv-viz-label {
  font-size: 10px;
}

.jv-viz-center rect {
  fill: rgba(255, 255, 255, 0.95);
  stroke: rgba(10, 18, 32, 0.12);
  filter: drop-shadow(0 14px 22px rgba(10, 18, 32, 0.08));
}

.jv-viz-center path {
  fill: none;
  stroke: var(--jv-teal);
  stroke-width: 4;
  stroke-linecap: round;
}

.jv-viz-orbit--one { animation-delay: 0s; }
.jv-viz-orbit--two { animation-delay: -.6s; }
.jv-viz-orbit--three { animation-delay: -1.2s; }
.jv-viz-orbit--four { animation-delay: -1.8s; }
}

.jv-cta {
  padding-bottom: 96px;
}

.jv-cta__inner {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 72px 32px;
  border-radius: 8px;
  background: var(--jv-dark);
  color: #fff;
  text-align: center;
}

.jv-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 84%);
}

.jv-cta__label,
.jv-cta h2,
.jv-cta p,
.jv-cta__actions {
  position: relative;
  z-index: 2;
}

.jv-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

.jv-cta__label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jv-mint);
}

.jv-cta h2 {
  max-width: 900px;
  color: #fff;
}

.jv-cta h2 span {
  display: block;
}

.jv-cta p {
  max-width: 55ch;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
}

.jv-cta__actions {
  justify-content: center;
}

.jv-cta__inner .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.jv-cta__icons span {
  position: absolute;
  z-index: 1;
  width: 96px;
  height: 40px;
  opacity: .16;
  filter: grayscale(1) brightness(2);
  animation: jvFloat 7s ease-in-out infinite;
}

.jv-cta__icons span:nth-child(1) { left: 8%; top: 22%; }
.jv-cta__icons span:nth-child(2) { right: 9%; top: 18%; animation-delay: -1.4s; }
.jv-cta__icons span:nth-child(3) { left: 13%; bottom: 18%; animation-delay: -2.8s; }
.jv-cta__icons span:nth-child(4) { right: 14%; bottom: 20%; animation-delay: -4s; }

@keyframes jvDraw {
  from {
    stroke-dashoffset: 620;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes jvPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.32);
  }
}

@keyframes jvNodePulse {
  0%, 100% {
    opacity: .45;
    transform: scale(.84);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

@keyframes jvPipelineDot {
  0% {
    left: -10px;
    opacity: 0;
  }
  18%, 78% {
    opacity: 1;
  }
  100% {
    left: calc(100% + 10px);
    opacity: 0;
  }
}

@keyframes jvHeatCell {
  0%, 100% {
    transform: scale(.96);
    filter: saturate(.84);
  }
  48% {
    transform: scale(1);
    filter: saturate(1.18);
  }
}

@keyframes jvCodeWrite {
  0% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  8% {
    opacity: .96;
  }
  24%, 54% {
    opacity: .96;
    stroke-dashoffset: 0;
  }
  76% {
    opacity: .42;
    stroke-dashoffset: -42;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: -100;
  }
}

@keyframes jvCodeLabel {
  0%, 10% {
    opacity: 0;
    transform: translateX(-8px);
  }
  20%, 58% {
    opacity: .86;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(10px);
  }
}

@keyframes jvCodePill {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(.96);
  }
  16%, 64% {
    transform: translate3d(0, -3px, 0) scale(1);
  }
}

@keyframes jvCodeDots {
  0%, 18%, 100% {
    opacity: .34;
  }
  34%, 62% {
    opacity: .72;
  }
}

@keyframes jvCodeIcon {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(.96);
  }
  18%, 64% {
    transform: translate3d(0, -2px, 0) scale(1.04);
  }
}

@keyframes jvScoreLoad {
  0%, 100% {
    transform: scaleX(.72);
  }
  48% {
    transform: scaleX(1);
  }
}

@keyframes jvStreamDash {
  to {
    stroke-dashoffset: -76;
  }
}

@keyframes jvStreamPulse {
  0%, 100% {
    opacity: .56;
    transform: scale(.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes jvBars {
  0% {
    opacity: .36;
    transform: scaleY(.18);
    transform-origin: bottom;
  }
  42% {
    opacity: 1;
    transform: scaleY(1.08);
  }
  100% {
    opacity: .98;
    transform: scaleY(1);
  }
}

@keyframes jvBarGlint {
  0%, 22% {
    transform: translateY(-100%);
    opacity: 0;
  }
  44% {
    opacity: .75;
  }
  86%, 100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

@keyframes jvFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(4deg);
  }
}

@keyframes jvVizDraw {
  0% {
    stroke-dashoffset: 420;
  }
  42%, 72% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -420;
  }
}

@keyframes jvVizDash {
  to {
    stroke-dashoffset: -56;
  }
}

@keyframes jvVizPulse {
  0%, 100% {
    opacity: .72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes jvVizBar {
  0%, 100% {
    transform: scaleY(.62);
  }
  48% {
    transform: scaleY(1);
  }
}

@keyframes jvVizFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes jvVizCheck {
  0% {
    stroke-dashoffset: 62;
  }
  28%, 76% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -62;
  }
}

@media (max-width: 1120px) {
  .jv-hero__grid,
  .jv-data__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .jv-hero__visual {
    min-height: 580px;
  }

  .jv-section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 900px) {
  .jv-hero {
    padding-top: 112px;
  }

  .jv-hero__title,
  .jv-section-head h2,
  .jv-reasons__title,
  .jv-data__copy h2,
  .jv-cta h2 {
    font-size: 4.25rem;
  }

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

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

  .jv-panels__workspace {
    grid-template-columns: 1fr;
  }

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

  .jv-panels__tabs button {
    text-align: center;
    padding: 0 10px;
  }
}

@media (max-width: 720px) {
  .jv-hero,
  .jv-stats,
  .jv-value,
  .jv-features,
  .jv-panels,
  .jv-reasons,
  .jv-audience,
  .jv-cta {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .jv-hero {
    padding-top: 98px;
  }

  .jv-crumbs {
    flex-wrap: wrap;
  }

  .jv-hero__title,
  .jv-section-head h2,
  .jv-reasons__title,
  .jv-data__copy h2,
  .jv-cta h2 {
    font-size: 3.1rem;
  }

  .jv-hero__lede,
  .jv-section-head p,
  .jv-data__copy p,
  .jv-cta p {
    font-size: 1rem;
  }

  .jv-hero__visual {
    min-height: 560px;
  }

  .jv-dashboard {
    width: 82%;
    padding: 14px;
  }

  .jv-dashboard__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .jv-dashboard__metrics,
  .jv-dashboard__body,
  .jv-panel-screen__metrics {
    grid-template-columns: 1fr;
  }

  .jv-dashboard__metrics article:nth-child(n+2) {
    display: none;
  }

  .jv-chart {
    min-height: 180px;
  }

  .jv-dashboard__feed span:nth-child(n+3) {
    display: none;
  }

  .jv-stats,
  .jv-value__grid,
  .jv-features__grid,
  .jv-audience__grid {
    grid-template-columns: 1fr;
  }

  .jv-stat:first-child,
  .jv-stat {
    border-left: 1px solid var(--jv-line);
  }

  .jv-stat {
    min-height: 150px;
  }

  .jv-stat strong {
    font-size: 3.2rem;
  }

  .jv-value-card,
  .jv-feature-card,
  .jv-audience-card {
    min-height: auto;
    padding: 26px;
  }

  .jv-value-card span,
  .jv-audience-card span,
  .jv-feature-card__icon {
    margin-bottom: 40px;
  }

  .jv-data {
    padding: 56px 0;
  }

  .jv-intel {
    min-height: auto;
    padding: 18px;
  }

  .jv-intel__top {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .jv-intel__pipeline {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .jv-intel__pipeline i {
    display: none;
  }

  .jv-intel__board {
    grid-template-columns: 1fr;
    grid-template-areas:
      "score"
      "heat"
      "signals";
  }

  .jv-organic-code {
    min-height: 220px;
  }

  .jv-organic-code svg {
    min-height: 220px;
  }

  .jv-score-card {
    padding: 18px;
  }

  .jv-intel__stream {
    display: none;
  }

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

  .jv-panel-screen {
    min-height: 560px;
    padding: 20px;
  }

  .jv-panel-screen__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .jv-panel-screen__head strong {
    font-size: 2.35rem;
  }

  .jv-panel-screen__chart {
    gap: 10px;
    padding-left: 4px;
    padding-right: 4px;
  }

  .jv-reasons__list {
    margin-top: 34px;
  }

  .jv-reason__toggle {
    min-height: 94px;
    grid-template-columns: 1fr 40px;
    gap: 14px;
    text-align: center;
  }

  .jv-reason__num {
    grid-column: 1 / -1;
  }

  .jv-reason__title {
    font-size: 34px;
  }

  .jv-reason__plus {
    width: 36px;
    height: 36px;
  }

  .jv-reason__copy-wrap {
    text-align: center;
  }

  .jv-reason__copy {
    max-width: 32ch;
    margin: -2px auto 28px;
    font-size: 15px;
  }

  .jv-cta__inner {
    min-height: 520px;
    padding: 56px 20px;
  }

  .jv-cta__icons span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jv-chart__line,
  .jv-chart circle,
  .jv-intel__pipeline i::after,
  .jv-code-lines path,
  .jv-code-labels text,
  .jv-code-prefixes text,
  .jv-code-core,
  .jv-code-core-dots,
  .jv-code-core-icon,
  .jv-score-card__bar i,
  .jv-intel__stream path,
  .jv-intel__stream circle,
  .jv-panel-screen__chart span,
  .jv-panel-screen__chart span::after,
  .jv-cta__icons span,
  .jv-viz-line,
  .jv-viz-flow-lines path,
  .jv-viz-dot,
  .jv-viz-node,
  .jv-viz-bar,
  .jv-viz-float,
  .jv-viz-check,
  .jv-viz-ring,
  .jv-viz-alert circle {
    animation: none !important;
    transition: none !important;
  }
}

html[data-anim="off"] .jv-chart__line,
html[data-anim="off"] .jv-chart circle,
html[data-anim="off"] .jv-intel__pipeline i::after,
html[data-anim="off"] .jv-code-lines path,
html[data-anim="off"] .jv-code-labels text,
html[data-anim="off"] .jv-code-prefixes text,
html[data-anim="off"] .jv-code-core,
html[data-anim="off"] .jv-code-core-dots,
html[data-anim="off"] .jv-code-core-icon,
html[data-anim="off"] .jv-score-card__bar i,
html[data-anim="off"] .jv-intel__stream path,
html[data-anim="off"] .jv-intel__stream circle,
html[data-anim="off"] .jv-panel-screen__chart span,
html[data-anim="off"] .jv-panel-screen__chart span::after,
html[data-anim="off"] .jv-cta__icons span,
html[data-anim="off"] .jv-viz-line,
html[data-anim="off"] .jv-viz-flow-lines path,
html[data-anim="off"] .jv-viz-dot,
html[data-anim="off"] .jv-viz-node,
html[data-anim="off"] .jv-viz-bar,
html[data-anim="off"] .jv-viz-float,
html[data-anim="off"] .jv-viz-check,
html[data-anim="off"] .jv-viz-ring,
html[data-anim="off"] .jv-viz-alert circle {
  animation: none !important;
  transition: none !important;
}
