.home-results-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(34, 211, 238, 0.14);
  background:
    linear-gradient(135deg, rgba(7, 11, 21, 0.96), rgba(11, 18, 32, 0.98)),
    repeating-linear-gradient(90deg, rgba(148, 163, 184, 0.05) 0 1px, transparent 1px 96px);
}

.home-results-section .container-page {
  padding-top: clamp(44px, 5vw, 68px);
  padding-bottom: clamp(44px, 5vw, 68px);
}

.home-results-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(500px, 1.3fr);
  gap: clamp(22px, 3.6vw, 48px);
  align-items: stretch;
}

.home-results-layout > div:first-child {
  align-self: center;
}

.home-results-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  padding: 7px 12px;
  color: #22d3ee;
  font-size: 0.9rem;
  font-weight: 700;
}

.home-results-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #22d3ee;
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.72);
}

.home-results-title {
  max-width: 500px;
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.65rem, 2.85vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.home-results-intro {
  max-width: 500px;
  margin: 12px 0 0;
  color: #cbd5e1;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.56;
}

.home-results-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.home-result-card {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.66);
  padding: 12px 14px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.home-result-card:hover,
.home-result-card:focus-visible,
.home-result-card.is-active {
  border-color: var(--result-color);
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 20px 70px rgba(2, 6, 23, 0.34);
  transform: translateY(-2px);
  outline: none;
}

.home-result-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 5px;
  color: #f8fafc;
  font-size: clamp(0.94rem, 1.05vw, 1.06rem);
  font-weight: 800;
}

.home-result-card h3::after {
  content: "";
  width: 30px;
  height: 3px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--result-color);
  opacity: 0.9;
}

.home-result-card p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.86rem;
  line-height: 1.44;
}

.home-results-footnote {
  margin: 12px 0 0;
  color: #94a3b8;
  font-size: 0.76rem;
  line-height: 1.46;
}

.home-results-graph-panel {
  position: relative;
  display: flex;
  min-height: 100%;
  height: 100%;
  flex-direction: column;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(8, 13, 24, 0.94)),
    linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(52, 211, 153, 0.04));
  padding: clamp(16px, 2.2vw, 28px);
  box-shadow: 0 32px 120px rgba(2, 6, 23, 0.34);
}

.home-results-graph-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}

.home-results-graph-heading span {
  color: #22d3ee;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-results-graph-heading strong {
  display: block;
  margin-top: 4px;
  color: #f8fafc;
  font-size: clamp(0.98rem, 1.35vw, 1.22rem);
}

.home-results-live-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(52, 211, 153, 0.34);
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.1);
  padding: 7px 11px;
  color: #86efac;
  font-size: 0.76rem;
  font-weight: 800;
}

.home-results-chart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(225, 224, 204, 0.1);
  color: rgba(225, 224, 204, 0.62);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-results-chart-meta strong {
  color: #e1e0cc;
  font-weight: 700;
}

.home-results-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem 0.9rem;
  margin-top: 0.8rem;
}

.home-results-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: rgba(225, 224, 204, 0.68);
  font-size: 0.7rem;
  font-weight: 600;
  transition: color 180ms ease, opacity 180ms ease;
}

.home-results-legend-item i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--legend-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--legend-color) 14%, transparent);
}

.home-results-section.is-focused .home-results-legend-item {
  opacity: 0.34;
}

.home-results-section.is-focused .home-results-legend-item.is-active {
  color: #e1e0cc;
  opacity: 1;
}

.home-results-chart {
  width: 100%;
  min-height: clamp(300px, 30vw, 430px);
  flex: 1 1 auto;
  height: 100%;
  display: block;
  overflow: visible;
}

