:root {
  --bg: #14100e;
  --surface: #1f1916;
  --surface-2: #2a2220;
  --accent: #f2a65a;
  --accent-soft: #7a5b3a;
  --text: #f6efe8;
  --muted: #a99c90;
  --border: rgba(255, 255, 255, 0.08);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 860px; margin: 0 auto; padding: 0 22px; }

header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(20, 16, 14, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--text); }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
nav a { color: var(--muted); margin-left: 18px; font-size: 14px; font-weight: 600; }
nav a:hover { color: var(--text); text-decoration: none; }

.hero { padding: 76px 0 40px; text-align: center; }
.hero h1 { font-size: 44px; line-height: 1.15; margin: 0 0 14px; font-weight: 800; }
.hero h1 .amp { color: var(--accent); }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 560px; margin: 0 auto 26px; }
.hero .cta {
  display: inline-block; background: var(--accent); color: #1a1207;
  font-weight: 800; padding: 14px 26px; border-radius: 14px;
}
.hero .cta:hover { text-decoration: none; filter: brightness(1.05); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; padding: 30px 0 60px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 20px;
}
.card .emoji { font-size: 26px; }
.card h3 { margin: 10px 0 6px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

.page { padding: 40px 0 80px; }
.page h1 { font-size: 32px; margin: 0 0 6px; }
.page .updated { color: var(--muted); font-size: 13px; margin-bottom: 26px; }
.page h2 { font-size: 19px; margin: 30px 0 8px; }
.page p, .page li { color: #ddd3cb; font-size: 15px; }
.page ul { padding-left: 20px; }
.page strong { color: var(--text); }

footer.site { border-top: 1px solid var(--border); padding: 26px 0; color: var(--muted); font-size: 13px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }

@media (max-width: 560px) {
  .hero h1 { font-size: 32px; }
  nav a { margin-left: 12px; font-size: 13px; }
}
