/* Zenuva — styles */

/* ─── Base ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  background: rgba(114, 133, 99, 0.22);
  color: var(--brown-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ─── Scene 1: sistema (escenario crema cinematográfico) ─── */
.scene {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5.5rem 1rem 3.25rem;
  isolation: isolate;
  overflow: hidden;
}

.scene__stage {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 90% 70% at 50% 42%, #fffdf9 0%, var(--cream) 55%, #f3ebe0 100%);
}

.scene__glow {
  position: absolute;
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 46%, rgba(114, 133, 99, 0.18) 0%, transparent 38%),
    radial-gradient(circle at 22% 28%, rgba(197, 162, 111, 0.16) 0%, transparent 32%),
    radial-gradient(circle at 78% 68%, rgba(92, 46, 34, 0.08) 0%, transparent 36%);
  animation: aura 8s ease-in-out infinite alternate;
  pointer-events: none;
}

.scene__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Brand — señal hero, no pastilla */
.brand {
  position: absolute;
  top: clamp(1.4rem, 4vw, 2.1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  animation: brand-in 1s var(--ease) both;
}

.brand-wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 6.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--logo-brown);
  line-height: 1;
}

.brand-logo {
  height: 1.05em;
  width: calc(1.05em * var(--logo-aspect));
  margin-right: -0.12em;
  margin-bottom: 0.05em;
  object-fit: contain;
}

/* Diagram — pieza dominante */
.viz {
  position: relative;
  width: min(94vw, 580px);
  aspect-ratio: 1;
  margin-top: 0.5rem;
}

.viz__halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(114, 133, 99, 0.14) 0%,
    rgba(197, 162, 111, 0.08) 35%,
    transparent 68%
  );
  animation: halo-breathe 4.5s ease-in-out infinite;
  pointer-events: none;
}

.viz__ring {
  position: absolute;
  inset: 17%;
  border-radius: 50%;
  border: 1px solid rgba(197, 162, 111, 0.28);
  pointer-events: none;
}

.viz__ring--outer {
  inset: 4%;
  border-color: rgba(114, 133, 99, 0.12);
  animation: ring-spin 48s linear infinite;
  border-style: dashed;
}

.wires {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.wires .spoke {
  fill: none;
  stroke: rgba(197, 162, 111, 0.22);
  stroke-width: 0.55;
  stroke-linecap: round;
  transition: stroke 0.7s var(--ease), stroke-width 0.7s;
}

.viz.is-on .wires .spoke {
  stroke: url(#spoke-grad);
  stroke: rgba(197, 162, 111, 0.7);
  stroke-width: 0.75;
}

.wires .pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-dasharray: 5 18;
  opacity: 0;
  filter: drop-shadow(0 0 3px rgba(197, 162, 111, 0.65));
}

.viz.is-on .wires .pulse {
  opacity: 1;
  animation: flow 1.15s linear infinite;
}

/* Included pieces */
.piece {
  position: absolute;
  width: 86px;
  height: 86px;
  transform: translate(-50%, -50%) scale(0.72);
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(232, 223, 212, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  padding: 0.4rem;
  color: rgba(92, 46, 34, 0.28);
  opacity: 0.45;
  filter: grayscale(0.5);
  box-shadow: 0 8px 24px rgb(92 46 34 / 0.04);
  transition:
    opacity 0.55s var(--ease),
    transform 0.6s var(--ease),
    background 0.5s,
    border-color 0.5s,
    color 0.5s,
    filter 0.5s,
    box-shadow 0.55s;
  z-index: 3;
}

.piece__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.piece__name {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-align: center;
  max-width: 9ch;
  text-transform: uppercase;
}

.viz.is-on .piece {
  opacity: 1;
  filter: none;
  background: #fff;
  border-color: rgba(197, 162, 111, 0.55);
  color: var(--brown-deep);
  transform: translate(-50%, -50%) scale(1);
  box-shadow:
    0 14px 36px rgb(92 46 34 / 0.12),
    0 0 0 1px rgba(197, 162, 111, 0.08);
}

.viz.is-on .p1 { transition-delay: 0.12s; }
.viz.is-on .p2 { transition-delay: 0.24s; }
.viz.is-on .p3 { transition-delay: 0.36s; }
.viz.is-on .p4 { transition-delay: 0.48s; }
.viz.is-on .p5 { transition-delay: 0.6s; }

.piece__gift {
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-50%, -58%) scale(0.4);
  box-shadow: 0 4px 12px rgb(114 133 99 / 0.4);
  transition: opacity 0.35s, transform 0.45s var(--ease);
}

.piece__gift svg {
  width: 11px;
  height: 11px;
}

.viz.is-on .piece__gift {
  opacity: 1;
  transform: translate(-50%, -58%) scale(1);
  transition-delay: 0.75s;
}

.p1 { top: 11%; left: 50%; }
.p2 { top: 31%; left: 86%; }
.p3 { top: 73%; left: 76%; }
.p4 { top: 73%; left: 24%; }
.p5 { top: 31%; left: 14%; }

/* Hub — faro central */
.hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: clamp(168px, 38vw, 198px);
  height: clamp(168px, 38vw, 198px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 32%, #ffffff 0%, var(--cream) 55%, #f0e8dc 100%);
  border: 2.5px solid var(--green);
  box-shadow:
    0 0 0 10px rgba(114, 133, 99, 0.1),
    0 0 0 22px rgba(197, 162, 111, 0.07),
    0 28px 60px rgb(92 46 34 / 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--brown-deep);
  text-align: center;
  padding: 1rem;
  animation: hub-in 1.1s var(--ease) both;
}

.hub__ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px solid rgba(114, 133, 99, 0.28);
  animation: hub-pulse 2.8s ease-out infinite;
  pointer-events: none;
}

