.winner-card,
.metric-grid {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.winner-card {
  padding: 13px;
}

.winner-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.winner-heading > div {
  display: grid;
  min-width: 0;
}

.winner-heading strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winner-rank {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
}

.winner-badge {
  border-radius: 999px;
  padding: 4px 7px;
  background: rgba(185, 245, 122, 0.1);
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
}

.mode-flow {
  display: flex;
  align-items: center;
  margin-top: 13px;
}

.mode-flow span {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  padding: 4px 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
}

.mode-flow i {
  width: 13px;
  height: 1px;
  background: rgba(93, 219, 207, 0.32);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.metric-grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}

.metric-grid > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-grid strong {
  margin-top: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-grid .metric-good {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--lime);
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 11px 14px;
  background: rgba(13, 38, 32, 0.91);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  animation: float 5s ease-in-out infinite;
}

.floating-card-one {
  top: 16%;
  right: -6%;
}

.floating-card-two {
  bottom: 18%;
  left: -6%;
  animation-delay: -2.4s;
}

.floating-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: rgba(93, 219, 207, 0.1);
  color: var(--aqua);
  font-size: 10px;
  font-weight: 900;
}

.floating-card > div {
  display: grid;
  line-height: 1.2;
}

.floating-card strong {
  margin-top: 3px;
  font-size: 10px;
}

.audience-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.audience-content {
  display: grid;
  min-height: 92px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 48px;
}

.audience-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-content > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #344740;
  font-size: 14px;
  font-weight: 700;
}

.audience-content > div span {
  display: flex;
  align-items: center;
  gap: 20px;
}

.audience-content > div span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #afbbb5;
  content: "";
}

.section {
  padding-block: 128px;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 64px;
}

.kicker {
  color: #4a7a6e;
}

.section-heading h2,
.approach-heading h2,
.decision-copy h2,
.faq-heading h2,
.access-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.3vw, 58px);
  font-weight: 720;
}

.section-heading > p:last-child,
.approach-heading > p,
.decision-copy > p,
.access-copy > p {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

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

.feature-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: rgba(255, 255, 255, 0.68);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.feature-card::after {
  position: absolute;
  right: -65px;
  bottom: -75px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(93, 219, 207, 0.13);
  border-radius: 50%;
  content: "";
}

.feature-card:hover {
  border-color: rgba(74, 122, 110, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-card-large {
  grid-column: span 1;
  background:
    radial-gradient(circle at 100% 0, rgba(185, 245, 122, 0.2), transparent 37%),
    var(--ink);
  color: var(--white);
}

.feature-card-wide {
  display: grid;
  min-height: 285px;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: 26px;
  background: var(--white);
}

.feature-number {
  position: absolute;
  top: 27px;
  right: 28px;
  color: rgba(16, 33, 28, 0.3);
  font-size: 12px;
  font-weight: 850;
}

.feature-card-large .feature-number {
  color: rgba(255, 255, 255, 0.34);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 66px;
  place-items: center;
  border: 1px solid rgba(74, 122, 110, 0.18);
  border-radius: 15px;
  background: rgba(93, 219, 207, 0.07);
  color: #3a7669;
}

.feature-card-wide .feature-icon {
  margin: 0;
}

.feature-card-large .feature-icon {
  border-color: rgba(185, 245, 122, 0.2);
  background: rgba(185, 245, 122, 0.08);
  color: var(--lime);
}

.feature-icon svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin-bottom: 14px;
  font-size: 25px;
  font-weight: 720;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-card-large p {
  color: rgba(255, 255, 255, 0.62);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
}

.separation-diagram {
  display: grid;
  gap: 8px;
}

.separation-diagram span {
  display: flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 122, 110, 0.17);
  border-radius: 11px;
  background: var(--paper);
  color: #35554d;
  font-size: 12px;
  font-weight: 800;
}

.separation-diagram i {
  width: 1px;
  height: 10px;
  margin-inline: auto;
  background: #abc1ba;
}

.approach-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.approach-section::before {
  position: absolute;
  top: -370px;
  right: -280px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(93, 219, 207, 0.09);
  border-radius: 50%;
  box-shadow: inset 0 0 140px rgba(93, 219, 207, 0.025);
  content: "";
}

.approach-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 78px;
}

.kicker-light {
  color: var(--aqua);
}

.approach-heading h2 {
  margin-bottom: 0;
}

.approach-heading > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
}

.steps-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list::before {
  position: absolute;
  top: 70px;
  bottom: 70px;
  left: 29px;
  width: 1px;
  background: linear-gradient(var(--lime), rgba(93, 219, 207, 0.16));
  content: "";
}

.step {
  position: relative;
  display: grid;
  min-height: 250px;
  grid-template-columns: 60px minmax(0, 0.85fr) minmax(390px, 0.8fr);
  align-items: center;
  gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 46px;
}

.step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-index {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(185, 245, 122, 0.28);
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 12px;
  font-weight: 850;
}

.step-label {
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.step-copy h3 {
  margin-bottom: 14px;
  font-size: 29px;
  font-weight: 700;
}

.step-copy > p:last-child {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.52);
}

.step-visual {
  justify-self: end;
  width: 100%;
  max-width: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.scenario-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.scenario-card > div {
  display: grid;
  min-height: 83px;
  align-content: center;
  gap: 3px;
  padding: 14px 18px;
}

.scenario-card > div:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.scenario-card > div:nth-child(n + 3) {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.scenario-card span,
.inspect-row span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.scenario-card strong {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.search-card {
  padding: 14px 18px 15px;
}

.search-card svg {
  width: 100%;
}

.search-card path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.11);
  stroke-width: 2;
}

.search-card path.search-selected {
  stroke: var(--lime);
  stroke-width: 3;
}

.search-card circle {
  fill: var(--ink);
  stroke: var(--aqua);
  stroke-width: 2;
}

.search-card > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 750;
}

.search-card > span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.inspect-card {
  padding: 13px;
}

.inspect-tabs {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.inspect-tabs span {
  border-radius: 7px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
}

.inspect-tabs .active {
  background: rgba(185, 245, 122, 0.1);
  color: var(--lime);
}

.inspect-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
}

.inspect-row + .inspect-row {
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.inspect-row i {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.inspect-row strong {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}
