/**
 * KASHDI Welcome — brand story & value proposition
 */
.welcome-page-body {
  background: #faf9f7;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.welcome-page {
  position: relative;
  flex: 1 0 auto;
  min-height: calc(100vh - var(--app-nav-height, 72px));
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.welcome-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.welcome-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.welcome-orb-1 {
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg, #818cf8, #6366f1);
  top: -160px;
  right: -120px;
}

.welcome-orb-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #fcd34d, #f97316);
  bottom: 5%;
  left: -120px;
  opacity: 0.35;
}

.welcome-orb-3 {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #34d399, #06b6d4);
  top: 35%;
  left: 45%;
  opacity: 0.22;
}

.welcome-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
  box-sizing: border-box;
}

/* Hero */
.welcome-hero {
  text-align: center;
  padding: 1.5rem 0 3.5rem;
}

.welcome-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(10px);
}

.welcome-hero-badge i {
  font-size: 0.9rem;
}

.welcome-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin-bottom: 1rem;
}

.welcome-hero-title span {
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: #64748b;
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.welcome-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.welcome-btn-primary,
.welcome-btn-outline {
  min-height: 44px;
}

.welcome-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.welcome-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.45);
}

.welcome-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(8px);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.welcome-btn-outline:hover {
  color: #6366f1;
  border-color: rgba(99, 102, 241, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

/* Section headers */
.welcome-section {
  margin-bottom: 3.5rem;
}

.welcome-section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.welcome-section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 0.5rem;
}

.welcome-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.welcome-section-desc {
  color: #64748b;
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Value pillars — Saves Time, ROI, Human Resources */
.welcome-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  min-width: 0;
}

.welcome-pillar {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}

.welcome-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}

