/* Hub expansion — operational ecosystem sections */

#about,
#divisions,
#ecosystem,
#formats,
#investigations,
#products,
#operations,
#why,
#contact {
  scroll-margin-top: 96px;
}

.tac-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 20px;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-dim);
}

.tac-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tac-strip__item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red-glow);
}

.tac-strip__item--ok::before {
  background: #3dd68c;
  box-shadow: 0 0 8px rgba(61, 214, 140, 0.5);
}

.section--glow {
  position: relative;
}

.section--glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 720px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 26, 51, 0.55),
    transparent
  );
  opacity: 0.7;
}

/* —— What is —— */
.what-is {
  padding: 0;
}

.what-is__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.what-is__panel {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: linear-gradient(
    145deg,
    rgba(239, 26, 51, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 60px var(--red-glow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.what-is__title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.what-is__text {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
}

.what-is__text:last-of-type {
  margin-bottom: 28px;
}

.what-is__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-badge {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.45);
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.pd-badge:hover {
  border-color: rgba(239, 26, 51, 0.55);
  box-shadow: 0 0 24px var(--red-glow-soft);
  transform: translateY(-1px);
}

.what-is__visual {
  position: relative;
  align-self: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, var(--red-glow-soft), transparent 60%),
    linear-gradient(160deg, #141414 0%, #050505 100%);
  box-shadow:
    0 0 60px var(--red-glow-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.what-is__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  background: #050505;
}

.what-is__visual-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(239, 26, 51, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 26, 51, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.42;
  animation: pd-grid-drift 24s linear infinite;
  pointer-events: none;
}

.what-is__visual-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(239, 26, 51, 0.08) 50%,
    transparent 100%
  );
  background-size: 100% 200%;
  animation: pd-scan 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pd-grid-drift {
  to {
    transform: translate(32px, 32px);
  }
}

@keyframes pd-scan {
  0%,
  100% {
    background-position: 0 -100%;
  }
  50% {
    background-position: 0 100%;
  }
}

/* —— Divisions —— */
.divisions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.division-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(
    160deg,
    rgba(239, 26, 51, 0.06) 0%,
    rgba(0, 0, 0, 0.5) 45%,
    rgba(0, 0, 0, 0.65) 100%
  );
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
}

.division-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent 40%,
    rgba(239, 26, 51, 0.6) 50%,
    transparent 60%
  );
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.division-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(239, 26, 51, 0.4);
  box-shadow: 0 0 48px var(--red-glow-soft);
}

.division-card:hover::after {
  opacity: 1;
}

.division-card__label {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--red);
  margin-bottom: 14px;
}

.division-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(239, 26, 51, 0.1);
  color: var(--red);
}

.division-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

.division-card p {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.division-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.division-card--soon {
  cursor: pointer;
}

.division-card__cta {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}

.division-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* —— Ecosystem orbit —— */
.ecosystem-map {
  padding: 0;
}

.ecosystem-map__stage {
  position: relative;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239, 26, 51, 0.2);
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(239, 26, 51, 0.12), transparent 65%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
  backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 80px var(--red-glow-soft);
}

.ecosystem-map__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(239, 26, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 26, 51, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 75%);
  pointer-events: none;
}

.eco-orbit {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  aspect-ratio: 100 / 52;
  min-height: clamp(340px, 52vw, 540px);
}

.eco-orbit__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.eco-orbit__ring {
  fill: none;
  stroke: rgba(239, 26, 51, 0.12);
  stroke-width: 1;
}

.eco-orbit__ring--pulse {
  fill: none;
  stroke: rgba(239, 26, 51, 0.35);
  stroke-width: 1;
  stroke-dasharray: 6 14;
  animation: eco-ring-spin 48s linear infinite;
  transform-origin: center;
}

