@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --teal-950: #04211c;
  --teal-900: #052e28;
  --teal-800: #0a423a;
  --teal-700: #105049;
  --teal-600: #155a57;
  --teal-500: #007f6d;
  --teal-400: #00a991;
  --teal-300: #4fc3af;
  --teal-200: #a5e0d4;
  --teal-100: #e6f6f4;
  --teal-50: #f3fbf9;

  --lavender: #9c8cc4;
  --terracotta: #c4724e;

  --ink: #0b1f1b;
  --ink-secondary: #475467;
  --ink-muted: #8a9b97;

  --canvas: #f5f9f8;
  --glass-fill: rgba(255, 255, 255, 0.6);
  --glass-fill-strong: rgba(255, 255, 255, 0.82);
  --glass-stroke: rgba(255, 255, 255, 0.5);
  --glass-highlight: rgba(255, 255, 255, 0.65);
  --hairline: rgba(5, 30, 26, 0.08);
  --shadow: rgba(11, 42, 36, 0.12);

  color-scheme: light;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: drift 34s ease-in-out infinite;
}

.blob-a {
  width: 70vw;
  height: 70vw;
  top: -18vw;
  left: -14vw;
  background: radial-gradient(circle, var(--teal-400), transparent 70%);
}

.blob-b {
  width: 55vw;
  height: 55vw;
  top: 8vw;
  right: -18vw;
  background: radial-gradient(circle, var(--lavender), transparent 70%);
  animation-delay: -11s;
}

.blob-c {
  width: 60vw;
  height: 60vw;
  bottom: -22vw;
  left: -6vw;
  background: radial-gradient(circle, var(--terracotta), transparent 70%);
  animation-delay: -22s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(3%, 4%) scale(1.06); }
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.glass {
  background: var(--glass-fill);
  border: 1px solid var(--glass-stroke);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 22px -4px var(--shadow);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--glass-highlight), transparent 55%);
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.3px;
}

.brand img { width: 30px; height: 30px; }

.badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--teal-100);
  color: var(--teal-700);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #98a2b3;
  box-shadow: 0 0 0 3px rgba(152, 162, 179, 0.18);
}

.status-dot.ok {
  background: #12b76a;
  box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.2);
}

.status-dot.down {
  background: #f04438;
  box-shadow: 0 0 0 3px rgba(240, 68, 56, 0.2);
}

.hero {
  padding: 48px 40px;
  margin-bottom: 20px;
  background: linear-gradient(150deg, var(--teal-950), var(--teal-800) 55%, var(--teal-600));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero::before { background: linear-gradient(to bottom, rgba(255,255,255,0.14), transparent 55%); }

.hero h1 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin: 0 0 14px;
  position: relative;
}

.hero p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 0 28px;
  position: relative;
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; position: relative; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:active { transform: scale(0.96); }

.btn-primary {
  background: #fff;
  color: var(--teal-800);
}

.btn-primary:hover { opacity: 0.92; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.2); }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin: 40px 4px 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.card {
  padding: 20px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -8px var(--shadow);
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 14px;
  position: relative;
}

.card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: -0.1px;
  position: relative;
}

.card p {
  font-size: 12.5px;
  color: var(--ink-secondary);
  line-height: 1.5;
  margin: 0 0 12px;
  position: relative;
}

.card .count {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-600);
  position: relative;
}

.footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }

.chip {
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--glass-fill-strong);
  border: 1px solid var(--hairline);
  color: var(--ink-secondary);
}

.footer-note {
  font-size: 12.5px;
  color: var(--ink-muted);
}
