@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400;0,600;1,400&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

:root {
  --pml-ink: #0E1425;
  --pml-ink-alt: #151E38;
  --pml-ink-muted: #3A4460;
  --pml-parchment: #F7F4EE;
  --pml-parchment-alt: #EDE9DC;
  --pml-parchment-mid: #D9D4C5;
  --pml-amber: #C4782A;
  --pml-amber-dark: #8B5210;
  --pml-amber-light: #E8A75A;
  --pml-teal: #1A7A6E;
  --pml-teal-light: #2CA898;
  --pml-teal-bg: #0D4A43;
  --pml-white: #FFFFFF;
  --pml-cream-text: #E8E4DA;
  --pml-cream-muted: #A8A29A;

  --pml-nav-h: 64px;

  --pml-font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --pml-font-sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;

  --pml-r-sm: 4px;
  --pml-r-md: 8px;
  --pml-r-lg: 12px;

  --pml-shadow-sm: 0 1px 3px rgba(14,20,37,0.12);
  --pml-shadow-md: 0 4px 16px rgba(14,20,37,0.16);
  --pml-shadow-lg: 0 8px 32px rgba(14,20,37,0.22);

  --pml-transition: 200ms ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--pml-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pml-ink);
  background: var(--pml-parchment);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

.pml-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .pml-container { padding: 0 24px; }
}

@media (max-width: 480px) {
  .pml-container { padding: 0 16px; }
}

.pml-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pml-font-serif);
  line-height: 1.2;
  font-weight: 600;
}

.pml-eyebrow {
  font-family: var(--pml-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pml-amber-dark);
}

.pml-page--dark-top {
  background: var(--pml-ink);
}

.pml-page--light-top {
  background: var(--pml-parchment);
}

.pml-section-title {
  font-family: var(--pml-font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.18;
}

.pml-section-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--pml-ink-muted);
  max-width: 640px;
}

.pml-section-lead--centered {
  margin: 0 auto;
  text-align: center;
}

.pml-section-header {
  margin-bottom: 56px;
}

.pml-section-header--centered {
  text-align: center;
}

.pml-section-header .pml-eyebrow { margin-bottom: 12px; }
.pml-section-header .pml-section-title { margin-bottom: 16px; }

.pml-section {
  padding: 96px 0;
}

.pml-section--sm {
  padding: 64px 0;
}

.pml-section--lg {
  padding: 120px 0;
}

.pml-section--dark {
  background: var(--pml-ink);
  color: var(--pml-cream-text);
}

.pml-section--dark .pml-section-lead {
  color: var(--pml-cream-muted);
}

.pml-section--dark .pml-eyebrow {
  color: var(--pml-amber-light);
}

.pml-section--dark-alt {
  background: var(--pml-ink-alt);
  color: var(--pml-cream-text);
}

.pml-section--dark-alt .pml-section-lead {
  color: var(--pml-cream-muted);
}

.pml-section--dark-alt .pml-eyebrow {
  color: var(--pml-amber-light);
}

.pml-section--cream {
  background: var(--pml-parchment);
  color: var(--pml-ink);
}

.pml-section--parchment-alt {
  background: var(--pml-parchment-alt);
  color: var(--pml-ink);
}

.pml-section--white {
  background: var(--pml-white);
  color: var(--pml-ink);
}

.pml-section--teal {
  background: var(--pml-teal-bg);
  color: var(--pml-cream-text);
}

.pml-section--teal .pml-eyebrow {
  color: var(--pml-teal-light);
}

.pml-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--pml-nav-h);
  background: var(--pml-ink);
  z-index: 1000;
  border-bottom: 1px solid rgba(232,228,218,0.08);
  transition: background var(--pml-transition), border-color var(--pml-transition);
}

.pml-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.pml-nav .pml-container {
  height: 100%;
}

.pml-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pml-nav__logo img {
  height: 28px;
  width: auto;
  display: block;
}

.pml-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pml-nav__link {
  font-family: var(--pml-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--pml-cream-text);
  padding: 8px 14px;
  border-radius: var(--pml-r-sm);
  transition: color var(--pml-transition), background var(--pml-transition);
  white-space: nowrap;
}

.pml-nav__link:hover {
  color: var(--pml-amber-light);
  background: rgba(232,228,218,0.06);
}

.pml-nav__link--active {
  color: var(--pml-amber-light);
}

.pml-nav__dropdown {
  position: relative;
}

.pml-nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--pml-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--pml-cream-text);
  padding: 8px 14px;
  border-radius: var(--pml-r-sm);
  transition: color var(--pml-transition), background var(--pml-transition);
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap;
}

.pml-nav__dropdown-toggle:hover {
  color: var(--pml-amber-light);
  background: rgba(232,228,218,0.06);
}

.pml-nav__dropdown-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--pml-transition);
  flex-shrink: 0;
}

.pml-nav__dropdown.is-open .pml-nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.pml-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--pml-ink-alt);
  border: 1px solid rgba(232,228,218,0.1);
  border-radius: var(--pml-r-md);
  min-width: 220px;
  padding: 8px;
  box-shadow: var(--pml-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--pml-transition), visibility var(--pml-transition), transform var(--pml-transition);
}

.pml-nav__dropdown.is-open .pml-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pml-nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--pml-cream-text);
  border-radius: var(--pml-r-sm);
  transition: background var(--pml-transition), color var(--pml-transition);
  line-height: 1.4;
}

.pml-nav__dropdown-item:hover {
  background: rgba(232,228,218,0.08);
  color: var(--pml-amber-light);
}

.pml-nav__dropdown-item-label {
  font-weight: 500;
  display: block;
}

.pml-nav__dropdown-item-desc {
  font-size: 12px;
  color: var(--pml-cream-muted);
  display: block;
  margin-top: 2px;
}

.pml-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.pml-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: none;
  background: none;
}

.pml-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pml-cream-text);
  border-radius: 2px;
  transition: transform var(--pml-transition), opacity var(--pml-transition);
}

.pml-nav.is-mobile-open .pml-nav__hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pml-nav.is-mobile-open .pml-nav__hamburger span:nth-child(2) {
  opacity: 0;
}

.pml-nav.is-mobile-open .pml-nav__hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.pml-nav__mobile {
  display: none;
  position: absolute;
  top: var(--pml-nav-h);
  left: 0;
  right: 0;
  background: var(--pml-ink);
  border-top: 1px solid rgba(232,228,218,0.08);
  padding: 16px 0;
  max-height: calc(100vh - var(--pml-nav-h));
  overflow-y: auto;
}

.pml-nav.is-mobile-open .pml-nav__mobile {
  display: block;
}

.pml-nav__mobile-link {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--pml-cream-text);
  transition: background var(--pml-transition), color var(--pml-transition);
}

.pml-nav__mobile-link:hover {
  background: rgba(232,228,218,0.06);
  color: var(--pml-amber-light);
}

.pml-nav__mobile-section {
  padding: 8px 24px 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pml-cream-muted);
}

.pml-nav__mobile-divider {
  height: 1px;
  background: rgba(232,228,218,0.08);
  margin: 8px 24px;
}

.pml-nav__mobile-actions {
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 900px) {
  .pml-nav__links,
  .pml-nav__actions { display: none; }
  .pml-nav__hamburger { display: flex; }
}

