/* ---------- What We Do — tech HUD layout ---------- */
.wwd {
  --wwd-gutter: var(--section-gutter, clamp(24px, 4vw, 40px));
  --wwd-line: rgba(0, 0, 0, 0.12);
  --wwd-ink: #0a0a0a;
  --wwd-muted: #6b6b6b;
  --wwd-soft: #f3f3f3;
  background: #fff;
  color: var(--wwd-ink);
  padding: clamp(48px, 8vh, 96px) clamp(32px, 5vw, 64px);
}

.wwd__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 40px);
  width: 100%;
}

.wwd__stats,
.wwd__body,
.wwd__pillars,
.wwd__stats-wrap {
  width: 100%;
  box-sizing: border-box;
}

.wwd__stats-wrap {
  position: relative;
}

.wwd__stats-orbit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 5;
}

.wwd__stats-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a0a0a;
  offset-anchor: center;
  offset-rotate: 0deg;
  offset-distance: 0%;
  animation: wwd-orbit-travel 22s linear infinite;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wwd__stats-wrap.is-visible .wwd__stats-dot {
  animation-play-state: running;
  opacity: 1;
}

.wwd__stats-dot--delayed {
  animation-delay: -11s;
}

@keyframes wwd-orbit-travel {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

/* Shared tech frame with notched corners */
.tech-frame {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--wwd-ink);
}

.tech-frame--stats {
  clip-path: polygon(
    16px 0,
    100% 0,
    100% calc(100% - 16px),
    calc(100% - 16px) 100%,
    0 100%,
    0 16px
  );
}

.tech-frame--stage {
  border: none;
  background: transparent;
}

.tech-frame--stage .wwd__stage-shell {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--wwd-ink);
  clip-path: polygon(
    22px 0,
    calc(100% - 22px) 0,
    100% 22px,
    100% calc(100% - 22px),
    calc(100% - 22px) 100%,
    22px 100%,
    0 calc(100% - 22px),
    0 22px
  );
  background: var(--wwd-soft);
  pointer-events: none;
  z-index: 0;
}

/* Corner L-brackets */
.wwd__stage-bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 4;
  pointer-events: none;
}

.wwd__stage-bracket--tl {
  top: 6px;
  left: 6px;
  border-top: 2px solid var(--wwd-ink);
  border-left: 2px solid var(--wwd-ink);
}

.wwd__stage-bracket--tr {
  top: 6px;
  right: 6px;
  border-top: 2px solid var(--wwd-ink);
  border-right: 2px solid var(--wwd-ink);
}

.wwd__stage-bracket--bl {
  bottom: 6px;
  left: 6px;
  border-bottom: 2px solid var(--wwd-ink);
  border-left: 2px solid var(--wwd-ink);
}

.wwd__stage-bracket--br {
  bottom: 6px;
  right: 6px;
  border-bottom: 2px solid var(--wwd-ink);
  border-right: 2px solid var(--wwd-ink);
}

/* ---------- Top stats bar ---------- */
.wwd__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: clamp(18px, 2.5vw, 26px) 0;
}

.wwd__stat {
  padding: 4px clamp(12px, 1.8vw, 22px);
  border-right: 1px solid var(--wwd-line);
  text-align: left;
  cursor: default;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease;
}

.wwd__stat:hover {
  transform: translateY(-5px);
  background: rgba(0, 0, 0, 0.02);
}

.wwd__stat:last-child {
  border-right: none;
}

.wwd__stat-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--wwd-muted);
}

.wwd__stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__stat:hover .wwd__stat-label {
  letter-spacing: 0.18em;
}

.wwd__stat-top .wwd-icon {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__stat-value {
  font-family: 'Barlow Semi Condensed', var(--font);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__stat:hover .wwd__stat-value {
  transform: scale(1.05);
  letter-spacing: 0.05em;
}

.wwd__stat-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wwd-muted);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.wwd__stat:hover .wwd__stat-sub {
  transform: translateY(-2px);
  opacity: 1;
}

.wwd__stat:nth-child(1):hover .wwd-icon {
  animation: wwd-stat-bolt 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__stat:nth-child(2):hover .wwd-icon {
  animation: wwd-stat-chip 0.7s linear infinite;
}

.wwd__stat:nth-child(3):hover .wwd-icon {
  animation: wwd-stat-wave 0.8s ease-in-out infinite;
}

.wwd__stat:nth-child(4):hover .wwd-icon {
  animation: wwd-stat-battery 0.6s ease-in-out infinite alternate;
}

.wwd__stat:nth-child(5):hover .wwd-icon {
  animation: wwd-stat-stack 0.55s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
}

.wwd-icon {
  display: block;
  flex-shrink: 0;
}

/* ---------- Middle body ---------- */
.wwd__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
  width: 100%;
}

/* Stage / product frame */
.wwd__stage {
  margin: 0;
  width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 32px);
  cursor: pointer;
}

