/* ═══════════════════════════════════════════════
   LinkedShot — Welcome Page (welcome.css)
═══════════════════════════════════════════════ */

/* ── Welcome Hero ─────────────────────────────── */

.welcome-hero {
  background: var(--navy);
  padding: 80px 32px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.welcome-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,119,181,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.welcome-hero__confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.welcome-hero__confetti span {
  position: absolute;
  font-size: 24px;
  opacity: 0;
  animation: confettiFall 4s ease-in forwards;
}

.welcome-hero__confetti span:nth-child(1) { left: 10%; top: -10%; animation-delay: 0.1s; }
.welcome-hero__confetti span:nth-child(2) { left: 30%; top: -10%; animation-delay: 0.3s; }
.welcome-hero__confetti span:nth-child(3) { left: 50%; top: -10%; animation-delay: 0.5s; }
.welcome-hero__confetti span:nth-child(4) { left: 70%; top: -10%; animation-delay: 0.2s; }
.welcome-hero__confetti span:nth-child(5) { left: 88%; top: -10%; animation-delay: 0.4s; }

@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg);    opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(300px) rotate(360deg); opacity: 0; }
}

.welcome-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.welcome-hero__badge {
  display: inline-block;
  background: rgba(0,119,181,0.3);
  border: 1px solid rgba(0,119,181,0.5);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
}

.welcome-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease both;
}

.welcome-hero__title em {
  font-style: italic;
  color: #7dd3fc;
}

.welcome-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-weight: 300;
  animation: fadeUp 0.6s 0.1s ease both;
}

/* ── Quick Start Steps ───────────────────────── */

.qs-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.qs-step {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
}

.qs-step--last { padding-bottom: 0; }

.qs-step__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.qs-step__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,119,181,0.35);
}

.qs-step__circle--done {
  background: #10b981;
  box-shadow: 0 4px 14px rgba(16,185,129,0.35);
}

.qs-step__line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--blue), rgba(0,119,181,0.1));
  margin: 8px 0;
  min-height: 32px;
}

.qs-step__content {
  padding-top: 8px;
}

.qs-step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.qs-step__body {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.65;
}

.qs-step__body a {
  color: var(--blue);
  font-weight: 500;
}

/* ── Welcome Features Grid ───────────────────── */

.welcome-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.welcome-feat {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.welcome-feat:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,119,181,0.2);
}

.welcome-feat__icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.welcome-feat__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.welcome-feat__body {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .welcome-feat-grid { grid-template-columns: 1fr; }
}
