:root {
  --gdpro-plat-ink: #142019;
  --gdpro-plat-ink-2: #1B2A22;
  --gdpro-plat-ink-3: #243A2F;
  --gdpro-plat-paper: #ECE4D0;
  --gdpro-plat-paper-2: #E0D5B8;
  --gdpro-plat-text: #1C1F19;
  --gdpro-plat-text-light: #F4EFDF;
  --gdpro-plat-muted: #5C5A4C;
  --gdpro-plat-muted-light: #BFC2B0;
  --gdpro-plat-gold: #D9AE5C;
  --gdpro-plat-gold-dark: #B07F2A;
  --gdpro-plat-wine: #5B1F28;
  --gdpro-plat-line: rgba(28, 31, 25, 0.14);
  --gdpro-plat-line-dark: rgba(244, 239, 223, 0.14);
  --gdpro-plat-maxw: 1180px;
  --gdpro-plat-display: 'Fraunces', serif;
  --gdpro-plat-body: 'Public Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --gdpro-plat-mono: 'IBM Plex Mono', monospace;
  --gdpro-plat-ease: cubic-bezier(.2, .7, .2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--gdpro-plat-body);
  color: var(--gdpro-plat-text);
  background: var(--gdpro-plat-paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--gdpro-plat-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

.gdpro-plat-wrap {
  max-width: var(--gdpro-plat-maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.gdpro-plat-header {
  background: var(--gdpro-plat-ink);
  border-bottom: 1px solid var(--gdpro-plat-line-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.gdpro-plat-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.gdpro-plat-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gdpro-plat-text-light);
  font-family: var(--gdpro-plat-display);
  font-size: 19px;
  font-weight: 700;
}

.gdpro-plat-logo span {
  color: var(--gdpro-plat-gold);
}

.gdpro-plat-logo__seal {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.gdpro-plat-back {
  font-family: var(--gdpro-plat-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gdpro-plat-muted-light);
  padding: 8px 14px;
  border: 1px solid var(--gdpro-plat-line-dark);
  transition: color .15s, border-color .15s;
}

.gdpro-plat-back:hover {
  color: var(--gdpro-plat-gold);
  border-color: var(--gdpro-plat-gold);
}

.gdpro-plat-hero {
  background: var(--gdpro-plat-ink);
  color: var(--gdpro-plat-text-light);
  background-image:
    repeating-radial-gradient(circle at 18% 24%, rgba(217, 174, 92, 0.07) 0px, rgba(217, 174, 92, 0.07) 1px, transparent 1.6px, transparent 13px),
    repeating-radial-gradient(circle at 86% 78%, rgba(217, 174, 92, 0.05) 0px, rgba(217, 174, 92, 0.05) 1px, transparent 1.6px, transparent 17px);
}

.gdpro-plat-hero__inner {
  padding: 48px 0 56px;
}

.gdpro-plat-crumb {
  font-family: var(--gdpro-plat-mono);
  font-size: 11px;
  color: var(--gdpro-plat-muted-light);
  margin-bottom: 28px;
}

.gdpro-plat-crumb a {
  color: var(--gdpro-plat-gold);
}

.gdpro-plat-crumb a:hover {
  text-decoration: underline;
}

.gdpro-plat-hero__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 32px;
  margin-bottom: 28px;
}

.gdpro-plat-hero__logo {
  height: 64px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.gdpro-plat-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gdpro-plat-badge {
  font-family: var(--gdpro-plat-mono);
  font-size: 10.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.gdpro-plat-badge--gold {
  background: var(--gdpro-plat-gold);
  color: var(--gdpro-plat-ink);
}

.gdpro-plat-badge--outline {
  border: 1px solid var(--gdpro-plat-line-dark);
  color: var(--gdpro-plat-muted-light);
}

.gdpro-plat-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  color: var(--gdpro-plat-text-light);
  max-width: 780px;
  margin-bottom: 18px;
}

.gdpro-plat-hero__lead {
  font-size: 16.5px;
  color: var(--gdpro-plat-muted-light);
  max-width: 720px;
  line-height: 1.65;
}

.gdpro-plat-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--gdpro-plat-line-dark);
}

.gdpro-plat-fact__val {
  display: block;
  font-family: var(--gdpro-plat-display);
  font-size: 22px;
  color: var(--gdpro-plat-gold);
  font-weight: 700;
}

.gdpro-plat-fact__lbl {
  font-family: var(--gdpro-plat-mono);
  font-size: 11px;
  color: var(--gdpro-plat-muted-light);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.gdpro-plat-ribbon {
  background: var(--gdpro-plat-paper-2);
  border-bottom: 1px solid var(--gdpro-plat-line);
  padding: 14px 0;
  font-size: 13px;
  color: var(--gdpro-plat-muted);
}

.gdpro-plat-ribbon strong {
  color: var(--gdpro-plat-wine);
}

.gdpro-plat-body {
  padding: 56px 0 72px;
}

.gdpro-plat-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.gdpro-plat-main {
  min-width: 0;
}

.gdpro-plat-section {
  margin-bottom: 48px;
}

.gdpro-plat-section h2 {
  font-size: 26px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gdpro-plat-ink);
}

.gdpro-plat-section h3 {
  font-size: 18px;
  margin: 28px 0 12px;
  color: var(--gdpro-plat-ink-3);
}

.gdpro-plat-section p {
  font-size: 15.5px;
  color: var(--gdpro-plat-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.gdpro-plat-section p:last-child {
  margin-bottom: 0;
}

.gdpro-plat-list {
  margin: 16px 0;
}

.gdpro-plat-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--gdpro-plat-muted);
  margin-bottom: 10px;
  line-height: 1.65;
}

.gdpro-plat-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gdpro-plat-gold);
  border-radius: 1px;
}

.gdpro-plat-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--gdpro-plat-line);
}

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

