:root {
  /* Mirrored from app/lib/core/theme/colors.dart (B 自然温柔派) */
  --mist:        #B8C5D6;
  --mist-dark:   #94A5BC;
  --cream:       #E8DCC8;
  --cream-light: #F4ECDD;
  --orange:      #E8A87C;
  --orange-dark: #D89164;
  --text-dark:   #2C3E5C;
  --text-mid:    #5C6E85;
  --text-muted:  #94A0AE;
  --bg:          #FAF7F2;
  --surface:     #FFFFFF;
  --border:      #ECE5DA;

  --radius-card: 14px;
  --radius-chip: 20px;
  --max-w:       720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
               'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--orange-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 120ms ease;
}
a:hover { border-color: var(--orange); }

header.site {
  padding: 24px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
header.site .wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.site .wordmark {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  border: none;
}
header.site nav a {
  color: var(--text-mid);
  margin-left: 24px;
  font-size: 14px;
  border: none;
}
header.site nav a:hover { color: var(--text-dark); }

main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 96px;
}

h1, h2, h3 {
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
h1 { font-size: 38px; font-weight: 700; margin: 0 0 16px; }
h2 { font-size: 22px; font-weight: 600; margin: 40px 0 12px; }
h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; }

p { margin: 0 0 16px; color: var(--text-mid); }
ul { padding-left: 20px; color: var(--text-mid); }
li { margin-bottom: 6px; }

.lede {
  font-size: 19px;
  color: var(--text-mid);
  margin: 0 0 32px;
}
.muted { color: var(--text-muted); font-size: 14px; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  margin: 16px 0;
}

.chip {
  display: inline-block;
  background: var(--cream-light);
  color: var(--text-mid);
  border-radius: var(--radius-chip);
  padding: 4px 12px;
  font-size: 13px;
  margin-right: 8px;
}

.cta {
  display: inline-block;
  background: var(--orange);
  color: white;
  border-radius: var(--radius-chip);
  padding: 12px 22px;
  font-weight: 600;
  border: none;
  margin-top: 12px;
}
.cta:hover { background: var(--orange-dark); border: none; }

.badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.badges .badge {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-chip);
  padding: 10px 18px;
  color: var(--text-mid);
  font-size: 14px;
}
.badges .badge.unavailable {
  color: var(--text-muted);
  font-style: italic;
}

footer.site {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  margin-top: 64px;
}
footer.site .wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}
footer.site nav a {
  color: var(--text-muted);
  margin-left: 20px;
  border: none;
}
footer.site nav a:hover { color: var(--text-mid); }

@media (max-width: 540px) {
  h1 { font-size: 30px; }
  h2 { font-size: 20px; }
  .lede { font-size: 17px; }
  main { padding: 32px 20px 64px; }
  footer.site .wrap {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  footer.site nav a { margin: 0 10px; }
}
