/* ATLAS demo presentation pages — TAVUS INC */
.demo-page {
  min-height: 100vh;
  background: #080808;
  color: #ece8e0;
  font-family: "Inter", system-ui, sans-serif;
}
.demo-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 56px;
}
.demo-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0d060;
  margin-bottom: 12px;
}
.demo-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 10px;
  line-height: 1.15;
}
.demo-lead {
  color: #a8a4a0;
  font-size: 1rem;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 24px;
}
.demo-card {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 20px;
}
.demo-preview {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin: 20px 0;
  min-height: 180px;
  background: linear-gradient(145deg, rgba(240,208,96,0.12), rgba(0,0,0,0.4));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.demo-preview--light {
  background: linear-gradient(145deg, #f8f9fb, #e8ecf2);
  color: #1a1a1a;
}
.demo-preview--full {
  background: linear-gradient(135deg, #0a0a12 0%, #1a1520 40%, rgba(240,208,96,0.15) 100%);
}
.demo-preview strong { font-size: 1.1rem; }
.demo-preview span { display: block; font-size: 0.8rem; opacity: 0.75; margin-top: 4px; }
.demo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.demo-features i {
  font-style: normal;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(240,208,96,0.12);
  color: #f0d060;
  border: 1px solid rgba(240,208,96,0.2);
}
.demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.demo-btn {
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.demo-btn--primary {
  background: linear-gradient(135deg, #f0d060, #c9a020);
  color: #1a1200;
}
.demo-btn--ghost {
  background: transparent;
  color: #ece8e0;
  border: 1px solid rgba(255,255,255,0.18);
}
.demo-back {
  color: #888;
  font-size: 0.84rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}
.demo-back:hover { color: #f0d060; }
.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.demo-tile {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, transform 0.2s;
}
.demo-tile:hover {
  border-color: rgba(240,208,96,0.35);
  transform: translateY(-2px);
}
.demo-tile h2 { font-size: 1.05rem; margin: 0 0 8px; }
.demo-tile p { margin: 0 0 16px; font-size: 0.82rem; color: #a8a4a0; line-height: 1.45; }
.demo-copy {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  color: #666;
  line-height: 1.5;
}
