/* membership.plynth.gg — Plynth Worlds LLC
   Self-contained. No external fonts, no CDN, no analytics, no third-party anything.
   Every external request is a referrer leak and a privacy-policy entry. */

:root {
  --ink: #16191c;
  --ink-soft: #4a545c;
  --rule: #d8dde1;
  --accent: #1c4f66;
  --bg: #ffffff;
  --bg-soft: #f6f8f9;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "kern" 1;
}

.wrap { max-width: 42rem; margin: 0 auto; padding: 0 1.5rem; }

/* Navigation. Paddle requires the legal pages be reachable through site
   navigation, not only from a footer on one page. */
header {
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
  margin-bottom: 2.5rem;
}
header .wrap { display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; align-items: baseline; }
header .mark { font-weight: 700; font-size: 1.1rem; letter-spacing: -0.01em; margin-right: auto; }
header .mark a { color: var(--ink); }
nav { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: 0.94rem; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
header a, footer a { text-decoration: none; }
header a:hover, footer a:hover { text-decoration: underline; }

main { padding-bottom: 3.5rem; }

h1 { font-size: 2.1rem; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 1rem; }
h2 { font-size: 1.3rem; line-height: 1.25; margin: 2.5rem 0 0.75rem; }
h3 { font-size: 1.05rem; margin: 1.75rem 0 0.5rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.5rem; }
strong { font-weight: 650; }

.lede { font-size: 1.12rem; color: var(--ink-soft); }

/* The price block. Currency is written out. A bare $ is ambiguous across
   a dozen currencies and both providers check for this. */
.price {
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg-soft);
  padding: 1.5rem 1.5rem 1.25rem;
  margin: 2rem 0;
}
.price .amount { font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.price .amount span { font-size: 1.05rem; font-weight: 400; color: var(--ink-soft); }
.price .one-plan { margin: 0.4rem 0 0; color: var(--ink-soft); }

/* The auto-renewal disclosure. Bolded and boxed on purpose: Paddle's FTC
   order and Polar's MST 9.5 (ROSCA) both require this be clear and
   conspicuous, not buried in the terms. */
.renewal {
  border-left: 3px solid var(--accent);
  background: var(--bg-soft);
  padding: 0.9rem 1.1rem;
  margin: 1.5rem 0;
}
.renewal p { margin: 0; font-weight: 650; }

.meta { color: var(--ink-soft); font-size: 0.95rem; }
.updated { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 2rem; }

/* Verbatim reseller disclosure. Set apart so it is easy for a reviewer to
   find and easy for us to confirm it has not been edited. */
.disclosure {
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin: 1rem 0 1.5rem;
  background: var(--bg-soft);
}
.disclosure p:last-child { margin-bottom: 0; }

footer {
  border-top: 1px solid var(--rule);
  padding: 1.75rem 0 3rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
}
footer p { margin: 0 0 0.4rem; }
footer .legal { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 0.9rem; }

@media (max-width: 34rem) {
  body { font-size: 16px; }
  h1 { font-size: 1.75rem; }
  header { margin-bottom: 2rem; }
}
