:root {
  --bg: #faf9f7;
  --panel: #ffffff;
  --border: #e5e3df;
  --text: #1c1b1a;
  --muted: #6b675f;
  --accent: #b5541a;
  --accent-soft: #fbeee3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--panel);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-header nav {
  display: flex;
  gap: 24px;
}

.site-header nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.site-header nav a:hover {
  color: var(--text);
}

.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 64px);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 19px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 {
  font-size: 28px;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--muted);
  margin: 0 0 32px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.card-placeholder {
  background: transparent;
  border-style: dashed;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-icon {
  font-size: 28px;
}

.card h3 {
  margin: 0 0 2px;
  font-size: 18px;
}

.card-tag {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.badge-soon {
  background: var(--accent-soft);
  color: var(--accent);
}

.badge-live {
  background: #e6f4ea;
  color: #1f7a3f;
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

.empty-state {
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
}

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