/* Demo Page Styles */

/* Demo Intro */
.demo-intro {
  background: var(--warm-off-white);
  padding: clamp(60px, 8vw, 100px) 0 clamp(40px, 6vw, 60px);
  text-align: center;
}

.demo-intro h1 {
  font-size: var(--text-hero);
  margin-bottom: 24px;
}

.demo-intro .section-intro {
  max-width: 800px;
  margin: 0 auto;
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--medium-gray);
}

/* Demo Step */
.demo-step {
  padding: var(--section-padding) 0;
  background: white;
}

.demo-step:nth-of-type(even) {
  background: var(--warm-off-white);
}

.demo-step .container {
  max-width: 1000px;
}

/* Step Number */
.step-number {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-brick);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.demo-step h2 {
  font-size: var(--text-section);
  margin-bottom: 20px;
}

.demo-step p {
  font-size: var(--text-body);
  line-height: 1.7;
  color: var(--warm-charcoal);
  margin-bottom: 32px;
  max-width: 700px;
}

/* Demo Visual Placeholder */
.demo-visual-placeholder {
  width: 100%;
  min-height: 400px;
  background: var(--badge-bg);
  border: 2px dashed var(--light-border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--medium-gray);
  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-style: italic;
  padding: 32px;
  text-align: center;
}

.demo-visual-placeholder::before {
  content: "[Screenshot/Visual Placeholder]";
}

/* Demo Timeline Callout */
.demo-timeline {
  background: var(--deep-slate);
  color: white;
  padding: clamp(40px, 6vw, 60px) 0;
  text-align: center;
}

.demo-timeline h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.demo-timeline p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .demo-intro {
    padding: 40px 0 32px;
  }

  .demo-step {
    padding: 32px 0;
  }

  .demo-visual-placeholder {
    min-height: 300px;
  }

  .demo-timeline {
    padding: 32px 0;
  }
}
