.page-products {
  --p-text-main: #EAEEF5;
  --p-text-secondary: #B4C0D0;
  --p-line: rgba(255, 255, 255, 0.16);
  --p-green: #C8F560;
  --p-purple: #9B6CFF;
  --p-deep: #0B0F1A;
  --p-dark: #131A2A;
  --p-indigo: #1E2A4A;
  --p-teal: #153D3A;
  --p-wine: #4A1F2D;
  --p-green-line: rgba(200, 245, 96, 0.35);
  --p-purple-line: rgba(155, 108, 255, 0.35);
  --p-tag-bg: rgba(200, 245, 96, 0.12);
  --p-tag-purple-bg: rgba(155, 108, 255, 0.14);
  --p-tag-wine-bg: rgba(74, 31, 45, 0.55);
  --p-grid-line: rgba(255, 255, 255, 0.06);
}

/* ===== Hero ===== */
.p-hero {
  padding: 32px 20px 0;
  max-width: var(--container);
  margin: 0 auto;
}

.p-hero__content {
  border-left: 3px solid var(--p-green);
  padding-left: 18px;
  margin-bottom: 28px;
}

.p-hero__content .index-label {
  display: inline-block;
  margin-bottom: 12px;
}

.p-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--p-text-main);
}

.p-hero__lead {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: var(--p-text-secondary);
  max-width: 62ch;
  margin: 0 0 20px;
}

.p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.p-hero__actions .btn {
  min-width: 130px;
}

.p-hero__figure {
  margin: 28px 0 0;
  border: 1px solid var(--p-line);
  background: linear-gradient(135deg, rgba(30, 42, 74, 0.55) 0%, rgba(11, 15, 26, 0.9) 100%);
  position: relative;
}

.p-hero__figure::before,
.p-hero__figure::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--p-green);
  border-style: solid;
}

.p-hero__figure::before {
  border-width: 2px 0 0 2px;
  top: 0;
  left: 0;
}

.p-hero__figure::after {
  border-width: 0 2px 2px 0;
  right: 0;
  bottom: 0;
}

.p-hero__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.p-hero__figure figcaption {
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--p-text-secondary);
  background: rgba(11, 15, 26, 0.72);
  border-top: 1px solid var(--p-line);
}

/* ===== Feature strip ===== */
.p-feature-strip {
  max-width: var(--container);
  margin: 36px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--p-line);
  border-bottom: 1px solid var(--p-line);
}

.p-feature-strip__item {
  padding: 20px 8px;
  text-align: center;
  border-right: 1px solid var(--p-line);
}

.p-feature-strip__item:last-child {
  border-right: none;
}

.p-feature-strip__item .mono {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--p-green);
  line-height: 1.1;
}

.p-feature-strip__label {
  font-size: 12px;
  color: var(--p-text-secondary);
}

/* ===== Section shell ===== */
.p-section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 20px 0;
}

.p-section .section-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--p-line);
  padding-bottom: 14px;
}

.p-section .section-head__index {
  font-family: var(--font-data);
  font-size: 18px;
  color: var(--p-green);
}

.p-section .section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 900;
  margin: 0;
  color: var(--p-text-main);
}

.p-section .section-head__desc {
  font-size: 13px;
  color: var(--p-text-secondary);
  margin: 0;
}

/* ===== Tier tabs ===== */
.p-tier-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.p-tier-tab {
  display: inline-block;
  padding: 6px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--p-text-secondary);
  text-decoration: none;
  border: 1px solid var(--p-line);
  background: var(--p-dark);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.p-tier-tab:hover,
.p-tier-tab:focus-visible {
  border-color: var(--p-green);
  color: var(--p-green);
  background: rgba(200, 245, 96, 0.08);
}

/* ===== Tier grid ===== */
.p-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.p-tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  border: 1px solid var(--p-line);
  background: var(--p-dark);
  scroll-margin-top: 84px;
  transition: border-color var(--ease), transform var(--ease);
}

.p-tier-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 24px;
  width: 36px;
  height: 4px;
  background: var(--p-text-secondary);
}

.p-tier-card:hover {
  transform: translateY(-2px);
}