.pml-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--pml-font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 20px;
  border-radius: var(--pml-r-sm);
  border: 2px solid transparent;
  transition: background var(--pml-transition), color var(--pml-transition), border-color var(--pml-transition), transform var(--pml-transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.pml-btn:hover { transform: translateY(-1px); }
.pml-btn:active { transform: translateY(0); }

.pml-btn--primary {
  background: var(--pml-amber);
  color: var(--pml-ink);
  border-color: var(--pml-amber);
}

.pml-btn--primary:hover {
  background: var(--pml-amber-light);
  border-color: var(--pml-amber-light);
  color: var(--pml-ink);
}

.pml-btn--secondary {
  background: transparent;
  color: var(--pml-ink);
  border-color: var(--pml-ink);
}

.pml-btn--secondary:hover {
  background: var(--pml-ink);
  color: var(--pml-white);
}

.pml-btn--ghost {
  background: transparent;
  color: var(--pml-cream-text);
  border-color: rgba(232,228,218,0.3);
}

.pml-btn--ghost:hover {
  background: rgba(232,228,218,0.08);
  border-color: rgba(232,228,218,0.5);
  color: var(--pml-cream-text);
}

.pml-btn--ghost-dark {
  background: transparent;
  color: var(--pml-ink);
  border-color: rgba(14,20,37,0.3);
}

.pml-btn--ghost-dark:hover {
  background: var(--pml-ink);
  color: var(--pml-white);
  border-color: var(--pml-ink);
}

.pml-btn--teal {
  background: var(--pml-teal);
  color: var(--pml-white);
  border-color: var(--pml-teal);
}

.pml-btn--teal:hover {
  background: var(--pml-teal-bg);
  border-color: var(--pml-teal-bg);
}

.pml-btn--lg {
  font-size: 16px;
  padding: 14px 28px;
}

.pml-btn--sm {
  font-size: 13px;
  padding: 8px 16px;
}

.pml-btn--full { width: 100%; }

.pml-page-body {
  padding-top: var(--pml-nav-h);
}

.pml-hero {
  background: var(--pml-ink);
  color: var(--pml-cream-text);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.pml-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 40%, rgba(196,120,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pml-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.pml-hero__text { max-width: 560px; }

.pml-hero__text .pml-eyebrow {
  color: var(--pml-amber-light);
  margin-bottom: 16px;
}

.pml-hero__h1 {
  font-family: var(--pml-font-serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--pml-cream-text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.pml-hero__sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--pml-cream-muted);
  margin-bottom: 36px;
  max-width: 500px;
}

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

.pml-hero__visual {
  position: relative;
}

.pml-hero__mock {
  background: var(--pml-ink-alt);
  border: 1px solid rgba(232,228,218,0.12);
  border-radius: var(--pml-r-lg);
  overflow: hidden;
  box-shadow: var(--pml-shadow-lg);
}

.pml-hero__mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(232,228,218,0.04);
  border-bottom: 1px solid rgba(232,228,218,0.08);
}

.pml-hero__mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pml-hero__mock-dot--red { background: #FF5F57; }
.pml-hero__mock-dot--yellow { background: #FFBD2E; }
.pml-hero__mock-dot--green { background: #28CA41; }

.pml-hero__mock-title {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--pml-cream-muted);
  letter-spacing: 0.02em;
}

.pml-hero__mock-body {
  padding: 20px;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 12px;
}

.pml-trace-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(232,228,218,0.06);
}

.pml-trace-row:last-child { border-bottom: none; }

.pml-trace-row__icon {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pml-trace-row__icon--verified {
  background: rgba(26,122,110,0.2);
  color: var(--pml-teal-light);
}

.pml-trace-row__icon--pending {
  background: rgba(196,120,42,0.18);
  color: var(--pml-amber-light);
}

.pml-trace-row__icon--source {
  background: rgba(58,68,96,0.4);
  color: var(--pml-cream-muted);
}

.pml-trace-row__content { flex: 1; min-width: 0; }

.pml-trace-row__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--pml-cream-text);
  line-height: 1.4;
}

.pml-trace-row__meta {
  font-size: 11px;
  color: var(--pml-cream-muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pml-trace-row__badge {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 99px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pml-trace-row__badge--verified {
  background: rgba(26,122,110,0.2);
  color: var(--pml-teal-light);
}

.pml-trace-row__badge--traced {
  background: rgba(196,120,42,0.2);
  color: var(--pml-amber-light);
}

.pml-trace-row__badge--source {
  background: rgba(58,68,96,0.4);
  color: var(--pml-cream-muted);
}

@media (max-width: 900px) {
  .pml-hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .pml-hero__text { max-width: 100%; }
  .pml-hero { padding: 72px 0 64px; }
}

@media (max-width: 480px) {
  .pml-hero { padding: 56px 0 48px; }
  .pml-hero__actions { flex-direction: column; }
  .pml-hero__actions .pml-btn { width: 100%; justify-content: center; }
}

.pml-stats {
  background: var(--pml-amber-dark);
  color: var(--pml-white);
  padding: 0;
}

.pml-stats__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.15);
}

.pml-stats__item {
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.18);
}

.pml-stats__item:last-child { border-right: none; }

.pml-stats__number {
  font-family: var(--pml-font-serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--pml-white);
  line-height: 1;
  margin-bottom: 8px;
}

.pml-stats__label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .pml-stats__inner { grid-template-columns: 1fr; }
  .pml-stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); padding: 32px 24px; }
  .pml-stats__item:last-child { border-bottom: none; }
}

.pml-how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pml-step {
  position: relative;
}

.pml-step__number {
  font-family: var(--pml-font-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--pml-amber);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pml-step__number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(196,120,42,0.25);
}

.pml-step__icon {
  width: 48px;
  height: 48px;
  background: rgba(196,120,42,0.1);
  border-radius: var(--pml-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pml-amber);
  font-size: 22px;
  margin-bottom: 16px;
}

.pml-section--dark .pml-step__icon,
.pml-section--dark-alt .pml-step__icon {
  background: rgba(196,120,42,0.15);
}

.pml-step__title {
  font-family: var(--pml-font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--pml-cream-text);
}

.pml-section--cream .pml-step__title,
.pml-section--parchment-alt .pml-step__title,
.pml-section--white .pml-step__title {
  color: var(--pml-ink);
}

.pml-step__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--pml-cream-muted);
}

.pml-section--cream .pml-step__body,
.pml-section--parchment-alt .pml-step__body,
.pml-section--white .pml-step__body {
  color: var(--pml-ink-muted);
}

@media (max-width: 768px) {
  .pml-how-it-works__steps { grid-template-columns: 1fr; gap: 24px; }
}

.pml-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pml-feature-card {
  padding: 32px;
  border-radius: var(--pml-r-lg);
  border: 1px solid rgba(196,120,42,0.15);
  background: var(--pml-white);
  transition: box-shadow var(--pml-transition), border-color var(--pml-transition);
}

.pml-feature-card:hover {
  box-shadow: var(--pml-shadow-md);
  border-color: rgba(196,120,42,0.3);
}

.pml-section--dark .pml-feature-card,
.pml-section--dark-alt .pml-feature-card {
  background: rgba(232,228,218,0.04);
  border-color: rgba(232,228,218,0.08);
}

.pml-section--dark .pml-feature-card:hover,
.pml-section--dark-alt .pml-feature-card:hover {
  background: rgba(232,228,218,0.07);
  border-color: rgba(196,120,42,0.3);
  box-shadow: none;
}

.pml-feature-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(196,120,42,0.1);
  border-radius: var(--pml-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pml-amber);
  font-size: 20px;
  margin-bottom: 16px;
}

.pml-section--dark .pml-feature-card__icon,
.pml-section--dark-alt .pml-feature-card__icon {
  background: rgba(196,120,42,0.15);
}

.pml-feature-card__title {
  font-family: var(--pml-font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--pml-ink);
}

.pml-section--dark .pml-feature-card__title,
.pml-section--dark-alt .pml-feature-card__title {
  color: var(--pml-cream-text);
}

.pml-feature-card__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--pml-ink-muted);
}

.pml-section--dark .pml-feature-card__body,
.pml-section--dark-alt .pml-feature-card__body {
  color: var(--pml-cream-muted);
}

@media (max-width: 640px) {
  .pml-features-grid { grid-template-columns: 1fr; }
}

.pml-use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pml-use-case-card {
  padding: 28px;
  border-radius: var(--pml-r-lg);
  background: rgba(232,228,218,0.05);
  border: 1px solid rgba(232,228,218,0.1);
  transition: border-color var(--pml-transition), background var(--pml-transition);
}

