:root {
  --pkr-bg-top: #0a2010;
  --pkr-bg-bottom: #0f2d18;
  --pkr-surface: rgba(250, 248, 240, 0.08);
  --pkr-surface-strong: rgba(250, 248, 240, 0.14);
  --pkr-paper: #faf8f0;
  --pkr-paper-deep: #efe7d2;
  --pkr-text: #faf8f0;
  --pkr-ink: #1d1712;
  --pkr-muted: rgba(250, 248, 240, 0.76);
  --pkr-line: rgba(250, 248, 240, 0.14);
  --pkr-red: #dc2626;
  --pkr-red-dark: #9f1d1d;
  --pkr-gold: #d4a017;
  --pkr-white-chip: #ffffff;
  --pkr-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --pkr-radius: 26px;
  --pkr-radius-sm: 16px;
  --pkr-max: 1220px;
  --pkr-nav-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Barlow", sans-serif;
  line-height: 1.6;
  color: var(--pkr-text);
  background:
    radial-gradient(circle at top, rgba(212, 160, 23, 0.13), transparent 18%),
    radial-gradient(circle at 15% 18%, rgba(220, 38, 38, 0.14), transparent 22%),
    linear-gradient(180deg, var(--pkr-bg-top) 0%, #0d2815 48%, var(--pkr-bg-bottom) 100%);
}

body.pkr-lock {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  display: block;
}

.pkr-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.pkr-progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--pkr-gold), var(--pkr-red));
  transition: width 0.12s linear;
}

.pkr-shell {
  width: min(100% - 32px, var(--pkr-max));
  margin: 0 auto;
}

.pkr-skip {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--pkr-paper);
  color: var(--pkr-ink);
}

.pkr-skip:focus {
  left: 16px;
}

.pkr-topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(250, 248, 240, 0.08);
  background: rgba(7, 23, 13, 0.88);
}

.pkr-topbar__row {
  min-height: var(--pkr-nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pkr-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}

.pkr-brand__mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff7db 0%, rgba(255, 247, 219, 0.34) 18%, transparent 18%),
    linear-gradient(145deg, #f3d66b 0%, var(--pkr-gold) 48%, #8f6400 100%);
  color: #321c02;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.3),
    0 10px 20px rgba(0, 0, 0, 0.22);
}

.pkr-brand__accent {
  color: var(--pkr-gold);
}

.pkr-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pkr-nav__link {
  position: relative;
  padding: 10px 0;
  font-weight: 600;
  color: var(--pkr-text);
}

.pkr-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--pkr-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.pkr-nav__link:hover::after,
.pkr-nav__link:focus-visible::after {
  transform: scaleX(1);
}

.pkr-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--pkr-line);
  border-radius: 14px;
  background: rgba(250, 248, 240, 0.06);
  color: var(--pkr-text);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.pkr-menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--pkr-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.pkr-menu-toggle.pkr-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pkr-menu-toggle.pkr-open span:nth-child(2) {
  opacity: 0;
}

.pkr-menu-toggle.pkr-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pkr-drawer {
  position: fixed;
  inset: var(--pkr-nav-height) 0 auto auto;
  width: min(84vw, 320px);
  height: calc(100vh - var(--pkr-nav-height));
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(7, 23, 13, 0.97);
  border-left: 1px solid var(--pkr-line);
  transform: translateX(100%);
  transition: transform 0.24s ease;
  z-index: 78;
}

.pkr-drawer.pkr-open {
  transform: translateX(0);
}

.pkr-drawer__link {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(250, 248, 240, 0.05);
}

.pkr-drawer__shade {
  position: fixed;
  inset: 0;
  z-index: 76;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pkr-drawer__shade.pkr-open {
  opacity: 1;
  pointer-events: auto;
}

.pkr-cookie,
.pkr-age {
  position: fixed;
  z-index: 95;
}

.pkr-cookie {
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(30, 15, 10, 0.96);
  transform: translateY(-100%);
  transition: transform 0.24s ease;
}

.pkr-cookie.pkr-visible {
  transform: translateY(0);
}

.pkr-cookie__row {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pkr-cookie__actions,
.pkr-age__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pkr-age {
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.66);
}

.pkr-age.pkr-visible {
  display: flex;
}

.pkr-age__panel {
  width: min(100%, 520px);
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(250, 248, 240, 0.97), rgba(239, 231, 210, 0.96));
  color: var(--pkr-ink);
  text-align: center;
  box-shadow: var(--pkr-shadow);
}