.welcome-pillar-time::before { background: linear-gradient(90deg, #6366f1, #818cf8); }
.welcome-pillar-roi::before { background: linear-gradient(90deg, #10b981, #34d399); }
.welcome-pillar-hr::before { background: linear-gradient(90deg, #f59e0b, #f97316); }

.welcome-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
}

.welcome-pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.welcome-pillar-time .welcome-pillar-icon { background: #eef2ff; color: #6366f1; }
.welcome-pillar-roi .welcome-pillar-icon { background: #d1fae5; color: #059669; }
.welcome-pillar-hr .welcome-pillar-icon { background: #fef3c7; color: #d97706; }

.welcome-pillar-stat {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.welcome-pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.welcome-pillar-text {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Why KASHDI — differentiation */
.welcome-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  min-width: 0;
}

.welcome-diff-card {
  display: flex;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.welcome-diff-card:hover {
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.08);
}

.welcome-diff-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  color: #6366f1;
}

.welcome-diff-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.35rem;
}

.welcome-diff-body p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Features grid */
.welcome-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  min-width: 0;
}

.welcome-feature {
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.welcome-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  border-color: rgba(99, 102, 241, 0.18);
  color: inherit;
}

.welcome-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.welcome-feature:nth-child(1) .welcome-feature-icon { background: #eef2ff; color: #6366f1; }
.welcome-feature:nth-child(2) .welcome-feature-icon { background: #d1fae5; color: #059669; }
.welcome-feature:nth-child(3) .welcome-feature-icon { background: #fce7f3; color: #db2777; }
.welcome-feature:nth-child(4) .welcome-feature-icon { background: #ffedd5; color: #ea580c; }
.welcome-feature:nth-child(5) .welcome-feature-icon { background: #e0f2fe; color: #0284c7; }
.welcome-feature:nth-child(6) .welcome-feature-icon { background: #f3e8ff; color: #9333ea; }

.welcome-feature h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.35rem;
}

.welcome-feature p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.welcome-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6366f1;
  margin-top: 0.65rem;
}

/* Special Highlight — Founders Studio */
.welcome-founders-highlight {
  position: relative;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 35%, #6366f1 70%, #818cf8 100%);
  box-shadow:
    0 8px 40px rgba(245, 158, 11, 0.18),
    0 4px 24px rgba(99, 102, 241, 0.12);
  overflow: hidden;
}

.welcome-founders-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 10% 50%, rgba(251, 191, 36, 0.25), transparent 55%),
    radial-gradient(ellipse 45% 70% at 90% 30%, rgba(129, 140, 248, 0.2), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.welcome-founders-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 42%, #f5f3ff 100%);
  border-radius: 26px;
  min-width: 0;
}

.welcome-founders-content {
  min-width: 0;
}

.welcome-founders-visual {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-founders-sparkle {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: welcome-founders-float 4s ease-in-out infinite;
}

.welcome-founders-sparkle img {
  filter: drop-shadow(0 4px 16px rgba(245, 158, 11, 0.35));
}

.welcome-founders-visual-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(245, 158, 11, 0.35);
  animation: welcome-founders-spin 24s linear infinite;
}

@keyframes welcome-founders-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes welcome-founders-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.welcome-founders-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 0.75rem;
}

.welcome-founders-badge i {
  font-size: 0.85rem;
}

.welcome-founders-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
  background: linear-gradient(135deg, #b45309 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-founders-lead {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 640px;
}

.welcome-founders-lead em {
  font-style: normal;
  font-weight: 600;
  color: #6366f1;
}

.welcome-founders-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.welcome-founders-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
}

.welcome-founders-points li i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  color: #6366f1;
  font-size: 0.95rem;
}

.welcome-founders-points li strong {
  color: #1e293b;
}

.welcome-founders-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(234, 88, 12, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.welcome-founders-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.45);
}

.welcome-founders-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.welcome-founders-cta-secondary {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  box-shadow: 0 4px 18px rgba(99, 102, 241, 0.35);
}

.welcome-founders-cta-secondary:hover {
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
}

.welcome-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.welcome-plan-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 1.4rem 1.3rem 1.25rem;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  min-height: 100%;
}

.welcome-plan-card--trial {
  border-color: #a7f3d0;
  background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 42%);
}

.welcome-plan-card--featured {
  border-color: #c7d2fe;
  background: linear-gradient(180deg, #eef2ff 0%, #ffffff 38%);
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.12);
}

.welcome-plan-badge {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  margin-bottom: 0.7rem;
}

.welcome-plan-badge--popular {
  color: #4f46e5;
  background: #e0e7ff;
}

.welcome-plan-card--trial .welcome-plan-badge {
  color: #047857;
  background: #d1fae5;
}

.welcome-plan-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.45rem;
}

.welcome-plan-amount {
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0f172a;
  line-height: 1.1;
}

.welcome-plan-amount--soon {
  font-size: 1.25rem;
}

.welcome-plan-term {
  color: #64748b;
  font-size: 0.88rem;
  margin: 0.35rem 0 0.55rem;
  min-height: 1.3em;
}

.welcome-plan-or {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  color: #475569;
}

.welcome-plan-quota {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.45rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 0.95rem;
  padding: 0.5rem 0.8rem;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fdba74;
  color: #9a3412;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}

.welcome-plan-quota strong {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #9a3412;
}

.welcome-plan-card--featured .welcome-plan-quota {
  background: #eef2ff;
  border-color: #a5b4fc;
  color: #3730a3;
}

.welcome-plan-card--featured .welcome-plan-quota strong {
  color: #312e81;
}

.welcome-plan-card--trial .welcome-plan-quota {
  background: #ecfdf5;
  border-color: #6ee7b7;
  color: #065f46;
}

.welcome-plan-card--trial .welcome-plan-quota strong {
  color: #047857;
}

.welcome-pricing-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  flex: 1 1 auto;
}

.welcome-pricing-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #334155;
  font-size: 0.9rem;
  line-height: 1.4;
}

.welcome-pricing-points i {
  color: #059669;
  margin-top: 0.12rem;
  flex-shrink: 0;
}

.welcome-pricing-cta {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.welcome-pricing-note {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: #64748b;
}

@media (max-width: 719px) {
  .welcome-pricing-grid {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 0.85rem;
  }

  .welcome-plan-card {
    padding: 1.15rem 1.1rem 1.05rem;
  }

  .welcome-plan-amount {
    font-size: 1.85rem;
  }

  .welcome-plan-quota {
    width: 100%;
  }

  .welcome-pricing-cta {
    min-height: 44px;
  }
}

.welcome-sales-highlight {
  position: relative;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, #10b981 0%, #059669 40%, #0ea5e9 100%);
  box-shadow:
    0 8px 40px rgba(16, 185, 129, 0.16),
    0 4px 24px rgba(14, 165, 233, 0.1);
  overflow: hidden;
}

.welcome-sales-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 8% 40%, rgba(16, 185, 129, 0.22), transparent 55%),
    radial-gradient(ellipse 45% 70% at 92% 20%, rgba(14, 165, 233, 0.16), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.welcome-sales-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 48%, #f0f9ff 100%);
  border-radius: 26px;
}

.welcome-sales-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #047857;
  margin-bottom: 0.75rem;
}