.pml-use-case-card:hover {
  background: rgba(232,228,218,0.09);
  border-color: rgba(196,120,42,0.3);
}

.pml-section--cream .pml-use-case-card,
.pml-section--parchment-alt .pml-use-case-card {
  background: var(--pml-white);
  border-color: rgba(14,20,37,0.08);
}

.pml-section--cream .pml-use-case-card:hover,
.pml-section--parchment-alt .pml-use-case-card:hover {
  border-color: var(--pml-amber);
  box-shadow: var(--pml-shadow-sm);
}

.pml-use-case-card__icon {
  font-size: 24px;
  color: var(--pml-amber);
  margin-bottom: 14px;
}

.pml-section--cream .pml-use-case-card__icon,
.pml-section--parchment-alt .pml-use-case-card__icon {
  color: var(--pml-amber);
}

.pml-use-case-card__title {
  font-family: var(--pml-font-serif);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--pml-cream-text);
}

.pml-section--cream .pml-use-case-card__title,
.pml-section--parchment-alt .pml-use-case-card__title {
  color: var(--pml-ink);
}

.pml-use-case-card__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--pml-cream-muted);
}

.pml-section--cream .pml-use-case-card__body,
.pml-section--parchment-alt .pml-use-case-card__body {
  color: var(--pml-ink-muted);
}

.pml-section--white .pml-use-case-card {
  background: var(--pml-white);
  border-color: rgba(14,20,37,0.08);
}

.pml-section--white .pml-use-case-card:hover {
  border-color: var(--pml-amber);
  box-shadow: var(--pml-shadow-sm);
}

.pml-section--white .pml-use-case-card__title {
  color: var(--pml-ink);
}

.pml-section--white .pml-use-case-card__body {
  color: var(--pml-ink-muted);
}

@media (max-width: 768px) {
  .pml-use-cases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .pml-use-cases-grid { grid-template-columns: 1fr; }
}

.pml-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pml-testimonial {
  padding: 36px;
  border-radius: var(--pml-r-lg);
  background: rgba(232,228,218,0.05);
  border: 1px solid rgba(232,228,218,0.1);
  position: relative;
}

.pml-testimonial::before {
  content: '\201C';
  font-family: var(--pml-font-serif);
  font-size: 64px;
  line-height: 1;
  color: var(--pml-amber);
  opacity: 0.4;
  position: absolute;
  top: 20px;
  left: 32px;
}

.pml-section--cream .pml-testimonial,
.pml-section--parchment-alt .pml-testimonial {
  background: var(--pml-white);
  border-color: rgba(14,20,37,0.08);
}

.pml-testimonial__quote {
  font-family: var(--pml-font-serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--pml-cream-text);
  margin-bottom: 24px;
  padding-top: 24px;
  position: relative;
  z-index: 1;
}

.pml-section--cream .pml-testimonial__quote,
.pml-section--parchment-alt .pml-testimonial__quote {
  color: var(--pml-ink);
}

.pml-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pml-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pml-ink-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--pml-amber-light);
  flex-shrink: 0;
  overflow: hidden;
}

.pml-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.pml-testimonial__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--pml-cream-text);
}

.pml-section--cream .pml-testimonial__name,
.pml-section--parchment-alt .pml-testimonial__name {
  color: var(--pml-ink);
}

.pml-testimonial__role {
  font-size: 13px;
  color: var(--pml-cream-muted);
}

.pml-section--cream .pml-testimonial__role,
.pml-section--parchment-alt .pml-testimonial__role {
  color: var(--pml-ink-muted);
}

@media (max-width: 640px) {
  .pml-testimonials-grid { grid-template-columns: 1fr; }
}

.pml-pricing-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pml-pricing-card {
  border-radius: var(--pml-r-lg);
  padding: 36px 32px;
  border: 2px solid transparent;
  transition: border-color var(--pml-transition), transform var(--pml-transition);
  background: var(--pml-white);
}

.pml-pricing-card:hover { transform: translateY(-3px); }

.pml-pricing-card--featured {
  background: var(--pml-ink);
  color: var(--pml-cream-text);
  border-color: var(--pml-amber);
  position: relative;
}

.pml-pricing-card--standard {
  background: var(--pml-parchment);
  border-color: rgba(14,20,37,0.1);
}

.pml-pricing-card--enterprise {
  background: var(--pml-parchment-alt);
  border-color: rgba(14,20,37,0.1);
}

.pml-pricing-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--pml-amber-dark);
  color: var(--pml-white);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.pml-pricing-card__tier {
  font-family: var(--pml-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pml-amber-dark);
  margin-bottom: 8px;
}

.pml-pricing-card--featured .pml-pricing-card__tier {
  color: var(--pml-amber-light);
}

.pml-pricing-card__price {
  font-family: var(--pml-font-serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--pml-ink);
  line-height: 1.1;
  margin-bottom: 4px;
}

.pml-pricing-card--featured .pml-pricing-card__price {
  color: var(--pml-cream-text);
}

.pml-pricing-card__price-note {
  font-size: 14px;
  color: var(--pml-ink-muted);
  margin-bottom: 24px;
}

.pml-pricing-card--featured .pml-pricing-card__price-note {
  color: var(--pml-cream-muted);
}

.pml-pricing-card__divider {
  height: 1px;
  background: rgba(14,20,37,0.1);
  margin: 24px 0;
}

.pml-pricing-card--featured .pml-pricing-card__divider {
  background: rgba(232,228,218,0.1);
}

.pml-pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pml-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--pml-ink-muted);
  line-height: 1.45;
}

.pml-pricing-card--featured .pml-pricing-card__feature {
  color: var(--pml-cream-muted);
}

.pml-pricing-card__feature-icon {
  color: var(--pml-teal);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pml-pricing-card--featured .pml-pricing-card__feature-icon {
  color: var(--pml-teal-light);
}

.pml-pricing-card__desc {
  font-size: 15px;
  color: var(--pml-ink-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pml-pricing-card--featured .pml-pricing-card__desc {
  color: var(--pml-cream-muted);
}

@media (max-width: 768px) {
  .pml-pricing-teaser { grid-template-columns: 1fr; }
}

.pml-cta-band {
  background: var(--pml-ink-alt);
  color: var(--pml-cream-text);
  padding: 80px 0;
}

.pml-cta-band__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.pml-cta-band__title {
  font-family: var(--pml-font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--pml-cream-text);
}

.pml-cta-band__body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--pml-cream-muted);
  margin-bottom: 32px;
}

.pml-cta-band__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.pml-footer {
  background: var(--pml-ink);
  color: var(--pml-cream-text);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(232,228,218,0.06);
}

.pml-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.pml-footer__brand-tagline {
  font-size: 14px;
  color: var(--pml-cream-muted);
  line-height: 1.6;
  margin-top: 14px;
  max-width: 260px;
}

.pml-footer__logo { margin-bottom: 0; }

.pml-footer__col-title {
  font-family: var(--pml-font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pml-cream-muted);
  margin-bottom: 16px;
}

.pml-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pml-footer__link {
  font-size: 14px;
  color: rgba(232,228,218,0.7);
  transition: color var(--pml-transition);
  line-height: 1.4;
}

.pml-footer__link:hover {
  color: var(--pml-amber-light);
}

.pml-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(232,228,218,0.08);
  flex-wrap: wrap;
  gap: 12px;
}

.pml-footer__copyright {
  font-size: 13px;
  color: var(--pml-cream-muted);
}

.pml-footer__legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pml-footer__legal-link {
  font-size: 13px;
  color: var(--pml-cream-muted);
  transition: color var(--pml-transition);
}

.pml-footer__legal-link:hover {
  color: var(--pml-amber-light);
}

@media (max-width: 900px) {
  .pml-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .pml-footer__grid { grid-template-columns: 1fr; }
  .pml-footer__bottom { flex-direction: column; align-items: flex-start; }
}

