@layer components {
  .welcome-header {
    background: var(--ink-950);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: var(--s6);
    position: relative;
    min-height: 160px;
    display: flex;
    align-items: flex-end;
  }

  .welcome-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--forest-900) 0%, var(--ink-950) 60%);
    opacity: 0.9;
  }

  .welcome-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 40%, rgba(42, 82, 64, 0.4) 0%, transparent 60%);
  }

  .welcome-content {
    position: relative;
    z-index: 1;
    padding: 28px 32px;
    flex: 1;
  }

  .welcome-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
  }

  .welcome-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .welcome-name em {
    color: var(--amber-300);
  }

  .welcome-body {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    line-height: 1.6;
  }
}
