/* ===== Torque & Parts · Catalog page ===== */

/* Общие ограничения для картинок на этой странице */
.tp-cat-hero__figure img,
.tp-cat-job__figure img,
.tp-cat-lane__figure img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

/* ===== Section 1: Catalog hero ===== */

.tp-cat-hero {
  padding-block: 4rem 3.6rem;
}

.tp-cat-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.5fr);
  gap: 2.6rem;
  align-items: center;
}

.tp-cat-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--tp-accent);
  margin-bottom: 0.7rem;
}

.tp-cat-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.1), var(--tp-accent));
}

.tp-cat-hero__title {
  margin-bottom: 0.7rem;
}

.tp-cat-hero__text {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-hero__chips {
  margin-top: 0.9rem;
  margin-bottom: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.tp-cat-hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.5rem;
}

.tp-cat-hero__media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
  justify-items: flex-end;
}

.tp-cat-hero__card {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  padding: 0.6rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  overflow: hidden;
  transform-origin: center;
  transition:
    transform 0.22s ease-out,
    box-shadow 0.22s ease-out,
    border-color 0.22s ease-out,
    background 0.22s ease-out;
}

.tp-cat-hero__card:hover {
  background: radial-gradient(circle at top left, rgba(38, 224, 194, 0.12), rgba(15, 23, 42, 0.98));
  border-color: rgba(148, 163, 184, 0.9);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
}

.tp-cat-hero__card.is-tilting {
  transition: transform 0.06s linear;
}

.tp-cat-hero__figure {
  margin: 0 0 0.45rem;
}

.tp-cat-hero__figure img {
  border-radius: 16px;
}

.tp-cat-hero__card-body {
  padding-inline: 0.1rem;
}

.tp-cat-hero__card-title {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.tp-cat-hero__card-text {
  margin: 0;
  font-size: 0.84rem;
  color: var(--tp-text-muted);
}

/* Offsets */

.tp-cat-hero__card--offset {
  transform: translateY(10px);
}

.tp-cat-hero__card--small {
  max-width: 260px;
  transform: translateY(-4px);
}

/* ===== Section 2: Job-based groups ===== */

.tp-cat-jobs {
  padding-block: 3.2rem 3.6rem;
}

.tp-cat-jobs__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.75fr);
  gap: 2.4rem;
  align-items: center;
}

.tp-cat-jobs__head p {
  max-width: 30rem;
  font-size: 0.95rem;
}

.tp-cat-jobs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tp-cat-job {
  flex: 1 1 180px;
  max-width: 230px;
  border-radius: 18px;
  padding: 0.75rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.tp-cat-job__figure {
  margin: 0 0 0.4rem;
}

.tp-cat-job__figure img {
  border-radius: 16px;
}

.tp-cat-job__body h3 {
  margin: 0 0 0.2rem;
  font-size: 0.96rem;
}

.tp-cat-job__body p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--tp-text-muted);
}

/* ===== Section 3: System lanes ===== */

.tp-cat-systems {
  padding-block: 3.2rem 3.8rem;
}

.tp-cat-systems__inner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.tp-cat-systems__head p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-systems__lanes {
  display: grid;
  gap: 0.9rem;
}

.tp-cat-lane {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: radial-gradient(circle at left, rgba(38, 224, 194, 0.1), rgba(15, 23, 42, 1));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
}

.tp-cat-lane__label h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.tp-cat-lane__label p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--tp-text-soft);
}

.tp-cat-lane__figure {
  margin: 0;
  justify-self: flex-end;
}

.tp-cat-lane__figure img {
  border-radius: 18px;
}

/* ===== Responsive: catalog sections 1–3 ===== */