.home-results-grid-line {
  stroke: rgba(148, 163, 184, 0.18);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.home-results-grid-line-vertical {
  stroke-dasharray: 3 8;
  opacity: 0.64;
}

.home-results-axis-label {
  fill: rgba(203, 213, 225, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.home-results-axis-title,
.home-results-tick-label,
.home-results-milestone-label,
.home-results-value-label {
  fill: rgba(184, 183, 178, 0.68);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
}

.home-results-axis-title {
  fill: rgba(201, 135, 80, 0.88);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.home-results-milestone-line {
  stroke: rgba(201, 135, 80, 0.46);
  stroke-width: 1;
  stroke-dasharray: 5 7;
  vector-effect: non-scaling-stroke;
}

.home-results-milestone-label {
  fill: rgba(219, 167, 124, 0.76);
  font-size: 10px;
}

.home-results-fill {
  opacity: 0.2;
  transition: opacity 200ms ease;
}

.home-results-line {
  fill: none;
  stroke: var(--line-color);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
  transition:
    opacity 200ms ease,
    stroke-width 200ms ease,
    filter 200ms ease;
}

.home-results-value-label {
  fill: var(--line-color, #e1e0cc);
  opacity: 0;
  paint-order: stroke;
  stroke: #0d100f;
  stroke-width: 4px;
  transition: opacity 180ms ease;
}

.home-results-section.is-focused .home-results-line {
  opacity: 0.12;
}

.home-results-section.is-focused .home-results-line.is-active {
  opacity: 1;
  stroke-width: 8;
  stroke-dasharray: 16 18;
  animation: homeResultsLineFlow 1.8s linear infinite;
  filter: drop-shadow(0 0 14px var(--line-color));
}

.home-results-section.is-focused .home-results-fill {
  opacity: 0.05;
}

.home-results-point {
  fill: var(--line-color);
  opacity: 0.56;
  stroke: #0d100f;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
  transform-origin: center;
  transition: opacity 180ms ease;
}

.home-results-section.is-focused .home-results-point {
  opacity: 0.1;
}

.home-results-section.is-focused .home-results-point.is-active {
  opacity: 1;
  animation: homeResultsPointPulse 1.6s ease-in-out infinite;
}

.home-results-section.is-focused .home-results-value-label.is-active {
  opacity: 1;
}

.home-results-model-note {
  margin: -0.1rem 0 0.35rem;
  color: rgba(184, 183, 178, 0.58);
  font-size: 0.68rem;
  line-height: 1.45;
}

.home-results-caption {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding-top: 10px;
}

.home-results-caption span {
  color: var(--caption-color, #22d3ee);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-results-impact {
  color: var(--caption-color, #22d3ee);
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  line-height: 1.05;
  font-weight: 900;
}

.home-results-caption strong {
  color: #f8fafc;
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
}

.home-results-caption p {
  max-width: 620px;
  min-height: 2.92em;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.46;
  font-size: 0.86rem;
}

@keyframes homeResultsLineFlow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -68;
  }
}

@keyframes homeResultsPointPulse {
  0%,
  100% {
    opacity: 0.64;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (max-width: 1024px) {
  .home-results-layout {
    grid-template-columns: 1fr;
  }

  .home-results-graph-panel {
    min-height: auto;
    height: auto;
  }

  .home-results-chart {
    min-height: clamp(280px, 48vw, 390px);
  }
}

@media (max-width: 640px) {
  .home-results-section .container-page {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .home-results-title {
    font-size: clamp(1.55rem, 7.6vw, 2.2rem);
  }

  .home-results-graph-heading {
    display: grid;
  }

  .home-results-live-pill {
    width: fit-content;
  }

  .home-result-card {
    padding: 12px;
  }

  .home-results-chart {
    min-height: 260px;
  }

  .home-results-chart-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .home-results-legend {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .home-results-legend-item {
    min-width: 0;
    font-size: 0.64rem;
  }
}

/* Prisma editorial theme */
.home-results-section {
  border-block-color: rgba(225, 224, 204, 0.16);
  background:
    radial-gradient(circle at 78% 20%, rgba(201, 135, 80, 0.08), transparent 28rem),
    #050606;
}

.home-results-section .container-page {
  padding-top: clamp(72px, 7vw, 108px);
  padding-bottom: clamp(72px, 7vw, 108px);
}

.home-results-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(32px, 4vw, 64px);
}

.home-results-layout > div:first-child {
  align-self: start;
}

.home-results-eyebrow {
  border-color: rgba(201, 135, 80, 0.42);
  background: rgba(201, 135, 80, 0.1);
  color: #dba77c;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-results-eyebrow::before {
  background: #c98750;
  box-shadow: none;
}

.home-results-title {
  max-width: 12ch;
  color: #e1e0cc;
  font-size: clamp(2.75rem, 4.1vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.home-results-intro,
.home-result-card p,
.home-results-caption p {
  color: #b8b7b2;
}

.home-results-footnote,
.home-results-axis-label {
  color: rgba(184, 183, 178, 0.72);
  fill: rgba(184, 183, 178, 0.72);
}

.home-result-card,
.home-results-graph-panel {
  border-color: rgba(225, 224, 204, 0.16);
  background: #0d100f;
  box-shadow: none;
}

.home-result-card {
  border-radius: 18px;
  padding: 16px 18px;
}

.home-result-card:hover,
.home-result-card:focus-visible,
.home-result-card.is-active {
  border-color: var(--result-color);
  background: #121512;
  box-shadow: none;
  transform: translateY(-2px);
}

.home-result-card h3,
.home-results-graph-heading strong,
.home-results-caption strong {
  color: #e1e0cc;
  font-weight: 600;
}

.home-results-graph-panel {
  position: sticky;
  top: 5.75rem;
  align-self: start;
  min-height: 0;
  height: auto;
  border-radius: 28px;
  padding: clamp(20px, 2.3vw, 34px);
}

.home-results-chart {
  width: 100%;
  min-height: 0;
  height: auto;
  max-height: 430px;
  aspect-ratio: 16 / 9;
  margin-top: 0.75rem;
}

.home-results-graph-heading span,
.home-results-caption span {
  color: #c98750;
}

.home-results-live-pill {
  border-color: rgba(142, 154, 118, 0.4);
  background: rgba(142, 154, 118, 0.12);
  color: #bac6a4;
}

.home-results-grid-line,
.home-results-caption {
  stroke: rgba(225, 224, 204, 0.12);
  border-color: rgba(225, 224, 204, 0.12);
}

.home-results-caption {
  margin-top: 0.65rem;
  padding-top: 0.8rem;
}

.home-results-impact {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
}

@media (max-width: 1024px) {
  .home-results-layout {
    grid-template-columns: 1fr;
  }

  .home-results-title {
    max-width: 15ch;
  }

  .home-results-graph-panel {
    position: relative;
    top: auto;
  }

  .home-results-chart {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .home-results-section .container-page {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .home-results-title {
    max-width: 13ch;
    font-size: clamp(2.5rem, 10.5vw, 3.6rem);
  }
}
/* end Prisma editorial theme */
