:root {
  --bg: #1a1f27;
  --surf: #232a34;
  --ink: #eef1f5;
  --muted: #939ba8;
  --line: #323a46;
  --accent: #e86a2a;
  --accent-ink: #1a0c05;
  --radius: 12px;
  --sans: "Manrope", "IBM Plex Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 85% -8%, rgba(232, 106, 42, 0.16), transparent 55%),
    radial-gradient(700px 380px at 10% 40%, rgba(35, 42, 52, 0.9), transparent 60%),
    var(--bg);
  line-height: 1.45;
}

a { color: inherit; }

.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 10vh, 88px) 20px 36px;
  animation: rise 0.7s ease both;
}

.brand {
  margin: 0 0 18px;
  font-size: clamp(40px, 11vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.brand em {
  font-style: normal;
  color: var(--accent);
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(22px, 4.5vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 16px;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.feed-section {
  animation: rise 0.8s ease 0.12s both;
}

.feed-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.feed-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.feed-meta {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.feed {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-status,
.feed-empty {
  margin: 0;
  padding: 20px 0;
  color: var(--muted);
  font-size: 14px;
}

.feed-item {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.feed-item time {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.feed-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.feed-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.feed-item .links {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  font-size: 13px;
  font-weight: 600;
}

.feed-item .links-sep {
  color: var(--line);
  font-weight: 400;
  user-select: none;
}

.feed-item .links a {
  color: var(--accent);
  text-decoration: none;
}

.feed-item .links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer p { margin: 0; }
.footer .fine { font-size: 12px; opacity: 0.85; }

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