@media (max-width: 1024px) {
  .tp-cat-hero__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
  }

  .tp-cat-jobs__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-jobs__list {
    justify-content: flex-start;
  }

  .tp-cat-lane {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 768px) {
  .tp-cat-hero {
    padding-block: 3.4rem 3.4rem;
  }

  .tp-cat-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .tp-cat-hero__media {
    justify-items: center;
  }

  .tp-cat-hero__card,
  .tp-cat-hero__card--small {
    max-width: 280px;
    transform: translateY(0);
  }

  .tp-cat-jobs__list {
    justify-content: center;
  }

  .tp-cat-lane {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-lane__figure {
    justify-self: flex-start;
  }
}

@media (max-width: 600px) {
  .tp-cat-job {
    max-width: 210px;
  }

  .tp-cat-hero__card,
  .tp-cat-hero__card--small {
    max-width: 260px;
  }

  .tp-cat-lane__figure img {
    max-width: 260px;
  }
}

@media (max-width: 400px) {
  .tp-cat-job {
    max-width: 200px;
  }

  .tp-cat-hero__card,
  .tp-cat-hero__card--small {
    max-width: 230px;
  }

  .tp-cat-lane__figure img {
    max-width: 230px;
  }
}
.tp-cat-hero__figure img,
.tp-cat-job__figure img,
.tp-cat-lane__figure img,
.tp-cat-brand__figure img,
.tp-cat-variant__figure img,
.tp-cat-layout__figure img {
  max-width: 350px;
  width: 100%;
  height: auto;
}
/* ===== Section 4: Brands & sourcing ===== */

.tp-cat-brands {
  padding-block: 3.2rem 3.6rem;
}

.tp-cat-brands__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  gap: 2.4rem;
  align-items: center;
}

.tp-cat-brands__intro p {
  max-width: 30rem;
  font-size: 0.95rem;
}

.tp-cat-brands__stack {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.tp-cat-brand {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr);
  gap: 0.9rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  border-radius: 18px;
  background: radial-gradient(circle at left, rgba(38, 224, 194, 0.12), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
}

.tp-cat-brand__figure {
  margin: 0;
}

.tp-cat-brand__figure img {
  border-radius: 15px;
}

.tp-cat-brand__body h3 {
  margin: 0 0 0.2rem;
  font-size: 0.96rem;
}

.tp-cat-brand__body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--tp-text-soft);
}

/* ===== Section 5: Variants comparison ===== */

.tp-cat-variants {
  position: relative;
  padding-block: 3.2rem 3.8rem;
  overflow: hidden;
}

.tp-cat-variants::before {
  content: "";
  position: absolute;
  inset-inline: -20%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tp-accent), var(--tp-warm), transparent);
  opacity: 0.3;
}

.tp-cat-variants__grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.tp-cat-variants__head p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-variants__rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.tp-cat-variant {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: var(--tp-shadow-soft);
}

.tp-cat-variant__figure {
  margin: 0;
}

.tp-cat-variant__figure img {
  border-radius: 16px;
}

.tp-cat-variant__body h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
}

.tp-cat-variant__body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--tp-text-soft);
}

/* ===== Section 6: Catalog layouts ===== */

.tp-cat-layouts {
  padding-block: 3.2rem 3.8rem;
}

.tp-cat-layouts__inner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.tp-cat-layouts__head p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-layouts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tp-cat-layout {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
}

.tp-cat-layout__figure {
  margin: 0;
}

.tp-cat-layout__figure img {
  border-radius: 15px;
}

.tp-cat-layout__body h3 {
  margin: 0 0 0.2rem;
  font-size: 0.96rem;
}

.tp-cat-layout__body p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--tp-text-soft);
}

/* ===== Responsive: sections 4–6 ===== */