.p-tier-card--basic {
  background: linear-gradient(180deg, #0F1522 0%, var(--p-dark) 100%);
}

.p-tier-card--basic::before {
  background: #9BB0C8;
}

.p-tier-card--standard {
  background: linear-gradient(180deg, rgba(21, 61, 58, 0.6) 0%, var(--p-dark) 100%);
}

.p-tier-card--standard::before {
  background: var(--p-green);
}

.p-tier-card--pro {
  background: linear-gradient(180deg, rgba(30, 42, 74, 0.85) 0%, var(--p-dark) 100%);
}

.p-tier-card--pro::before {
  background: var(--p-purple);
}

.p-tier-card--plan {
  background: linear-gradient(180deg, rgba(21, 61, 58, 0.4) 0%, rgba(30, 42, 74, 0.7) 55%, var(--p-dark) 100%);
}

.p-tier-card--plan::before {
  background: #D6B3FF;
}

.p-tier-card--flagship {
  background: linear-gradient(180deg, rgba(30, 42, 74, 0.95) 0%, rgba(11, 15, 26, 0.96) 100%);
  border-color: var(--p-green-line);
}

.p-tier-card--flagship::before {
  background: var(--p-green);
}

.p-tier-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.p-tier-card__code {
  font-size: 12px;
  color: var(--p-text-secondary);
}

.p-tier-card__price {
  margin: 0 0 10px;
  font-family: var(--font-data);
  font-size: 36px;
  font-weight: 700;
  color: var(--p-text-main);
  line-height: 1;
}

.p-tier-card__period {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--p-text-secondary);
  margin-left: 4px;
}

.p-tier-card__desc {
  font-size: 14px;
  color: var(--p-text-secondary);
  margin: 0 0 16px;
  line-height: 1.6;
}

.p-tier-card__features {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.p-tier-card__features li {
  font-size: 14px;
  color: var(--p-text-main);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.p-tier-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--p-green);
  transform: rotate(45deg);
}

.p-tier-card--standard .p-tier-card__features li::before {
  background: var(--p-purple);
}

.p-tier-card--pro .p-tier-card__features li::before {
  background: var(--p-purple);
}

.p-tier-card--plan .p-tier-card__features li::before {
  background: var(--p-purple);
}

.p-tier-card--flagship .p-tier-card__features li::before {
  background: var(--p-green);
}

.p-tier-card__link {
  margin-top: auto;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--p-green);
  text-decoration: none;
  padding: 4px 0;
}

.p-tier-card__link::after {
  content: "→";
  margin-left: 6px;
  transition: margin-left var(--ease-fast);
}

.p-tier-card__link:hover::after {
  margin-left: 12px;
}

/* ===== Info note ===== */
.p-section > .info-note {
  margin-top: 20px;
}

/* ===== Fee section ===== */
.p-section--fee {
  margin-top: 24px;
  background: linear-gradient(180deg, rgba(21, 61, 58, 0.16) 0%, rgba(11, 15, 26, 0.9) 100%);
  padding-top: 48px;
}

.p-fee-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.p-fee-card {
  border: 1px solid var(--p-line);
  background: rgba(19, 26, 42, 0.7);
  padding: 24px;
}

.p-fee-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 4px;
  color: var(--p-text-main);
}

.p-fee-card__subtitle {
  font-size: 13px;
  color: var(--p-text-secondary);
  margin: 0 0 20px;
}

.p-fee-bar {
  display: flex;
  height: 38px;
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid var(--p-line);
  overflow: hidden;
}

.p-fee-bar__segment {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 600;
  color: var(--p-text-main);
  white-space: nowrap;
  min-width: 0;
}

.p-fee-bar__segment--tech {
  background: rgba(200, 245, 96, 0.75);
  color: #0B0F1A;
}

.p-fee-bar__segment--data {
  background: rgba(155, 108, 255, 0.65);
}

.p-fee-bar__segment--pay {
  background: rgba(30, 42, 74, 0.9);
}

.p-fee-bar__segment--tax {
  background: rgba(74, 31, 45, 0.85);
}

.p-fee-table {
  width: 100%;
  font-size: 14px;
}

.p-fee-table th {
  font-size: 12px;
  text-align: left;
  color: var(--p-text-secondary);
  border-bottom: 1px solid var(--p-line);
  padding: 8px 10px;
}

.p-fee-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--p-text-main);
}

.p-fee-table tfoot td {
  font-weight: 700;
  border-bottom: none;
  border-top: 2px solid var(--p-green-line);
}

.p-fee-note {
  border-left: 3px solid var(--p-purple);
  padding-left: 20px;
}

.p-fee-note__title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 14px;
  color: var(--p-text-main);
}

.p-fee-note__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.p-fee-note__list li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--p-text-main);
  padding-left: 20px;
  position: relative;
}

.p-fee-note__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--p-purple);
}

.p-fee-note__list strong {
  color: var(--p-green);
}

