/*
FILE: subsites/landing/landing.css
Purpose: Landing page specific styles
*/

/* Hero */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero .subtitle {
  font-size: 1.2rem;
  color: #4a4a6a;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.beta-notice {
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(74, 111, 165, .2);
  border-left: 5px solid #4a6fa5;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(35, 65, 61, .07);
  margin: 0 auto 32px;
  max-width: 700px;
  padding: 22px 26px;
  text-align: left;
}

.beta-notice .beta-label {
  color: #4a6fa5;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.beta-notice h3 {
  font-size: 1.25rem;
  margin: 0 0 8px;
}

.beta-notice p:not(.beta-label) {
  color: #4a4a6a;
  line-height: 1.55;
  margin: 0 0 10px;
}

.beta-contact {
  font-weight: 700;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* How it works */
.how-it-works {
  padding: 60px 20px;
  background: white;
}

.how-it-works h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

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

.step {
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #4a6fa5;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 16px;
}

.step h4 {
  margin-bottom: 12px;
}

/* Features */
.features {
  padding: 60px 20px;
  background: #f8f9fc;
}

.features h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

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

.feature {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature h4 {
  margin-bottom: 12px;
}

/* Vision */
.vision {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
  color: white;
  text-align: center;
}

.vision a {
  color: #667eea;
}

.vision a:hover {
  color: #764ba2;
}

.vision h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.vision p {
  margin-bottom: 16px;
  opacity: 0.9;
}

.vision-quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 24px;
}

/* CTA Final */
.cta-final {
  padding: 60px 20px;
  text-align: center;
  background: white;
}

.cta-final h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.cta-final .small {
  margin-top: 16px;
  font-size: 0.8rem;
  color: #666;
}