.wwd__stage:hover,
.wwd__stage:focus-visible {
  animation: wwd-stage-crack 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__stage:hover .wwd__stage-shell,
.wwd__stage:focus-visible .wwd__stage-shell {
  animation: wwd-shell-split 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__stage:hover .wwd__stage-lottie,
.wwd__stage:focus-visible .wwd__stage-lottie {
  filter: contrast(1.08);
  transform: scale(1.03);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease,
    opacity 0.35s ease;
}

.wwd__stage:hover .wwd__stage-bracket,
.wwd__stage:focus-visible .wwd__stage-bracket {
  animation: wwd-bracket-pop 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes wwd-stage-crack {
  0% { transform: translate(0, 0); }
  18% { transform: translate(-3px, 2px); }
  36% { transform: translate(3px, -2px); }
  54% { transform: translate(-2px, -1px); }
  72% { transform: translate(1px, 2px); }
  100% { transform: translate(0, 0); }
}

@keyframes wwd-shell-split {
  0% { transform: scale(1); }
  35% { transform: scale(1.012); }
  100% { transform: scale(1); }
}

@keyframes wwd-bracket-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.wwd__stage-mark {
  position: absolute;
  top: 18px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  z-index: 3;
}

.wwd__stage-x {
  font-size: 0.7rem;
}

.wwd__stage-lottie {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  aspect-ratio: 1;
  transform: scale(0.92);
  opacity: 0.6;
  transition:
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.wwd__stage-lottie svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.wwd__stage.is-visible .wwd__stage-lottie {
  transform: scale(1);
  opacity: 1;
}

.wwd__stage-radar {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    radial-gradient(circle, transparent 28%, rgba(0, 0, 0, 0.04) 29%, transparent 30%),
    radial-gradient(circle, transparent 48%, rgba(0, 0, 0, 0.05) 49%, transparent 50%),
    radial-gradient(circle, transparent 68%, rgba(0, 0, 0, 0.05) 69%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.9s ease 0.25s,
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

.wwd__stage.is-visible .wwd__stage-radar {
  opacity: 1;
  transform: scale(1);
}

.wwd__stage-radar::before,
.wwd__stage-radar::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(0, 0, 0, 0.06);
}

.wwd__stage-radar::before {
  width: 1px;
  height: 100%;
  transform: translate(-50%, -50%);
}

.wwd__stage-radar::after {
  width: 100%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.wwd__stage-dots {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.18) 1px, transparent 1.2px);
  background-size: 28px 28px;
  background-position: 18px 18px;
  opacity: 0.25;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, transparent 35%, #000 70%);
}

.wwd__stage-tagline {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  font-size: clamp(0.68rem, 1vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wwd__stage-stripes {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 28px;
  z-index: 3;
  background: repeating-linear-gradient(
    -45deg,
    var(--wwd-ink) 0 3px,
    transparent 3px 7px
  );
  opacity: 0.85;
}

/* Content column */
.wwd__content {
  min-width: 0;
  width: 100%;
  padding-top: 4px;
}

.wwd__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wwd-muted);
  margin-bottom: 14px;
}

.wwd__heading {
  font-family: 'Barlow Semi Condensed', var(--font);
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 16ch;
}

.wwd__body-text {
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 500;
  color: #555;
  max-width: none;
  margin-bottom: clamp(20px, 3vh, 28px);
}

/* Specs list box */
.wwd__specs {
  list-style: none;
  border: 1.5px solid var(--wwd-line);
  border-radius: 16px;
  overflow: hidden;
  background: #fafafa;
  width: 100%;
}

.wwd__spec {
  display: grid;
  grid-template-columns: 28px minmax(88px, 120px) minmax(0, 1fr);
  gap: 12px 16px;
  align-items: start;
  padding: 14px 18px;
  border-bottom: 1px solid var(--wwd-line);
  cursor: default;
  transition:
    background 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__spec:last-child {
  border-bottom: none;
}

.wwd__spec:hover {
  background: #fff;
  padding-left: 24px;
}

.wwd__spec-icon {
  color: var(--wwd-ink);
  display: grid;
  place-items: start;
  padding-top: 2px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__spec:hover .wwd__spec-icon {
  transform: scale(1.18);
}

.wwd__spec:nth-child(1):hover .wwd__spec-icon { animation: wwd-stat-bolt 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.wwd__spec:nth-child(2):hover .wwd__spec-icon { animation: wwd-stat-chip 0.7s linear infinite; }
.wwd__spec:nth-child(3):hover .wwd__spec-icon { animation: wwd-stat-wave 0.8s ease-in-out infinite; }
.wwd__spec:nth-child(4):hover .wwd__spec-icon { animation: wwd-stat-battery 0.6s ease-in-out infinite alternate; }
.wwd__spec:nth-child(5):hover .wwd__spec-icon { animation: wwd-stat-stack 0.55s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate; }
.wwd__spec:nth-child(6):hover .wwd__spec-icon { animation: wwd-stat-bolt 0.55s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate; }
.wwd__spec:nth-child(7):hover .wwd__spec-icon { animation: wwd-stat-wave 0.7s ease-in-out infinite; }

.wwd__spec-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
  padding-top: 2px;
  transition:
    color 0.3s ease,
    letter-spacing 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__spec:hover .wwd__spec-label {
  color: #0a0a0a;
  letter-spacing: 0.04em;
}

.wwd__spec-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.wwd__spec-copy strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__spec:hover .wwd__spec-copy strong {
  transform: translateX(4px);
}

.wwd__spec-copy span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--wwd-muted);
  line-height: 1.45;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.04s,
    color 0.3s ease;
}

.wwd__spec:hover .wwd__spec-copy span {
  transform: translateX(6px);
  color: #555;
}

/* ---------- Bottom pillars ---------- */
.wwd__pillars-wrap {
  position: relative;
  width: 100%;
}

.wwd__pillars-orbit {
  position: absolute;
  left: 0;
  right: 0;
  /* Align to vertical center of 40px icons (8px pillars padding + 20px) */
  top: calc(8px + 20px);
  height: 40px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.wwd__pillars-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0a0a0a;
  offset-anchor: center;
  offset-rotate: 0deg;
  offset-distance: 0%;
  animation: wwd-orbit-travel 20s linear infinite;
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.wwd__pillars-wrap.is-visible .wwd__pillars-dot {
  animation-play-state: running;
  opacity: 1;
}

.wwd__pillars-dot--delayed {
  animation-delay: -10s;
}

.wwd__pillars-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(0, 0, 0, 0.14);
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.wwd__pillars-wrap.is-visible .wwd__pillars-line {
  transform: translateY(-50%) scaleX(1);
}

.wwd__pillars {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  padding-top: 8px;
  width: 100%;
}

.wwd__pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  flex: 0 1 auto;
  min-width: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__pillar:hover {
  transform: translateY(-4px);
}

.wwd__pillar-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--wwd-ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #fff;
  clip-path: polygon(
    6px 0,
    calc(100% - 6px) 0,
    100% 6px,
    100% calc(100% - 6px),
    calc(100% - 6px) 100%,
    6px 100%,
    0 calc(100% - 6px),
    0 6px
  );
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.wwd__pillar:hover .wwd__pillar-icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--wwd-ink);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.wwd__pillar:hover .wwd__pillar-icon .wwd-icon {
  transform: scale(1.1);
}

.wwd__pillar-icon .wwd-icon {
  transition: transform 0.35s ease;
}

.wwd__pillar-title {
  font-size: clamp(0.78rem, 1.2vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  max-width: 14ch;
  background: #fff;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.wwd__pillar:hover .wwd__pillar-title {
  transform: translateX(4px);
  letter-spacing: 0.12em;
}

.wwd__pillar:last-child {
  justify-content: flex-end;
  text-align: right;
}

.wwd__pillar:last-child:hover .wwd__pillar-title {
  transform: translateX(-4px);
}

@keyframes wwd-stat-bolt {
  0% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-4px) scale(1.15);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@keyframes wwd-stat-chip {
  to {
    transform: rotate(360deg);
  }
}

@keyframes wwd-stat-wave {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(3px);
  }
}

@keyframes wwd-stat-battery {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.18);
  }
}

@keyframes wwd-stat-stack {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-3px);
  }
}

/* ---------- Responsive: 1900 → 420 ---------- */
@media (max-width: 1600px) {
  .wwd {
    padding: clamp(44px, 7vh, 84px) clamp(28px, 4vw, 56px);
  }

  .wwd__stat {
    padding: 4px clamp(10px, 1.4vw, 18px);
  }
}

@media (max-width: 1400px) {
  .wwd__body {
    gap: clamp(12px, 1.5vw, 18px);
  }

  .wwd__pillars {
    gap: clamp(12px, 2.2vw, 28px);
  }
}

@media (max-width: 1200px) {
  .wwd__stats {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .wwd__stat-label {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .wwd__stat-value {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
  }

  .wwd__stage {
    padding: clamp(22px, 3vw, 32px) clamp(16px, 2.5vw, 24px);
  }
}

@media (max-width: 984px) {
  .wwd__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .wwd__pillar:last-child {
    justify-content: flex-start;
    text-align: left;
  }

  .wwd__pillars-orbit {
    display: none;
  }

  .wwd__stat:nth-child(3) {
    border-right: none;
  }

  .wwd__stat:nth-child(4),
  .wwd__stat:nth-child(5) {
    border-top: 1px solid var(--wwd-line);
    padding-top: 16px;
    margin-top: 8px;
  }

  .wwd__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wwd__stage {
    width: 100%;
    max-width: min(520px, 100%);
    margin-inline: auto;
    aspect-ratio: 1;
  }
}

@media (max-width: 763px) {
  .wwd {
    padding: clamp(40px, 6vh, 64px) var(--wwd-gutter);
  }

  .wwd__stats {
    grid-template-columns: 1fr 1fr;
  }

  .wwd__stat {
    border-right: 1px solid var(--wwd-line);
    border-bottom: 1px solid var(--wwd-line);
    padding: 14px 12px;
    margin-top: 0;
  }

  .wwd__stat:nth-child(3),
  .wwd__stat:nth-child(4),
  .wwd__stat:nth-child(5) {
    border-top: none;
    padding-top: 14px;
  }

  .wwd__stat:nth-child(2n) {
    border-right: none;
  }

  .wwd__stat:nth-child(5) {
    grid-column: 1 / -1;
    border-right: none;
  }

  .wwd__stage {
    max-width: none;
    aspect-ratio: 5 / 4;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wwd__stats-dot,
  .wwd__pillars-dot {
    display: none;
  }

  .wwd__stage-lottie,
  .wwd__stage-radar,
  .wwd__pillars-line {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .wwd__stat:hover,
  .wwd__pillar:hover {
    transform: none;
  }

  .wwd__stat:hover .wwd-icon,
  .wwd__spec:hover .wwd__spec-icon {
    animation: none !important;
  }

  .wwd__spec:hover {
    padding-left: 18px;
    transform: none;
  }

  .wwd__stage:hover,
  .wwd__stage:focus-visible,
  .wwd__stage:hover .wwd__stage-shell,
  .wwd__stage:hover .wwd__stage-bracket {
    animation: none !important;
  }
}

@media (max-width: 640px) {
  .wwd {
    padding-left: var(--wwd-gutter);
    padding-right: var(--wwd-gutter);
  }

  .wwd__spec {
    grid-template-columns: 24px 1fr;
    grid-template-areas:
      'icon label'
      'icon copy';
  }

  .wwd__spec-icon {
    grid-area: icon;
  }

  .wwd__spec-label {
    grid-area: label;
  }

  .wwd__spec-copy {
    grid-area: copy;
  }

  .wwd__pillars {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wwd__pillars-orbit {
    display: none;
  }
}

@media (max-width: 420px) {
  .wwd__stat {
    padding: 12px 10px;
  }

  .wwd__stage {
    aspect-ratio: 1;
    padding: 18px 14px;
  }

  .wwd__pillar {
    gap: 12px;
  }
}