.pml-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.pml-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pml-subhero {
  background: var(--pml-ink);
  color: var(--pml-cream-text);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.pml-subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(196,120,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pml-subhero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.pml-subhero__eyebrow {
  color: var(--pml-amber-light);
  margin-bottom: 12px;
}

.pml-subhero__h1 {
  font-family: var(--pml-font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--pml-cream-text);
  margin-bottom: 16px;
}

.pml-subhero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--pml-cream-muted);
  margin-bottom: 28px;
  max-width: 480px;
}

.pml-subhero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.pml-subhero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pml-subhero--centered .pml-subhero__inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 720px;
}

.pml-subhero--centered .pml-subhero__sub {
  margin-left: auto;
  margin-right: auto;
}

.pml-subhero--centered .pml-subhero__actions {
  justify-content: center;
}

.pml-subhero--light {
  background: var(--pml-parchment);
  color: var(--pml-ink);
}

.pml-subhero--light .pml-subhero__h1 { color: var(--pml-ink); }
.pml-subhero--light .pml-subhero__sub { color: var(--pml-ink-muted); }
.pml-subhero--light .pml-subhero__eyebrow { color: var(--pml-amber); }

@media (max-width: 768px) {
  .pml-subhero__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .pml-subhero { padding: 60px 0 56px; }
}

.pml-data-stat-strip {
  display: flex;
  gap: 0;
  border: 1px solid rgba(232,228,218,0.15);
  border-radius: var(--pml-r-lg);
  overflow: hidden;
}

.pml-data-stat {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(232,228,218,0.12);
  background: rgba(232,228,218,0.04);
}

.pml-data-stat:last-child { border-right: none; }

.pml-data-stat__value {
  font-family: var(--pml-font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--pml-amber-light);
  line-height: 1.2;
}

.pml-data-stat__label {
  font-size: 11px;
  color: var(--pml-cream-muted);
  margin-top: 4px;
  line-height: 1.3;
}

.pml-product-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.pml-product-demo--flip {
  direction: rtl;
}

.pml-product-demo--flip > * {
  direction: ltr;
}

.pml-product-demo__text .pml-eyebrow { margin-bottom: 12px; }

.pml-product-demo__title {
  font-family: var(--pml-font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.2;
}

.pml-product-demo__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--pml-ink-muted);
  margin-bottom: 20px;
}

.pml-section--dark .pml-product-demo__body,
.pml-section--dark-alt .pml-product-demo__body {
  color: var(--pml-cream-muted);
}

.pml-product-demo__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.pml-product-demo__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--pml-ink-muted);
}

.pml-section--dark .pml-product-demo__list-item,
.pml-section--dark-alt .pml-product-demo__list-item {
  color: var(--pml-cream-muted);
}

.pml-product-demo__list-icon {
  color: var(--pml-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.pml-section--dark .pml-product-demo__list-icon,
.pml-section--dark-alt .pml-product-demo__list-icon {
  color: var(--pml-teal-light);
}

.pml-product-demo__visual {
  background: var(--pml-ink-alt);
  border: 1px solid rgba(232,228,218,0.1);
  border-radius: var(--pml-r-lg);
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pml-section--cream .pml-product-demo__visual,
.pml-section--parchment-alt .pml-product-demo__visual,
.pml-section--white .pml-product-demo__visual {
  background: var(--pml-ink);
  border-color: rgba(232,228,218,0.08);
}

@media (max-width: 768px) {
  .pml-product-demo {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }
  .pml-product-demo--flip { direction: ltr; }
}

.pml-integration-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.pml-integration-card {
  padding: 20px;
  border-radius: var(--pml-r-md);
  border: 1px solid rgba(14,20,37,0.1);
  background: var(--pml-white);
  text-align: center;
  transition: border-color var(--pml-transition), box-shadow var(--pml-transition);
}

.pml-integration-card:hover {
  border-color: var(--pml-amber);
  box-shadow: var(--pml-shadow-sm);
}

.pml-integration-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pml-ink-muted);
}

.pml-integration-card__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--pml-ink);
}

.pml-integration-card__type {
  font-size: 11px;
  color: var(--pml-ink-muted);
  margin-top: 2px;
}

@media (max-width: 640px) {
  .pml-integration-cards { grid-template-columns: repeat(2, 1fr); }
}

.pml-pricing-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.pml-pricing-full-card {
  border-radius: var(--pml-r-lg);
  overflow: hidden;
  border: 2px solid transparent;
  transition: transform var(--pml-transition);
}

.pml-pricing-full-card:hover { transform: translateY(-4px); }

.pml-pricing-full-card--starter { border-color: rgba(14,20,37,0.1); background: var(--pml-parchment); }
.pml-pricing-full-card--pro { border-color: var(--pml-amber); background: var(--pml-ink); }
.pml-pricing-full-card--enterprise { border-color: rgba(14,20,37,0.1); background: var(--pml-parchment-alt); }

.pml-pricing-full-card__head {
  padding: 32px 32px 24px;
}

.pml-pricing-full-card--pro .pml-pricing-full-card__head {
  background: linear-gradient(135deg, rgba(196,120,42,0.12) 0%, transparent 100%);
}

.pml-pricing-full-card__popular {
  display: inline-flex;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--pml-amber);
  color: var(--pml-white);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.pml-pricing-full-card__name {
  font-family: var(--pml-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pml-amber);
  margin-bottom: 6px;
}

.pml-pricing-full-card--pro .pml-pricing-full-card__name {
  color: var(--pml-amber-light);
}

.pml-pricing-full-card__price {
  font-family: var(--pml-font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--pml-ink);
  line-height: 1.05;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.pml-pricing-full-card--pro .pml-pricing-full-card__price { color: var(--pml-cream-text); }

.pml-pricing-full-card__price-sup {
  font-size: 22px;
  margin-top: 8px;
  font-weight: 600;
}

.pml-pricing-full-card__period {
  font-size: 14px;
  color: var(--pml-ink-muted);
  margin-top: 4px;
  font-weight: 400;
  font-family: var(--pml-font-sans);
}

.pml-pricing-full-card--pro .pml-pricing-full-card__period { color: var(--pml-cream-muted); }

.pml-pricing-full-card__annual-note {
  font-size: 12px;
  color: var(--pml-teal);
  font-weight: 500;
  margin-top: 6px;
}

.pml-pricing-full-card--pro .pml-pricing-full-card__annual-note { color: var(--pml-teal-light); }

.pml-pricing-full-card__desc {
  font-size: 14px;
  color: var(--pml-ink-muted);
  line-height: 1.55;
  margin-top: 12px;
}

.pml-pricing-full-card--pro .pml-pricing-full-card__desc { color: var(--pml-cream-muted); }

.pml-pricing-full-card__body {
  padding: 0 32px 32px;
}

.pml-pricing-full-card__divider {
  height: 1px;
  background: rgba(14,20,37,0.08);
  margin-bottom: 24px;
}

.pml-pricing-full-card--pro .pml-pricing-full-card__divider { background: rgba(232,228,218,0.1); }

.pml-pricing-full-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pml-pricing-full-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--pml-ink-muted);
  line-height: 1.45;
}

.pml-pricing-full-card--pro .pml-pricing-full-card__feature { color: var(--pml-cream-muted); }

.pml-pricing-full-card__check {
  color: var(--pml-teal);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}

.pml-pricing-full-card--pro .pml-pricing-full-card__check { color: var(--pml-teal-light); }

.pml-pricing-faq {
  max-width: 720px;
  margin: 0 auto;
}

.pml-faq-item {
  border-bottom: 1px solid rgba(232,228,218,0.12);
}

.pml-section--cream .pml-faq-item,
.pml-section--parchment-alt .pml-faq-item,
.pml-section--white .pml-faq-item {
  border-bottom-color: rgba(14,20,37,0.1);
}

.pml-faq-item__question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--pml-font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--pml-cream-text);
  transition: color var(--pml-transition);
}

.pml-section--cream .pml-faq-item__question,
.pml-section--parchment-alt .pml-faq-item__question,
.pml-section--white .pml-faq-item__question {
  color: var(--pml-ink);
}

.pml-faq-item__question:hover { color: var(--pml-amber-light); }

