/* PUTRE marketing pages ("front porch"): shared styles.
   Static, crawlable pages served straight from public/; tokens mirror
   tailwind.config.js so they read as the same product as the app. */
:root {
  --surface: #0a0a0b;
  --surface-raised: #1b1b1e;
  --border: #2c2c31;
  --content: #f3f3f5;
  --muted: #a2a2ac;
  --faint: #71717a;
  --brand: #6b7c3a;
  --brand-light: #8fa44d;
}
@font-face {
  font-family: 'Bernoru';
  src: url('/fonts/bernoru-blackultraexpanded.otf') format('opentype');
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--surface);
  color: var(--content);
  font-family:
    'DM Sans',
    system-ui,
    -apple-system,
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header.site {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-family: 'Bernoru', 'DM Sans', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
}
nav.site a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-left: 1.1rem;
}
nav.site a:hover {
  color: var(--content);
}
nav.site a.cta {
  color: #fff;
  background: var(--brand);
  padding: 0.45rem 0.9rem;
  border-radius: 0.5rem;
  font-weight: 600;
}
nav.site a.cta:hover {
  background: var(--brand-light);
}

main {
  padding: 3.5rem 0 4rem;
}
h1 {
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.75rem;
}
.lede {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 2.5rem;
}
h2 {
  font-size: 1.25rem;
  color: #fff;
  margin: 2.5rem 0 0.5rem;
}
p,
li {
  color: var(--muted);
  font-size: 1rem;
}
strong {
  color: var(--content);
}
a {
  color: var(--brand-light);
}
ul {
  padding-left: 1.2rem;
}
li {
  margin-bottom: 0.4rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  border-radius: 0.65rem;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-light);
}
.btn-secondary {
  border: 1px solid var(--border);
  color: var(--content);
  background: var(--surface-raised);
}
.btn-secondary:hover {
  border-color: var(--faint);
}

.card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.25rem 1.4rem;
  margin: 1rem 0;
}
.card h3 {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1.02rem;
}
.card p {
  margin: 0;
  font-size: 0.95rem;
}

footer.site {
  border-top: 1px solid var(--border);
  padding: 2rem 0 3rem;
  font-size: 0.85rem;
  color: var(--faint);
}
footer.site a {
  color: var(--faint);
  text-decoration: none;
  margin-right: 1rem;
}
footer.site a:hover {
  color: var(--muted);
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.6rem;
  }
  nav.site a {
    margin-left: 0.7rem;
    font-size: 0.8rem;
  }
}