.gdpro-plat-table th,
.gdpro-plat-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gdpro-plat-line);
}

.gdpro-plat-table th {
  font-family: var(--gdpro-plat-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  background: var(--gdpro-plat-paper-2);
  color: var(--gdpro-plat-text);
}

.gdpro-plat-table td {
  color: var(--gdpro-plat-muted);
}

.gdpro-plat-callout {
  background: var(--gdpro-plat-paper-2);
  border-left: 3px solid var(--gdpro-plat-wine);
  padding: 20px 22px;
  margin: 24px 0;
}

.gdpro-plat-callout p {
  font-size: 14.5px;
  margin: 0;
}

.gdpro-plat-callout strong {
  color: var(--gdpro-plat-wine);
}

.gdpro-plat-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.gdpro-plat-box {
  border: 1px solid var(--gdpro-plat-line);
  padding: 22px;
  background: #fff;
}

.gdpro-plat-box h4 {
  font-size: 14px;
  font-family: var(--gdpro-plat-mono);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.gdpro-plat-box--pro h4 { color: var(--gdpro-plat-ink-3); }
.gdpro-plat-box--con h4 { color: var(--gdpro-plat-wine); }

.gdpro-plat-box li {
  font-size: 14px;
  color: var(--gdpro-plat-muted);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.55;
}

.gdpro-plat-box--pro li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gdpro-plat-gold-dark);
  font-weight: 700;
}

.gdpro-plat-box--con li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gdpro-plat-wine);
  font-weight: 700;
}

.gdpro-plat-aside {
  position: sticky;
  top: 94px;
}

.gdpro-plat-panel {
  background: var(--gdpro-plat-ink-2);
  border: 1px solid var(--gdpro-plat-line-dark);
  color: var(--gdpro-plat-text-light);
  padding: 26px 24px;
  margin-bottom: 20px;
}

.gdpro-plat-panel h3 {
  font-size: 17px;
  color: var(--gdpro-plat-text-light);
  margin-bottom: 16px;
}

.gdpro-plat-panel__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gdpro-plat-line-dark);
  color: var(--gdpro-plat-muted-light);
}

.gdpro-plat-panel__row span:last-child {
  color: var(--gdpro-plat-text-light);
  text-align: right;
  font-weight: 600;
}

.gdpro-plat-panel__row:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.gdpro-plat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--gdpro-plat-body);
  border: 1px solid transparent;
  transition: background .18s, transform .18s;
  margin-bottom: 10px;
}

.gdpro-plat-btn:last-child {
  margin-bottom: 0;
}

.gdpro-plat-btn--primary {
  background: var(--gdpro-plat-gold);
  color: var(--gdpro-plat-ink);
}

.gdpro-plat-btn--primary:hover {
  background: #E8C47A;
  transform: translateY(-1px);
}

.gdpro-plat-btn--ghost {
  background: transparent;
  color: var(--gdpro-plat-muted-light);
  border-color: var(--gdpro-plat-line-dark);
}

.gdpro-plat-btn--ghost:hover {
  border-color: var(--gdpro-plat-gold);
  color: var(--gdpro-plat-gold);
}

.gdpro-plat-toc {
  background: #fff;
  border: 1px solid var(--gdpro-plat-line);
  padding: 22px 20px;
}

.gdpro-plat-toc h3 {
  font-size: 13px;
  font-family: var(--gdpro-plat-mono);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.gdpro-plat-toc a {
  display: block;
  font-size: 13.5px;
  color: var(--gdpro-plat-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--gdpro-plat-line);
  transition: color .15s;
}

.gdpro-plat-toc a:last-child {
  border-bottom: none;
}

.gdpro-plat-toc a:hover {
  color: var(--gdpro-plat-wine);
}

.gdpro-plat-footer {
  background: var(--gdpro-plat-ink);
  color: var(--gdpro-plat-muted-light);
  padding: 40px 0 28px;
  font-size: 12.5px;
}

.gdpro-plat-footer p {
  max-width: 720px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.gdpro-plat-footer a {
  color: var(--gdpro-plat-gold);
}

.gdpro-plat-footer a:hover {
  text-decoration: underline;
}

.gdpro-plat-footer__bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gdpro-plat-line-dark);
  font-family: var(--gdpro-plat-mono);
  font-size: 11px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

@media (max-width: 980px) {
  .gdpro-plat-layout {
    grid-template-columns: 1fr;
  }

  .gdpro-plat-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .gdpro-plat-proscons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gdpro-plat-wrap {
    padding: 0 20px;
  }

  .gdpro-plat-aside {
    grid-template-columns: 1fr;
  }

  .gdpro-plat-hero__facts {
    gap: 20px;
  }
}