.pml-section--cream .pml-faq-item__question:hover,
.pml-section--parchment-alt .pml-faq-item__question:hover,
.pml-section--white .pml-faq-item__question:hover {
  color: var(--pml-amber);
}

.pml-faq-item__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(196,120,42,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--pml-transition), border-color var(--pml-transition);
  color: var(--pml-amber);
  font-size: 13px;
}

.pml-faq-item.is-open .pml-faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--pml-amber);
}

.pml-faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.pml-faq-item.is-open .pml-faq-item__answer {
  max-height: 400px;
}

.pml-faq-item__answer-inner {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--pml-cream-muted);
}

.pml-section--cream .pml-faq-item__answer-inner,
.pml-section--parchment-alt .pml-faq-item__answer-inner,
.pml-section--white .pml-faq-item__answer-inner {
  color: var(--pml-ink-muted);
}

.pml-about-hero-img {
  border-radius: var(--pml-r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.pml-about-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pml-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pml-team-card {
  border-radius: var(--pml-r-lg);
  overflow: hidden;
  background: var(--pml-white);
  border: 1px solid rgba(14,20,37,0.08);
  transition: box-shadow var(--pml-transition);
}

.pml-section--dark .pml-team-card,
.pml-section--dark-alt .pml-team-card {
  background: rgba(232,228,218,0.04);
  border-color: rgba(232,228,218,0.08);
}

.pml-team-card:hover { box-shadow: var(--pml-shadow-md); }

.pml-team-card__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--pml-ink-alt);
  position: relative;
}

.pml-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pml-team-card__initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pml-font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--pml-amber);
  background: var(--pml-ink-alt);
}

.pml-team-card__body { padding: 20px; }

.pml-team-card__name {
  font-family: var(--pml-font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--pml-ink);
  margin-bottom: 4px;
}

.pml-section--dark .pml-team-card__name,
.pml-section--dark-alt .pml-team-card__name {
  color: var(--pml-cream-text);
}

.pml-team-card__role {
  font-size: 13px;
  font-weight: 500;
  color: var(--pml-amber);
  margin-bottom: 8px;
}

.pml-section--dark .pml-team-card__role,
.pml-section--dark-alt .pml-team-card__role {
  color: var(--pml-amber-light);
}

.pml-team-card__bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--pml-ink-muted);
}

.pml-section--dark .pml-team-card__bio,
.pml-section--dark-alt .pml-team-card__bio {
  color: var(--pml-cream-muted);
}

@media (max-width: 768px) {
  .pml-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .pml-team-grid { grid-template-columns: 1fr; }
}

.pml-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pml-value-card {
  padding: 28px 32px;
  border-radius: var(--pml-r-lg);
  background: rgba(232,228,218,0.04);
  border: 1px solid rgba(232,228,218,0.08);
}

.pml-section--cream .pml-value-card,
.pml-section--parchment-alt .pml-value-card,
.pml-section--white .pml-value-card {
  background: var(--pml-parchment);
  border-color: rgba(14,20,37,0.08);
}

.pml-value-card__number {
  font-family: var(--pml-font-serif);
  font-size: 36px;
  font-weight: 400;
  color: rgba(196,120,42,0.3);
  line-height: 1;
  margin-bottom: 8px;
}

.pml-value-card__title {
  font-family: var(--pml-font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--pml-cream-text);
  margin-bottom: 8px;
}

.pml-section--cream .pml-value-card__title,
.pml-section--parchment-alt .pml-value-card__title,
.pml-section--white .pml-value-card__title {
  color: var(--pml-ink);
}

.pml-value-card__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--pml-cream-muted);
}

.pml-section--cream .pml-value-card__body,
.pml-section--parchment-alt .pml-value-card__body,
.pml-section--white .pml-value-card__body {
  color: var(--pml-ink-muted);
}

@media (max-width: 640px) {
  .pml-values-grid { grid-template-columns: 1fr; }
}

.pml-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.pml-contact-info__item {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.pml-contact-info__icon {
  width: 40px;
  height: 40px;
  background: rgba(196,120,42,0.1);
  border-radius: var(--pml-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pml-amber);
  flex-shrink: 0;
}

.pml-contact-info__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pml-ink-muted);
  margin-bottom: 4px;
}

.pml-contact-info__value {
  font-size: 15px;
  color: var(--pml-ink);
  line-height: 1.5;
}

.pml-contact-info__value a {
  color: var(--pml-teal);
  transition: color var(--pml-transition);
}

.pml-contact-info__value a:hover { color: var(--pml-amber); }

.pml-contact-form {
  background: var(--pml-white);
  border: 1px solid rgba(14,20,37,0.1);
  border-radius: var(--pml-r-lg);
  padding: 40px;
}

.pml-form-group { margin-bottom: 20px; }

.pml-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--pml-ink);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.pml-form-input,
.pml-form-select,
.pml-form-textarea {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--pml-font-sans);
  font-size: 15px;
  color: var(--pml-ink);
  background: var(--pml-parchment);
  border: 1px solid rgba(14,20,37,0.18);
  border-radius: var(--pml-r-sm);
  transition: border-color var(--pml-transition), box-shadow var(--pml-transition);
  -webkit-appearance: none;
  appearance: none;
}

.pml-form-input::placeholder,
.pml-form-textarea::placeholder {
  color: var(--pml-ink-muted);
  opacity: 0.6;
}

.pml-form-input:focus,
.pml-form-select:focus,
.pml-form-textarea:focus {
  outline: none;
  border-color: var(--pml-amber);
  box-shadow: 0 0 0 3px rgba(196,120,42,0.12);
}

.pml-form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.pml-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .pml-form-row { grid-template-columns: 1fr; }
  .pml-contact-form { padding: 24px; }
}

.pml-contact-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.pml-contact-success.is-visible { display: block; }

.pml-contact-success__icon {
  font-size: 40px;
  color: var(--pml-teal);
  margin-bottom: 16px;
}

.pml-contact-success__title {
  font-family: var(--pml-font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--pml-ink);
  margin-bottom: 8px;
}

.pml-contact-success__body {
  font-size: 15px;
  color: var(--pml-ink-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .pml-contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

.pml-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pml-security-card {
  padding: 28px;
  border-radius: var(--pml-r-lg);
  border: 1px solid rgba(232,228,218,0.1);
  background: rgba(232,228,218,0.04);
  transition: border-color var(--pml-transition);
}

.pml-section--cream .pml-security-card,
.pml-section--parchment-alt .pml-security-card,
.pml-section--white .pml-security-card {
  background: var(--pml-white);
  border-color: rgba(14,20,37,0.08);
}

.pml-security-card:hover {
  border-color: rgba(196,120,42,0.35);
}

.pml-security-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.pml-security-card__icon {
  width: 36px;
  height: 36px;
  background: rgba(196,120,42,0.12);
  border-radius: var(--pml-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pml-amber);
  font-size: 16px;
  flex-shrink: 0;
}

.pml-security-card__title {
  font-family: var(--pml-font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--pml-cream-text);
}

.pml-section--cream .pml-security-card__title,
.pml-section--parchment-alt .pml-security-card__title,
.pml-section--white .pml-security-card__title {
  color: var(--pml-ink);
}

.pml-security-card__body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--pml-cream-muted);
}

.pml-section--cream .pml-security-card__body,
.pml-section--parchment-alt .pml-security-card__body,
.pml-section--white .pml-security-card__body {
  color: var(--pml-ink-muted);
}

.pml-security-card__tag {
  display: inline-flex;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(26,122,110,0.15);
  color: var(--pml-teal-light);
}

.pml-section--cream .pml-security-card__tag,
.pml-section--parchment-alt .pml-security-card__tag,
.pml-section--white .pml-security-card__tag {
  background: rgba(26,122,110,0.1);
  color: var(--pml-teal);
}

@media (max-width: 768px) {
  .pml-security-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .pml-security-grid { grid-template-columns: 1fr; }
}

