/* Application styles */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Homepage Styles */
.homepage {
  min-height: 100vh;
  padding: 40px 0;
}

.header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 18px;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

.headline {
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -1px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.content-block {
  padding: 30px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.content-block:hover {
  border-color: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.content-block h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 500;
}

.content-block p {
  color: #333;
  line-height: 1.8;
}

.value-props {
  margin: 60px 0;
  padding: 40px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
}

.value-props h3 {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 400;
}

.value-props ul {
  list-style: none;
  padding-left: 0;
}

.value-props li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #333;
}

.value-props li:before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.cta-section {
  text-align: center;
  margin: 80px 0;
  padding: 60px 40px;
  background: #000;
  color: #fff;
}

.cta-section h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 300;
}

.cta-section p {
  margin-bottom: 30px;
  color: #ccc;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px;
}

.btn:hover {
  background: #000;
  color: #fff;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-primary:hover {
  background: #333;
  border-color: #333;
}

.btn-secondary {
  border-color: #666;
  color: #666;
}

.btn-secondary:hover {
  background: #666;
  color: #fff;
  border-color: #666;
}

.btn-outline {
  background: transparent;
  border: 1px solid #ccc;
  color: #666;
}

.btn-outline:hover {
  border-color: #000;
  color: #000;
  background: transparent;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
  background: #fff;
  color: #000;
}

.btn-large:hover {
  background: #f0f0f0;
}

button.btn {
  font-family: inherit;
}

/* User Section */
.user-section {
  text-align: center;
  padding: 40px;
}

.user-section h2 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
}

.user-info {
  font-size: 20px;
  margin-bottom: 10px;
}

.org-info {
  color: #666;
  margin-bottom: 30px;
}

.actions {
  margin-top: 30px;
}

/* Notices and Alerts */
.notice, .alert {
  padding: 15px 20px;
  margin: 0 0 20px 0;
  border: 1px solid;
  text-align: center;
}

.notice {
  background: #f0f9ff;
  border-color: #0066cc;
  color: #0066cc;
}

.alert {
  background: #fef2f2;
  border-color: #dc2626;
  color: #dc2626;
}

/* System User Banner */
.system-banner {
  background: #000;
  color: #fff;
  padding: 10px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.system-banner a {
  color: #fff;
  text-decoration: underline;
  margin-left: 15px;
}

body.with-system-banner {
  padding-top: 40px;
}

/* Demo Page */
.demo-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  text-align: center;
}

.demo-container h1 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 30px;
}

.demo-video {
  width: 100%;
  max-width: 640px;
  height: 360px;
  margin: 30px auto;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.demo-content {
  margin: 40px 0;
  line-height: 1.8;
}

.demo-content h2 {
  font-size: 24px;
  margin: 30px 0 15px;
  font-weight: 400;
}

.demo-content p {
  margin-bottom: 20px;
  color: #333;
}