.p-fee-note__figure {
  margin: 0;
  border: 1px solid var(--p-line);
}

.p-fee-note__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.p-fee-note__figure figcaption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--p-text-secondary);
  border-top: 1px solid var(--p-line);
}

/* ===== Price query section ===== */
.p-section--curve {
  background: linear-gradient(180deg, rgba(30, 42, 74, 0.14) 0%, rgba(11, 15, 26, 0.9) 100%);
}

.p-query-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.p-query-card {
  border: 1px solid var(--p-line);
  background: rgba(19, 26, 42, 0.72);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.p-query-search__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--p-text-secondary);
  margin-bottom: 8px;
}

.p-query-search__row {
  display: flex;
  gap: 10px;
}

.p-query-search__input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--p-text-main);
  background: var(--p-deep);
  border: 1px solid var(--p-line);
  transition: border-color var(--ease);
}

.p-query-search__input:focus-visible {
  outline: 2px solid var(--p-green);
  outline-offset: -1px;
  border-color: var(--p-green);
}

.p-query-team {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(21, 61, 58, 0.35);
  border-left: 3px solid var(--p-green);
}

.p-query-team__name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--p-text-main);
}

.p-query-team__meta {
  font-size: 12px;
  color: var(--p-text-secondary);
  width: 100%;
}

.p-query-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--p-line);
  border: 1px solid var(--p-line);
  margin: 0;
}

.p-query-stats dt {
  padding: 12px 14px;
  font-size: 12px;
  color: var(--p-text-secondary);
  background: var(--p-dark);
}

.p-query-stats dd {
  margin: 0;
  padding: 12px 14px;
  font-size: 18px;
  font-weight: 700;
  color: var(--p-green);
  background: var(--p-dark);
  text-align: right;
}

.p-query-tip {
  font-size: 13px;
  line-height: 1.7;
  color: var(--p-text-secondary);
  margin: 0;
  border-top: 1px solid var(--p-line);
  padding-top: 14px;
}

.p-query-chart {
  border: 1px solid var(--p-line);
  background: rgba(11, 15, 26, 0.85);
  padding: 22px;
}

.p-query-chart__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--p-text-main);
}

.p-query-chart__svg {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
}

.p-query-chart__figure {
  margin: 18px 0 0;
  border-top: 1px solid var(--p-line);
  padding-top: 14px;
}

.p-query-chart__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.p-query-chart__figure figcaption {
  font-size: 12px;
  color: var(--p-text-secondary);
  padding-top: 6px;
}

/* ===== Team library ===== */
.p-section--team {
  background: linear-gradient(180deg, rgba(21, 61, 58, 0.1) 0%, rgba(11, 15, 26, 0.9) 100%);
}

.p-team-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.p-team-filters {
  border: 1px solid var(--p-line);
  background: rgba(19, 26, 42, 0.72);
  padding: 22px;
}

.p-team-filters__group {
  margin-bottom: 20px;
}

.p-team-filters__group:last-of-type {
  margin-bottom: 16px;
}

.p-team-filters__label {
  display: block;
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 600;
  color: var(--p-green);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.p-team-filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-chip {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: var(--p-text-secondary);
  background: rgba(21, 61, 58, 0.45);
  border: 1px solid var(--p-line);
  cursor: pointer;
  transition: border-color var(--ease-fast), color var(--ease-fast), background var(--ease-fast);
}

.p-chip:hover {
  border-color: var(--p-green);
  color: var(--p-green);
}

.p-chip.is-active {
  border-color: var(--p-green);
  color: #0B0F1A;
  background: var(--p-green);
  font-weight: 600;
}

.p-team-filters__result {
  font-size: 13px;
  color: var(--p-text-secondary);
  line-height: 1.7;
  margin: 0 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--p-line);
}

.p-team-filters__result .mono {
  color: var(--p-green);
  font-size: 16px;
}

.p-team-sample {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-team-sample__figure {
  margin: 0;
  border: 1px solid var(--p-line);
  background: rgba(21, 61, 58, 0.25);
}

.p-team-sample__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.p-team-sample__figure figcaption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--p-text-secondary);
  border-top: 1px solid var(--p-line);
}

.p-team-sample__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.p-team-sample__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  background: var(--p-dark);
  border: 1px solid var(--p-line);
  transition: border-color var(--ease-fast);
}

.p-team-sample__item:hover {
  border-color: var(--p-green-line);
}

.p-team-sample__team {
  font-size: 14px;
  font-weight: 700;
  color: var(--p-text-main);
}