.eco-orbit__line {
  stroke: url(#eco-line-grad);
  stroke-width: 1;
  stroke-dasharray: 5 8;
  opacity: 0.85;
  animation: eco-line-flow 14s linear infinite;
}

.eco-orbit__line-glow {
  stroke: rgba(239, 26, 51, 0.15);
  stroke-width: 4;
  stroke-linecap: round;
}

@keyframes eco-line-flow {
  to {
    stroke-dashoffset: -120;
  }
}

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

.eco-orbit__core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  max-width: min(300px, 74vw);
  padding: clamp(18px, 2.7vw, 24px) clamp(26px, 4.2vw, 40px);
  border-radius: 999px;
  border: 1px solid rgba(239, 26, 51, 0.55);
  background:
    radial-gradient(circle at 50% 30%, rgba(239, 26, 51, 0.25), transparent 55%),
    rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 48px var(--red-glow-soft),
    inset 0 0 24px rgba(239, 26, 51, 0.08);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: clamp(11px, 1.55vw, 13px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  text-align: center;
  line-height: 1.35;
  animation: eco-core-breathe 5s ease-in-out infinite;
}

.eco-orbit__core::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(239, 26, 51, 0.2);
  animation: eco-core-breathe 5s ease-in-out infinite reverse;
}

@keyframes eco-core-breathe {
  0%,
  100% {
    box-shadow:
      0 0 40px var(--red-glow-soft),
      inset 0 0 20px rgba(239, 26, 51, 0.06);
  }
  50% {
    box-shadow:
      0 0 64px var(--red-glow),
      inset 0 0 28px rgba(239, 26, 51, 0.14);
  }
}

.eco-orbit__nodes {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.eco-orbit__node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(280px, 48vw);
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  animation: eco-node-in 0.55s var(--ease) backwards;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}

@keyframes eco-node-in {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
}

.eco-orbit__node:hover {
  border-color: rgba(239, 26, 51, 0.55);
  box-shadow: 0 0 28px var(--red-glow-soft);
  transform: translate(-50%, -50%) scale(1.04);
  z-index: 5;
}

.eco-orbit__node-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red-glow);
}

.eco-orbit__node-label {
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: clamp(10px, 1.35vw, 13px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  color: var(--text);
  text-transform: uppercase;
}

.eco-orbit__node--wide .eco-orbit__node-label {
  font-size: clamp(9px, 1.15vw, 11px);
  letter-spacing: 0.07em;
}

/* —— Formats —— */
.formats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.format-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(
    145deg,
    rgba(239, 26, 51, 0.05) 0%,
    rgba(0, 0, 0, 0.45) 100%
  );
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s,
    box-shadow 0.28s;
}

.format-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 26, 51, 0.4);
  box-shadow: 0 0 40px var(--red-glow-soft);
}

.format-card__num {
  display: block;
  margin-bottom: 16px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.12em;
}

.format-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

.format-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

/* —— Cinematic —— */
.cinematic {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  overflow: hidden;
}

.cinematic__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(239, 26, 51, 0.18), transparent 65%),
    linear-gradient(180deg, #0a0a0a 0%, #120608 50%, #0a0a0a 100%);
  z-index: 0;
}

.cinematic__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 42%, rgba(239, 26, 51, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 82% 58%, rgba(239, 26, 51, 0.05) 0%, transparent 38%),
    radial-gradient(circle at 52% 18%, rgba(239, 26, 51, 0.04) 0%, transparent 35%);
  animation: cinematic-bg-shift 38s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes cinematic-bg-shift {
  0% {
    opacity: 0.75;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.cinematic__fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cinematic__fx--grid {
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(239, 26, 51, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 26, 51, 0.45) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 40%, black 25%, transparent 75%);
}

.cinematic__fx--particles {
  opacity: 0.12;
  background:
    radial-gradient(circle at 22% 30%, rgba(239, 26, 51, 0.25) 0, transparent 3px),
    radial-gradient(circle at 71% 64%, rgba(239, 26, 51, 0.2) 0, transparent 3px),
    radial-gradient(circle at 54% 22%, rgba(239, 26, 51, 0.18) 0, transparent 2px),
    radial-gradient(circle at 89% 38%, rgba(239, 26, 51, 0.15) 0, transparent 2px),
    radial-gradient(circle at 40% 78%, rgba(239, 26, 51, 0.12) 0, transparent 2px);
  animation: cinematic-particles 22s linear infinite;
}

@keyframes cinematic-particles {
  0% {
    transform: translate(0, 0);
    opacity: 0.09;
  }
  33% {
    opacity: 0.14;
  }
  100% {
    transform: translate(-12px, 10px);
    opacity: 0.09;
  }
}

.cinematic__graph--main {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  z-index: 0;
}

.graph-flow {
  animation: graph-flow-shift 42s linear infinite alternate;
}

@keyframes graph-flow-shift {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 80;
  }
}

