/* Vertical scroll wheel – shared styles */

.scroll-wheel-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 24px 0;
}

.scroll-wheel-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #171718;
}

.scroll-wheel-label svg {
  flex-shrink: 0;
}

.scroll-wheel-container {
  width: 100%;
  max-width: 300px;
  height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #F8F8FF;
  border-radius: 20px;
  padding: 24px 20px;
  padding-right: 12px;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  border: 1px solid rgba(207, 213, 222, 0.6);
}

.scroll-wheel-container::-webkit-scrollbar {
  width: 8px;
}

.scroll-wheel-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  margin: 8px 0;
}

.scroll-wheel-container::-webkit-scrollbar-thumb {
  background: #5a5a5a;
  border-radius: 4px;
}

.scroll-wheel-container::-webkit-scrollbar-thumb:hover {
  background: #4a4a4a;
}

@supports (scrollbar-width: thin) {
  .scroll-wheel-container {
    scrollbar-width: thin;
    scrollbar-color: #5a5a5a rgba(0, 0, 0, 0.08);
  }
}

.scroll-wheel-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 16px;
  width: 100%;
  box-sizing: border-box;
}

.scroll-wheel-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 28px;
  width: 100%;
  max-width: 428px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  transition: color 0.2s ease, font-weight 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  padding: 6px 12px;
  border-radius: 0;
  box-sizing: border-box;
  transform-origin: center center;
  background: transparent;
}

.scroll-wheel-container .scroll-wheel-item-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #F0F0FF;
  border: 2px solid #D4CAFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.scroll-wheel-container .scroll-wheel-item-check svg {
  stroke: rgba(109, 77, 255, 0.45);
  transition: stroke 0.2s ease;
}

.scroll-wheel-item .scroll-wheel-item-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: rgba(109, 77, 255, 0.6);
  text-align: left;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

/* Focus variants – shared structure, themed by parent card */

.card-figma .scroll-wheel-item.scroll-wheel-item--focused .scroll-wheel-item-text {
  color: #6D4DFF;
  font-weight: 700;
}

.card-figma .scroll-wheel-item.scroll-wheel-item--focused .scroll-wheel-item-check svg {
  stroke: #6D4DFF;
}

.card-figma-business .scroll-wheel-item .scroll-wheel-item-text {
  color: rgba(67, 56, 202, 0.55);
}

.card-figma-business .scroll-wheel-item .scroll-wheel-item-check {
  border-color: #a5b4fc;
}

.card-figma-business .scroll-wheel-item .scroll-wheel-item-check svg {
  stroke: rgba(67, 56, 202, 0.5);
}

.card-figma-business .scroll-wheel-item.scroll-wheel-item--focused .scroll-wheel-item-text {
  color: #6D4DFF;
  font-weight: 700;
}

.card-figma-business .scroll-wheel-item.scroll-wheel-item--focused .scroll-wheel-item-check svg {
  stroke: #6D4DFF;
}

/* Card-specific sizing for the wheels inside cards */

.scroll-wheel-container--card {
  max-width: 100%;
  height: 220px;
  background: transparent;
  border: none;
  padding: 0 8px 0 0;
}

.scroll-wheel-wrap--card {
  gap: 12px;
  padding: 0;
  justify-content: flex-start;
}

.scroll-wheel-wrap--card .scroll-wheel-label {
  font-size: 12px;
}

.scroll-wheel-wrap--card .scroll-wheel-label svg {
  width: 18px;
  height: 24px;
}


/* Speed test CTA pill (Figma Component 43) */
.speedtest-cta-btn {
  box-sizing: border-box;
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  gap: 10px;
  isolation: isolate;
  width: 309px;
  height: 44px;
  background: linear-gradient(180deg, #505CFF 0%, #6644FF 100%), #FFFFFF;
  box-shadow: 0px 0px 0px 4px #D8CFFF, 0px 32px 64px -12px rgba(14, 24, 41, 0.24);
  border-radius: 42px;
  border: none;
  cursor: pointer;
}

.speedtest-cta-text {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.02em;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
    linear-gradient(76.51deg, #D9CFFF -38%, #171718 19.5%, #171718 65.21%, #D8CFFF 115.4%),
    linear-gradient(180deg, #505CFF 0%, #6644FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.speedtest-cta-shine {
  position: absolute;
  width: 59.17px;
  height: 71.49px;
  left: -62px;
  top: -10px;
  opacity: 0.5;
  pointer-events: none;
}

/* active nav-link css */
.nav-active{
  color:#684EFB !important;
  border-radius:9999px;
  padding:10px 0px;
  position:relative;
  display:inline-block;
}

.nav-active::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:3px;              /* closer to text */
  width:70%;                /* shorter than the word width */
  height:1px;               /* very thin line */
  background:linear-gradient(
    90deg,
    rgba(109,77,255,0) 0%,
    #6D4DFF 49.31%,
    rgba(109,77,255,0) 100%
  );
}