:root {
  --ink: #141812;
  --paper: #f4f0e6;
  --card: #fffdf8;
  --copper: #c4622d;
  --moss: #1d6a48;
  --line: rgba(20, 24, 18, 0.12);
  --muted: #5c6158;
  --danger: #8d2b2b;
  --shadow: 0 20px 50px rgba(20, 24, 18, 0.08);
  --font: "Outfit", "Avenir Next", sans-serif;
  --display: "Fraunces", "Iowan Old Style", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
}
img, svg { max-width: 100%; }
a { color: inherit; }
.plx-skip { position: absolute; left: -999px; }
.plx-skip:focus { left: 8px; top: 8px; background: #fff; padding: 8px; z-index: 9; }
.plx-announce {
  background: var(--ink);
  color: #f4f0e6;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
}
.plx-nav, .plx-foot {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
}
.plx-nav { position: sticky; top: 0; background: rgba(244, 240, 230, 0.92); backdrop-filter: blur(10px); z-index: 5; border-bottom: 1px solid var(--line); }
.plx-brand { display: flex; gap: 10px; align-items: center; text-decoration: none; font-weight: 600; }
.plx-brand em { color: var(--copper); font-style: normal; }
.plx-mark { width: 28px; height: 28px; }
.plx-nav nav, .plx-nav-cta, .plx-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.plx-nav nav a { text-decoration: none; font-size: 15px; }
.plx-nav-toggle { display: none; }
.plx-btn, button.plx-btn {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font: 600 15px/1 var(--font);
  display: inline-block;
  cursor: pointer;
}
.plx-btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.plx-hero, .plx-launch, .plx-final, .plx-prose, .plx-steps, section { padding: 48px 6vw; }
.plx-hero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; min-height: 70vh; }
h1, h2, h3 { font-family: var(--display); font-weight: 560; letter-spacing: -0.03em; line-height: 1.05; }
h1 { font-size: clamp(40px, 6vw, 76px); margin: 0 0 16px; }
h2 { font-size: clamp(28px, 3vw, 42px); }
.plx-lead { font-size: 19px; max-width: 42rem; }
.plx-kicker { color: var(--copper); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.plx-flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.plx-flow li, .plx-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}
.plx-flow li { font-weight: 600; }
.plx-flow li + li::before { content: "↓"; display: block; color: var(--copper); margin-bottom: 8px; }
.plx-band { background: #ebe4d4; }
.plx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plx-grid-tight { grid-template-columns: repeat(4, 1fr); }
.plx-card h3 { margin-top: 0; }
.plx-card.is-popular { outline: 2px solid var(--copper); }
.plx-meta, .plx-foot p { color: var(--muted); }
.plx-balance { font-family: var(--display); font-size: 42px; margin: 0; }
.plx-balance span { font-family: var(--font); font-size: 14px; color: var(--muted); }
.plx-app { display: grid; grid-template-columns: 220px 1fr; min-height: 70vh; }
.plx-app aside { padding: 28px 20px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.plx-app aside a { text-decoration: none; }
.plx-app section { padding: 28px 4vw 64px; }
.plx-form { display: grid; gap: 12px; max-width: 640px; }
.plx-form input, .plx-form textarea, .plx-form select, .plx-shop input, .plx-shop textarea, .plx-shop select {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
}
.plx-out { white-space: pre-wrap; font-family: var(--font); }
.plx-error { color: var(--danger); }
.plx-review { background: #fff4d6; border: 1px solid #e2c27a; padding: 12px 14px; border-radius: 12px; }
.plx-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.plx-table th, .plx-table td { border-bottom: 1px solid var(--line); text-align: left; padding: 8px; }
.plx-faq { background: var(--card); border-radius: 12px; padding: 8px 14px; margin: 8px 0; }
.plx-foot { align-items: flex-start; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); border-top: 1px solid var(--line); }
.plx-foot a, .plx-foot strong { display: block; text-decoration: none; margin: 6px 0; }
.plx-shop .button, .woocommerce a.button, .woocommerce button.button {
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
}
@media (max-width: 900px) {
  .plx-hero, .plx-grid, .plx-grid-tight, .plx-app, .plx-foot { grid-template-columns: 1fr; }
  .plx-nav-toggle { display: inline-block; background: transparent; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; }
  .plx-nav nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; }
  .plx-nav nav.is-open { display: flex; }
  .plx-nav { flex-wrap: wrap; }
}
