:root {
  --bg: #0c0d10;
  --panel: #15171c;
  --line: #2a2e38;
  --text: #e8eaef;
  --muted: #9aa3b2;
  --accent: #c4a35a;
  --accent-2: #e0c07a;
  --font: "Figtree", system-ui, sans-serif;
  --display: "Sora", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.7; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
.container { width: min(1020px, calc(100% - 32px)); margin: 0 auto; }

.site-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(196,163,90,.12), transparent 50%),
    linear-gradient(180deg, #0c0d10, #12141a 60%, #0c0d10);
}

.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(12,13,16,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; gap: 16px; }
.brand { font-family: var(--display); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.brand span { display: block; font-size: .72rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.menu { display: flex; gap: 14px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.menu a { color: var(--muted); font-weight: 700; font-size: .9rem; text-decoration: none; }
.menu a:hover, .menu a.active { color: var(--accent-2); }

.hero {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  margin: 0 0 12px; font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.03em; color: #fff;
}
.hero p { margin: 0; color: var(--muted); max-width: 60ch; }

.section { padding: 48px 0; }
.section h2 {
  margin: 0 0 16px; font-family: var(--display); font-size: 1.45rem; color: #fff;
}

.grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.grid a {
  display: block; padding: 14px 16px; background: var(--panel);
  border: 1px solid var(--line); color: var(--text); font-weight: 700;
  text-decoration: none; transition: border-color .2s, transform .2s;
}
.grid a:hover { border-color: var(--accent); transform: translateY(-2px); text-decoration: none; }
.grid a small { display: block; color: var(--muted); font-weight: 500; font-size: .78rem; margin-top: 4px; }

.article {
  background: var(--panel); border: 1px solid var(--line); padding: 28px;
}
.article h2 { margin: 28px 0 12px; font-family: var(--display); font-size: 1.25rem; color: #fff; }
.article h2:first-child { margin-top: 0; }
.article p, .article li { color: #c9ced8; }
.article ul { padding-left: 1.2rem; }
.meta-row { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }

.breadcrumb { color: var(--muted); font-size: .88rem; margin-bottom: 10px; }
.breadcrumb a { color: var(--muted); }

.footer {
  border-top: 1px solid var(--line); padding: 28px 0; margin-top: 20px;
  color: var(--muted); font-size: .9rem;
}

@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
}
