
/* Poppins, self-hosted. The CSP forbids third-party origins, and a webfont CDN
   would hand someone else a log of every visit to the privacy policy. */
@font-face {
  font-family: "Poppins"; font-style: normal; font-display: swap;
  font-weight: 400; src: url("/fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-display: swap;
  font-weight: 500; src: url("/fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-display: swap;
  font-weight: 600; src: url("/fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins"; font-style: normal; font-display: swap;
  font-weight: 700; src: url("/fonts/poppins-700.woff2") format("woff2");
}

/* Red, white and black, from lululemon's own stylesheet. Dark mode swaps the
   ground and the ink and keeps the red. */
:root {
  color-scheme: light dark;
  --ink: #140f0f; --muted: #505759; --bg: #fdfdf8; --soft: #f3f3f2;
  --line: #d1d1d1; --accent: #ff4646; --accent-press: #c8102e; --accent-ink: #ffffff;
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink:#fdfdf8; --muted:#a9a5a2; --bg:#0d0a0a; --soft:#1d1818; --line:#2f2c2c;
    --accent-press:#ff6b6b;
  }
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 16px/1.65 var(--font);
}
.wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }
a { color: var(--accent); }

header.site {
  border-bottom: 1px solid var(--line); padding: 18px 0; margin-bottom: 48px;
}
header.site .wrap { display: flex; align-items: center; gap: 14px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; text-decoration: none; color: var(--ink); }
.brand img { width: 26px; height: 26px; border-radius: 6px; display: block; }
nav { margin-left: auto; display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 600; }
nav a:hover { color: var(--ink); }

h1 { font-size: 32px; line-height: 1.2; letter-spacing: -.025em; margin: 0 0 12px; }
h2 { font-size: 19px; letter-spacing: -.015em; margin: 40px 0 10px; }
h3 { font-size: 15px; margin: 24px 0 6px; }
p, li { color: var(--ink); }
.lede { font-size: 18px; color: var(--muted); margin: 0 0 32px; }
.updated { color: var(--muted); font-size: 14px; margin-bottom: 32px; }

.card {
  border: 1px solid var(--line); border-radius: 12px; padding: 22px;
  margin-bottom: 16px; background: var(--soft);
}
.card h2 { margin: 0 0 6px; font-size: 17px; }
.card p { margin: 0 0 12px; color: var(--muted); font-size: 15px; }
.price { font-weight: 700; }

.btn {
  display: inline-block; background: var(--accent); color: var(--accent-ink);
  text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 10px 18px; border-radius: 9px;
}
.btn.ghost { background: transparent; color: var(--accent); border: 1px solid var(--line); }

table { border-collapse: collapse; width: 100%; margin: 16px 0; font-size: 15px; }
th, td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }

footer.site {
  border-top: 1px solid var(--line); margin-top: 72px; padding: 28px 0 56px;
  color: var(--muted); font-size: 14px;
}
footer.site .wrap { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
footer.site nav { margin-left: auto; }