.welcome-sales-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.welcome-sales-lead {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: 720px;
}

.welcome-sales-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.welcome-sales-point-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.welcome-sales-point-link:hover {
  color: inherit;
}

.welcome-sales-points i {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  color: #047857;
  font-size: 0.95rem;
}

.welcome-sales-points strong {
  color: #1e293b;
}

.welcome-sales-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(5, 150, 105, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.welcome-sales-cta:hover {
  color: #fff;
  transform: translateY(-2px);
}

.welcome-sales-cta-secondary {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.3);
}

.welcome-feature-studio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.welcome-feature-studio-links .welcome-feature-link {
  margin-top: 0;
}

.welcome-feature--founders {
  border-color: rgba(245, 158, 11, 0.25);
  background: linear-gradient(180deg, rgba(255, 251, 235, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.welcome-feature--founders .welcome-feature-icon {
  background: #fef3c7 !important;
  color: #d97706 !important;
}

.welcome-feature--sales {
  border-color: rgba(16, 185, 129, 0.28);
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.welcome-feature--sales .welcome-feature-icon {
  background: #d1fae5 !important;
  color: #047857 !important;
}

.welcome-feature-tag--sales {
  background: #d1fae5;
  color: #047857;
  -webkit-text-fill-color: #047857;
}

.welcome-feature-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 0.35rem;
  padding: 0.15rem 0.45rem;
  background: #fef3c7;
  color: #b45309;
  border-radius: 999px;
  -webkit-text-fill-color: #b45309;
  white-space: nowrap;
}

/* Deployment options — SaaS or self-hosted */
.welcome-local-highlight {
  position: relative;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 45%, #6366f1 100%);
  box-shadow:
    0 8px 40px rgba(16, 185, 129, 0.16),
    0 4px 24px rgba(6, 182, 212, 0.1);
  overflow: hidden;
}

.welcome-local-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 15% 40%, rgba(52, 211, 153, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 60%, rgba(6, 182, 212, 0.18), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.welcome-local-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 45%, #f0fdfa 100%);
  border-radius: 26px;
  min-width: 0;
}

.welcome-local-content {
  min-width: 0;
}

.welcome-local-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #047857;
  margin-bottom: 0.75rem;
}

.welcome-local-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
  background: linear-gradient(135deg, #059669 0%, #0891b2 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-local-lead {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.welcome-local-lead em {
  font-style: normal;
  font-weight: 600;
  color: #059669;
}

.welcome-local-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
  min-width: 0;
}

.welcome-local-card {
  padding: 1.25rem 1.2rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, box-shadow 0.2s;
}

.welcome-local-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.welcome-local-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  background: #d1fae5;
  color: #059669;
  margin-bottom: 0.75rem;
}

.welcome-local-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.4rem;
}

.welcome-local-card p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