.pml-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.pml-blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pml-blog-filter {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid rgba(14,20,37,0.15);
  color: var(--pml-ink-muted);
  cursor: pointer;
  transition: background var(--pml-transition), color var(--pml-transition), border-color var(--pml-transition);
  background: transparent;
  font-family: var(--pml-font-sans);
}

.pml-blog-filter:hover,
.pml-blog-filter.is-active {
  background: var(--pml-amber);
  color: var(--pml-white);
  border-color: var(--pml-amber);
}

.pml-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pml-blog-card {
  border-radius: var(--pml-r-lg);
  overflow: hidden;
  background: var(--pml-white);
  border: 1px solid rgba(14,20,37,0.08);
  transition: box-shadow var(--pml-transition), transform var(--pml-transition);
  display: flex;
  flex-direction: column;
}

.pml-blog-card:hover {
  box-shadow: var(--pml-shadow-md);
  transform: translateY(-3px);
}

.pml-blog-card--hidden { display: none; }

.pml-blog-card__cover {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--pml-parchment-alt);
}

.pml-blog-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.pml-blog-card:hover .pml-blog-card__cover img {
  transform: scale(1.04);
}

.pml-blog-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pml-blog-card__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pml-amber);
  margin-bottom: 8px;
}

.pml-blog-card__title {
  font-family: var(--pml-font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--pml-ink);
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}

.pml-blog-card:hover .pml-blog-card__title { color: var(--pml-amber-dark); }

.pml-blog-card__excerpt {
  font-size: 13px;
  color: var(--pml-ink-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pml-blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.pml-blog-card__date {
  font-size: 12px;
  color: var(--pml-ink-muted);
}

.pml-blog-card__read-time {
  font-size: 12px;
  color: var(--pml-ink-muted);
}

@media (max-width: 768px) {
  .pml-blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .pml-blog-grid { grid-template-columns: 1fr; }
}

.pml-article-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--pml-amber-light);
  margin-bottom: 24px;
  transition: color var(--pml-transition), gap var(--pml-transition);
}

.pml-article-back:hover {
  color: var(--pml-amber);
  gap: 10px;
}

.pml-article-hero {
  background: var(--pml-ink);
  padding: 64px 0 48px;
  color: var(--pml-cream-text);
}

.pml-article-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.pml-article-hero__cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pml-amber-light);
  margin-bottom: 12px;
}

.pml-article-hero__title {
  font-family: var(--pml-font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--pml-cream-text);
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 16px;
}

.pml-article-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pml-article-hero__date,
.pml-article-hero__read-time,
.pml-article-hero__author {
  font-size: 13px;
  color: var(--pml-cream-muted);
}

.pml-article-hero__cover {
  margin-top: 40px;
  border-radius: var(--pml-r-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
}

.pml-article-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--pml-r-lg);
}

.pml-article-body {
  background: var(--pml-parchment);
  padding: 64px 0 80px;
}

.pml-article-body__content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}

.pml-article-body__content h2 {
  font-family: var(--pml-font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--pml-ink);
  margin: 36px 0 14px;
  line-height: 1.25;
}

.pml-article-body__content h3 {
  font-family: var(--pml-font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--pml-ink);
  margin: 28px 0 10px;
}

.pml-article-body__content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pml-ink-muted);
  margin-bottom: 18px;
}

.pml-article-body__content ul,
.pml-article-body__content ol {
  margin-bottom: 18px;
  padding-left: 24px;
}

.pml-article-body__content ul { list-style: disc; }
.pml-article-body__content ol { list-style: decimal; }

.pml-article-body__content li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--pml-ink-muted);
  margin-bottom: 6px;
}

.pml-article-body__content a {
  color: var(--pml-teal);
  text-decoration: underline;
  text-decoration-color: rgba(26,122,110,0.35);
  transition: color var(--pml-transition);
}

.pml-article-body__content a:hover { color: var(--pml-amber); }

.pml-article-body__content blockquote {
  border-left: 3px solid var(--pml-amber);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(196,120,42,0.06);
  border-radius: 0 var(--pml-r-sm) var(--pml-r-sm) 0;
  font-family: var(--pml-font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--pml-ink);
}

.pml-article-body__content pre,
.pml-article-body__content code {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 14px;
  background: var(--pml-ink);
  color: var(--pml-cream-text);
  border-radius: var(--pml-r-sm);
  padding: 2px 6px;
  max-width: 100%;
  overflow-x: auto;
}

.pml-article-body__content pre {
  padding: 20px;
  margin-bottom: 20px;
  display: block;
  line-height: 1.6;
}

.pml-article-body__content pre code {
  padding: 0;
  background: none;
}

.pml-article-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--pml-ink);
  border-radius: var(--pml-r-lg);
  color: var(--pml-cream-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.pml-article-cta__title {
  font-family: var(--pml-font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--pml-cream-text);
  margin-bottom: 4px;
}

.pml-article-cta__body {
  font-size: 14px;
  color: var(--pml-cream-muted);
  line-height: 1.55;
  max-width: 400px;
}

.pml-article-related {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(14,20,37,0.12);
}

.pml-article-related__title {
  font-family: var(--pml-font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--pml-ink);
  margin-bottom: 24px;
}

.pml-article-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pml-article-related__item {
  padding: 16px;
  border-radius: var(--pml-r-md);
  border: 1px solid rgba(14,20,37,0.08);
  background: var(--pml-white);
  transition: border-color var(--pml-transition);
}

.pml-article-related__item:hover { border-color: var(--pml-amber); }

.pml-article-related__cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pml-amber);
  margin-bottom: 6px;
}

.pml-article-related__title-link {
  font-family: var(--pml-font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--pml-ink);
  line-height: 1.35;
  transition: color var(--pml-transition);
}

.pml-article-related__item:hover .pml-article-related__title-link {
  color: var(--pml-amber-dark);
}

@media (max-width: 640px) {
  .pml-article-related__grid { grid-template-columns: 1fr; }
  .pml-article-body__content { padding: 0 20px; }
  .pml-article-hero__inner { padding: 0 20px; }
  .pml-article-hero__cover { padding-inline: 20px; }
  .pml-article-cta { flex-direction: column; }
}

.pml-auth-page {
  min-height: 100vh;
  background: var(--pml-ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.pml-auth-logo {
  margin-bottom: 32px;
}

.pml-auth-logo img { height: 28px; width: auto; }

.pml-auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--pml-parchment);
  border-radius: var(--pml-r-lg);
  padding: 40px;
  box-shadow: var(--pml-shadow-lg);
}

.pml-auth-card__title {
  font-family: var(--pml-font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--pml-ink);
  margin-bottom: 6px;
}

.pml-auth-card__sub {
  font-size: 15px;
  color: var(--pml-ink-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pml-auth-form-group {
  margin-bottom: 16px;
}

.pml-auth-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--pml-ink);
  margin-bottom: 6px;
}

.pml-auth-form-group input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-family: var(--pml-font-sans);
  font-size: 15px;
  color: var(--pml-ink);
  background: var(--pml-white);
  border: 1px solid rgba(14,20,37,0.18);
  border-radius: var(--pml-r-sm);
  transition: border-color var(--pml-transition), box-shadow var(--pml-transition);
  -webkit-appearance: none;
  appearance: none;
}

.pml-auth-form-group input:focus {
  outline: none;
  border-color: var(--pml-amber);
  box-shadow: 0 0 0 3px rgba(196,120,42,0.12);
}

.pml-auth-error {
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.2);
  border-radius: var(--pml-r-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: #b91c1c;
  margin-bottom: 16px;
  display: none;
}

.pml-auth-error.is-visible { display: block; }

.pml-auth-success {
  text-align: center;
  display: none;
  padding: 8px 0;
}

.pml-auth-success.is-visible { display: block; }

.pml-auth-success__icon {
  font-size: 36px;
  color: var(--pml-teal);
  margin-bottom: 12px;
}

.pml-auth-success__title {
  font-family: var(--pml-font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--pml-ink);
  margin-bottom: 8px;
}

