/* Welcome page — max 2 steps, scannable in 2 seconds, contrasting brand color */

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

html, body {
  min-height: 100vh;
  background: #FFFFFF;
  color: #1F2937;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.welcome-page {
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 30px 60px;
}

/* Hero: icon + title */
.welcome-hero {
  text-align: center;
  margin-bottom: 36px;
}

.welcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 25px;
  background: #F0FDF4;
  margin-bottom: 16px;
}

.welcome-icon svg {
  width: 60px;
  height: 60px;
}

.welcome-title {
  font-size: 35px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

/* Steps container */
.welcome-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Individual step */
.welcome-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22C55E;
  font-size: 0;
  margin-top: 12px;
}

.step-content {
  flex: 1;
  min-width: 0;
}

.step-heading {
  font-size: 25px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 5px;
}

.step-text {
  font-size: 19px;
  color: #6B7280;
  margin-bottom: 14px;
}

.step-text strong {
  color: #111827;
  font-weight: 600;
}

/* Step illustration */
.step-illustration {
  border-radius: 14px;
  padding: 12px 10px;
}

.toolbar-svg {
  width: 100%;
  height: auto;
  display: block;
  min-height: 70px;
}

/* Install CTA */
.install-cta {
  text-align: center;
  margin-top: 48px;
}

.install-button {
  display: inline-block;
  padding: 14px 32px;
  background: #22C55E;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.install-button:hover {
  background: #16A34A;
}

.install-button:active {
  transform: scale(0.98);
}

/* Responsive */
@media (max-width: 480px) {
  .welcome-page {
    padding: 40px 20px 60px;
  }

  .welcome-title {
    font-size: 28px;
  }

  .step-heading {
    font-size: 20px;
  }

  .step-text {
    font-size: 16px;
  }

  .welcome-step {
    gap: 14px;
  }

  .step-number {
    width: 8px;
    height: 8px;
    margin-top: 10px;
  }

  .install-button {
    font-size: 16px;
    padding: 12px 24px;
  }
}