.welcome-local-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
}

.welcome-local-compare--single {
  grid-template-columns: 1fr;
}

.welcome-local-compare--single .welcome-local-compare-col ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem;
}

.welcome-local-compare-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.welcome-local-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.welcome-local-compare-col li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: #64748b;
}

.welcome-local-compare-cloud .welcome-local-compare-label {
  color: #6366f1;
}

.welcome-local-compare-self .welcome-local-compare-label {
  color: #059669;
}

.welcome-local-compare-cloud li i,
.welcome-local-compare-self li i {
  color: #10b981;
  font-size: 0.9rem;
}

.welcome-local-compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 0.25rem;
}

.welcome-local-compare-divider span {
  padding: 0.35rem 0.65rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
}

.welcome-diff-icon-local {
  background: linear-gradient(135deg, #d1fae5, #ccfbf1) !important;
  color: #059669 !important;
}

.welcome-hero-lead strong {
  color: #6366f1;
  font-weight: 600;
}

/* Pipeline flow visual */
.welcome-flow {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(14, 165, 233, 0.06) 100%);
  border: 1px solid rgba(99, 102, 241, 0.12);
  border-radius: 24px;
  text-align: center;
}

.welcome-flow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.25rem;
  margin-top: 1.5rem;
}

.welcome-flow-step {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

.welcome-flow-step i {
  color: #6366f1;
}

.welcome-flow-arrow {
  color: #94a3b8;
  font-size: 0.75rem;
  padding: 0 0.15rem;
}

/* CTA banner */
.welcome-cta {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 40%, #1e3a8a 100%);
  border-radius: 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.welcome-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 0% 50%, rgba(129, 140, 248, 0.25), transparent 55%),
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(56, 189, 248, 0.2), transparent 50%);
  pointer-events: none;
}

.welcome-cta > * {
  position: relative;
  z-index: 1;
}