.pml-auth-success__body {
  font-size: 14px;
  color: var(--pml-ink-muted);
  line-height: 1.6;
}

.pml-auth-card__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  text-align: center;
}

.pml-auth-card__link {
  font-size: 13px;
  color: var(--pml-teal);
  transition: color var(--pml-transition);
}

.pml-auth-card__link:hover { color: var(--pml-amber); }

.pml-auth-card__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(14,20,37,0.1);
  text-align: center;
}

.pml-auth-card__footer-text {
  font-size: 12px;
  color: var(--pml-ink-muted);
  line-height: 1.5;
}

.pml-auth-card__footer-text a {
  color: var(--pml-teal);
  transition: color var(--pml-transition);
}

.pml-auth-card__footer-text a:hover { color: var(--pml-amber); }

.pml-legal-page {
  background: var(--pml-parchment);
  color: var(--pml-ink);
}

.pml-legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 40px 80px;
  background: var(--pml-white);
  box-shadow: var(--pml-shadow-sm);
}

.pml-legal-content h1 {
  font-family: var(--pml-font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--pml-ink);
  margin-bottom: 8px;
}

.pml-legal-content .pml-legal-meta {
  font-size: 13px;
  color: var(--pml-ink-muted);
  margin-bottom: 36px;
}

.pml-legal-content h2 {
  font-family: var(--pml-font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--pml-ink);
  margin: 36px 0 12px;
}

.pml-legal-content h3 {
  font-family: var(--pml-font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--pml-ink);
  margin: 24px 0 8px;
}

.pml-legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--pml-ink-muted);
  margin-bottom: 16px;
}

.pml-legal-content ul,
.pml-legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.pml-legal-content ul { list-style: disc; }
.pml-legal-content ol { list-style: decimal; }

.pml-legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pml-ink-muted);
  margin-bottom: 6px;
}

.pml-legal-content a {
  color: var(--pml-teal);
  text-decoration: underline;
  transition: color var(--pml-transition);
}

.pml-legal-content a:hover { color: var(--pml-amber); }

@media (max-width: 640px) {
  .pml-legal-content { padding: 40px 24px 60px; }
}

.pml-docs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.pml-docs-sidebar {
  position: sticky;
  top: calc(var(--pml-nav-h) + 24px);
}

.pml-docs-sidebar__section {
  margin-bottom: 24px;
}

.pml-docs-sidebar__section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pml-ink-muted);
  margin-bottom: 8px;
}

.pml-docs-sidebar__link {
  display: block;
  padding: 6px 10px;
  font-size: 14px;
  color: var(--pml-ink-muted);
  border-radius: var(--pml-r-sm);
  transition: background var(--pml-transition), color var(--pml-transition);
  border-left: 2px solid transparent;
}

.pml-docs-sidebar__link:hover {
  background: var(--pml-parchment-alt);
  color: var(--pml-ink);
}

.pml-docs-sidebar__link--active {
  color: var(--pml-amber-dark);
  border-left-color: var(--pml-amber);
  background: rgba(196,120,42,0.06);
}

.pml-docs-content {
  max-width: 760px;
  min-width: 0;
}

.pml-docs-content h1 {
  font-family: var(--pml-font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--pml-ink);
  margin-bottom: 12px;
}

.pml-docs-content h2 {
  font-family: var(--pml-font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--pml-ink);
  margin: 36px 0 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(14,20,37,0.08);
}

.pml-docs-content h3 {
  font-family: var(--pml-font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--pml-ink);
  margin: 24px 0 8px;
}

.pml-docs-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--pml-ink-muted);
  margin-bottom: 16px;
}

.pml-docs-content ul,
.pml-docs-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.pml-docs-content ul { list-style: disc; }
.pml-docs-content ol { list-style: decimal; }

.pml-docs-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pml-ink-muted);
  margin-bottom: 6px;
}

.pml-docs-content a {
  color: var(--pml-teal);
  text-decoration: underline;
  transition: color var(--pml-transition);
}

.pml-docs-content a:hover { color: var(--pml-amber); }

.pml-docs-content pre {
  background: var(--pml-ink);
  color: var(--pml-cream-text);
  border-radius: var(--pml-r-md);
  padding: 20px;
  overflow-x: auto;
  margin-bottom: 20px;
  max-width: 100%;
}

.pml-docs-content pre code {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.65;
  background: none;
  color: inherit;
  padding: 0;
}

.pml-docs-content code {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 13px;
  background: var(--pml-parchment-alt);
  padding: 2px 6px;
  border-radius: var(--pml-r-sm);
  color: var(--pml-ink);
}

.pml-callout {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: var(--pml-r-md);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.pml-callout--info {
  background: rgba(26,122,110,0.08);
  border-left: 3px solid var(--pml-teal);
  color: var(--pml-ink);
}

.pml-callout--warn {
  background: rgba(196,120,42,0.08);
  border-left: 3px solid var(--pml-amber);
  color: var(--pml-ink);
}

.pml-callout__icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--pml-teal);
}

.pml-callout--warn .pml-callout__icon { color: var(--pml-amber); }

@media (max-width: 768px) {
  .pml-docs-layout { grid-template-columns: 1fr; }
  .pml-docs-sidebar { position: static; }
  .pml-docs-content { max-width: 100%; }
}

.pml-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pml-how-it-works__steps--4col {
  grid-template-columns: repeat(4, 1fr);
}

.pml-how-it-works__steps--2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .pml-how-it-works__steps--4col { grid-template-columns: repeat(2, 1fr); }
  .pml-how-it-works__steps--2col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pml-how-it-works__steps--4col { grid-template-columns: 1fr; }
}

.pml-section--single-testimonial {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pml-pricing-period-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(14,20,37,0.06);
  border-radius: 99px;
  padding: 4px;
  margin-top: 28px;
}

.pml-period-btn {
  font-family: var(--pml-font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--pml-ink-muted);
  padding: 7px 18px;
  border-radius: 99px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: background var(--pml-transition), color var(--pml-transition), box-shadow var(--pml-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pml-period-btn--active {
  background: var(--pml-white);
  color: var(--pml-ink);
  box-shadow: 0 1px 3px rgba(14,20,37,0.15);
}

.pml-period-save {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 99px;
  background: rgba(26,122,110,0.12);
  color: var(--pml-teal);
  letter-spacing: 0.02em;
}

.pml-price-amount {
  font-family: var(--pml-font-serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.05;
  color: inherit;
}

.pml-price-billing {
  font-size: 13px;
  color: var(--pml-ink-muted);
  margin-top: 4px;
  margin-bottom: 12px;
}

.pml-pricing-card--featured .pml-price-billing {
  color: var(--pml-cream-muted);
}

.pml-cta-band__inner--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.pml-cta-band__text {
  flex: 1;
  min-width: 280px;
}

.pml-cta-band__links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .pml-cta-band__inner--split { flex-direction: column; align-items: flex-start; }
  .pml-cta-band__text { min-width: 0; }
}

.pml-nav--on-light {
  background: var(--pml-ink);
}

.pml-solutions-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pml-solutions-feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--pml-r-md);
  border: 1px solid rgba(232,228,218,0.08);
  background: rgba(232,228,218,0.04);
  transition: border-color var(--pml-transition), background var(--pml-transition);
}

.pml-section--cream .pml-solutions-feature,
.pml-section--parchment-alt .pml-solutions-feature,
.pml-section--white .pml-solutions-feature {
  border-color: rgba(14,20,37,0.08);
  background: var(--pml-white);
}

.pml-solutions-feature:hover {
  border-color: rgba(196,120,42,0.3);
  background: rgba(196,120,42,0.04);
}

.pml-solutions-feature__icon {
  width: 40px;
  height: 40px;
  background: rgba(196,120,42,0.12);
  border-radius: var(--pml-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pml-amber);
  font-size: 18px;
  flex-shrink: 0;
}

.pml-solutions-feature__title {
  font-family: var(--pml-font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--pml-cream-text);
  margin-bottom: 6px;
}

