/* Vault landing pages (/vs/* and /for/*).
   Shared with index.html visually but pulled out as a stylesheet
   so the dozen+ SEO pages stay in sync from one place. */

:root {
  --gap: 28px;
  --col-gap: 56px;
  --text: #000;
  --muted: #555;
  --rule: #000;
  --bpd-gold: #c8a030;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--text);
  font-family: -apple-system, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
}

body {
  display: flex;
  flex-direction: column;
}

.page {
  flex: 1;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 32px 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top h1 { font-size: 26px; font-weight: 700; margin: 0; letter-spacing: -0.01em; }
.top .sub { margin: 0; color: var(--muted); font-size: 13px; }
.top .sub a.bpd-link,
.top .sub a.home-link {
  color: var(--bpd-gold);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 160, 48, 0.4);
}
.top .sub a.bpd-link:hover,
.top .sub a.home-link:hover { color: #8a6f1d; border-bottom-color: #8a6f1d; }

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* Landing-specific: page subtitle that sits below the masthead. */
.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.lede {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px var(--col-gap);
  flex: 1;
}
.col { display: flex; flex-direction: column; gap: 10px; }

h2 {
  font-size: 13px;
  font-weight: 700;
  margin: 8px 0 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
}
h2:first-child { margin-top: 0; }
p { margin: 0; }
.intro { font-size: 16px; line-height: 1.5; }
.closing { color: var(--muted); font-size: 13px; line-height: 1.45; }
small { color: var(--muted); font-size: 12px; }
a { color: #000; }

ul.tight {
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
ul.tight li { margin-bottom: 4px; }

table { border-collapse: collapse; width: 100%; font-size: 13.5px; }
th, td { text-align: left; padding: 4px 12px 4px 0; vertical-align: top; }
th { font-weight: 600; color: var(--muted); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding-bottom: 6px; }
td:first-child { font-weight: 600; }
.plans td:last-child { color: var(--bpd-gold); font-weight: 600; white-space: nowrap; }

/* Cross-link card (siblings, home). Appears near the bottom of every page. */
.crosslinks {
  margin-top: 8px;
  padding: 10px 0 0;
  border-top: 1px solid var(--rule);
}
.crosslinks .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.crosslinks ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13px;
}
.crosslinks a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.crosslinks a:hover { border-bottom-color: #000; }

/* CTA button mirrors the login button on the home page. */
.cta {
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  padding: 7px 18px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  text-decoration: none;
  margin-top: 6px;
}
.cta:hover { background: #000; color: #fff; }

.bpd-sig,
.bpd-sig-name,
.bpd-sig-label {
  font-family: -apple-system, system-ui, sans-serif;
}

@media (max-width: 720px) {
  .page { padding: 16px 18px 10px; gap: 10px; }
  .top h1 { font-size: 22px; }
  .lede { font-size: 19px; }
  .grid { grid-template-columns: 1fr; gap: 4px; }
  .col + .col { margin-top: 4px; }
  .intro { font-size: 15px; }
  h2 { font-size: 12px; margin-top: 12px; }
}