.welcome-cta h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.welcome-cta p {
  color: rgba(226, 232, 240, 0.85);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.welcome-cta .welcome-btn-primary {
  background: #fff;
  color: #4f46e5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.welcome-cta .welcome-btn-primary:hover {
  color: #4338ca;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ── Responsive ── */

/* Large tablet / small laptop */
@media (max-width: 1199px) {
  .welcome-orb-1 {
    width: 380px;
    height: 380px;
    right: -100px;
  }
  .welcome-orb-2 {
    width: 300px;
    height: 300px;
    left: -80px;
  }
  .welcome-orb-3 {
    width: 240px;
    height: 240px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .welcome-section {
    margin-bottom: 2.75rem;
  }

  .welcome-hero {
    padding: 1rem 0 2.5rem;
  }

  .welcome-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .welcome-pillar:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .welcome-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .welcome-diff-grid {
    grid-template-columns: 1fr;
  }

  .welcome-founders-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.75rem;
    gap: 1.5rem;
  }

  .welcome-founders-visual {
    margin: 0 auto;
  }

  .welcome-founders-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .welcome-founders-points li {
    text-align: left;
  }

  .welcome-local-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .welcome-local-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .welcome-local-inner {
    padding: 2rem 1.75rem;
  }

  .welcome-flow {
    padding: 1.75rem 1.25rem;
  }
}

/* Mobile landscape / large phone */
@media (max-width: 767px) {
  .welcome-container {
    padding: 1.5rem 1rem 3rem;
  }

  .welcome-section-head {
    margin-bottom: 1.5rem;
  }

  .welcome-section-desc {
    font-size: 0.95rem;
    padding: 0 0.25rem;
  }

  .welcome-pillars {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .welcome-pillar:last-child {
    max-width: none;
  }

  .welcome-pillar {
    padding: 1.35rem 1.25rem;
  }

  .welcome-pillar-stat {
    font-size: 1.75rem;
  }

  .welcome-features {
    grid-template-columns: 1fr;
  }

  .welcome-diff-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.15rem 1.2rem;
  }

  .welcome-founders-highlight,
  .welcome-local-highlight {
    border-radius: 20px;
  }

  .welcome-founders-inner,
  .welcome-local-inner {
    border-radius: 18px;
    padding: 1.5rem 1.25rem;
  }

  .welcome-founders-visual {
    width: 96px;
    height: 96px;
  }

  .welcome-founders-sparkle img {
    width: 56px;
    height: 56px;
  }

  .welcome-founders-lead,
  .welcome-local-lead {
    font-size: 0.95rem;
  }

  .welcome-founders-cta {
    width: 100%;
    justify-content: center;
  }

  .welcome-local-cards {
    grid-template-columns: 1fr;
  }

  .welcome-local-card:last-child {
    max-width: none;
  }

  .welcome-local-compare {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.15rem 1rem;
    text-align: left;
  }

  .welcome-local-compare--single .welcome-local-compare-col ul {
    grid-template-columns: 1fr;
  }

  .welcome-local-compare-divider {
    transform: none;
    padding: 0;
    justify-content: flex-start;
  }

  .welcome-local-compare-col li {
    justify-content: flex-start;
  }

  .welcome-flow-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

  .welcome-flow-step {
    justify-content: center;
    width: 100%;
  }

  .welcome-flow-arrow {
    display: none;
  }

  .welcome-cta {
    padding: 2rem 1.25rem;
    border-radius: 20px;
  }

  .welcome-cta p {
    font-size: 0.92rem;
  }

  .welcome-cta .welcome-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile portrait */
@media (max-width: 575px) {
  .welcome-orb-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -60px;
    opacity: 0.35;
  }

  .welcome-orb-2 {
    width: 200px;
    height: 200px;
    left: -60px;
    opacity: 0.25;
  }

  .welcome-orb-3 {
    display: none;
  }

  .welcome-container {
    padding: 1rem 0.85rem 2.5rem;
  }

  .welcome-hero {
    padding: 0.5rem 0 2rem;
  }

  .welcome-hero-badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.75rem;
    max-width: 100%;
    text-align: center;
    line-height: 1.3;
  }

  .welcome-hero-title {
    font-size: clamp(1.65rem, 8vw, 2rem);
    padding: 0 0.15rem;
  }

  .welcome-hero-lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 0.15rem;
  }

  .welcome-hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    padding: 0 0.15rem;
  }

  .welcome-btn-primary,
  .welcome-btn-outline {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.25rem;
  }

  .welcome-section {
    margin-bottom: 2.25rem;
  }

  .welcome-section-title {
    font-size: clamp(1.25rem, 5.5vw, 1.5rem);
    padding: 0 0.25rem;
  }

  .welcome-founders-title,
  .welcome-local-title {
    font-size: clamp(1.25rem, 5.5vw, 1.65rem);
  }

  .welcome-feature h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
  }

  .welcome-feature-tag {
    margin-left: 0;
  }

  .welcome-flow {
    padding: 1.35rem 0.85rem;
    border-radius: 18px;
  }

  .welcome-flow-step {
    font-size: 0.78rem;
    padding: 0.45rem 0.75rem;
  }

  .welcome-founders-points li,
  .welcome-local-compare-col li {
    font-size: 0.85rem;
  }

  .welcome-founders-points li i {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

/* Small phones */
@media (max-width: 380px) {
  .welcome-container {
    padding: 0.85rem 0.65rem 2rem;
  }

  .welcome-founders-inner,
  .welcome-local-inner {
    padding: 1.25rem 1rem;
  }

  .welcome-pillar-icon {
    width: 44px;
    height: 44px;
    font-size: 1.15rem;
  }

  .welcome-diff-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* Clickable cards & pipeline steps */
.welcome-pillar-link,
.welcome-diff-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.welcome-pillar-link:hover,
.welcome-diff-card-link:hover {
  color: inherit;
}

.welcome-pillar-go {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6366f1;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}

.welcome-pillar-link:hover .welcome-pillar-go {
  opacity: 1;
  transform: translateY(0);
}

.welcome-diff-card-link {
  display: flex;
  gap: 1rem;
}

.welcome-flow-step-link {
  text-decoration: none;
  color: #334155;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
}

.welcome-flow-step-link:hover {
  color: #6366f1;
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.12);
}

.welcome-founders-point-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  padding: 0.35rem 0.45rem;
  margin: -0.35rem -0.45rem;
  transition: background 0.2s;
}

