/* Shared by the privacy, terms and refund pages — they're the same document
   type and were originally three copies of this stylesheet. */
:root {
  box-sizing: border-box;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  --white: #FFFFFF;
  --paper: #F6F8F5;
  --ink: #0C140F;
  --muted: #5C6B60;
  --green: #16A34A;
  --green-deep: #0E7C39;
  --green-tint: #E9F8EE;
  --amber-tint: #FFF6D9;
  --border: #E3E8E1;
}
html { scroll-padding-top: env(safe-area-inset-top, 0px); }
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Work Sans', system-ui, sans-serif;
}
a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--green); }
img { max-width: 100%; }

.wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
h1, h2 { font-family: 'Fredoka', sans-serif; font-weight: 600; }
h1 { font-size: 40px; margin: 0 0 8px; letter-spacing: -0.01em; text-wrap: balance; }
h2 { font-size: 21px; margin: 40px 0 12px; color: var(--green-deep); }
p, li { font-size: 16px; line-height: 1.7; color: var(--ink); }
ul { padding-left: 22px; margin: 12px 0; }
li { margin-bottom: 6px; }
.muted { color: var(--muted); }

.nav-outer { background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); position: sticky; top: 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 820px; margin: 0 auto; padding: 16px 24px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand span { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 18px; color: var(--ink); }
.back-link { font-size: 14px; font-weight: 500; text-decoration: none; color: var(--ink); white-space: nowrap; }

.hero { padding: 56px 0 8px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--green-deep); margin: 0 0 14px; background: var(--green-tint); padding: 6px 14px; border-radius: 999px; }

.headline-card { background: var(--ink); color: var(--white); border-radius: 20px; padding: 28px 26px; margin: 28px 0 8px; }
.headline-card h2 { color: var(--white); margin: 0 0 8px; font-size: 22px; }
.headline-card p { color: rgba(255,255,255,0.78); margin: 0; }
.headline-card .tag { display: inline-block; background: var(--green); color: var(--white); font-weight: 700; font-size: 12.5px; letter-spacing: 0.03em; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }

.toc { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 20px 24px; margin: 28px 0 8px; }
.toc h2 { margin: 0 0 10px; font-size: 16px; color: var(--ink); }
.toc ol { margin: 0; padding-left: 20px; }
.toc.two-col ol { columns: 2; column-gap: 24px; }
.toc li { font-size: 14.5px; margin-bottom: 4px; break-inside: avoid; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--green-deep); text-decoration: underline; }

.contact-card { background: var(--green-tint); border-radius: 18px; padding: 24px; margin: 20px 0 60px; }
.contact-card p { margin: 4px 0; }

footer { border-top: 1px solid var(--border); }
.foot-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; max-width: 820px; margin: 0 auto; padding: 28px 24px; }
.foot-inner p { font-size: 13px; color: var(--muted); margin: 0; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--green-deep); text-decoration: underline; }

@media (max-width: 600px) {
  h1 { font-size: 30px; }
  .hero { padding-top: 36px; }
  .toc.two-col ol { columns: 1; }
}
