/* file: public/css/home.css */

.hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); gap: 22px; padding: 34px; margin-bottom: 22px; border: 1px solid rgba(197,211,225,.82); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,242,250,.78)); box-shadow: var(--shadow-md); }
.hero h1 { margin: 0; color: var(--text-strong); font-size: clamp(36px, 5vw, 68px); line-height: 1.05; letter-spacing: -.055em; }
.hero p { max-width: 820px; margin: 18px 0 0; color: #52657b; font-size: 16px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.hero-metrics { display: grid; gap: 12px; }
.role-card { min-height: 188px; display: flex; flex-direction: column; justify-content: space-between; }
.role-card .role-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: var(--brand-dark); background: var(--brand-soft); font-weight: 900; }
.demo-card { position: relative; min-height: 210px; overflow: hidden; }
.demo-card::after { content: attr(data-number); position: absolute; right: 14px; top: -12px; color: rgba(0,104,183,.07); font-size: 94px; font-weight: 950; line-height: 1; }
.demo-card > * { position: relative; z-index: 1; }
.layer-diagram { display: grid; gap: 14px; max-width: 980px; margin: 0 auto; }
.layer { padding: 18px 20px; border-radius: 16px; border: 1px solid #b9d6ea; background: linear-gradient(180deg, #fafdff, #eaf5fc); }
.layer:nth-child(3) { border-color: #f1d7a8; background: linear-gradient(180deg, #fffdf8, #fff6e8); }
.layer strong { display: block; margin-bottom: 5px; }

/* Status pages */
.center-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.status-page-card {
  width: min(680px, 100%);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.status-page-card h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.04em;
}

.status-page-card p:not(.eyebrow) {
  max-width: 540px;
  margin: 0 auto 24px;
  color: var(--muted);
}

.status-page-card .button-row {
  justify-content: center;
}