.wallet-node {
  animation: wallet-pulse 4s ease-in-out infinite;
}

.wallet-node--2 {
  animation-delay: 1.4s;
}

.wallet-node--3 {
  animation-delay: 2.2s;
}

@keyframes wallet-pulse {
  0%,
  100% {
    opacity: 0.65;
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(239, 26, 51, 0.35));
  }
}

.cinematic__inner {
  position: relative;
  z-index: 1;
}

.cinematic__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.cinematic__title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.tac-strip--cinematic {
  margin-bottom: 16px;
}

.cinematic__lead {
  margin: 0 0 28px;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.cinematic__lead p {
  margin: 0;
}

.cinematic__dirs-eyebrow {
  margin: 0 0 16px;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

.cinematic__dirs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin-bottom: 28px;
  max-width: 720px;
}

.cinematic__dir-card {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(239, 26, 51, 0.22);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.cinematic__dir-card:hover {
  border-color: rgba(239, 26, 51, 0.45);
  box-shadow: 0 0 24px rgba(239, 26, 51, 0.12);
}

.cinematic__dir-tag {
  margin: 0 0 8px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--red);
  text-transform: uppercase;
}

.cinematic__dir-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.cinematic__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cinematic__badges--micro {
  gap: 8px;
}

.cinematic__badge {
  padding: 8px 12px;
  border: 1px solid rgba(239, 26, 51, 0.32);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.5);
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text);
  animation: tac-pulse 5s ease-in-out infinite;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

.cinematic__badge:nth-child(even) {
  animation-delay: 0.4s;
}

.cinematic__badge:hover {
  border-color: rgba(239, 26, 51, 0.6);
  box-shadow:
    0 0 20px rgba(239, 26, 51, 0.25),
    0 0 40px var(--red-glow-soft);
  animation: none;
}

@keyframes tac-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 transparent;
  }
  50% {
    box-shadow: 0 0 14px rgba(239, 26, 51, 0.15);
  }
}

.graph-node {
  fill: var(--red);
  opacity: 0.8;
  animation: graph-pulse 2.5s ease-in-out infinite;
}

.graph-link {
  stroke: rgba(239, 26, 51, 0.35);
  stroke-width: 1;
}

@keyframes graph-pulse {
  0%,
  100% {
    opacity: 0.4;
    r: 3;
  }
  50% {
    opacity: 1;
    r: 5;
  }
}

