:root {
  --cream: #FDEEF1;
  --cream-2: #F9DCE3;
  --sand: #F3C6D1;
  --terra: #D6336C;
  --terra-deep: #A61E4D;
  --ink: #3A1425;
  --ink-soft: #6B3A50;
  --paper: #FFF6F8;
  --clay: #F27BA3;
  --sun: #FFB1C8;
  --green: #1F8A5B;
  --yellow: #C48A12;
  --orange: #D2651A;
  --red: #C6284A;
  --line: rgba(58, 20, 37, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(242, 123, 163, 0.28), transparent 60%),
    radial-gradient(ellipse 55% 45% at 90% 20%, rgba(214, 51, 108, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255, 177, 200, 0.22), transparent 60%);
  z-index: 0;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.top, .shell, .foot {
  position: relative;
  z-index: 2;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 24px 8px;
}

.brand img { width: 118px; height: auto; }

.home-link {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.home-link:hover { color: var(--terra); }

.shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 24px 72px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px;
}

.title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  max-width: 14ch;
  margin-bottom: 12px;
}

.title[data-level="operational"] { color: var(--green); }
.title[data-level="degraded"] { color: var(--yellow); }
.title[data-level="major"] { color: var(--orange); }
.title[data-level="critical"] { color: var(--red); }

.lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 36ch;
  margin-bottom: 10px;
}

.stamp {
  font-size: 0.78rem;
  color: rgba(58, 20, 37, 0.48);
  margin-bottom: 36px;
}

.services { margin-bottom: 48px; }

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 246, 248, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  animation: rise 0.55s ease both;
}

.service:nth-child(2) { animation-delay: 0.05s; }
.service:nth-child(3) { animation-delay: 0.1s; }
.service:nth-child(4) { animation-delay: 0.15s; }
.service:nth-child(5) { animation-delay: 0.2s; }

.service-copy h3 {
  font-size: 1rem;
  font-weight: 650;
  margin-bottom: 2px;
}

.service-state {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.55);
}

.service[data-level="operational"] .dot { background: var(--green); }
.service[data-level="degraded"] .dot { background: var(--yellow); }
.service[data-level="major"] .dot { background: var(--orange); }
.service[data-level="critical"] .dot { background: var(--red); }

.service[data-level="operational"] .service-state { color: var(--green); }
.service[data-level="degraded"] .service-state { color: var(--yellow); }
.service[data-level="major"] .service-state { color: var(--orange); }
.service[data-level="critical"] .service-state { color: var(--red); }

.updates h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.update-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.update {
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 246, 248, 0.65);
  border: 1px solid var(--line);
  border-left: 3px solid var(--terra);
}

.update time {
  display: block;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(58, 20, 37, 0.48);
  margin-bottom: 8px;
}

.update p {
  font-size: 0.98rem;
  color: var(--ink);
  white-space: pre-wrap;
}

.empty {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.foot {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(58, 20, 37, 0.45);
}

.foot a:hover { color: var(--terra); }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 640px) {
  .shell { padding-top: 24px; }
  .service { padding: 16px; }
}
