.category-page {
  --category-soft: color-mix(in srgb, var(--brand-a) 14%, transparent);
}

.category-page .landing-topbar { margin-bottom: 26px; }

.category-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--landing-muted);
  font-size: .8rem;
}

.category-breadcrumb a { text-decoration: none; }
.category-breadcrumb a:hover { color: #fff; }
.category-breadcrumb span { color: rgba(255,255,255,.34); }

.category-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand-a) 16%, transparent), transparent 48%),
    linear-gradient(180deg, rgba(19,25,42,.96), rgba(11,15,27,.96));
  box-shadow: 0 38px 90px -52px rgba(0,0,0,.96);
}

.category-hero::before {
  position: absolute;
  z-index: -1;
  top: -190px;
  right: -120px;
  width: 450px;
  height: 450px;
  content: "";
  border-radius: 50%;
  opacity: .28;
  filter: blur(30px);
  background: radial-gradient(circle, var(--brand-b), transparent 67%);
}

.category-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: color-mix(in srgb, var(--brand-a) 72%, white);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.category-kicker::before { width: 24px; height: 1px; content: ""; background: currentColor; }

.category-page h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  background: none;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.055em;
  -webkit-text-fill-color: currentColor;
}

.category-lead {
  max-width: 720px;
  margin: 22px 0 0;
  color: #b8c0d3;
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.7;
}

.category-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.category-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: #dce1ed;
  background: rgba(255,255,255,.045);
  font-size: .79rem;
  font-weight: 650;
}

.category-highlights span::before { width: 6px; height: 6px; content: ""; border-radius: 50%; background: var(--brand-a); box-shadow: 0 0 0 4px var(--category-soft); }

.category-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.category-primary-action,
.category-secondary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 13px;
  text-decoration: none;
  font-size: .83rem;
  font-weight: 800;
}

.category-primary-action {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-a), var(--brand-b));
  box-shadow: 0 15px 34px -20px var(--brand-a);
}

.category-secondary-action {
  border: 1px solid rgba(255,255,255,.12);
  color: #dce1ed;
  background: rgba(255,255,255,.045);
}

.category-primary-action:hover,
.category-secondary-action:hover { transform: translateY(-1px); filter: brightness(1.08); }

.category-section { margin-top: 44px; }

.category-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.category-section-head h2,
.category-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -.035em;
}

.category-section-head p { margin: 5px 0 0; color: var(--landing-muted); font-size: .9rem; }
.category-section-head > span { color: color-mix(in srgb, var(--brand-a) 66%, white); font-size: .76rem; font-weight: 750; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.category-station {
  position: relative;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--station-a) 8%, transparent), rgba(15,20,34,.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.category-art {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--station-a), var(--station-b));
  box-shadow: 0 17px 34px -20px var(--station-a);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: -.04em;
}

.category-art img { width: 78%; height: 78%; object-fit: contain; }
.category-art.is-light { background: #fff; }

.category-station-copy { min-width: 0; }
.category-station-top { display: flex; align-items: start; justify-content: space-between; gap: 10px; }
.category-station h3 { margin: 1px 0 0; color: #fff; font-size: 1rem; letter-spacing: -.018em; }
.category-station p { margin: 4px 0 0; color: #8f99b0; font-size: .76rem; line-height: 1.35; }

.category-detail-link {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  color: #aeb7ca;
  text-decoration: none;
  font-size: .68rem;
  font-weight: 700;
}

.category-detail-link:hover { color: #fff; border-color: color-mix(in srgb, var(--station-a) 55%, white 8%); }

.category-page .category-station .mp {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 42px;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.category-page .category-station .mp-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--station-a), var(--station-b));
  box-shadow: 0 9px 20px -13px var(--station-a);
}

.category-page .category-station .mp-btn svg { width: 19px; height: 19px; }
.category-page .category-station .mp-status { min-width: 0; font-size: .75rem; text-align: left; }

.category-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  margin-top: 42px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  background: rgba(15,20,34,.68);
}

.category-copy p { margin: 14px 0 0; color: #aeb7ca; line-height: 1.72; }
.category-copy p a { color: #c7b9ff; text-decoration-color: rgba(199,185,255,.42); text-underline-offset: 3px; }
.category-copy p a:hover { color: #fff; }

.category-benefits { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.category-benefits li { display: flex; gap: 10px; align-items: start; color: #cbd2df; font-size: .86rem; line-height: 1.45; }
.category-benefits li::before { display: grid; width: 22px; height: 22px; flex: 0 0 auto; place-items: center; content: "✓"; border-radius: 8px; color: #fff; background: linear-gradient(135deg, var(--brand-a), var(--brand-b)); font-size: .7rem; font-weight: 900; }

.category-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.category-nav a { padding: 8px 12px; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; color: #aeb7ca; background: rgba(255,255,255,.03); text-decoration: none; font-size: .76rem; font-weight: 700; }
.category-nav a:hover { color: #fff; border-color: color-mix(in srgb, var(--brand-a) 50%, transparent); }

.category-page .landing-app-card { margin-top: 22px; }

@media (max-width: 820px) {
  .category-grid { grid-template-columns: 1fr; }
  .category-copy { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .category-page .landing-topbar { margin-bottom: 18px; }
  .category-hero { padding: 25px 21px; border-radius: 23px; }
  .category-page h1 { font-size: clamp(2.2rem, 13vw, 3.35rem); }
  .category-lead { font-size: .96rem; }
  .category-section { margin-top: 34px; }
  .category-section-head { align-items: start; flex-direction: column; gap: 6px; }
  .category-station { grid-template-columns: 54px minmax(0, 1fr); gap: 12px; padding: 14px; border-radius: 18px; }
  .category-art { width: 54px; height: 54px; border-radius: 16px; font-size: .88rem; }
  .category-station-top { display: block; }
  .category-detail-link { display: inline-flex; margin-top: 7px; }
  .category-copy { margin-top: 32px; padding: 22px; border-radius: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .category-page *, .category-page *::before, .category-page *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