/* Threat matrix sidebar */
.cinematic-matrix {
  padding: clamp(22px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239, 26, 51, 0.28);
  background:
    linear-gradient(165deg, rgba(239, 26, 51, 0.07), transparent 45%),
    rgba(10, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 48px rgba(239, 26, 51, 0.12),
    0 24px 48px rgba(0, 0, 0, 0.45);
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(240, 240, 240, 0.88);
}

.cinematic-matrix__head {
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(239, 26, 51, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
}

.cinematic-matrix__row {
  margin-bottom: 14px;
}

.cinematic-matrix__row:last-of-type {
  margin-bottom: 0;
}

.cinematic-matrix__k {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--muted-dim);
  text-transform: uppercase;
}

.cinematic-matrix__v {
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.08em;
}

.cinematic-matrix__v--ok {
  color: #7dffb3;
  text-shadow: 0 0 12px rgba(125, 255, 179, 0.25);
}

.cinematic-matrix__list {
  margin: 6px 0 0;
  padding-left: 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.cinematic-matrix__list li {
  margin-bottom: 2px;
}

/* Cinematic panel */
.cinematic__panel {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(239, 26, 51, 0.25);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 60px var(--red-glow-soft);
}

.cinematic__panel--primary {
  max-width: none;
  margin: 0;
}

/* —— Products —— */
.products__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s var(--ease);
}

.product-card:hover {
  border-color: rgba(239, 26, 51, 0.45);
  box-shadow: 0 0 32px var(--red-glow-soft);
  transform: translateX(4px);
}

.product-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(239, 26, 51, 0.08);
  color: var(--red);
}

.product-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 600;
}

.product-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.product-card__tag {
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted-dim);
}

/* —— Motion (content always visible) —— */
.hub-motion {
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .hub-motion {
    opacity: 0.35;
    transform: translateY(12px);
  }

  .hub-motion.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Section bands (less empty space) —— */
.hub-band {
  position: relative;
  padding: clamp(48px, 7vw, 80px) 0;
}

.hub-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 55% 40% at 50% 0%,
    rgba(239, 26, 51, 0.07),
    transparent 70%
  );
  z-index: 0;
}

.hub-band > .pd-container {
  position: relative;
  z-index: 1;
}

.hub-band--alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 48%,
    rgba(239, 26, 51, 0.04) 100%
  );
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* —— Stats row under hero —— */
.hub-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.hub-stat {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: var(--panel);
  backdrop-filter: blur(8px);
}

.hub-stat__val {
  display: block;
  margin-bottom: 6px;
  font-family: ui-monospace, monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
}

.hub-stat__label {
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

.section__head {
  margin-bottom: 32px;
}

.divisions__grid,
.formats__grid,
.products__list {
  min-height: 1px;
}

@media (max-width: 1024px) {
  .what-is__grid {
    grid-template-columns: 1fr;
  }

  .what-is__visual {
    align-self: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
    order: -1;
  }

  .divisions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .cinematic-matrix {
    max-width: 520px;
  }

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

@media (max-width: 768px) {
  .eco-orbit {
    aspect-ratio: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 8px 0 4px;
  }

  .eco-orbit__svg {
    display: none;
  }

  .eco-orbit__core {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    max-width: min(320px, 92vw);
    letter-spacing: 0.14em;
    padding: 14px 18px;
  }

  .eco-orbit__core::before {
    inset: -6px;
  }

  .eco-orbit__nodes {
    position: relative;
    inset: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 0 4px;
  }

  .eco-orbit__node {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 0;
    padding: 11px 14px;
    gap: 8px;
    justify-content: center;
    animation: none;
  }

  .eco-orbit__node--wide {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .eco-orbit__node:hover {
    transform: none;
  }

  .eco-orbit__node-label {
    font-size: clamp(9px, 2.8vw, 11px);
    text-align: center;
  }

  .eco-orbit__node--wide .eco-orbit__node-label {
    font-size: clamp(8px, 2.4vw, 10px);
  }

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

  .product-card {
    grid-template-columns: auto 1fr;
  }

  .product-card__tag {
    display: none;
  }

  .hub-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .cinematic {
    padding: clamp(52px, 10vw, 96px) 0;
  }

  .cinematic__title {
    font-size: clamp(1.65rem, 7vw, 2.4rem);
    margin-bottom: 16px;
  }

  .cinematic-matrix {
    max-width: none;
    font-size: 10px;
  }

  .cinematic__panel--primary {
    padding: clamp(20px, 5vw, 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic__fx--particles,
  .cinematic__bg::after,
  .graph-flow,
  .wallet-node,
  .graph-node,
  .what-is__visual-grid,
  .what-is__visual-scan {
    animation: none !important;
  }
}