.pkr-age__badge,
.pkr-foot__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--pkr-red);
  color: var(--pkr-white-chip);
  font-weight: 700;
}

.pkr-main {
  padding: 32px 0 0;
}

.pkr-section {
  padding: 36px 0 84px;
}

.pkr-hero {
  padding-top: 42px;
}

.pkr-paper-panel {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--pkr-radius);
  background:
    linear-gradient(135deg, rgba(250, 248, 240, 0.12), rgba(250, 248, 240, 0.06));
  border: 1px solid rgba(250, 248, 240, 0.09);
  box-shadow: var(--pkr-shadow);
}

.pkr-paper-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0 1px,
      transparent 1px 16px
    ),
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.14), transparent 20%);
  pointer-events: none;
}

.pkr-paper-panel > * {
  position: relative;
}

.pkr-hero__eyebrow,
.pkr-heading__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.16);
  color: #ffdede;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.pkr-hero__headline,
.pkr-heading__title,
.pkr-page__title {
  margin: 0;
  font-family: "DM Serif Display", serif;
  line-height: 1.04;
}

.pkr-hero__headline {
  max-width: 12ch;
  font-size: clamp(2.7rem, 7vw, 5.3rem);
}

.pkr-hero__byline {
  margin: 18px 0 28px;
  max-width: 60ch;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--pkr-muted);
}

.pkr-hero__deck {
  max-width: 60ch;
  margin: 0 0 30px;
  font-size: 1.06rem;
}

.pkr-editorial {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pkr-editorial__item {
  min-height: 100%;
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(250, 248, 240, 0.95), rgba(239, 231, 210, 0.9));
  color: var(--pkr-ink);
  border-left: 6px solid var(--pkr-red);
}

.pkr-editorial__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #13100c;
  color: var(--pkr-paper);
  font-family: "DM Serif Display", serif;
  font-size: 1.2rem;
}

.pkr-editorial__title {
  margin: 0 0 8px;
  font-size: 1.24rem;
  font-family: "DM Serif Display", serif;
}

.pkr-editorial__copy {
  margin: 0;
}

.pkr-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.pkr-ledger__item {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(8, 28, 15, 0.72);
  border: 1px solid rgba(250, 248, 240, 0.08);
}

.pkr-ledger__label {
  display: block;
  margin-bottom: 6px;
  color: var(--pkr-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.pkr-ledger__value {
  font-size: 2rem;
  font-family: "DM Serif Display", serif;
  color: var(--pkr-gold);
}

.pkr-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.pkr-heading__title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.pkr-heading__copy {
  max-width: 60ch;
  margin: 12px 0 0;
  color: var(--pkr-muted);
}

.pkr-table-wrap {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid rgba(250, 248, 240, 0.08);
  background: rgba(7, 22, 12, 0.78);
}

.pkr-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.pkr-table th,
.pkr-table td {
  padding: 18px 16px;
  border-bottom: 1px solid rgba(250, 248, 240, 0.08);
  text-align: left;
  vertical-align: top;
}

.pkr-table th {
  background: rgba(250, 248, 240, 0.06);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pkr-sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
  letter-spacing: inherit;
  text-transform: inherit;
}

.pkr-table__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pkr-table__brand img {
  width: 90px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  flex-shrink: 0;
}

.pkr-table__pill,
.pkr-chip,
.pkr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
}

.pkr-table__pill {
  background: rgba(250, 248, 240, 0.08);
}

.pkr-chip {
  background: rgba(220, 38, 38, 0.14);
  
}

.pkr-badge {
  background: rgba(212, 160, 23, 0.2);
  
}

.pkr-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pkr-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  border-left: 8px solid var(--pkr-red);
  background: linear-gradient(180deg, var(--pkr-paper) 0%, #f3eee2 100%);
  color: var(--pkr-ink);
  box-shadow: var(--pkr-shadow);
}

.pkr-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.pkr-logo-wrap {
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.pkr-logo-wrap img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.pkr-card__name {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
}

.pkr-card__rating {
  font-weight: 700;
  color: var(--pkr-red-dark);
}

.pkr-card__text {
  margin: 0;
}

.pkr-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pkr-promo {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fffaf1;
  border: 1px dashed rgba(159, 29, 29, 0.25);
}

.pkr-promo strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pkr-red-dark);
}

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

.pkr-points__box {
  padding: 14px;
  border-radius: 16px;
  background: rgba(19, 16, 12, 0.05);
}

