/* Shared styles for Synth's static marketing/content pages (about, terms,
   privacy, pricing, and the SEO/GEO content pages). Kept separate from
   synth.html's inline styles since these pages are plain static HTML, not
   part of the SPA — but the palette/type intentionally match the app. */

* { box-sizing: border-box; }

:root {
  --cream: #fffefb;
  --ink: #201515;
  --muted: #605d52;
  --border: #c5c0b1;
  --orange: #ff4f00;
  --orange-dark: #e64600;
  --panel-dark: #201515;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange-dark); }
a:hover { color: var(--orange); }

.site-header {
  background: var(--cream);
  color: var(--ink);
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.site-header-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 0;
}

.site-header-logo {
  height: 40px;
  width: auto;
  display: block;
}

.site-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--ink);
}

.site-header-nav a:hover {
  background: #f8f4f0;
  color: var(--ink);
}

.site-header-nav a.cta {
  background: var(--orange);
  color: var(--cream);
}

.site-header-nav a.cta:hover {
  background: var(--orange-dark);
  color: var(--cream);
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

main.wide { max-width: 1080px; }

.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin: 0 0 12px;
}

h1.page-title {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.page-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 720px;
  margin: 0 0 40px;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 28px 0 8px;
}

p, li {
  font-size: 15.5px;
  line-height: 1.7;
  color: #3a352f;
}

.lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: #f8f4f0;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 0 0 40px;
}

.updated-note {
  font-size: 13px;
  color: var(--muted);
  margin: -8px 0 32px;
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 32px;
  font-size: 14.5px;
}

table.compare th, table.compare td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

table.compare th {
  background: #f8f4f0;
  font-weight: 700;
}

table.compare td.yes { color: #1a7a3c; font-weight: 600; }
table.compare tr.highlight td { background: #fff8f2; }
table.compare tr.highlight td:first-child { font-weight: 700; }

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 20px 16px 58px;
  background: #f8f4f0;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

details.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px 20px;
  margin-bottom: 10px;
  background: var(--cream);
}

details.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 0;
  list-style: none;
}

details.faq-item summary::-webkit-details-marker { display: none; }

details.faq-item summary::after {
  content: '+';
  float: right;
  font-weight: 400;
  color: var(--muted);
}

details.faq-item[open] summary::after { content: '\2212'; }

details.faq-item p { padding-bottom: 16px; margin: 0; color: var(--muted); }

.cta-band {
  margin-top: 56px;
  padding: 40px;
  border-radius: 16px;
  background: var(--panel-dark);
  color: var(--cream);
  text-align: center;
}

.cta-band h2 {
  color: var(--cream);
  margin-top: 0;
}

.cta-band p {
  color: #d8d3c9;
  margin: 0 0 22px;
}

.cta-btn {
  display: inline-block;
  background: var(--orange);
  color: var(--cream);
  text-decoration: none;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
}

.cta-btn:hover { background: var(--orange-dark); color: var(--cream); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 8px 0 40px;
}

.price-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.price-card-name {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
}

.price-card.featured .price-card-name { color: var(--orange-dark); }

.price-card-amount {
  font-size: 36px;
  font-weight: 800;
  margin: 10px 0 4px;
}

.price-card-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.price-card li {
  font-size: 14px;
  padding: 6px 0;
  color: var(--ink);
}

.price-card li::before {
  content: '\2713';
  color: var(--orange-dark);
  font-weight: 700;
  margin-right: 8px;
}

.price-card-cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  padding: 12px;
  border-radius: 8px;
  background: #f8f4f0;
  color: var(--ink);
  border: 1px solid var(--border);
}

.price-card.featured .price-card-cta {
  background: var(--orange);
  color: var(--cream);
  border-color: var(--orange);
}

.price-card.featured .price-card-cta:hover { background: var(--orange-dark); color: var(--cream); }

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
}

.site-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer-brand {
  font-weight: 700;
  color: var(--ink);
}

.site-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.site-footer-links a:hover { color: var(--ink); text-decoration: underline; }

.site-footer-copyright {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  h1.page-title { font-size: 30px; }
  .page-sub { font-size: 17px; }
  main { padding: 32px 18px 64px; }
  .site-header-nav a span.full { display: none; }
}