.welcome-founders-point-link:hover {
  background: rgba(99, 102, 241, 0.06);
  color: inherit;
}

@media (max-width: 575px) {
  .welcome-pillar-go {
    opacity: 1;
    transform: none;
  }
}

/* Guest navbar — ensure gold Sign In pill on public welcome page */
.welcome-page-body nav.navbar.premium-navbar .app-nav-guest a.app-nav-guest-signin,
.welcome-page-body nav.navbar.premium-navbar .app-nav-guest a.app-nav-guest-signin:link,
.welcome-page-body nav.navbar.premium-navbar .app-nav-guest a.app-nav-guest-signin:visited {
  text-decoration: none !important;
  color: #0a0a12 !important;
}

.welcome-page-body nav.navbar.premium-navbar .app-nav-guest-signin-text,
.welcome-page-body nav.navbar.premium-navbar .app-nav-guest-signin-icon,
.welcome-page-body nav.navbar.premium-navbar .app-nav-guest-signin-icon i {
  color: #0a0a12 !important;
  text-decoration: none !important;
}

.welcome-page-body nav.navbar.premium-navbar .app-nav-guest a.app-nav-why-kashdi {
  text-decoration: none !important;
}

.welcome-page-body nav.navbar.premium-navbar .app-nav-social-link,
.welcome-page-body nav.navbar.premium-navbar .app-nav-social-link:link,
.welcome-page-body nav.navbar.premium-navbar .app-nav-social-link:visited {
  text-decoration: none !important;
}

.welcome-page-body nav.navbar.premium-navbar .app-nav-social-sparkle i,
.welcome-page-body nav.navbar.premium-navbar .app-nav-social-sparkle i::before {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* Resource library — premium cards */
.welcome-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  min-width: 0;
}

.welcome-resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
  padding: 1.4rem 1.25rem 1.2rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.welcome-resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #6366f1, #0ea5e9);
}

.welcome-resource-card-compare::before {
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

.welcome-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.1);
  border-color: rgba(99, 102, 241, 0.18);
  color: inherit;
}

.welcome-resource-card-compare:hover {
  border-color: rgba(245, 158, 11, 0.28);
}

.welcome-resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.95rem;
  background: #eef2ff;
  color: #6366f1;
}

