:root{
  --blue-deep: #0a1a3c;
  --blue: #1d4ed8;
  --blue-pale: #eaf0ff;
  --yellow: #ffcc00;
  --paper: #fafafa;
  --ink: #10142a;
  --ink-soft: #5b5f77;
  --content-width: 760px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

a { color: inherit; }

.wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  border-bottom: 3px solid var(--ink);
  padding: 22px 0;
}

header .wrap {
  max-width: 680px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo .dot {
  width: 11px;
  height: 11px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: inline-block;
}

/* Hero */
.hero {
  background: var(--blue-deep);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 72px 24px 56px;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.02rem;
  color: var(--blue-pale);
  line-height: 1.6;
  margin: 0;
}

/* Status strip (footer area) */
.status {
  background: var(--yellow);
  border-top: 3px solid var(--ink);
  margin-top: 40px;
}

.status-inner {
  display: flex;
  justify-content: center;
  gap: 36px;
  padding: 14px 24px;
  font-size: 0.76rem;
  font-weight: 700;
  flex-wrap: wrap;
  text-align: center;
}

.status-inner span.label {
  opacity: 0.55;
  font-weight: 600;
  margin-right: 5px;
}

/* Main / posts */
main {
  padding: 56px 0 24px;
}

main h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 28px;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.posts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.post {
  padding: 30px 36px;
  background: #ffffff;
  border: 1px solid #e8e8ea;
  border-radius: 10px;
  text-align: left;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 12px;
}

.post-meta .tag {
  background: var(--blue-pale);
  padding: 3px 8px;
  border-radius: 4px;
}

.post-meta .date {
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.post h3 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.post p {
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.badge-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(29,78,216,0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(29,78,216,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(29,78,216,0); }
  100% { box-shadow: 0 0 0 0 rgba(29,78,216,0); }
}

footer {
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: center;
  padding: 22px 24px 44px;
}

@media (max-width: 480px) {
  .status-inner { gap: 22px; }
  .post { padding: 22px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .badge .pulse { animation: none; }
}
