.ww-home-wheel {
  margin-top: 2rem;
  scroll-margin-top: 6rem;
  border-top: 1px solid #f1f2f4;
  padding-top: 3.5rem;
  text-align: center;
}

.ww-home-wheel__eyebrow {
  margin: 0;
  color: #94a3b8;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.ww-home-wheel__title {
  margin: 1rem auto 0;
  max-width: 34rem;
  color: #000;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  line-height: .98;
}

.ww-wheel-stage {
  position: relative;
  width: min(84vw, 24rem);
  aspect-ratio: 1;
  margin: 2.25rem auto .75rem;
}

.ww-wheel-stage::before {
  content: "";
  position: absolute;
  inset: 17%;
  border: 3px solid #64eb0a;
  border-radius: 50%;
}

.ww-wheel-orbit {
  position: absolute;
  inset: 0;
  transition: transform 320ms cubic-bezier(.2,.8,.2,1);
}

.ww-wheel-node {
  position: absolute;
  width: 28%;
  aspect-ratio: 1;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: clamp(.7rem, 3vw, .9rem);
  font-weight: 900;
  line-height: 1.05;
  padding: .4rem;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 320ms cubic-bezier(.2,.8,.2,1), box-shadow 180ms ease;
}

.ww-wheel-node[data-position="top"] { top: 0; left: 36%; }
.ww-wheel-node[data-position="right"] { top: 36%; right: 0; }
.ww-wheel-node[data-position="bottom"] { bottom: 0; left: 36%; }
.ww-wheel-node[data-position="left"] { top: 36%; left: 0; }

.ww-wheel-node[aria-pressed="true"] {
  border-color: #64eb0a;
  background: #f5ffe9;
  box-shadow: 0 0 0 5px rgba(100,235,10,.16);
}

.ww-wheel-center {
  position: absolute;
  inset: 34%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #64eb0a;
  color: #000;
  font-size: clamp(.9rem, 4vw, 1.25rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
}

.ww-wheel-repeat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin: 0 auto;
  border: 0;
  background: transparent;
  color: #4cb506;
  font: inherit;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.ww-wheel-repeat:hover { text-decoration: underline; }

.ww-home-wheel__hint {
  margin: .8rem 0 0;
  color: #64748b;
  font-size: .95rem;
  font-weight: 700;
}

.ww-wheel-detail {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.25rem;
  text-align: left;
  box-shadow: 0 12px 35px rgba(15,23,42,.06);
}

.ww-wheel-detail__step {
  margin: 0 0 .45rem;
  color: #4cb506;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.ww-wheel-detail__title {
  margin: 0;
  color: #000;
  font-size: 1.1rem;
  font-weight: 900;
}

.ww-wheel-detail__copy {
  margin: .55rem 0 0;
  color: #64748b;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.55;
}

.ww-home-wheel__support {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  border-radius: 1rem;
  background: #f7ffe8;
  padding: 1rem 1.25rem;
  color: #1f2937;
  font-size: .95rem;
  font-weight: 800;
}

.ww-home-wheel__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  color: #4cb506;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.ww-home-wheel__link:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .ww-home-wheel { margin-top: 3.5rem; padding-top: 5rem; }
  .ww-home-wheel__eyebrow { font-size: 1rem; }
  .ww-wheel-stage { width: 26rem; }
  .ww-wheel-node { font-size: .95rem; }
  .ww-wheel-detail { padding: 1.5rem 1.75rem; }
}