.welcome-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 60px 40px;
  overflow-y: auto;
  position: relative;
}

/* ── Page background gradient (muted version of sidebar) ── */
.welcome-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 25%, rgba(59, 130, 246, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 70% at 85% 75%, rgba(59, 130, 246, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 55% 10%, rgba(59, 130, 246, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 85%, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Hero ── */
.welcome-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.welcome-title {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-sub {
  font-size: 15px;
  color: rgba(37, 99, 235, 0.6);
  font-weight: 400;
  max-width: 480px;
  line-height: 1.5;
}

/* ── Cards ── */
.welcome-cards {
  display: flex;
  flex-direction: row;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.welcome-card {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 36px 28px 32px;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.2);
  text-decoration: none;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.welcome-card:hover {
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.welcome-card-icon {
  width: 52px;
  height: 52px;
  color: var(--accent);
  flex-shrink: 0;
}

.welcome-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.welcome-card-desc {
  font-size: 12px;
  color: rgba(37, 99, 235, 0.6);
  text-align: center;
  line-height: 1.55;
}

/* ── Skill panel ── */
.welcome-skill {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 18px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: border-color 280ms ease, box-shadow 280ms ease;
  width: 100%;
  max-width: 940px;
}

.welcome-skill:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.08);
}

.welcome-skill-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--accent);
}

.welcome-skill-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
}

.welcome-skill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: skill-pulse 2s ease-in-out infinite;
}

.welcome-skill-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.welcome-skill-item {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  color: rgba(59, 130, 246, 0.5);
}

.welcome-skill-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  flex: 1;
}

.welcome-skill-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.welcome-skill-sep {
  width: 1px;
  height: 28px;
  background: rgba(37, 99, 235, 0.15);
  margin: 0 20px;
  flex-shrink: 0;
}

/* ── Social links row ── */
.welcome-links {
  display: flex;
  flex-direction: row;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.welcome-link-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: rgba(37, 99, 235, 0.7);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.welcome-link-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(37, 99, 235, 0.08);
}