@media (max-width: 1024px) {
  .tp-cat-brands__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-variants__rows {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-layouts__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tp-cat-brand {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-variant {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-layouts__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-layout {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .tp-cat-brand,
  .tp-cat-variant,
  .tp-cat-layout {
    padding: 0.8rem;
  }
}
.tp-cat-hero__figure img,
.tp-cat-job__figure img,
.tp-cat-lane__figure img,
.tp-cat-brand__figure img,
.tp-cat-variant__figure img,
.tp-cat-layout__figure img,
.tp-cat-users__photo img,
.tp-cat-recents__figure img,
.tp-cat-highlights__figure img {
  max-width: 350px;
  width: 100%;
  height: auto;
}
/* ===== Section 7: Catalog users ===== */

.tp-cat-users {
  padding-block: 3.2rem 3.6rem;
}

.tp-cat-users__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 2.4rem;
  align-items: center;
}

.tp-cat-users__media {
  position: relative;
  min-height: 260px;
}

.tp-cat-users__photo {
  position: absolute;
  max-width: 300px;
  width: 100%;
  border-radius: var(--tp-radius-xl);
  padding: 0.45rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  overflow: hidden;
}

.tp-cat-users__photo img {
  border-radius: calc(var(--tp-radius-xl) - 7px);
}

.tp-cat-users__photo--top {
  top: 0;
  left: 4%;
  transform: translateY(-6px);
}

.tp-cat-users__photo--bottom {
  bottom: 0;
  right: 0;
  transform: translateY(8px);
}

.tp-cat-users__copy p {
  max-width: 30rem;
  font-size: 0.95rem;
}

.tp-cat-users__lines {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.tp-cat-users__line {
  padding: 0.6rem 0.75rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.tp-cat-users__tag {
  display: inline-flex;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: radial-gradient(circle at top, var(--tp-accent-soft), rgba(15, 23, 42, 0.98));
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tp-text-soft);
  margin-bottom: 0.15rem;
}

.tp-cat-users__line p {
  margin: 0;
  font-size: 0.86rem;
}

/* ===== Section 8: Recent & saved ===== */

.tp-cat-recents {
  padding-block: 3.2rem 3.8rem;
}

.tp-cat-recents__card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 2.3rem;
  align-items: center;
  border-radius: 24px;
  padding: 1.4rem 1.6rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(38, 224, 194, 0.15), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(251, 191, 36, 0.15), transparent 55%),
    linear-gradient(120deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.65);
  box-shadow: var(--tp-shadow-soft);
}

.tp-cat-recents__col--text p {
  max-width: 30rem;
  font-size: 0.95rem;
}

.tp-cat-recents__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.tp-cat-recents__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.86rem;
  color: var(--tp-text-soft);
}

.tp-cat-recents__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--tp-accent), rgba(148, 163, 184, 0.2));
}

.tp-cat-recents__list strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--tp-text);
}

.tp-cat-recents__col--media {
  position: relative;
  min-height: 260px;
}

.tp-cat-recents__figure {
  position: absolute;
  max-width: 300px;
  width: 100%;
  border-radius: var(--tp-radius-xl);
  padding: 0.45rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  overflow: hidden;
}

.tp-cat-recents__figure img {
  border-radius: calc(var(--tp-radius-xl) - 7px);
}

.tp-cat-recents__figure--top {
  top: 0;
  right: 0;
  transform: translateY(-6px);
}

.tp-cat-recents__figure--bottom {
  bottom: 0;
  left: 6%;
  transform: translateY(8px);
}

/* ===== Section 9: Highlights ===== */

.tp-cat-highlights {
  padding-block: 3.2rem 3.8rem;
}

.tp-cat-highlights__inner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.tp-cat-highlights__head p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-highlights__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tp-cat-highlight {
  padding: 0.85rem;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tp-cat-highlights__figure {
  margin: 0;
}

.tp-cat-highlights__figure img {
  border-radius: 15px;
}

.tp-cat-highlight h3 {
  margin: 0.1rem 0 0.15rem;
  font-size: 0.96rem;
}

.tp-cat-highlight p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--tp-text-soft);
}

.tp-cat-highlight--text {
  justify-content: center;
}

/* ===== Responsive: sections 7–9 ===== */

@media (max-width: 1024px) {
  .tp-cat-users__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-recents__card {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-highlights__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tp-cat-users__media,
  .tp-cat-recents__col--media {
    position: relative;
    min-height: 0;
    margin-top: 0.7rem;
  }

  .tp-cat-users__photo,
  .tp-cat-recents__figure {
    position: relative;
    max-width: 260px;
    margin-inline: auto;
    transform: translateY(0);
  }

  .tp-cat-highlights__row {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-recents__card {
    padding: 1.1rem 1.2rem;
  }
}

@media (max-width: 600px) {
  .tp-cat-users__photo,
  .tp-cat-recents__figure {
    max-width: 240px;
  }
}

@media (max-width: 400px) {
  .tp-cat-users__photo,
  .tp-cat-recents__figure {
    max-width: 220px;
  }
}
/* ===== Section 10: Filter logic ===== */

.tp-cat-filters {
  padding-block: 3.2rem 3.8rem;
}

.tp-cat-filters__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 2.4rem;
  align-items: center;
}

.tp-cat-filters__copy p {
  max-width: 30rem;
  font-size: 0.95rem;
}

.tp-cat-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.9rem 0 0.7rem;
}

.tp-cat-filters__chip {
  font-size: 0.78rem;
}

