/* DWMT landing — mirrors src/theme/tokens.ts. Dark only, one gold accent. */
:root {
  --bg: #08090B;
  --surface: #111317;
  --surface2: #181B21;
  --hairline: rgba(255, 255, 255, 0.07);
  --hairline-strong: rgba(255, 255, 255, 0.14);
  --text: #F3F4F6;
  --text-muted: #9BA1AA;
  --text-faint: #8A9099; /* was #666C75; lightened to pass WCAG AA 4.5:1 on --bg */
  --accent: #E8C48A;
  --accent-wash: rgba(232, 196, 138, 0.12);
  --green: #6FCFA6;
  --red: #D07257;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: "Newsreader", Georgia, serif; font-weight: 500; }
.wrap { max-width: 640px; margin: 0 auto; padding: 0 20px; }

header.site { padding: 28px 0; }
header.site .wrap { display: flex; align-items: baseline; justify-content: space-between; }
.wordmark { font-family: "Newsreader", Georgia, serif; font-size: 26px; color: var(--accent); text-decoration: none; }
.byline { font-size: 12px; color: var(--text-faint); }

.hero { padding: 72px 0 56px; text-align: left; }
.hero h1 { font-family: "Newsreader", Georgia, serif; font-weight: 500; font-size: 40px; line-height: 1.06; }
.hero h1 em { font-style: italic; }
.hero p.sub { margin-top: 18px; color: var(--text-muted); max-width: 480px; }
.store { display: inline-block; margin-top: 28px; padding: 14px 22px; border: 1px solid var(--hairline-strong); border-radius: 999px; color: var(--text); text-decoration: none; font-weight: 600; font-size: 15px; }
.store span { color: var(--text-faint); font-weight: 400; font-size: 13px; margin-left: 8px; }
.store:hover { border-color: rgba(232, 196, 138, 0.55); }

section { padding: 40px 0; border-top: 1px solid var(--hairline); }
h2 { font-family: "Newsreader", Georgia, serif; font-weight: 500; font-size: 26px; margin-bottom: 20px; }
.feature { padding: 16px 0; border-bottom: 1px solid var(--hairline); }
.feature:last-child { border-bottom: none; }
.feature b { display: block; font-size: 16px; }
.feature b .flag-green { color: var(--green); }
.feature b .flag-red { color: var(--red); }
.feature p { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .plans { grid-template-columns: 1fr; } }
.plan { background: var(--surface); border: 1px solid var(--hairline); border-radius: 20px; padding: 20px; }
.plan.premium { border-color: rgba(232, 196, 138, 0.45); background: var(--accent-wash); }
.plan h3 { font-size: 16px; }
.plan .price { font-family: "Newsreader", Georgia, serif; font-size: 30px; margin: 8px 0 2px; }
.plan .per { color: var(--text-faint); font-size: 13px; }
.plan ul { list-style: none; margin-top: 14px; }
.plan li { color: var(--text-muted); font-size: 14px; padding: 4px 0; }
.plan .note { margin-top: 12px; color: var(--text-faint); font-size: 12px; }

.legal-body h1 { font-family: "Newsreader", Georgia, serif; font-weight: 500; font-size: 32px; margin: 48px 0 6px; }
.legal-body .updated { color: var(--text-faint); font-size: 13px; margin-bottom: 28px; }
.legal-body h2 { font-size: 20px; margin: 28px 0 8px; }
.legal-body p, .legal-body li { color: var(--text-muted); font-size: 15px; margin-bottom: 10px; }
.legal-body ul { padding-left: 20px; margin-bottom: 10px; }
.legal-body a { color: var(--accent); }

footer.site { border-top: 1px solid var(--hairline); padding: 32px 0 48px; margin-top: 40px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 16px; align-items: baseline; justify-content: space-between; }
footer.site nav a { color: var(--text-faint); text-decoration: none; font-size: 13px; margin-right: 16px; }
footer.site nav a:hover { color: var(--text-muted); }
footer.site .fine { color: var(--text-faint); font-size: 12px; }
footer.site .fine a { color: var(--text-faint); }

/* Keyboard focus: visible gold ring on every interactive element. */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