.hub .web-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--green-dark);
}

.hub__pay {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.25rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 9ch;
  color: var(--brown-deep);
}

.scroll {
  position: absolute;
  bottom: 1.15rem;
  color: rgba(92, 46, 34, 0.28);
  font-size: 0.95rem;
  animation: bob 2.2s ease-in-out infinite;
  z-index: 2;
}

/* ─── Scene 2: un camino → tres webs a elegir ─── */
.levels {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 253, 249, 0.9) 0%, transparent 55%),
    var(--cream);
  padding: 1.35rem 1.15rem 3.25rem;
  overflow: hidden;
  position: relative;
}

.fork {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fork__start {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--green);
  color: var(--brown-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 5px rgba(114, 133, 99, 0.09),
    0 8px 22px rgb(92 46 34 / 0.09);
  position: relative;
  z-index: 2;
}

.fork__start svg {
  width: 17px;
  height: 17px;
}

.fork__map {
  width: 100%;
  display: none;
  overflow: visible;
}

.fork__map--desk {
  height: 58px;
  margin-top: -2px;
}

.fork__line {
  fill: none;
  stroke: rgba(197, 162, 111, 0.65);
  stroke-width: 0.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.levels__track {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.level {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.15rem 0.85rem 1.05rem;
  background: linear-gradient(180deg, #ffffff 0%, #fffcf8 100%);
  border: 1.5px solid var(--border);
  border-radius: 1.15rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  font: inherit;
  color: inherit;
  cursor: pointer;
  overflow: visible;
  transition:
    transform 0.35s var(--ease),
    border-color 0.3s,
    box-shadow 0.35s var(--ease),
    opacity 0.55s var(--ease);
}

.level:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.level:active {
  transform: translateY(-1px) scale(0.985);
}

.level:focus-visible {
  outline: 2px solid rgba(114, 133, 99, 0.55);
  outline-offset: 3px;
}

.level.is-focus {
  border-color: rgba(114, 133, 99, 0.5);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(114, 133, 99, 0.1);
}

.level__gate {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  z-index: 3;
}

.level.is-focus .level__gate {
  background: var(--green);
  border-color: var(--green);
}

.level__gate::before {
  display: none;
}

.mock {
  margin: 0.2rem auto 0.8rem;
  width: 100%;
  max-width: 148px;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--beige);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.mock__bar {
  height: 14%;
  background: rgba(92, 46, 34, 0.08);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 6px;
}

.mock__bar span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(92, 46, 34, 0.2);
}

.mock__body {
  height: 86%;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mock--1 .block-a {
  height: 28%;
  border-radius: 4px;
  background: rgba(92, 46, 34, 0.12);
}

.mock--1 .block-b {
  height: 10%;
  width: 60%;
  border-radius: 3px;
  background: rgba(92, 46, 34, 0.08);
}

.mock--1 .block-c {
  margin-top: auto;
  height: 16%;
  width: 45%;
  border-radius: 999px;
  background: var(--green);
  opacity: 0.55;
}

.mock--2 .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  height: 42%;
}

.mock--2 .row div {
  border-radius: 4px;
  background: rgba(92, 46, 34, 0.1);
}

.mock--2 .row div:first-child {
  background: linear-gradient(135deg, rgba(92, 46, 34, 0.16), rgba(197, 162, 111, 0.25));
}

.mock--2 .line {
  height: 7%;
  border-radius: 2px;
  background: rgba(92, 46, 34, 0.1);
}

.mock--2 .line.short { width: 55%; }

.mock--2 .cta {
  margin-top: auto;
  height: 14%;
  border-radius: 999px;
  background: var(--brown-deep);
  opacity: 0.75;
}

.mock--3 {
  display: grid;
  grid-template-columns: 28% 1fr;
  padding: 0;
  max-width: 172px;
}

.mock--3 .mock__bar { grid-column: 1 / -1; }

.mock--3 .side {
  background: rgba(92, 46, 34, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 4px;
}

.mock--3 .side i {
  display: block;
  height: 6px;
  border-radius: 2px;
  background: rgba(92, 46, 34, 0.15);
}

.mock--3 .main {
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mock--3 .cal {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.mock--3 .cal b {
  border-radius: 2px;
  background: rgba(92, 46, 34, 0.07);
  min-height: 10px;
}

.mock--3 .cal b.on {
  background: var(--green);
  opacity: 0.55;
}

.level__mark {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.level[data-n="1"] .mock { max-width: 122px; }
.level[data-n="2"] .mock { max-width: 148px; }
.level[data-n="3"] .mock { max-width: 172px; }

.level__system {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  opacity: 0.65;
}

.level__system span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--beige);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-deep);
}

.level__system span svg {
  width: 10px;
  height: 10px;
}

.level__system .plus {
  width: auto;
  height: auto;
  border: none;
  background: none;
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 700;
  padding: 0 0.1rem;
}

.same-system {
  max-width: 420px;
  margin: 2.25rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.same-system__line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.same-system__core {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1.5px solid rgba(114, 133, 99, 0.35);
  color: var(--brown-deep);
  box-shadow: 0 0 0 6px rgba(114, 133, 99, 0.08);
}

.same-system__core svg {
  width: 15px;
  height: 15px;
}

/*
  Mobile: eje IZQUIERDO + bolita pegada a la tarjeta
  |──●[tarjeta]
*/
@media (max-width: 799px) {
  .levels {
    padding: 1.5rem 0 3.25rem;
  }

  .fork {
    --axis: 20px;
    --gap: 1.2rem;
    max-width: 340px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
    align-items: flex-start;
  }

  .fork__map--desk { display: none !important; }

  .fork__start {
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .fork__start svg {
    width: 16px;
    height: 16px;
  }

  .fork::after {
    content: "";
    display: block;
    width: 2px;
    height: 1rem;
    margin-left: calc(var(--axis) - 1px);
    background: rgba(197, 162, 111, 0.7);
    border-radius: 2px;
  }

  .levels__track {
    --axis: 20px;
    --gap: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 0 1.25rem;
  }

  .levels__track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0.35rem;
    left: calc(1.25rem + var(--axis) - 1px);
    width: 2px;
    background: linear-gradient(
      180deg,
      rgba(197, 162, 111, 0.75),
      rgba(114, 133, 99, 0.85)
    );
    border-radius: 2px;
    z-index: 0;
  }

  .level {
    margin: 0;
    margin-left: calc(var(--axis) + var(--gap));
    overflow: visible;
  }

  .level[data-n="1"] {
    width: 58%;
    padding: 0.85rem 0.7rem 0.8rem;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 5px 14px rgb(92 46 34 / 0.045);
  }

  .level[data-n="2"] {
    width: 72%;
    padding: 1rem 0.85rem 0.95rem;
    border-color: rgba(114, 133, 99, 0.4);
    box-shadow: 0 10px 24px rgb(92 46 34 / 0.08);
  }

  .level[data-n="3"] {
    width: calc(100% - var(--axis) - var(--gap));
    padding: 1.15rem 0.95rem 1.05rem;
    border-color: rgba(114, 133, 99, 0.55);
    box-shadow:
      0 14px 34px rgb(92 46 34 / 0.12),
      0 0 0 1px rgba(114, 133, 99, 0.1);
  }

  .level__gate {
    top: 50%;
    left: 0;
    right: auto;
    width: 11px;
    height: 11px;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 2px solid var(--gold);
    z-index: 3;
  }

  .level__gate::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: auto;
    right: 100%;
    width: calc(var(--gap) - 6px);
    height: 2px;
    margin-top: -1px;
    background: rgba(197, 162, 111, 0.9);
    border-radius: 1px;
  }

  .level.is-focus .level__gate {
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(114, 133, 99, 0.18);
  }

  .level[data-n="1"] .mock { max-width: 92px; }
  .level[data-n="2"] .mock { max-width: 124px; }
  .level[data-n="3"] .mock { max-width: 160px; }

  .level[data-n="1"] .level__mark {
    font-size: 0.95rem;
    color: var(--text-muted);
  }

  .level[data-n="2"] .level__mark { font-size: 1.15rem; }

  .level[data-n="3"] .level__mark {
    font-size: 1.32rem;
    color: var(--brown-deep);
  }

  .level[data-n="1"] .level__system {
    opacity: 0.35;
    transform: scale(0.88);
  }

  .level[data-n="2"] .level__system { opacity: 0.58; }
  .level[data-n="3"] .level__system { opacity: 0.88; }

  .same-system {
    max-width: 340px;
    padding: 0 1.25rem;
    margin-top: 1.6rem;
  }
}

/* Desktop: tridente → tres puertas */
@media (min-width: 800px) {
  .levels {
    padding: clamp(1.5rem, 4vw, 2.5rem) 1.25rem clamp(3.5rem, 7vw, 4.75rem);
  }

  .fork__map--desk {
    display: block;
  }

  .levels__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    align-items: stretch;
    margin-top: -2px;
  }

  .level {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 1.3rem;
  }

  .level.is-focus {
    transform: translateY(-5px);
  }

  .level.is-focus:hover {
    transform: translateY(-7px);
  }

  .level[data-n="1"] .mock { max-width: 128px; }
  .level[data-n="2"] .mock { max-width: 148px; }
  .level[data-n="3"] .mock { max-width: 168px; }

  .level[data-n="1"] .level__mark { font-size: 1.05rem; }
  .level[data-n="2"] .level__mark { font-size: 1.15rem; }
  .level[data-n="3"] .level__mark { font-size: 1.15rem; }
}
/* ─── Motion ─── */
@keyframes flow {
  to { stroke-dashoffset: -28; }
}

@keyframes hub-in {
  0% { transform: translate(-50%, -50%) scale(0.78); opacity: 0.35; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes brand-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes aura {
  0% { opacity: 0.75; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.04); }
}

@keyframes halo-breathe {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes hub-pulse {
  0% { opacity: 0.7; transform: scale(0.92); }
  70% { opacity: 0; transform: scale(1.18); }
  100% { opacity: 0; transform: scale(1.18); }
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes rise-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.levels .level,
.levels .same-system {
  opacity: 0;
}

.levels.is-in .level {
  animation: rise-in 0.7s var(--ease) both;
}

.levels.is-in .level[data-n="1"] { animation-delay: 0.05s; }
.levels.is-in .level[data-n="2"] { animation-delay: 0.14s; }
.levels.is-in .level[data-n="3"] { animation-delay: 0.23s; }

.levels.is-in .same-system {
  animation: rise-in 0.7s var(--ease) 0.32s both;
}

@media (prefers-reduced-motion: reduce) {
  .wires .pulse,
  .hub,
  .hub__ring,
  .scroll,
  .scene__glow,
  .viz__halo,
  .viz__ring--outer,
  .brand,
  .levels.is-in .level,
  .levels.is-in .same-system {
    animation: none !important;
  }

  .levels .level,
  .levels .same-system {
    opacity: 1;
  }

  .piece,
  .piece__gift {
    transition: none !important;
  }

  .viz .piece {
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%) scale(1);
    background: #fff;
    color: var(--brown-deep);
  }

  .piece__gift {
    opacity: 1;
    transform: translate(-50%, -58%) scale(1);
  }
}

@media (max-width: 420px) {
  .piece {
    width: 72px;
    height: 72px;
  }

  .piece__icon {
    width: 16px;
    height: 16px;
  }

  .piece__name {
    font-size: 0.46rem;
  }

  .hub {
    width: 148px;
    height: 148px;
    padding: 0.8rem;
  }

  .hub__pay {
    font-size: 0.92rem;
  }

  .hub .web-icon {
    width: 22px;
    height: 22px;
  }

  .brand-wordmark {
    font-size: 1.7rem;
  }
}