.pkr-points__box h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pkr-points__box ul {
  margin: 0;
  padding-left: 18px;
}

.pkr-points__box li + li {
  margin-top: 6px;
}

.pkr-btn,
.pkr-btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pkr-btn {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.4), transparent 18%),
    linear-gradient(180deg, #f14848 0%, var(--pkr-red) 52%, var(--pkr-red-dark) 100%);
  color: var(--pkr-white-chip);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.16),
    0 12px 0 rgba(122, 21, 21, 0.9),
    0 18px 28px rgba(159, 29, 29, 0.28);
}

.pkr-btn:hover,
.pkr-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.2),
    0 15px 0 rgba(122, 21, 21, 0.9),
    0 22px 32px rgba(159, 29, 29, 0.32);
}

.pkr-btn--ghost {
  background: rgba(19, 16, 12, 0.08);
  color: var(--pkr-ink);
  border: 1px solid rgba(19, 16, 12, 0.14);
}

.pkr-cookie .pkr-btn--ghost {
  color: var(--pkr-text);
  background: rgba(250, 248, 240, 0.08);
  border-color: rgba(250, 248, 240, 0.18);
}

.pkr-age__panel .pkr-btn--ghost,
.pkr-card .pkr-btn--ghost {
  color: var(--pkr-ink);
}

.pkr-note {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: rgba(29, 23, 18, 0.74);
}

.pkr-calc {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
}

.pkr-calc__panel,
.pkr-calc__result,
.pkr-timeline__item,
.pkr-faq__item,
.pkr-safe__panel,
.pkr-about__panel,
.pkr-page__article,
.pkr-contact__panel {
  border-radius: 24px;
  box-shadow: var(--pkr-shadow);
}

.pkr-calc__panel,
.pkr-calc__result,
.pkr-safe__panel,
.pkr-about__panel,
.pkr-page__article,
.pkr-contact__panel {
  padding: 28px;
  background: rgba(8, 27, 15, 0.78);
  border: 1px solid rgba(250, 248, 240, 0.08);
}

.pkr-field {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.pkr-field label {
  font-weight: 700;
}

.pkr-field input,
.pkr-field select,
.pkr-contact__panel input,
.pkr-contact__panel textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(250, 248, 240, 0.16);
  border-radius: 14px;
  background: rgba(250, 248, 240, 0.08);
  color: var(--pkr-text);
}

.pkr-contact__panel textarea {
  min-height: 180px;
  resize: vertical;
}

.pkr-slider__readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pkr-result__grid {
  display: grid;
  gap: 16px;
}

.pkr-result__box {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(250, 248, 240, 0.08);
}

.pkr-result__label {
  display: block;
  color: var(--pkr-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.pkr-result__value {
  display: block;
  margin-top: 6px;
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  color: var(--pkr-gold);
}

.pkr-timeline {
  display: grid;
  gap: 18px;
}

.pkr-timeline__item {
  position: relative;
  padding: 24px 24px 24px 92px;
  background: rgba(8, 27, 15, 0.78);
  border: 1px solid rgba(250, 248, 240, 0.08);
}

.pkr-timeline__item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 39px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(180deg, var(--pkr-gold), rgba(212, 160, 23, 0));
}

.pkr-timeline__item:last-child::before {
  display: none;
}

.pkr-timeline__step {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pkr-red);
  color: var(--pkr-white-chip);
  font-family: "DM Serif Display", serif;
  font-size: 1.15rem;
}

.pkr-timeline__title {
  margin: 0 0 10px;
  font-family: "DM Serif Display", serif;
  font-size: 1.55rem;
}

.pkr-faq {
  display: grid;
  gap: 14px;
}

.pkr-faq__item {
  background: rgba(8, 27, 15, 0.78);
  border: 1px solid rgba(250, 248, 240, 0.08);
  overflow: hidden;
}

.pkr-faq__button {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font-weight: 700;
}

.pkr-faq__icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.pkr-faq__button[aria-expanded="true"] .pkr-faq__icon {
  transform: rotate(45deg);
}

.pkr-faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.pkr-faq__content-inner {
  padding: 0 24px 24px;
  color: var(--pkr-muted);
}

.pkr-safe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 24px;
}

.pkr-safe__list {
  display: grid;
  gap: 14px;
}

.pkr-safe__item {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(250, 248, 240, 0.08);
}

.pkr-safe__tick {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(220, 38, 38, 0.2);
  color: #ffdede;
  font-weight: 700;
}

