/* Plain host-page styling for the demo pages — deliberately unrelated to
   the widget's own tokens, to prove Shadow DOM isolation holds against a
   real page stylesheet (not just an empty host). */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #222;
  background: #fdfcf9;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid #e2ddd0;
  background: #fff;
}

.site-header__brand {
  font-weight: bold;
  font-size: 20px;
}

.site-header__nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #444;
}

.site-header__nav a.active {
  color: #b4559b;
  font-weight: bold;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 40px 200px;
}

.page--narrow,
.page--article {
  max-width: 680px;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.cards,
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.card {
  padding: 24px;
  border: 1px solid #e2ddd0;
  border-radius: 8px;
  background: #fff;
}

.card h2 {
  margin-top: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b4559b;
  font-size: 12px;
}

.byline {
  color: #888;
  font-size: 14px;
}

.site-footer {
  padding: 24px 40px;
  border-top: 1px solid #e2ddd0;
  color: #888;
  font-size: 13px;
}