.tp-cat-filters__list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.tp-cat-filters__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  font-size: 0.86rem;
  color: var(--tp-text-soft);
}

.tp-cat-filters__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--tp-accent), rgba(148, 163, 184, 0.2));
}

.tp-cat-filters__list strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--tp-text);
}

.tp-cat-filters__media {
  position: relative;
  min-height: 260px;
}

.tp-cat-filters__figure {
  position: absolute;
  border-radius: var(--tp-radius-xl);
  padding: 0.45rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  overflow: hidden;
  max-width: 320px;
  width: 100%;
}

.tp-cat-filters__figure img {
  border-radius: calc(var(--tp-radius-xl) - 7px);
}

.tp-cat-filters__figure--main {
  top: 0;
  right: 4%;
  transform: translateY(-6px);
}

.tp-cat-filters__figure--side {
  top: 46%;
  left: 0;
  transform: translateY(-4px);
}

tp-cat-filters__figure--bottom,
.tp-cat-filters__figure--bottom {
  bottom: 0;
  right: 16%;
  transform: translateY(8px);
}
.tp-cat-filters__figure--bottom {
  bottom: 0;
  right: 16%;
  transform: translateY(8px);
}
/* ===== Section 11: Specs ===== */

.tp-cat-specs {
  padding-block: 3.2rem 3.6rem;
}

.tp-cat-specs__inner {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.tp-cat-specs__head p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tp-cat-spec {
  padding: 0.85rem;
  border-radius: 18px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.97), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.tp-cat-specs__figure {
  margin: 0;
}

.tp-cat-specs__figure img {
  border-radius: 15px;
}

.tp-cat-spec h3 {
  margin: 0.15rem 0 0.15rem;
  font-size: 0.96rem;
}

.tp-cat-spec p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--tp-text-soft);
}
/* ===== Section 12: Pre-order checks ===== */

.tp-cat-checks {
  padding-block: 3.2rem 3.8rem;
}

.tp-cat-checks__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  gap: 2.4rem;
  align-items: center;
}

.tp-cat-checks__media {
  position: relative;
  min-height: 260px;
}

.tp-cat-checks__figure {
  position: absolute;
  max-width: 300px;
  width: 100%;
  border-radius: var(--tp-radius-xl);
  padding: 0.45rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  overflow: hidden;
}

.tp-cat-checks__figure img {
  border-radius: calc(var(--tp-radius-xl) - 7px);
}

.tp-cat-checks__figure--top {
  top: 0;
  left: 6%;
  transform: translateY(-6px);
}

.tp-cat-checks__figure--bottom {
  bottom: 0;
  right: 4%;
  transform: translateY(8px);
}

.tp-cat-checks__copy p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-checks__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.tp-cat-checks__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
  color: var(--tp-text-soft);
}

.tp-cat-checks__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--tp-warm), rgba(248, 250, 252, 0.1));
}

.tp-cat-checks__list strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--tp-text);
}
@media (max-width: 1024px) {
  .tp-cat-filters__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-checks__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .tp-cat-filters__media,
  .tp-cat-checks__media {
    position: relative;
    min-height: 0;
    margin-top: 0.7rem;
  }

  .tp-cat-filters__figure,
  .tp-cat-checks__figure {
    position: relative;
    max-width: 260px;
    margin-inline: auto;
    transform: translateY(0);
  }

  .tp-cat-specs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .tp-cat-specs__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-filters__figure,
  .tp-cat-checks__figure {
    max-width: 240px;
  }
}

@media (max-width: 400px) {
  .tp-cat-filters__figure,
  .tp-cat-checks__figure {
    max-width: 220px;
  }
}
.tp-cat-hero__figure img,
.tp-cat-job__figure img,
.tp-cat-lane__figure img,
.tp-cat-brand__figure img,
.tp-cat-variant__figure img,
.tp-cat-layout__figure img,
.tp-cat-users__photo img,
.tp-cat-recents__figure img,
.tp-cat-highlights__figure img,
.tp-cat-filters__figure img,
.tp-cat-specs__figure img,
.tp-cat-checks__figure img,
.tp-cat-pricing__figure img,
.tp-cat-stock__figure img,
.tp-cat-notes__figure img {
  max-width: 350px;
  width: 100%;
  height: auto;
}
/* ===== Section 13: Pricing bands ===== */

