/* Cloud Services Platform - shared stylesheet */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  color: #1f2937;
  line-height: 1.6;
  background: #f9fafb;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { font-weight: 600; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.logo-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: #2563eb;
  border-radius: 50%;
}
.nav nav { display: flex; gap: 24px; }
.nav nav a {
  color: #4b5563;
  text-decoration: none;
  font-size: 14px;
}
.nav nav a:hover { color: #111827; }
.nav nav a.active { color: #2563eb; font-weight: 500; }

/* Layout */
main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 32px;
}
main.doc { max-width: 720px; }
main.doc.center { text-align: center; }

/* Hero */
.hero {
  text-align: center;
  padding: 64px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 32px;
}
.hero.compact { padding: 32px 16px; }
.hero h1 { font-size: 36px; margin: 0 0 16px; color: #111827; }
.lead { font-size: 18px; color: #4b5563; max-width: 620px; margin: 0 auto 24px; }
.cta { display: flex; gap: 12px; justify-content: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  background: #fff;
  transition: all 0.15s;
}
.btn:hover { border-color: #9ca3af; }
.btn.primary {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.btn.primary:hover { background: #1d4ed8; }

/* Features grid */
.features { padding: 32px 0; }
.features h2, .status h2, .faq h2 { font-size: 24px; margin-bottom: 24px; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.card h3 { margin: 0 0 8px; font-size: 16px; color: #111827; }
.card p { margin: 0; font-size: 14px; color: #4b5563; }

/* Status */
.status { margin-top: 32px; }
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 6px;
}
.dot.ok { background: #22c55e; }
.muted { color: #6b7280; font-size: 14px; }

/* Pricing plans */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 32px 0;
}
.plan {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  text-align: center;
}
.plan.featured {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}
.plan h3 { font-size: 18px; margin: 0 0 16px; }
.plan .price { font-size: 32px; font-weight: 600; color: #111827; margin: 0 0 24px; }
.plan .per { font-size: 14px; color: #6b7280; font-weight: normal; }
.plan ul { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.plan li { padding: 6px 0; color: #4b5563; font-size: 14px; }
.plan li::before { content: "✓ "; color: #22c55e; font-weight: bold; }

/* FAQ */
.faq h3 { font-size: 16px; margin: 24px 0 8px; color: #111827; }
.faq p { color: #4b5563; margin: 0 0 16px; }

/* Doc pages */
.doc h1 { font-size: 32px; margin: 0 0 16px; }
.doc h2 { font-size: 20px; margin: 32px 0 12px; color: #111827; }
.doc p, .doc li { color: #374151; }
.doc a { color: #2563eb; }
.doc ul { padding-left: 20px; }
.doc address { font-style: normal; line-height: 1.8; color: #4b5563; }

/* Footer */
footer {
  border-top: 1px solid #e5e7eb;
  background: #fff;
  margin-top: 64px;
}
footer .row {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6b7280;
}
footer .row a { color: #6b7280; text-decoration: none; }
footer .row a:hover { color: #111827; }
