
:root {
  --bg-1: #2b2f36;
  --bg-2: #3c434c;
  --text: #ffffff;
  --accent: #ff6a00;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  color: var(--text);
  font-family: Alata, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  line-height: 1.6;
}

a { color: var(--text); text-decoration: none; }
a.accent { color: var(--accent); }

.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 8;
  background: rgba(43,47,54,0.9); backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.logo { width: 40px; height: 40px; border-radius: 6px; background: #fff; object-fit: contain; }
.brand-text { display: grid; line-height: 1; }
.brand-line1 { font-family: 'Roboto Slab', serif; font-weight: 600; letter-spacing: 0.2px; }
.brand-line2 { font-size: 11px; letter-spacing: 2px; color: #ddd; }

/* Menu + dropdown */
.menu { display: flex; align-items: center; gap: 18px; }
.dropdown { position: relative; display: inline-block; }
.dropbtn { background: transparent; color: var(--text); border: 0; cursor: pointer; font: inherit; }
.dropdown-content {
  display: none; position: absolute; min-width: 220px; background: rgba(43,47,54,0.98);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 8px; top: 28px;
}
.dropdown-content a { display: block; padding: 8px 10px; border-radius: 8px; }
.dropdown-content a:hover { background: rgba(255,255,255,0.06); color: var(--accent); }
.dropdown:hover .dropdown-content { display: block; }

.hero {
  padding: 96px 0 72px;
  background: radial-gradient(1000px 400px at 20% 0%, rgba(255,106,0,0.12), transparent 60%),
              radial-gradient(1000px 400px at 80% 0%, rgba(255,106,0,0.12), transparent 60%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-inner { display: grid; place-items: center; min-height: 34vh; text-align: center; }
.hero h1 { font-family: 'Roboto Slab', serif; font-size: clamp(28px, 6vw, 44px); margin: 0 0 6px; }
.tag { font-size: 18px; opacity: 0.9; margin-bottom: 18px; }
.btn {
  display: inline-block; padding: 12px 18px; border-radius: 12px;
  background: var(--accent); color: white; font-weight: 600;
  box-shadow: 0 0 0 rgba(255,106,0,0); transition: box-shadow .25s, transform .25s;
}
.btn.outline { background: transparent; border: 1px solid var(--accent); color: var(--text); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,106,0,0.35); }

.section { padding: 56px 0; }
.section h2 { font-family: 'Roboto Slab', serif; font-size: 28px; margin: 0 0 16px; }

.cards-row { display: flex; gap: 16px; flex-wrap: wrap; }
.card {
  flex: 1 1 300px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card h3 { margin-top: 0; margin-bottom: 10px; }
.card ul { list-style: none; padding-left: 0; margin: 0; }
.card li { margin: 6px 0; opacity: 0.95; }

.glow:hover {
  transform: translateY(-4px);
  border-color: rgba(255,106,0,0.5);
  box-shadow: 0 10px 32px rgba(255,106,0,0.25), 0 0 0 1px rgba(255,106,0,0.3) inset;
}

.narrow { width: min(800px, 92%); }

.site-footer {
  margin-top: 24px; padding: 24px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
}
.footer-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); }
.footer-grid h4 { margin: 0 0 8px; }
.list { list-style: none; padding-left: 0; margin: 0; }
.list li { margin: 6px 0; }
.footer-bottom { padding-top: 12px; text-align: center; opacity: 0.9; font-size: 12px; }

/* Prose verbatim blocks */
.prose pre {
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.7;
  background: transparent;
  padding: 0;
  border: 0;
  color: var(--text);
}
