* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: #134e56;
  color: #f3efe6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(243,239,230,0.25);
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}
header a.brand {
  color: #f3efe6;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}
header nav { display: flex; gap: 20px; font-size: 14px; }
header nav a {
  color: #c9bfae;
  text-decoration: none;
}
header nav a:hover { color: #f3efe6; }
main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.card {
  width: 100%;
  max-width: 560px;
}
.signal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #e4d7c0;
}
.signal .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c47a3a;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
  color: #f3efe6;
}
.lead {
  color: #c9bfae;
  margin-bottom: 32px;
  max-width: 48ch;
}
.tasks {
  border: 1px solid rgba(243,239,230,0.25);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.tasks ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tasks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f3efe6;
  font-size: 15px;
}
.tasks li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: #e4d7c0;
}
.status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 13px;
  color: #c9bfae;
}
.status .live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status .live::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c47a3a;
}
footer {
  text-align: center;
  font-size: 14px;
  color: #c9bfae;
  padding-top: 16px;
  border-top: 1px solid rgba(243,239,230,0.25);
  margin-top: 40px;
}
@media (max-width: 480px) {
  body { padding: 16px; }
  h1 { font-size: 22px; }
  .tasks { padding: 16px 20px; }
}
