/**
 * Mobile-first site navigation: three tight rows of large tap targets.
 * Use on landing footer, profile/account footers, and site-pages hub.
 */

.gkz-nav-stack {
  width: 100%;
  max-width: 22.5rem;
  margin: 0 auto 1.75rem;
  padding: 0 0.25rem;
}

.gkz-nav-stack__label {
  display: block;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(234, 240, 255, 0.45);
  text-align: center;
  margin-bottom: 0.5rem;
}

.gkz-nav-stack__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 6px;
}

.gkz-nav-stack__row:last-child {
  margin-bottom: 0;
}

.gkz-nav-stack__hit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 6px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  color: #eaf0ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.gkz-nav-stack__hit:hover,
.gkz-nav-stack__hit:focus-visible {
  background: rgba(0, 255, 157, 0.1);
  border-color: rgba(0, 255, 157, 0.35);
  color: #fff;
}

.gkz-nav-stack__hit:focus-visible {
  outline: 2px solid #00ff9d;
  outline-offset: 2px;
}

.gkz-nav-stack__hit:active {
  transform: scale(0.98);
}

/* Hub page: full-width rows, one primary action per row (easiest for thumbs) */
.gkz-hub {
  max-width: 26rem;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.gkz-hub__lead {
  text-align: center;
  color: var(--muted, rgba(234, 240, 255, 0.55));
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 auto 1.75rem;
  max-width: 34ch;
}

.gkz-hub__section-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00ff9d;
  margin: 1.5rem 0 0.65rem;
  padding-left: 2px;
}

.gkz-hub__section-title:first-child {
  margin-top: 0;
}

.gkz-hub__section-title-link {
  color: inherit;
  text-decoration: none;
}

.gkz-hub__section-title-link:hover,
.gkz-hub__section-title-link:focus-visible {
  color: #9fffd7;
}

.gkz-hub__section-title-link:focus-visible {
  outline: 2px solid #00ff9d;
  outline-offset: 2px;
  border-radius: 4px;
}

.gkz-hub__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gkz-hub__link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 12px 16px;
  border-radius: 16px;
  text-decoration: none;
  color: #f4f8fb;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.gkz-hub__link:hover,
.gkz-hub__link:focus-visible {
  background: rgba(0, 255, 157, 0.09);
  border-color: rgba(0, 255, 157, 0.3);
}

.gkz-hub__link:focus-visible {
  outline: 2px solid #00ff9d;
  outline-offset: 2px;
}

.gkz-hub__link:active {
  transform: scale(0.99);
}

.gkz-hub__emoji {
  font-size: 1.35rem;
  line-height: 1;
  width: 2rem;
  text-align: center;
  flex-shrink: 0;
}

.gkz-hub__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
}

.gkz-hub__name {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.gkz-hub__hint {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(234, 240, 255, 0.45);
  line-height: 1.3;
}

.gkz-hub__chev {
  margin-left: auto;
  color: #00ff9d;
  font-size: 1.1rem;
  opacity: 0.85;
  flex-shrink: 0;
}