.pkr-safe__links {
  display: grid;
  gap: 12px;
}

.pkr-safe__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border-radius: 16px;
  background: rgba(250, 248, 240, 0.08);
}

.pkr-about__panel p,
.pkr-page__article p,
.pkr-contact__panel p,
.pkr-timeline__item p,
.pkr-safe__panel p {
  color: var(--pkr-muted);
}

.pkr-page {
  padding-top: 42px;
}

.pkr-page__hero {
  padding: 34px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(250, 248, 240, 0.12), rgba(250, 248, 240, 0.06));
  border: 1px solid rgba(250, 248, 240, 0.08);
  box-shadow: var(--pkr-shadow);
}

.pkr-page__kicker {
  margin: 0 0 14px;
  color: #ffe4b2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.pkr-page__lede {
  max-width: 64ch;
  margin-top: 16px;
  color: var(--pkr-muted);
}

.pkr-page__article {
  margin-top: 28px;
}

.pkr-page__article h2 {
  margin-top: 0;
  font-family: "DM Serif Display", serif;
  font-size: 1.85rem;
}

.pkr-page__article h3 {
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
}

.pkr-page__article section + section {
  margin-top: 28px;
}

.pkr-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.pkr-contact__aside {
  display: grid;
  gap: 18px;
}

.pkr-contact__card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(250, 248, 240, 0.09);
  border: 1px solid rgba(250, 248, 240, 0.08);
}

.pkr-contact__card h2 {
  margin-top: 0;
  font-family: "DM Serif Display", serif;
}

.pkr-contact__grid {
  display: grid;
  gap: 16px;
}

.pkr-contact__grid label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.pkr-foot {
  padding: 0 0 38px;
}

.pkr-foot__panel {
  padding: 30px;
  border-radius: 28px;
  background: rgba(6, 20, 12, 0.92);
  border: 1px solid rgba(250, 248, 240, 0.1);
  box-shadow: var(--pkr-shadow);
}

.pkr-foot__trust {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 24px;
  margin-bottom: 22px;
}

.pkr-foot__title {
  margin: 0 0 12px;
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
}

.pkr-foot__seal-row,
.pkr-foot__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.pkr-foot__seal {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(250, 248, 240, 0.08);
}

.pkr-foot__legal {
  padding-top: 18px;
  border-top: 1px solid rgba(250, 248, 240, 0.08);
  color: var(--pkr-muted);
}

.pkr-foot__legal a {
  text-decoration: underline;
  text-decoration-color: rgba(250, 248, 240, 0.32);
  text-underline-offset: 3px;
}

.pkr-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--pkr-red);
  color: var(--pkr-white-chip);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.pkr-to-top.pkr-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .pkr-editorial,
  .pkr-cards,
  .pkr-safe,
  .pkr-calc,
  .pkr-contact,
  .pkr-foot__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pkr-cards article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .pkr-nav {
    display: none;
  }

  .pkr-menu-toggle {
    display: inline-flex;
  }

  .pkr-editorial,
  .pkr-ledger,
  .pkr-cards,
  .pkr-safe,
  .pkr-calc,
  .pkr-contact,
  .pkr-foot__trust {
    grid-template-columns: 1fr;
  }

  .pkr-cards article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .pkr-shell {
    width: min(100% - 20px, var(--pkr-max));
  }

  .pkr-topbar__row {
    min-height: 74px;
  }

  .pkr-paper-panel,
  .pkr-page__hero,
  .pkr-calc__panel,
  .pkr-calc__result,
  .pkr-safe__panel,
  .pkr-about__panel,
  .pkr-page__article,
  .pkr-contact__panel,
  .pkr-foot__panel,
  .pkr-age__panel {
    padding: 22px;
  }

  .pkr-hero__headline {
    font-size: 2.55rem;
  }

  .pkr-heading {
    display: block;
  }

  .pkr-card__top,
  .pkr-cookie__row,
  .pkr-slider__readout {
    display: block;
  }

  .pkr-cookie__actions,
  .pkr-age__actions {
    margin-top: 12px;
  }

  .pkr-points {
    grid-template-columns: 1fr;
  }

  .pkr-timeline__item {
    padding: 78px 18px 22px;
  }

  .pkr-timeline__item::before {
    left: 39px;
    top: 62px;
  }

  .pkr-timeline__step {
    left: 18px;
    top: 18px;
  }

  .pkr-foot__legal {
    display: grid;
  }
}