.pml-section--cream .pml-solutions-feature__title,
.pml-section--parchment-alt .pml-solutions-feature__title,
.pml-section--white .pml-solutions-feature__title {
  color: var(--pml-ink);
}

.pml-solutions-feature__body {
  font-size: 14px;
  color: var(--pml-cream-muted);
  line-height: 1.55;
}

.pml-section--cream .pml-solutions-feature__body,
.pml-section--parchment-alt .pml-solutions-feature__body,
.pml-section--white .pml-solutions-feature__body {
  color: var(--pml-ink-muted);
}

@media (max-width: 640px) {
  .pml-solutions-features { grid-template-columns: 1fr; }
}

.pml-comparison-table-wrap { overflow-x: auto; }

.pml-comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.pml-comparison-table th,
.pml-comparison-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid rgba(14,20,37,0.08);
}

.pml-section--dark .pml-comparison-table th,
.pml-section--dark .pml-comparison-table td,
.pml-section--dark-alt .pml-comparison-table th,
.pml-section--dark-alt .pml-comparison-table td {
  border-bottom-color: rgba(232,228,218,0.08);
}

.pml-comparison-table th {
  font-family: var(--pml-font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pml-ink-muted);
}

.pml-section--dark .pml-comparison-table th,
.pml-section--dark-alt .pml-comparison-table th {
  color: var(--pml-cream-muted);
}

.pml-comparison-table td {
  color: var(--pml-ink-muted);
}

.pml-section--dark .pml-comparison-table td,
.pml-section--dark-alt .pml-comparison-table td {
  color: var(--pml-cream-muted);
}

.pml-comparison-table td:first-child {
  font-weight: 500;
  color: var(--pml-ink);
}

.pml-section--dark .pml-comparison-table td:first-child,
.pml-section--dark-alt .pml-comparison-table td:first-child {
  color: var(--pml-cream-text);
}

.pml-comparison-table .pml-check { color: var(--pml-teal); }
.pml-comparison-table .pml-cross { color: rgba(232,228,218,0.3); }
.pml-section--cream .pml-comparison-table .pml-cross,
.pml-section--parchment-alt .pml-comparison-table .pml-cross {
  color: rgba(14,20,37,0.2);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--pml-ink-alt);
  border-top: 1px solid rgba(232,228,218,0.1);
  box-shadow: 0 -4px 24px rgba(14,20,37,0.3);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 14px;
  color: rgba(232,228,218,0.8);
  line-height: 1.5;
  flex: 1;
  min-width: 240px;
}

.cookie-banner__text a {
  color: var(--pml-amber-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  font-family: var(--pml-font-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--pml-r-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--pml-transition), color var(--pml-transition), border-color var(--pml-transition);
  white-space: nowrap;
}

.cookie-banner__btn--primary {
  background: var(--pml-amber);
  color: var(--pml-ink);
  border-color: var(--pml-amber);
}

.cookie-banner__btn--primary:hover {
  background: var(--pml-amber-dark);
  color: var(--pml-white);
  border-color: var(--pml-amber-dark);
}

.cookie-banner__btn--secondary {
  background: transparent;
  color: var(--pml-cream-text);
  border-color: rgba(232,228,218,0.3);
}

.cookie-banner__btn--secondary:hover {
  background: rgba(232,228,218,0.08);
  border-color: rgba(232,228,218,0.5);
}

@media (max-width: 640px) {
  .cookie-banner__inner { padding: 16px 20px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; }
}

.pml-404-page {
  background: var(--pml-ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: var(--pml-cream-text);
}

.pml-404-code {
  font-family: var(--pml-font-serif);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 600;
  color: rgba(196,120,42,0.25);
  line-height: 1;
  margin-bottom: 8px;
}

.pml-404-title {
  font-family: var(--pml-font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: var(--pml-cream-text);
  margin-bottom: 12px;
}

.pml-404-body {
  font-size: 16px;
  color: var(--pml-cream-muted);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 32px;
}

.pml-solutions-workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.pml-solutions-workflow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--pml-amber) 0%, rgba(196,120,42,0.2) 100%);
  z-index: 0;
}

.pml-solutions-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.pml-solutions-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pml-amber);
  color: var(--pml-white);
  font-family: var(--pml-font-serif);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.pml-solutions-step__title {
  font-family: var(--pml-font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--pml-cream-text);
  margin-bottom: 6px;
}

.pml-section--cream .pml-solutions-step__title,
.pml-section--parchment-alt .pml-solutions-step__title,
.pml-section--white .pml-solutions-step__title {
  color: var(--pml-ink);
}

.pml-solutions-step__body {
  font-size: 13px;
  color: var(--pml-cream-muted);
  line-height: 1.55;
}

.pml-section--cream .pml-solutions-step__body,
.pml-section--parchment-alt .pml-solutions-step__body,
.pml-section--white .pml-solutions-step__body {
  color: var(--pml-ink-muted);
}

@media (max-width: 640px) {
  .pml-solutions-workflow {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pml-solutions-workflow::before { display: none; }
}

@media (max-width: 900px) and (min-width: 641px) {
  .pml-solutions-workflow {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .pml-solutions-workflow::before { display: none; }
}

.pml-subpage-stat-band {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.pml-subpage-stat {
  text-align: left;
}

.pml-subpage-stat__value {
  font-family: var(--pml-font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--pml-amber-light);
  line-height: 1.1;
}

.pml-subpage-stat__label {
  font-size: 12px;
  color: var(--pml-cream-muted);
  margin-top: 3px;
}

.pml-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.pml-breadcrumb__item {
  font-size: 13px;
  color: var(--pml-cream-muted);
}

.pml-breadcrumb__item a {
  color: var(--pml-amber-light);
  transition: color var(--pml-transition);
}

.pml-breadcrumb__item a:hover { color: var(--pml-cream-text); }

.pml-breadcrumb__sep {
  color: rgba(232,228,218,0.3);
  font-size: 11px;
}

.pml-section--cream .pml-breadcrumb__item { color: var(--pml-ink-muted); }
.pml-section--cream .pml-breadcrumb__item a { color: var(--pml-amber); }
.pml-section--cream .pml-breadcrumb__sep { color: rgba(14,20,37,0.2); }

.pml-values-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .pml-values-grid--3col { grid-template-columns: 1fr; }
}

.pml-about-story {
  max-width: 760px;
  margin: 0 auto;
}

.pml-about-story__lead {
  font-family: var(--pml-font-serif);
  font-size: 19px;
  font-weight: 400;
  font-style: italic;
  color: var(--pml-ink);
  line-height: 1.65;
  margin-bottom: 20px;
}

.pml-about-story__text {
  font-size: 16px;
  line-height: 1.75;
  color: var(--pml-ink-muted);
  margin-bottom: 18px;
}

.pml-about-story__quote {
  border-left: 3px solid var(--pml-amber);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(196,120,42,0.06);
  border-radius: 0 var(--pml-r-md) var(--pml-r-md) 0;
  font-family: var(--pml-font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--pml-ink);
  line-height: 1.55;
}

.pml-blog-feature {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-radius: var(--pml-r-lg);
  overflow: hidden;
  background: var(--pml-parchment);
  transition: box-shadow 0.2s;
}

.pml-blog-feature:hover {
  box-shadow: var(--pml-shadow-lg);
}

.pml-blog-feature__cover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.pml-blog-feature__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.pml-blog-feature:hover .pml-blog-feature__cover img {
  transform: scale(1.03);
}

.pml-blog-feature__body {
  padding: 40px 40px 40px 0;
}

.pml-blog-feature__title {
  font-family: var(--pml-font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--pml-ink);
  line-height: 1.35;
  margin: 12px 0 16px;
}

.pml-blog-feature__excerpt {
  font-size: 16px;
  line-height: 1.65;
  color: var(--pml-ink-muted);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .pml-blog-feature {
    grid-template-columns: 1fr;
  }
  .pml-blog-feature__body {
    padding: 24px 24px 32px;
  }
}