.welcome-resource-card:nth-child(2) .welcome-resource-icon { background: #d1fae5; color: #059669; }
.welcome-resource-card:nth-child(3) .welcome-resource-icon { background: #fce7f3; color: #db2777; }
.welcome-resource-card:nth-child(4) .welcome-resource-icon { background: #ffedd5; color: #ea580c; }
.welcome-resource-card:nth-child(5) .welcome-resource-icon { background: #e0f2fe; color: #0284c7; }
.welcome-resource-card:nth-child(6) .welcome-resource-icon { background: #f3e8ff; color: #9333ea; }
.welcome-resource-card-compare .welcome-resource-icon { background: #fef3c7; color: #d97706; }
.welcome-resource-card-compare:nth-child(2) .welcome-resource-icon { background: #e0e7ff; color: #4f46e5; }
.welcome-resource-card-compare:nth-child(3) .welcome-resource-icon { background: #dbeafe; color: #2563eb; }
.welcome-resource-card-compare:nth-child(4) .welcome-resource-icon { background: #fce7f3; color: #be185d; }

.welcome-resource-kind {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.45rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6366f1;
  background: rgba(99, 102, 241, 0.1);
}

.welcome-resource-card-compare .welcome-resource-kind {
  color: #b45309;
  background: rgba(245, 158, 11, 0.14);
}

.welcome-resource-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}

.welcome-resource-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1 1 auto;
}

.welcome-resource-go {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6366f1;
}

.welcome-resource-card-compare .welcome-resource-go {
  color: #d97706;
}

.welcome-resource-card:hover .welcome-resource-go i {
  transform: translateX(3px);
}

.welcome-resource-go i {
  font-size: 0.78rem;
  transition: transform 0.2s;
}

.welcome-resource-grid .welcome-resource-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

@media (max-width: 991px) {
  .welcome-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .welcome-resource-grid .welcome-resource-card:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .welcome-resource-grid .welcome-resource-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 540px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

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

  .welcome-resource-grid .welcome-resource-card:last-child:nth-child(odd) {
    max-width: none;
    grid-column: auto;
  }
}

@media (max-width: 575px) {
  .welcome-resource-card {
    padding: 1.35rem 1.2rem 1.2rem;
  }
}

/* Guide / comparison article layout */
.welcome-guide-hero {
  padding-bottom: 2rem;
}

.welcome-guide-hero .welcome-hero-title {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
}

.welcome-guide-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.1rem;
  margin: -0.5rem auto 1.5rem;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

.welcome-guide-meta i {
  color: #6366f1;
  margin-right: 0.28rem;
}

.welcome-guide-compare .welcome-guide-meta i {
  color: #d97706;
}

.welcome-guide-intro {
  position: relative;
  max-width: 780px;
  margin: 0 auto 1.75rem;
  padding: 1.35rem 1.5rem 1.35rem 1.7rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(14px);
}

.welcome-guide-intro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6366f1, #0ea5e9);
}

.welcome-guide-compare .welcome-guide-intro::before {
  background: linear-gradient(180deg, #f59e0b, #f97316);
}

.welcome-guide-intro p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #334155;
}

.welcome-guide-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  gap: 1.15rem;
}

.welcome-guide-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1rem;
  align-items: stretch;
}

.welcome-guide-step-index {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #4f46e5;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.12);
}

.welcome-guide-compare .welcome-guide-step-index {
  color: #b45309;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.14);
}

.welcome-guide-step-card {
  position: relative;
  min-width: 0;
  padding: 1.4rem 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.welcome-guide-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #0ea5e9);
}

.welcome-guide-compare .welcome-guide-step-card::before {
  background: linear-gradient(90deg, #f59e0b, #f97316);
}

.welcome-guide-step-card h2 {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.welcome-guide-step-card p {
  margin: 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.7;
}

.welcome-guide-step-card p + p {
  margin-top: 0.75rem;
}

.welcome-guide-step-card ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0.15rem 0 0;
}

.welcome-guide-step-card li {
  position: relative;
  margin: 0;
  padding: 0.9rem 1rem 0.9rem 2.55rem;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 14px;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.5;
}

.welcome-guide-step-card li::before {
  content: '';
  position: absolute;
  left: 1.05rem;
  top: 1.15rem;
  width: 0.42rem;
  height: 0.72rem;
  border: solid #6366f1;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.welcome-guide-compare .welcome-guide-step-card li::before {
  border-color: #d97706;
}

.welcome-guide-related {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.welcome-guide-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.15rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s;
}

.welcome-guide-related-link:hover {
  color: #4f46e5;
  border-color: rgba(99, 102, 241, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
}

.welcome-guide-related-link i {
  font-size: 0.8rem;
  color: #6366f1;
}

@media (max-width: 767px) {
  .welcome-guide-step {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .welcome-guide-step-index {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 0.82rem;
  }

  .welcome-guide-step-card {
    padding: 1.2rem 1.15rem 1.15rem;
  }

  .welcome-guide-step-card ul {
    grid-template-columns: 1fr;
  }

  .welcome-guide-intro {
    padding: 1.15rem 1.2rem 1.15rem 1.4rem;
  }
}
