/* The shared sub-page layer: nav, container, footer and base typography.
 *
 * Used by the document-style pages (pricing, privacy, terms, refund, success),
 * where this exact block was duplicated five times byte-for-byte.
 *
 * NOT loaded by index.html, and that is deliberate rather than an oversight:
 * the rule below sets `body { display: flex; flex-direction: column }`, and the
 * homepage's body is not a flex container. Linking this there would silently
 * relayout it. The homepage and the trial/resend pages keep their own component
 * styles until unifying them is made as a design decision instead of smuggled
 * into a refactor.
 *
 * Tokens come from tokens.css — load that first.
 */
html { background: var(--bg); color: var(--text); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { min-height: 100vh; display: flex; flex-direction: column; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 2rem; max-width: 1100px; margin: 0 auto; width: 100%; border-bottom: 1px solid var(--border); }
.nav-logo { font-family: var(--mono); font-size: 1.2rem; font-weight: 700; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a { font-family: var(--mono); font-size: 0.8rem; color: var(--text-dim); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--cyan); }
.container { flex: 1; max-width: 760px; margin: 0 auto; padding: 4rem 2rem 6rem; width: 100%; }
.meta-label { font-family: var(--mono); font-size: 0.75rem; color: var(--cyan-dim); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; line-height: 1.1; }
.effective { font-family: var(--mono); font-size: 0.85rem; color: var(--text-dim); margin-bottom: 3rem; }
h2 { font-size: 1.4rem; font-weight: 600; margin-top: 2.8rem; margin-bottom: 1rem; color: var(--text); letter-spacing: -0.01em; }
h3 { font-size: 1.05rem; font-weight: 600; margin-top: 1.8rem; margin-bottom: 0.6rem; color: var(--text); }
p, li { font-size: 1rem; line-height: 1.75; color: var(--text-dim); margin-bottom: 1rem; }
ul { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }
strong { color: var(--text); font-weight: 600; }
a { color: var(--cyan); text-decoration: none; border-bottom: 1px solid var(--cyan-dim); transition: opacity 0.2s; }
a:hover { opacity: 0.7; }
.callout { background: var(--bg-card); border-left: 3px solid var(--cyan); padding: 1.2rem 1.5rem; margin: 2rem 0; border-radius: 0 6px 6px 0; }
.callout p { margin-bottom: 0; color: var(--text); }
.footer { border-top: 1px solid var(--border); padding: 2.5rem 2rem; text-align: center; }
.footer-logo { font-family: var(--mono); font-size: 1.1rem; color: var(--text); margin-bottom: 0.6rem; }
.footer-logo span { color: var(--cyan); }
.footer-tag { font-family: var(--mono); font-size: 0.75rem; color: var(--text-dim); margin-bottom: 1rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-family: var(--mono); font-size: 0.75rem; color: var(--text-dim); border-bottom: none; }
.footer-links a:hover { color: var(--cyan); }