.p-team-sample__meta {
  font-size: 12px;
  color: var(--p-text-secondary);
  margin-left: auto;
}

/* ===== Match table ===== */
.p-section--match {
  padding-top: 48px;
}

.p-match-table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
}

.p-match-table th {
  font-family: var(--font-data);
  font-size: 12px;
  text-align: left;
  color: var(--p-text-secondary);
  padding: 12px 12px;
  border-bottom: 1px solid var(--p-line);
  white-space: nowrap;
}

.p-match-table td {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--p-text-main);
  white-space: nowrap;
}

.p-match-table tr:hover td {
  background: rgba(200, 245, 96, 0.05);
}

.p-match-table .mono {
  font-size: 13px;
}

.p-match-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--p-text-secondary);
  line-height: 1.7;
  padding-left: 14px;
  border-left: 3px solid var(--p-purple);
}

/* ===== Version history ===== */
.p-section--version {
  padding-bottom: 64px;
  background: linear-gradient(180deg, rgba(30, 42, 74, 0.1) 0%, rgba(11, 15, 26, 0.95) 100%);
  max-width: none;
  width: 100%;
}

.p-section--version .section-head {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.p-version-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.p-version-timeline {
  position: relative;
  padding-left: 24px;
  border-left: 1px solid var(--p-line);
}

.p-version-item {
  position: relative;
  padding: 0 0 28px 24px;
}

.p-version-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--p-indigo);
  border: 2px solid var(--p-text-secondary);
  transform: rotate(45deg);
}

.p-version-item--current::before {
  background: var(--p-green);
  border-color: var(--p-green);
  box-shadow: 0 0 12px rgba(200, 245, 96, 0.5);
}

.p-version-item__version {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--p-text-main);
}

.p-version-item__year {
  display: inline-block;
  margin-left: 10px;
  font-size: 13px;
  color: var(--p-green);
}

.p-version-item__desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--p-text-secondary);
}

.p-version-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.p-version-side__figure {
  margin: 0;
  border: 1px solid var(--p-line);
  background: rgba(30, 42, 74, 0.35);
}

.p-version-side__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.p-version-side__figure figcaption {
  padding: 8px 12px;
  font-size: 12px;
  color: var(--p-text-secondary);
  border-top: 1px solid var(--p-line);
}

.p-version-side__info {
  border: 1px solid var(--p-line);
  background: var(--p-dark);
  padding: 20px;
}

.p-version-side__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 12px;
  color: var(--p-text-main);
}

.p-version-side__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.p-version-side__list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--p-text-main);
  padding-left: 18px;
  position: relative;
}

.p-version-side__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--p-purple);
}

/* ===== Responsive: default mobile-first above; now desktop ===== */
@media (min-width: 768px) {
  .p-hero {
    padding: 48px 24px 0;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 32px;
    align-items: start;
  }

  .p-hero__content {
    padding-left: 24px;
    margin-bottom: 0;
  }

  .p-hero__lead {
    font-size: 16px;
  }

  .p-hero__figure {
    margin-top: 0;
  }

  .p-tier-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    align-items: stretch;
  }

  .p-tier-card {
    grid-column: span 2;
    padding: 22px 18px;
  }

  .p-tier-card--basic {
    grid-column: span 2;
  }

  .p-tier-card--standard {
    grid-column: span 2;
  }

  .p-tier-card--pro {
    grid-column: span 2;
  }

  .p-tier-card--plan {
    grid-column: span 3;
  }

  .p-tier-card--flagship {
    grid-column: span 3;
  }

  .p-fee-layout {
    grid-template-columns: 6fr 5fr;
    gap: 36px;
    align-items: start;
  }

  .p-fee-note__figure {
    margin-top: 8px;
  }

  .p-query-layout {
    grid-template-columns: 4fr 7fr;
    gap: 28px;
    align-items: start;
  }

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

  .p-team-layout {
    grid-template-columns: 5fr 6fr;
    gap: 32px;
    align-items: start;
  }

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

  .p-version-layout {
    grid-template-columns: 6fr 5fr;
    gap: 36px;
    align-items: start;
  }

  .p-version-side {
    flex-direction: column;
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .p-tier-card {
    grid-column: span 2;
    padding: 28px 24px;
  }

  .p-tier-card--plan {
    grid-column: 1 / 4;
  }

  .p-tier-card--flagship {
    grid-column: 4 / 7;
  }

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

  .p-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .p-version-layout {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-tier-card,
  .p-tier-tab,
  .p-chip,
  .p-tier-card__link::after {
    transition: none;
  }
}
