/* Landing hub — photo-forward hero, separate cards band */

.hero--photo {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 150px 56px 100px;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  z-index: -2;
}
.hero__photo-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg,
      rgba(15, 10, 44, 0.92) 0%,
      rgba(15, 10, 44, 0.78) 28%,
      rgba(26, 17, 73, 0.42) 52%,
      rgba(0, 0, 0, 0.0) 80%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 35%, rgba(0,0,0,0.35) 100%);
}

.hub-hero {
  /* no extra rules — uses hero--photo */
}
.hub-hero__copy {
  max-width: 640px;
}

.hub-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hub-hero__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #8a7bff;
  box-shadow: 0 0 0 4px rgba(138, 123, 255, 0.25);
  animation: hubPulse 2s ease-in-out infinite;
}
@keyframes hubPulse {
  50% { box-shadow: 0 0 0 8px rgba(138, 123, 255, 0.08); }
}

.hub-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hub-cards-band {
  max-width: var(--max);
  margin: 0 auto;
}
.hub-cards-band__head {
  max-width: 720px;
  margin-bottom: 32px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px 60px;
  border-radius: 22px;
  background: var(--paper-warm);
  border: 1px solid var(--paper-edge);
  color: var(--ink);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 220px;
}
.hub-card:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: var(--purple-200);
  box-shadow: var(--shadow);
}
.hub-card__kind {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--purple);
  text-transform: uppercase;
}
.hub-card__title {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 4px 0 6px;
}
.hub-card__sub {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-body);
  margin: 0;
}
.hub-card__arrow {
  position: absolute;
  right: 22px; bottom: 20px;
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--purple);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.hub-card:hover .hub-card__arrow {
  background: var(--purple);
  color: #fff;
  transform: translateX(2px);
}

@media (max-width: 1100px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .hub-grid { grid-template-columns: 1fr; }
  .hub-card { min-height: auto; padding: 22px 22px 52px; }
}

/* Backed strip */
.hub-backed { padding: 32px 56px; }
.hub-backed .backed { justify-content: center; }
@media (max-width: 720px) {
  .hub-backed { padding: 28px 24px; }
  .hub-backed .backed { flex-direction: column; gap: 16px; }
  .hub-backed .backed__sep { display: none; }
  .hub-backed .backed__logos { gap: 24px; }
}

/* Anchor section */
.hub-anchor__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hub-anchor__stats {
  display: grid;
  gap: 14px;
}
.anchor-stat {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 28px;
  padding: 26px 30px;
  border-radius: 18px;
  background: var(--paper-warm);
  border: 1px solid var(--paper-edge);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.anchor-stat:hover {
  border-color: var(--purple-200);
  box-shadow: var(--shadow-sm);
}
.anchor-stat strong {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(40px, 4.8vw, 60px);
  line-height: 1;
  color: var(--purple);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.anchor-stat span {
  font-size: 15px;
  color: var(--ink-body);
  line-height: 1.5;
}
.anchor-stat--alt strong {
  background: linear-gradient(135deg, #6c5cff 0%, #4f3edc 55%, #2a1b85 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 960px) {
  .hub-anchor__grid { grid-template-columns: 1fr; gap: 36px; }
  .anchor-stat { grid-template-columns: 1fr; gap: 8px; padding: 22px 24px; }
}