.tp-cat-pricing {
  padding-block: 3.2rem 3.6rem;
}

.tp-cat-pricing__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  gap: 2.4rem;
  align-items: center;
}

.tp-cat-pricing__copy p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-pricing__bands {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.tp-cat-pricing__band {
  padding: 0.7rem 0.8rem;
  border-radius: 16px;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
}

.tp-cat-pricing__band h3 {
  margin: 0 0 0.2rem;
  font-size: 0.96rem;
}

.tp-cat-pricing__band p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--tp-text-soft);
}

.tp-cat-pricing__media {
  position: relative;
  min-height: 260px;
}

.tp-cat-pricing__figure {
  position: absolute;
  max-width: 300px;
  width: 100%;
  border-radius: var(--tp-radius-xl);
  padding: 0.45rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  overflow: hidden;
}

.tp-cat-pricing__figure img {
  border-radius: calc(var(--tp-radius-xl) - 7px);
}

.tp-cat-pricing__figure--top {
  top: 0;
  right: 4%;
  transform: translateY(-6px);
}

.tp-cat-pricing__figure--bottom {
  bottom: 0;
  left: 6%;
  transform: translateY(8px);
}
/* ===== Section 14: Stock & delivery ===== */

.tp-cat-stock {
  padding-block: 3.2rem 3.8rem;
}

.tp-cat-stock__card {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.4rem;
  align-items: center;
  border-radius: 24px;
  padding: 1.4rem 1.6rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(38, 224, 194, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(251, 191, 36, 0.16), transparent 55%),
    linear-gradient(120deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.68);
  box-shadow: var(--tp-shadow-soft);
}

.tp-cat-stock__col--text p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-stock__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.tp-cat-stock__list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
  font-size: 0.86rem;
  color: var(--tp-text-soft);
}

.tp-cat-stock__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--tp-accent), rgba(148, 163, 184, 0.2));
}

.tp-cat-stock__list strong {
  display: block;
  margin-bottom: 0.1rem;
  color: var(--tp-text);
}

.tp-cat-stock__col--media {
  position: relative;
  min-height: 260px;
}

.tp-cat-stock__figure {
  position: absolute;
  max-width: 300px;
  width: 100%;
  border-radius: var(--tp-radius-xl);
  padding: 0.45rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  overflow: hidden;
}

.tp-cat-stock__figure img {
  border-radius: calc(var(--tp-radius-xl) - 7px);
}

.tp-cat-stock__figure--top {
  top: 0;
  right: 4%;
  transform: translateY(-6px);
}

.tp-cat-stock__figure--bottom {
  bottom: 0;
  left: 8%;
  transform: translateY(8px);
}
/* ===== Section 15: Notes & warnings ===== */

.tp-cat-notes {
  padding-block: 3.2rem 3.8rem;
}

.tp-cat-notes__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
  gap: 2.4rem;
  align-items: center;
}

.tp-cat-notes__media {
  position: relative;
  min-height: 260px;
}

.tp-cat-notes__figure {
  position: absolute;
  max-width: 280px;
  width: 100%;
  border-radius: var(--tp-radius-xl);
  padding: 0.45rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  overflow: hidden;
}

.tp-cat-notes__figure img {
  border-radius: calc(var(--tp-radius-xl) - 7px);
}

.tp-cat-notes__figure--left {
  top: 0;
  left: 4%;
  transform: translateY(-6px);
}

.tp-cat-notes__figure--right {
  bottom: 0;
  right: 4%;
  transform: translateY(8px);
}

