/* public/css/intro.css — intro page only */

body.intro-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.intro-main {
  flex: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  width: 100%;
}

/* ---- Header ---- */
.intro-header {
  text-align: center;
  margin-bottom: 40px;
}

.intro-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.intro-header h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.intro-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.intro-header strong {
  color: var(--text);
  font-weight: 700;
}

/* ---- Canvas wrapper ---- */
.intro-canvas-wrap {
  margin: 0 auto 40px;
  max-width: 900px;
}

.intro-canvas-wrap .chart-mock {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.intro-canvas-wrap .chart-mock .intro-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---- Footer CTA ---- */
.intro-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .intro-main {
    padding: 80px 20px 40px;
  }
  .intro-header h1 {
    font-size: 32px;
  }
  .intro-canvas-wrap .chart-mock {
    aspect-ratio: 9 / 14;
    max-height: 75vh;
    margin: 0 auto;
    max-width: 400px;
  }
}

@media (max-width: 500px) {
  .intro-header h1 { font-size: 26px; }
  .intro-header p { font-size: 14px; }
  .intro-footer {
    flex-direction: column;
    align-items: center;
  }
  .intro-footer .btn-primary,
  .intro-footer .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}