.tp-cat-notes__copy p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-notes__lines {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.tp-cat-notes__line {
  padding: 0.6rem 0.75rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.tp-cat-notes__line h3 {
  margin: 0 0 0.15rem;
  font-size: 0.96rem;
}

.tp-cat-notes__line p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--tp-text-soft);
}
@media (max-width: 1024px) {
  .tp-cat-pricing__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-stock__card {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-notes__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-pricing__bands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .tp-cat-pricing__bands {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-pricing__media,
  .tp-cat-stock__col--media,
  .tp-cat-notes__media {
    position: relative;
    min-height: 0;
    margin-top: 0.7rem;
  }

  .tp-cat-pricing__figure,
  .tp-cat-stock__figure,
  .tp-cat-notes__figure {
    position: relative;
    max-width: 260px;
    margin-inline: auto;
    transform: translateY(0);
  }

  .tp-cat-stock__card {
    padding: 1.1rem 1.2rem;
  }
}

@media (max-width: 600px) {
  .tp-cat-pricing__figure,
  .tp-cat-stock__figure,
  .tp-cat-notes__figure {
    max-width: 240px;
  }
}

@media (max-width: 400px) {
  .tp-cat-pricing__figure,
  .tp-cat-stock__figure,
  .tp-cat-notes__figure {
    max-width: 220px;
  }
}
.tp-cat-hero__figure img,
.tp-cat-job__figure img,
.tp-cat-lane__figure img,
.tp-cat-brand__figure img,
.tp-cat-variant__figure img,
.tp-cat-layout__figure img,
.tp-cat-users__photo img,
.tp-cat-recents__figure img,
.tp-cat-highlights__figure img,
.tp-cat-filters__figure img,
.tp-cat-specs__figure img,
.tp-cat-checks__figure img,
.tp-cat-pricing__figure img,
.tp-cat-stock__figure img,
.tp-cat-notes__figure img {
  max-width: 350px;
  width: 100%;
  height: auto;
}
/* ===== Section 16: Catalog roadmap ===== */

.tp-cat-roadmap {
  padding-block: 3.2rem 3.6rem;
}

.tp-cat-roadmap__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 2.4rem;
  align-items: center;
}

.tp-cat-roadmap__copy p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-roadmap__items {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.tp-cat-roadmap__item {
  padding: 0.7rem 0.8rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.tp-cat-roadmap__item h3 {
  margin: 0 0 0.18rem;
  font-size: 0.96rem;
}

.tp-cat-roadmap__item p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--tp-text-soft);
}

.tp-cat-roadmap__media {
  position: relative;
  min-height: 260px;
}

.tp-cat-roadmap__figure {
  position: absolute;
  max-width: 300px;
  width: 100%;
  border-radius: var(--tp-radius-xl);
  padding: 0.45rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.55);
  box-shadow: var(--tp-shadow-soft);
  overflow: hidden;
}

.tp-cat-roadmap__figure img {
  border-radius: calc(var(--tp-radius-xl) - 7px);
}

.tp-cat-roadmap__figure--top {
  top: 0;
  right: 4%;
  transform: translateY(-6px);
}

.tp-cat-roadmap__figure--bottom {
  bottom: 0;
  left: 6%;
  transform: translateY(8px);
}
/* ===== Section 17: Next steps ===== */

.tp-cat-next {
  padding-block: 3.2rem 3.8rem;
}

.tp-cat-next__card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.7fr);
  gap: 2rem;
  align-items: center;
  border-radius: 26px;
  padding: 1.4rem 1.6rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(38, 224, 194, 0.16), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(251, 191, 36, 0.16), transparent 55%),
    linear-gradient(120deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.68);
  box-shadow: var(--tp-shadow-soft);
}

.tp-cat-next__figure {
  margin: 0;
}

.tp-cat-next__figure img {
  border-radius: var(--tp-radius-xl);
  padding: 0.4rem;
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.88));
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.tp-cat-next__content h2 {
  margin-bottom: 0.4rem;
}

.tp-cat-next__content p {
  max-width: 32rem;
  font-size: 0.95rem;
}

.tp-cat-next__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0.9rem 0 0.4rem;
}

.tp-cat-next__note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--tp-text-muted);
}
@media (max-width: 1024px) {
  .tp-cat-roadmap__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tp-cat-next__card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .tp-cat-roadmap__media {
    position: relative;
    min-height: 0;
    margin-top: 0.7rem;
  }

  .tp-cat-roadmap__figure {
    position: relative;
    max-width: 260px;
    margin-inline: auto;
    transform: translateY(0);
  }

  .tp-cat-next__card {
    padding: 1.1rem 1.2rem;
    text-align: left;
  }

  .tp-cat-next__figure img {
    max-width: 260px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .tp-cat-roadmap__figure,
  .tp-cat-next__figure img {
    max-width: 240px;
  }
}

@media (max-width: 400px) {
  .tp-cat-roadmap__figure,
  .tp-cat-next__figure img {
    max-width: 220px;
  }
}
